#main {
  overflow-x: hidden;
}

.ss-btn {
  font-size: 14px;
  display: inline-block;
  text-align: center;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  background-color: #052941;
  border-radius: 4px;
  line-height: 1.5;
  padding: 12px 20px;
  text-transform: uppercase;
  border: 1px solid #052941;
  transition: all .2s ease;
}

@media (min-width: 768px) {
  .ss-btn {
    padding: 14px 24px;
  }
}

@media (min-width: 1200px) {
  .ss-btn {
    padding: 16px 32px;
  }
}

.ss-btn:hover {
  background-color: #fff;
  color: #052941;
}

.ss-btn.ss-btn--transparent {
  background-color: transparent;
  color: #052941;
}

.ss-btn.ss-btn--transparentWhite {
  border-color: #fff;
  background-color: transparent;
  color: #fff;
}

.ss-btn.ss-btn--transparentWhite:hover {
  color: #052941;
  background-color: #fff;
}

.ss-btn.ss-btn--transparent:hover {
  background-color: #052941;
  color: #fff;
}

.ss-btn.ss-btn--white {
  background-color: #fff;
  color: #052941;
  border-color: #fff;
}

.ss-btn.ss-btn--white:hover {
  background-color: #052941;
  color: #fff;
}

.ss-section-rounded {
  border-radius: 32px 32px 0px 0px;
}

@media (min-width: 768px) {
  .ss-section-rounded {
    border-radius: 54px 54px 0px 0px;
  }
}

@media (min-width: 1200px) {
  .ss-section-rounded {
    border-radius: 80px 80px 0px 0px;
  }
}

.ss-bg-blue {
  background-color: #052941;
  color: #fff;
}

.ss-bg-blue :is(h1, h2, h3, h4, h5, h6, p) {
  color: #fff;
}

.ss-bg-transparent-blue {
  background: linear-gradient(0deg, rgba(5, 41, 65, 0.06) 0%, rgba(5, 41, 65, 0.06) 100%), #FFF;
}

.ss-bg-white {
  background-color: #fff;
}

.ss-bg-transparent-sky {
  background-color: rgba(168, 223, 252, 0.239);
}

.ss-honeycomb-pattern {
  position: relative;
  z-index: 1;
}

