/*!
 * Designed by Post Ajans (https://www.postajans.com.tr)
 * Developer: Berat Çelik
*/
@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');
:root {
  --primary-color: #967b47 !important;
  --secondary-color: #d5001b !important;
  --thirth-color: #1F2D3B !important;
  --white: #fff !important;
  --text-color: #707070;
}

body {font-family: "Onest", sans-serif !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-Sizes */
.fs-84{font-size: 84px;line-height: 69px;}
.fs-75{font-size: 75px;line-height: 80px;}
.fs-60{font-size: 60px;line-height: 72px;}
.fs-48{font-size: 48px;line-height: 62px;}
.fs-36{font-size: 36px;line-height: 46px;}
.fs-30{font-size: 30px;line-height: 46px;}
.fs-27{font-size: 27px;line-height: 62px;}
.fs-24{font-size: 24px;line-height: 35px;}
.fs-20{font-size: 20px;line-height: 30px;}
.fs-18{font-size: 18px;line-height: 36px;}
.fs-16{font-size: 16px;line-height: 25px;}
.fs-14{font-size: 14px;line-height: 18px;}
/* Font Used End */

/* Colors */
.color-st{color: var(--primary-color) !important;}
.color-nd{color: var(--secondary-color) !important;}
.color-th{color: var(--white-2) !important;}
.color-text{color: var(--text-color) !important;}
.primary-bg{background-color: var(--primary-color) !important;}
.secondary-bg{background-color: var(--secondary-color) !important;}
.third-bg{background-color: var(--thirth-color) !important;}
/* Colors End */
/*** Properties End ***/

/*** Button Designs ***/
/* Genel stil */
.circle-button {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  cursor: pointer;
  font-family: sans-serif;
  font-size: 16px;
  transition: color 0.3s ease;
}

.circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  background-color: transparent;
  transition: border-color 0.3s ease;
}

.custom-arrow {
  position: absolute;
  top: 50%;
  left: -25px;
  width: 60px;
  height: 1px;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.custom-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  border-top: 1px solid;
  border-right: 1px solid;
  transition: border-color 0.3s ease;
}

.button-text {
  letter-spacing: 7px;
  transition: all 0.3s ease;
}

/* ----- Colors ----- */

/* White */
.white-border .circle {
  border: 1px solid var(--white);
}

.white-border .custom-arrow {
  background-color: var(--white);
  left: -25px;
}

.white-border .custom-arrow::after {
  border-top-color: var(--white);
  border-right-color: var(--white);
}

.white-border .button-text {
  color: var(--white);
}

.white-border:hover .circle {
  border-color: var(--secondary-color);
}

.white-border:hover .custom-arrow {
  background-color: var(--secondary-color);
  left: -10px;
}

.white-border:hover .custom-arrow::after {
  border-top-color: var(--secondary-color);
  border-right-color: var(--secondary-color);
}

.white-border:hover .button-text {
  color: var(--secondary-color);
  letter-spacing: 12px;
}
/* White End */
/* Primary */
.primary-border .circle {
  border: 1px solid var(--primary-color);
}

.primary-border .custom-arrow {
  background-color: var(--primary-color);
  left: -25px;
}

.primary-border .custom-arrow::after {
  border-top-color: var(--primary-color);
  border-right-color: var(--primary-color);
}

.primary-border .button-text {
  color: var(--primary-color);
}

.primary-border:hover .circle {
  border-color: var(--secondary-color);
}

.primary-border:hover .custom-arrow {
  background-color: var(--secondary-color);
  left: -10px;
}

.primary-border:hover .custom-arrow::after {
  border-top-color: var(--secondary-color);
  border-right-color: var(--secondary-color);
}

.primary-border:hover .button-text {
  color: var(--secondary-color);
  letter-spacing: 12px;
}

/* Secondary */
.secondary-border .circle {
  border: 1px solid var(--secondary-color);
}

.secondary-border .custom-arrow {
  background-color: var(--secondary-color);
  left: -25px;
}

.secondary-border .custom-arrow::after {
  border-top-color: var(--secondary-color);
  border-right-color: var(--secondary-color);
}

.secondary-border .button-text {
  color: var(--secondary-color);
}

.secondary-border:hover .circle {
  border-color: var(--primary-color);
}

.secondary-border:hover .custom-arrow {
  background-color: var(--primary-color);
  left: -10px;
}

