/* ===========================
  © 2025 All right reserved.
  UI Designer: Oktay Guden (oktayguden.com.tr)
  Web Developer: Berat Celik (beratcelik.com.tr)
  =========================== */
@import url('https://fonts.googleapis.com/css2?family=Wix+Madefor+Display:wght@400..800&family=Zalando+Sans+Expanded:ital,wght@0,200..900;1,200..900&display=swap');

:root {
  /* Colors */
  --primary-color: #F7A300 !important;
  --primary-light: #FFBA33 !important;
  --secondary-color: #0A3247 !important;
  --thirth-color: #F8F8F8 !important;
  --white: #fff !important;
  --gray: #EAEEF0;
  --text-color: #0A32475A;
  --text-color-two: #B5CBCC;
  --text-color-three: #A3BCBE;
  --text-color-four: #98A5AE;

  /* Font Family */
  --ff-wix: "Wix Madefor Display", sans-serif;
  --ff-zalando: "Zalando Sans Expanded", sans-serif;
}
body{ font-family: var(--ff-zalando) !important;}
a {text-decoration: none !important;}

/*** Properties ***/
.site-container { width: 90%; margin: 0 auto;}
.site-margin{margin-top: 5%; margin-bottom: 5%;}
.header-margin{margin-top: 200px;}
.site-padding{padding-top: 7%; padding-bottom: 7%;}