.ss-honeycomb-pattern::before,
.ss-honeycomb-pattern::after {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  background-image: url('../img/img-honeycomb-patterm-left.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 200px;
  height: 334px;
  display: block;
  z-index: -1;
}

@media(min-width: 768px) {

  .ss-honeycomb-pattern::before,
  .ss-honeycomb-pattern::after {
    width: 250px;
    height: 250px;
  }
}

@media(min-width: 1200px) {

  .ss-honeycomb-pattern::before,
  .ss-honeycomb-pattern::after {
    width: 329px;
    height: 334px;
  }
}

.ss-honeycomb-pattern::after {
  left: auto;
  right: 0;
  background-image: url('../img/img-honeycomb-patterm-right.png');
}

.ss-honeycomb-pattern.ss-honeycomb-pattern--btmRight::after {
  top: auto;
  bottom: 0;
  right: 0;
  left: auto;
}

.ss-honeycomb-pattern.ss-honeycomb-pattern--btmLeft::before {
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
}

.ss-honeycomb-pattern.remove-pattern-left::before {
  display: none;
}

.ss-honeycomb-pattern.remove-pattern-right::after {
  display: none;
}


.section-title.section-title--white h2 {
  color: #fff;
}

.section-title .section-title-sub {
  position: relative;
  font-size: 1rem;
  padding-inline: 16px;
  color: #6E6E6E;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.2;
  display: inline-block;
  padding-bottom: 0;
  margin-bottom: 8px;
}

.section-title.section-title--white .section-title-sub {
  color: #A8DFFC;
}

.section-title .section-title-sub::before,
.section-title .section-title-sub::after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  background-color: #6E6E6E;
  border-radius: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.section-title.section-title--white .section-title-sub::before,
.section-title.section-title--white .section-title-sub::after {
  background-color: #A8DFFC;
}

.section-title .section-title-sub::after {
  left: auto;
  right: 0;
}

.ss-row-gap {
  row-gap: 32px;
}

.ss-img-wrap img {
  width: auto;
  height: auto;
  max-width: 100%;
}

.section-nmt {
  position: relative;
  z-index: 1;
  margin-top: -32px;
  padding-bottom: 32px;
}

@media (min-width:768px) {
  .section-nmt {
    margin-top: -48px;
    padding-bottom: 48px;
  }
}

@media (min-width:1200px) {
  .section-nmt {
    margin-top: -80px;
    padding-bottom: 80px;
  }
}

/* Start Navbar styling */

.ss-navbar-area:not(.sticky-nav) .main-nav {
  background: #052941;
}

.ss-navbar-area .main-nav .navbar {
  background-color: #fff;
  border-radius: 80px;
  padding: 8px 16px;
  position: relative;
  z-index: 10;
}

@media (min-width: 1440px) {
  .ss-navbar-area .main-nav .navbar {
    padding: 8px 40px;
    position: relative;
    z-index: 10;
  }
}

.ss-navbar-area:not(.sticky-nav) .main-nav .navbar {
  margin-bottom: -48px;
}

.ss-navbar-area .navbar-light .navbar-brand img {
  width: 163px;
  height: auto;
  mix-blend-mode: multiply;
}

@media (min-width: 992px) {
  .ss-navbar-area .navbar-inner {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .ss-navbar-area .nav-with-search {
    flex: 1 1 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .ss-navbar-area .header-cta .ss-btn {
    min-width: auto;
  }
}

@media (min-width: 992px) and (max-width: 1439px) {
  .ss-navbar-area .ss-btn {
    font-size: 12px;
    padding: 14px 12px;
  }

  .ss-navbar-area .main-nav nav .navbar-nav .nav-item a {
    font-size: 12px;
  }
}

.ss-navbar-area .navbar-search {
  display: inline-block;
  background-color: transparent;
  border: 0;
  padding: 0;
  font-size: 24px;
  line-height: 1;
  color: #052941;
  transition: all .2s;
}

.ss-navbar-area .navbar-search:hover {
  color: #1fa2ff;
}

.ss-navbar-area .main-nav nav .navbar-nav .nav-item a {
  font-size: 14px;
  text-transform: uppercase;
}

@media(max-width: 991px) {
  .ss-navbar-area .navbar-search {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 64px;
  }

  .ss-navbar-area .mean-container .mean-bar {
    height: 80px;
  }

  .ss-navbar-area .mobile-nav nav .navbar-nav {
    margin-top: 24px;
  }

  .ss-navbar-area .mobile-nav .logo {
    top: 8px;
  }

  .ss-navbar-area .mobile-nav .logo img {
    height: 64px;
    max-width: 163px;
    object-fit: contain;
  }

  .ss-navbar-area .mean-container a.meanmenu-reveal {
    padding: 0 15px 0 0;
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .mean-container .mean-nav ul li.blinking-button>a {
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
    padding: 1em 5% !important;
    border: 1px solid #fff;
  }
}

/* End Navbar styling */

/* Start Banner styling */
.ss-banner {
  position: relative;
  z-index: 1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  font-family: 'Poppins', sans-serif;
  padding-top: 80px;
  padding-bottom: 32px;
}

.ss-banner video {
  position: absolute;
  z-index: -2;
  top: 0;
  right: 0;
  left: 0;
}

@media (max-width: 991px) {
  .ss-banner {
    padding-top: 80px;
  }
}

@media (min-width:768px) {
  .ss-banner {
    padding-bottom: 48px;
  }
}

@media (min-width:1200px) {
  .ss-banner {
    padding-bottom: 80px;
  }
}

.ss-banner-content {
  min-height: 500px;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

@media(min-width: 992px) {
  .ss-banner-content {
    text-align: left;
    min-height: 600px;
  }
}

@media(min-width: 1440px) {
  .ss-banner-content {
    min-height: 720px;
  }
}

.ss-banner:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 41, 65, 0.7);
  z-index: -1;
}

.ss-banner-text {
  text-wrap: balance;
}

@media (min-width: 992px) {
  .ss-banner:before {
    background: linear-gradient(90deg, #052941 0%, rgba(5, 41, 65, 0.00) 100%);
  }

  .ss-banner-text {
    max-width: 570px;
  }
}

.ss-banner .banner-subheading {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #A8DFFC;
  margin-bottom: 8px;
  line-height: 1.3;
}

@media (min-width: 1200px) {
  .ss-banner .banner-subheading {
    margin-bottom: 16px;
    line-height: 1.7;
  }
}

.ss-banner h1 {
  color: #FFF;
  font-size: 628x;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 12px;
}

@media (min-width: 576px) {
  .ss-banner h1 {
    font-size: 32px;
    margin-bottom: 16px;
  }
}

@media (min-width: 992px) {
  .ss-banner h1 {
    font-size: 40px;
  }

  .ss-banner h1 strong {
    position: relative;
    display: inline-block;
    padding-right: 10px;
  }

  .ss-banner h1 strong:before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    display: block;
    left: -400px;
    z-index: -1;
    border-radius: 0px 72px 72px 0px;
    background: #052941;
  }
}

@media (min-width: 1200px) {
  .ss-banner h1 {
    font-size: 54px;
    margin-bottom: 24px;
  }
}

@media (min-width: 1440px) {
  .ss-banner h1 {
    font-size: 64px;
  }
}

.ss-banner p {
  color: #fff;
  font-weight: 400;
}

.ss-banner .ss-btn {
  margin-top: 8px;
}

@media(min-width: 768px) {
  .ss-banner .ss-btn {
    margin-top: 16px;
  }
}

@media(min-width: 1440px) {
  .ss-banner .ss-btn {
    margin-top: 32px;
  }
}

.ss-banner-awards {
  padding: 16px;
  background-color: #052941;
  border-radius: 8px;
  backdrop-filter: blur(36px);
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  width: 100%;
  text-wrap: balance;
  max-width: 280px;
}

@media(min-width: 576px) {
  .ss-banner-awards {
    max-width: 340px;
    margin-top: 32px;
  }
}

@media(min-width: 992px) {
  .ss-banner-awards {
    margin-top: 48px;
    margin-right: 0;
  }
}

.ss-banner-awards figure {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
}

.ss-banner-awards figure img {
  flex: 0 0 64px;
  max-width: 64px !important;
}

@media (min-width: 1200px) {
  .ss-banner-awards figure img {
    flex: 0 0 90px;
    max-width: 90px !important;
  }
}

.ss-banner-awards figure figcaption {
  flex: 1 1 0;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding-bottom: 20px;
  line-height: 1.33;
}

@media (min-width: 768px) {
  .ss-banner-awards figure figcaption {
    font-size: 15px;
    line-height: 1.5;
  }
}

@media (min-width: 1200px) {
  .ss-banner-awards figure figcaption {
    font-size: 16px;
    line-height: 1.75;
  }
}

.ss-banner-awards .owl-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: calc(100% - 80px);
  margin-left: auto;
  margin-top: -12px !important;
  position: relative;
  z-index: 10;
}

@media (min-width: 1200px) {
  .ss-banner-awards .owl-dots {
    width: calc(100% - 106px);
  }
}


.ss-banner-awards .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 0;
  background-color: rgba(168, 223, 252, 0.212);
}

.ss-banner-awards .owl-dots .owl-dot.active span {
  background-color: #A8DFFC;
}

/* End Banner styling */

/* Start Card Sevices Styling */
.card-services {
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  font-size: 14px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-services__img {
  position: relative;
  max-height: 160px;
  overflow: hidden;
  flex: 0 0 auto;
}

.card-services__img::before {
  content: '';
  display: block;
  padding-top: 56.25%;
}

.card-services__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-services__body {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media(min-width: 1200px) {
  .card-services h3 {
    font-size: 24px;
  }
}

.card-services .ss-btn {
  margin-top: auto;
}

/* End Card Sevices Styling */

/* Start Home Services Styling */
.ss-home-services-tabs {
  display: flex;
  align-items: center;
}

@media (max-width: 991.98px) {
  .ss-home-services-tabs .tab-content {
    display: flex;
    flex-wrap: wrap;
    row-gap: 30px;
    margin: 0 -15px;
  }

  .ss-home-services-tabs .tab-content .tab-pane {
    display: block !important;
    width: 50%;
    padding: 0 15px;
  }
}

@media (max-width: 575.98px) {
  .ss-home-services-tabs .tab-content .tab-pane {
    width: 100%;
  }
}


@media(min-width: 992px) {
  .ss-home-services-tabs .tab-content {
    width: 350px;
    padding-right: 16px;
  }

  .ss-home-services-tabs .ssTabNav {
    overflow-x: auto;
    overflow-y: hidden;
    width: calc(100% - 356px);
  }
}

@media(min-width: 1440px) {
  .ss-home-services-tabs .tab-content {
    width: 470px;
    padding-right: 30px;
  }

  .ss-home-services-tabs .ssTabNav {
    width: calc(100% - 470px);
  }
}

/* ===== Scrollbar CSS ===== */

.ss-home-services-tabs .ssTabNav::-webkit-scrollbar {
  height: 6px;
  border-radius: 10px;
  background-color: #F5F5F5;
}

.ss-home-services-tabs .ssTabNav::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: #A8DFFC;
}

.ss-home-services-tabs .ssTabNav::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

.ss-home-services-tabs .ssTabNav .nav-tabs {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: nowrap;
  border-bottom: 0;
}

.ss-home-services-tabs .ssTabNav .nav-item {
  padding-inline: 12px;
}

@media(min-width: 1200px) {
  .ss-home-services-tabs .ssTabNav .nav-item {
    padding-inline: 16px;
  }
}

@media(min-width: 1440px) {
  .ss-home-services-tabs .ssTabNav .nav-item {
    padding-inline: 20px;
  }
}

.ss-home-services-tabs .ssTabNav .nav-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.ss-home-services-tabs .ssTabNav .nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  height: 100%;
  max-height: 400px;
  border-radius: 4px;
  border: none;
  text-align: left;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.56);
  padding: 8px 16px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.33;
  transition: all .2s ease-in-out;
}