.secondary-border:hover .custom-arrow::after {
  border-top-color: var(--primary-color);
  border-right-color: var(--primary-color);
}

.secondary-border:hover .button-text {
  color: var(--primary-color);
  letter-spacing: 12px;
}

.catalog-btn{
  border-radius: 50px;
  color: var(--white);
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 7px 20px; transition: all .4s;
}
.catalog-btn:hover{
  color: var(--primary-color);
  background-color: var(--white);
}
/*** Button Designs End ***/

/* Menu */
.logo{width: 250px;height: auto;}
.navbar {
  background: linear-gradient(180deg,rgba(36, 45, 77, 1) 0%, rgba(128, 128, 128, 0) 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
  height: 350px;
}
.menu-item{margin-top: -150px;}
.scrolled {
  height: 150px;
}
.scrolled .menu-item{
  margin-top: 0px;
}
.nav-item.dropdown:hover .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  animation: 0.3s ease-in-out fadeIn;
  position: absolute;
  top: 100%;
  left: 0;
  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 {
  color: var(--primary-color) !important;
}
.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;
}
.navbar .container-fluid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.navbar-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
}
.nav-link {color: var(--white) !important;}
.nav-item {padding: 0 30px;}
.dropdown-menu.flag {
  background-color: transparent!important;
  border: none;
  border-radius: 50px;
  min-width: 48px;
  margin-left: 8px;
}

.dropdown-menu.flag a:hover {
  background-color: transparent
}

.dropdown-item.lang {
  padding: 7px 0;
  margin: auto;
}

.language {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  /* border: 1px solid var(--white); */
  width: 48px;
  height: 48px;
  margin: auto
}

.language img {
  display: block;
  margin: auto
}
.menu-dropdown{
  background-color: rgba(255, 255, 255, 0.2); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid var(--white);
}
/* Menu End */

/* Slider */
.carousel-item img {
  height: 100vh;
  max-height: 100vh;
  object-fit: cover;
}
.carousel-item {
  position: relative;
}
.slider-text-box{
  position: absolute;
  left: 7%;
  bottom: 0;
  background-color: rgba(65, 65, 65, 0.5);
  backdrop-filter: blur(5px) ;
  -webkit-backdrop-filter: blur(5px);
  width: 35%;
  padding: 40px;
}
.slider-text-box .fs-36{font-size:25px;}
.slider-text-box .fs-75{font-size:45px; line-height: 55px;}
.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #232A46 0%, #232A4600 50%);
  z-index: 1;
}
.slider-btn {
  position: absolute;
  bottom: 50px;
  right: 7%;
  z-index: 5;
  padding: 10px;
  border: 1px solid var(--white);
  width: 55px;
  height: 55px;
  background-color: transparent;
  transition: all 0.5s;
  border-radius: 50%;
}
.slider-btn i {
  color: var(--white);
}
.slider-btn:hover{
  border: 1px solid var(--secondary-color);
  background-color: var(--secondary-color);
}
.slider-btn:hover i{
  color: var(--white);
}
.prev-btn {
  right: 11%;
}
/* Slider End */

/* Counter Card */
.counter-card{
  width: 100%;
  height: 400px;
  aspect-ratio: 1;
  position: relative;
  padding: 40px 30px;
}
.counter-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  mix-blend-mode: multiply;
}
/* Counter Card End */

/* Product Card */
.product-carousel .item {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center; /* ortalamak için */
  height: 600px; /* sabit yüksekliği ayarla */
  position: relative;
  margin-top: 0;
}

.product-card {
  border: 1px solid var(--primary-color);
  border-radius: 67px 67px 0 0;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  transition: all 0.3s ease;

  display: flex !important;
  align-self: end !important;
}

.product-card img {
  width: 70% !important;
  margin: auto;
  display: block;
  margin-top: -100px;
  transition: all 0.3s ease;
}

.product-card a {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 15px 25px;
  width: 100%;
  text-align: center;
  display: block;
  position: absolute;
  bottom: 0;
}

.owl-carousel .center .product-card {
  z-index: 10;
  aspect-ratio: 1/1.2;
}

