/* THIS STYLE SHEET IS WRITTEN BY SAEED POOLADGAR ON 2022 JAN.
REMEMBER: THE WORLD IS SMALLER THAN WE THINK AND THE LIFE IS SHORTER THAN WE FEEL! */

*{box-sizing: border-box}
*:focus{
  outline: none;
}

body{
  margin: 0;
  padding: 0;
  cursor: default;
  direction: ltr;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  overflow-x: hidden;
  background: var(--bodybg);
}

body::-webkit-scrollbar{
  width: 16px;
  background: #eee;
}

body::-webkit-scrollbar-thumb{
  background: var(--color3);
  border-left: 1px solid #fff;
  border-radius: 0;
  position: relative;
}

/* Buttons */
body::-webkit-scrollbar-button:single-button {
  display: block;
  border-style: solid;
  height: 13px;
  width: 16px;
}
/* Up */
body::-webkit-scrollbar-button:single-button:vertical:decrement {
  border-width: 0 8px 8px 8px;
  border-color: transparent transparent #555555 transparent;
}

body::-webkit-scrollbar-button:single-button:vertical:decrement:hover {
  border-color: transparent transparent #777777 transparent;
}
/* Down */
body::-webkit-scrollbar-button:single-button:vertical:increment {
  border-width: 8px 8px 0 8px;
  border-color: #555555 transparent transparent transparent;
}

body::-webkit-scrollbar-button:vertical:single-button:increment:hover {
  border-color: #777777 transparent transparent transparent;
}

html:root{

  --color1: rgb(237, 28, 36);
  --color2: rgb(58, 51, 46);
  --color3: rgb(0, 0, 0);
  --color4: rgb(255, 255, 255);

  --rgbcode1: 237, 28, 36;
  --rgbcode2: 58,51,46;
  --rgbcode3: 0,0,0;
  --rgbcode4: 225,225,225;

  --color1-80: rgba(var(--rgbcode1), 0.8);
  --color1-60: rgba(var(--rgbcode1), 0.6);
  --color1-40: rgba(var(--rgbcode1), 0.4);
  --color1-20: rgba(var(--rgbcode1), 0.2);

  --color2-80: rgba(var(--rgbcode2), 0.8);
  --color2-60: rgba(var(--rgbcode2), 0.6);
  --color2-40: rgba(var(--rgbcode2), 0.4);
  --color2-20: rgba(var(--rgbcode2), 0.2);
  
  --color3-80: rgba(var(--rgbcode3), 0.8);
  --color3-60: rgba(var(--rgbcode3), 0.6);
  --color3-40: rgba(var(--rgbcode3), 0.4);
  --color3-20: rgba(var(--rgbcode3), 0.2);

  --color4-80: rgba(var(--rgbcode4), 0.8);
  --color4-60: rgba(var(--rgbcode4), 0.6);
  --color4-40: rgba(var(--rgbcode4), 0.4);
  --color4-20: rgba(var(--rgbcode4), 0.2);

  --bodybg: rgb(241, 241, 241);

  --headerbg: var(--color4);

  --btxt: #000;
  --wtxt: #fdfdfd;

  --menu-bgcolor: var(--color1);
  --menutxt: rgb(0, 0, 0);
  --menutxthover: rgb(36, 36, 36);
  --submenubg: var(--color2);
  --submenutxt: rgb(0, 0, 0);

  --footerbg: var(--color2);
  --footertxt: #e7e7e7;
  --fadetxt: #cdcdcd;

  --pagestitlebg: var(--color1);

  --fadewhite: rgba(255, 255, 255, 0.144);

  --whatsapp-bg: #24cc63;
  --telegram-bg: #0084c6;
  --instagram-bg: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);

  
  
  /* =================================== */
  --header-H: 50px;
}

ul,
li,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
button
{
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style-type: none;
  color: #000;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  background: none;
  border: 0;
  direction: ltr;
}

input,
textarea{
  margin: 0;
  padding: 0;
  display: block;
  border: 0;
}

a{
  cursor: pointer;
}



/* ============== STYLES BEGIN FROM HERE ============== */


/* ======================== HEADER ======================== */

header{
  width: 100%;
  background: var(--headerbg);
  position: relative;
  z-index: 5;
  transition: all 0.3s;
}

.menu-holder
{
  width: 100%;
  flex-grow: 1;
  display: flex;
}

.header-logo {
  height: 100%;
  max-width: 200px;
  padding: 5px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.1s;
}

