:root {
  --color1: #005438;
  --color2: #1e1d1d;
  --color3: white;
}

@import url("https://fonts.cdnfonts.com/css/gilroy-bold");
@import url("https://fonts.cdnfonts.com/css/gilroy-medium");
@import url("https://fonts.cdnfonts.com/css/gilroy-regular");

* {
  font-family: "Gilroy-Bold", sans-serif;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  background-color: #f0ede5;
}

.img-logo {
  height: 60px;
  margin-top: 30px;
  margin-bottom: 10px;
}

.menu-items>ul {
  padding: 0;
  display: flex;
}

.menu-items>ul>li {
  list-style-type: none;
  padding: 10px;
  margin-top: 30px;
}

.menu-items>ul>li>a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 18px;
  color: black;
  position: relative;
  font-family: "Gilroy-bold", sans-serif;
}

.menu-items>ul>li>a:before {
  content: "";
  width: 0;
  height: 5px;
  background-color: #f7941d;
  position: absolute;
  top: 120%;
  left: 0;
  transition: all 0.5s;
}

.menu-items>ul>li>a:after {
  content: "";
  width: 0;
  height: 5px;
  background-color: #005438;
  position: absolute;
  top: 120%;
  right: 0;
  transition: all 0.5s;
}

.menu-items>ul>li>a:hover:before {
  width: 50%;
  transform: translateX(100%);
}

.menu-items>ul>li>a:hover:after {
  width: 50%;
  transform: translateX(-100%);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 998;
  background-color: transparent;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.carousel-item img,
.carousel-item {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.carousel-item {
  position: relative;
}

.carousel-caption {
  position: absolute;
  top: 0;
  left: 0 !important;
  width: 100%;
  height: 100%;
}

.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.carousel-caption h5 {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 50px;
  color: white;
  text-transform: uppercase;
  font-family: "Gilroy-Bold", sans-serif;
  z-index: 2;
}

.carousel-item.active .carousel-caption img {
  opacity: 1;
  transform: translateX(0);
}

.carousel-item .carousel-caption h5 {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.5s ease;
}

.carousel-item.active .carousel-caption h5 {
  opacity: 1;
  transform: scale(1) translate(-50%, -50%);
  transition: all 0.8s ease;
}

.zoom-anim {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s ease;
}

.zoom-anim.active {
  opacity: 1;
  transform: scale(1);
}

.slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  pointer-events: none;
}

.carousel-control-prev,
.carousel-control-next {
  z-index: 10;
}

.yazi1>h2 {
  font-size: 50px;
  color: white;
}

.yazi2>p {
  font-size: 25px;
  color: white;
  margin-bottom: 50px;
}

.slide-in-left,
.slide-in-right {
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}

.slide-in-left {
  animation-name: slideFromLeft;
}

.slide-in-right {
  animation-name: slideFromRight;
}

@keyframes slideFromLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideFromRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in-left {
  animation-delay: 0.3s;
}

.slide-in-right {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-title {
  animation: fadeInUp 1s ease-out;
}

.animate-paragraph {
  animation: fadeInUp 1s ease-out;
  animation-delay: 0.5s;
  animation-fill-mode: both;
}

.hakkimizda>p {
  font-size: 20px;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 1s ease forwards;
}

.animate-delay-1 {
  animation-delay: 0.6s;
}

.animate-delay-2 {
  animation-delay: 0.12s;
}

.animate-delay-3 {
  animation-delay: 0.18s;
}

.section4 {
  background: #005438;
}

.logo2>img {
  width: 200px;
}

.hmenu>li {
  list-style: none;
}

.hakkimizda-img>img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.hakkimizda {
  position: relative;
  max-width: 700px;
}

.kisa-paragraf {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  transition: all 0.3s ease;
}

.kisa-paragraf.acik {
  -webkit-line-clamp: unset;
  overflow: visible;
}

.bayi-section {
  background-position: right bottom;
  background-size: 325px auto;
  background-repeat: no-repeat;
  background-color: #F0EDE5;
}

.card-wrapper {
  max-width: 2100px;
  margin: 0 60px 35px;
  padding: 20px 10px;
  overflow: hidden;
}

.card-list .card-item {
  list-style: none;
}

.card-list .card-item .card-link {
  display: block;
  background: #faf9f6;
  padding: 18px;
  user-select: none;
  border-radius: 5px;
  text-decoration: none;
  border: 2px solid transparent;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
  transition: 0.2s ease;
}

.card-list .card-item .card-link:active {
  cursor: grabbing;
}

.card-list .card-item .card-link:hover {
  border-color: #005438;
}

.card-list .card-link .card-image {
  width: 100%;
  aspect-ratio: 16 /9;
  object-fit: cover;
}

.card-list .card-link .badge {
  color: #005438;
  width: fit-content;
  padding: 8px 16px;
  font-size: 0.95rem;
  border-radius: 50px;
  font-weight: 500;
  background: #dde4ff;
  margin: 16px 0 18px;
}

.card-list .card-link .badge-designer {
  color: #b22485;
  background: #f7dff5;
}

.card-list .card-link .badge-marketer {
  color: #b25a2b;
  background: #ffe3d2;
}

.card-list .card-link .badge-gamer {
  color: #205c20;
  background: #d6f8d6;
}

.card-list .card-link .badge-editor {
  color: #856404;
  background: #fff3cd;
}

.card-list .card-link .card-title {
  color: #005438;
  font-size: 1.19rem;
  font-weight: 600;
	display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

.card-list .card-link .card-button {
  height: 35px;
  width: 35px;
  color: #005438;
  margin: 30px 0 5px;
  background: none;
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid #005438;
  transform: rotate(-45deg);
  transition: 0.4s ease;
}

.card-list .card-link:hover .card-button {
  color: #fff;
  background: #005438;
}

.card-wrapper .swiper-pagination-bullet {
  height: 13px;
  width: 13px;
  opacity: 0.5;
  background: #005438;
}

.card-wrapper .swiper-pagination-bullet-active {
  opacity: 1;
}

.card-wrapper .swiper-slide-button {
  color: #005438;
  margin-top: -35px;
}

@media (max-width: 768px) {
  .card-wrapper {
    margin: 0 10px 25px;
  }

  .card-wrapper .swiper-slide-button {
    display: none;
  }
}

label {
  color: white;
}

.figure>img {
  border-radius: 5px;
}

.dropdown-toggle::after {
  display: none !important;
}

@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }

  .nav-item.dropdown .dropdown-toggle::after {
    transition: transform 0.3s;
  }

  .nav-item.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
  }
}

