/*!
 * Designed by Post Ajans (https://www.postajans.com.tr)
 * Developer: Berat Celik
*/
@import url('https://fonts.googleapis.com/css2?family=Special+Gothic+Expanded+One&display=swap');
@import url('fonts.css');

:root {
  /* Colors */
  --primary-color: #EF530C !important;
  --primary-light: #F4692A !important;
  --secondary-color: #00295D !important;
  --thirth-color: #F2F6F7 !important;
  --white: #fff !important;
  --text-color: #A2AEBE;
  --text-color-two: #B5CBCC;
  --text-color-three: #A3BCBE;
  --text-color-four: #98A5AE;

  /* Font Family */
  --ff-gothic: "Special Gothic Expanded One", sans-serif;
  --ff-nouvel: 'NouvelR', sans-serif;
}
body{ font-family: var(--ff-nouvel) !important;}
a {text-decoration: none !important;}

/*** Properties ***/
.site-container { width: 90%; margin: 0 auto;}
.site-margin{margin-top: 5%; margin-bottom: 5%;}
.site-padding{padding-top: 7%; padding-bottom: 7%;}

/* Font-Family */
.ff-gothic{font-family: "Special Gothic Expanded One", sans-serif !important;}
.ff-nouvel{font-family: 'NouvelR', sans-serif !important;}
/* Font-Family End */
/* Font-Sizes */
.fs-72{font-size: 72px;line-height: 93px;}
.fs-60{font-size: 60px;}
.fs-48{font-size: 48px;line-height: 54px;}
.fs-44{font-size: 44px;line-height: 57px;}
.fs-42{font-size: 42px;line-height: 54px;}
.fs-30{font-size: 30px;line-height: 39px;}
.fs-24{font-size: 24px;line-height: 31px;}
.fs-19{font-size: 19px;line-height: 25px;}
.fs-16{font-size: 16px;line-height: 32px;}
.fs-12{font-size: 12px;}
.fs-title{font-size: 16px;line-height: 61px;letter-spacing: 7.2px;}
.fw-extra-bold{font-weight: 900;}
/* Font Used End */ 

/* Colors */
.color-st{color: var(--primary-color) !important;}
.color-st-light{color: var(--primary-light) !important;}
.color-nd{color: var(--secondary-color) !important;}
.color-th{color: var(--thirth-color) !important;}
.color-text{color: var(--text-color) !important;}
.color-text-two{color: var(--text-color-two) !important;}
.color-text-three{color: var(--text-color-three) !important;}
.color-text-four{color: var(--text-color-four) !important;}
/* Colors End */
/* BG Colors */
.primary-bg{background-color: var(--primary-color) !important;}
.secondary-bg{background-color: var(--secondary-color) !important;}
.third-bg{background-color: var(--thirth-color) !important;}
/* BG Colors End */
/*** Properties End ***/

/*** Button Designs ***/
.button-one{
  border-radius: 50px;
  padding: 15px 40px;
  font-size: 12px;
  background-color: transparent;
  transition: all .4s;
}
.button-one:hover{
  background: linear-gradient(135deg, #FF9767 0%, var(--primary-color) 100%); border: 1px solid transparent; color: var(--white);
}
.white-border{ border: 1px solid var(--white); color: var(--white); }
.st-border{ border: 1px solid var(--primary-color); color: var(--primary-color); }
.nd-border{ border: 1px solid var(--secondary-color); color: var(--secondary-color); }

.filter-btn{
  padding: 15px 40px;
  width: 100%;
  border-radius: 10px;
  transition: all .4s;
  background: linear-gradient(135deg, #FF9767 0%, var(--primary-color) 100%); border: 1px solid transparent; color: var(--white);
}
.gradient-border {
  display: inline-block;
  position: relative;
  padding: 15px 40px;
  background: transparent;
  border-radius: 10px;
  transition: all 0.4s;
  z-index: 9;
}
.gradient-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(253deg, var(--primary-color), var(--secondary-color));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: 9;
}
.gradient-border span {
  position: relative;
  z-index: 1;
  background: linear-gradient(253deg, var(--primary-color), var(--secondary-color));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  transition: color 0.4s, background 0.4s;
}
.gradient-border:hover {
  background: linear-gradient(253deg, var(--primary-color), var(--secondary-color));
}
.gradient-border:hover .glass{opacity: 1;}
.glass{
  position: absolute;
  z-index: 0;
  width: 30px;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0px 0px 70px 30px rgba(255, 97, 61, 1);
  opacity: 0;
  transition: all .4s;
}
.gradient-border:hover span {
  background: none;
  color: var(--white);
  -webkit-text-fill-color: var(--white);
}

.circle-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-color-three);
  transition: color 0.4s;
}
.icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--text-color-three);
  border-radius: 50%;
}
.icon-circle i {font-size: 12px;}
/*** Button Designs End ***/

