@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Yellowtail&display=swap');

:root {
  --primary-color: #1C4D58 !important;
  --primary-dark: #07282F !important;
  --secondary-color: #CBCBCB !important;
  --text-color: #D0D0D0 !important;
  --text-color-dark: #919497;
  --white: #FFFFFF;
  --second-white: #EFEFEF;
  --gray: #2B2B2B;
  --light-gray: #FCFCFC;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif !important;
}

a {
  text-decoration: none;
}

.default-container {
  width: 90%;
  margin: 0 auto;
}

.main-button {
  position: relative;
  padding: 13px 30px !important;
  background-color: var(--btn-background);
  /* max-width: 200px; */
  width: 184px !important;
  height: 51px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--btn-color);
  text-decoration: none;
  transition: color 0.5s, background-color 0.5s;
  clip-path: polygon(0 0, 100% 0, 100% 60%, 89% 100%, 0 100%, 0% 50%);
}
.outline-border{
  background-image: url(../images/elements/button-outline.svg);
  background-repeat: no-repeat;
  color: var(--text-color-dark);
}

.btn-primary-color {
  --btn-background: var(--primary-color);
  --btn-color: var(--white);
}
.btn-secondary-color {
  --btn-background: var(--second-white);
  --btn-color: var(--primary-color);
}
.btn-transparent-color {
  --btn-background: transparent;
  --btn-color: var(--primary-color);
}

.main-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--primary-color);
  transition: width 0.5s;
  z-index: -1;
}

.main-button:hover::before {
  width: 100%;
}

.main-button:hover {
  color: var(--white);
  background-image: none;
}

.product-btn{
  position: relative;
  background-image: url(../images/elements/product-right-green.svg);
  background-repeat: no-repeat;
  padding: 13px 30px !important;
  background-color: transparent;
  max-width: 200px;
  width: 50px !important;
  height: 51px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--btn-color);
  text-decoration: none;
  transition: color 0.5s, background-color 0.5s;
  clip-path: polygon(0 0, 100% 0, 100% 60%, 89% 100%, 0 100%, 0% 50%);
}
/* Button End */

/* Top Bar */
.top-bar a{
  color: var(--secondary-color);
  text-decoration: none;
  font-size: 15px;
  line-height: 18px;
  display: flex;
  transition: all 0.5s;
  padding: 0px 0 0 10px;
}
.top-bar a:hover{
  color: var(--gray);
}
.top-bar i{
  font-size: 20px;
  padding: 0 10px 0 0;
}
/* Top Bar End */

/* Menu */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  animation: fadeIn 0.3s ease-in-out;
  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%;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
.navbar-brand img {
  position: absolute;
  margin-top: -17px;
  width: 240px;
  height: auto;
}
.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;
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none !important;
}
.navbar.scrolled {
  background-color: var(--white);
}
.navbar.hidden {
  top: -150px;
  transition: all 0.3s;
}
.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(--primary-color) !important;
  font-size: 16px !important;
  line-height: 21px !important;
  letter-spacing: 0.8px;
  font-weight: 600 !important;
}
.nav-link:hover{
  color: var(--gray) !important;
}
.nav-item {
  padding: 0px 35px;
}
.dropdown-menu.flag {
  background-color: var(--second-white);
  border: 1px solid var(--white);
  border-radius: 0;
  min-width: 64px;
}
.dropdown-menu.flag a:hover {
  background-color: transparent;
}
.dropdown-item.lang{
  padding: 10px 0;
  margin: auto;
}
.language {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  /* border-radius: 50px; */
  /* border: 1px solid var(--border-color); */
  width: 64px;
  height: 64px;
  margin: auto;
  background-color: var(--second-white);
}
.language img {
  display: block;
  margin: auto;
}
.navbar-menu-button {
  background-color: var(--white);
  border-radius: 50px;
  width: 48px;
  height: 48px;
  border: none;
}
.offcanvas{
  background-color: var(--gray) !important;
}
.offcanvas.offcanvas-start {
  width: 100% !important;
}
.mobile-menu li{
  padding-bottom: 35px;
}
.mobile-menu a{
  text-decoration: none;
  font-size: 30px;
  line-height: 40px;
  font-weight: bold;
}
.menu-social-icons{
  font-size: 33px;
  color: var(--white);
}
.menu-social-icon{
  color: var(--white);
  margin-right: 10px;
  text-decoration: none;
}
/* Menu */