.dropdown-menu {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  min-width: 200px;
  z-index: 1000;
}

.dropdown-menu .dropdown-item {
  padding: 10px 20px;
  color: #005438;
  font-weight: 500;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #e6f4f1;
  color: #003c2e;
  border-radius: 6px;
}

.sertifika>img {
  border-radius: 5px;
}

header.scrolled {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .menu-items .menu-ul li a {
  color: white;
  transition: color 0.3s ease;
}

header.scrolled .menu-items .menu-ul li a {
  color: #005438;
}

.toggle-btn {
  display: block;
  margin: 20px auto 0 auto;
  background-color: #005438;
  color: #f0ede5;
  border: none;
  padding: 10px 30px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  max-width: fit-content;
  white-space: nowrap;
  transition: background-color 0.3s ease;
}

.toggle-btn:hover {
  background-color: #00331f;
}

.img1,
.img2,
.img3 {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.img1:hover,
.img2:hover,
.img3:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

main {
  position: relative;
  width: calc(min(90rem, 90%));
  margin: 0 auto;
  min-height: 100vh;
  column-gap: 3rem;
  padding-block: min(20vh, 3rem);
}

.bg {
  position: fixed;
  top: -4rem;
  left: -12rem;
  z-index: -1;
  opacity: 0;
}

.bg2 {
  position: fixed;
  bottom: -2rem;
  right: -3rem;
  z-index: -1;
  width: 9.375rem;
  opacity: 0;
}

main>div span {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 1rem;
  color: #717171;
}

main>div h1 {
  text-transform: capitalize;
  letter-spacing: 0.8px;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: clamp(3.4375rem, 3.25rem + 0.75vw, 4rem);
  background-color: #005baa;
  background-image: linear-gradient(45deg, #005baa, #000000);
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

main>div hr {
  display: block;
  background: #005baa;
  height: 0.25rem;
  width: 6.25rem;
  border: none;
  margin: 1.125rem 0 1.875rem 0;
}

main>div p {
  line-height: 1.6;
}

main a {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  color: #717171;
  font-weight: 500;
  background: #fff;
  border-radius: 3.125rem;
  transition: 0.3s ease-in-out;
}

main>div>a {
  border: 2px solid #c2c2c2;
  margin-top: 2.188rem;
  padding: 0.625rem 1.875rem;
}

main>div>a:hover {
  border: 0.125rem solid #005baa;
  color: #005baa;
}

.ziraat-img img {
  width: 100%;
  height: auto;
  display: block;
}

.hayvan-img img {
  width: 100%;
  height: auto;
  display: block;
}

.sulama-img img {
  width: 100%;
  height: auto;
  display: block;
  color: #a6c9a0;
}

.icon-text {
  text-align: center;
  font-size: 1.2rem;
  font-family: "Times New Roman", Times, serif;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.ziraat-img img {
  transition: all 0.3s ease;
}

.ziraat-img img:hover {
  filter: brightness(200%) grayscale(100%);
  transform: scale(1.1);
  cursor: pointer;
}

.hayvan-img img {
  transition: all 0.3s ease;
}

.hayvan-img img:hover {
  filter: brightness(200%) grayscale(100%);
  transform: scale(1.1);
  cursor: pointer;
}

.sulama-img img {
  transition: all 0.3s ease;
}

.sulama-img img:hover {
  filter: brightness(200%) grayscale(100%);
  transform: scale(1.1);
  cursor: pointer;
}

.slide-info {
  background-image: url("../images/kurumsal/logo/bilimsel-03-logo1.jpg");
  background-position: right bottom;
  background-size: 300px auto;
  background-repeat: no-repeat;
}

.section4 {
  background-image: url("../images/kurumsal/logo/bilimsel-03-logo1.jpg");
  background-position: right bottom;
  background-size: 300px auto;
  background-repeat: no-repeat;
}

footer {
  background-image: url("../images/kurumsal/logo/bilimsel-03-logo1.jpg");
  background-position: right bottom;
  background-size: 200px auto;
  background-repeat: no-repeat;
}

footer .logo2 img {
  max-width: 200px;
  filter: brightness(1000%) grayscale(100%);
}

.img-logo {
  filter: invert(100%) brightness(200%);
  transition: filter 0.3s ease;
}

.img-logo.scrolled {
  filter: none;
}

.img-logo {
  filter: grayscale(100%) brightness(1000%) contrast(200%);
}

.rakam {
  border: #005438 solid;
  border-radius: 5px;
  background-color: #005438;
  margin-left: 20px;
}

.rakam p {
  color: white;
  font-size: 25px;
  font-family: "Times New Roman", Times, serif;
}

.stat-number {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 10px;
  color: white;
}

.stat-number::before {
  content: "+";
  margin-right: 4px;
  font-weight: bold;
  font-size: 1.2em;
  color: white;
}

.video-container {
  position: relative;
  overflow: hidden;
  border: 5px solid #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
}

.video-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.video-text h2 {
  font-size: 1.8rem;
  line-height: 1.4;
  animation: fadeIn 2s ease-in-out forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.section-footer {
  background-color: #005438;
  color: white;
}

.hmenu li {
  margin-bottom: 10px;
}

.hmenu li a {
  color: #ffffffcc;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 15px;
}

.hmenu li a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  border-radius: 5px;
}

.overlay-img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-wrapper:hover .overlay-img {
  transform: scale(1.05);
}

.overlay-color {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
  z-index: 1;
}

.image-wrapper:hover .overlay-color {
  background-color: rgba(0, 0, 0, 0.6);
}

.overlay-text {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%) translateY(-20px);
  color: #fff;
  text-align: center;
  max-width: 80%;
  opacity: 0;
  animation: fadeSlide 1s forwards 0.5s;
  z-index: 2;
}

@keyframes fadeSlide {
  0% {
    opacity: 0;
    transform: translate(-50%, -70%);
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
}

.play-btn:hover {
  background: rgba(0, 0, 0, 0.7);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.video-modal-content {
  position: relative;
  width: 80%;
  max-width: 900px;
}

.video-modal-content video {
  width: 100%;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 2.5rem;
  color: white;
  cursor: pointer;
  z-index: 10;
}

@media (max-width: 768px) {
  .overlay-text h1 {
    font-size: 1.8rem;
  }

  .overlay-text p {
    font-size: 1rem;
  }

  .play-btn {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .video-modal-content {
    width: 95%;
  }
}

.section2 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.section6 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.popup-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.popup-overlay.active {
  display: flex;
}

.popup-content {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
  animation: fadeIn 0.3s ease;
}

.popup-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  cursor: pointer;
  transition: color 0.3s;
}

.popup-close:hover {
  color: #ccc;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.ziraat-img,
.sulama-img,
.hayvan-img {
  position: relative;
  display: inline-block;
  overflow: hidden;
  text-align: center;
}

.ziraat-img img,
.sulama-img img,
.hayvan-img img {
  width: 100%;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.ziraat-img:hover img,
.sulama-img:hover img,
.hayvan-img:hover img {
  transform: scale(1.05);
  filter: brightness(0.6);
}

.ziraat-img p,
.sulama-img p,
.hayvan-img p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  color: white;
  transition: opacity 0.4s ease;
  font-family: "Times New Roman", Times, serif;
  pointer-events: none;
}

.ziraat-img:hover p,
.sulama-img:hover p,
.hayvan-img:hover p {
  opacity: 1;
}

.social-icons,
.social-icons a,
.social-icons i {
  color: #fff !important;
}

.social-icons li {
  list-style: none;
  padding: 5px;
}

.social-icons {
  display: flex;
}

.section-10 .row1 .renk-box {
  background-color: #005438;
  height: 180px;
  border-radius: 15px;
}

.section-10 .row2 {
  position: relative;
  display: flex;
  justify-content: center;
  padding-left: 20px;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 10;
}

.section-10 .bayi {
  background-color: #f9f7ef;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin: 10px;
}

.bayi h3 {
  color: #005438;
}

.bayi img {
  width: 80px;
}

.panel {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 80vh;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  flex: 0.5;
  margin: 10px;
  position: relative;
  transition: flex 0.7s ease-in;
  -webkit-transition: all 700ms ease-in;
}

.panel h3 {
  font-size: 24px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  margin: 0;
  opacity: 0;
}

.panel.active {
  flex: 5;
}

.panel.active h3 {
  opacity: 1;
  transition: opacity 0.3s ease-in 0.4s;
}

@media (max-width: 480px) {
  .container {
    width: 100vw;
  }

  .panel {
    flex: 1;
    margin: 5px;
    height: 40vh;
  }

  .panel.active {
    flex: 3;
  }
}

.galeri-title h3 {
  color: #005438;
}

.carousel-indicators {
  display: none !important;
}

.dropdown-menu .dropdown-item {
  color: #000 !important;
}

.dropdown-menu .dropdown-item a {
  color: #000 !important;
}

.social-icons {
  padding-left: 0 !important;
}

.mobile-sticky {
  width: 100%;
  position: fixed;
  z-index: 741;
  background-color: white !important;
  top: 0px !important;
  animation: slideDown 0.35s ease-out;
}

.mobil-hamburger-menu-btn {
  position: absolute;
  right: 10px;
  top: 50%;
    transform: translateY(-50%);
  font-size: 30px;

  >i {
    color: #005438 !important;
  }
}

.offcanvas {
  z-index: 99999;
  background-color: #005438 !important;
}

.btnClose {
  background-color: transparent !important;
  padding: 2rem;
  border: none !important;
  font-size: 30px;
  margin-left: 74%;
  margin-bottom: 1rem;
  margin-top: 1rem;

  >i {
    color: white !important;
    font-size: 30px;
  }
}

.mobil-menu {
  background-color: white;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  padding-bottom: .3rem;
  padding-top: .3rem;
	position: relative;
}

.offcanvas-social-media>ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  list-style-type: none;
  padding-top: 0rem;
  margin-left: -2rem;
}

.offcanvas-social-media>ul>li {
  padding-right: 2rem;
}

.offcanvas-social-media>ul>li>a>i {
  color: var(--color1) !important;
  font-size: 20px;
}

.offcanvas-header {
  padding: 0rem !important;
}

.offcanvas-body {
  scrollbar-color: #f0f0f0 #f0f0f0;
  scrollbar-width: thin;
}

.offcanvas-body::-webkit-scrollbar {
  width: 8px;
}

.offcanvas-body::-webkit-scrollbar-thumb {
  background-color: var(--color2);
  border-radius: 10px;
}

.offcanvas-body::-webkit-scrollbar-track {
  background-color: #f0f0f0;
}

.offcanvas-site-logo>a>img {
  filter: brightness(0) invert(1);
}

.accordion {
  width: 100%;
  max-width: 360px;
  background: transparent;
  border-radius: 4px;
  list-style-type: none;
  margin-left: -4rem;

  >li {
    padding-bottom: .5rem;
  }

  >.menu-item {
    padding-bottom: 1rem;
  }

  >.menu-item>a {
    color: white !important;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 18px;
  }
}

.accordion-submenu {
  display: none;
  margin-left: .5rem;
  margin-top: 1rem;
  list-style-type: none;

  >li {
    padding-bottom: 1rem;
  }

  >li>a {
    font-size: 14px;
    color: var(--color4) !important;
    padding: 7px 15px;
    padding-left: 10px;
    text-decoration: none;
    font-weight: 400;
  }
}

.accordion .link {
  cursor: pointer;
  display: block;
  padding: 0px 15px 15px 42px;
  color: white !important;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  transition: all 0.4s ease;
  text-decoration: none;
  text-transform: capitalize;
}

.accordion-submenu>li>a {
  font-size: 16px;
  color: white !important;
}

.accordion li:last-child .link {
  border-bottom: 0;
}

.accordion li i {
  position: absolute;
  top: 16px;
  left: 12px;
  font-size: 18px;
  color: #595959;
  transition: all 0.4s ease;
}

.accordion li i.fa-chevron-down {
  right: 0px;
    left: auto;
    font-size: 18px;
    background-color: white !important;
    color: #005438;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    padding: .7rem;
    top: -5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion li.open .link {
  color: #005438;
}

.accordion li.open i {
  color: #005438;
}

.accordion li.open i.fa-chevron-down {
  transform: rotate(180deg);
}

.mobil-web-site-logo {
  
}

.mobil-web-site-logo>a>img {
  width: 50%;
  object-fit: cover;
}

.language-menu {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  list-style-type: none;
  margin-left: -.6rem;

  >li {
    padding-right: .7rem;

    >a {
      color: white;
      font-weight: 600;
      font-size: 16px;
      text-decoration: none;
    }
  }
}

.language-menu.ui-style-menu {
	justify-content: flex-start;
	padding-left: 42px !important;
}

#language-menu {
  margin-left: -1.4rem !important;
}

::marker {
  color: #005438;
}

.maxWidth {
  max-width: 1520px;
}

::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

::-webkit-scrollbar-track {
  background: rgb(224, 222, 222);
  height: 7px;
}

::-webkit-scrollbar-thumb {
  background: #005438;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #005438;
  border-radius: 10px;
}

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}

#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background: #005438;
  z-index: 999;
  transform: translateX(0);
}

#loader-wrapper .loader-section.section-left {
  left: 0;
}

#loader-wrapper .loader-section.section-right {
  right: 0;
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: white;
  animation: spin 2s linear infinite;
  z-index: 1001;
}

#loader:before {
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}

#loader:before,
#loader:after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: white;
}

