/*!
 * Designed by Post Ajans (https://www.postajans.com.tr)
 * Developer: Berat Celik
*/
@import url('https://fonts.googleapis.com/css2?family=Boldonse&family=Host+Grotesk:ital,wght@0,300..800;1,300..800&display=swap');
@import url('fonts.css');

:root {
  /* Colors */
  --primary-color: #0144A3 !important;
  --primary-light: #6F98D1 !important;
  --primary-dark: #073E8B;
  --primary-dark-two: #00295D;
  --secondary-color: #6F818F !important;

  --section-color: #F1F5F9;

  --gray: #F5F6F7;
  --light-gray: #9B9B9B;
  --l-gray-two:#D6E1EA;
  --white: #ffffff;
  --white-two: #F4F4F4;

  /* Font Family */
  --ff-boldonse: "Boldonse", system-ui;
  --ff-nouvel: 'NouvelR', sans-serif;
}
body{ font-family: var(--ff-nouvel) !important;}
a {text-decoration: none !important;}

/*** Properties ***/
.site-margin{margin-top: 5%; margin-bottom: 5%;}
.site-padding{padding-top: 7%; padding-bottom: 7%;}

/* Font-Family */
.ff-boldonse{font-family: "Boldonse", system-ui !important;}
.ff-nouvel{font-family: 'NouvelR', sans-serif !important;}
/* Font-Family End */
/* Font-Sizes */
.fs-77{font-size: 77px;line-height: 130px;}
.fs-48{font-size: 48px;line-height: 92px;}
.fs-36{font-size: 36px;line-height: 69px;}
.fs-30{font-size: 30px;line-height: 58px;}
.fs-24{font-size: 24px;line-height: 46px;}
.fs-24-p{font-size: 24px;line-height: 29px;}
.fs-18{font-size: 18px;line-height: 22px;}
.fs-14{font-size: 14px;line-height: 17px;}
.fs-12{font-size: 12px;}
.fs-title{font-size: 16px; line-height: 20px; letter-spacing: 3.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-st-dark{color: var(--primary-dark);}
.color-st-dark-two{color: var(--primary-dark-two);}
.color-nd{color: var(--secondary-color) !important;}
.color-th{color: var(--thirth-color) !important;}
.light-gray{color: var(--light-gray)}
.l-gray-two{color: var(--l-gray-two)}
.white-two{color: var(--white-two)}
.section-color{color: var(--section-color)}

/* Colors End */
/* BG Colors */
.primary-bg{background-color: var(--primary-color) !important;}
.primary-dark-bg{background-color: var(--primary-dark);}
.secondary-bg{background-color: var(--secondary-color) !important;}
.third-bg{background-color: var(--thirth-color) !important;}
.section-bg{background-color: var(--section-color);}
.gray-bg{background-color: var(--gray);}
/* BG Colors End */
/*** Properties End ***/

/*** Button Designs ***/
.button-one {
  border-radius: 8px;
  padding: 10px 25px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.4s;
}
.button-one:hover{
  border-radius: 50px;
}

.button-one .icon {
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.button-one .before,
.button-one .after {
  position: absolute;
  transition: all 0.3s ease;
}

.button-one .after {
  opacity: 0;
  transform: translateX(-5px);
}

.button-one .before {
  opacity: 1;
  transform: translateX(0);
}

.button-one:hover .before {
  opacity: 0;
  transform: translateX(5px);
}

.button-one:hover .after {
  opacity: 1;
  transform: translateX(5px);
}

.white-border {
  border: 1px solid var(--white);
  color: var(--white);
}
.primary-border {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

/* Gradient Button */
.gradient-btn{
  border-radius: 5px;
  background: linear-gradient(90deg,rgba(85, 104, 119, 1) 50%, rgba(111, 129, 143, 1) 100%);
  width: 100%;
  padding: 15px 25px !important;
  color: var(--white) !important;
  transition: all .4s;
}
.gradient-btn:hover{
  background: linear-gradient(-90deg,rgba(85, 104, 119, 1) 50%, rgba(111, 129, 143, 1) 100%);
  color: var(--white) !important;
}
/* Gradient Button End */

/* Whatsapp */
.wp-button{
  background-color: #6ACD73;
  color: #fff;
  border: 0;
  border-radius: 10px 10px 0 0;
  padding: 15px 25px;
  min-width: 445px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  right: 1%;
  bottom: 0;
  cursor: pointer;
  z-index: 99;
}

/* Chat box */
.wp-chat{
  position: fixed;
  right: 1%;
  bottom: 45px;
  width: 445px;
  background: #fff;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  padding: 15px;
  padding-bottom: 50px;
  display: none;
  z-index: 98;
}
.message{
  display: flex;
  margin-bottom: 20px;
  align-items: flex-start;
}

.message.left{justify-content: flex-start;}

.message.right{
  justify-content: flex-end;
  text-align: end;
}
.bubble{
  max-width: 200px;
  background: #efefee;
  padding: 10px 15px;
  font-size: 14px;
}
.message.left .bubble{border-radius: 0 15px 15px 15px ;}
.message.right .bubble{border-radius: 15px 0 15px 15px ;}

.name{
  display: block;
  font-size: 11px;
  font-weight: bold;
  margin-bottom: 5px;
}

.avatar{
  width: 35px;
  height: 35px;
  background: #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 8px;
}
.wp{
  background: linear-gradient(90deg, #4dab56, #6ACD73);
  color: #fff;
  border-radius: 10px;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 410px;
  margin: auto;
}
/* Whatsapp End */
/*** Button Designs End ***/

/* Menu */
.navbar {height: 100px;}
.logo {width: 225px;}
.navbar .nav-item {padding-left: 50px; font-size: 14px; font-family: var(--ff-nouvel) !important;}
.navbar .nav-link {color: var(--secondary-color); transition: all .4s !important;}
.navbar .nav-link:hover {color: var(--primary-color) !important;}
.navbar .nav-link:focus {color: var(--primary-color) !important;}

.menu-transparent{position: absolute !important; width: 100%; background-color: transparent !important; z-index: 9;}
.menu-transparent .nav-link {color: var(--white) !important; transition: all .4s !important;}
.menu-transparent .nav-link:hover {color: var(--white) !important;}

.plus-item i{transition: all .4s;}
.plus-item:hover i{transform: rotate(-45deg);}
.plus-item li{border-bottom: 1px solid var(--section-color); width: 300px;}
.plus-item a{padding: 15px 0px; transition: all .4s;}
.plus-item li a:hover{background-color: transparent; color: var(--primary-color) !important;}
.dropdown-menu {
  position: absolute;
  z-index: -1;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px !important;
}
.nav-item.dropdown:hover .dropdown-menu {
  display: block !important;
  position: absolute;
  z-index: 10
}

.nav-item.dropdown:hover .dropdown-menu.flag{
  background-color: transparent !important;
  /* background-color: #EAEAEA !important; */
  border: 1px solid var(--white);
  width: 48px !important;
  min-width: 48px !important;
  border-radius: 12px;
  left: 40px !important;
}
.dropdown-item .lang img{
  display: flex; align-items: center; justify-content: center;
}
.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;
}

/* .search-btn, .flag-border{
  width: 48px; height: 48px;
  border-radius: 12px;
  color: var(--white) !important;
}
.search-btn{
  background-color: var(--secondary-color) !important;
}
.flag-border{
  background-color: #EAEAEA !important;
  position: relative;
}
.flag-border:hover{height: 100px;}
.flag-border:hover .passive{opacity: 1;}
.flag-border img{
  width: 48px;
  height: 48px;
  padding: 12px;
}
.flag-border .passive{opacity: 0;} */

.search-btn{
  width: 48px; height: 48px;
  border-radius: 12px;
  color: var(--white) !important;
}
.search-btn{
  background-color: var(--secondary-color) !important;
}
.flag-wrap{
  width: 48px;
  height: 48px;
  z-index: 10;
}
.flag-border{
  background-color: #EAEAEA;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}
.flag-border > a img{
  width: 48px;
  height: 48px;
  padding: 12px;
  display: block;
}
.langs{
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: all .4s
}

.flag-border:hover .langs{
  max-height: 300px;
}
.langs img{
  width: 48px;
  height: 48px;
  padding: 12px;
}

/* Menu End */

/* Slider */
.main-slider, .slider-item, .slider-item img, .slider-item video{position: relative; height: 870px; overflow: hidden; border-radius: 10px;}
.slider-img{ object-fit: cover; }
.slider-item video{ object-fit: cover; object-position: center center; width: 100vw}

.slide-count{
  font-size: 142px; line-height: 189px;
  font-family: "Host Grotesk", sans-serif;
  opacity: .3;
}
.slider-text-box{
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 90%;
}
.main-title{width: 25%;}
.divider{height: 3px; width: 100%; background-color: var(--primary-color); width: 20%;}

.promotion-film{
  position: absolute;
  top: 50%;
  transform: translate(-50%);
  z-index: 9;
  right: 0%
}
.play-btn{
  width: 120px; height: 120px; border: 1px solid var(--white);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--white);
}
.slider-btn{
  background-color: transparent;
  width: 50px; height: 50px; display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  z-index: 3;
  border: 1px solid var(--white);
  color: var(--white); 
}

.slider-bottom{
  position: absolute;
  bottom: 0;
  margin-bottom: 20px;
  left: 5%;
  right: 5%;
}
.slider-social-media{
  background-color: rgba(255, 255, 255, .3);
  padding: 10px 20px; border-radius: 8px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  position: absolute;
  bottom: calc(15% + 10px);
  right: 0;
  z-index: 2;
}
.slider-social-media a{
  color: var(--white);
  margin-right: 10px;
  margin-left: 10px;
  transition: all .4s;
}
.slider-social-media a:hover{
  color: var(--primary-color);
}
/* Slider End */

/* Partners */
.partner-box{
  height: 120px;
  border: 1px solid #E8ECEE;
  border-radius: 10px;
  align-items: center; display: flex; justify-content: center;
  transition: all .4s;
}
.partner-box p{transition: all .4s;}
.partner-box:hover p{color: var(--primary-color) !important;}
/* Partners End */

/* Paths */
/* .rounded-path{
  clip-path: path("M1920,0V46.7c-290.55,31.54-616.15,49.21-960,49.21S290.55,78.238,0,46.7V0Z");
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100px;
}

.rounded-path-invert{
  clip-path: path("m1920 0v931.65c-290.55 31.54-616.15 49.22-960 49.22-343.85 0-669.45-17.67-960-49.22v-931.65c290.55 31.54 616.15 49.21 960 49.21 343.85 0 669.45-17.67 960-49.21z");
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100px;
} */

.rounded-path {
  clip-path: url(#roundedPath);
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100px;
  shape-rendering: crispEdges;
  margin-top: -5px;
}

.rounded-path-invert {
  clip-path: url(#roundedPathInvert);
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100px;
  shape-rendering: crispEdges;
  margin-bottom: -2px;
}
/* .rounded-path-invert path{width: 100% !important;} */


/* Paths End */

/* Corporate */
.brand-name{
  font-size: 200px; line-height: 386px;
  color: #0448AA;
  font-family: var(--ff-boldonse);
  position: absolute;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
}

.corporate .path {
  width: 100%;
  margin-top: -20%;
}
/* Corporate End */

/* Category */
.category.owl-carousel .owl-stage-outer{padding: 20px 10px ;}
.category-card{
  background-color: var(--white);
  border-radius: 10px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .4s;
  box-shadow: 0px 9px 22px -10px rgba(0,0,0,0.1);
}
.category-card:hover{
  background-color: var(--primary-color);
}
.category-card:hover .number{color: var(--primary-dark) !important;}
.category-card:hover p{color: var(--white) !important;}

.go-btn{
  width: 50px; height: 50px; border: 1px solid var(--white);
  border-radius: 8px; color: var(--white);
  display: flex; align-items: center; justify-content: center;
}

.category-card img{width: 350px !important;}

.number{
  font-size: 145px;
  font-family: var(--ff-boldonse);
  color: var(--white-two);
}
.categories .brand-name{
  margin-top: -16%;
  z-index: 1;
  color: #E9EEF4;
  left: -20px;
  transform: translateX(0%);
}

.category-prev, .category-next{
  border-radius: 8px;
  padding: 10px 15px;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  background-color: transparent;
  transition: all .4s;
}
.category-prev:hover, .category-next:hover{
  border-radius: 30px;
  background-color: var(--primary-color);
  color: var(--white);
}
/* Category End */

/* Parallax */
.parallax-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 1080px;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.parallax-container .container{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* Parallax End */

/* FAQ */
.faq-card{ border-bottom: dashed rgba(255, 255, 255, .2);}
.faq-card p{transition: all .4s;}
.faq-card .row{border-radius: 10px; transition: all .4s;}
.faq-card .row:hover{background-color: var(--primary-dark);}
.faq-card .row:hover p{color: var(--white) !important;}
/* FAQ End */

/* Documents */
.documents{
  height: 510px;
  background-color: var(--primary-color);
  width: 50%;
  position: absolute;
  right: 0; 
  border-radius: 10px 0 0 10px ;
}
.document-height{min-height:510px;}
.files img{
  height: 400px;
  object-fit: contain;
}

.files-prev, .files-next{
  border-radius: 8px;
  padding: 10px 15px;
  border: 1px solid var(--white);
  color: var(--white);
  background-color: transparent;
  transition: all .4s;
}
.files-prev:hover, .files-next:hover{
  border-radius: 30px;
  background-color: var(--primary-color);
  color: var(--white);
}
/* Documents End */

/* News */
.news-card .date{color: #E1E5E7;}
.news-card a{color: #98a5ae;}
.news-card .fs-18.fw-bold{color: #324C5E;}
.news-card img{
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
}
/* News End */

/* Contact Banner */
.contact-banner{
  border-radius: 10px;
  background: radial-gradient(circle,rgba(243, 251, 255, 0) 0%, rgba(181, 235, 255, 1) 100% );
}
.contact-banner .fs-48{line-height: 58px;}
/* Contact Banner End */

/* Footer */
footer{background-color: #EDF1F9;}
footer a{color: var(--primary-color);}
footer .logo{width: 400px;}
.footer-social-media a{ margin: 0 10px; font-size: 20px;}

footer ul>li>.fs-12{color: #324C5E;}

footer input{
  background-color: #CBD8F5;
  border-radius: 15px;
  padding: 15px 25px;
  width: 100%;
  border: none;
  margin: 10px 0;
}
footer input:focus{
  border: none;
  outline: 0;
}
footer input::placeholder{
  color: var(--primary-color);
}
/* Footer End */

/* Banner */
.banner{height: 550px;}

.banner-bottom{
  position: relative;
  z-index: 2;
  margin-top: -5%;
}
/* Banner End */

.corporate-img{ margin-top: -50%; }

/** Products Page **/
.category-list {
  position: relative;
  background-color: #DDE1E4;
  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;
  color: #00295D !important;
}
.has-sub {
  position: relative;
}
.sub-category {
  display: none;
  position: absolute;
  top: 0;
  left: calc(100% + 10px);
  background: linear-gradient(350deg, var(--primary-color) 0%, #7196c5 70%);
  padding: 20px 0;
  border-radius: 10px;
  list-style: none;
  min-width: 300px;
  z-index: 999;
}

.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;
    color: #fff !important;
}
.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 #7196c5;
  padding: 40px 45px;
  transition: all .4s;
}
.product-card:hover{
  background-color: var(--primary-color);
}
.product-card:hover p, .product-card:hover a{color: var(--white) !important;}
.product-card:hover .primary-border{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 Page **/
.p-detail-img{width: 100%; height: auto; aspect-ratio: 1;}
.p-detail-img img{width: 100%; aspect-ratio: 1; object-fit: contain;}
/** Product Detail Page End **/

/* Media Page */
.media-film-banner{
  height: 350px;
  position: relative;
  display: flex; align-items: center; justify-content: start;
}
.media-film-banner img{
  height: 350px;
  object-fit: cover;
}

.media-overlay {
  background: rgba(0, 41, 93, .6) 0% 0% no-repeat padding-box;
  mix-blend-mode: multiply;
  position: absolute;
  z-index: 0;
  top: 0;
  text-align: center;
  width: 100%;
  height: 100%;

  transition: all .4s;
}
/* Media Page End */

/** Contact Page **/
.contact-info i{
  color: var(--secondary-color) !important;
}
.contact-form input, .contact-form textarea{
  width: 100%;
  border: 1px solid var(--secondary-color);
  padding: 15px 25px;
  border-radius: 10px;
}
.contact-form input:focus, .contact-form textarea:focus{
  border: 1px solid var(--primary-color);
  outline: none;
}
.contact-info a{transition: all .4s;}
.contact-info a:hover{color: var(--primary-color) !important;}
/** Contact Page End **/

/* News Detail */
.latest-news{
  width: 30%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

.news-list-card{
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  transition: all .4s;
}
.news-list-card:hover{
  background-color: transparent;
  border: 1px solid var(--secondary-color);
}
.news-list-card:hover p.fs-16{
  color: var(--secondary-color) !important;
}
/* News Detail End */