:root {
  --link-color: #3d3d3d;
  --wp-bg: #24b259;
  --contact-us-bg: #2695d5;
  --white: #fff;
  --black: #000;
  --body-bg: #f9f9f9;
  --secondary: #df1313;
}

/* Varsayılan sıfırlama (reset) kuralları */
html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
}
a {
  text-decoration: none !important;
}

/*HEADER*/
header {
  background-color: var(--white);
}

.header-top .left {
  background-color: var(--link-color);
  padding: 8px 0 8px 120px;
  width: 25%;
  flex-shrink: 0 !important;
}

.header-top .left .inner {
  padding: 0 !important;
}

.header-top {
  display: flex;
}

.header-top .left a {
  display: flex;
}

.header-top .left i {
  color: var(--white);
  padding-right: 8px;
}

.header-top .left span {
  color: var(--white);
  font-family: Rubik;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.803px;
}

.header-top .left a {
  color: var(--white);
  font-family: Rubik;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.803px;
}

.header-top .right {
  background-color: var(--contact-us-bg);
  padding: 8px 120px 8px 21px;
  width: 75%;
  display: flex;

  align-items: center;
  justify-content: space-between;

  flex-shrink: 1 !important;
}

.header-top .right i {
  color: var(--white);
  font-size: 16px;
}

.header-top .right span {
  color: var(--white);
  font-family: Rubik;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.803px;
}

.header-top .right .socials {
  display: flex;
  gap: 8px;
}

.dropdown-menu {
  display: none !important;
  position: absolute;
  left: -4px;
  background-color: var(--white);
  list-style: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1;
  gap: 0 !important;
  opacity: 0;
  transition: opacity 0.2s ease-in-out !important;
  border-radius: 12px;
}

.dropdown-menu li {
  padding: 8px 0 !important;
}

.dropdown:hover .dropdown-menu {
  align-items: center;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.2s ease-in-out !important;
  width: max-content;
  padding: 16px;
}

.dropdown-menu li a {
  color: var(--a-link-color);
  font-family: Roboto;
  font-size: 16.893px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.header-middle {
  padding: 30px 0 8px 0;
  display: flex;
  justify-content: space-between;
  background-color: var(--white);
}

.header-contacts {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 32px;
}

.header-contacts li {
  color: #3d3d3d;
  font-family: Rubik;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.84px;
  display: flex;
  list-style: none;
  align-items: center;
  gap: 8px;
}

.header-contacts li a {
  color: #3d3d3d;
  font-family: Rubik;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.84px;
}

.header-bottom {
  background-color: var(--white);
  padding: 10px 0 16px 0;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 23px;
  align-items: center;
  justify-content: center;
}

nav ul li a {
  color: #3d3d3d;
  font-family: Rubik;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration-line: underline;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out !important;
}

header .hamburger {
  display: none !important;
}

.sidenav {
  display: none;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: center !important;
}

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

  .sub-header-inner {
    display: flex;
    justify-content: flex-start;
    padding: 10px;
  }

  .navbar {
    display: none !important;
  }

  .nav-bg {
    display: none;
  }

  .header-inner nav ul {
    position: unset;
    flex-direction: column !important;
  }

  .header-logo {
    padding: 0 !important;
  }

  header .hamburger {
    display: block !important;
  }

  .sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    background-color: var(--contact-us-bg);
    z-index: 99;
    top: 0;
    right: 0;
    overflow-x: hidden;
    transition: 0.5s !important;
    padding-top: 60px;
    display: block;
  }

  .sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    color: var(--white);
    display: block;
    transition: 0.3s !important;
  }

  .sidenav a:hover {
    color: #f1f1f1;
  }

  .sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }

  @media screen and (max-height: 450px) {
    .sidenav {
      padding-top: 15px;
    }
    .sidenav a {
      font-size: 18px;
    }
  }

  .accordion-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease !important;
  }

  .accordion-menu.show {
    max-height: 500px;
  }

  .accordion > i {
    transition: transform 0.3s ease-in-out !important;
  } 

  .accordion.open > i {
    transform: rotate(180deg);
  }
}