#loader:after {
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.loaded #loader-wrapper {
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.3s 1s ease-out;
}

.loaded #loader-wrapper .loader-section.section-left {
  transform: translateX(-100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
  transform: translateX(100%);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
  opacity: 0;
  transition: all 0.3s ease-out;
}

.sub-menu {
  display: none;
  position: absolute;
  z-index: 555;
  min-width: 325px;
  background-color: #005438;
  animation: downOut 300ms ease-in-out forwards;
  list-style-type: none;
  padding-left: 0rem;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  margin-top: 0rem;
  margin-left: -1.7rem;
}

.sub-menu>li {
  padding-top: .7rem;
  padding-bottom: .7rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-left: 4px solid white;
}

.sub-menu>li:hover {
  background-color: white;
  color: white;

  >a {
    background-color: white;
    color: #005438 !important;
    text-decoration: none !important;
    display: block;
  }
}

.sub-menu>li>a {
  color: white !important;
  text-decoration: none !important;
  font-size: 17px;
  font-weight: 400;

}

.menu-ul>li:hover>.sub-menu {
  display: block;
}

.section-10 {
  background-color: #F0EDE5;
}

.banner {
  position: relative;
  height: 350px;
  width: 100%;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: 50% 50% !important;

  &::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .6;
  }
}