@media(min-width: 992px) {
  .ss-home-services-tabs .ssTabNav .nav-link {
    padding: 16px 8px;
    font-size: 20px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: scale(-1);
  }
}

@media(min-width: 1440px) {
  .ss-home-services-tabs .ssTabNav .nav-link {
    padding: 24px 12px;
    font-size: 24px;
  }
}

.ss-home-services-tabs .ssTabNav .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.ss-home-services-tabs .ssTabNav .nav-link::after {
  display: inline-block;
  content: '\ebe6';
  font-family: 'boxicons';
  font-size: 40px;
  line-height: 1;
  transform: rotate(45deg);
  font-weight: 300;
}

@media(min-width: 992px) {
  .ss-home-services-tabs .ssTabNav .nav-link::after {
    font-size: 54px;
  }
}

@media(min-width: 1440px) {
  .ss-home-services-tabs .ssTabNav .nav-link::after {
    font-size: 64px;
  }
}

.ss-home-services-tabs .ssTabNav .nav-link.active {
  background-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  color: #fff;
}

/* Start Home Services Styling */

/* Start Home About Styling */
.ss-home-block {
  font-family: 'Poppins', sans-serif;
}

.ss-home-block p {
  font-weight: 400;
}

.ss-home-about>.container>.row {
  row-gap: 32px;
}

.ss-home-about__content .section-title {
  margin-bottom: 16px;
}

.ss-home-about__content p {
  font-weight: 400;
}

.ss-home-about__media {
  position: relative;
  max-width: 580px;
  margin-left: auto;
}

@media (max-width: 991.98px) {
  .ss-home-about__media {
    margin-right: auto;
  }

  .ss-home-about__counters {
    display: flex;
    flex-wrap: wrap;
  }
}

.ss-home-about__img img {
  border-radius: 14px;
}

.ss-home-about__cta {
  margin-top: 20px;
}