/* Slider */
.slider, .carousel-item img{
  height: 790px;
  object-fit: cover;
}
.slider{
  clip-path: polygon(0 0, 100% 0, 100% 93%, 97% 100%, 0 100%, 0% 20%);
}
.slider-content {
  position: absolute;
  bottom: 0;
  left: 40px;
  z-index: 5;
  color: var(--white);
  width: 480px;
  background-color: rgba(28, 77, 88, .9);
  padding: 30px;
  padding-bottom: 110px;
  word-wrap: break-word; /* Uzun kelimelerin kırılmasını sağlar */
  overflow: hidden; /* Taşan metinleri gizler */
}

.slider-content p {
  font-weight: 900;
  font-size: 60px;
  line-height: 72px;
  margin: 0;
  word-wrap: break-word; /* Kelimelerin satır sonuna geldiğinde kırılmasını sağlar */
  white-space: normal; /* Uzun kelimeler satıra sığarsa devam eder */
}

.slider-content span {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 4.2px;
  line-height: 18px;
  margin-bottom: 20px;
  word-wrap: break-word; /* Kelimeleri satıra sığdırır */
}

.slider-btn {
  position: absolute;
  border: none;

  color: var(--text-color-dark);
  top: calc(85% + 35px);
  left: 70px;
  z-index: 5;
  /* border: 1px solid var(--white); */
  padding: 10px;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);

}
.slider-btn i {
  color: var(--white);
}
.prev-btn{
  background-image: url(../images/elements/left-button.svg);
  background-repeat: no-repeat;
  clip-path: polygon(35% 0%, 100% 0, 100% 50%, 100% 100%, 0 100%, 0 35%);
}
.next-btn {
  left: 130px;
  background-image: url(../images/elements/right-button.svg);
  background-repeat: no-repeat;
  clip-path: polygon(0 0, 100% 0, 100% 65%, 65% 100%, 0 100%, 0% 50%);
}
.slider-counter{
  position: absolute;
  top: calc(85% + 50px);
  left: 200px;
  color: var(--white);
  font-size: 14px;
  letter-spacing: 5px;
  line-height: 18px;
  z-index: 5;
}
/* .social-icons {
  position: absolute;
  top: calc(80% + 35px);
  padding: 30px;
  right: 40px;
  display: flex;
  gap: 20px;
  z-index: 5;
  font-size: 13px;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  clip-path: polygon(0 0, 100% 0, 100% 50%, 80% 100%, 0 100%, 0% 50%);
}
.social-icon i {
  color: var(--primary-color);
  transition: color 0.3s ease;
  font-size: 16px;
} */
.social-container {
  position: absolute;
  right: 40px;
  top: calc(79% + 35px);
  padding: 25px 40px;
  font-size: 12px;
  letter-spacing: 2.4px;
  line-height: 15px;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  clip-path: polygon(0 0, 100% 0, 100% 65%, 85% 100%, 0 100%, 0% 50%);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
}

.social-icon {
  text-decoration: none;
  font-size: 19px;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}
/* Slider End */

/* Corporate */
.corporate .about-img img {
  left: 40px;
  display: block;
  position: relative;
  max-width: 480px;
  min-width: 480px;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%, 0% 50%);
}
.corporate .border-line{
  margin-top: -65px; width: 100%; opacity: .5;
}
.up-title{
  color: var(--text-color);
  font-size: 14px;
  letter-spacing: 4.2px;
  line-height: 18px;
  font-weight: 600;
}
.main-title{
  color: var(--primary-color);
  font-size: 30px;
  line-height: 38px;
  font-weight: 900;
}
.content-text{
  color: var(--text-color);
  font-size: 16px;
  line-height: 32px;
}
/* Corporate End */