.header-logo:hover {
  transform: scale(0.95);
}

.header-logo img {
  width: 50%;
  min-width: 100px;
  margin: 0 auto;
  height: 100%;
  object-fit: contain;
}

.mobile-menu-btn{
  display: none;
  width: 60px;
  text-align: center;
  position: absolute;
  right: 20px;
  bottom: 50%;
  transform: translateY(-50%);
}

.mobile-menu-btn.closebtn{
  z-index: 11;
}

@keyframes menu-btn-anime{
  from{
    transform: scale(0);
  }
}

.mobile-menu-btn img{
  display: none;
  width: 70%;
  object-fit: contain;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) scale(1);
  animation: menu-btn-anime 0.3s;
}

.mobile-menu-btn img.visible{
  display: block;
}

.menu-list{
  display: flex;
  align-items: center;
  transition: all 0.3s;
}

.main-menu-item{
  height: 100%;
  transition: all 0.2s;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.main-menu-item.farsi {
  background: url(../image/other/iran.png) no-repeat center;
  background-size: 30px;
  padding: 20px;
  transition: all 0.2s;
}

.main-menu-item.farsi:hover {
  background-size: 33px;
}

.menu-list li {
  position: relative;
}

.menu-list li .submenu-sign {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 15px;
  height: 100%;
  background: url(../image/icon/left-arrow.png) no-repeat center;
  background-size: contain;
}

header .menu-list li:hover > .submenu-sign {
  filter: invert(1);
}

.menu-list > li a{
  height: 100%;
  transition: all 0.2s;
  display: flex;
  padding: 0 15px;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.menu-list > li a::before,
.menu-list > li a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  clip-path: inset(0 0 100% 100%);
  z-index: -1;
  transition: all 0.3s;
  background: var(--color1);
}

.menu-list > li a::after {
  right: unset;
  top: unset;
  bottom: 0;
  left: 0;
  clip-path: inset(100% 100% 0 0);
}

.menu-list > li a:hover::before,
.menu-list > li a:hover::after {
  clip-path: inset(0 0 0 0);
}

.menu-list > li.farsi a::before,
.menu-list > li.farsi a::after {
  display: none;
}

.menu-list > li a:hover span {
  color: var(--wtxt);
}

.menu-list > li a span {
  font-size: 18px;
  color: var(--btxt);
  display: block;
}

.menu-list > li ul.submenu-list {
  display: none;
  width: max-content;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--color4);
  border: 1px solid var(--color3-20);
  z-index: 1;
}

.menu-list > li:hover > ul.submenu-list {
  display: block;
}

.menu-list > li ul.submenu-list li ul.submenu-list {
  right: 100%;
  top: 0;
}

.menu-list > li ul.submenu-list li:hover > ul.submenu-list {
  display: block;
}

.menu-list > li:hover ul.submenu-list li {
  border-bottom: 1px solid var(--color3-20);
}

.menu-list > li:hover ul.submenu-list li:last-child {
  border: 0;
}

.logo-holder{
  width: 200px;
  transition: all 0.3s;
}

.logo-holder a{
  display: block;
  height: 100%;
  padding: 10px;
  position: relative;
  top: 0;
  transition: all 0.5s;
}

.logo-holder a img{
  width: 90%;
  object-fit: contain;
  vertical-align: middle;
  transition: all 0.2s;
}

.logo-holder a:hover img{
  transform: scale(1.05);
}

header.fixed{
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  background: var(--headerbg);
  --header-H: 40px;
}

header.fixed .header-logo{
  max-width: 150px;
}

header.fixed .header-logo img {
  min-width: 60px;
}

header.fixed .menu-list > li a {
  padding: 5px 15px;
}

header.fixed .menu-list > li a span {
  font-size: 16px;
}

header.fixed .menu-list li .submenu-sign {
  background-size: 10px;
}



