* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}
/* ANIMATIONS */
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-80px);
    transform: translateY(-80px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-80px);
    -ms-transform: translateY(-80px);
    transform: translateY(-80px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(80px);
    -ms-transform: translateY(80px);
    transform: translateY(80px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
/* Back To Top */
#buttonToTop {
  display: inline-block;
  background-color: #25408f;
  width: 36px;
  height: 36px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#buttonToTop i::before {
  color: #ffffff;
}
#buttonToTop::after {
  content: "";
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 36px;
  color: #fff;
}
#buttonToTop:hover {
  cursor: pointer;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#buttonToTop:hover i::before {
  color: #25408f;
}
#buttonToTop:active {
  background-color: #555;
}
#buttonToTop.showTheTop {
  opacity: 1;
  visibility: visible;
}
/*NAVBAR*/
.sticky-menu {
  position: fixed;
  width: 100%;
  background: #ffffff;
  top: 0;
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
  padding-top: 0;
  padding-bottom: 0;
  z-index: 9999;
}
@media only screen and (max-width: 480px) {
  .sticky-menu {
    position: relative;
    animation: none;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .navbar > .container {
    max-width: 1200px !important;
    padding: 0 20px;
  }
  .nav-link {
    padding: 33px 5px !important;
  }
}

.nav-background {
  background-color: #ffffff;
}
.navbar {
  padding: 0 !important;
  height: 90px;
  box-shadow: 0px 1px 10px #999;
}
.navbar-brand {
  padding: 0 !important;
}
.navbar .nav-item .dropdown-menu {
  /* display: block; */
  animation: 300ms ease-in-out 0s normal none 1 running fadeInUp;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

@media only screen and (max-width: 480px) {
  .navbar .nav-item .dropdown-toggle::after {
    display: inline-block;
  }
  .navbar {
    padding: 10px 0 !important;
  }
}
.nav-item > .active {
  color: #25408f !important;
}

.nav-link {
  font-size: 16px !important;
  padding: 34px 10px !important;
  font-weight: 700 !important;
}
@media only screen and (max-width: 992px) {
  .nav-link {
    padding: 15px 10px !important;
  }
}

.nav-link:hover {
  background-color: #25408f;
  color: #ffffff !important;
}
.flag-mobile-area {
  display: flex;
  align-items: center;
}
.flag-space {
  display: flex;
  align-items: center;
}
.flag-space a {
  border: 1px solid #25408f;
  text-decoration: none;
  color: #000000a6;
  padding: 5px 10px;
  font-weight: 700;
}
.lang-active {
  color: #ffffff !important;
  background-color: #25408f;
}
@media only screen and (max-width: 992px) {
  .flag-space {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  .flag-mobile-area {
    display: none;
  }
}
.dropdown-menu {
  font-size: 12px !important;
  padding: 1rem !important;
  border-radius: 0 !important;
  background-color: #25408f !important;
  margin-top: -1px !important;
  margin-left: -1px !important;
  width: 100% !important;
  min-width: 250px !important;
}
.dropdown-item {
  color: #ffffff !important;
  padding: 15px 20px 15px 10px !important;
  border-bottom: 1px solid #ffffff !important;
}
.dropdown-menu li:first-child {
  border-top: 1px solid #ffffff !important;
}
.dropdown-item:hover {
  background-color: rgba(159, 171, 206, 0.1) !important;
}
#menu {
  display: none;
}
#menu {
  width: 35px;
  height: 30px;
  cursor: pointer;
  border: none;
  background-color: #fff;
}
.bar,
.change .bar {
  background-color: #25408f;
}

.bar {
  height: 4px;
  width: 25px;
  display: block;
  border-radius: 5px;
  transition: 0.3s;
}
#bar1 {
  transform: translateY(-4px);
}
#bar3 {
  transform: translateY(4px);
}
#menu-bar {
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.change #bar1 {
  transform: translateY(4px) rotateZ(-45deg);
}
.change #bar3 {
  transform: translateY(-4px) rotate(45deg);
}
.change #bar2 {
  opacity: 0;
}
@media only screen and (max-width: 992px) {
  #menu {
    display: inline-block;
  }
  #menu {
    float: right;
  }
  #menu-bar {
    width: 100%;
  }
  .navbar {
    padding: 10px 0;
    height: auto;
  }
}
.bant-img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
/*SLIDER*/
.slide-right {
  animation: 0.5s ease-in-out slide-right;
}
@keyframes slide-right {
  from {
    margin-left: -100%;
  }
  to {
    margin-left: 0%;
  }
}
.slide-top {
  animation: 0.5s ease-in-out slide-top;
}
@keyframes slide-top {
  from {
    margin-bottom: -100%;
  }
  to {
    margin-bottom: 0%;
  }
}
.mySlides {
  display: none;
}
.main-banner-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.main-banner-slider:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #25408f;
  /* z-index: -1; */
  opacity: 0.3;
}

.main-banner-slider > .facility-box {
  position: absolute;
  width: 17%;
  /* height: 45%; */
  top: 20%;
  left: 10%;
}

@media only screen and (max-width: 480px) {
  /* .main-banner-slider > .facility-box{
    width: 20%;
    height: 70%;
    top: 10%;
    left: 15%;
    border: 2px solid #ffffff;
  } */

  /* .sld > .experience{
    font-size: 60px !important;
  } */
  /* .main-banner-slider p{
    font-size: 16px;
    padding: 20px;
  } */
  .slide-items-top span {
    font-size: 14px;
  }
  .main-banner-slider button {
    bottom: 30% !important;
  }
  /* .slide-items{
    height: 400px !important;
  } */
}
/* .slide-items-top{
  width: 100%;
} */
.slide-items-top span {
  font-size: 20px;
}

