/* Base */
:root {
  --black-100: #000000;
  --gray-100: #899198;
  --white-100: #ffffff;
  --white-200: #f4f4f4;
  --white-300: #f9f9fa;
  --white-400: #e5e5e5;
  --blue-100: #4ca0e8;
  --bg-blue-100: rgba(76, 160, 232, 0.05);
  --green-100: #67c06a;
  --shadow-light: rgba(99, 99, 99, 0.2) 0px 0px 8px 0px;
  --shadow-bot: rgba(99, 99, 99, 0.15) 0px 3px 5px 0px;
}

* {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  background-color: var(--white-100);
  font-family: 'DM Sans', sans-serif;
}

img {
  object-fit: cover;
}

a,
a:hover,
a:focus,
a:active {
  color: inherit;
  text-decoration: none;
}

ul,
li {
  margin: 0 !important;
  padding: 0 !important;
}

li {
  list-style-type: none;
}

input,
textarea,
select {
  outline: none;
  background-color: #fff !important;
}

input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.custom-scroll::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  border-radius: 0px;
  background-color: #fff;
}

.custom-scroll::-webkit-scrollbar {
  width: 12px;
  background-color: #fff;
}

.custom-scroll::-webkit-scrollbar-thumb {
  border-radius: 0px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  background-color: rgba(76, 160, 232, 0.5);
}

a {
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.transition-color {
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.custom-container-0 {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1920px;
}

.custom-container-1 {
  padding-left: 88px;
  padding-right: 88px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1920px;
}

.custom-container-2 {
  padding-left: 240px;
  padding-right: 240px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1920px;
}

.custom-container-3 {
  padding-left: 400px;
  padding-right: 400px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1920px;
}

.title-component-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
}

.title-component {
  color: var(--blue-100);
  font-size: 35px;
  text-align: center !important;
}

.title-line-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.title-line-short {
  height: 2px;
  width: 15px;
  background-color: var(--blue-100);
}
.title-line-long {
  height: 2px;
  width: 74px;
  background-color: var(--blue-100);
}

/* Call Button */

.call-container {
  z-index: 50;
  display: flex;
  align-items: center;
  position: fixed;
  right: 30px;
  bottom: 30px;
  background-color: var(--blue-100);
  color: var(--white-100);
  padding: 20px;
  border-radius: 30px;
  border: 2px solid var(--white-100);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 0px 8px 0px;
  gap: 15px;
  height: 65px;
  transition-property: transform;
  transition-duration: 300ms;
}

.call-container:hover,
.call-container:active,
.call-container:focus {
  color: var(--white-100);
}

.call-container:hover {
  transform: scale(1.05);
}

@media only screen and (max-width: 600px) {
  .call-container {
    width: 60%;
    left: 50%;
    right: inherit;
    transform: translate(-50%);
  }

  .call-container:hover {
    transform: translate(-50%);
  }
}

@media only screen and (max-width: 450px) {
  .call-container {
    width: 90%;
  }

  .call-text-container {
    font-size: clamp(14px, 3vw, 17px);
  }
}

@media only screen and (max-width: 270px) {
  .call-divider,
  .call-icon-container {
    display: none;
  }

  .call-text-container {
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .call-container {
    height: auto;
    min-width: 65px;
    padding: 10px 5px;
  }
}

.call-divider {
  height: 45px;
  width: 1px;
  background-color: var(--white-100);
}

.call-icon-container {
  font-size: 25px;
}

.call-text-container {
  display: flex;
  flex-direction: column;
}

.call-container p {
  margin: 0;
}

/* Top Header */

.top-header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white-300);
  padding: 10px 0 10px 0;
}

.top-header-inner-container {
  display: flex;
  justify-content: space-between;
  padding-left: 88px;
  padding-right: 88px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1920px;
}

@media only screen and (max-width: 1400px) {
  .top-header-inner-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.top-header-name {
  color: var(--blue-100);
  font-weight: 600;
  font-size: 22px;
  display: flex;
  justify-content: start;
  align-items: center;
  text-wrap: nowrap;
  margin: 0;
  width: 16.66%;
}

.top-header-name:hover {
  color: var(--blue-100);
}

@media only screen and (max-width: 400px) {
  .top-header-name {
    width: 100%;
    justify-content: center;
  }
}

.top-header-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 66.66%;
}

@media only screen and (max-width: 1024px) {
  .top-header-info {
    display: none;
  }
}

.top-header-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-header-info-icon {
  color: var(--blue-100);
}

.top-header-info-text {
  color: var(--gray-100);
  font-size: 15px;
}