@media only screen and (max-width:768px) {
  .logo-holder a{
    padding: 0;
  }

  header.fixed .logo-holder{
    width: auto;
  }

  .logo-holder a img{
    width: auto;
    height: 40px;
  }

  .menu-list{
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color3);
    padding-top: 50px;
    z-index: 10;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.5s;
  }

  .menu-list.show {
    transform: translateY(0%);
    background: var(--color2);
    opacity: 1;
  }

  .main-menu-item{
    margin: 0;
    height: unset;
    border-radius: 0;
    border-bottom: 1px solid var(--fadewhite);
  }

  .menu-list > li ul.submenu-list {
    width: 100%;
    background: var(--color1);
  }

  .menu-list > li ul.submenu-list li ul.submenu-list {
    top: 100%;
    right: 0;
    border-top: 2px solid var(--wtxt);
  }

  .menu-list li .submenu-sign {
    background: url(../image/icon/left-arrow.png) no-repeat center, var(--wtxt);
    background-size: 20px;
    width: 30px;
  }

  .menu-list > li a,
  header.fixed .menu-list > li a
  {
    font-size: 13px;
    padding: 5px;
    text-align: center;
  }

  .menu-list > li a span {
    color: var(--wtxt);
  }

  .mobile-menu-btn{
    display: block;
  }

  header.fixed .menu-list li .submenu-sign {
    background-size: 20px;
  } 
}

@media only screen and (max-width:600px) {
  header .contacts{
    display: none;
  }

}

@media only screen and (max-width:425px) {
  .header-logo {
    width: 165px;
  }
  
  .mobile-menu-btn {
    width: 45px;
  }

  .menu-list > li a span {
    font-size: 14px;
  }
}






















/* ============ SLIDER ============ */

.slider-div {
  width: 100%;
  height: 530px;
  overflow: hidden;
  background-size: cover;
  position: relative;
}

.slider-div .holder {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slider-div .owl-carousel .owl-stage,
.slider-div .owl-carousel .owl-stage-outer,
.slider-div .owl-carousel.owl-rtl .owl-item {
  height: 100%;
}

.slider-div .holder .item {
  width: 100%;
  height: 100%;
  position: relative;
}

.slider-div .holder .item .img {
  width: 100%;
  height: 100%;
}

@keyframes slider-img-anime {
  from {
    filter: saturate(1.5) brightness(0.6);
  }
}

.slider-div .holder .item .img img {
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
  filter: saturate(3) brightness(1.1);
}

.slider-div .holder .owl-item.active .item .img img {
  animation: slider-img-anime 10s;
}

@keyframes slider-txt1-anime {
  0% {
    clip-path: inset(0 0 0 100%);
  }
  50% {
    clip-path: inset(0 0 0 100%);
  }
  100% {
    clip-path: inset(0 0 0 0%);
  }
}

.slider-div .holder .item .txt {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--color1-40);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  animation: slider-txt1-anime 1s;
  display: none;
}

.slider-div .holder .owl-item.active .item .txt {
  display: block;
}

.slider-div .holder .item .txt h3 {
  font-size: 40px;
  font-family: sans-serif;
  font-weight: bolder;
  padding: 0 10px;
  color: var(--wtxt);
}

@keyframes slider-txt2-anime {
  0% {
    clip-path: inset(0 0 100% 0);
  }
  50% {
    clip-path: inset(0 0 100% 0);
  }
  100% {
    clip-path: inset(0 0 0% 0);
  }
}

.slider-div .holder .item .txt p {
  font-size: 25px;
  color: var(--wtxt);
  border-top: 1px solid var(--wtxt);
  padding: 0 10px;
  position: relative;
  animation: slider-txt2-anime 1.5s;
  display: none;
}

.slider-div .holder .owl-item.active .item .txt p {
  display: block;
}

.slider-div .owl-theme .owl-nav.disabled+.owl-dots{
  margin: 0;
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color4);
  padding: 5px;
  border-radius: 100px;
}

.slider-div .owl-theme .owl-dots .owl-dot{
  display: block;
}

.slider-div .owl-theme .owl-dots .owl-dot span{
  width: 18px;
  height: 18px;
  background: var(--color2);
  border-radius: 100%;
  margin: 5px 0;
  position: relative;
}

.slider-div .owl-theme .owl-dots .owl-dot span::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) scale(1.2);
  width: 100%;
  height: 100%;
  border: 1px solid var(--color2);
  border-radius: 100%;
}

.slider-div .owl-theme .owl-dots .owl-dot.active span,
.slider-div .owl-theme .owl-dots .owl-dot:hover span
{
  background: var(--color1-80);
}

@keyframes slider-anime1 {
  from {
    clip-path: inset(0 0 0 100%);
  }
}

@media only screen and (max-width:1024px) {
  .slider-div .holder .txt p {
    font-size: 30px;
    line-height: 40px;
  }
}

