/*!
 * Designed by Post Ajans (https://www.postajans.com.tr)
 * Developer: Berat Çelik
*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root {
  --primary-color: #AE0013 !important;
  --secondary-color: #292929 !important;
  --gray: #838F94;
  --light-gray: #C3C3C3;
  --dark-gray: #2B2B2B;
  --body-bg: #FAFAFA;
  --white: #fff !important;
  --white-2: #EAEAEA;
  --text-color: #485457;
}

body {font-family: "Poppins", sans-serif !important; background-color: var(--body-bg) !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%;}
.rotate-invert{transform: rotate(-180deg);}
/* Text Color */
.color-st{color: var(--primary-color) !important;}
.color-nd{color: var(--secondary-color) !important;}
.color-th{color: var(--white-2) !important;}
.color-gray{color: var(--gray) !important;}
.color-d-gray{color: var(--dark-gray) !important;}
.color-l-gray{color: var(--light-gray) !important;}
.color-text{color: var(--text-color) !important;}
/* Text Color End */
/* BG Color */
.primary-bg{background-color: var(--primary-color) !important;}
.secondary-bg{background-color: var(--secondary-color) !important;}
.third-bg{background-color: var(--text-color);}
.light-red-bg{background-color: #F6F6F6;}
.light-gray-bg{background-color: #d3d7d9;}
/* BG Color End */
/* Font-Size */
.fs-107{font-size: 107px;line-height: 128px;}
.fs-60{font-size: 60px;line-height: 72px;}
.fs-48{font-size: 48px;line-height: 62px;}
.fs-30{font-size: 30px;line-height: 46px;}
.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-Size End */
/*** Properties End ***/

/*** Button Designs ***/
/* First Button */
.first-btn{
  border-radius: 5px;
  padding: 10px 15px;
  letter-spacing: 6.3px;
  transition: all .4s;
}
.white-border{
  border: 1px solid var(--white); 
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.white-border:hover{background-color: var(--white); color: var(--primary-color);}
.red-border{
  border: 1px solid var(--primary-color); 
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--primary-color);
}
.red-border:hover{background-color: var(--white); color: var(--primary-color); border: 1px solid var(--white); }
/* First Button End */

/* Link Button */
.link-btn{
  padding: 10px 35px;
  letter-spacing: 2.8px;
}
.border-bottom-red{border-bottom: 2px solid var(--primary-color); color: var(--primary-color);}
.border-bottom-white{border-bottom: 2px solid var(--white-2); color: var(--white-2);}
/* Link Button End */

/* Half Button */
.half-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: transparent;
  text-decoration: none;
  position: relative;
  border: none;
  font-size: 18px;
  cursor: pointer;
  z-index: 1;
}

.half-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: -1;
}

.half-btn.left::before {
  clip-path: inset(0 50% 0 0);
}

.half-btn.right::before {
  clip-path: inset(0 0 0 50%);
}
.half-btn i {
  transition: transform 0.2s ease;
}

.half-btn.left:hover i {
  transform: translateX(-4px);
}

.half-btn.right:hover i {
  transform: translateX(4px);
}

.half-border-white{color: var(--white);}
.half-border-white::before{border: 2px solid var(--white);}
.half-border-red{color: var(--primary-color);}
.half-border-red::before{border: 2px solid var(--primary-color);}
.half-border-nd{color: var(--secondary-color);}
.half-border-nd::before{border: 2px solid var(--secondary-color);}
/* Half Button End */

/* Top To Back */
.top-to-back{
  background-color: var(--text-color);
  padding: 25px 20px;
  color: var(--white);
  border: 1px solid var(--text-color);
  transition: all .4s;
}
.top-to-back:hover{
  background-color: var(--white);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
/* Top To Back End */

/* Certificate Button */
.certicate-btn{
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  border-radius: 8px;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
}
/* Certificate Button End */

/*** Button Designs End ***/

/* Menu */
.logo{width: 250px;height: auto;}
.navbar {
  background-color: var(--secondary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
  height: 140px;
}
.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;
  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;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
.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(--light-gray) !important;}
.nav-link:hover {color: var(--white) !important;}
.nav-item {padding: 0 20px;}
.call img{
  width: 48px;
  margin-right: -10px;
  transition: all .4s;
}
.call img:hover{
  filter:drop-shadow(0px 0px 15px var(--light-gray));
}
.search-btn{
  margin-right: -10px;
  width: 48px;
  height: 48px;
  align-items: center;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--gray) !important;
}
.dropdown-menu.flag {
  background-color: transparent !important;
  border: 1px solid var(--white);
  border-radius: 50px;
  min-width: 48px;
}
.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 End */

/* Slider */
.carousel-item{
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.slider-video {
  object-position: center center;
  width: 100vw
}
.carousel-item img, .carousel-item .slider-video {
  height: 100vh;
  max-height: 100vh;
  object-fit: cover
}
.slide-text{
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  text-align: center;
  max-width: 40%;
  z-index: 9;
}
.slide-count{
  color: var(--white-2);
  opacity: 28%;
  display: flex; align-items: center; justify-content: center;
}
.slide-count span{
  padding: 0px 20px;
}
.sub-title{
  color: #EDEDED;
  letter-spacing: 7.2px; line-height: 25px;
}
.slider-btn {
  position: absolute;
  top: 45%;
  z-index: 5;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: transparent;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  padding: 0;
}

.prev-btn::before,
.next-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid white;
  z-index: -1;
}

.prev-btn::before {
  clip-path: inset(0 50% 0 0);
}

.next-btn::before {
  clip-path: inset(0 0 0 50%);
  transform: scaleX(-1); 
}

.prev-btn {
  left: 7%;
}