.top-header-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  width: 16.66%;
}

@media only screen and (max-width: 400px) {
  .top-header-social {
    display: none;
  }
}

.top-header-social-link {
  color: var(--gray-100);
  font-size: 20px;
}

.top-header-social-link:hover {
  color: var(--blue-100);
}

/* Bottom Header */
.bottom-header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  background-color: var(--white-100);
  box-shadow: var(--shadow-bot);
  opacity: 0.95 !important;
}

.bottom-header-inner-container {
  display: flex;
  justify-content: space-between;
  padding-left: 88px;
  padding-right: 88px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1920px;
}

@media only screen and (max-width: 1400px) {
  .bottom-header-inner-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.bottom-header-nav-container {
  width: 66.66%;
}

@media only screen and (max-width: 1200px) {
  .bottom-header-nav-container {
    display: none;
  }
}

.bottom-header-logo-link {
  width: 16.66%;
  max-height: 70px;
  height: 70px;
}

.bottom-header-logo-link img {
  height: 100%;
  max-height: 100%;
  max-width: 100%;
}

.bottom-header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 10px;
}

.bottom-nav-button {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 18px;
}

.bottom-nav-button:hover {
  background-color: var(--blue-100);
  color: var(--white-100);
}

.bottom-nav-active-button {
  background-color: var(--blue-100);
  padding: 8px 16px;
  color: var(--white-100);
  border-radius: 6px;
}

.bottom-nav-active-button:hover,
.bottom-nav-active-button:focus,
.bottom-nav-active-button:active {
  color: var(--white-100);
}

.bottom-header-button-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 16.66%;
}

@media only screen and (max-width: 1200px) {
  .bottom-header-button-container {
    display: none;
  }
}

.animated-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 8px 16px;
  height: fit-content;
  border: none;
  color: var(--blue-100);
  box-shadow: 0px 0px 1px 1px rgba(76, 160, 232, 0.4);
  background-color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background-color: var(--blue-100);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button span {
  position: relative;
  z-index: 1;
}

.animated-button:hover {
  color: var(--white-100);
  background-color: var(--blue-100);
  box-shadow: 0 0 20px hsla(263, 77%, 31%, 0);
}

.animated-button:hover:before {
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 1;
}

.animated-button:active {
  scale: 0.9;
}

.bottom-header-bars-container {
  width: 16.66%;
  display: none;
  justify-content: flex-end;
  align-items: center;
}