@media only screen and (max-width:768px) {
  .slider-div .holder .item .txt {
    bottom: 120px;
  }
  
  .slider-div .holder .item .txt h3 {
    font-size: 40px;
  }
  
  .slider-div .holder .item .txt p{
    font-size: 25px;
    line-height: 30px;
  }

  .slider-div .holder .txt::before,
  .slider-div .holder .txt::after
  {
    width: 100px;
    height: 100px;
  }

}

@media only screen and (max-width:425px) {
  .slider-div .holder .txt::before,
  .slider-txt::after
  {
    width: 50px;
    height: 50px;
    bottom: 25px;
    left: -25px;
  }

  .slider-div .holder .txt::after{
    bottom: 30px;
    left: -30px;
  }
  
  .slider-div .holder .item .txt h3 {
    font-size: 20px;
  }
  
  .slider-div .holder .item .txt p{
    font-size: 14px;
    line-height: 30px;
  }
}












.w-title{
  width: fit-content;
  position: relative;
  margin: 30px auto;
  padding: 0 15px;
  border-bottom: 5px solid var(--color1);
  border-radius: 12px;
}

.w-title p{
  width: fit-content;
  margin: 0 auto;
  color: var(--color1);
  text-align: center;
  font-family: sans-serif;
  font-size: 60px;
  font-weight: bolder;
  text-transform: uppercase;
}

@media only screen and (max-width:768px) {
  .w-title p{
    font-size: 25px;
  }
}

@media only screen and (max-width:425px) {
  .w-title p{

  }
}












.widget{
  padding: 50px 0;
  width: 100%;
  position: relative;
}

.btn {
  padding: 3px 16px;
  border-radius: 100px;
  color: var(--wtxt);
  border: 1px solid transparent;
  background: var(--color1);
  text-align: center;
}

.btn:hover {
  background: var(--color3);
  border-color: var(--wtxt);
}









/* ========================= ABOUT WIDGET ========================= */

.w-about-div {
  position: relative;
  overflow: hidden;
}

.w-about-div .backbg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url(../image/other/aboutbg.jpg) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  opacity: 0.3;
  transform: translateY(0);
  transition: all 1s;
}

.w-about-div .w-title {
  position: relative;
}

.w-about-div .holder {
  width: 100%;
  margin: 0 auto;
  padding: 30px 10px;
  position: relative;
}

.w-about-div .holder .top {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.w-about-div .holder .top .txt {
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 30px;
}

.w-about-div .holder .top .txt p {
  text-align: justify;
  font-size: 18px;
  line-height: 40px;
  color: var(--btxt);
}

.w-about-div .holder .top .img {
  width: 30%;
  position: relative;
}

.w-about-div .holder .top .img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: block;
  width: 100%;
  max-width: 300px;
  object-fit: contain;
  filter: drop-shadow(0px 0px 4px rgb(92, 92, 92));
}

.w-about-div .holder .btn-box {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 5px;
  padding: 50px 10px 10px;
}

.w-about-div .holder .btn-box a {
  display: block;
  width: fit-content;
  font-size: 25px;
  color: var(--wtxt);
  border-color: transparent;
}

.w-about-div .holder .btn-box a:hover {
  border-color: var(--wtxt);
}

@media only screen and (max-width:768px) {
  
  .w-about-div .backbg {
    background-size: cover;
  }

  .w-about-div .holder .top {
    flex-direction: column;
  }

  .w-about-div .holder .top .txt,
  .w-about-div .holder .top .img {
    width: 100%;
  }

  .w-about-div .holder .top .img img {
    max-width: 200px;
    position: relative;
    top: unset;
    left: unset;
    transform: none;
    margin: 0 auto;
  }

  .w-about-div .holder .top .txt p,
  .w-about-div .holder .btn-box a {
    font-size: 16px;
  }

  .w-about-div .holder .btn-box {
    padding: 20px 0;
    justify-content: center;
  }
}
























/* ========================= SUBJECTS WIDGET ========================= */

.w-subjects-div {
  width: 100%;
  padding: 100px 10px;
  position: relative;
}

.w-subjects-div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url(../image/other/subjectsbg.jpg) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  opacity: 0.2;
}

.w-subjects-div .holder {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}

.w-subjects-div .holder .item {
  width: 45%;
  padding: 5px 10px;
  border-radius: 10px;
  text-align: center;
  background: var(--color1);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  transform: scaleY(0);
  transition: transform 0.5s;
  overflow: hidden;
}

.w-subjects-div .holder .item:hover {
  background: var(--color3);
}