/* Menu */
.navbar {
  position: absolute !important;
  height: 150px;
  margin: auto !important;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99;
}
.dropdown-menu {
  display: none !important;
  background-color: rgba(31, 45, 59, .3) !important;
  color: var(--white) !important;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  z-index: -1;
  top: 100%;
  left: 0;
  /* width: 100%; */
}
.dropdown-item:focus, .dropdown-item:hover {
  color: var(--primary-color) !important;
}
.menu-dropdown {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--white);
}

.navbar .nav-item {padding-left: 20px; font-family: var(--ff-nouvel) !important; font-weight: bold !important;}
.navbar .nav-item .phone-link {font-size: 24px !important;}
.navbar .nav-link {color: var(--white); transition: all .4s !important;}
.navbar .nav-link:hover {color: var(--primary-color) !important;}
.navbar .nav-link:focus {color: var(--primary-color) !important;}

.menu-color .nav-link {color: var(--secondary-color); transition: all .4s !important;}
.menu-color .nav-link.cenmy{
  background: linear-gradient(259deg, #EF530C, var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.menu-color .circle-border{border: 1px solid var(--secondary-color) !important;}
.menu-color .request-btn{
  border: 1px solid var(--secondary-color) !important;
  color: var(--secondary-color) !important;
}
.menu-color .nav-item.dropdown:hover .dropdown-menu.flag{border: 1px solid var(--secondary-color);}

.navbar-toggler {
  padding: 0;
  line-height: 0;
  border: none !important;
  background-color: var(--white) !important;
  border-radius: 50px !important;
  width: 48px !important;
  height: 48px !important;
}
.navbar-toggler:focus {
  box-shadow: none !important;
}
.circle-border{
  border: 1px solid var(--white) !important;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex !important; align-items: center !important; justify-content: center !important;
}
.request-btn{
  height: 54px;
  padding: 0 30px;
  display: flex; 
  align-items: center; 
  width: auto; 
  border: 1px solid var(--white); 
  color: var(--white); 
  border-radius: 50px;
}
.nav-item.dropdown:hover .dropdown-menu {
  display: block!important;
  visibility: visible!important;
  opacity: 1!important;
  animation: .3s ease-in-out fadeIn;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10
}
.nav-item.dropdown:hover .dropdown-menu.flag{
  background-color: transparent !important;
  border: 1px solid var(--white);
  width: 54px !important;
  min-width: 54px !important;
  border-radius: 50px;
  left: auto;
}
.dropdown-menu .lang{margin-top: 10px; margin-bottom: 20px;}
.dropdown-menu .lang:hover{background-color: transparent !important;}

.nav-link.cenmy{
  background: linear-gradient(259deg, #EF530C, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.navbar-anim{
  position: absolute;
  z-index: 2;
  width: 31px;
  left: 0;
  right: 0;
  border-radius: 50%;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0px 0px 100px 30px rgba(255, 97, 61, 1);
  margin: -90% 43%;
  transition: all .4s;
  opacity: 0;
}
.nav-link.cenmy:hover .navbar-anim{
  opacity: 1;
}
.navbar-brand:hover .logo-two{
  opacity: 1;
}
.logo-two{
  opacity: 0;
  transition: all .4s;
}
/* Menu End */

/* Slider */
.main-slider, .slider-item, .slider-item img, .slider-item video{ height: 100vh; overflow: hidden;}
.slider-img{ object-fit: cover; }
.slider-item video{ object-fit: cover; object-position: center center; width: 100vw}

.slider-path{
  position: absolute;
  bottom: -30%;
  left: -17%;
  width: 50% !important;
}
.slider-prod {
  position: absolute;
  width: 40% !important;
  height: auto !important;
  object-fit: contain;
  right: 10%;
  bottom: 10%;
  opacity: 0;
  transform: translateX(150%);
  animation: slideIn 1s ease forwards;
  animation-delay: 0.5s;
}
.slider-prod.show {
  right: 10%;
  opacity: 1;
}
@keyframes slideIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.slide-count{
  left: 5%;
  font-size: 60px;
  bottom: calc(10% + 40px); position: absolute; z-index: 2;
  font-family: var(--ff-gothic);
}
.slider-btn{
  position: absolute;
  bottom: 10%;
  background-color: transparent;
  width: 54px; height: 54px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  z-index: 3;
}
.slider-btn.custom-prev{
  left: 5%;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}
.slider-btn.custom-next{
  left: calc(5% + 70px);
  border: 1px solid var(--white);
  color: var(--white);
}
.slider-text-box{
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 20%;
}
.slide-tb-bg{
  position: absolute;
  z-index: 9;
  width: 257px;
  height: 156px;
  right: 20%;
  bottom: 5%;
  border-radius: 24px;
  opacity: 1;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  animation: moveUpDown 1.5s infinite alternate ease-in-out;
}
.slider-textbox-two{
  padding: 20px 35px;
  position: absolute;
  z-index: 9;
  width: 257px;
  height: 156px;
  box-shadow: inset 0px 0px 8px #FFFFFFF0;
  mix-blend-mode: color-dodge;
  border-radius: 24px;
  color: var(--white);
}
@keyframes moveUpDown {
  0% {
    transform: translateY(-10px); 
  }
  100% {
    transform: translateY(10px); 
  }
}
/* Slider End */

/* Corporate */
.corporate{
  width: 100%;
  height: 395px;
  object-fit: cover;
  position: relative;
  border-radius: 24px;
}
.corporate img{
  width: 100%;
  height: 395px;
  object-fit: cover;
  border-radius: 24px;
}
.corporate .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #EF530C00 0%, #EF530C 100%);
  z-index: 1;
  border-radius: 24px;
}
.corporate .corporate-text{
  position: absolute;
  z-index: 2;
  right: -50px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-family: var(--ff-gothic) ;
  background: linear-gradient(245deg, var(--thirth-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 40px;
  margin: 0 !important; line-height: auto !important;
}
/* Corporate End */

/* Categories */
.owl-btn{
  background-color: transparent;
  width: 54px; height: 54px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  z-index: 3;
}
.owl-btn.category-prev{border: 1px solid var(--primary-color) !important; color: var(--primary-color);}
.owl-btn.category-next{border: 1px solid var(--secondary-color) !important; color: var(--secondary-color);}

.category-card{
  aspect-ratio: 1;
  width: 100%;
  height: auto;
  background-color: #F2F6F7;
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  padding: 30%;
  transition: all .4s;
}
.category-card:hover{
  background: linear-gradient(145deg, #ff9463, var(--primary-color));
}
.category-card img{width: 100%;}
.home-path{
  position: absolute;
  z-index: 0;
  right: -38%;
  top: -15%;
}
/* Categories End */

/* Parallax */
.parallax-container {
  border-radius: 24px;
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 615px;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-text-box-bg{
  position: absolute;
  z-index: 9;
  width: 420px;
  height: calc(100% - 50px);
  left: 50px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 24px;
  opacity: 1;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.parallax-text-box{
  padding: 60px 50px;
  position: absolute;
  z-index: 9;
  width: 420px;
  height: calc(100% - 50px);
  box-shadow: inset 0px 0px 8px #FFFFFFF0;
  mix-blend-mode: color-dodge;
  border-radius: 24px;
  color: var(--white);
}
/* Parallax End */ 

/* Counter */
.counter-bg{
  background-color: var(--thirth-color);
  border-radius: 24px;
  padding: 20px;
  overflow: hidden;
}
.counter-icon {
  position: absolute;
  left: 0px;
  bottom: -50%;
  opacity: 0;
  transition: all .4s;
}
.counter-text{
  min-width: 140px !important;
  margin-left: 50px;
  color: var(--text-color-two);
  transition: all .4s;
}
.counter-bg .counter-item:hover .counter-icon {
  opacity: 1;
}
.counter-bg .counter-item:nth-child(odd):hover .counter-text {
  color: var(--primary-color);
}
.counter-bg .counter-item:nth-child(even):hover .counter-text {
  color: var(--secondary-color);
}
.counter-border{border-right: 1px solid var(--text-color-two);}
/* Counter End */

/* Search */
.search-bg{
  background: linear-gradient(102deg, #E4EEF1, #A2BEBF);
  border-radius: 16px;
  padding: 70px 50px;
}
.search-prod-img{
  margin-top: -140px;
  z-index: 2;
  position: relative;
}
.search-form select{
  padding: 10px;
  width: 100%;
  border: none;
  border-radius: 27px;
  background-color: var(--text-color-two);
  color: var(--white);
}
.search-form input{
  padding: 10px;
  width: 100%;
  border: none;
  border-radius: 27px;
  background-color: #E3EEF1;
  color: #B6CBCB;
}
.search-form input:focus{
  border: none;
  outline: 0;
}
.search-form select:focus{
  border-radius: 15px 15px 0 0;
  border: none;
  outline: 0;
}
.search-form option{
  border: none;
  outline: 0;
}
#searchModal .modal-content{
  background: linear-gradient(102deg, #E4EEF1, #A2BEBF);
}
/* Search End */

/* FAQ Card */
.faq-card{
  height: 100px;
  border-bottom: 1px solid var(--text-color-two);
}
.faq-card .faq-content{
  display: none;
  line-height: 28px;
}
.faq-card:hover .faq-title{display: none;}
.faq-card:focus .faq-title{display: none;}
.faq-card:hover .faq-content{display: block;}
.faq-card:focus .faq-content{display: block;}
/* FAQ Card End */

/* Media */
.media-bg{
  background-color: #BDCCD1;
  height: 175px;
  border-radius: 10px 10px 0px 0px;
  overflow: hidden;
}
.truck{
  width: 100%;
  height: 175px;
  object-fit: contain;
  margin-left: -40%;
  transform: scale(1.4);
}
/* Media End */
/** Media Page **/
.media-banner{
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 500px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-overlay{
  background: #292929 0% 0% no-repeat padding-box;
  mix-blend-mode: multiply;
  position: absolute;
  z-index: 0;
  top: 0;
  text-align: center;
  width: 100%;
  height: 100%;
  opacity: .42;
  transition: all .4s;
}
.circle-btn{
  border: 1px solid var(--white);
  width: 150px;
  height: 150px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  display: flex;
  top: 50%;
  left: 40%;
  transform: translate(-50%, 0%);
  position: relative;
  opacity: .6;
  transition: all .3s;
}
.circle-btn:hover{
  opacity: 1;
}

.news-image{
  height: 400px;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
}
.news-link{
  color: var(--secondary-color);
  transition: all .4s;
}
.under-line{
  height: 2px;
  width: 10px;
  background-color: var(--secondary-color);
  margin-top: 10px;
  transition: all .4s;
  opacity: 0;
}
.news-link:hover .under-line{
  width: 50px;
  opacity: 1;
}
.new-detail-img{
  height: 600px;
  object-fit: cover;
  object-position: center;
}
.latest-post{transition: all .4s;}
.latest-post img{width: 75px; height: 75px; object-fit: cover; object-position: center;}
.latest-post:hover{background-color: var(--white);}
/** Media Page End **/

/* Banner */
.banner{width: 100%; height: 580px; display: block;}
.banner img{width: 100%; height: 580px; object-fit: cover;}
.banner-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(68deg,rgba(239, 83, 12, 1) 20%, rgba(239, 83, 12, 0) 70%);
  opacity: 0.69;
}
.banner-text{
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  left: 5%;
  right: 5%;
  width: 25%;
}
.banner-bread{
  border-radius: 27px;
  opacity: 1;
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  background-color: rgba(255, 255, 255, .4);
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  position: absolute;
  display: flex;
  z-index: 5;
  padding: 15px 10px !important;
}
.banner li{
  text-align: center;
  color: var(--white);
}
.banner li+li::before {
  content: "|";
  color: var(--white);
}
.banner li a, .banner li p{
  color: var(--white);
  padding: 0 10px 0 10px;
  transition: all .4s;
}
.banner li a:hover{
  color: var(--secondary-color);
}
/* Banner End */

/* Footer */
.footer-bg{
  background-color: #F4F7F8;
  border-radius: 0px 0px 10px 10px;
}
.footer-social-media a{
  color: var(--white-2);
  margin-right: 10px;
  transition: all .4s;
}
.footer-social-media a:hover{
  color: var(--primary-color);
}
.contact-area a{transition: all .4s;}
.contact-area a:hover{color: var(--primary-color) !important;}
/* Footer End */

/** Corporate Page **/
.banner-bottom{
  position: relative;
  z-index: 2;
  margin-top: -5%;
}
.corporate-gradient{
  height: 440px;
  border-radius: 24px;
  background: linear-gradient(68deg,rgba(239, 83, 12, 1) 0%, rgba(255, 151, 103, 1) 100%);
}
.kaliper{font-size: 299px; color: #FA814B;}
/* Newsletter */
.newsletter{
  background-color: var(--text-color-two);
  border-radius: 24px;
  height: 270px;
}
.newsletter img{
  height: 270px;
  object-fit: cover;
  border-radius: 0 24px 24px 0px;
}
.newsletter-form{
  display: flex;
  align-items: center;
}
/* Newsletter End */

/* Documents */
.documents{
  height: 510px;
  background: linear-gradient(225deg,rgba(0, 41, 93, 1) 0%, rgba(57, 110, 178, 1) 100%);
  border-radius: 24px 0 0 24px;
  width: 50%;
  position: absolute;
  right: 0; 
}
.document-height{min-height:510px;}
.files img{
  height: 400px;
  object-fit: contain;
}
/* Documents End */

/** Corporate Page End **/

/** Products Page **/
.category-list {
  position: relative;
  background: linear-gradient(150deg, #F5F9FA 0%, #E4EEF1 100%);
  padding: 35px 0;
  border-radius: 10px;
  box-shadow: 0px 5px 20px 0px #C5DBE2;
  position: sticky;
  top: 30px;
}
.category-list li a{
  padding: 20px 35px;
  position: relative;
}
.has-sub {
  position: relative;
}
.sub-category {
  display: none;
  position: absolute;
  top: 0;
  left: calc(100% + 10px);
  background: linear-gradient(350deg, var(--secondary-color) 0%, #7095c4 100%);
  padding: 20px 0;
  border-radius: 10px;
  list-style: none;
  min-width: 300px;
  z-index: 10;
}

.has-sub:hover > .sub-category {
  display: block;
}

.has-sub::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 15px;
  height: 100%;
}
.sub-category li a{
  padding: 10px 35px;
  position: relative;
}
.sub-category li i{opacity: 0; transition: .3s;}
.sub-category li a:hover i{opacity: 1;}
.has-sub:hover > .sub-category {
  display: block;
}

.product-card{
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0px 5px 20px 0px #C5DBE2;
  padding: 40px 45px;
  transition: all .4s;
}
.product-card:hover{
  background: linear-gradient(319deg, var(--primary-color) 0%,  #FF9767 100%);
}
.product-card:hover p, .product-card:hover a{color: var(--white) !important;}
.product-card:hover .icon-circle{border: 1px solid var(--white) !important;}
.product-card img{
  height: 195px;
  object-fit: contain;
  display: block; margin: auto;
}

#listView .product-card{
  padding: 20px 25px;
  transition: all .4s;
}
#listView .product-card img{
  height: 150px;
}
/** Products Page End **/

/** Product Detail **/
.p-detail{
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0px 5px 20px 0px #C5DBE2;
  padding: 20px 40px;
}
.p-detail-card {
  width: 100%;
  height: 540px;
  border-radius: 24px;
  box-shadow: 0px 5px 20px 0px #C5DBE2;
  overflow: hidden;
  background: var(--white);
  position: relative;
}
.p-detail-card img#main-image {
  height: 315px;
  width: 100%;
  object-fit: contain;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.3s ease;
}
.prod-thumbnail {
  position: absolute !important;
  bottom: 10px;
  left: 10px;
  width: 100% !important;
  z-index: 3;
}
.prod-thumbnail .item {
  cursor: pointer;
  padding: 5px;
  background-color: var(--thirth-color);
  width: 95px;
  border-radius: 18px;
}
.prod-thumbnail img {
  width: 95px;
  height: 95px;
  object-fit: contain;
  border-radius: 18px;
  transition: all 0.3s;
  opacity: .4;
}
.prod-thumbnail .active-thumb img{
  opacity: 1;
}
/** Product Detail End **/

/** Contact Page **/
.contact-info i{
  color: var(--secondary-color) !important;
}
.contact-form input, .contact-form textarea{
  width: 100%;
  border: 1px solid var(--text-color-two);
  padding: 15px 25px;
  border-radius: 10px;
}
.contact-form input:focus, .contact-form textarea:focus{
  border: 1px solid var(--secondary-color);
  outline: none;
}
.contact-info a{transition: all .4s;}
.contact-info a:hover{color: var(--primary-color) !important;}
/** Contact Page End **/