.bottom-header-bars-container i {
  box-shadow: 0px 0px 1px 1px rgba(76, 160, 232, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 26px;
  color: var(--blue-100);
  cursor: pointer;
}

.bottom-header-bars-container i:hover {
  box-shadow: 0px 0px 1px 1px rgba(76, 160, 232, 1);
  background-color: var(--blue-100);
  color: var(--white-100);
}

@media only screen and (max-width: 1200px) {
  .bottom-header-bars-container {
    display: flex;
  }
}

.offcanvas-header {
  width: 100%;
  background-color: var(--blue-100);
  color: var(--white-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-header-name {
  color: var(--white-100);
  font-weight: 600;
  font-size: 22px;
  display: flex;
  justify-content: start;
  align-items: center;
  text-wrap: nowrap;
  margin: 0;
  width: 16.66%;
}

.mobile-header-name:hover {
  color: var(--white-100);
}

.btn-close-white {
  opacity: 1 !important;
}

.offcanvas-body .nav-link {
  font-weight: 600;
  font-size: 20px;
}

.offcanvas-body .nav-link:hover {
  color: var(--blue-100);
}

/* Carousel */
.carousel-item {
  height: 600px;
}

.carousel-item img {
  position: absolute;
  top: 0;
  left: 0;
  min-height: 600px;
  object-fit: cover;
}

.carousel-icon-container {
  background-color: var(--blue-100);
  border-radius: 9999px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (max-width: 400px) {
  .carousel-icon-container-left {
    padding: 5px;
    margin-left: 30px;
  }
  .carousel-icon-container-right {
    padding: 5px;
    margin-right: 30px;
  }
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  height: 30px;
  width: 30px;
}

/* About */
.about-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-blue-100);
}

.about-inner-container {
  padding-left: 88px;
  padding-right: 88px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1920px;
  padding-top: 70px;
  padding-bottom: 140px;
  display: flex;
  justify-content: space-evenly;
}

@media only screen and (max-width: 1400px) {
  .about-inner-container {
    justify-content: space-around;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media only screen and (max-width: 1200px) {
  .about-inner-container {
    flex-direction: column;
    align-items: center;
  }
}

.about-image-container {
  position: relative;
  width: 33.33%;
}

@media only screen and (max-width: 1200px) {
  .about-image-container {
    display: none;
  }
}

.about-image-container img {
  height: 255px;
  width: 255px;
  max-height: 255px;
  max-width: 255px;
  border-radius: 55px;
  object-fit: cover;
  box-shadow: var(--shadow-light);
}

.about-image-back {
  border: 6px solid rgba(255, 255, 255, 0.5);
}

.about-image-front {
  border: 6px solid rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 150px;
  top: 150px;
}

.about-main-container {
  width: 50%;
}

@media only screen and (max-width: 1200px) {
  .about-main-container {
    width: 83.33%;
  }
}

@media only screen and (max-width: 700px) {
  .about-main-container {
    width: 100%;
  }
}

.about-content-container {
  margin-bottom: 50px;
}

.about-content-text {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--blue-100);
  text-align: justify;
}

.about-features-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.about-feature-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}

@media only screen and (max-width: 500px) {
  .about-features-container {
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 500px) {
  .about-feature-wrapper {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 15px !important;
    padding-left: 5px;
    padding-right: 5px;
  }
}

.about-feature-icon {
  font-size: clamp(24px, 2.5vw, 30px);
  color: var(--blue-100);
  border: 3px solid rgba(76, 160, 232, 0.3);
  background-color: var(--white-100);
  border-radius: 999px;
  height: 75px;
  width: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-feature-text {
  color: var(--blue-100);
  font-size: clamp(14px, 2.5vw, 18px);
  font-weight: 600;
  text-align: center;
}

.about-stats-container {
  position: absolute;
  background-color: var(--blue-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 70%;
  height: 100px;
  border-radius: 999px;
  bottom: -50px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1920px;
}

@media only screen and (max-width: 1400px) {
  .about-stats-container {
    width: 83.33%;
  }
}

@media only screen and (max-width: 700px) {
  .about-stats-container {
    width: calc(100% - 40px);
    border-radius: 10px;
    width: 95%;
  }
}

.about-stats-container p {
  color: var(--white-100);
  font-size: clamp(16px, 2.5vw, 28px);
  font-weight: 400;
  width: 33.33%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  margin: 0;
  text-align: center;
  padding: 0 8px;
}

@media only screen and (max-width: 700px) {
  .about-stats-container p {
    font-size: clamp(13px, 3vw, 28px);
  }
}

.about-stats-divider {
  width: 1px;
  height: 100%;
  background-color: var(--white-100);
}

/* Services */
.services-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.services-inner-container {
  padding-left: 88px;
  padding-right: 88px;
  width: 70%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1920px;
  padding-top: 105px;
  padding-bottom: 70px;
}

@media only screen and (max-width: 1500px) {
  .services-inner-container {
    padding-left: 0px;
    padding-right: 0px;
  }
}

@media only screen and (max-width: 1300px) {
  .services-inner-container {
    width: 88.33%;
  }
}

.services-card-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
}

.services-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-light);
  width: 31.33%;
  padding: 20px 30px 10px 30px;
  gap: 20px;
  transition-property: transform;
  transition-timing-function: linear;
  transition-duration: 400ms;
}

@media only screen and (max-width: 1000px) {
  .services-card-container {
    justify-content: space-between;
  }
  .services-card {
    width: 47%;
    gap: 15px;
  }
}

@media only screen and (max-width: 600px) {
  .services-card-container {
    justify-content: center;
  }
  .services-card {
    width: 95%;
    gap: 30px;
  }
}

.services-card:hover {
  transform: scale(1.05);
}

.services-card-img {
  height: 75px;
  width: 75px;
  max-height: 75px;
  max-width: 75px;
  object-fit: cover;
}

.services-card-title {
  color: var(--blue-100);
  text-align: center;
}

.services-card-desc {
  text-align: center;
}

.radius-top-left {
  border-top-left-radius: 32px;
}

.radius-top-right {
  border-top-right-radius: 32px;
}

.radius-bottom-left {
  border-bottom-left-radius: 32px;
}

.radius-bottom-right {
  border-bottom-right-radius: 32px;
}

.bottom-line {
  border-bottom: 8px solid var(--blue-100);
}

@media only screen and (max-width: 1000px) {
  .radius-top-left,
  .radius-top-right,
  .radius-bottom-left,
  .radius-bottom-right {
    border-radius: 0px;
  }

  .services-card {
    border-bottom: 8px solid var(--blue-100);
  }
}

/* Pricing */
.pricing-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-blue-100);
}