.w-subjects-div .holder .item::before {
  content: "LAZIYO";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(25deg);
  font-family: fantasy;
  font-size: 38px;
  color: var(--wtxt);
  opacity: 0.5;
  transition: all 0.1s;
}

.w-subjects-div .holder .item:hover:before {
  font-size: 45px;
  opacity: 0.25;
}

.w-subjects-div .holder .item img {
  height: 35px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: invert(1);
  display: none;
}

.w-subjects-div .holder .item p {
  color: var(--wtxt);
  font-size: 20px;
}



@media only screen and (max-width: 768px) {
  .w-subjects-div .holder .item p {
    font-size: 16px;
  }

  .w-subjects-div .holder .item img {
    height: 25px;
  }
}

@media only screen and (max-width: 600px) {
  .w-subjects-div .holder .item::before {
    opacity: 0.2;
  }

}













/* ========================== products WIDGET ========================== */

.w-products-div .holder .item {
  display: block;
  border: 1px solid var(--color1-40);
  border-radius: 10px;
  overflow: hidden;
}

.w-products-div .holder .item .txt {
  padding: 5px;
}

.w-products-div .holder .item:hover .txt {
  background: var(--color1-20);  
}

.w-products-div .holder .item .txt h3 {
  font-size: 18px;
  padding: 15px 0;
}

.w-products-div .holder .item .txt p {
  font-size: 14px;
  text-align: justify;
}

.w-products-div .holder .item .txt span {
  margin: 20px auto 0 0;
  display: block;
  width: fit-content;
}

.w-products-div .holder .item .img {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.w-products-div .holder .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.w-products-div .owl-theme .owl-nav [class*=owl-] {
  color: var(--color1);
  font-size: 40px;
  background: none;
}

.w-products-div .owl-theme .owl-nav div:hover {
  color: var(--color3);
}

@media only screen and (max-width:768px) {
  .w-products-div .holder {
    padding: 0 20px;
  }

  .w-products-div .holder .item .txt h3 {
    font-size: 16px;
  }

  .w-products-div .holder .item .txt span {
    font-size: 14px;
  }
}















/* ================= TAGLINE WIDGET ================= */

.w-tagline-div .holder {
  width: 100%;
  position: relative;
  background: var(--color1);
}

.w-tagline-div .holder .txt {
  width: 100%;
  position: relative;
  padding: 50px 20px;
}

.w-tagline-div .holder .txt p {
  font-size: 35px;
  font-weight: bold;
  width: fit-content;
  margin: 0 auto;
  color: var(--wtxt);
  border-bottom: 3px solid var(--color4);
  text-align: center;
  position: relative;
  padding: 0 40px;
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.5s;
}

.w-tagline-div .holder .txt p.show {
  transform: translateY(0);
  opacity: 1;
}

.w-tagline-div .holder .txt p::before,
.w-tagline-div .holder .txt p::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 100%;
  right: 5px;
  background: url(../image/icon/circle.png) no-repeat center;
  background-size: contain;
  filter: invert(1);
}

.w-tagline-div .holder .txt p::after {
  right: unset;
  left: 5px;
}

.w-tagline-div .holder .txt .numbers {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 550px;
  margin: 20px auto;
  padding: 20px;
  background: var(--color3-20);
  border-radius: 10px;
}

.w-tagline-div .holder .txt .numbers .item {
  width: fit-content;
  display: block;
  text-align: center;
  padding: 5px 5px 5px 40px;
  background: url(../image/icon/phone-call.png) no-repeat center left 5px, var(--color4-20);
  background-size: 30px;
  font-size: 20px;
  filter: invert(1);
  border: 1px solid transparent;
  border-radius: 10px;
  clip-path: inset(0 0 0 100%);
  transition: all 0.3s;
}

.w-tagline-div .holder .txt .numbers .item.show {
  clip-path: inset(0 0 0 0%);
}

.w-tagline-div .holder .txt .numbers .item:hover {
  border-color: var(--color3);
}

.w-tagline-div .holder .txt > a {
  display: block;
  font-size: 18px;
  width: fit-content;
  margin: 0 auto;
  background: var(--color2);
  opacity: 0;
  transform: scale(1.5);
  transition: all 0.5s;
}

.w-tagline-div .holder .txt > a.show {
  opacity: 1;
  transform: scale(1);
}

@media only screen and (max-width:768px) {
  .w-tagline-div .holder .txt {
    padding: 30px 20px;
  }

  .w-tagline-div .holder .txt p {
    font-size: 18px;
  }

  .w-tagline-div .holder .txt > a {
    width: fit-content;
  }
}


