@media(min-width: 768px) {
  .ss-home-about__cta {
    margin-top: 28px;
  }
}

@media(min-width: 1200px) {
  .ss-home-about__cta {
    margin-top: 40px;
  }
}

.ss-home-about__counter {
  position: relative;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  color: #052941;
  font-size: 14px;
  text-align: center;
  border-radius: 14px;
  text-transform: uppercase;
  padding: 8px 14px;
  background-color: #fff;
  line-height: 1.5;
  font-family: 500;
  border: 5px solid #fff;
  width: 50%;
}

@media (min-width: 992px) {
  .ss-home-about__counter {
    max-width: 168px;
    width: auto;
    position: absolute;
    line-height: 1.7;
    border: 10px solid #fff;
  }

  .ss-home-about__counter--tr {
    top: -10px;
    right: -10px;
  }

  .ss-home-about__counter--bl {
    bottom: -10px;
    left: -10px;
    ;
  }
}

.ss-home-about__counter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #A8DFFC;
  z-index: -1;
}

.ss-home-about__counter--bl::before {
  background-color: rgba(168, 223, 252, 0.24);
}

.ss-home-about__count {
  display: block;
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .ss-home-about__count {
    font-size: 54px;
  }
}

@media (min-width: 1200px) {
  .ss-home-about__count {
    font-size: 64px;
  }
}

/* End Home About Styling */

/* Start Card Awards Styling */

.card-awards {
  background-color: #fff;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
  box-shadow: 0px 4px 32px 0px rgba(168, 223, 253, 0.48);
  height: 100%;
}

.card-awards-row {
  row-gap: 24px;
  margin-top: 32px;
}

.card-awards-row [class^="col-"] {
  padding-inline: 20px;
}

@media (min-width: 1200px) {
  .card-awards-row {
    row-gap: 40px;
    margin-inline: -20px;
    margin-top: 40px;
  }

  .card-awards-row [class^="col-"] {
    padding-inline: 20px;
  }
}

.card-awards p {
  color: #052941;
}

.card-awards p:last-of-type {
}

.card-awards__img {
  min-height: 200px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 16px;
  background-color: rgba(5, 41, 65, 0.059);
  border-radius: 8px;
  margin-bottom: 32px;
}

.card-awards__img img {
  mix-blend-mode: multiply;
  max-height: 120px;
  object-fit: contain;
  transition: all .5s ease-in-out;
}

@media (min-width: 1200px) {
  .card-awards__img {
    margin-bottom: 32px;
    min-height: 247px;
  }

  .card-awards__img img {
    max-height: 200px;
  }
}

.card-awards__img:hover img {
  transform: scale(1.1);
}

/* End Card Awards Styling */

/* Start Home Blog Styling */
.ss-home-blog__flex {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

@media (min-width: 992px) {
  .ss-home-blog__flex {
    gap: 40px;
    align-items: end;
  }
}

@media (max-width: 991.98px) {
  .ss-home-blog__flex {
    flex-direction: column;
    text-align: center;
  }

  .ss-home-blog__cta {
    order: 3;
  }
}

.ss-home-blog__header {
  flex: 1 1 0;
}

.ss-home-blog__cta {
  flex: 0 0 auto;
}

/* End Home Blog Styling */

/* Start Card Article Styling */
.card-article-row {
  row-gap: 24px;
}

@media (min-width: 1200px) {
  .card-article-row {
    row-gap: 40px;
    margin-inline: -20px;
  }

  .card-article-row [class^="col-"] {
    padding-inline: 20px;
  }
}

.card-article {
  position: relative;
  z-index: 1;
  border-radius: 8px;
  padding: 24px 16px;
  text-align: center;
  font-size: 14px;
}

@media (min-width: 768px) {
  .card-article {
    padding: 32px 20px;
  }
}

@media (min-width: 1200px) {
  .card-article {
    padding: 40px 24px;
  }
}

@media (max-width: 991.98px) {
  .card-article h3 {
    color: #fff;
  }

  .card-article p {
    color: rgba(255, 255, 255, 0.8);
  }
}

.card-article:hover h3,
.card-article:hover .card-article__header {
  color: #fff;
}

.card-article:hover p {
  color: rgba(255, 255, 255, 0.8);
}

.card-article:hover::before {
  background-color: #052941;
}

.card-article:hover .card-article__cta {
  opacity: 100;
  visibility: visible;
}

.card-article::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  box-shadow: 0px 2px 32px 0px rgba(5, 41, 65, 0.08);
  background-color: #052941;
  transition: all .3s ease-in-out;
  z-index: -1;
}

@media (min-width: 992px) {
  .card-article::before {
    bottom: 56px;
    background-color: #fff;
  }
}

@media (min-width:1200px) {
  .card-article h3 {
    font-size: 24px;
  }
}

.card-article h3,
.card-article p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.card-article p {
  -webkit-line-clamp: 3;
  font-weight: 400;
}

.card-article__img {
  margin-bottom: 0;
  position: relative;
  max-height: 240px;
  overflow: hidden;
}

.card-article__img::before {
  content: '';
  display: block;
  padding-top: 75%;
}

.card-article__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  z-index: -1;
}

.card-article__cta {
  margin-top: 16px;
}

@media (min-width: 992px) {
  .card-article__cta {
    margin: -80px 20px 0;
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease-in-out;
  }
}

.card-article .ss-btn {
  width: 100%;
}

.card-article .ss-btn:hover {
  background-color: #fff;
  color: #052941;
}

