@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-color: #291f71;
  --primary-100: white;
  --primary-900: black;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

/* GENERAL CSS START */
ol,
ul {
  margin: 0 !important;
  padding: 0 !important;
}

a {
  text-decoration: none !important;
  color: black;
  font-size: 16px;
  transition: all 0.3s ease;
  pointer-events: auto !important;
}

li {
  list-style: none;
}

section {
  padding: 60px 0;
}

img {
  max-width: 100%;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.align-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  font-size: 16px;
  background-color: var(--primary-100);
  color: var(--primary-900);
  position: relative;
  transition: all 0.3s ease;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: var(--primary-100);
}

.section-title {
  position: relative;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  width: 25%;
  height: 3px;
  border-radius: 30px;
  background-color: var(--primary-900);
}

.offer {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: var(--primary-100);
  padding: 10px 40px;
  border-radius: 5px;
  font-size: 16px;
  text-transform: uppercase;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.offer:hover {
  background-color: var(--primary-100);
  color: var(--primary-color);
}

@media (max-width: 1200px) {
  .offer {
    margin: 0 15px;
    padding: 15px 30px;
    font-size: 14px;
    text-align: center;
  }
}

/* GENERAL CSS END */

/* CONTENT WRAPPER START */

.content-wrapper {
  padding: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 10px;
}

.content-wrapper ul,
.content-wrapper ol {
  padding-left: 40px !important;
  margin-bottom: 20px !important;
}

.content-wrapper ul li {
  list-style: unset;
  margin-bottom: 10px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.content-wrapper ol li {
  list-style: disc;
  margin-bottom: 10px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.content-wrapper p+h2,
.contnet-wrapper p+h3,
.content-wrapper p+h4,
.content-wrapper p+h5,
.content-wrapper p+h6 {
  margin-bottom: 20px;
}

.content-wrapper img {
  width: 100%;
  max-width: 100%;
  object-fit: contain;
  margin: 20px 0;
  height: auto;
}

/* CONTENT WRAPPER END */

/* HEADER START */

/* DESKTOP HEADER START */

header {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.header-top {
  background-color: var(--primary-color);
  padding: 10px 0;
}

.header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top-wrapper .left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-top-wrapper .left a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-100);
}

.header-top-wrapper .left a i {
  font-size: 18px;
}

.header-bottom {
  background-color: var(--primary-100);
  padding: 20px 0;
}

.header-bottom.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.header-bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-bottom .bottom-left .logo img {
  width: 300px;
}

@media (max-width: 1200px) {
  .header-bottom .bottom-left .logo img {
    width: 225px;
  }
}

.header-bottom .bottom-center nav ul {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-bottom .bottom-center nav ul li a {
  color: var(--primary-900);
}

/* DESKTOP HEADER END */

/* HEADER DROPDOWN START */
.dropdown {
  position: relative;
  cursor: pointer;
}

.dropdown a {
  padding-bottom: 50px;
}

@media (max-width: 992px) {
  .dropdown a {
    padding-bottom: 0px !important;
  }
}

.dropdown-content {
  width: 300px;
  border-top: 5px solid var(--primary-500);
  position: absolute;
  background: white;
  margin: 0 auto;
  left: 0;
  right: 0;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  z-index: 9;
  pointer-events: none;
  top: 40px;
  transform: scaleY(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: top;
  opacity: 0;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  overflow: hidden;
}

@media (max-width: 992px) {
  .dropdown-content {
    border: none;
    position: static;
    width: 100%;
    left: 0px;
    box-shadow: none;
    opacity: 1;
    transform: scaleY(1);
  }
}

.dropdown-items {
  display: grid !important;
  grid-template-columns: repeat(1, 1fr) !important;
  gap: 0 !important;
  width: 100%;
}

.dropdown-items .menu-wrapper {
  padding: 0;
}

.dropdown-content .dropdown-items li {
  display: block;
  padding: 10px;
  width: 100%;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

.dropdown-content .dropdown-items li:hover {
  background-color: var(--primary-100);
}

@media (max-width: 992px) {
  .dropdown-content .dropdown-items li {
    padding: 20px;
  }
}

.dropdown-content .dropdown-items li a {
  color: white !important;
  padding-bottom: 0;
  font-weight: 300;
  width: 100%;
  display: block;
}

.dropdown-content .dropdown-items li:hover a {
  color: var(--primary-900) !important;
}

.dropdown:hover .dropdown-content {
  transform: scaleY(1);
  opacity: 1;
  pointer-events: all;
}

.dropdown-icon i {
  transition: all 0.3s ease;
  font-size: 12px;
}

@media (min-width: 992px) {
  .dropdown:hover .dropdown-icon i {
    color: var(--primary-500);
    transform: rotate(180deg);
    transition: transform 0.3s ease, color 0.3s ease;
  }
}

/* mobile için open class ekliyoruz */
.dropdown-icon i {
  transition: transform 0.3s ease, color 0.3s ease;
}

.dropdown.open .dropdown-icon i {
  transform: rotate(180deg);
  color: var(--primary-500);
}

/* HEADER DROPDOWN END */

/* MOBILE HEADER START */

@media (min-width: 992px) {
  .mobile-header {
    display: none;
  }
}

@media (max-width: 992px) {
  .desktop-header {
    display: none;
  }
}

.mobile-header {
  transition: all 0.3s ease;
  padding: 5px 10px;
  position: sticky;
  top: 0;
  z-index: 9;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.mobile-top {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-top .logo img {
  width: 350px;
}

@media (max-width: 500px) {
  .mobile-top .logo img {
    width: 175px;
  }
}

.hamburger {
  display: block;
  cursor: pointer;
  position: relative;
}

.hamburger::after {
  content: "MENÜ";
  position: absolute;
  left: -50px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-color);
}

.hamburger .bar {
  display: block;
  margin: 5px 0;
  height: 3px;
  width: 30px;
  border-radius: 10px;
  background-color: var(--primary-color);
  transition: 0.3s ease;
  position: relative;
  z-index: 13;
}

@media (min-width: 430px) {
  .hamburger.active .bar {
    background-color: white;
  }
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header-wrapper {
  background-color: white;
  width: 50%;
  height: 100vh;
  position: fixed;
  left: -100%;
  top: 0;
  z-index: 12;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.header-wrapper.active {
  left: 0;
}

@media (max-width: 768px) {
  .header-wrapper {
    width: 75%;
  }
}

@media (max-width: 430px) {
  .header-wrapper {
    width: 100%;
  }
}

.overlay {
  position: fixed;
  left: 0;
  width: 100vw;
  height: 120vh;
  background-color: rgba(0, 0, 0, 0.9) !important;
  z-index: 10;
  display: none;
  pointer-events: none;
  bottom: 0;
}

.overlay.active {
  display: block;
  pointer-events: all;
}

.mobile-header nav ul li {
  padding: 10px 0;
}

.mobile-header nav ul li a {
  color: black;
  display: block;
}

.mobile-header .dropdown-icon i {
  font-size: 27px;
}

@media (max-width: 992px) {
  .menu-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
  }

  .dropdown-content {
    display: none;
    border-radius: 0;
  }

  .dropdown-content.open {
    display: block;
  }
}

.header-wrapper .logo {
  padding: 10px 20px 0 20px;
}

.header-wrapper .logo img {
  width: 200px;
}

.header-wrapper .social-links {
  padding-left: 20px;
}

.header-wrapper .social-links a {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* MOBILE HEADER END */

/* HEADER END */

/* SLIDER SECTION START */

.slider {
  padding: 0;
}

.heroSlider {
    padding-bottom: 40px !important;
}

.heroSlider .hero-slide img {
  width: 100%;
}

.heroSlider .swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 25px;
}

.heroSlider .swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 25px;
}

.heroSlider .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  font-size: 22px;
  background-color: transparent;
  color: var(--primary-100);
  width: 40px;
  height: 40px;
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.heroSlider .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  font-size: 22px;
  background-color: transparent;
  color: var(--primary-100);
  width: 40px;
  height: 40px;
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid var(--primary-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.heroSlider .swiper-pagination-bullet-active {
  background: var(--swiper-pagination-color, var(--primary-color)) !important;
  border: 1px solid var(--primary-color);
}

.heroSlider .swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width,
      var(--swiper-pagination-bullet-size, 75px));
  height: var(--swiper-pagination-bullet-height,
      var(--swiper-pagination-bullet-size, 8px));
  background: var(--primary-color);
  border-radius: var(--swiper-pagination-bullet-border-radius, 5%);
}

@media (max-width:992px) {
  .heroSlider .swiper-pagination-bullet {
      width: var(--swiper-pagination-bullet-width,
      var(--swiper-pagination-bullet-size, 30px));
  }
}

.mobile-slider {
  display: none;
}

@media (max-width: 992px) {
  .desktop-slider {
    display: none;
  }

  .mobile-slider {
    display: block;
  }
}

/* SLIDER SECTION END */

/* ABOUT SECTION START */

.about {
  background-color: #f9f9f9;
}

.left-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

@media (max-width:568px) {
  .about-left {
    padding: 20px;
  }
}

.right-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.about-right .title {
  font-weight: 600;
  font-size: 20px;
  position: relative;
  color: var(--primary-color);
  margin-bottom: 25px;
}

@media (max-width:992px) {
  .about-right .title {
    margin: 30px 0;
  }
}

.about-right .title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80%;
  height: 2px;
  background-color: var(--primary-color);
}

.about-right .section-title {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  color: var(--primary-900);
  font-size: 27px;
  margin-bottom: 5px;
  text-align: left;
  border-bottom: none;
}

.about-right .section-title::after {
  content: "";
  width: 0;
  display: none;
}

.about-right .about-desc {
  font-size: 15px;
  font-weight: 300;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px !important;
}

.about-list li .list-item {
  display: flex;
  align-items: center;
  gap: 10px;
}


.about-list li span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
}


.about-right .link {
  padding: 15px 60px;
  background-color: var(--primary-color);
  color: var(--primary-100);
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

@media (max-width:768px) {
  .about-right .link {
    width: 100%;
    display: inline-block;
    text-align: center;
  }
}

/* ABOUT SECTION END */

/* BOX GENERAL CSS START */
@media (max-width:568px) {
  .box-wrapper {
    padding: 0 20px;
  }
}

.box {
  display: block;
  margin-bottom: 30px;
  background-color: var(--primary-100);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

.box .shine img {
  width: 100%;
}

.box .shine {
  position: relative;
  overflow: hidden;
}

.box .shine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  z-index: 2;
  transform: skewX(-25deg);
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.7) 50%,
      rgba(255, 255, 255, 0) 100%);
}

.box .shine:hover::before,
.box .shine:focus::before {
  animation: shine 0.85s forwards;
}

@keyframes shine {
  0% {
    left: -75%;
  }

  100% {
    left: 125%;
  }
}


.box .box-bottom {
  padding: 8px 0;
  color: var(--primary-900);
  position: absolute;
  left: 0;
  right: 0;
  z-index: 4;
  bottom: 8px;
  margin: 0 15px;
  background-color: var(--primary-100);
  text-align: center;
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.blog-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--primary-900);
}

.blog-box:hover {
  color: var(--primary-900);
}

.blog-box img {
  border-radius: 10px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.blog-box-bottom {
  padding: 0px 10px 0 10px;
}

.blog-box-title {
  font-weight: 600;
  font-size: 20px;
}

.blog-box-desc {
  margin: 10px 0;
}

.blog-btn {
  position: relative;
}

.blog-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  border-radius: 30px;
  background-color: var(--primary-900);
  transition: all 0.3s ease;
}

.blog-box:hover .blog-btn::after {
  width: 100%;
}

/* BOX GENERAL CSS END */

/* BLOG SECTION START */

.blog .container {
  position: relative;
}

.blog .section-title {
  margin-bottom: 0;
}

.blogSlider {
  padding: 60px 10px !important;
}

.blog .swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, -50px);
  left: auto;
}