@media only screen and (max-width: 480px) {
  .main-banner p {
    font-size: 26px;
  }
}
.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 90%;
  width: auto;
  margin-top: -22px;
  color: #f1c40f;
  font-weight: bold;
  font-size: 18px;
  transition: 0.2s ease;
  border-radius: 3px;
  user-select: none;
  text-decoration: none;
}
.prev i::before,
.next i::before {
  font-size: 48px;
}
.prev {
  left: 7%;
}
@media only screen and (max-width: 992px) {
  .prev {
    left: 5%;
  }
  .prev i::before,
  .next i::before {
    font-size: 32px;
  }
}
.next {
  left: 10%;
}

.prev i:hover,
.next i:hover {
  color: #ffffff;
}

.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.mySlides > .numbertext {
  color: #f1c40f;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}
.slider-dots {
  cursor: pointer;
  position: absolute;
  top: 90%;
  right: 5%;
  margin-top: -22px;
  transition: 0.6s ease;
  user-select: none;
  text-decoration: none;
}

.dot {
  cursor: pointer;
  height: 3px;
  width: 30px;
  margin: 0 2px;
  background-color: #ffffff;
  display: inline-block;
  transition: background-color 0.6s ease;
}
@media only screen and (max-width: 480px) {
  .dot {
    height: 2px;
    width: 20px;
  }
}

.active,
.dot:hover {
  background-color: #f1c40f;
}
/* BAnt area */
.bant-area {
  padding-top: 36px;
  padding-bottom: 36px;
  background: #f1c40f url("images/pattern.png");
  background-position: 0 0;
  background-repeat: repeat;
}
.bant-text {
  font-size: 24px;
  font-weight: 500;
  color: #000000a6;
  text-align: center;
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 480px) {
  .bant-area {
    padding: 18px 10px;
  }
  .bant-text {
    font-size: 14px;
  }
}
.bant-text span {
  color: #303135;
  font-weight: 700;
  text-decoration: underline;
}

/* Fading animation */
.fadeSlide {
  animation-name: fade;
  animation-duration: 3s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@media only screen and (max-width: 300px) {
  .prev,
  .next,
  .text {
    font-size: 11px;
  }
}
/*VIDEOS*/
.video-area {
  margin: 60px 0;
}

.youtube-video {
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 2rem;
  padding: 20px;
}
/* .youtube-video .ytp-impression-link{
    display: none !important;
} */
/* HISTORY */
.history-title-text {
  position: relative;
  text-align: center;
  padding: 0 0 10px;
  margin-bottom: 0px;
}
.history-title-text:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 125px;
  height: 1px;
  background-color: #25408f;
}
.main-title span {
  font-size: 16px;
  margin-bottom: 20px;
}
/* CERTIFICATE */
.certificate-area {
  margin: 60px 0;
}
.main-banner-certificates {
  background-image: url(images/bg-image.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 150px 0;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  box-shadow: rgba(234, 234, 234, 0.24) 0px 3px 8px;
  text-shadow: 6px 5px 2px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}
@media only screen and (min-width: 481px) and (max-width: 992px) {
  .main-banner-certificates {
    font-size: 36px;
    padding: 100px 0;
  }
}
@media only screen and (max-width: 480px) {
  .main-banner-certificates {
    font-size: 28px;
    padding: 60px 0;
  }
}
.certificate-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
}
.certificates-img {
  max-width: 100%;
  height: auto;
  margin-bottom: 24px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.certificate-box {
  border: 2px solid #25408f;
  border-bottom: 8px solid #25408f;
  height: 200px;
  width: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.certificate-img {
  height: 40px;
  margin: auto auto auto;
}
.certificate-box span {
  color: #25408f;
  font-size: 16px;
  text-align: center;
  margin-bottom: auto;
  display: block;
  font-weight: 600;
  padding: 0 30px;
}
.certificate-btn {
  width: 180px;
  height: 80px;
  border: 2px solid #25408f;
  font-family: "Cinzel", serif;
  font-size: 20px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
  transition: 1s;
  text-decoration: none;
  color: #25408f;
  font-weight: 500;
}

.certificate-btn::before,
.certificate-btn::after {
  position: absolute;
  background: #ffffff;
  z-index: -1;
  transition: 1s;
  content: "";
}

.certificate-btn::before {
  height: 80px;
  width: 150px;
}

.certificate-btn::after {
  width: 180px;
  height: 50px;
}
/* @media only screen and (max-width: 480px) {
  .certificate-btn {
    width: 200px;
    height: 100px;
  }
  .certificate-btn::before {
    height: 100px;
    width: 170px;
  }

  .certificate-btn::after {
    width: 250px;
    height: 70px;
  }
} */
.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.certificate-btn:hover::before {
  width: 0px;
  background: #fff;
}

.certificate-btn:hover::after {
  height: 0px;
  background: #fff;
}

.certificate-btn:hover {
  background: #fff;
}

/* BRANDS CAROUSEL*/
/* .swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 100%;
    max-width: 120px;
    height: auto;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
  } */
/* CARDS */
.services-area {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cards-area {
  margin: 0;
  padding: 60px 0 45px;
  /* background-color: #f3f4f6; */
  background-image: url("images/bg-image.png");
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  min-height: 180px;
}
@media only screen and (max-width: 992px) {
  .cards-area {
    padding: 35px 50px 20px;
    background-position: 50%;
  }
}
.main-title {
  text-align: center;
  color: #25408f;
  font-size: 24px;
  font-weight: 700;
}
.cards-title-text {
  position: relative;
  text-align: center;
  padding: 0 0 10px;
  margin-bottom: 30px;
  font-size: 32px;
}
.cards-title-text:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 125px;
  height: 1px;
  background-color: #25408f;
}
.cards-title-text-index {
  position: relative;
  text-align: center;
  padding: 0 0 10px;
  margin-bottom: 30px;
  color: #ffffff;
}
.cards-title-text-index:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 125px;
  height: 1px;
  background-color: #ffffff;
}

.cards {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.cards-img {
  position: relative;
}

.cards-img-kalip {
  background-image: url("images/sldr2.jpg");
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  min-height: 180px;
  position: relative;
  background-attachment: initial;
  border-radius: 8px;
  z-index: 1;
  padding: 30px 30px;
}

.cards-img-kalip:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #25408f;
  z-index: -1;
  opacity: 0.3;
  border-radius: 8px;
}

.cards-img-kalip p {
  position: absolute;
  color: #ffffff;
  bottom: 10%;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}
.cards-img-kalip p {
  background-image: linear-gradient(
    to right,
    #ffffff,
    #ffffff 50%,
    #ffffff 50%
  );
  background-size: 200% 100%;
  background-position: -100%;
  display: inline-block;
  padding: 5px 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
  width: max-content;
}

.cards-img-kalip p:before {
  content: "";
  background: #ffffff;
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  transition: all 0.3s ease-in-out;
}

.cards-img-kalip p:hover {
  background-position: 0;
}

.cards-img-kalip p:hover::before {
  width: 100%;
}
.cards-img-pres {
  background-image: url("images/sldrnw1.png");
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  min-height: 180px;
  position: relative;
  background-attachment: initial;
  border-radius: 8px;
  z-index: 1;
  padding: 30px 30px;
}

.cards-img-pres:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #25408f;
  z-index: -1;
  opacity: 0.3;
  border-radius: 8px;
}

.cards-img-pres p {
  position: absolute;
  color: #ffffff;
  bottom: 10%;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}
.cards-img-pres p {
  background-image: linear-gradient(
    to right,
    #ffffff,
    #ffffff 50%,
    #ffffff 50%
  );
  background-size: 200% 100%;
  background-position: -100%;
  display: inline-block;
  padding: 5px 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
  width: max-content;
}

.cards-img-pres p:before {
  content: "";
  background: #ffffff;
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  transition: all 0.3s ease-in-out;
}

.cards-img-pres p:hover {
  background-position: 0;
}

.cards-img-pres p:hover::before {
  width: 100%;
}

.cards-img-kaynak {
  background-image: url("images/sldrnw2.png");
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  min-height: 180px;
  position: relative;
  background-attachment: initial;
  border-radius: 8px;
  z-index: 1;
  padding: 30px 30px;
}

.cards-img-kaynak:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #25408f;
  z-index: -1;
  opacity: 0.3;
  border-radius: 8px;
}