/* ====================== BLOG WIDGET ====================== */

.w-blog-div{
  width: 100%;
  padding: 50px 0;
}

.w-blog-div .holder{
  width: 100%;
  padding-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.w-blog-div .holder .item {
  flex-basis: 25%;
  background: var(--color2);
  border-top: 10px solid var(--color1);
  transition: all 1s;
  position: relative;
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  border-radius: 10px;
  overflow: hidden;
}

.w-blog-div .holder .item.show {
  opacity: 1;
  clip-path: inset(0 0 0% 0);
}

.w-blog-div .holder .item:hover {
  border-color: var(--color1);
}

.w-blog-div .holder .item .img{
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.w-blog-div .holder .item .img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
}

.w-blog-div .holder .item .txt{
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: 10px;
  padding-bottom: 20px;
}

.w-blog-div .holder .item .txt h3{
  width: fit-content;
  margin: 0 auto;
  font-size: 20px;
  font-weight: bold;
  padding: 10px 0;
  text-align: center;
  color: var(--wtxt);
}

.w-blog-div .holder .item .backtxt {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  clip-path: inset(100% 0% 0 0);
  background: var(--color3);
  transition: all 0.5s;
}

.w-blog-div .holder .item:hover .backtxt {
  clip-path: inset(0% 0% 0 0);
  background: var(--color1);
}

.w-blog-div .holder .item .backtxt p{
  font-size: 15px;
  padding: 10px 0;
  max-height: 190px;
  overflow: hidden;
  color: var(--wtxt);
  text-align: justify;
  line-height: 35px;
}

.w-blog-div .holder .item .backtxt a{
  font-size: 16px;
  display: block;
  background: var(--color2);
  color: var(--wtxt);
  border-color: transparent;
  width: fit-content;
  margin: 0 auto 0 0;
  position: relative;
  transition: all 0.5;
}

.w-blog-div .holder .item .backtxt a:hover {
  border-color: var(--wtxt);
}

.w-blog-div .link{
  margin: 60px auto 30px;
  display: block;
  width: fit-content;
  min-width: 250px;
  font-size: 20px;
}

@media only screen and (max-width:768px) {
  .w-blog-div .holder .item{
    flex-basis: 40%;
  }

  .w-blog-div .holder .item .txt h3 {
    font-size: 16px;
  }

  .w-blog-div .holder .item .backtxt p,
  .w-blog-div .holder .item .backtxt a {
    font-size: 12px;
  }
  
  .w-blog-div .holder .item .txt p,
  .w-blog-div .holder .item .txt a
  {
    font-size: 12px;
  }

  .w-blog-div .link {
    font-size: 16px;
    padding: 10px 16px;
  }
}

@media only screen and (max-width:500px) {
  .w-blog-div .holder .item {
    flex-basis: 90%;
  }
}
















/* ================ BANNER 2 WIDGET ================ */

.w-banner-div {
  width: 100%;
  position: relative;
  padding: 30px;
  background: var(--color4-40);
}

.w-banner-div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../image/other/tagline2bg.jpg) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  z-index: -1;
}

.w-banner-div .holder {
  width: 100%;
  margin: 0 auto;
  padding: 50px;
  position: relative;
  background: var(--color4-20);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s;
}

.w-banner-div .holder.show {
  opacity: 1;
}

.w-banner-div .holder .item {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
}

.w-banner-div .holder .item img {
  object-fit: contain;
}

.w-banner-div .owl-theme .owl-nav [class*=owl-] {
  color: var(--color1);
  font-size: 40px;
  background: none;
}

.w-banner-div .owl-theme .owl-nav div:hover {
  color: var(--color3);
}


@media only screen and (max-width:768px) {
  .w-banner-div .holder {
    padding: 0;
  }
}

@media only screen and (max-width:425px) {
  .w-banner-div {
    padding: 50px 10px;
  }

}

























/* =================== ARCHIVE PAGE =================== */

.inside-page{
  margin-top: 20px;
}

.archive-page-div{
  width: 100%;
}

.archive-page-div .holder{
  padding: 30px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
}

.archive-page-div .holder .item{
  width: 45%;
  min-width: 300px;
  border: 1px solid var(--color1);
  border-radius: 10px;
  overflow: hidden;
}

.archive-page-div .holder .item .img{
  width: 100%;
  height: 35vw;
  position: relative;
  display: block;
  overflow: hidden;
}