.blog .swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, -50px);
  right: auto;
}

.blog .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
  font-size: 22px;
  border: 1px solid var(--primary-color);
  padding: 10px 15px;
  border-radius: 8px;
  color: var(--primary-color);
}

.blog .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
  font-size: 22px;
  border: 1px solid var(--primary-color);
  padding: 10px 15px;
  border-radius: 8px;
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .navigation-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    /* butonlar arası boşluk */
    position: absolute;
    bottom: 20px;
    /* sliderın altına sabitler */
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }

  .navigation-container .swiper-button-next,
  .navigation-container .swiper-button-prev {
    position: static;
    /* Swiper’ın default absolute pozisyonunu sıfırlıyoruz */
    margin: 0;
    transform: rotate(180deg);
  }
}

.router-btn {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.router-btn a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--primary-900);
  font-weight: 600;
}

.router-btn a:hover {
  color: var(--primary-color);
}

.router-btn a i {
  transition: all 0.3s ease;
}

.router-btn a:hover i {
  transform: translateX(10px);
}

/* BLOG SECTION END */

/* CTA SECTION START */

.cta {
  background-color: var(--primary-color);
}

.cta-left {
  display: flex;
  flex-direction: column;
  color: var(--primary-100);
  font-size: 27px;
}

.cta-right {
  display: flex;
  justify-content: center;
}