/* End Card Article Styling */

/* Start Home Contact Styling */
.ss-home-contact .contact-form {
  background-color: rgba(168, 223, 252, 0.239);
  padding: 24px 16px;
  border-radius: 20px;
  margin-bottom: 0;
  max-width: 100%;
}

@media (min-width: 768px) {
  .ss-home-contact .contact-form {
    padding: 32px 24px;
  }
}

@media (min-width: 1200px) {
  .ss-home-contact .contact-form {
    padding: 40px;
  }
}

@media (min-width: 992px) {
  .ss-home-contact__info {
    padding-left: 10%;
  }
}

.contact-form.contact-form--alt label {
  color: #052941;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 8px;
}

.contact-form.contact-form--alt .form-group .form-control {
  background-color: #fff;
  height: 56px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  color: #000;
}

.contact-form.contact-form--alt .form-group .form-control::placeholder,
.contact-form.contact-form--alt .form-group .form-control::-webkit-input-placeholder,
.contact-form.contact-form--alt .form-group .form-control::-moz-placeholder {
  color: #6E6E6E;
}

.contact-form.contact-form--alt .form-group textarea.form-control {
  min-height: 140px;
}

.contact-form.contact-form--alt .form-group .ss-btn {
  width: 100%;
}

.ss-contact-info {
  margin-top: 24px;
}

@media (min-width: 1200px) {
  .ss-contact-info {
    margin-top: 32px;
  }

  .ss-contact-info h3 {
    font-size: 24px;
  }
}

.ss-contact-info__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  row-gap: 26px;
}

.ss-contact-info__list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ss-contact-info__list i {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid rgba(5, 41, 65, 0.16);
  border-radius: 50%;
  color: #052941;
  font-size: 16px;
}

.ss-contact-info__list .text {
  flex: 1 1 0;
  font-weight: 600;
  color: #052941;
}

.ss-contact-info__list .text small {
  display: block;
  color: #6E6E6E;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}

.ss-contact-info__list .text a {
  display: inline-block;
  color: inherit;
}

.ss-contact-info__list .text a:hover {
  color: #1fa2ff;
}

/* End Home Contact Styling */

/* Start Home Review Styling */
@media (min-width: 1200px) {
  .ss-home-review .container {
    max-width: 1440px;
    padding-inline: 0;
  }

  .ss-home-review-col-text {
    padding-inline: 64px;
  }
}

.ss-home-review .section-title {
  margin-bottom: 48px;
}

@media (min-width: 992px) {
  .ss-home-review .review-carousel-media img {
    border-radius: 0px 320px 320px 0px;
  }
}

@media (max-width: 991.98px) {
  .ss-home-review .review-carousel-media img {
    max-height: 300px;
    object-fit: cover;
  }
}

.ss-home-review .review-carousel-text .owl-nav {
  display: none !important;
}

.ss-home-review .review-carousel-text .owl-dots {
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .ss-home-review .review-carousel-text .owl-dots {
    margin-top: 24px;
  }
}

@media (min-width: 1200px) {
  .ss-home-review .review-carousel-text .owl-dots {
    margin-top: 32px;
  }
}

.ss-home-review .review-carousel-text .owl-dots .owl-dot span {
  background-color: rgba(168, 223, 252, 0.212);
  margin: 0;
}

.ss-home-review .review-carousel-text .owl-dots .owl-dot:hover span {
  background-color: rgba(168, 223, 252, 0.5);
}

.ss-home-review .review-carousel-text .owl-dots .owl-dot.active span {
  background-color: #A8DFFC;
}

.ss-home-review p {
  color: inherit;
}

.ss-review-slide .bxs-quote-left {
  font-size: 24px;
  display: block;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .ss-review-slide .bxs-quote-left {
    font-size: 36px;
    margin-bottom: 20px;
  }
}

@media (min-width: 1200px) {
  .ss-review-slide .bxs-quote-left {
    font-size: 46px;
    margin-bottom: 32px;
  }
}

.ss-review-slide q::before,
.ss-review-slide q::after {
  display: none;
}

.ss-review-slide .ss-review-ratings {
  list-style: none;
  padding-left: 0;
  color: #FCD53F;
  display: flex;
  gap: 4px;
  font-size: 20px;
  margin-top: 16px;
}

@media (min-width: 768px) {
  .ss-review-slide .ss-review-ratings {
    font-size: 22px;
    margin-top: 24px;
  }
}

@media (min-width: 1200px) {
  .ss-review-slide .ss-review-ratings {
    font-size: 24px;
    margin-top: 32px;
  }
}

.ss-review-slide .ss-review-author {
  font-size: 20px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  gap: 8px;
}

@media (min-width: 768px) {
  .ss-review-slide .ss-review-author {
    font-size: 22px;
  }
}

@media (min-width: 1200px) {
  .ss-review-slide .ss-review-author {
    font-size: 24px;
  }
}

.ss-review-slide .ss-review-author small {
  font-size: 14px;
  font-weight: 400;
}

/* End Home Review Styling */

/* Start footer styling */
.ss-footer {
  padding-bottom: 40px;
}

@media (min-width: 768px) {
  .ss-footer {
    padding-bottom: 56px;
  }
}

@media (min-width: 1200px) {
  .ss-footer {
    padding-bottom: 80px;
  }
}

.ss-footer p {
  font-weight: 400;
}

.ss-footer-wrapper {
  padding: 28px 15px 0;
  border-radius: 20px;
  background: #052941;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
}

@media (min-width: 576px) {
  .ss-footer-wrapper {
    padding: 32px 20px 0;
  }
}

@media (min-width: 768px) {
  .ss-footer-wrapper {
    padding: 32px 28px 0;
  }
}

@media (min-width: 1200px) {
  .ss-footer-wrapper {
    padding: 40px 48px 0;
    border-radius: 30px;
  }
}

.ss-footer-wrapper :is(h1, h2, h3, h4, h5, h6, p) {
  color: #fff;
}

.ss-footer-top {
  border-radius: 20px;
  background: #FFF;
  box-shadow: 0px 4px 64px 0px rgba(0, 0, 0, 0.12);
  padding: 20px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

@media (min-width: 576px) {
  .ss-footer-top {
    padding: 20px 24px;
    border-radius: 24px;
  }
}

@media (min-width: 768px) {
  .ss-footer-top {
    padding: 20px 32px;
    margin-bottom: 32px;
    border-radius: 48px;
    flex-direction: row;
  }
}

@media (min-width: 1200px) {
  .ss-footer-top {
    padding: 20px 40px;
    margin-bottom: 48px;
    border-radius: 80px;
  }
}

.ss-footer-top__logo {
  margin-bottom: 0;
}

.ss-footer-top__logo img {
  max-width: 163px;
}

.ss-footer-widget .ss-footer-social {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 12px;
  margin-top: 24px;
}

.ss-footer-widget .ss-footer-social a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  border: 1px solid #fff;
  font-size: 20px;
  border-radius: 50%;
}

.ss-footer-widget .ss-footer-social a:hover {
  background-color: #fff;
  color: #052941;
}

.ss-footer-mid.row {
  row-gap: 16px;
}

.ss-footer-widget h3 {
  font-size: 16px;
  font-weight: 600;
}

.ss-footer-widget ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}