.archive-page-div .holder .item .img img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s;
}

.archive-page-div .holder .item:hover .img img{
  width: 110%;
  height: 110%;
}

.archive-page-div .holder .item .txt{
  width: 100%;
  margin: 0 auto;
  padding: 10px;
  background: var(--color4);
}

.archive-page-div .holder .item .txt h3{
  font-size: 25px;
  padding: 0 10px;
  color: var(--btxt);
  text-align: left;
  position: relative;
}

.archive-page-div .holder .item .txt p{
  font-size: 16px;
  color: var(--btxt);
  text-align: justify;
  padding: 10px;
  max-height: 100px;
  overflow: hidden;
  line-height: 40px;
}

.archive-page-div .holder .item .txt a {
  color: var(--wtxt);
  font-size: 16px;
  font-weight: bold;
  width: fit-content;
  margin: 0 0 0 auto;
  background: var(--color1);
  padding: 5px 10px;
  border-radius: 5px;
  text-align: center;
  display: block;
  position: relative;
}

.archive-page-div .holder .item .txt a:hover {
  background: var(--btxt);
}

@media only screen and (max-width:620px) {
  .pages-title,
  .pages-title p
  {
    clip-path: none;
  }

  .pages-title{
    padding: 5px;
  }

  .pages-title p{
    font-size: 16px;
  }

  .archive-page-div .holder .item .txt h3{
    font-size: 20px;
  }

  .archive-page-div .holder .item .txt p{
    font-size: 14px;
  }
}

@media only screen and (max-width:768px) {
  .archive-page-div .holder{
    justify-content: center;
  }
}

@media only screen and (max-width:425px) {
  .archive-page-div .holder{
    padding: 30px 0;
    gap: 20px;
  }
  
  .archive-page-div .holder .item .txt h3{
    font-size: 16px;
  }

  .archive-page-div .holder .item .txt p {
    line-height: unset;
  }
}















/* ==================== CONTACT PAGE ==================== */

.contact-page-div{
  width: 100%;
}

.contact-page-div .caption{
  text-align: justify;
  padding: 20px 10px;
  color: var(--color3);
  font-size: 20px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.contact-page-div .holder{
  width: 100%;
  padding: 30px 0;
  position: relative;
  display: flex;
  justify-content: center;
}

.contact-page-div .holder .info{
  position: relative;
  max-width: 300px;
}

.contact-page-div .holder .info .item{
  padding: 10px 20px;
}

.contact-page-div .holder .info .item i{
  font-size: 30px;
  color: var(--color1);
}

.contact-page-div .holder .info .item.socials a:hover i{
  color: var(--color2);
}

.contact-page-div .holder .info .item p{
  font-size: 20px;
}

.contact-page-div .holder .contact-message{
  width: 50%;
}

.contact-page-div .holder .contact-message .form{
  width: 100%;
}

.contact-page-div .holder .contact-message .form .txt{
  width: 100%;
}

.contact-page-div .holder .contact-message .form .txt button{
  display: block;
  width: fit-content;
  padding: 5px 15px;
  border-radius: 5px;
  margin: 0 auto;
  background: var(--color1);
  color: var(--wtxt);
  margin-top: 10px;
  cursor: pointer;
  transition: all 0.1s;
}

.contact-page-div .holder .contact-message .form .txt button:hover{
  background: var(--color3);
}

.contact-page-div .holder .contact-message .form .txt .item{
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 10px;
  border-bottom: 1px solid var(--color4-40);
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 14px;
  color: var(--wtxt);
  position: relative;
  background: var(--color1-80);
}

.contact-page-div .holder .contact-message .form .txt .item:first-child {
  border-radius: 5px 5px 0 0;
}

.contact-page-div .holder .contact-message .form .txt .item.message{
  height: 160px;
  min-height: 100px;
  max-height: 220px;
  resize: vertical;
  border-bottom: 0;
  border-radius: 0 0 5px 5px;
}

.contact-page-div .holder .contact-message .form .txt .item::placeholder{
  color: var(--color4-60);
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-size: 14px;
}

.contact-page-div .holder .contact-message .form .txt .item:focus{
  background: var(--color3-40);
}

@media only screen and (max-width:768px) {
  .contact-page-div .holder {
    flex-direction: column;
  }

  .contact-page-div .holder .info,
  .contact-page-div .holder .contact-message {
    width: 100%;
  }

  .contact-page-div .holder .info {
    max-width: unset;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20;
  }

  .contact-page-div .holder .info .item {
    text-align: center;
  }
}

@media only screen and (max-width:425px) {
  .contact-page-div .holder .info .item{
    flex-basis: 100%;
  }

  .contact-page-div .holder .info .item i{
    font-size: 20px;
  }

  .contact-page-div .holder .info .item p{
    font-size: 14px;
  }

  .contact-page-div .holder .contact-message .form .title p{
    font-size: 14px;
  }

  .contact-page-div .holder .contact-message .form .txt .item,
  .contact-page-div .holder .contact-message .form .txt .item::placeholder
  {
    font-size: 14px;
  }
}














/* ==================== POST PAGE ==================== */

.post-page-div{
  width: 100%;
}

.post-page-div .date{
  width: 100%;
  display: block;
  padding: 2px 15px;
  background: var(--color3-40);
  color: var(--wtxt);
  text-align: left;
  display: none;
}

.post-page-div .holder{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 10px;
  display: grid;
}

.post-page-div .holder p{
  text-align: justify;
  line-height: 50px;
  font-size: 18px;
  color: var(--btxt);
}

.post-page-div .holder img{
  width: 50%;
  min-width: 300px;
  object-fit: contain;
  display: block;
  margin: 0 auto 0 0;
  border: 1px solid var(--color1);
}

@media only screen and (max-width:425px) {
  .post-page-div .holder p {
    font-size: 16px;
  }

  .post-page-div .holder img{
    width: 100% !important;
  }
}


















/* ===================== FOOTER ===================== */

footer{
  width: 100%;
  position: relative;
  margin-top: 60px;
  padding-top: 100px;
}

footer::after {
  content: "";
  position: absolute;
  bottom: 50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: url(../image/other/shape.svg) no-repeat center;
  background-size: cover;
  filter: brightness(0.6);
  z-index: -1;
}

footer::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--color1);
  filter: brightness(0.6);
  z-index: -1;
}