.cta-right a {
  color: var(--primary-100);
  font-size: 20px;
  width: 90%;
  border: 1px solid var(--primary-100);
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.cta-right a:hover {
  color: var(--primary-900);
  background-color: var(--primary-100);
}

/* CTA SECTION END */

/* FOOTER START */

footer {
  padding: 60px 0;
  background-color: var(--primary-100);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

footer .logo img {
  width: 150px;
}

.footer-wrapper {
  display: grid;
  grid-template-columns: 0.5fr 1fr 1fr;
  column-gap: 30px;
}

@media (max-width: 992px) {
  .footer-wrapper {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }
}

.footer-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.footer-list li a {
  display: block;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
  color: var(--primary-900);
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-right a {
  display: flex;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
  gap: 5px;
  color: var(--primary-900);
}

.footer-right a:hover {
  opacity: 0.8;
  color: var(--primary-900);
}

/* FOOTER END */

/* BREADCRUMB START */

.breadcrumb-container {
  padding: 20px 0;
  background-color: var(--primary-color);
}

.breadcrumb-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.breadcrumb-wrapper h1 {
  color: var(--primary-100);
}

.breadcrumb-wrapper .links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  color: var(--primary-100);
}

.breadcrumb-wrapper .links li {
  position: relative;
}

.breadcrumb-wrapper .links li:not(:last-child)::after {
  content: "/";
  position: absolute;
  right: -10px;
}

.breadcrumb-wrapper .links li a {
  color: var(--primary-100);
  font-weight: 600;
}

/* BREADCRUMB START */

/* STICKY FORM START */

.bottom-category-gallery {
  padding: 60px 0 0 0;
}

@media (max-width:992px) {
  .bottom-category-gallery {
    padding: 0;
  }
}

/* GALLERY SECTION START */

.gallerySlider {
  padding-inline: 10px !important;
  padding-bottom: 10px !important;
}

@media (max-width: 992px) {
  .gallerySlider {
    padding: 60px 100px !important;
  }
}

.gallery-box {
  display: block;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
}

.gallery-box img {
  object-fit: cover;
  margin: 0;
  width: 100%;
}

@media (max-width:992px) {
  .btn-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: -35px;
    margin-bottom: 30px;
  }

  .swiper-button-next {
    order: 1;
  }

  .swiper-button-next,
  .swiper-button-prev {
    position: static !important;
  }
}

/* GALLERY SECTION END */

.bottom-category-gallery .container {
  position: relative;
}

.bottom-category-gallery .swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, -30px);
}