.cards-img-kaynak p {
  position: absolute;
  color: #ffffff;
  bottom: 10%;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}
.cards-img-kaynak p {
  background-image: linear-gradient(
    to right,
    #ffffff,
    #ffffff 50%,
    #ffffff 50%
  );
  background-size: 200% 100%;
  background-position: -100%;
  display: inline-block;
  padding: 5px 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
  width: max-content;
}

.cards-img-kaynak p:before {
  content: "";
  background: #ffffff;
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  transition: all 0.3s ease-in-out;
}

.cards-img-kaynak p:hover {
  background-position: 0;
}

.cards-img-kaynak p:hover::before {
  width: 100%;
}

.cards-img-muh {
  background-image: url("images/sldrnw3.png");
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  min-height: 180px;
  position: relative;
  background-attachment: initial;
  border-radius: 8px;
  z-index: 1;
  padding: 30px 30px;
}

.cards-img-muh:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #25408f;
  z-index: -1;
  opacity: 0.3;
  border-radius: 8px;
}

.cards-img-muh p {
  position: absolute;
  color: #ffffff;
  bottom: 10%;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}
.cards-img-muh p {
  background-image: linear-gradient(
    to right,
    #ffffff,
    #ffffff 50%,
    #ffffff 50%
  );
  background-size: 200% 100%;
  background-position: -100%;
  display: inline-block;
  padding: 5px 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
  width: max-content;
}

.cards-img-muh p:before {
  content: "";
  background: #ffffff;
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  transition: all 0.3s ease-in-out;
}

.cards-img-muh p:hover {
  background-position: 0;
}

.cards-img-muh p:hover::before {
  width: 100%;
}

.cards-img-kalite {
  background-image: url("images/kalite-kapak.jpg");
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  min-height: 180px;
  position: relative;
  background-attachment: initial;
  border-radius: 8px;
  z-index: 1;
  padding: 30px 30px;
}

.cards-img-kalite:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #25408f;
  z-index: -1;
  opacity: 0.3;
  border-radius: 8px;
}

.cards-img-kalite p {
  position: absolute;
  color: #ffffff;
  bottom: 10%;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}
