body {
  font-family: "Nunito", sans-serif;
  letter-spacing: 1px;
  color: #000000;
}

.section-space {
  margin-top: 100px;
  margin-bottom: 100px;
  scroll-margin-top: 20px;
}
.section-space.p {
  padding-top: 100px;
  padding-bottom: 100px;
  scroll-margin-top: 0px;
}
@media (max-width: 1199.98px) {
  .section-space {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .section-space.p {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 991.98px) {
  .section-space {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .section-space.p {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 767.98px) {
  .section-space {
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .section-space.p {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media (max-width: 575.98px) {
  .section-space {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .section-space.p {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.scroll-top-100 {
  scroll-margin-top: 100px !important;
}

.vert-move {
  animation: mover 2s infinite alternate;
}
@media (max-width: 991.98px) {
  .vert-move {
    animation: none;
  }
}
@keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}
.btn {
  padding: 10px 20px;
  border-radius: 8px;
}
@media (max-width: 575.98px) {
  .btn {
    font-size: 14px;
    padding: 8px 16px;
  }
}
.btn.h-52 {
  height: 52px;
}
.btn.btn-primary {
  background-color: #244697;
  border-color: #244697;
}
.btn.btn-primary:hover {
  background-color: #2D376F;
  border-color: #2D376F;
}
.btn.btn-outline-primary {
  border-color: #244697;
  color: #244697;
}
.btn.btn-outline-primary:hover {
  background-color: #244697;
  color: #FFFFFF;
}
.btn.btn-primary-dark {
  background-color: #2D376F;
  color: #FFFFFF;
}
.btn.btn-primary-dark:hover {
  background-color: #244697;
}
.btn.btn-outline-primary-dark {
  border-color: #2D376F;
  color: #2D376F;
}
.btn.btn-outline-primary-dark:hover {
  background-color: #2D376F;
  color: #FFFFFF;
}
.btn.btn-gold {
  background-color: #DDB56A;
  color: #FFFFFF;
}
.btn.btn-gold:hover {
  background-color: #ddae55;
}
.btn.btn-outline-gold {
  border-color: #DDB56A;
  color: #000000;
}
.btn.btn-outline-gold:hover {
  background-color: #DDB56A;
  color: #FFFFFF;
}
.btn.btn-dark:hover {
  background-color: #000000;
  color: #FFFFFF;
}

.text-primary {
  color: #244697 !important;
}

.text-primary-dark {
  color: #2D376F !important;
}

.text-gold {
  color: #DDB56A !important;
}

.text-balance {
  text-wrap: balance !important;
}

.h1 {
  font-size: clamp(32px, 32px + 16 * (100vw - 375px) / 1065, 48px);
  line-height: clamp(48px, 48px + 24 * (100vw - 375px) / 1065, 72px);
}

.h2 {
  font-size: clamp(26px, 26px + 16 * (100vw - 375px) / 1065, 42px);
  line-height: clamp(38px, 38px + 24 * (100vw - 375px) / 1065, 62px);
}

.h3 {
  font-size: clamp(22px, 22px + 16 * (100vw - 375px) / 1065, 38px);
  line-height: clamp(32px, 32px + 24 * (100vw - 375px) / 1065, 56px);
}

.h4 {
  font-size: clamp(18px, 18px + 6 * (100vw - 375px) / 1065, 24px);
  line-height: clamp(26px, 26px + 10 * (100vw - 375px) / 1065, 36px);
}

.h6 {
  font-size: clamp(16px, 16px + 4 * (100vw - 375px) / 1065, 20px);
  line-height: clamp(24px, 24px + 6 * (100vw - 375px) / 1065, 30px);
}

.fw-100 {
  font-weight: 100;
}

.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

ul.icon-before {
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}
ul.icon-before li {
  position: relative;
  padding-left: 30px;
}
ul.icon-before li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 22px;
  width: 22px;
  background-repeat: no-repeat;
}
ul.icon-before.light li::before {
  background-image: url(../images/home/icon-checkmark-square-b-light.svg);
}
ul.icon-before.dark li::before {
  background-image: url(../images/home/icon-checkmark-square-b-dark.svg);
}

.header-section {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  z-index: 1000;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 15px 0px;
  transform: translateY(0%);
  transition: 0.5s;
}
.header-section.hide {
  transform: translateY(-200%);
}
@media (max-width: 575.98px) {
  .header-section .navbar-brand img {
    width: 157px;
  }
}

.hero-section {
  background-image: url(../images/home/hero-bg.png);
  background-position: center;
  height: calc(100dvh - 75px);
  margin-top: 75px;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 700px;
}
.hero-section .content-section {
  color: #FFFFFF;
}
.hero-section .content-section ul li {
  font-size: 14px;
  display: flex;
  align-items: center;
}
@media (max-width: 991.98px) {
  .hero-section {
    height: 100%;
    padding-top: 1rem;
    padding-bottom: 1.5rem;
  }
  .hero-section .content-section {
    margin-bottom: 30px;
  }
  .hero-section .image-section {
    display: flex;
  }
  .hero-section .image-section img {
    width: 70%;
    margin: auto;
  }
}
@media (max-width: 575.98px) {
  .hero-section {
    margin-top: 65px;
  }
}

.revolutionary-tools-section .content-section,
.revolutionary-tools-section .image-section {
  margin-bottom: 50px;
}

.mobile-and-web-section .inner-section {
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.mobile-and-web-section .inner-section .main-content {
  height: 100%;
}
@media (max-width: 991.98px) {
  .mobile-and-web-section .inner-section .main-content {
    height: auto;
  }
}
@media (max-width: 767.98px) {
  .mobile-and-web-section .inner-section {
    padding: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .mobile-and-web-section .inner-section {
    padding: 1rem;
  }
}
.mobile-and-web-section .inner-section .download-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 2rem;
}
.mobile-and-web-section .inner-section .image {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-top: 1rem;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 40px 40px -40px;
}
.mobile-and-web-section .inner-section .image img {
  height: 100%;
}
@media (max-width: 991.98px) {
  .mobile-and-web-section .inner-section .image img {
    height: inherit;
    width: 80%;
  }
}
@media (max-width: 991.98px) {
  .mobile-and-web-section .inner-section .image {
    height: auto;
  }
}
.mobile-and-web-section .inner-section.mobile {
  background-color: rgba(36, 70, 151, 0.3);
  border-radius: 16px 0px 0px 16px;
}
@media (max-width: 767.98px) {
  .mobile-and-web-section .inner-section.mobile {
    border-radius: 12px 12px 0px 0px;
  }
}
.mobile-and-web-section .inner-section.web {
  background-color: rgba(36, 70, 151, 0.6);
  border-radius: 0px 16px 16px 0px;
}
@media (max-width: 767.98px) {
  .mobile-and-web-section .inner-section.web {
    border-radius: 0px 0px 12px 12px;
  }
}

.trusted-choice-section .card {
  padding: 1rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  display: flex;
  flex-direction: column;
  align-items: start;
  height: 100%;
  border-radius: 12px;
}
.trusted-choice-section .card img {
  height: 40px;
}
.trusted-choice-section .card h4 {
  margin-top: 10px;
}
.trusted-choice-section .card p {
  margin-bottom: 0;
}

.our-applications-section {
  background: linear-gradient(150deg, rgba(221, 181, 106, 0.6) 0%, rgba(36, 70, 151, 0.6) 30%, rgba(45, 55, 111, 0.6) 45%, rgba(45, 55, 111, 0.6) 55%, rgba(36, 70, 151, 0.6) 70%, rgba(221, 181, 106, 0.6) 100%);
}
@media (max-width: 575.98px) {
  .our-applications-section {
    background: linear-gradient(150deg, rgba(221, 181, 106, 0.4) 0%, rgba(36, 70, 151, 0.4) 30%, rgba(45, 55, 111, 0.4) 45%, rgba(45, 55, 111, 0.4) 55%, rgba(36, 70, 151, 0.4) 70%, rgba(221, 181, 106, 0.4) 100%);
  }
}
.our-applications-section .card {
  padding: 1.5rem;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  display: flex;
  flex-direction: column;
  align-items: start;
  height: 100%;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 575.98px) {
  .our-applications-section .card {
    padding: 1rem;
  }
}
.our-applications-section .card img {
  height: 50px;
}
.our-applications-section .card h4 {
  margin-top: 10px;
}

.innovative-tools-section .content-section {
  padding: 3rem;
}
@media (max-width: 991.98px) {
  .innovative-tools-section .content-section {
    padding: 0rem;
  }
}
.innovative-tools-section .content-section .nav {
  border: 0;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: start;
}
.innovative-tools-section .content-section .nav .nav-link {
  border: 1px solid #244697;
  color: #244697;
  border-radius: 8px;
  padding: 8px 20px;
}
.innovative-tools-section .content-section .nav .nav-link.active {
  background-color: #244697;
  color: #FFFFFF;
}
@media (max-width: 991.98px) {
  .innovative-tools-section .content-section .nav {
    justify-content: center;
  }
}
@media (max-width: 575.98px) {
  .innovative-tools-section .content-section .nav .nav-link {
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 6px;
  }
}
.innovative-tools-section .image-section {
  height: 100vh;
}
.innovative-tools-section .image-section img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 991.98px) {
  .innovative-tools-section .image-section {
    height: inherit;
  }
}

.our-clients-section {
  position: relative;
  background-color: rgba(36, 70, 151, 0.4);
  border-radius: 1rem;
}
.our-clients-section .left-section .client-app {
  max-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.our-clients-section .left-section .client-app img {
  max-height: inherit;
  height: -webkit-fill-available;
  height: -moz-available;
  height: fill-available;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1199.98px) {
  .our-clients-section .left-section .client-app {
    max-height: 350px;
  }
}
@media (max-width: 991.98px) {
  .our-clients-section .left-section .client-app {
    padding: 0px;
  }
}
@media (max-width: 991.98px) {
  .our-clients-section .left-section .swiper-slide {
    transform: scale(0.7);
    opacity: 0.7;
    filter: blur(1px);
    transition: 1s;
  }
  .our-clients-section .left-section .swiper-slide.swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    filter: blur(0px);
  }
}
@media (max-width: 991.98px) {
  .our-clients-section .right-section .swiper {
    height: 100%;
  }
  .our-clients-section .right-section .swiper-wrapper {
    display: flex;
    align-items: stretch;
  }
  .our-clients-section .right-section .swiper-slide {
    height: auto;
    display: flex;
  }
  .our-clients-section .right-section .swiper-slide > * {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .our-clients-section .right-section .swiper {
    overflow: visible;
  }
}
.our-clients-section .right-section .swiper-vertical > .swiper-wrapper {
  max-height: 350px;
}
@media (max-width: 1199.98px) {
  .our-clients-section .right-section .swiper-vertical > .swiper-wrapper {
    max-height: 300px;
  }
}
.our-clients-section .right-section .swiper-vertical > .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
}
.our-clients-section .right-section .swiper-button-prev,
.our-clients-section .right-section .swiper-button-next {
  position: absolute;
  right: 20px;
  left: unset;
  height: 50px;
  width: 50px;
  background: #2D376F;
  padding: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.our-clients-section .right-section .swiper-button-prev .swiper-navigation-icon path,
.our-clients-section .right-section .swiper-button-next .swiper-navigation-icon path {
  fill: #FFF;
}
@media (max-width: 991.98px) {
  .our-clients-section .right-section .swiper-button-prev,
  .our-clients-section .right-section .swiper-button-next {
    display: flex;
    right: unset;
    height: 40px;
    width: 40px;
    padding: 10px;
  }
}
@media (max-width: 575.98px) {
  .our-clients-section .right-section .swiper-button-prev,
  .our-clients-section .right-section .swiper-button-next {
    height: 30px;
    width: 30px;
    padding: 8px;
  }
}
.our-clients-section .right-section .swiper-button-prev {
  top: 20px;
}
@media (max-width: 991.98px) {
  .our-clients-section .right-section .swiper-button-prev {
    left: 0;
    top: 50%;
  }
}
@media (max-width: 575.98px) {
  .our-clients-section .right-section .swiper-button-prev {
    left: -5px;
  }
}
.our-clients-section .right-section .swiper-button-next {
  bottom: 20px;
}
@media (max-width: 991.98px) {
  .our-clients-section .right-section .swiper-button-next {
    bottom: unset;
    right: 0;
    top: 50%;
  }
}
@media (max-width: 575.98px) {
  .our-clients-section .right-section .swiper-button-next {
    right: -5px;
  }
}
.our-clients-section .right-section .client {
  display: flex;
  align-items: center;
  background-color: #FFFFFF;
  margin-right: 100px;
  padding: 1rem;
  border-radius: 1rem;
  min-height: 100%;
}
@media (max-width: 991.98px) {
  .our-clients-section .right-section .client {
    margin-left: 50px;
    margin-right: 50px;
  }
}
@media (max-width: 575.98px) {
  .our-clients-section .right-section .client {
    flex-direction: column;
    margin-left: 30px;
    margin-right: 30px;
    align-items: start;
    justify-content: center;
  }
}
.our-clients-section .right-section .client .client-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-right: 40px;
  margin-right: 40px;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
}
.our-clients-section .right-section .client .client-detail .inner {
  display: flex;
  flex-direction: column;
}
.our-clients-section .right-section .client .client-detail img {
  height: 150px;
  width: 150px;
  border-radius: 50%;
}
.our-clients-section .right-section .client .client-detail .name {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 4px;
}
.our-clients-section .right-section .client .client-detail .title {
  font-size: 14px;
  font-weight: 600;
  opacity: 80%;
  line-height: 18px;
}
.our-clients-section .right-section .client .client-detail .location {
  font-size: 12px;
  opacity: 80%;
  line-height: 16px;
}
@media (max-width: 1199.98px) {
  .our-clients-section .right-section .client .client-detail {
    padding-right: 20px;
    margin-right: 20px;
  }
  .our-clients-section .right-section .client .client-detail img {
    height: 100px;
    width: 100px;
  }
  .our-clients-section .right-section .client .client-detail .name {
    font-size: 16px;
  }
  .our-clients-section .right-section .client .client-detail .title {
    font-size: 12px;
    line-height: 18px;
  }
  .our-clients-section .right-section .client .client-detail .location {
    font-size: 12px;
    line-height: 16px;
  }
}
@media (max-width: 575.98px) {
  .our-clients-section .right-section .client .client-detail {
    flex-direction: row;
    align-items: center;
    justify-content: start;
    text-align: start;
    padding-right: 0;
    margin-right: 0;
    border-right: none;
    margin-bottom: 10px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
  }
  .our-clients-section .right-section .client .client-detail img {
    height: 80px;
    width: 80px;
    margin-right: 10px;
  }
  .our-clients-section .right-section .client .client-detail .name {
    font-size: 16px;
    margin-bottom: 0;
  }
  .our-clients-section .right-section .client .client-detail .title {
    display: block;
    opacity: 1;
  }
  .our-clients-section .right-section .client .client-detail .location {
    display: block;
  }
  .our-clients-section .right-section .client .client-detail .stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-top: 4px;
  }
  .our-clients-section .right-section .client .client-detail .stars img {
    height: 16px;
    width: 16px;
    margin-right: 0;
  }
}
.our-clients-section .right-section .client .review p {
  font-size: 18px;
}
@media (max-width: 1199.98px) {
  .our-clients-section .right-section .client .review p {
    font-size: 16px;
  }
}
@media (max-width: 575.98px) {
  .our-clients-section .right-section .client .review p {
    font-size: 14px;
    margin-bottom: 0;
  }
}
@media (max-width: 400px) {
  .our-clients-section .right-section .client .review p {
    font-size: 12px;
  }
}
.our-clients-section .right-section .client .review .stars {
  display: flex;
  align-items: center;
  gap: 6px;
}
.our-clients-section .right-section .client .review .stars img {
  height: 22px;
  width: 22px;
}
.our-clients-section .other-clients-logo {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  margin-top: 30px;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 991.98px) {
  .our-clients-section .other-clients-logo {
    padding-bottom: 0px;
  }
}
@media (max-width: 575.98px) {
  .our-clients-section .other-clients-logo {
    padding-top: 30px;
  }
}
.our-clients-section .other-clients-logo .swiper {
  position: relative;
}
.our-clients-section .other-clients-logo .swiper::before, .our-clients-section .other-clients-logo .swiper::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 100px;
  height: 100%;
}
.our-clients-section .other-clients-logo .swiper::before {
  left: 0;
  background: linear-gradient(90deg, rgb(255, 255, 255) 10%, rgba(255, 255, 255, 0) 70%);
}
.our-clients-section .other-clients-logo .swiper::after {
  right: 0;
  background: linear-gradient(270deg, rgb(255, 255, 255) 10%, rgba(255, 255, 255, 0) 70%);
}
.our-clients-section .other-clients-logo .swiper-wrapper {
  transition-timing-function: linear !important;
}
.our-clients-section .other-clients-logo .swiper-slide {
  width: auto;
}
.our-clients-section .other-clients-logo .logo-card {
  width: 100%;
  max-width: 210px;
  padding: 10px;
  height: auto;
  aspect-ratio: 5/3;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}
@media (max-width: 991.98px) {
  .our-clients-section .other-clients-logo .logo-card {
    max-width: 120px;
    border-radius: 10px;
  }
}
@media (max-width: 575.98px) {
  .our-clients-section .other-clients-logo .logo-card {
    max-width: 100px;
    border-radius: 10px;
  }
}

.start-with-jewelSync-section {
  background: linear-gradient(150deg, rgba(221, 181, 106, 0.8) 0%, rgba(36, 70, 151, 0.8) 30%, rgba(45, 55, 111, 0.8) 45%, rgba(45, 55, 111, 0.8) 55%, rgba(36, 70, 151, 0.8) 70%, rgba(221, 181, 106, 0.8) 100%);
}
.start-with-jewelSync-section .inner-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
}

.connect-with-us-section .form-section .form-control {
  border: 0;
  border-bottom: 1px solid #000000;
  border-radius: 0;
}
.connect-with-us-section .form-section .form-control:hover, .connect-with-us-section .form-section .form-control:focus, .connect-with-us-section .form-section .form-control:active {
  box-shadow: none;
}
.connect-with-us-section .form-section .form-control ~ label {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
}
.connect-with-us-section .form-floating > .form-control:not(:-moz-placeholder) ~ label {
  transform: scale(0.85) translateY(-0.7rem) translateX(0.15rem);
}
.connect-with-us-section .form-floating > .form-control-plaintext ~ label,
.connect-with-us-section .form-floating > .form-control:focus ~ label,
.connect-with-us-section .form-floating > .form-control:not(:placeholder-shown) ~ label,
.connect-with-us-section .form-floating > .form-select ~ label {
  transform: scale(0.85) translateY(-0.7rem) translateX(0.15rem);
}
.connect-with-us-section .content-section {
  border-left: 1px solid rgba(0, 0, 0, 0.4);
  height: 100%;
}
@media (max-width: 991.98px) {
  .connect-with-us-section .content-section {
    border-left: 0;
  }
}
.connect-with-us-section .content-section .item {
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: #000000;
  height: 100%;
}
.connect-with-us-section .content-section .item .icon {
  height: 40px;
  width: 40px;
  min-height: 40px;
  min-width: 40px;
  max-height: 40px;
  max-width: 40px;
}
.connect-with-us-section .content-section .item .content span {
  font-weight: 700;
}
.connect-with-us-section .content-section .item .content p {
  margin-bottom: 0;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.8);
}
@media (max-width: 575.98px) {
  .connect-with-us-section .content-section .item {
    padding: 12px;
    border-radius: 6px;
    gap: 12px;
  }
  .connect-with-us-section .content-section .item .icon {
    height: 30px;
    width: 30px;
    min-height: 30px;
    min-width: 30px;
    max-height: 30px;
    max-width: 30px;
  }
}

.faq-section {
  background-color: rgba(221, 181, 106, 0.2);
}
.faq-section .accordion .accordion-item {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  margin-bottom: 20px;
}
@media (max-width: 991.98px) {
  .faq-section .accordion .accordion-item {
    margin-bottom: 1rem;
  }
}
.faq-section .accordion .accordion-item .accordion-button {
  padding: 20px 24px;
  background-color: #FFFFFF;
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px !important;
}
@media (max-width: 991.98px) {
  .faq-section .accordion .accordion-item .accordion-button {
    padding: 1rem;
  }
}
.faq-section .accordion .accordion-item .accordion-button::after {
  background-image: url("../images/home/icon-plus.png");
}
.faq-section .accordion .accordion-item .accordion-button:not(.collapsed)::after {
  background-image: url("../images/home/icon-minus.png");
  transform: rotate(0);
}
.faq-section .accordion .accordion-item .accordion-body {
  border: 0;
}
.faq-section .image-section {
  height: 100%;
  width: 100%;
  overflow: hidden;
}
.faq-section .image-section img {
  border-radius: 12px;
}

.map-section iframe {
  display: block;
}

.footer-section {
  background-color: #2D376F;
  color: #FFFFFF;
}
.footer-section .left-side .social {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 25px;
}
.footer-section .left-side .social a {
  display: flex;
  align-items: start;
  color: #FFFFFF;
  text-decoration: none;
  gap: 10px;
}
.footer-section .left-side .social a svg {
  margin-top: 2px;
}
.footer-section .central {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 991.98px) {
  .footer-section .central {
    align-items: start;
  }
}
.footer-section .central ul {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 1rem;
}
.footer-section .central ul li {
  list-style: none;
  opacity: 0.8;
}
.footer-section .central ul li:hover {
  opacity: 1;
}
.footer-section .right-side p {
  opacity: 0.8;
}

.blog-list-page .header-section .navbar {
  padding-top: 18px;
  padding-bottom: 18px;
}
.blog-list-page .header-section .navbar .navbar-brand {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 575.98px) {
  .blog-list-page .header-section .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.blog-list-page .hero-section {
  height: 400px;
  min-height: 400px;
}
@media (max-width: 575.98px) {
  .blog-list-page .hero-section {
    height: 350px;
    min-height: 350px;
    margin-top: 55px;
  }
}
.blog-list-page .fiilter-list-section .filter-buttons {
  padding-top: 30px;
  display: flex;
  align-items: center;
  overflow-y: hidden;
  gap: 10px;
  list-style: none;
  padding-left: 0;
}
.blog-list-page .fiilter-list-section .filter-buttons li {
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 5px 15px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
}
@media (max-width: 575.98px) {
  .blog-list-page .fiilter-list-section .filter-buttons li {
    font-size: 14px;
  }
}
.blog-list-page .fiilter-list-section .filter-buttons li.active {
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-color: rgba(0, 0, 0, 0.8);
  color: #FFFFFF;
}
.blog-list-page .fiilter-list-section .card-list {
  background-color: rgba(0, 0, 0, 0.03);
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}
.blog-list-page .fiilter-list-section .card-list .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 991.98px) {
  .blog-list-page .fiilter-list-section .card-list .list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 575.98px) {
  .blog-list-page .fiilter-list-section .card-list .list {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}
.blog-list-page .fiilter-list-section .card-list .list .card {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  text-decoration: none;
}
.blog-list-page .fiilter-list-section .card-list .list .card .blog-image img {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-list-page .fiilter-list-section .card-list .list .card .blog-detail {
  background-color: #FFFFFF;
  padding: 1rem;
}
.blog-list-page .fiilter-list-section .card-list .list .card .blog-detail .blog-type {
  font-size: 14px;
  display: inline-block;
  padding: 4px 8px;
  border-radius: 6px;
  background-color: rgba(36, 70, 151, 0.8);
  color: #FFFFFF;
  font-weight: 600;
  position: absolute;
  top: 10px;
  right: 10px;
}
.blog-list-page .fiilter-list-section .card-list .list .card .blog-detail .title {
  font-size: 18px;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-list-page .fiilter-list-section .card-list .list .card .blog-detail .content {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.blog-list-page .fiilter-list-section .card-list .list .card .blog-detail .date-and-read {
  display: flex;
  align-items: center;
  gap: 20px;
}
.blog-list-page .fiilter-list-section .card-list .list .card .blog-detail .date-and-read .date, .blog-list-page .fiilter-list-section .card-list .list .card .blog-detail .date-and-read .read {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  opacity: 75%;
}

.blog-detail-page .header-section .navbar {
  padding-top: 20px;
  padding-bottom: 20px;
}
.blog-detail-page .header-section .navbar .navbar-brand {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 575.98px) {
  .blog-detail-page .header-section .navbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.blog-detail-page .hero-section {
  height: 100%;
  min-height: unset;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #FFFFFF;
  padding-top: 50px;
}
@media (max-width: 575.98px) {
  .blog-detail-page .hero-section {
    margin-top: 55px;
    padding-top: 30px;
  }
}
.blog-detail-page .hero-section h1 {
  font-weight: 800;
  font-size: clamp(32px, 32px + 22 * (100vw - 375px) / 1065, 54px);
}
.blog-detail-page .hero-section .content {
  font-size: 20px;
}
@media (max-width: 991.98px) {
  .blog-detail-page .hero-section .content {
    font-size: 18px;
  }
}
@media (max-width: 575.98px) {
  .blog-detail-page .hero-section .content {
    font-size: 16px;
  }
}
.blog-detail-page .hero-section .image {
  aspect-ratio: 16/9;
  overflow: hidden;
  margin: 50px 0;
}
@media (max-width: 991.98px) {
  .blog-detail-page .hero-section .image {
    margin: 30px 0;
  }
}
@media (max-width: 575.98px) {
  .blog-detail-page .hero-section .image {
    margin: 20px 0;
  }
}
.blog-detail-page .hero-section .image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-detail-page .blog-detail-section {
  margin-bottom: 50px;
}
.blog-detail-page .blog-detail-section .inner {
  border-radius: 1rem;
  padding: 50px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
@media (max-width: 991.98px) {
  .blog-detail-page .blog-detail-section .inner {
    padding: 30px;
    border-radius: 12px;
  }
}
@media (max-width: 575.98px) {
  .blog-detail-page .blog-detail-section .inner {
    padding: 20px;
    border-radius: 12px;
  }
}
.blog-detail-page .blog-detail-section .inner h5 {
  margin-bottom: 8px;
  margin-top: 16px;
}
.blog-detail-page .blog-detail-section .inner p {
  margin-bottom: 8px;
}
.blog-detail-page .blog-detail-section .inner ul {
  padding-left: 20px;
  font-size: 14px;
  margin-bottom: 10px;
}/*# sourceMappingURL=style.css.map */