.ss-footer-widget li a {
  color: inherit;
}

.ss-footer-widget li a:hover {
  color: #A8DFFC;
}

.ss-footer-list li {
  position: relative;
  padding-left: 20px;
}

.ss-footer-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #A8DFFC;
  position: absolute;
  left: 0;
  top: 8px;
}

.ss-footer-contact li {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

@media (max-width: 768px) {
  .ss-footer-widget .toggleBtn {
    position: relative;
    padding: 8px 32px 8px 8px;
    background-color: rgba(255, 255, 255, 0.05);
    margin-bottom: 0;
  }

  .ss-footer-widget .toggleBtn.active::after {
    transform: translateY(-50%) rotate(180deg);
  }

  .ss-footer-widget .toggleBtn::after {
    content: '\eab6';
    font-family: boxicons;
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    transition: all .2s ease-in-out;
  }

  .ss-footer-widget .toggleBody {
    display: none;
    padding: 8px;
    background-color: rgba(255, 255, 255, 0.1);
  }
}

.ss-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  column-gap: 16px;
  row-gap: 8px;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.64);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 16px 0;
  text-align: center;
  margin-top: 24px;
}

@media (min-width: 992px) {
  .ss-footer-bottom {
    flex-direction: row-reverse;
    text-align: left;
    margin-top: 48px;
  }
}

@media (min-width: 1200px) {
  .ss-footer-bottom {
    margin-top: 64px;
  }
}

.ss-footer-bottom p,
.ss-footer-bottom a {
  color: inherit;
}

.ss-footer-bottom a:hover {
  color: #fff;
}

.ss-footer-bottom p:last-of-type {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .ss-footer-bottom__text {
    flex: 1 1 0;
  }

  .ss-footer-bottom__link {
    flex: 0 0 auto;
  }
}

.ss-footer-bottom__link ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 16px;
  row-gap: 8px;
  margin-bottom: 0;
  justify-content: center;
}

@media (min-width: 992px) {
  .ss-footer-bottom__link ul {
    column-gap: 24px;
    justify-content: flex-end;
  }
}

@media (min-width: 1200px) {
  .ss-footer-bottom__link ul {
    column-gap: 32px;
  }
}

/* End footer styling */

/* ss-search-form styling */

.ss-modal .modal-content {
  background-color: transparent;
  border-radius: 0;
  border: 0;
  padding: 10px 10px 0 0;
}

.ss-modal .modal-body {
  background-color: #fff;
  border-radius: 4px;
  padding-top: 24px;
}

.ss-modal .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  opacity: 1;
  font-size: 10px;
  background-color: #fff;
  border: 1px solid #ba1919;
  color: #fff;
  z-index: 10;
  transition: all .2s;
}

.ss-modal .btn-close:hover {
  background-color: #fccdcd;
}

.ss-search-form form>div {
  display: flex;
  gap: 8px;
}

@media (max-width: 575px) {
  .ss-search-form form>div {
    flex-direction: column;
  }
}

.ss-search-form input[type="text"] {
  height: 48px;
  padding: 8px 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 4px;
}

.ss-search-form input[type="submit"] {
  background-color: #052941;
  color: #fff;
  display: inline-block;
  border: 1px solid #052941;
  padding: 8px 24px;
  border-radius: 4px;
  transition: all .2s;
}

@media (min-width: 576px) {
  .ss-search-form input[type="text"] {
    flex: 1 1 0;
  }

  .ss-search-form input[type="submit"] {
    flex: 0 0 auto;
  }
}

.ss-search-form input[type="submit"]:hover {
  background-color: #fff;
  color: #052941;
}