.footer-content{
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  padding: 20px 0;
  transition: all 2s;
}

.footer-content-item{
  width: 33%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}

.footer-logo{
  width: 90%;
  margin: 0 auto;
}

.footer-logo img{
  width: 100%;
  max-width: 200px;
  display: block;
  margin: 0 auto;
  padding: 10px 0;
  object-fit: contain;
  filter: grayscale(1) invert(1) brightness(1.5) drop-shadow(0px 6px 4px black);
}

.footer-center .social{
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-top: 10px;
}

.footer-center .social a{
  width: 35px;
  height: 35px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.1s;
}

.footer-center .social a:hover{
  transform: scale(0.95);
}

.footer-center .social a img{
  width: 100%;
  object-fit: contain;
}

.copy-right{
  width: 100%;
  padding: 10px;
  text-align: center;
  background: var(--color2-20);
  box-shadow: 0 0 6px inset #000;
  position: relative;
}

.copy-right p{
  font-size: 12px;
  color: var(--color4-60);
}

.copy-right p a{
  color: var(--color4-40);
}

.copy-right p a:hover{
  color: var(--color4);
}

.copy-right p a span{
  font-family: sans-serif;
}

.top-btn{
  position: absolute;
  top: -25px;
  right: 30px;
  background: url(../image/icon/up-arrow.png) no-repeat center left 12px, var(--color2);
  background-size: auto 60%;
  border-radius: 5px;
  padding: 10px;
  padding-left: 45px;
  cursor: pointer;
  transition: all 0.2s;
}

.top-btn p {
  font-size: 16px;
  font-weight: bold;
  text-align: right;
  color: var(--wtxt);
}

.top-btn:hover{
  transform: scale(0.95);
  background: url(../image/icon/up-arrow.png) no-repeat center left 12px, var(--color3);
  background-size: auto 60%;
}

@media only screen and (max-width:768px) {
  
  .footer-center .social a {
    opacity: 1;
    width: 30px;    
    height: 30px;
  }

  .top-btn {
  }

  .top-btn p {
    font-size: 14px;
  }
}

@media only screen and (max-width:600px) {
  .top-btn {
    background-position: center;
    padding: 20px;
    border-radius: 100%;
    top: unset;
    bottom: 100%;
  }

  .top-btn:hover {
    background-position: center;
  }

  .top-btn p {
    display: none;
  }
}

@media only screen and (max-width:425px) {
  .copy-right{
    padding-bottom: 35px;
  }
}






















.display-none{
  display: none !important;
}

.display-block{
  display: block !important;
}