.hero-overlay {
  text-align: center;
  padding-top: 10rem;
  z-index: 44;
  position: relative;
}

.hero-overlay>h1 {
  color: white;
  font-size: 40px;
  font-weight: 600;
}

.hero-overlay>p {
  color: white;
  font-size: 18px;
  font-weight: 400;
}

.hero-overlay>p>a {
  color: white;
  font-size: 18px;
  font-weight: 400;
}

.section-blog {
  padding: 50px 0px 40px 0px;
  background-color: #F0EDE5;
}

.blog-item {
  padding: 2rem;
  background-color: white;
  border-radius: 20px;
  border: 1px solid #ddd;
  position: relative;
  margin-bottom: 1rem;
  display: block;
  text-decoration: none;
}

.blog-item-img>img {
  height: 350px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.blog-item-date {
  position: absolute;
  top: 60px;
  left: 60px;
  background-color: #005438;
  padding: .5rem;
  border-radius: 10px;
}

.blog-item-date>span {
  font-size: 14px;
  font-weight: 500;
  color: white;
  padding-left: .5rem;
}

.blog-item-date>span>i {
  color: white;
  font-size: 14px;
}

.blog-item-title>h3 {
  color: #005438;
  font-size: 22px;
  font-weight: 600;
  margin-top: .3rem;
  margin-bottom: .3rem;
  text-align: center;
	display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

.blog-item-text {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Gilroy-regular', sans-serif;
  color: #1e1d1d;
}

.blog-item-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 1rem;

  >div {
    background-color: #005438;
    padding: .7rem 1.5rem;
    color: white;
    font-size: 16px;
    border-radius: 10px;
    text-decoration: none;
    font-family: 'Gilroy-regular', sans-serif;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px;
}

.pagination .page-item .page-link {
  color: #005438;
  border: 1px solid #005438;
  border-radius: 6px;
  padding: 8px 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  background-color: #fff;
}

.pagination .page-item .page-link:hover {
  background-color: #005438;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 84, 56, 0.3);
  transform: translateY(-1px);
}

.pagination .page-item.active .page-link {
  background-color: #005438;
  color: #fff;
  border-color: #005438;
  box-shadow: 0 2px 6px rgba(0, 84, 56, 0.4);
}

.pagination .page-item.disabled .page-link {
  color: #aaa;
  border-color: #ddd;
  background-color: #f8f8f8;
  cursor: not-allowed;
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
  font-weight: 600;
}

.blog-detay {
  padding: 50px 0px 50px 0px;
  background-color: #F0EDE5;
}

.blog-detay-content>p {
  font-size: 16px;
  font-weight: 400;
  font-family: 'Gilroy-regular', sans-serif;
}

.blog-detay .img-item img {
	height: 150px;
}

.blog-detay-img {
  position: sticky;
  top: 50px;
}

.blog-detay-img>img {
  border-radius: 10px;
  height: 450px;
  width: 100%;
  object-fit: cover;
}

.blog-detay .ui-style-gallery {
  margin-top: 50px;
}

.blog-detay .ui-style-gallery .img-item > a  {
	display: block;
}

.blog-detay .ui-style-gallery .img-item > a img  {
	width: 100%;
	border-radius: 11px;
}

.contact-info {
  padding: 50px 0px 40px 0px;
  background-color: #F0EDE5;
}

.contact-form {
  padding: 0px 0px 50px 0px;
  background-color: #F0EDE5;
}

.contact-info-body {
  margin-bottom: 2rem;
}

.contact-info-title>h3 {
  color: #005438;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
}

.contact-info-text>p {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  font-family: 'Gilroy-regular', sans-serif;
}

.contact-information-list {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.contact-information-item {
  padding-top: 1rem;
}

.map-container>iframe {
  border-radius: 10px;
  width: 100%;
  height: 600px;
}

.contact-information-list>.contact-information-item:nth-child(1) {
  border-bottom: 2px solid #005438;
  width: 100%;
  margin-bottom: 1rem;
}

.contact-information-list>.contact-information-item:nth-child(1)>.contact-information-item-title>h3 {
  color: #005438;
  font-size: 30px;
  font-weight: 600;
  margin: 0rem;
  padding-bottom: 1rem;
}

.contact-information-item>.contact-information-item-title>h3>i {
  color: #005438;
  font-size: 16px;
}

.contact-information-item-title>h3 {
  color: #005438;
  font-size: 18px;
  font-weight: 600;
}

.contact-information-item-text>p {
  font-size: 16px;
  font-weight: 400;
  font-family: 'Gilroy-regular', sans-serif;
}

.contact-information-item-text>p>a {
  font-size: 16px;
  font-weight: 400;
  color: #005438;
  text-decoration: none;
  font-family: 'Gilroy-regular', sans-serif;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  color: #1e1d1d !important;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Gilroy-regular', sans-serif;
}

.form-control {
  height: 50px;
  border: 1px solid #ccc !important;
  border-radius: 10px !important;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
input[type="checkbox"]:focus,
input[type="file"]:focus,
.uneditable-input:focus {
  border-color: #005438;
  outline: 0 none !important;
}

.form-send {
  border: none;
  background-color: #005438;
  color: white;
  width: 170px;
  height: 40px;
  transition: .3s ease;
  position: relative;
  top: 15px;
  border-radius: 10px;
  font-family: 'Gilroy-regular', sans-serif;

  &:hover {
    background-color: #005438;
  }
}

.form-check-input {
  font-size: 20px;
}

.form-check-input {
  background-color: #005438 !important;
  border-color: #005438 !important;
  font-size: 20px;
}

.form-check-input:checked {
  background-color: #005438 !important;
  border-color: #005438 !important;
  font-size: 20px;
}

.form-check-label {
  padding-top: .3rem;
  padding-left: .3rem;
  font-family: 'Gilroy-regular', sans-serif;
}

.form-check-label>span {
  padding-top: .5rem;
  font-size: 16px;
  color: #1e1d1d;
  font-family: 'Gilroy-regular', sans-serif;

  >a {
    font-size: 16px;
    color: #1e1d1d;
    text-decoration: none;
    font-family: 'Gilroy-regular', sans-serif;
  }
}

textarea {
  height: 100px !important;
}

.contact-form-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact-form-title>h3 {
  color: #005438;
  font-size: 40px;
  font-weight: 600;
  text-align: center;
}

.contact-form-tex>p {
  font-size: 16px;
  font-weight: 400;
  text-align: center
}

.section-galeri {
  padding: 50px 0px 50px 0px;
  position: relative;
  z-index: 444;
}

.img-item {
  padding-bottom: 1rem;
}

.section-galeri::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 60%;
  background-color: #005438;
  z-index: -1;
}

.section-galeri .container {
  position: relative;
  z-index: 1;
}

.section-galeri .img-item img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-daha-fazla {
  display: inline-block;
  padding: 12px 35px;
  background-color: #005438;
  color: #fff;
  border-radius: 30px;
  font-size: 18px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  font-family: 'Gilroy-regular', sans-serif;
  margin-top: 2rem;

}

.btn-daha-fazla:hover {
  background-color: #005438;
  transform: translateY(-3px);
}

.popup {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.popup-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
  animation: zoom 0.3s ease;
}

@keyframes zoom {
  from {
    transform: scale(0.7);
  }

  to {
    transform: scale(1);
  }
}

.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.close:hover {
  color: #bbb;
}

.img-item img {
  cursor: pointer;
  transition: 0.3s;
  z-index: 444;
}

.tarihce {
  padding: 40px 0px 40px 0px;
}

.title-tarihce {
  font-size: 45px;
  font-family: "Times New Roman", Times, serif;
  color: #005438;
  display: flex;
  justify-content: center;

  >h2 {
    margin-bottom: 2rem;
  }
}

.tarihce-paragraf p {
  font-size: 18px;
  font-family: 'Gilroy-regular', sans-serif;
}

.tarihce-img img {
  width: 100%;
  border-radius: 5px;
}

.tarihce-paragraf,
.tarihce-img {
  opacity: 0;
}

.box-section {
  background-color: #005438;
  padding-top: 30px;
  padding-bottom: 30px;
}

.box h1 {
  display: flex;
  justify-content: center;
  color: white;
}

.box h2 {
  display: flex;
  justify-content: center;
  color: white;
}

.box p {
  display: flex;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.bayi-section {
  padding-top: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bayi-card {
  position: relative;
  background-color: #f9f7ef;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px;
  max-width: 100%;
  width: 100%;
  overflow: hidden;
  margin-bottom: 1rem;
}

.bayi-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background: #00412e;
  clip-path: polygon(0 0, 75% 0, 100% 100%, 0% 100%);
  z-index: 0;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.bayi-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: #007a4a;
  opacity: 0.8;
  clip-path: polygon(0 0, 65% 0, 90% 100%, 0% 100%);
  z-index: 0;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.bayi-logo {
  position: relative;
  z-index: 1;
}

.bayi-logo img {
  width: 350px;
  height: 200px;
  border-radius: 10px;
  display: block;
}

.bayi-info {
  flex: 1;
  margin-left: 40px;
  position: relative;
  z-index: 1;
  padding-left: 300px;
}

.bayi-info h3 {
  color: #005438;
  font-weight: 700;
  margin-bottom: 10px;
}

.underline {
  width: 80px;
  height: 4px;
  background-color: #8dc63f;
  border-radius: 2px;
  margin-bottom: 15px;
}

.bayi-info p {
  color: #555;
  line-height: 1.6;
  margin: 0;
  font-family: 'Gilroy-regular', sans-serif;
}

@media (max-width: 768px) {
  .bayi-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .bayi-card::before,
  .bayi-card::after {
    width: 100%;
    height: 40%;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
  }

  .bayi-logo img {
    margin-bottom: 20px;
  }

  .bayi-info {
    margin-left: 0;
  }

  .underline {
    margin: 10px auto;
  }
}

.hero-overlay h1 {
  font-size: 50px;
  font-weight: 600;
}

.hero-overlay p {
  font-size: 18px;
  font-weight: 400;
}

.hero-overlay a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.hero-overlay a:hover {
  color: #a8f5d8;
}

/*********************************************************************************/
.slide-info {
  background-color: var(--color1);
  padding: 70px 0px 70px 0px;
}

.slider-info-title {
  margin-bottom: 2rem;
}

.slider-info-title>h3 {
  color: var(--color3);
  display: flex;
  flex-direction: row;
  justify-content: center;
  font-size: 45px;
  font-weight: 600;
}

.slider-info-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 1rem;
  position: relative;
}

.slider-info-item-text>p {
  color: white;
  text-align: center;
  font-size: 18px;
  font-family: "Gilroy Regular", sans-serif;
  font-weight: 400;
}

.slider-info-item-img {
  overflow: hidden;
}

.slider-info-item-img>img {
  transition: transform 0.4s ease, filter 0.4s ease;
  transform: scale(1.);
	object-fit: contain;
}

.slider-info-item-img>img:hover {
  transform: scale(1.05);
  filter: brightness(0.6);
}

.slider-info-item-img-text {
  transition: 0.3s ease;
  text-align: center;
  margin-top: -8rem;
  z-index: 71;
  position: relative;
	display: none;

  >p {
    color: white;
    font-size: 25px;
    font-weight: 400;
    opacity: 0;
    text-align: center;
  }
}

.slider-info-item:hover>.slider-info-item-body>.slider-info-item-img-text>p {
  opacity: 1;
  transition: .3s ease;
}

.kurumsal {
  padding: 50px 0px 50px 0px;
  background-image: url("../images/kurumsal/logo/bilimsel-02-logo.jpg");
  background-repeat: no-repeat;
  background-size: 900px;
  background-position: left top;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  background-color: #F0EDE5;
}

.kurumsal-content-row {
  margin-bottom: 3rem;
}

.kurumsal-title>h1 {
  color: #005438;
  font-family: 'Gilroy-Bold', sans-serif;
  font-size: 45px;
  font-weight: 600;
  margin-bottom: 3rem;
}

.kurumsal-content-img>img {
  height: 500px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.kurumsal-content-title>h2 {
  color: #005438;
  font-family: 'Gilroy-medium', sans-serif;
  font-size: 45px;
  text-align: center;
  font-weight: 400;
}

.kurumsal-content-text {
  margin-top: 1.5rem;
}

.kurumsal-content-text>p {
  color: var(--color2);
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  font-family: 'Gilroy-regular', sans-serif;
}

.kurumsal-content-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;

  >a {
    background-color: #005438;
    padding: 1rem 3rem;
    color: white;
    font-size: 16px;
    border-radius: 10px;
    text-decoration: none;
  }
}

.counter {
  margin-bottom: 3rem;
}

.rakam>h2 {
  color: white;
  text-align: center;
}

.rakam>p {
  color: white;
  font-size: 25px;
  font-weight: 400;
  text-align: center;
}

.kurumsal-video-title>h3 {
  color: var(--color1);
  font-family: 'Gilroy-medium', sans-serif;
  font-size: 35px;
  font-weight: 400;
  text-align: center;
  padding-top: 3rem;
}

.ozellikler {
  background-color: #F0EDE5;
  height: 350px;
  padding: 0rem !important;
}

.ozellikler .row1 .renk-box {
  background-color: #005438;
  height: 180px;
  border-radius: 15px;
}

.ozellikler .row2 {
  position: relative;
  display: flex;
  justify-content: center;
  padding-left: 20px;
  top: 90%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 10;
}

.ozellikler .bayi {
  background-color: #f9f7ef;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  margin: 10px;
}

.bayi>p {
  font-family: 'Gilroy-medium', sans-serif;
  font-size: 16px;
  color: var(--color2);
  font-weight: 400;
}

.galeri {
  background-color: #F0EDE5;
  padding: 0px 0px 50px 0px;
}

.galeri-title {
  margin-bottom: 2rem;

  >h3 {
    text-align: center;
    font-family: 'Gilroy-bold', sans-serif;
    font-size: 45px;
    color: #005438;
  }
}

.sertifikalar {
  padding: 70px 0px 70px 0px;
  background-image: url(../images/kurumsal/logo/bilimsel-03-logo1.jpg);
  background-position: right bottom;
  background-size: 300px auto;
  background-repeat: no-repeat;
  background-color: var(--color1);
}

.sertifika-baslik {
  margin-bottom: 2rem;
  color: white;
  font-family: 'Gilroy-bold', sans-serif;
  font-size: 45px;
  text-align: center;
}

.haberler {
  background-color: #F0EDE5;
  padding: 50px 0px 50px 0px;
}

.section-haberler-title>h3 {
  color: #005438;
  font-family: 'Gilroy-bold', sans-serif;
  font-size: 45px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
}

footer {
  background-color: var(--color1);
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.footer-logo>a>img {
  width: 200px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  background-color: #A6C9A0;
  text-align: center;
}

.footer-coprigyt>p {
  color: #005438;
  text-align: center;
  padding-top: .7rem;
}

.footer-menu-title>h4 {
  text-decoration: underline;
  font-size: 23px;
  color: white;
  font-weight: 600;
}

.footer-menu-list>ul>li>a {
  color: #ffffffcc;
  font-size: 16px;
  font-weight: 400;
}

.footer-menu-text>p {
  color: #ffffffcc;
  font-size: 16px;
  font-weight: 400;
}

.tarihce {
  background-color: #F0EDE5;
  padding-bottom: 5rem;
}

.contact-form-text>p {
  font-family: 'Gilroy-regular', sans-serif;
  color: var(--color2);
  font-size: 16px;
  font-weight: 400;
}

.section-bayi-content>h3 {
  text-align: center;
  color: #005438;
  font-family: 'Gilroy-bold', sans-serif;
  font-size: 45px;
  font-weight: 600;
}

.language-menu {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin-top: .2rem;
}

.scrollup {
  width: 60px;
  height: 60px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  background-color: var(--color1);
  border: 1px solid transparent;
  z-index: 222;
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}

@keyframes scale2 {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.scrollup>i {
  color: white !important;
}

.card-link>img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.carousel-item {
  overflow: hidden !important;
}

ul {
  list-style-type: none !important;
  margin: 0rem !important;
  padding: 0rem !important;
}

a.phone {
  color: #c2d6cf;
  text-decoration: none;
}

.otgs-development-site-front-end {
  display: none;
}

.coprigyt-link {
  color: #1d57a9;
  text-decoration: none !important;
  font-weight: 900;
}