.cards-img-kalite p {
  background-image: linear-gradient(
    to right,
    #ffffff,
    #ffffff 50%,
    #ffffff 50%
  );
  background-size: 200% 100%;
  background-position: -100%;
  display: inline-block;
  padding: 5px 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
  width: max-content;
}

.cards-img-kalite p:before {
  content: "";
  background: #ffffff;
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  transition: all 0.3s ease-in-out;
}

.cards-img-kalite p:hover {
  background-position: 0;
}

.cards-img-kalite p:hover::before {
  width: 100%;
}

.cards-text {
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
  /* color: #000000a6; */
  color: #ffffff;
}
.cards-text a {
  color: #ffffff;
}
/* COUNTER */
.counter-area {
  padding: 40px 0;
  background-color: #435357;
  margin-bottom: 60px;
}
.counters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
@media only screen and (max-width: 992px) {
  .counters {
    flex-direction: column;
    gap: 1rem;
  }
}
.counter-parts {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.square-area {
  display: flex;
  justify-content: center;
}
.square {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
}
@media only screen and (max-width: 992px) {
  .counter-parts {
    gap: 0.5rem;
  }
}
.counter-parts p {
  font-size: 18px;
  font-weight: 500;
}
/* OUR FACILITY */
.our-facility {
  background-image: url("images/tesisimiz.jpg");
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  position: relative;
  background-attachment: initial;
  z-index: 1;
  padding: 300px 0;
}
@media only screen and (max-width: 480px) {
  .our-facility {
    background-position: 50%;
    padding: 120px 15px;
  }
}
.our-facility::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1a1a1a;
  z-index: -1;
  opacity: 0.5;
}
.facility-box {
  display: inline-block;
  border: 5px solid #fff;
  /* padding: 54px 30px; */
  backdrop-filter: blur(10px);
}
.facility-box p {
  color: #ffffff;
  font-size: 1.1vw;
  font-weight: 600;
  margin-bottom: 0;
}
/* .facility-box p:nth-child(1) {
  margin-bottom: 15px;
} */

.facility-box p:nth-child(3) {
  color: #ffffff;
  font-size: 1.1vw;
  font-weight: 600;
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .facility-box {
    /* padding: 25px 10px; */
  }
}
@media only screen and (max-width: 768px) {
  .facility-box {
    border: 3px solid #ffffff;
    /* padding: 14px 8px; */
  }
}
@media only screen and (max-width: 480px) {
  .facility-box p {
    font-size: 11px;
  }
  .facility-box p:nth-child(3) {
    font-size: 11px;
    line-height: 1.2;
  }
}
.facility-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-size: 36px;
  font-weight: 600;
  color: #ffffff;
}
@media only screen and (max-width: 480px) {
  .facility-content {
    margin-top: 50px;
  }
}
.facility-content span {
  line-height: 1.25;
}
.facility-content span:nth-child(2) {
  color: #25408f;
  font-weight: 700;
}
.experience {
  font-size: 4.4vw;
  position: relative;
  display: inline-block;
  z-index: 2;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0 !important;
}

@media only screen and (max-width: 480px) {
  .experience {
    font-size: 26px;
    line-height: 1;
  }
}
/* FOOTER */
.footer-top-area {
  background-image: url("images/bg-image.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: relative;
  z-index: 1;
  padding: 30px 30px;
}

.footer-top-area:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #25408f;
  z-index: -1;
  opacity: 0.4;
}

.icons {
  padding-left: 12px;
}
.icons i:before {
  font-size: 16px;
}

a,
a:hover {
  text-decoration: none;
}

.single-widget img {
  margin-bottom: 10px;
  margin-left: -6px;
}

.single-widget p {
  color: #c0cade;
  font-size: 14px;
}

.single-widget.contact a {
  text-decoration: none;
}

.single-widget.contact ul li {
  position: relative;
}

.single-widget.contact ul li i {
  position: absolute;
  left: -12px;
  top: 4px;
  font-size: 16px;
  fill: #ffffff;
  color: #ffffff;
  border-color: #ffffff;
  font-style: normal;
  font-weight: 600;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}