@media (max-width: 576px) {
  .sub-header-inner .sub-header-right a {
    display: none;
  }
}

/*HEADER*/

/*BREADCRUMBS*/
.breadcrumbs {
  background-image: url(../design/breadcrumbs.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  height: 270px;
}

.breadcrumbs a {
  color: #333;
  text-align: center;
  font-family: Rubik;
  font-size: 22.376px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.breadcrumbs span {
  color: #333;
  text-align: center;
  font-family: Rubik;
  font-size: 22.376px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.breadcrumbs-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0 38px 0;
  gap: 12px;
}
/*BREADCRUMBS*/

/*FOOTER*/
.service-form {
  padding: 66px 0 105px 0;
}

.service-form form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 36px;
  width: 70%;
  padding: 0 16px;
}

.service-form .form-title {
  color: #242629;
  font-family: Rubik;
  font-size: 32.302px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}

form img {
  width: 102px;
  height: 5.273px;
}

.form-button {
  all: unset;
}

.button-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.form-button {
  text-align: center;
  color: #fff;
  font-family: Rubik;
  font-size: 16.156px;
  font-weight: 400;
  line-height: normal;
  background: var(--contact-us-bg);
  box-shadow: 0px 3.579px 3.579px 0px rgba(0, 0, 0, 0.25);
  width: 153px;
  height: 35.451px;
}

.wrapper {
  display: flex;
  gap: 24px;
}

footer {
  background-image: url(../design/footer-bg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  padding: 36px 0 18px 0;
  position: relative;
}

footer .footer-inner {
  display: flex;
  gap: 36px;
}

.col-title {
  color: #3d3d3d;
  font-family: Rubik;
  font-size: 21.681px;
  font-style: normal;
  font-weight: 700;
  line-height: 27.101px; /* 125% */
  padding-bottom: 19px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  width: 30%;
  gap: 6px;
}

.footer-col a {
  color: #3d3d3d;
  font-family: Rubik;
  font-size: 16.261px;
  font-style: normal;
  font-weight: 400;
  line-height: 27.101px; /* 166.667% */
  transition: all 0.3s ease-in-out !important;
}

.footer-col a:hover {
  color: var(--contact-us-bg);
}

footer .footer-inner .middle {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 34px;
  margin-right: 75px;
}

.footer-desc {
  color: #3d3d3d;
  text-align: center;
  font-family: Rubik;
  font-size: 14.403px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.575px; /* 156.733% */
  letter-spacing: -0.216px;
  padding-top: 24px;
}

.col-part {
  display: flex;
  width: 100%;
  text-wrap: nowrap;
}

.col-part span {
  gap: 8px;
  display: flex;
  text-wrap: nowrap;
  align-items: center;
  justify-content: center;
  color: #3d3d3d;
  font-family: Rubik;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 25px; /* 166.667% */
}

.col-detail {
  padding-left: 12px;
}

footer .bottom {
  display: flex;
  justify-content: space-between;
}

.copyright {
  color: #3d3d3d;
  font-family: Rubik;
  font-size: 15px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.border-footer {
  width: 100%;
  height: 2px;
  background-color: var(--contact-us-bg) !important;
}

.socials-wrapper {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding-top: 12px;
}

.socials-wrapper .socials {
  text-wrap: nowrap;
  padding: 0 16px;
  gap: 12px !important;
}

.socials-wrapper .socials i {
  transition: all 0.3s ease-in-out !important;
}

.socials-wrapper .socials i:hover {
  color: var(--contact-us-bg);
}

.socials-wrapper .socials i {
  color: #3d3d3d;
  font-size: 20px;
}

.biz-kimiz-left {
  position: absolute;
  left: 0;
  z-index: 1;
}

.biz-kimiz-right {
  position: absolute;
  right: 0;
  z-index: 1;
}

.biz-kimiz-right-2 {
  position: absolute;
  right: 0;
  bottom: -50%;
  z-index: 1;
}
/*FOOTER*/

/*HOME*/

.home-hero {
  height: calc(100vh - 203px);
  width: 100vw;
  position: relative;
}

.home-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-detail {
  position: absolute;
  right: 20%;
  top: 50%;
  transform: translateX(50%);
}

.hero-title,
.hero-title-2 {
  color: #fff;
  font-family: Rubik;
  font-size: 4vw;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 19px 19px 19px 39px;
  position: relative;
}

.hero-title-2 {
  text-align: right;
}

.hero-title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: -1;
  background-color: rgba(45, 159, 225, 1);
  filter: blur(2.264px) !important;
  clip-path: polygon(6% 0, 100% 3%, 100% 96%, 0% 100%);
}

.hero-title-2::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 65%;
  width: 70%;
  height: 120%;
  transform: translate(-50%, -50%);
  z-index: -1;
  background-color: #3d3d3d;
  filter: blur(2.264px) !important;
  clip-path: polygon(6% 0, 100% 0, 100% 96%, 0% 100%);
}

.boxes-hero {
  padding: 30px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  gap: 21px;
  width: 100%;
  position: relative;
  z-index: 999;
}

.boxes-hero .box {
  border-radius: 10.067px;
  background: #fff;
  box-shadow: 0px 2.013px 3.02px 0px rgba(0, 0, 0, 0.27);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 172.149px;
  position: relative;
  transition: all 0.3s ease-in-out !important;
  width: 100%;
}

.odd {
  margin-top: -100px;
}

.boxes-hero .box-title {
  color: #3d3d3d;
  font-family: Rubik;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 146.187%; /* 38.009px */
  position: absolute;
  bottom: 22px;
  transition: all 0.3s ease-in-out !important;
  left: 50%;
  transform: translateX(-50%);
    text-wrap: nowrap;
}

.boxes-hero .musluk-hover {
  display: none;
  transition: all 0.1s ease-in-out !important;
}

.boxes-hero .musluk {
  transition: all 0.3s ease-in-out !important;
}

.boxes-hero .box:hover {
  background-color: var(--contact-us-bg);
}

.boxes-hero .box:hover .musluk-hover {
  display: block;
}

.boxes-hero .box:hover .musluk {
  display: none;
}

.boxes-hero .box:hover .box-title {
  color: var(--white) !important;
}

.who-we-are {
  padding: 125px 0;
  display: flex;
  justify-content: space-between;
  position: relative !important;
}

.who-we-are .left .left-image {
  max-width: 520px;
  max-height: 347px;
  position: relative;
}

.who-we-are .left .left-image::after {
  content: "";
  position: absolute;
  top: -7px;
  left: -7px;
  width: 70%;
  height: 70%;
  border-radius: 5.461px;
  background: #2695d5;
  z-index: -1;
}

.who-we-are .left .left-image img {
  width: 100%;
  height: 100%;
}

.who-we-are .right {
  width: 70%;
  padding-left: 60px;
}

.who-we-are .right .title {
  color: #242629;
  font-family: Roboto;
  font-size: 35.511px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.776px;
}

.who-we-are .right .title-bottom {
  margin-top: -20px;
}

.who-we-are .right .desc {
  color: #333;
  font-family: Roboto;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 32.5px; /* 216.667% */
  letter-spacing: 0.75px;
}

.our-services .title {
  color: #242629;
  font-family: Rubik;
  font-size: 32.302px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: center;
}

.our-services .title-bottom-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 8px;
  margin-left: -105px;
}