.bottom-category-gallery .swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, -30px);
}

.bottom-category-gallery .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  font-size: 22px;
  background-color: transparent;
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottom-category-gallery .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  font-size: 22px;
  background-color: transparent;
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottom-category-page {
  padding: 0 0 60px 0;
}

@media (max-width: 992px) {

  .bottom-category-page .content-wrapper {
    margin-bottom: 30px;
  }
}

aside {
  padding: 30px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 8px;
  position: sticky;
  top: 135px;
}

aside form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

aside form input,
aside form textarea {
  padding: 10px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid gainsboro;
}

aside form textarea {
  resize: none;
}

aside form button {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  color: var(--primary-100);
  transition: all 0.3s ease;
  border-radius: 8px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

aside form button:hover {
  background-color: var(--primary-100);
  color: var(--primary-color);
}

/* STICKY FORM END */

/* CONTACT FORM START */

.contact-form {
  padding: 30px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 8px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid gainsboro;
  border-radius: 8px;
}

.contact-form form button {
  display: inline-block;
  padding: 10px 60px;
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  color: var(--primary-100);
  transition: all 0.3s ease;
  border-radius: 8px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.contact-form form button:hover {
  background-color: var(--primary-100);
  color: var(--primary-color);
}

/* CONTACT FORM END */

/* CONTACT PAGE START */

.contact-page .info-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 15px 0px 15px 60px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  background-color: var(--primary-100);
  color: var(--primary-color);
  border-radius: 8px;
  font-size: 18px;
  position: relative;
  margin-bottom: 30px;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.contact-page .info-box:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.contact-page .info-box .title {
  color: var(--primary-900);
  font-weight: 600;
}

.contact-page .info-box .info {
  color: gray;
}

.contact-page .info-box i {
  background-color: var(--primary-color);
  color: var(--primary-100);
  width: 50px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
}

.contact-page .btn-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .contact-page .btn-wrapper {
    flex-direction: column;
    gap: 10px;
  }
}

/* CONTACT PAGE END */

/* FAQ SECTION START */

.bottom-category-page .content-wrapper .faq-list {
  list-style: none;
  padding-left: 0px !important;
}

.faq {
  margin: 60px 0;
}

.faq-item {
  margin-bottom: 15px;
  color: var(--primary-900);
  color: var(--primary-900);
  border-bottom: 1px solid var(--primary-900);
  padding: 10px;
  padding: 10px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 12px 0px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: bold;
}

.faq-question i {
  font-size: 24px;
}

.faq-answer {
  height: 0;
  overflow: hidden;
  opacity: 0;
  color: var(--primary-900);
}

/* ikon dönüş animasyonları */
@keyframes rotateOpen {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateClose {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}

/* FAQ SECTION END */



/* REFERENCES PAGE START */

.references-box {
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  margin-bottom: 30px;
  padding: 30px;
  height: 90%;
  border-radius: 8px;
}

.references-box:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* REFERENCES PAGE END */

/* HR PAGE START */

.hr-page .content-wrapper {
  box-shadow: none;
}

.hr-page .form-item {
  margin-bottom: 8px;
}

.hr-page .form-item input,
.hr-page .form-item textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid gainsboro;
  border-radius: 8px;
}

.cv-form {
  border: 1px solid gainsboro;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 10px;
}

.cv-form input {
  border: none !important;
  padding: 3px !important;
}

.hr-page .btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .hr-page .btn-wrapper {
    flex-direction: column;
    gap: 10px;
  }
}