.single-widget.contact ul li span {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.single-widget ul li span {
  color: #fff;
}

.single-widget ul li {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.single-widget a {
  color: #ffffff;
  text-decoration: none;
  font-size: 17px;
}

.single-widget a:hover {
  color: #000000a6;
}

.single-widget.contact ul li a {
  position: relative;
  color: #c0cade;
  font-size: 14px;
}

.single-widget .default-btn {
  display: block;
  width: 100%;
  margin-top: 20px;
}

.single-widget {
  padding: 30px 30px;
}
@media only screen and (max-width: 480px) {
  .single-widget {
    padding: 30px 15px;
  }
}

.footer-bottom-area {
  background-color: #435357;
  padding: 20px 0;
}

.footer-bottom-area .copy-right {
  text-align: center;
}

.footer-bottom-area .copy-right p {
  text-transform: capitalize;
  margin-bottom: 0;
  color: #fff;
}

.footer-bottom-area .copy-right p a {
  color: #fff;
  font-weight: 700;
}

.copy-right a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.single-widget h3 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}
.single-widget-fast {
  padding: 30px;
}
@media only screen and (max-width: 480px) {
  .single-widget-fast {
    padding: 30px 15px;
  }
}
.single-widget-fast h3 {
  color: #ffffff;
  font-size: 24px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}
.single-widget.contact ul li span {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.single-widget-fast ul li span {
  color: #fff;
}

.single-widget-fast ul li {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.single-widget-fast a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
}

.single-widget-fast a:hover {
  color: #000000a6;
}

.single-widget-fast.contact ul li a {
  position: relative;
  color: #c0cade;
  font-size: 14px;
}
/* KALIP */
.main-banner {
  background-image: url("images/kapaklar/kapakkaliphane.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  position: relative;
  background-attachment: initial;
  z-index: 1;
  padding: 300px 0;
}
@media only screen and (max-width: 480px) {
  .main-banner {
    padding: 120px 0;
  }
}

.main-banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #25408f;
  z-index: -1;
  opacity: 0.5;
}
.main-banner p {
  position: absolute;
  color: #ffffff;
  top: 30%;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2.1px);
  -webkit-backdrop-filter: blur(2.1px);
  border: 1px solid rgba(255, 255, 255, 0.64);
  width: max-content;
  padding: 20px 40px;
}
@media only screen and (max-width: 480px) {
  .main-banner p {
    font-size: 26px;
  }
}

/* KALIP AREA */
.kalip-text-area {
  margin: 0;
  padding: 60px 15px 44px;
  background-color: #f3f4f6;
}
.kalip-text {
  text-align: center;
  font-size: 16px;
  color: #000000a6;
}
.kalip-text-area ul li:nth-child(1) {
  padding-bottom: 10px;
  list-style: none;
  margin-left: -32px;
}
.kalip-text-area ul li {
  list-style-type: disclosure-closed;
  color: #000000a6;
  font-size: 14px;
}
.kalip-text-area ul li::marker {
  color: #25408f;
}
.kalip-text-area ul li span {
  color: #25408f;
  font-weight: 600;
}
/**LIGHTBOX**/
.light-row {
  margin: 0 0 60px 0;
  padding-top: 30px;
}
.light-row > .light-column {
  padding: 8px;
}

.light-row:after {
  content: "";
  display: table;
  clear: both;
}

.light-column:hover .light-img {
  opacity: 0.5;
}

.light-column {
  float: left;
  width: 25%;
  padding: 8px;
  position: relative;
}
.fade-hover {
  transition: 0.5s ease;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media only screen and (max-width: 580px) {
  .light-column {
    width: 100%;
  }
}

.light-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
}

.light-modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1200px;
}

.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

.light-mySlides {
  display: none;
  margin-bottom: 8px;
}

.cursor {
  cursor: pointer;
}

.light-prev,
.light-next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 5px 0 0;
  margin-top: -50px;
  color: #f1c40f;
  font-weight: bold;
  font-size: 36px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-user-select: none;
  text-decoration: none;
}

.light-next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.light-prev:hover,
.light-next:hover {
  background-color: #3b59b3;
}

.numbertext {
  color: #f1c40f;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  font-weight: 700;
}