/* Counter */
.counter{
  font-size: 54px;
  color: var(--primary-color);
  line-height: 68px;
  font-weight: 600;
}
.counter-desc{
  font-size: 18px;
  color: var(--text-color-dark);
  line-height: 23px;
}
.border-line{
  margin-top: -50px;
  width: 300px;
  opacity: .5;
}
/* Counter End */

/* Product */
.product .main-button{
  margin-left: 14px !important;
}
.prod-card{
  height: 475px;
  width: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%, 0% 50%);
  background-color: #FAFAFA;
  color: var(--primary-color);
  transition: all 0.3s ease-in-out;
}
.prod-card a{
  color: var(--primary-color);
}
.prod-card:hover{
  background-color: var(--primary-color);
  color: #FAFAFA;
}
.prod-card:hover .product-btn {
  background-image: url(../images/elements/product-right-white.svg);
}
.prod-title {
  font-size: 24px;
  line-height: 30px;
  font-weight: 900;
  /* white-space: nowrap; */
  /* Satır sonlarını engeller, metnin taşmasını önler */
  overflow: hidden;
  /* Taşan metni gizler */
  text-overflow: ellipsis;
  /* Taşan metin için '...' ekler */
}
.prod-list-img {
  width: 240px;
  height: 240px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  bottom: -80px;
  margin: auto;
}

.prod-list-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
/* Product End */

/* Parallax */
.parallax{
  background-color: #EBEBEB;
  padding-top: 15%;
  margin-top: -15%;
}
.parallax-info-title{
  font-size: 60px;
  line-height: 75px;
  font-weight: 900;
  color: var(--primary-color);
}
.parallax-info-text{
  font-size: 16px;
  line-height: 32px;
  font-weight: 600;
  color: var(--primary-color);
}
.parallax-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 700px;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  /* clip-path: polygon(0 0, 100% 0, 100% 90%, 95% 100%, 0 100%, 0% 20%); */
}
.parallax-text-container {
  position: absolute;
  bottom: -17%;
  left: 90px;
  background-color: var(--primary-color);
  padding: 40px 30px;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 95% 100%, 0 100%, 0% 20%);
  word-wrap: break-word;
  /* Uzun kelimelerin kırılmasını sağlar */
  overflow: hidden;
  /* Taşan metinleri gizler */
  width: 480px;
}
.parallax-up-title{
  font-size: 16px;
  letter-spacing: 4.8px;
  line-height: 21px;
  color: var(--white);
  font-weight: 200;
}
.parallax-text {
  font-size: 48px;
  color: var(--white);
  line-height: 61px;
  font-weight: 600;
    word-wrap: break-word;
      /* Kelimelerin satır sonuna geldiğinde kırılmasını sağlar */
      white-space: normal;
      /* Uzun kelimeler satıra sığarsa devam eder */
}
.parallax-text span{
  font-family: "Yellowtail", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 60px;
  line-height: 76px;
    word-wrap: break-word;
      /* Kelimelerin satır sonuna geldiğinde kırılmasını sağlar */
      white-space: normal;
      /* Uzun kelimeler satıra sığarsa devam eder */
}

/* Parallax End */



/* Newsletter */
.newsletter-container{
  background-color: var(--primary-color);
  padding: 40px 60px;
  margin-top: 10%;
}
.newsletter-title{
  font-size: 30px;
  line-height: 30px;
  color: var(--white);
}
.newsletter-container img{
  margin-top: -25%;
}
.newsletter-mail-box {
  clip-path: polygon(0 0, 100% 0, 100% 60%, 96% 100%, 0 100%, 0% 50%);
  padding: 15px 40px;
  background-color: var(--primary-dark);
  border: none;
  color: rgba(255, 255, 255, .5);
  z-index: 5;
  width: 50%;
}
.newsletter-mail-box:focus {
  border: none;
  outline: none;
}

.newsletter-mail-box::placeholder {
  color: var(--primary-color);
}
/* Newsletter End */

/* Info */
.info-title{
  font-size: 30px;
  line-height: 40px;
  color: var(--gray);
  font-weight: 600;
}
.info-text{
  font-size: 16px;
  line-height: 36px;
  color: var(--gray);
}
/* Info End */