/* Service sub pages */
.service-sub-page {
  padding-bottom: 80px;
}
.hidden {
  display: none;
}

.service-sub-page .service-content-area {
  padding-top: 80px;
  padding-bottom: 96px;
  background: #fff url('../img/service-sub/service-area-bg.png') right top no-repeat;
}

.service-sub-page .top-title {
  text-align: center;
  padding-bottom: 64px;
}

.service-sub-page .top-title h2 {
  padding-bottom: 8px;
  font-size: 35px;
}

.service-sub-page .top-title p {
  font-weight: 500;
}

.service-sub-page .affairs-services-section {
  padding-bottom: 80px;
  padding-top: 64px;
  background: #fff url('../img/service-sub/regulatory-bg.png') no-repeat left top;
  height: fit-content;
}

.service-sub-page .affairs-services-header {
  text-align: center;
  padding-bottom: 24px;
}

.service-sub-page .affairs-services-header h2 {
  font-size: 35px;
}

.service-sub-page .affairs-services-header {
  font-weight: 400;
}

.service-sub-page .divider {
  padding-top: 8px;
  padding-bottom: 16px;
}

.service-sub-page .divider h2 {
  font-size: 35px;
}

.service-sub-page .section-title .section-icon {
  position: relative;
  width: 310px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  color: white;
}

.service-sub-page .col-md-6 h3 {
  text-align: center;
  padding-top: 16px;
  padding-bottom: 16px;
}

.service-sub-page .benefit-section {
  background-color: #052941;
  padding-top: 80px;
  padding-bottom: 80px;
}

.service-sub-page .benefits {
  padding-left: 80px;
}

.service-sub-page .benefits-content h2,
.service-sub-page .benefits-content h4 {
  color: white;
  letter-spacing: 0.5px;
}

.service-sub-page .benefits-content p {
  color: rgba(255, 255, 255, 0.80);
  font-size: 16px;
  font-weight: 400;
  font-family: 'Montserrat';
}

.service-sub-page .benefit-item {
  padding-top: 8px;
}

.service-sub-page .benefit-item h4 {
  font-size: 18px;
}

.service-sub-page .benefits-content-top {
  padding-bottom: 12px;
}

.service-sub-page .button {
  padding: 12px 24px;
  border: none;
  margin-top: 36px;
  background-color: white;
  border: 2px solid #fff;
}

.service-sub-page .button a {
  color: #052941;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.service-sub-page .button:hover a {
  color: #fff !important;
}
.service-sub-page .button:hover {
  background-color: transparent;
}

.service-sub-page .affairs-work-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.service-sub-page .blog-item-img {
  position: relative;
}