.light-img {
  width: 100%;
  max-height: 200px;
  min-height: 200px;
  height: auto;
  transition: 0.5s ease;
  backface-visibility: hidden;
  opacity: 1;
  display: block;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.image-modal {
  width: 100px;
  height: auto;
}

.caption-container {
  text-align: center;
  background-color: black;
  padding: 2px 16px;
  color: white;
}

.demo {
  opacity: 0.6;
}

.light-active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
/* WHY US OTHERS */

.why-us-others-area {
  background-color: #f3f4f6;
  padding: 76px 15px 60px;
}
.whyus-others {
  text-decoration: none;
  color: #000000a6;
}
.mini-box {
  text-align: start;
}
.mini-box img {
  margin-right: 16px;
  border-radius: 8px;
  width: 100%;
  height: 180px;
  max-width: 320px;
}
@media only screen and (max-width: 480px) {
  .mini-box img {
    display: block;
    margin: auto;
    max-height: none;
  }
  .mini-box h1 {
    padding-top: 0 !important;
  }
}
.mini-box h1 {
  font-size: 24px;
  color: #25408f;
  font-weight: 700;
  text-align: center;
}
.mini-box p {
  font-size: 14px;
  padding-right: 15px;
  text-align: center;
}
@media only screen and (min-width: 480px) and (max-width: 992px) {
  .mini-box h1,
  .mini-box p {
    margin-left: 1rem;
  }
}
/* WELDING- KAYNAK */
.main-banner-welding {
  background-image: url("images/kapaklar/kapakkaynak.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  position: relative;
  background-attachment: initial;
  z-index: 1;
  padding: 300px 0;
}
@media only screen and (max-width: 480px) {
  .main-banner-welding {
    padding: 120px 0;
    background-position: 38%;
  }
}
.main-banner-welding:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #25408f;
  z-index: -1;
  opacity: 0.5;
}
.main-banner-welding p {
  position: absolute;
  color: #ffffff;
  top: 30%;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2.1px);
  -webkit-backdrop-filter: blur(2.1px);
  border: 1px solid rgba(255, 255, 255, 0.64);
  width: max-content;
  padding: 20px 40px;
}
@media only screen and (max-width: 480px) {
  .main-banner-welding p {
    font-size: 26px;
  }
}
/*PRESS - PRES */
.main-banner-press {
  background-image: url("images/kapaklar/kapakpres.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  position: relative;
  background-attachment: initial;
  z-index: 1;
  padding: 300px 0;
}
@media only screen and (max-width: 480px) {
  .main-banner-press {
    padding: 120px 0;
  }
}
.main-banner-press:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #25408f;
  z-index: -1;
  opacity: 0.5;
}
.main-banner-press p {
  position: absolute;
  color: #ffffff;
  top: 30%;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2.1px);
  -webkit-backdrop-filter: blur(2.1px);
  border: 1px solid rgba(255, 255, 255, 0.64);
  width: max-content;
  padding: 20px 40px;
}
@media only screen and (max-width: 480px) {
  .main-banner-press p {
    font-size: 26px;
  }
}
/*QUALITY - KALİTE */
.main-banner-quality {
  background-image: url("images/kapaklar/kapakkalite.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  position: relative;
  background-attachment: initial;
  z-index: 1;
  padding: 300px 0;
}
@media only screen and (max-width: 480px) {
  .main-banner-quality {
    padding: 120px 0;
  }
}
.main-banner-quality:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #25408f;
  z-index: -1;
  opacity: 0.5;
}
.main-banner-quality p {
  position: absolute;
  color: #ffffff;
  top: 30%;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2.1px);
  -webkit-backdrop-filter: blur(2.1px);
  border: 1px solid rgba(255, 255, 255, 0.64);
  width: max-content;
  padding: 20px 40px;
}
@media only screen and (max-width: 480px) {
  .main-banner-quality p {
    font-size: 26px;
  }
}
/* ENGINEERING - MUHENDISLIK */
.main-banner-engineering {
  background-image: url("images/kapaklar/kapakmuhendislik.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  position: relative;
  background-attachment: initial;
  z-index: 1;
  padding: 300px 0;
}
@media only screen and (max-width: 480px) {
  .main-banner-engineering {
    padding: 120px 0;
  }
}

.main-banner-engineering:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #25408f;
  z-index: -1;
  opacity: 0.5;
}
.main-banner-engineering p {
  position: absolute;
  color: #ffffff;
  top: 30%;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2.1px);
  -webkit-backdrop-filter: blur(2.1px);
  border: 1px solid rgba(255, 255, 255, 0.64);
  width: max-content;
  padding: 20px 40px;
}
@media only screen and (max-width: 480px) {
  .main-banner-engineering p {
    font-size: 26px;
  }
}
/* REFERENCES */
.our-references {
  margin: 60px 0;
}
.our-references > .col-lg-2,
.col-md-4,
.col-sm-12 {
  text-align: center;
}
.ref-images {
  padding: 10px;
}
.brands-area {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  justify-items: center;
  gap: 1rem;
}
.references-image {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 480px) {
  .skoda {
    width: 100%;
  }
  .ref-images {
    width: 150px;
  }
  .brands-area {
    gap: 1rem;
  }
}
.ref-images:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 10px 8px rgba(22, 24, 133, 0.2))
    drop-shadow(0 4px 3px rgba(20, 29, 205, 0.1));
}

.submain-title-ref {
  text-align: center;
  color: #25408f;
  font-size: 18px;
  font-weight: 600;
  margin-top: 30px;
}
.ref-subtitle-text {
  text-align: center;
  padding: 0 0 10px;
  border-bottom: 1px solid #25408f;
  width: 100%;
}
/* LOGISTIC */
.main-banner-logistic {
  background-image: url("images/lojistik-kapak.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  position: relative;
  background-attachment: initial;
  z-index: 1;
  padding: 300px 0;
}
@media only screen and (max-width: 480px) {
  .main-banner-logistic {
    padding: 120px 0;
  }
}

.main-banner-logistic:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #25408f;
  z-index: -1;
  opacity: 0.5;
}
/* ABOUT US */

.main-banner-about-us {
  /* background-image: url("images/office.jpg");
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: relative;
  background-attachment: initial;
  z-index: 1;
  padding: 300px 0; */
  opacity: 0.9;
}
.main-banner-about-us img {
  width: 100%;
  height: auto;
  max-height: 600px;
}
/* @media only screen and (max-width: 480px) {
  .main-banner-about-us {
    background-position: 50%;
    padding: 180px 0;
  }
}

.main-banner-about-us:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #25408f;
  z-index: -1;
  opacity: 0.5;
} */
.main-banner-about-us p {
  position: absolute;
  color: #ffffff;
  bottom: 30%;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 48px;
  font-weight: 600;
  background: rgb(0, 172, 235, 25%);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(2.1px);
  -webkit-backdrop-filter: blur(2.1px);
  border: 1px solid rgba(255, 255, 255, 0.64);
  width: max-content;
  padding: 20px 40px;
}
.main-banner-about-us p span {
  font-size: 36px;
}
@media only screen and (max-width: 480px) {
  .main-banner-about-us p,
  .main-banner-about-us p span {
    font-size: 16px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 992px) {
  .main-banner-about-us p,
  .main-banner-about-us p span {
    font-size: 24px;
  }
}

.about-us-text {
  text-align: start;
}
@media only screen and (max-width: 768px) {
  .about-us-text img {
    width: 100%;
  }
}
.about-us-text p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #000000a6;
}
.about-us-divider {
  background-color: #25408f;
  padding: 40px 0;
}
.about-us-divider img {
  border-radius: 10px;
}
.middle-text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
}
.about-middle-text {
  color: #ffffff;
  font-size: 16px;
  vertical-align: middle;
}
/* HISTORY PAGE */
.img-magnifier-container {
  position: relative;
}