/* Documents */
.docs-card{
  width: 100%;
  min-height: 400px;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%, 0% 20%);
  object-fit: cover;
  background-size: cover;
  background-position: center center;
  padding: 40px;
}
.docs-card-v2{
  width: 100%;
  min-height: 250px;
  max-height: 250px;
  object-fit: cover;
  background-size: cover;
  background-position: center center;
  padding: 40px;
}
.docs-card-gray-bg{
  background-color: var(--gray);
}
.docs-card-red-bg{
  background-color: var(--primary-color);
}
.docs-card-secondary-bg{
  background-color: var(--secondary-color);
}
.docs-title {
  position: relative;
  font-size: 20px;
  color: var(--white);
  font-weight: 600;
  z-index: 5;
}
.docs-card .main-button{
  /* bottom: 10%; */
  transform: translateY(230px);
}
.docs-card .docs-link{
  position: relative;
  /* top: 65%; */
  transform: translateY(210px);
}
.docs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  z-index: 1;
}
.overlay-red{
  background-color: var(--primary-color);
}
.overlay-gray{
  background-color: rgba(41, 41, 41, .7);
}
/* Documents End */

/* Contact */
.contact-text{
  color: #1F1F1F;
  font-size: 30px;
  line-height: 57px;
  display: block;
  text-decoration: none;
  text-align: end;
}
/* Contact End */

/* Footer */
.footer-title{
  font-size: 18px;
  font-weight: 900;
}
.address{
  color: #B4B4B4;
  font-size: 18px;
  font-weight: lighter;
}
.footer-link{
  color: var(--gray);
  font-size: 14px;
  line-height: 19px;
  text-decoration: none;
  font-weight: 400;
}
.footer-social-media{
  text-align: end;
}
.social-media{
  color: var(--primary-color);
  font-size: 24px;
  padding-left:15px;
  text-decoration: none;
}
.go-to-top{
  background-color: var(--primary-color);
  color: var(--white);
  clip-path: polygon(0 0, 100% 0, 100% 60%, 89% 100%, 0 100%, 0% 50%);
  padding: 20px;
  display: inline-block;
  text-decoration: none;
  text-align: end;
  
}
/* Footer End */

/* Copyright */
.copyright-text{
  color: #CBCBCB;
  font-size: 14px;
  font-weight: 100;
}
/* Copyright End */

/* Banner */
.banner {
  width: 100%;
  height: 350px;
}

.banner img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.banner-breadcrumb {
  font-size: 14px;
  letter-spacing: 4.2px;
  background-color: #5A5A5A;
  list-style: none;
  text-transform: uppercase;
  position: absolute;
  margin-top: -61px;
  display: flex;
  align-items: center;
  padding: 20px 40px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex-wrap: wrap;
  position: relative;
  /* Taşmayı engellemek için */
}

.breadcrumb-item+.breadcrumb-item {
  color: #898989;
}

.banner-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  content: "|";
  padding: 0 8px;
  color: #898989;
}

.breadcrumb-item a {
  text-decoration: none;
  color: #898989;
}



/* Mobil ekranlar için düzenlemeler */
@media (max-width: 768px) {
  
}

/*Title*/
.corporate-page-title{
  bottom: auto !important;
  left: auto !important;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%, 0% 50%);
  max-width: 100% !important;
  width: 100% !important;
  position: relative;
  z-index: 5;
  color: var(--white);
  width: 480px;
  background-color: rgba(28, 77, 88, .9);
  padding: 30px;
  padding-bottom: 110px;
}
.corporate-page-title p {
  font-weight: 900;
  font-size: 48px;
  line-height: 61px;
}

.corporate-page-title span {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 4.2px;
  line-height: 18px;
  margin-bottom: 20px;
}
/*Title End*/
.documents-area{
  background-color: #EBEBEB;
}
.document-title{
  font-size: 48px;
  line-height: 45px;
  color: var(--primary-color);
}
.document-text{
  color: #808080;
  font-size: 16px;
  line-height: 36px;
}
.file-box {
  position: relative;
}

