/*!
 * Designed by Post Ajans (https://www.postajans.com.tr)
 * Developer: Berat Celik
*/
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
:root {
  --primary-color: #D37930 !important;
  --secondary-color: #6C081E !important;
  --thirth-color: #282827 !important;
  --second-dark: #401A1A !important;
  --white: #fff !important;
  --text-color: #AAAAAA;
}

body {font-family: "Raleway", 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%;}
.w-70{width: 70%;}
.w-80{width: 80%;}

/* Font-Sizes */
.fs-61{font-size: 61px;line-height: 71px;}
.fs-54{font-size: 54px;line-height: 64px;}
.fs-30{font-size: 30px;line-height: 35px;}
.fs-26{font-size: 26px;line-height: 30px;}
.fs-24{font-size: 24px;line-height: 29px;}
.fs-20{font-size: 20px;line-height: 30px;}
.fs-16{font-size: 16px;line-height: 32px;}
.fs-14{font-size: 14px;line-height: 18px;}
.fw-extra-bold{font-weight: 900;}
/* Font Used End */ 

/* Colors */
.color-st{color: var(--primary-color) !important;}
.color-nd{color: var(--secondary-color) !important;}
.color-th{color: var(--thirth-color) !important;}
.color-nd-dark{color: var(--second-dark) !important;}
.color-text{color: var(--text-color) !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{
  padding: 10px 35px;
  border-radius: 16px;
  transition: all .4s;
  font-size: 14px;
}
.white-border{border: 1px solid var(--white); color: var(--white);}
.white-border:hover{background-color: var(--white); color: var(--primary-color);}

.st-border{border: 1px solid var(--primary-color); color: var(--primary-color);}
.st-border:hover{background-color: var(--white); border: 1px solid var(--second-dark); color: var(--second-dark);}

.nd-border{border: 1px solid var(--secondary-color); color: var(--secondary-color);}
.nd-border:hover{background-color: var(--secondary-color); border: 1px solid var(--secondary-color); color: var(--white);}

.slider-btn{
  border: 1px solid var(--white); color: var(--white);
  background-color: transparent;
  border-radius: 50px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  transition: all .4s;
}
.slider-btn:hover{
  background-color: white; color: var(--primary-color);
}
/*** Button Designs End ***/

/* Menu */
.logo{width: 215px;height: auto; display: block; margin: auto;}
.footer-logo{width: 210px;height: auto;}
.logo-bg{
  padding: 20px;
  width: 265px;
  height: 160px;
  border-radius: 36px;
  background-color: var(--white);
  margin-top: 60px;
}
.navbar {
  background-color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
  height: 150px;
  margin: auto !important;
  right: 0;
  left: 0;
  z-index: 99;
}
.navbar.scrolled {
  height: 100px;
}
.nav-item.dropdown:hover .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  animation: 0.4s all !important;
  transition: all .4s !important;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
}
.dropdown-menu {
  display: none !important;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  z-index: -1;
  top: 100%;
  left: 0;
  width: 100%;
}
.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-item {padding: 0 30px;}
.nav-link{color: var(--third-color) !important; transition: all .4s; font-size: 20px !important;}
.nav-link:hover{color: var(--primary-color) !important;}

.navbar-nav.nav-left,
.navbar-nav.nav-right {
  display: flex;
  align-items: center;
}

.navbar-nav.nav-left {margin-right: auto;}

.navbar-nav.nav-right {margin-left: auto;}

.navbar .navbar-brand.mx-auto {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.change-lang{
  border: 1px solid var(--secondary-color);
  padding: 3px 0px;
  border-radius: 50px;
}
.change-lang a{
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-gray);
  font-size: 16px; 
  margin: 0px 5px 0 5px;
  width: 35px; height: 35px;
  border-radius: 50px;
}
.change-lang a.active{
  background-color: var(--primary-color) !important;
  color: var(--white);
  font-weight: bold;
}
.footer .change-lang{border: 1px solid var(--white); z-index: 2 !important;}
/* Menu End */

/* Slider */
.main-slider, .slider-item, .slider-item img, .slider-item video{ height: 885px; }
.slider-item img{ object-fit: cover; }
.slider-item video{ object-fit: cover; object-position: center center; width: 100vw}

.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, #282827 0%, #232A4600 50%);
  z-index: 1;
}
.slider-text-box{
  position: absolute;
  left: 5%;
  top: 50%;
  width: 50%;
}
/* Slider End */

/* Corporate */
.corporate-one, .corporate-two{
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.6));
  transition: all .4s;
  position: relative;
}
.corporate-one:hover{
  transform: scale(1.1);
  /* margin-right: -30px !important;
  margin-top: 30px !important; */
}
.corporate-two:hover{
  transform: scale(1.1);
  /* margin-left: 30px !important;
  margin-top: calc(-15% + 30px); */
}
.corporate-one{width: 80%; float: inline-end; z-index: 3;}
.corporate-two{width: 60%; margin-top: -15%; z-index: 2;}
/* Corporate End */

/* Divider */
.divider{height: 2px;background-color: var(--primary-color);}
.divider-icon{background-color: var(--white); margin-top: -50px; margin-left: 5%; position: absolute; padding: 20px;}