.img-magnifier-glass {
  position: absolute;
  border: 1px solid #ffffff;
  border-radius: 50%;
  cursor: none;
  /*Set the size of the magnifier glass:*/
  width: 150px;
  height: 150px;
}
@media only screen and (max-width: 992px) {
  .img-magnifier-glass {
    display: none;
  }
}
/* POLICY */
.policy-text p {
  font-size: 14px;
  color: #000000a6;
}
.policy-text p span {
  color: #25408f;
  font-weight: 700;
}
/* ENVIRONMENTAL POLICY */

.environmental-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
}
.environmental-policy-text {
  text-align: start;
  font-size: 14px;
  color: #000000a6;
}
.environmental-policy-text span {
  color: #25408f;
  font-weight: 700;
  font-size: 14px;
}
.environmental-policy ul li:nth-child(1) {
  padding-bottom: 10px;
  list-style: none;
  margin-left: -32px;
}
.environmental-policy ul li {
  list-style-type: disclosure-closed;
  color: #000000a6;
  font-size: 14px;
  margin-bottom: 5px;
}
.environmental-policy ul li::marker {
  color: #25408f;
}
.environmental-policy p:last-child {
  padding: 10px 0 30px;
  border-bottom: 1px solid #25408f;
}
.environmental-btn {
  width: 250px;
  height: 120px;
  border: 1px solid #25408f;
  font-family: "Cinzel", serif;
  font-size: 16px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
  transition: 1s;
  text-decoration: none;
  color: #25408f;
  font-weight: 600;
}

.environmental-btn::before,
.environmental-btn::after {
  position: absolute;
  background: #ffffff;
  z-index: -1;
  transition: 1s;
  content: "";
}

.environmental-btn::before {
  height: 120px;
  width: 200px;
}

.environmental-btn::after {
  width: 250px;
  height: 80px;
}
@media only screen and (max-width: 480px) {
  .environmental-btn {
    width: 200px;
    height: 100px;
  }
  .environmental-btn::before {
    height: 100px;
    width: 170px;
  }

  .environmental-btn::after {
    width: 250px;
    height: 70px;
  }
}
.environmental-btn:hover::before {
  width: 0px;
  background: #fff;
}

.environmental-btn:hover::after {
  height: 0px;
  background: #fff;
}

.environmental-btn:hover {
  background: #fff;
  color: #f1c40f;
  border: 1px solid #f1c40f;
}
.main-banner-enviromental {
  background-image: url("images/tesisimiz.jpg");
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: relative;
  background-attachment: initial;
  z-index: 1;
  padding: 360px 0;
}
@media only screen and (max-width: 480px) {
  .main-banner-enviromental {
    background-position: 50%;
    padding: 180px 0;
  }
}

.main-banner-enviromental:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #25408f;
  z-index: -1;
  opacity: 0.3;
}

.main-banner-enviromental-one {
  background-image: url("images/dostelyesil.png");
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: relative;
  background-attachment: initial;
  z-index: 1;
  padding: 360px 0;
}
@media only screen and (max-width: 480px) {
  .main-banner-enviromental-one {
    background-position: 50%;
    padding: 180px 0;
  }
}