.service-sub-page .blog-item .blog-item-img .title {
  background-color: #052941;
  display: inline-block;
  padding: 10px 15px;
  text-align: center;
  position: absolute;
  left: 20px;
  bottom: -35px;
  color: white;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.service-sub-page .blog-item {
  padding-bottom: 24px;
}

.service-sub-page .core-section {
  background-color: #d7dde0;
  padding-top: 64px;
  padding-bottom: 96px;
}

.service-sub-page .tab-navigation {
  background-color: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  list-style-type: none;
  text-align: center;
}

.service-sub-page .tab-navigation-col {
  height: auto;
  font-size: 18px;
  margin-right: 6px;
  width: 100%;
  padding: 38px 32px 20px 40px;
}

.service-sub-page .tab-navigation-col a img {
  color: #052941;
}

.service-sub-page .tab-navigation-col img {
  padding-bottom: 20px;
}
.default-btn {
  border: 2px solid;
}

.service-sub-page .service-content-area.gray-bg {
  background: #f1f1f1;
}

.service-sub-page .service-content-area.gray-bg .top-title {
  padding-bottom: 15px;
}

.service-sub-page .service-content-area .row {
  background: #fff;
  padding: 20px 10px;
  border-radius: 20px;
}

.service-sub-page .service-content-area .default-btn {
  margin-top: 30px;
}
.service-sub-page .service-content-area.gray-bg.gray-bg2 {
  padding-top: 0;
}
@media (min-width: 768px) {
  .service-sub-page .service-content-area.gray-bg .about-content,
  .service-sub-page .service-content-area.gray-bg .section-title {
    margin-bottom: 0;
  }

  .service-sub-page .service-content-area.gray-bg.gray-bg2 {
    margin-top: -60px;
  }

  .service-sub-page .service-content-area.gray-bg.gray-bg2 .row {
    flex-direction: row-reverse;
  }
  .service-sub-page .service-content-area .row .col-lg-6:first-child {
    max-width: 470px;
  }

  .service-sub-page .service-content-area .row img {
    object-fit: cover;
    border-radius: 20px;
  }

  .service-sub-page .service-content-area .col-lg-6 {
    width: calc(100% - 470px);
  }

  .service-sub-page .service-content-area.gray-bg .col-lg-6 h2 {
    font-size: 24px;
  }
}

.service-sub-page .service-content-area .default-btn:hover {
  color: #052941;
  background: #fff !important;
}

.service-sub-page .service-content-area .default-btn:before {
  display: none;
}
@media (min-width: 576px) {
  .service-sub-page .tab-navigation-col {
    width: 50%;
  }
}

@media (min-width: 768px) {
  .service-sub-page .tab-navigation-col {
    width: 33.33%;
  }
}

@media (min-width: 1024px) {
  .service-sub-page .tab-navigation-col {
    width: 20%;
  }
}

.service-sub-page .tab-content {
  display: flex;
  flex-wrap: wrap;
  margin-left: 12px;
  margin-right: 12px;
}

.service-sub-page .col-left {
  width: 100%;
}

@media (min-width: 768px) {
  .service-sub-page .col-left {
    width: 50%;
  }
}

@media (min-width: 1024px) {
  .service-sub-page .col-left {
    width: 40%;
  }
}

.service-sub-page .col-right {
  width: 60%;
}

@media (min-width: 768px) {
  .service-sub-page .col-right {
    width: 50%;
  }
}

@media (min-width: 1024px) {
  .service-sub-page .col-right {
    width: 60%;
  }
}

.service-sub-page .mobile-dropdown {
  margin-bottom: 32px;
}

.service-sub-page .tabNav {
  list-style: none;
  padding-bottom: 6px;
  display: flex;
  justify-content: space-between;
  padding: 8px;
  border-radius: 12px;
  gap: 16px;
}

.service-sub-page .tabNav .nav-item {
  min-height: 48px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  color: #1C2B2D;
  background-color: transparent;
  width: 100%;
  text-align: center;
  flex-direction: column;
}
.service-sub-page .tabNav .nav-item {
  padding: 0;

.nav-link {
  background-color: #ebeef0;
      padding: 20px 10px;
      border-radius: 0;

  h5 {
    color: #6E6E6E;
    font-size: 18px;
  }
}
}

.service-sub-page .tabNav .nav-link:not(.active) img {
  filter: grayscale(.9);
  opacity: 0.5;
}

.service-sub-page .nav-tabs {
  --bs-nav-tabs-border-width: 0;
}

.service-sub-page .tabNav .nav-item .nav-link:hover,
.service-sub-page .tabNav .nav-item .active {
  background-color: white;

  h5 {
    color: #052941;
  }
}

.service-sub-page .tabNav img {
  display: block;
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .service-sub-page .tabNav {
    border: 1px solid #d1d5db;
    flex-wrap: wrap;
  }
}

.service-sub-page .tabNav .nav-item {
  flex: 1;
}

.ss-custom-tab .nav-tabs .nav-link {
  height: 100%;
  position: relative;
}
.ss-custom-tab .nav-tabs .active::after {
   content: '';
    position: absolute;
    display: inline-block;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 17.3px 10px 0px 10px;
    border-color: #fff transparent transparent transparent;
    margin-bottom: -15px;
}

.ss-custom-tab .ssTabNav {
  padding-bottom: 16px;

}

.service-sub-page .tabPane {
  background-color: white;
  padding: 20px 20px 20px 7px;
  border-radius: 20px;
}
.service-sub-page .ss-custom-tab .col-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.core-section .ss-custom-core-header {
  color: #052941;
  text-align: center;
  font-size: 35px;
  font-style: normal;
  font-weight: 600;
  padding-bottom: 32px;
}

.service-sub-page .tab-content .col-right h2 {
  font-size: 24px;
}

.service-sub-page .tab-content .col-right a {
  margin-top: 16px;
}
/* Award Page */
.award-page .blog-item .blog-item-img {
  border-radius: 8px;
  background: rgba(5, 41, 65, 0.06);
  padding: 35px;
}

.award-page .blog-item .blog-item-img img {
  border: 0;
  max-width: 215px;
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.award-page .section-title p {
  color: #000;
}

.award-page .blog-item {
  border-radius: 8px;
  background: #FFF;
  padding: 16px 16px 24px 16px;
  box-shadow: 0px 4px 32px 0px rgba(168, 223, 253, 0.48);
}

.award-page .blog-item .award-content {
  height: auto !important;
  padding: 0;
}

.award-page .blog-item .award-content h3 {
  color: #052941;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px;
  padding-top: 24px;
  margin: 0;
}

@media (min-width: 768px) {
  .award-page .row.pt-45 {
    row-gap: 60px;
  }

  .award-page .blog-item {
    height: 100%;
    margin-bottom: 0;
  }
  .award-page .blog-item .blog-item-img {
    height: 280px;
  }

  .award-page .blog-item .blog-item-img a {
    height: 100%;
  }
}

@media (min-width: 1024px) {
.award-page .blog-item .blog-item-img {
  height: 330px;
}
  .award-page .section-title h2 {
    font-size: 40px;
  }
}

@media (min-width: 1200px) {

  .award-page .blog-item .blog-item-img {
    height: 380px;
  }
}


/* FAQ Start */

.faq-block {
  position: relative;
  background-image: url(../img/img-honeycomb-patterm-right.png);
  background-size: 200px;
  background-repeat: no-repeat;
  background-position: 100% -40px;
}

.faq-block .section-title {
    max-width: 950px;
    margin: 0 auto 30px;
}

.faq-block .accordion-item {
    margin-top: 16px;
    border: none;
    box-shadow: 0px 7px 20.6px 0px rgba(0, 0, 0, 0.05);
}

.faq-block button.accordion-button {
    background: #fff !important;
    box-shadow: none;
    font-weight: 600;
    font-weight: 18px;
    color: #052941;
    gap: 20px;
}

.faq-block .accordion-body {
    padding-top: 0;
    color: #6E6E6E;
}

@media (min-width: 768px) {
  .faq-block button.accordion-button {
      font-size: 20px;
  }
  .faq-block .accordion-body {
    padding-right: 60px;
  }
}

/* FAQ End */