.corporate .divider.w-70{margin-top: -7%;}
.menu .divider.w-70{margin-top: -10%; width: 50%;}

.divider-block {
  position: relative;
}

.text-divider {
  position: absolute;
  height: 2px;
  background-color: var(--primary-color);
  margin-top: -15px;
  right: 0;
}

.divider-group {
  position: relative;
}

/* Divider 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{padding-top: 10%;}
.blog-card{
  width: 100%;
  min-height: 475px;
  height: 475px;
}
.blog-text-box {
  padding: 70px 15%;
  position: absolute;
  z-index: 2;
  width: 75%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.blog-card img{width: 100%; height: 475px; object-fit: cover;}
.blog-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.overlay-primary{background-image: linear-gradient(to right, var(--primary-color) 15%, #232A4600 100%);}
.overlay-secondary{background-image: linear-gradient(to right, var(--secondary-color) 15%, #232A4600 100%);}
.overlay-secondary-left{background-image: linear-gradient(to left, var(--secondary-color) 15%, #232A4600 100%);}

.blog-chef{
  width: 450px !important;
  bottom: 0 !important;
  left: 50%; 
  transform: translateX(-50%);
  height: auto;
  position: absolute;
  z-index: 3;
}
/* Blog & News Card End */

/* Media */
.video-bg{width: 100%; height: 460px;}
.video-bg img{width: 100%; height: 460px; object-fit: cover;}
.media-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: var(--second-dark);
  mix-blend-mode: multiply;
  opacity: 0.55;
  transition: all .4s;
}
.media-btn{
  width: 140px; height: 140px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background-color: transparent;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.small-circle-btn{width: 70px; height: 70px;}
.media-card{
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  transition: all .4s;
}
.media-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-card .media-overlay, .media-card a{
  opacity: 0;
}
.media-card:hover .media-overlay{
  opacity: 0.55;
}
.media-card:hover a{
  opacity: 1;
}
/* Media End */

/* Documents Card */
.files-card{height: 445px;}
.file-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: var(--primary-color);
  opacity: 0.56;
}
/* Documents Card 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 End */
 

/** Contact Page **/
.contact-info i{
  color: var(--primary-color) !important;
}
.contact-form input, .contact-form textarea{
  width: 100%;
  border: 1px solid var(--primary-color);
  padding: 15px 25px;
}
.contact-form input:focus, .contact-form textarea:focus{
  border: 1px solid var(--thirth-color);
  outline: none;
}
.contact-info a{transition: all .4s;}
 .contact-info a:hover{color: var(--primary-color) !important;}
/** Contact Page End **/

/* Banner */
.banner{
  width: 100%; height: 430px; display: block;
}
.banner img{
  width: 100%; height: 430px; object-fit: cover;
}
.banner-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: var(--second-dark);
  opacity: 0.69;
}
/* Banner End */

/* Corporate Page */
.about .text-divider {margin-top: -50px;}
.about .about-img {
  margin-top: -50px;
  z-index: 2; position: relative;
  border-radius: 0px 0px 0px 50%;
}
.contact-area{
  background-color: #F4DCC9;
  height: 260px;
  /* position: relative; */
}
.contact-img{
  width: 385px; height: auto;
  position: absolute;
  bottom: 0;
}
.contact-card{
  border: 1px solid var(--second-dark); 
  border-radius: 20px; 
  padding: 40px; 
  width: 100%; 
  height: 200px;
}
/* Corporate Page End */
/* Counter */
.progress-circle {
  position: relative;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 60px 0px rgba(0,0,0,0.2);
}

.progress-circle svg {
  transform: rotate(270deg); 
}

.progress-circle circle {
  fill: none;
  stroke-width: 10;
}

.progress-bar {
  stroke:var(--white);
  stroke-linecap: round;
  stroke-dasharray: 691.15;
  stroke-dashoffset: 691.15;
  transition: stroke-dashoffset 1s ease;
}
.second-bar{
  stroke: var(--secondary-color);
  stroke-dasharray: 565.48; /* r=90 için çevre */
  stroke-dashoffset: 565.48;
}

.progress-text {
  position: absolute; color: var(--white);
}
/* Counter End */

/* Menu Page */
.menu-page{overflow-x: hidden; height: 1100px;}
.menu-catalog{
  position: relative; z-index: 2;
  overflow: hidden;
  width: 120%;
  margin-top: -20%;
  /* padding-top: 50%; */
}
.menu-page .divider.w-70{margin-top: -30%;}
.menu-page .divider.w-100{margin-top: 450px;}
.menu-card{width: 100%; height: 100%; border: 1px solid var(--primary-color); cursor: pointer; aspect-ratio: 3/2;}
.menu-card img{width: 90% !important; height: auto; position: relative; top: 50%; transform: translateY(-50%); margin: auto; object-fit: contain;}
#menuTab .nav-link.active{color: var(--primary-color) !important;}
#menuTab .nav-link{font-size: 26px !important;}
#menuTabContent .custom-prev, #menuTabContent .custom-next{
  position: absolute; z-index: 2; top: 50%;
}
#menuTabContent .custom-prev{left: 0;}
#menuTabContent .custom-next{right: 0;}
/* Menu Page End */

/* Blog Page */
.blog-page .text-divider {margin-top: -50px;}
/* Blog Page End */