/* .main-banner-enviromental-one:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #25408f;
  z-index: -1;
  opacity: 0.3;
} */
/* MACHINE PARK */
.main-banner-machine {
  background-image: url("images/makina-parki.jpeg");
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: relative;
  background-attachment: initial;
  z-index: 1;
  padding: 300px 0;
}
.machine-text {
  text-align: center;
  font-size: 14px;
  color: #000000a6;
  margin: 40px 0;
}
/* APPLICATION */
.main-banner-application {
  background-image: url("images/bg-image.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  position: relative;
  background-attachment: initial;
  z-index: 1;
  padding: 200px 0;
}
@media only screen and (max-width: 480px) {
  .main-banner-application {
    padding: 100px 0;
  }
}
.main-banner-application-intern {
  background-image: url("images/bg-image.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  position: relative;
  background-attachment: initial;
  z-index: 1;
  padding: 200px 0;
}
@media only screen and (max-width: 480px) {
  .main-banner-application-intern {
    padding: 100px 0;
  }
}
.application-title {
  color: #ffffff;
  background-color: #25408f;
  padding: 16px 12px;
  text-align: start;
  border-radius: 4px 4px 0 0;
  margin: 16px 0 0;
}
.border-rad {
  border-radius: 0 0 4px 4px !important;
}
.form-floating > label {
  font-size: 14px !important;
}
.form-control {
  font-size: 14px !important;
}
.form-control::placeholder {
  font-size: 14px !important;
}
.form-check-label {
  font-size: 14px !important;
}
.form-group-area {
  display: flex;
  width: 100%;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin: 8px 0;
}
@media only screen and (max-width: 992px) {
  .form-group-area {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}
.application-btn {
  border: none;
  border-radius: 4px;
  padding: 15px 30px;
  color: #ffffff;
  background-color: #25408f;
  width: 100%;
  max-width: 200px;
  float: right;
}
.application-btn:hover {
  background-color: #f1c40f;
}
@media only screen and (max-width: 480px) {
  .application-btn {
    max-width: 100%;
  }
}
.main-banner-quality-handbook {
  background-image: url("images/kalite-kapak.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
  position: relative;
  background-attachment: initial;
  z-index: 1;
  padding: 300px 0;
}
.pdf-blank {
  text-decoration: none;
  font-size: 16px;
  color: #00aceb;
}
.pdf-blank:hover {
  color: #f1c40f;
}
/* PRODUCTS */
/* .product-title{
  background-image: url(images/urunlerbgbanner.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 150px 0;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  box-shadow: rgba(234, 234, 234, 0.24) 0px 3px 8px;
  text-shadow: 6px 5px 2px rgba(0, 0, 0, 0.2);
  color: #ffffff;
} */
/* @media only screen and (min-width:481px) and (max-width:992px){
  .product-title{
    font-size: 36px;
    padding: 100px 0;
  }
}
@media only screen and (max-width:480px){
  .product-title{
    font-size: 28px;
    padding: 60px 0 ;
  }
} */
.grid-class {
  display: flex;
  flex-wrap: wrap;
  padding: 5px;
}
.grid-class img {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 8px;
}
.grid-column-img {
  -ms-flex: 25%;
  flex: 25%;
  max-width: 25%;
  padding: 5px 10px;
}
@media only screen and (min-width: 480px) and (max-width: 992px) {
  .grid-column-img {
    flex: 50%;
    -ms-flex: 50%;
    max-width: 50%;
  }
}
@media only screen and (max-width: 480px) {
  .grid-column-img {
    flex: 100%;
    max-width: 100%;
  }
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: #25408f !important;
  color: #ffffff !important;
}
.products-tab > .row > .nav {
  gap: 0.45rem;
  padding: 10px 5px;
}
.nav-pills .nav-link {
  color: #25408f;
  border-color: #25408f !important;
}
/* .nav-pills:hover .nav-link{
  color: #ffffff !important;
  border-color: #25408f !important;
} */
.tab-content > .active {
  background-color: transparent !important;
}

/*** policy tabs ***/
@media only screen and (max-width: 768px) {
  .policy-desktop {
    display: none;
  }
}
.policy-mobile {
  display: none;
}
@media only screen and (max-width: 768px) {
  .policy-mobile {
    display: block;
  }
  .policy-mobile-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 20px;
    gap: 1rem;
    justify-content: center;
    align-items: center;
  }
  .policy-mobile-buttons a {
    text-decoration: none;
    width: 100%;
  }
  .tablinks-m {
    background-color: #ffffff;
    border-radius: 4px;
    color: #25408f;
    font-size: 18px;
    border-top: 2px solid #25408f;
    border-right: 2px solid #25408f;
    border-bottom: 8px solid #25408f;
    border-left: 2px solid #25408f;
    padding: 15px;
    font-weight: 500;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .tablinks-m i::before {
    font-size: 20px;
    font-weight: 600;
    margin-left: 10px;
  }
}
.tab {
  float: left;
  background-color: #ffffff;
  /* width: 30%; */
  height: max-content;
  border-radius: 16px 40px 40px 16px;
}

.tab button {
  display: block;
  background-color: inherit;
  color: black;
  padding: 22px 16px;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 16px;
  border-radius: 16px 40px 40px 16px;
  max-width: 265px;
  word-wrap: break-word;
}

.tab button:hover {
  background-color: #00aceb;
  color: #ffffff;
}

.tab button.active {
  background-color: #25408f;
  border-radius: 16px 40px 40px 16px;
  color: #ffffff;
}

.tabcontent {
  float: left;
  padding: 0px 12px;
  width: 75%;
}
@media only screen and (max-width: 1400px) {
  .tab {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-radius: 16px;
    gap: 0.5rem;
    margin: 10px;
  }
  .tab button {
    border-radius: 8px;
    padding: 15px;
    font-size: 14px;
    text-align: center;
    font-weight: 600;
  }
  .tab button.active {
    border-radius: 16px;
  }
  .tabcontent {
    width: 100%;
  }
}
@media only screen and (max-width: 600px) {
  .tab {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 16px;
    gap: 0.5rem;
    margin: 10px;
  }
}

/*** REWARDS ***/

.reward-img {
  width: 100%;
  height: auto;
  max-width: 100px;
  max-height: 135px;
}

.reward-box {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 30px 0;
}
@media only screen and (max-width: 768px) {
  .reward-box {
    margin-left: 30px;
  }
}
.rewards-info {
  display: flex;
  flex-direction: column;
  border-left: 2px solid #25408f;
  padding-left: 20px;
}
.rewards-info p {
  margin: 0;
  text-align: start;
  color: #25408f;
  font-weight: 700;
}
.rewards-info p:nth-child(2),
.rewards-info p:nth-child(3) {
  font-size: 18px;
  font-weight: 500;
}
.google-maps {
  width: 100%;
  height: 100%;
  max-height: 450px;
  padding: 0 1rem;
}
.mobile-lang-menu a {
  text-decoration: none;
  color: #000000a6;
  padding: 5px 10px;
  border: 1px solid #25408f;
}
.mobile-lang-menu a:nth-child(2) {
  margin-right: 0.675rem;
}
.flag-space a:nth-child(1) {
  margin-left: 0.675rem;
}
.announcements {
  font-size: 14px;
  margin-bottom: 20px;
  color: #000000a6;
}
.duyurular-img-wrapper {
  width: 100%;
  height: auto;
  max-height: 248px;
  cursor: pointer;
  object-fit: cover;
  margin-bottom: 24px;
}
.maddeler-title {
  font-size: 16px;
  font-weight: 700;
  color: #25408f;
}
.maddeler{
  list-style: disc;
  font-size: 14px;
  color: #000000a6;
}