.our-services {
  padding: 55px 0 105px 0;
}

.our-services .box {
  width: 100%;
  height: 417px;
}

.our-services .box .box-image {
  width: 100%;
  height: 226px;
  object-fit: cover;
}

.our-services .box .box-image img {
  width: 100%;
  height: 226px;
  filter: grayscale(0.8);
  transition: all 0.3s ease-in-out !important;
}

.our-services .box .box-detail {
  background: #fff;
  box-shadow: 0px 3.748px 3.748px 0px rgba(0, 0, 0, 0.25);
  padding: 18px 34px;
  text-align: center;
  height: 155px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;

}

.our-services .box .box-detail-title {
  color: #333;
  font-family: Rubik;
  font-size: 26.238px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.our-services .box .box-detail-desc {
  color: #3d3d3d;
  text-align: center;
  font-family: Rubik;
  font-size: 12.146px;
  font-style: normal;
  font-weight: 400;
  line-height: 21.589px;
  letter-spacing: 0.607px;
  padding: 8px 0 21px 0;
}

.our-services .box .box-detail-more {
  all: unset;
}

.our-services .box .box-detail-more {
  color: #fff;
  font-family: Rubik;
  font-size: 17.1px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 4px 16px;
  background: #333;
  transition: all 0.3s ease-in-out !important;
  cursor: pointer;
  width: max-content;
}

.our-services .box .box-detail-more:hover {
  background-color: var(--contact-us-bg);
}

.swiper-slide-active .box-image img {
  filter: grayscale(0) !important;
}

.swiper-slide-active .box {
  border: 2px solid purple !important;
}

.diff {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  overflow-x: hidden;
  position: relative;
}

.swiper-container {
  width: 100%;
  box-sizing: border-box;
}

.swiper-wrapper {
  display: flex;
  align-items: center;
}

.how-we-work {
  display: flex;
  min-height: 361px;
}

.left {
  flex: 0 0 40%; /* Resim kısmı genişliğin %40'ını kaplar */
  display: flex;
  align-items: center; /* Resmi dikey olarak ortalar */
  justify-content: center; /* Resmi yatay olarak ortalar */
  overflow: hidden; /* Taşan kısımları gizler */
}

.left .image img {
  max-width: 100%;
  height: auto;
  object-fit: cover; /* Resmi kapsayacak şekilde kırpar */
}

.how-we-work .check-marks {
  background-color: var(--link-color);
  position: relative;
  padding: 34px 0 72px 54px !important;
  flex: 0 0 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.how-we-work .check-marks .bg {
  position: absolute;
  right: 0;
  bottom: 0;
}

.how-we-work-title {
  color: #fff;
  font-family: Rubik;
  font-size: 27px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.how-we-work {
  display: flex;
}

.inner {
  padding-top: 45px;
  gap: 15px;
}

.check-title {
  color: #fff;
  font-family: Rubik;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 21.589px; /* 98.134% */
  letter-spacing: 1.1px;
}

.check img {
  margin-right: 10px; /* İkon ile metin arasındaki boşluk */
}

.bg {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1; /* Arka plan görüntüsünü içeriklerin arkasına gönder */
  opacity: 0.1; /* Arka plan görüntüsünü hafifçe şeffaflaştır */
}

.bg img {
  max-width: 100%;
  height: auto;
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1; /* Başlangıçta tam görünür olmalı */
  transition: opacity 0.5s ease !important;
}

#preloader:before {
  content: "";
  position: absolute;
  background: url("../design/Water-dripping.gif") no-repeat center center;
  background-size: contain;
  width: 100px;
  height: 100%;
}

.whatsapp {
  background-color: var(--wp-bg);
  width: 94px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
  font-family: Roboto;
  font-size: 13.33px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  gap: 7px;
  transition: all 0.3s ease-in-out !important;
  z-index: 9998;
  position: relative;
}

.whatsapp:hover,
.contact-us-fixed:hover {
  background-color: #df1313 !important;
  scale: 1.1 !important;
  z-index: 9999;
}

.contact-us-fixed {
  background-color: var(--contact-us-bg);
  width: 94px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white) !important;
  font-family: Roboto;
  font-size: 13.33px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  gap: 7px;
  transition: all 0.3s ease-in-out !important;
  z-index: 9998 !important;
  position: relative;
}

.fixed-socials {
  position: fixed;
  right: 0px;
  top: 65%;
  z-index: 9999;
}
.swiper-slide {
  flex: 0 0 auto;
  width: calc(100% / 3);
  box-sizing: border-box;
  transition: transform 0.3s ease !important;
}

.swiper-button-next,
.swiper-button-prev {
  width: 35px !important;
  height: 35px !important;
  background-color: var(--contact-us-bg);
  border-radius: 50%;
}

.swiper-button-prev svg,
.swiper-button-next svg {
  width: 10px !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  display: none !important;
}
/*HOME*/

/*ABOUT US*/
.about-us {
  padding: 88px 0 78px 0;
  display: flex;
  justify-content: space-between;
}

.about-us-image {
  max-width: 481px;
  max-height: 666px;
  position: relative;
  z-index: 2;
}

.about-us-image img {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.about-us-image::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -7px;
  width: 70%;
  height: 36%;
  border-radius: 5.461px;
  background: #2695d5;
  z-index: -1;
}

.about-us-details {
  padding-left: 40px;
}

.about-us-details .about-us-title {
  color: #242629;
  font-family: Roboto;
  font-size: 35.511px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 1.776px;
}

.about-us-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 22px;
}