.pricing-inner-container {
  padding-left: 88px;
  padding-right: 88px;
  width: 60%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1920px;
  padding-top: 70px;
  padding-bottom: 70px;
}

@media only screen and (max-width: 1400px) {
  .pricing-inner-container {
    width: 80%;
  }
}

@media only screen and (max-width: 1100px) {
  .pricing-inner-container {
    width: 95%;
  }
  .pricing-inner-container {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.pricing-table-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.pricing-head-container th {
  background-color: var(--blue-100);
  color: var(--white-100);
  text-align: center;
  font-size: 20px;
}

.pricing-body-container td {
  text-align: center;
  font-weight: 300;
  font-size: 17px;
}

.table-hover tbody tr:hover td,
.table-hover tbody tr:hover th {
  background-color: #f6fcff;
}

.table-hover tbody tr td,
.table-hover tbody tr th {
  font-size: clamp(14px, 3vw, 18px);
}

.pricing-body-container td i {
  color: var(--green-100);
}

.pricing-body-container > tr:last-child > td {
  border-bottom: 0;
}

/* Gallery */
.gallery-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.gallery-inner-container {
  padding-left: 88px;
  padding-right: 88px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1226px;
  padding-top: 70px;
  padding-bottom: 70px;
}

.gallery-wrapper {
  display: flex;
  flex-wrap: wrap;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: rgba(99, 99, 99, 0.3) 0px 0px 6px 0px;
}

.gallery-img-container:hover::after {
  content: '+';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 60px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.gallery-img-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  opacity: 0;
}

img.pswp__img {
  object-fit: cover !important;
  transform: none !important;
  transition: none !important;
}

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

.gallery-img-container {
  width: 33.33%;
  height: 350px;
  position: relative;
  display: inline-block;
}

@media only screen and (max-width: 1000px) {
  .gallery-img-container {
    width: 50%;
  }

  .gallery-inner-container {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media only screen and (max-width: 600px) {
  .gallery-img-container {
    width: 100%;
  }

  .gallery-inner-container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.gallery-wrapper img {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
}

/* Comments */
.comments-content-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.comments-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-blue-100);
}

.comments-inner-container {
  padding-left: 88px;
  padding-right: 88px;
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1920px;
  padding-top: 70px;
  padding-bottom: 70px;
  position: relative;
  z-index: 40;
}

.comments-img-container {
  display: flex;
  justify-content: flex-end;
  width: 40%;
}

.comments-img {
  border-radius: 0 999px 999px 999px;
  width: 280px;
  max-width: 280px;
  height: 280px;
}

.comments-content {
  background-color: var(--blue-100);
  color: var(--white-100);
  border-radius: 40px;
  padding: 30px 20px;
  height: fit-content;
  min-height: 200px;
  width: 60%;
  text-align: center;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.comments-content p {
  margin: 0;
}

.comments-content-container .swiper-slide {
  cursor: pointer;
  width: 100%;
}

.comments-title {
  font-weight: 600;
  font-size: 24px;
}

@media only screen and (max-width: 1400px) {
  .comments-inner-container {
    width: 100%;
    padding-left: 30px;
    padding-right: 0px;
  }

  .comments-img {
    height: 250px;
    object-fit: cover;
  }
}

@media only screen and (max-width: 800px) {
  .comments-img-container {
    display: none;
  }

  .comments-inner-container {
    padding-left: 0;
  }
}

@media only screen and (min-width: 1920px) {
  .comments-content-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
  }

  .comments-content-container .swiper-slide {
    cursor: pointer;
    width: 100%;
    display: flex;
    justify-content: flex-start;
  }

  .comments-content-container .mySwiper {
    width: 50%;
  }

  .comments-img-container {
    display: flex;
    justify-content: flex-end;
    width: 40%;
  }
}

/* FAQ */

.faq-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-white-100);
}

.faq-inner-container {
  padding-left: 88px;
  padding-right: 88px;
  width: 60%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1920px;
  padding-top: 50px;
  padding-bottom: 60px;
}

@media only screen and (max-width: 1400px) {
  .faq-inner-container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media only screen and (max-width: 1000px) {
  .faq-inner-container {
    padding-left: 50px;
    padding-right: 50px;
    width: 100%;
  }
}

@media only screen and (max-width: 600px) {
  .faq-inner-container {
    padding-left: 12px;
    padding-right: 12px;
    width: 100%;
  }
}

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

.accordion-item {
  border: 8px solid rgba(76, 160, 232, 0.25) !important;
  box-shadow: 0px 0px 12.1px 0px rgba(0, 0, 0, 0.25);
  border-radius: 10px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0px !important;
  border-radius: 8px !important;
}
.accordion-header,
.accordion-header .accordion-button {
  border-radius: 0px !important;
}

.accordion-header .accordion-button {
  font-weight: 700;
  font-size: 18px;
  width: 100%;
}

.accordion-button {
  background-color: var(--white-100) !important;
}

.accordion-button {
  outline: none !important;
  box-shadow: none !important;
}

/* Contact */
.contact-container {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--bg-blue-100);
}

.contact-inner-container {
  padding-left: 88px;
  padding-right: 88px;
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1920px;
  padding-top: 70px;
  padding-bottom: 70px;
}

.contact-content-container {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

@media only screen and (max-width: 1400px) {
  .contact-inner-container {
    width: 100%;
  }
}

@media only screen and (max-width: 1000px) {
  .contact-inner-container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .contact-content-container {
    gap: 24px;
  }
}

@media only screen and (max-width: 800px) {
  .contact-content-container {
    flex-wrap: wrap;
  }

  .contact-left-container,
  .contact-right-container {
    width: 100% !important;
  }

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

.contact-left-container,
.contact-right-container {
  width: 50%;
  background-color: var(--white-100);
  padding: 15px;
  border-radius: 10px;
  border: 5px solid rgba(167, 163, 163, 0.19);
  box-shadow: 0px 0px 12.1px 0px rgba(0, 0, 0, 0.25);
}

.contact-right-container {
  height: fit-content;
}

.contact-title {
  color: var(--blue-100);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 18px;
}

.contact-right-container .contact-title {
  margin-bottom: 0;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.contact-info i {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  font-size: 20px;
  border: 1px solid var(--white-400);
  border-radius: 6px;
  color: var(--gray-100);
}

.contact-info a,
.contact-info span {
  color: var(--gray-100);
  transition-property: color;
  transition-duration: 300ms;
  max-width: 80%;
}

.contact-info a:hover {
  color: var(--blue-100);
}

.contact-input-container,
.contact-right-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-right-container textarea {
  resize: none;
}

/* Footer */

.footer-bottom-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--blue-100);
  color: var(--white-100);
}

.footer-bottom-container p {
  margin: 0;
  padding: 15px 0;
}

.footer-top-container {
  background-color: rgba(76, 160, 232, 0.15);
}

.footer-inner-container {
  display: flex;
  justify-content: space-between;
  padding: 40px 88px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1920px;
}

.footer-title {
  color: var(--blue-100);
  font-weight: 600;
  text-align: center;
  margin-bottom: 24px;
  width: 100%;
}

.footer-top-column {
  width: 25%;
}

@media only screen and (max-width: 1200px) {
  .footer-inner-container {
    padding-left: 24px;
    padding-right: 24px;
  }
  .footer-top-column {
    width: 30%;
  }
}

@media only screen and (max-width: 1000px) {
  .footer-top-column {
    width: 45%;
  }

  .footer-top-container .footer-inner-container {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
}

@media only screen and (max-width: 700px) {
  .footer-top-column {
    width: 70%;
  }
}

@media only screen and (max-width: 500px) {
  .footer-top-column {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
}

.footer-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-1 .footer-desc {
  text-align: center;
  color: var(--gray-100);
}

.footer-1 .footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.footer-header-social-link {
  color: var(--gray-100);
  font-size: 26px;
}

.footer-header-social-link:hover {
  color: var(--blue-100);
}

.footer-2 .footer-links {
  display: flex;
  flex-wrap: wrap;
}

.footer-2 .footer-links li {
  display: flex;
  width: 50%;
  gap: 6px;
  align-items: center;
}

@media only screen and (max-width: 500px) {
  .footer-2 .footer-links li {
    width: 100%;
  }
}

.footer-2 .footer-links li a {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 8px;
  color: var(--gray-100);
}

.footer-2 .footer-links li a:hover {
  color: var(--blue-100);
}

.footer-2 .footer-links li a i {
  color: var(--blue-100);
}

.footer-3 ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-3 ul li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-3 ul li {
  color: var(--gray-100);
  font-size: 15px;
}

.footer-3 ul li i {
  color: var(--white-100);
  background-color: var(--blue-100);
  font-size: 20px;
  height: 35px;
  width: 35px;
  min-height: 35px;
  min-width: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  opacity: 0.7;
}

.footer-3 ul li p {
  margin: 0;
}

.footer-bottom-container p {
  text-align: center;
  font-size: clamp(14px, 2vw, 17px);
}

.scroll-section {
  scroll-margin-top: 90px;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