.next-btn {
  left: calc(100% - 10%);
  transform: rotate(-180deg);
}

.carousel-indicators {
  right: auto !important;
  bottom: 70px !important;
  left: 7% !important;
  margin-left: 0 !important
}
.carousel-indicators [data-bs-target] {
  width: 10px !important;
  height: 10px !important;
  margin-right: 10px !important;
}
.social-icons {
  position: absolute;
  right: 5%;
  z-index: 2;
  bottom: 60px;
  display: flex;
  align-items: center;
}
.social-icons a{
  color: var(--white-2);
  margin-right: 15px;
  transition: all .4s;
}
.wp{
  background-color: #3ECD58;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .4s;
}
.wp:hover{
  box-shadow: 0px 0px 15px 3px #3ECD58;
}
.carousel-fade .first-btn{
  position: absolute;
  bottom: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-right: 40%;
  margin-bottom: 3rem;
  margin-left: 45%;
}
/* Slider End */

/* Product Card */
.product-card-bg{
  background-color: #E8E8E8;
  height: 450px;
  width: 70%;
  transition: all .4s;
}
.product-image{
  position: absolute;
  top: 40px;
  z-index: 2;
  left: 0;
  /* mix-blend-mode: multiply; */
}
.product-image img{
  margin-left: -40px;
  width: 100%;
  transition: all .4s;
}
.product-card:hover img{margin-left: 0px;}
/* Product Card End */

/* Project Area */
.project{
  background-color: #F2F2F2;
  padding: 100px 5px;
}
.project-card img{
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.overlay{
  background: #808080 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: 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;
}
.project-card:hover .overlay {opacity: 1;}
.project-card:hover .project-text {opacity: 1;}
/* Project Area End */

/* Home */
.home-img-2{margin-bottom: -100%;}
.home-img-4{margin-bottom: -100%;}

.media-card{
  width: 100%;
  height: 480px;
  border-radius: 5px;
  padding: 50px 45px !important;
}
.media-card .link-btn{
  position: absolute; bottom: 50px;
}
.film-bg{
  background: url('/assets/images/home/6.png');
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: luminosity;
}
/* Home End */

/* Newsletter */
.newsletter{
  background-color: #F7F7F7;
  border-radius: 5px;
  height: 165px;
}
.newsletter-icon{
  background-color: var(--primary-color);
  width: 165px;
  height: 100%;
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
}
.newsletter input{
  border: 2px solid #D6DADC;
  background-color: #D6DADC;
  padding: 10px 15px;
  width: 650px;
}
.newsletter input:focus{
  outline: 2px solid var(--light-gray) !important;
  background-color: #D6DADC;
  padding: 10px 15px;
}
.newsletter button{
  border: none;
  outline: none;
  background-color: transparent;
  position: absolute;
  right: 50px;
  bottom: 40px;
  transition: all .4s;
}
.newsletter button:hover{
  transform: rotate(45deg);
}
/* Newsletter End */

/* Footer */
.footer-social-media a{
  color: var(--white-2);
  margin-right: 10px;
  transition: all .4s;
}
.footer-social-media a:hover{
  color: var(--primary-color);
}
.footer ul li a{
  color: var(--text-color);
  transition: all .4s;
}
.footer ul li a:hover{
  color: var(--primary-color);
}
/* Footer End */


/** Corporate Page **/
.banner{
  width: 100%;
  height: 300px;
  background-size: cover;
  margin-top: 140px;
  text-align: center;
}
.quality{
  border: 1px solid var(--white-2); border-radius: 20px
}
p.quality-title{
  margin-top: -10%; margin-left: -1%;
  text-align: center;
  overflow: hidden;
}
.quality-title{
  font-size: 375px;
  margin: 0;
  padding: 0;
  font-weight: 900;
  background: -webkit-linear-gradient(90deg, #F2F2F200 30%, #ECECEC 70%, #E3F1F700 100%) 0% 0% no-repeat padding-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.quality img{margin-top: -30%;}
.documents{margin-bottom: 20%}
.docs-bg{
  background-color:  #ECECEC;border-bottom-left-radius: 20px;border-bottom-right-radius: 20px;padding-top: 30%;margin-top: -10%;
}
.files-container{
  position: absolute; max-width: 90%; margin-top: -14%; 
}
.certificate-box img{
  width: 100%;
  height: auto;
  aspect-ratio: 2/3;
  object-fit: cover;
}
/** Corporate Page End **/

/** Category-Products Page **/
.prod-card{
  background-color: #E8E8E8;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  display: flex;
  margin: auto;
  align-items: center;
  justify-content: center;
}
.prod-card img{
  width: 70%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  margin-bottom: 70px;
  transition: all .4s;
  mix-blend-mode: multiply;
}
.prod-card:hover img{
  width: 75%;
}
.prod-card i{
  opacity: 0;
  transition: all .4s;
}
.prod-card:hover i{
  opacity: 1;
  margin-left: 5px;
}
.category-list-card{
  background-color: #E8E8E8;
  width: 100%;
  height: auto;
}
.category-btn{
  color: var(--secondary-color);
  padding: 15px 25px;
  width: 100%;
  display: inline-block;
}
.category-btn.active{
  background-color: var(--primary-color);
  color: var(--white);
  padding: 15px 25px;
  width: 100%;
  display: inline-block;
}
.contact-card{
  background-color: var(--secondary-color);
  color: var(--white-2);
}
/** Corporate Page End **/

/** Media Page **/
.media-banner{
  background: url(/assets/images/media-banner.png);
  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;
}
.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 **/

/** Contact Page **/
.contact-form input, .contact-form textarea{
  width: 100%;
  border: 1px solid var(--secondary-color);
  border-radius: 12px;
  padding: 15px 25px;
}
.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 **/