.about-us-desc {
  color: #333;
  font-family: Roboto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 32.5px; /* 203.125% */
  letter-spacing: 0.8px;
}

.checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 40px;
}

.check {
  color: #333;
  font-family: Roboto;
  font-size: 16.563px;
  font-style: normal;
  font-weight: 400;
  line-height: 26.351px; /* 159.091% */
  margin-bottom: 30px;
  text-wrap: nowrap;
  display: flex;
  gap: 10px;
}

.stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stats-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.stats-item-info .count {
  color: #242629;
  font-family: Roboto;
  font-size: 29.865px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
  flex-direction: column;
}

.stat {
  color: #242629;
  font-family: Roboto;
  font-size: 29.865px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  display: flex;
}

.stats-item-info span {
  color: #333;
  font-family: Roboto;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.slogan-title {
  color: #242629;
  font-family: Roboto;
  font-size: 34px;
  font-style: italic;
  font-weight: 700;
  line-height: 55px; /* 161.765% */
  letter-spacing: 1.02px;
  text-align: center;
  padding-bottom: 44px;
}

.van {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.van-title {
  color: #333;
  font-family: Roboto;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 26.351px; /* 109.796% */
  letter-spacing: 1.2px;
  text-decoration-line: underline;
}
/*ABOUT US*/

/*SERVICES*/
.our-services {
  padding: 60px 0 90px 0;
  position: inherit;
}

.our-services-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 70px;
}

.our-services-box {
  flex: 0 1 calc(33.333% - 70px);
  height: 466.487px;
  box-sizing: border-box;
}

@media screen and (max-width: 992px) {
  .our-services-box {
    flex: 0 1 calc(50% - 35px);
  }
}

@media screen and (max-width: 768px) {
  .our-services-box {
    flex: 0 1 100%;
    margin-bottom: 20px;
  }
}

.our-services-box-image {
  width: 100%;
  height: 252px;
}

.our-services-box-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-services-detail {
  background: #fff;
  box-shadow: 0px 4.475px 2.461px -1.119px rgba(0, 0, 0, 0.25);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  height: 168px;
  text-align: center;
}

.our-services-detail-title {
  color: #333;
  font-family: Rubik;
  font-size: 29.352px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.our-services-detail-desc {
  color: #3d3d3d;
  text-align: center;
  font-family: Rubik;
  font-size: 13.588px;
  font-style: normal;
  font-weight: 400;
  line-height: 24.152px; /* 177.746% */
  letter-spacing: 0.679px;
  padding: 10px 0;
}

.our-services-button {
  all: unset;
}

.our-services-button {
  background-color: #333333;
  width: 40.969px;
  height: 40.969px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.our-services-button:hover {
  background-color: var(--contact-us-bg);
}

.our-services-button i {
  color: var(--white);
  font-size: 20px;
}
/*SERVICES*/

/*SERVICE DETAIL*/
.service-detail {
  padding: 52px 0 90px 0;
  min-height: 369px;
  display: flex;
  position: inherit;
}

.service-detail-image {
  width: 50%;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-detail-info {
  background: #fff;
  box-shadow: 0px 4.475px 2.461px -1.119px rgba(0, 0, 0, 0.25);
  padding: 36px;
  width: 50%;
}

.service-detail-info-title {
  color: #333;
  font-family: Rubik;
  font-size: 29.352px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.service-detail-info-desc {
  color: #3d3d3d;
  font-family: Rubik;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 24.152px;
  letter-spacing: 0.65px;
  padding: 15px 0 30px 0;
}

.service-checks {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-checks-item {
  color: #3d3d3d;
  font-family: Rubik;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 24.152px; /* 201.263% */
  letter-spacing: 0.6px;
  display: flex;
  gap: 13px;
}
/*SERVICE DETAIL*/

/*BLOG*/

.blog {
  padding: 60px 0 110px 0;
  display: flex;
  flex-direction: column;
  gap: 36px;
  position: inherit;
}

.blog-container {
  border-radius: 13px;
  background: rgba(253, 253, 253, 0.55);
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 32px 24px;
  display: flex;
}

.blog-image {
  width: 100%;
  max-width: 496.5px;
  aspect-ratio: 496.5 / 331;
}

.blog-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.blog-detail {
  padding-left: 50px;
}

.blog-desc-container {
  display: flex;
  flex-direction: column;
  gap: 19px;
  padding-top: 40px;
}

.blog-title {
  color: #333;
  font-family: Rubik;
  font-size: 29.352px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
/*BLOG*/

/*CONTACT*/
.contact-us {
  display: flex;
  padding: 61px 0 110px 0;
}

.contact-boxes {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  transition: all 0.3s ease-in-out !important;
}

.contact-box {
  border-radius: 3.303px;
  border: 1.101px solid #000;
  background: #fff;
  box-shadow: 0px 4.404px 4.404px 0px rgba(0, 0, 0, 0.25);
  position: relative;
  padding: 34px;
  display: flex;
  align-items: center;
  transition: all 0.3s ease-in-out !important;
}

.contact-box:hover {
  background-color: #df1313 !important;
}

.contact-box:hover i {
  color: var(--white) !important;
}

.contact-box:hover .contact-box-title {
  color: var(--white) !important;
}

.contact-box:hover .contact-box-desc {
  color: var(--white) !important;
}

.contact-box-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  text-align: center;
  width: 105px;
}

.contact-box i {
  font-size: 40px;
  color: var(--link-color);
}

.contact-box .contact-box-title {
  color: #3d3d3d;
  font-family: Roboto;
  font-size: 17.851px;
  font-style: normal;
  font-weight: 400;
  line-height: 40.165px; /* 225% */
  text-wrap: nowrap;
}

.contact-box .contact-box-desc {
  color: #333;
  text-align: center;
  font-family: Roboto;
  font-size: 15.415px;
  font-style: normal;
  font-weight: 400;
  line-height: 28.629px;
  /* padding-left: 24px; */
  width: 100%;
}

.contact-box::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 4px;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: #df1313 !important;
}

.contact-us-right {
  width: 60%;
  padding-left: 44px;
}

.form-grup {
  display: flex;
  gap: 12px;
  padding-bottom: 30px;
}

input,
textarea {
  all: unset; /* Resets almost all properties, including margins, padding, and more */
  box-sizing: border-box; /* Ensures that padding and border are included in the element's width and height */
  appearance: none; /* Removes default styles like rounded corners on some inputs */
  -webkit-appearance: none; /* For Safari and Chrome */
  -moz-appearance: none; /* For Firefox */
  width: 100%;
  padding-left: 10px;
  border-radius: 7px;
  border: 0.35px solid #6b6b6b;
  background: #fcfcfc;
  height: 47px;
}

input::placeholder,
textarea::placeholder {
  color: #a9aeb3;
  font-family: Rubik;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 55px; /* 458.333% */
}

input:focus,
textarea:focus {
  border-color: #df1313;
}

textarea {
  width: 100%;
  padding-left: 10px;
  border-radius: 7px;
  border: 0.35px solid #6b6b6b;
  background: #fcfcfc;
  min-height: 150px !important;
}

.send {
  all: unset;
  color: #fff;
  font-family: Rubik;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.304px; /* 139.4% */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4.461px;
  background: #2695d5;
  width: 182px;
  height: 51px;
}

.form-title {
  color: #333;
  font-family: Rubik;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 55px; /* 229.167% */
}

.checkbox-container {
  display: flex;
  align-items: center;
  color: #333;
  font-family: Rubik;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  /*   line-height: 55px; /* 458.333% */
  text-decoration-line: underline;
}

.checkbox-input {
  appearance: none;
  -webkit-appearance: none;
  width: 19px;
  height: 19px;
  border: 1px solid #ccc;
  border-radius: 2px;
  margin-right: 8px;
  position: relative;
  cursor: pointer;
}

.checkbox-input:checked {
  background-color: #007bff;
  border-color: #007bff;
}

.checkbox-input:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-label {
  cursor: pointer;
  text-decoration: underline;
  color: #333;
}

.checkbox-label:hover {
  text-decoration: none;
}

/*CONTACT*/

@media screen and (max-width: 1200px) {
  .footer-inner {
    flex-wrap: wrap !important;
    padding: 90px 0 0 60px !important;
    align-items: center;
  }

  .about-us {
    flex-direction: column;
    align-items: center;
    justify-items: center;
    gap: 24px;
  }
}

@media screen and (max-width: 996px) {
  .blog-container {
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    align-items: center;
  }

  .blog-detail {
    padding-left: 0;
  }

  .blog {
    padding-left: 16px;
    padding-right: 16px;
  }

  .wrapper {
    flex-direction: column;
  }

  .service-form form {
    width: 100% !important;
  }

  .map {
    width: 100% !important;
    height: 400px;
    padding: 0 16px;
  }

  .who-we-are {
    flex-direction: column;
    gap: 24px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .right {
    padding-left: 0 !important;
  }

  .header-contacts li .detail {
    display: none;
  }

  .header-top .left {
    padding: 8px 0 8px 16px;
  }

  .header-top .left .inner {
    display: none;
  }

  .header-top .right {
    align-items: flex-end;
    justify-content: flex-end;
  }

  .header-top .right span {
    display: none;
  }

  .header-contacts {
    display: none;
  }

  .header-middle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.accordion-menu {
  list-style: none;
}

@media screen and (max-width: 768px) {
  .contact-us {
    flex-direction: column-reverse;
    gap: 24px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .contact-us-right {
    width: 100%;
    padding: 0;
  }

  .our-services {
    padding-right: 16px;
    padding-left: 16px;
  }

  .service-detail {
    flex-direction: column;
    padding-right: 16px;
    padding-left: 16px;
  }

  .service-detail-image {
    width: 100%;
  }

  .service-detail-info {
    width: 100%;
  }

  .about-us {
    padding-right: 16px;
    padding-left: 16px;
  }

  .how-we-work {
    flex-direction: column;
  }
}

@media screen and (max-width: 576px) {
  .stats {
    flex-direction: column;
    gap: 24px;
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .checks {
    display: flex !important;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .about-us-title {
    font-size: 24px;
  }

  .boxes-hero {
    flex-direction: column;
    padding-right: 16px;
    padding-left: 16px;
  }

  .odd {
    margin: 0 !important;
  }

  .footer-col{
    width: 100%;
  }

  .col-part{
    text-wrap: wrap;
  }
}

@media screen and (max-width: 465px) {
  .footer-inner {
    flex-direction: column !important;
    align-items: flex-start;
    padding: 90px 0 0 60px !important;
  }

  .hero-detail {
    right: 45% !important;
  }
}

.footer-logo,
.logo {
  width: 100px !important;
}
.footer-logo img,
.logo img {
  width: 100px !important;
}