.owl-carousel .center .product-card img {
  width: 90%;
  margin-top: -120px;
}
.left-button, .right-button{
  position: absolute;
  top: 70%;
  transform: translateY(-50%);
  z-index: 1000;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.left-button {
  left: 5%;
}

.right-button {
  right: 5%;
}
.product-list{
  width: 100%;
  height: auto;
  aspect-ratio: 1;
}
.product-list img{
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}
.prd-btn{
  background-color: var(--secondary-color);
  color: var(--white);
  width: 100%;
  display: block;
  text-align: center;
  padding: 15px;
  position: absolute;
  bottom: 0;
}
.prod-overlay{
  background-color: var(--secondary-color);
  position: absolute;
  z-index: 0;
  top: 0;
  text-align: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all .4s;
}
.project-text {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex; 
  flex-direction: column; 
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all .4s;
  color: var(--white);
}
.product-list:hover .prod-overlay {opacity: 1;}
.product-list:hover .project-text {opacity: 1;}
/* Product Card End */

/* Parallax */
.parallax-container {
  margin-top: 10%;
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 795px;
  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{
  left: 10%;
  position: absolute;
}
.parallax-elements{
  margin-top: -100px;
}
/* Parallax End */


/* Blog & News Card */
.blog-card{
  border: 1px solid var(--primary-color);
  padding: 35px 50px;
  min-height: 400px;
  height: 400px;
}
.news-card{
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  padding: 35px 50px;
  min-height: 400px;
  height: 400px;
}
/* Blog & News Card End */

/* Media */
.media-card{
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  padding: 35px 50px;
}
.media-card .catalog-img{
  width: 110%;
  position: absolute;
  z-index: 2;
  left: 0 !important;
}
/* Media End */

/* Footer */
.footer{
  background-color: var(--secondary-color);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

span.footer-line {
  width: 100%;
  height: 1px;
  background: #fff;
  position: absolute;
}

.footer-logo {
  background: var(--secondary-color);
  padding-right: 30px;
  z-index: 1;
}

.footer-top-right {
  display: flex;
}

.footer-socials {
  background: var(--secondary-color);
  padding: 0 25px;
  z-index: 1;
  margin-right: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-socials span {
  color: #fff;
  font-size: 14px;
  padding-right: 10px;
}

.footer-socials a {
  color: #fff;
  padding: 0 5px;
  font-size: 24px;
  transition: 400ms;
}

.footer-socials a:hover {
  color: var(--primary-color);
  transition: 400ms;
}
.footer-lang{
  background: var(--secondary-color);
  padding-left: 20px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.select-lang{
  border: 1px solid var(--white);
  padding: 3px 0px;
  border-radius: 50px;
}
.footer-lang a{
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px; 
  margin: 0px 5px 0 5px;
}
.footer-lang a.active{
  background-color: var(--white) !important;
  color: var(--secondary-color);
  width: 35px; height: 35px;
  border-radius: 50px;
}
/* Footer End */


/* Breadcrumb */ 
.bread-padding{padding-top: 15%;}
.banner-bread{
  display: flex;
  align-items: end;
  float: inline-end;
  z-index: 4;
  position: relative;
}
.banner li{
  text-align: center;
  padding: 15px 10px;
}
.banner li+li::before {
  content: "|";
  padding: 0 20px 0 0;
  color: var(--secondary-color);
}
.banner li a{
  padding: 5px;
}
/* Breadcrumb End */ 

/* Products Page */
.category-list a{
  color: var(--text-color);
  transition: all .4s;
}
.category-list a:hover{
  color: var(--secondary-color);
}
.grid-btn{
  line-height: 15px;
  -webkit-text-stroke: 2px var(--text-color);
  color: transparent !important;
}
.grid-btn.active{
  -webkit-text-stroke: 2px var(--secondary-color);
}
/* Products Page End */

/** Media Page **/
.media-banner{
  position: relative;
  margin-top: 170px;
  width: 100%;
  max-width: 100%;
  height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-overlay{
  background: var(--secondary-color) 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: .64;
  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;
}
.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 **/

/** Contact Page **/
.contact-form input, .contact-form textarea{
  width: 100%;
  border: 1px solid #D3D3D3;
  padding: 15px 25px;
}
.contact-form input:focus, .contact-form textarea:focus{
  border: 1px solid var(--secondary-color);
  outline: none;
}
/* .contact-info a{color: var(--secondary-color) !important; transition: all .4s;} */
/* .contact-info a:hover{color: var(--primary-color) !important;} */
/** Contact Page End **/