.hr-page .hr-btn {
  padding: 10px 40px;
  background-color: var(--primary-color);
  color: var(--primary-100);
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: all 0.3s ease;
}

.hr-page .hr-btn:hover {
  background-color: var(--primary-100);
  color: var(--primary-color);
}

.hr-page .form-item span {
  font-weight: 600;
}

/* HR PAGE END */

/* FOOTER STICKY MENU START */

.footer-sticky {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: black;
  position: fixed;
  z-index: 8;
  width: 100%;
  bottom: 0;
  padding: 0 0.5rem 1.15rem 0.5rem;
  border-top-left-radius: 2.15rem;
  border-top-right-radius: 2.15rem;
  border-top: 6px solid var(--primary-color);
}

@media (max-width: 992px) {
  .footer-sticky {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.footer-sticky .sticky-box {
  width: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
}

.footer-sticky .sticky-box .icon {
  height: 48px;
  width: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: transparent;
}

.footer-sticky .sticky-box .text {
  font-size: 14px;
  color: white;
  text-align: center;
}

@media (max-width: 568px) {
  .footer-sticky .sticky-box .text {
    font-size: 10px;
  }
}

.footer-sticky .top-box .icon::before {
  content: "";
  position: absolute;
  height: 66px;
  width: 66px;
  border: 1px solid white;
  border-radius: 50%;
  opacity: 0.5;
}

.footer-sticky .top-box .icon::after {
  content: "";
  position: absolute;
  height: 56px;
  width: 56px;
  border: 1px solid white;
  border-radius: 50%;
  opacity: 0.75;
}

.footer-sticky .sticky-box .icon i {
  font-size: 22px;
  color: white;
}

.footer-sticky .top-box .icon i {
  font-size: 22px;
  color: white;
}

.footer-sticky .top-box {
  -webkit-transform: translateY(-1.5rem);
  transform: translateY(-1.5rem);
}

.footer-sticky .top-box .text {
  -webkit-transform: translateY(1.5rem);
  transform: translateY(1.5rem);
  text-align: center;
}

.footer-sticky .top-box .icon {
  background: var(--primary-color);
  border-radius: 50%;
  position: relative;
}

/* FOOTER STICKY BUTTON END */

/* ABOUT PAGE START */
.about-page-img-wrapper {
  position: sticky;
  top: 130px;
  
}
.about-page-img {
  position: relative;
}

@media (max-width:992px) {
  .about-page-img {
    margin-bottom: 50px;
  }
}

.about-page-img::after {
  content: "";
  position: absolute;
  left: -10px;
  bottom: -10px;
  height: 120px;
  width: 120px;
  background-color: var(--primary-color);
  z-index: -1;
  border-radius: 10px;
}

.about-page-img::before {
  content: "";
  position: absolute;
  right: -10px;
  top: -10px;
  height: 120px;
  width: 120px;
  background-color: var(--primary-color);
  z-index: -1;
  border-radius: 10px;
}

.about-page-img img {
  width: 100%;
  border-radius: 8px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.parallax {
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  padding: 175px 0;
}

@media (max-width:992px) {
  .parallax {
    display: none;
  }
}

.parallax::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width:992px) {
  .about-page-bottom {
    padding: 0 0 60px 0;
  }
}

.about-page-bottom .col-lg-6 .content-wrapper {
  height: 95%;
}

@media (max-width:992px) {
  .about-page-bottom .col-lg-6 .content-wrapper {
    height: auto;
    margin-bottom: 40px;
  }
}

/* ABOUT PAGE END */



/* WHATSAPP FIXED BUTTON START */

.whatsapp-icon {
  text-align: center;
  display: inline-block;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 3;
}

@media (max-width: 992px) {
  .whatsapp-icon {
    display: none;
  }
}

.whatsapp-modal {
  width: 220px;
  text-align: center;
  background-color: white;
  padding: 10px 20px;
  border-radius: 50px;
  color: black;
  font-size: 18px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  position: relative;
  z-index: 2;
  margin-bottom: 15px;
  animation: floatUpDown 2s ease-in-out infinite;
}

@keyframes floatUpDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.whatsapp-modal::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid white;
}

.whatsapp-modal b {
  font-size: 18px;
}

.whatsapp-img {
  position: relative;
  display: inline-block;
}

.whatsapp-img img {
  width: 70px;
  border-radius: 50%;
}

.whatsapp-img::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 255, 0, 0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 1.5s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }

  70% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }

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

/* WHATSAPP FIXED BUTTON END */


/* ACTIVITY SECTION START */

.activity .container {
  position: relative;
}

.activity .activitySlider .box-wrapper {
  padding: 0 !important;
}

.activity .swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, -30px);
}

.activity .swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, -30px);
}

.activity .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  font-size: 22px;
  background-color: transparent;
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.activity .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  font-size: 22px;
  background-color: transparent;
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  padding: 10px 15px;
  border-radius: 8px;
  border: 1px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width:992px) {
  .activitySlider {
    padding: 60px 80px !important;
  }
}



/* ACTIVITY SECTION END */


/* ERROR PAGE START */

@media (max-width:992px) {
  .error-left {
    margin-bottom: 30px;
  }
}

.error-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.error-right .title {
  font-size: 40px;
  font-weight: bold;
}

@media (max-width:992px) {
  .error-right .title{
    font-size: 27px;
  }
}
 
.error-right .desc {
  margin-bottom: 15px;
}

.error-right .home-link {
  padding: 15px 60px;
  background-color: var(--primary-color);
  color: var(--primary-100);
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}


/* ERROR PAGE END */