/* Font-Family */
.ff-wix{font-family: "Wix Madefor Display", sans-serif !important;}
.ff-zalando{font-family: "Zalando Sans Expanded", sans-serif !important;}
/* Font-Family End */
/* Font-Sizes */
.fs-64{font-size: 64px;line-height: 78px;}
.fs-54{font-size: 54px;line-height: 66px;}
.fs-48{font-size: 48px;line-height: 54px;}
.fs-40{font-size: 40px;line-height: 48px;}
.fs-30{font-size: 30px;line-height: 39px;}
.fs-24{font-size: 24px;line-height: 31px;}
.fs-19{font-size: 19px;line-height: 22px;}
.fs-16{font-size: 16px;line-height: 32px;}
.fs-12{font-size: 12px;}
.fs-title{font-size: 16px;line-height: 20px;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 ***/
.nav-item-btn{
  background-color: var(--primary-color);
  border-radius: 50px;
  color: #9E721B;
  padding: 5px;
  display: flex;
  align-items: center; justify-content: space-between;
  font: normal normal 800 12px/15px Wix Madefor Display;
  transition: all .4s;
}
.nav-item-btn .btn-content{
  border: 2px dashed #9E721B;
  padding: 5px 10px;
  border-radius: 50px;
}

/* Button One */
.button-one {
  display: inline-flex !important;
  align-items: center;
  padding-left: 20px;
  padding-right: 0;
  border-radius: 30px;
  min-width: 160px;
  max-width: 200px !important;
  height: 55px;
  font-family: var(--ff-wix);
  font-size: 14px;
  transition: all .4s;
}
.one-circle {
  height: 55px;
  width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  transition: all .4s;
}

.btn-st-border{
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}
.btn-st-border:hover{background-color: var(--primary-color); color: var(--white);}
.btn-st-border:hover .one-circle{background-color: var(--white); color: var(--primary-color);}

.btn-white-border{
  border: 1px solid var(--white);
  color: var(--white);
}
.btn-white-border:hover{background-color: var(--white); color: var(--primary-color);}
.btn-white-border:hover .one-circle{background-color: var(--primary-color); color: var(--white);}

.btn-nd-border{
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
}
.btn-nd-border:hover{background-color: var(--secondary-color); color: var(--white);}
.btn-nd-border:hover .one-circle{background-color: var(--white); color: var(--secondary-color);}


.btn-st-bg{
  border: 1px solid var(--primary-color); background-color: var(--primary-color);
  color: var(--white);
}
.btn-st-bg .one-circle{background-color: var(--white); color: var(--primary-color);}

.btn-st-bg:hover{background-color: var(--secondary-color); border: 1px solid var(--secondary-color); color: var(--white);}
.btn-st-bg:hover .one-circle{border: 1px solid var(--secondary-color); color: var(--secondary-color);}

.btn-nd-bg{
  border: 1px solid var(--secondary-color); background-color: var(--secondary-color);
  color: var(--white);
}
.btn-nd-bg .one-circle{background-color: var(--white); color: var(--secondary-color);}

.btn-nd-bg:hover{background-color: var(--primary-color); border: 1px solid var(--primary-color); color: var(--white);}
.btn-nd-bg:hover .one-circle{border: 1px solid var(--primary-color); color: var(--primary-color);}
/* Button One End */

/* Circle Btn */
.circle{
  border-radius: 30px;
  width: 55px; height: 55px; display: flex; align-items: center; justify-content: center;
}
.border-white{
  border: 1px solid var(--white);
  color: var(--white);
}
.border-st{
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}
.border-nd{
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
}
/* Circle Btn End */

/*** Button Designs End ***/

/* Menu */
.navbar {
  position: absolute !important;
  height: 200px;
  margin: auto !important;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99;
}
.nav-bg{
  position: absolute;
  height: 320px;
  margin: auto !important;
  top: 0;
  right: 0;
  left: 0;
  background: linear-gradient(180deg,rgba(10, 50, 71, 1) 0%, rgba(10, 50, 71, 0) 100%);
  z-index: 3;
  mix-blend-mode: multiply;
}
.navbar-brand .divider{width: 1px; height: 30px; background-color: var(--white);}
.navbar-brand .logo-text, .navbar-brand .divider{opacity: 0;}
.navbar-brand:hover .logo-text, .navbar-brand:hover .divider{opacity: 1; transition: all .4s !important;}
.navbar .nav-item {padding-left: 40px; font-family: var(--ff-wix) !important; font-weight: bold !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-item.dropdown:hover .dropdown-menu.flag{border: 1px solid var(--secondary-color);}

/* SubPage Menu */
.sub-nav-bg{
  background: var(--white);
  height: 200px;
  mix-blend-mode: normal;
}
.sub-header .nav-link{color: var(--secondary-color) !important;}
.sub-header .circle-border{ border: 1px solid var(--secondary-color) !important;}
.sub-header .nav-item.dropdown:hover .dropdown-menu.flag { border: 1px solid var(--secondary-color) !important;}
/* SubPage Menu End */

.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;
}
.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: 30px;
  z-index: 10;
}
.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 {
  background-color: transparent !important;
  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);
}
.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: 0px; margin-bottom: 5px;}
.dropdown-menu .lang:hover{background-color: transparent !important;}
/* 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}

.slide-count {
  left: calc(5% - 10px);
  top: calc(10% + 60px);
  position: absolute;
  z-index: 1;
  font-size: 272px;
  font-weight: 900;
  background: linear-gradient(15deg,rgb(7, 42, 61) 30%,rgba(255, 255, 255, .6) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; 
}

.slider-text-box{
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  z-index: 2;
}
.slider-social-media {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slider-social-media p {
  writing-mode: vertical-lr;
  transform: rotate(0deg);
  letter-spacing: 5.4px;
  margin: 0 0 20px 0;
}
.slider-social-media a{color: var(--white); display: inline-block; margin-bottom: 10px; transition: all .4s;}
.slider-social-media a:hover{color: var(--primary-color);}

.sld-btn{
  position: absolute;
  left: 5%;
  bottom: 0;
  z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  height: 85px; width: 400px; border-radius: 18px 18px 0px 0px;
  padding: 0 40px;
}
/* Slider End */
.home-page-icon{
  position: absolute;
  z-index: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
/* Counter */
.counter-bg{
  background-color: #FDFCF9;
  border-radius: 16px;
  padding: 40px 20px;
  overflow: hidden;
}
.counter-border{border-right: 1px solid #F7A30027}
.counter-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.counter-text .counter {
  align-self: center;
}

.counter-text p.fs-16 {
  align-self: flex-end;
  margin-top: 5px;
}

/* Counter End */

/* Categories */
.line {
  height: 2px;
  background-color: var(--white);
  margin-left: 40px;
  margin-right: 40px;
  flex: 1;
}

.line-wrapper {
  display: flex;
  align-items: center;
  flex: 1;
}

.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,
.owl-btn.category-next {
  border: 1px solid var(--white) !important;
  color: var(--white);
}

.category-card, .detail-card {
  aspect-ratio: 1;
  background-color: var(--thirth-color);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.owl-carousel .owl-item:nth-child(odd) .category-card:hover {
  background-color: #E39600;
}

.owl-carousel .owl-item:nth-child(even) .category-card:hover {
  background-color: var(--secondary-color);
}

.category-img-wrap {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
}

.category-card img {
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  height: 80%;
  width: auto !important;
  object-fit: contain;
  transition: all .4s ease;
}

.category-card:hover img {left: 0;}

.home-path{
  position: absolute;
  z-index: 0;
  right: -38%;
  top: -15%;
}
/* Categories End */

.img-bg{
  background-color: var(--primary-color);
  width: 100%;
  height: 735px;
  overflow: hidden;
  margin-top: -600px;
}
.img-bg img{
  width: 100%;
  left: 50%;
  transform: translateX(-50%); 
  position: absolute; 
}

/* Parallax */
.parallax-container {
  position: relative;
  width: 100%;
  height: 615px;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.parallax-text-box-bg {
  width: 100%;
  height: auto;
  padding: 10px;
  border-radius: 16px;
  backdrop-filter: blur(17px);
  -webkit-backdrop-filter: blur(17px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-text-box {
  padding: 50px;
  border: 1px dashed white;
  mix-blend-mode: color-dodge;
  border-radius: 6px;
  color: var(--white);
}
/* Parallax End */

/* Media */
.news img{border-radius: 12px; height: 400px; object-fit: cover;}
.news-card, .media-card{height: 400px; border-radius: 12px;}
.news-card{background-color: var(--gray);}
.media-card{background-color: var(--secondary-color);}
.newsletter-card, .info-card{height: 200px; border-radius: 12px;}
.newsletter-card{background-color: var(--primary-color);}
.info-card{background-color: var(--gray);}

.newsletter-card input{
  background-color: var(--primary-light);
  border-radius: 12px;
  border: none;
  padding: 0 15px;
  width: 100%;
}
.newsletter-card input:focus{
  outline: 0;
  box-shadow: none;
}
.input-bg{
  background-color: var(--primary-light);
  border-radius: 12px; width: 80%;
  padding: 0;
}
.input-bg button{
  width: 45px; height: 45px;
}

.media-image-area{
  background-color: var(--primary-color);
  border-radius: 16px;
  width: 100%;
  height: 100%;
  aspect-ratio: 14/15;
}
.media-image img{
  width: 100%;
  height: auto;
  aspect-ratio: 14/15;
  border-radius: 16px;
  object-fit: cover;
}
.media-video-area{
  background-color: var(--secondary-color);
  border-radius: 16px;
  width: 100%;
  height: auto;
  aspect-ratio: 266/387;
}
.media-video img{
  width: 100%;
  height: auto;
  aspect-ratio: 1394/791;
  border-radius: 16px;
  object-fit: cover;
}
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
/* Media End */

/** Products Page **/
.category-list{
  background-color: #FEF4E1;
  border-radius: 12px;
  padding: 50px 40px;
}
.category-list a{color: var(--primary-color); transition: all .4s;}
.category-list a:hover{color: var(--secondary-color);}

.detail-card{padding: 20%;}
.detail-card img{
  width: 100%;
  margin: auto;
}
/** Products Page End **/

/** Contact Page **/
.contact-form input, .contact-form textarea{
  width: 100%;
  border: 1px solid var(--thirth-color);
  background-color: var(--thirth-color);
  padding: 15px 25px;
  border-radius: 10px;
}
.contact-form input::placeholder, .contact-form textarea::placeholder{color: var(--primary-color);}
.contact-form input:focus, .contact-form textarea:focus{
  border: 1px solid var(--primary-color);
  outline: none;
}
.contact-info a{color: var(--primary-color) !important; transition: all .4s;}
.contact-info a:hover{color: var(--secondary-color) !important;}

.contact-img{
  width: 100%;
  height: 620px;
  object-fit: cover;
}
/** Contact Page End **/