.file-box img {
  width: 100%;
  object-fit: cover;
}

.file-box .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.file-box i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: white;
  z-index: 2;
  cursor: pointer;
}
.category-title{
  color: var(--text-color);
  font-size: 14px;
  letter-spacing: 4.2px;
  line-height: 18px;
}
.category-menu{
  background-color: #FAFAFA;
  /* clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%, 0% 50%); */
  clip-path: polygon(0 0, 100% 0, 100% 95%, 85% 100%, 0 100%, 0% 50%);
}
.category-menu .main-category{
  font-size: 24px;
  font-weight: bold;
}
.category-menu a{
  color: var(--primary-color);
  text-decoration: none;
  font-size: 16px;
  line-height: 36px;
}
.product-image {
  border: 1px solid #EFEFEF;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%, 0% 50%);
}
.product-image img{
  width: 80%;
  height: auto;
  display: block;
  margin: auto;
}
.product-title{
  font-size: 48px;
  color: var(--primary-color);
  line-height: 61px;
  font-weight: bold;
}
.product-desc{
  color: #A5A5A5;
  font-size: 14px;
  line-height: 28px;

}
.product-table-title{
  font-size: 30px;
  color: var(--primary-color);
  line-height: 0;
  font-weight: 900;
}
.prod-detail-btn{
  /* background-color: var(--primary-color); */
  width: 100%;
  color: var(--white);
  padding: 13px 30px !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  transition: all 0.5s;
  clip-path: polygon(0 0, 100% 0, 100% 60%, 97% 100%, 0 100%, 0% 50%);
}
.prod-detail-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  /* background-color: var(--secondary-color); */
  transition: all 0.5s;
  z-index: -1;
}
.prod-detail-btn:hover::before {
  width: 100%;
}
.prod-detail-btn:hover {
  color: #626262;
  background-image: none;
}
.btn-pc {
  background-color: var(--primary-color);
  color: var(--white);
}
.btn-pc::before {
  background-color: var(--secondary-color);
  color: var(--white);
}
.btn-sc {
  background-color: var(--secondary-color);
  color: #626262;
}
.btn-sc:hover {
  color: var(--white);
}
.btn-sc::before {
  background-color: var(--primary-color);
  color: var(--white);
}
/* Media */
.media-title{
  color: var(--gray);
  font-size: 32px;
  line-height: 40px;
  font-weight: 600;
  text-decoration: none;
}
.news-card img{
  /* height: 400px; */
  width: 100%;
  object-fit: cover;
  cursor: pointer;
  aspect-ratio: 1.347;
}
.news-short-desc{
  font-weight: 200;
  color: var(--gray);
}
.catalog-image img {
  /* margin-top: -25%; */
  height: auto;
  width: 400px;
  max-width: 400PX;
}
.catalog .docs-card-v2 .default-button {
  border: 1px solid var(--white);
  color: var(--white);
  padding: 15px 25px;
  transition: all 0.3s;
  margin: 0;
}

.catalog .docs-card-v2 .default-button:hover {
  border: 1px solid var(--gray);
  color: var(--white);
  background-color: var(--gray);
  padding: 15px 25px;
}
/* Media End */

/* Contact */
.form-control{
  border: 1px solid #3E3E3E !important;
  border-radius: 0 !important;
  padding: 0.9rem 1.2rem !important;
}
.form-control:focus{
  box-shadow: none !important;
  /* box-shadow: rgba(222, 21, 20, 1) 0px 1px 0px !important; */
  border: 1px solid var(--primary-color) !important;
}
.contact input::placeholder{
  color: #3E3E3E;
}
.contact button{
  border: none;
  /* color: var(--gray);
  padding: 15px 25px;
  transition: all 0.3s;
  margin: 0;
  background-color: transparent; */
}
/* .contact button:hover{
  border: 1px solid var(--gray);
  color: var(--white);
  background-color: var(--gray);
  padding: 15px 25px;
} */
.contact-title{
  font-size: 20px;
  line-height: 0;
}
.contact-link{
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  color: var(--gray);
  display: inline-block;
  margin: 10px 0;
}
/* Contact End */