html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

.page-holder {
  overflow: hidden;
}

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

.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
}

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

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
}

.button-group {
  display: flex;
  align-items: center;
  gap: 18px;
}

.btn {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.btn span {
  display: flex;
  margin-right: 4px;
}
.btn--blue {
  background: #46B5F3;
  color: #fff;
}
.btn--white {
  background: #fff;
  color: #2E2E2E;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Noto Sans", sans-serif;
  margin: 0;
}

h1 {
  font-size: 34px;
  font-weight: bold;
  line-height: 147%;
}
@media (min-width: 991px) {
  h1 {
    font-size: 48px;
  }
}

h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 147%;
}
@media (min-width: 991px) {
  h2 {
    font-size: 36px;
  }
}

p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 150%;
  color: rgba(46, 46, 46, 0.5);
  margin: 0 0 16px 0;
}

.header {
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0;
  right: 0;
}
.header__wrapper {
  display: flex;
  align-items: center;
  padding: 14px 24px 0 24px;
}
.header__logo {
  position: relative;
  z-index: 99;
  max-width: 100px;
}
@media (min-width: 768px) {
  .header__logo {
    max-width: 220px;
  }
}
.header__hamburger {
  display: none;
  cursor: pointer;
  margin-right: 12px;
}
@media (min-width: 768px) {
  .header__hamburger {
    margin-right: 24px;
  }
}
@media (max-width: 991px) {
  .header__hamburger {
    display: block;
    margin-left: auto;
    position: relative;
    z-index: 99;
  }
}
.header__hamburger-icon {
  display: block;
}
.header__hamburger-close {
  display: none;
}
.header__nav {
  position: absolute;
  background-color: #333;
  width: 100%;
  left: 0;
  top: 110%;
  height: auto;
  z-index: 10;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  padding: 20px 0;
}
.header__nav.open {
  display: block;
  opacity: 1;
  visibility: visible;
}
@media (min-width: 991px) {
  .header__nav {
    position: relative;
    background: transparent;
    width: unset;
    margin: 0 25px 0 auto;
    text-align: center;
    opacity: 1;
    visibility: visible;
    display: block;
  }
}
.header__nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 991px) {
  .header__nav-links {
    flex-direction: row;
  }
}
.header__nav-link {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  text-decoration: none;
  padding: 12px 14px;
}
.header__buttons {
  position: relative;
  z-index: 3;
}
.header__buttons .btn {
  padding: 16px;
}
@media (min-width: 420px) {
  .header__buttons .btn {
    padding: 16px 32px;
  }
}

.footer {
  background: #2E2E2E;
  padding: 55px 24px 25px 24px;
}
.footer__hr {
  width: 100%;
  height: 1px;
  display: block;
  background: #fff;
  opacity: 7%;
  margin: 60px 0 30px 0;
}
.footer__logo {
  margin-bottom: 40px;
}
.footer__pages {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__pages-link {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  text-decoration: none;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
@media (min-width: 768px) {
  .footer__bottom {
    justify-content: space-between;
  }
}
.footer__social {
  display: flex;
  gap: 40px;
}
.footer__privacy p {
  color: #fff;
  opacity: 22%;
}

body.page-id-248 header, body.page-id-248 footer, body.page-id-248 .gtd, body.page-id-248 #videoModal {
  display: none;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  cursor: pointer;
}
.slider-arrow i {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  width: 32px;
  height: 32px;
}
@media (min-width: 768px) {
  .slider-arrow i {
    width: 44px;
    height: 44px;
  }
}
.slider-arrow.prev {
  left: 0;
}
.slider-arrow.prev i {
  background-image: url("../../img/arrow-left.svg");
}
.slider-arrow.prev.is-blue i {
  background-image: url("../../img/arrow-left-blue.svg");
}
.slider-arrow.next {
  right: 0;
}
.slider-arrow.next i {
  background-image: url("../../img/arrow-right.svg");
}
.slider-arrow.next.is-blue i {
  background-image: url("../../img/arrow-right-blue.svg");
}

.hero {
  padding: 0 24px;
  margin-bottom: 0;
  min-height: 640px;
  position: relative;
  display: flex;
  align-items: center;
}
@media (min-width: 568px) {
  .hero {
    margin-bottom: 60px;
  }
}
@media (min-width: 991px) {
  .hero {
    margin-bottom: 100px;
    min-height: 840px;
  }
}
.hero__bgd {
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 420px) {
  .hero__bgd {
    background-position: center right;
  }
}
@media (min-width: 991px) {
  .hero__bgd {
    background-position: center bottom;
  }
}
.hero__content {
  max-width: 602px;
  position: relative;
  z-index: 1;
}
.hero p {
  margin-bottom: 0;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero h1 {
  color: #fff;
  margin-bottom: 60px;
}

.atp {
  margin-bottom: 100px;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .atp {
    margin-bottom: 120px;
  }
}
@media (min-width: 991px) {
  .atp {
    margin-bottom: 220px;
  }
}
.atp__tf {
  text-align: center;
}
@media (min-width: 991px) {
  .atp__tf {
    text-align: left;
  }
}
.atp__top {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  gap: 32px;
  flex-direction: column;
}
@media (min-width: 991px) {
  .atp__top {
    flex-direction: row;
    justify-content: space-between;
  }
}
.atp__box {
  width: 100%;
  text-align: center;
  position: relative;
  padding-bottom: 0;
  max-width: 359px;
  min-height: 241px;
}
@media (min-width: 420px) {
  .atp__box {
    padding-bottom: 37px;
  }
}
.atp__box::after {
  content: "";
  background-image: url("../../img/box-svg.svg");
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
}
@media (min-width: 420px) {
  .atp__box::after {
    background-size: cover;
  }
}
.atp__box img {
  margin-bottom: 10px;
}
@media (min-width: 420px) {
  .atp__box img {
    margin-bottom: 35px;
  }
}
.atp__box h3 {
  margin-bottom: 14px;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
}
.atp__box p {
  padding: 0 30px;
}
.atp__button {
  min-width: 176px;
}
.atp__boxes {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}
@media (min-width: 1220px) {
  .atp__boxes {
    flex-direction: row;
    gap: 36px;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
}

.mto {
  margin-bottom: 100px;
}
@media (min-width: 768px) {
  .mto {
    margin-bottom: 120px;
  }
}
@media (min-width: 991px) {
  .mto {
    margin-bottom: 180px;
  }
}
.mto h2 {
  margin-bottom: 32px;
}
.mto__content {
  padding: 0 24px;
  margin-bottom: 60px;
}
@media (min-width: 991px) {
  .mto__content {
    margin-bottom: 120px;
  }
}
.mto__shortcode {
  text-align: center;
}
.mto__shortcode a {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  padding: 16px 32px;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  background: #46B5F3;
  color: #fff;
}
.mto__bgd-line {
  background-image: url("../../img/section-line-background.svg");
  width: 100%;
  min-height: 120px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (min-width: 991px) {
  .mto__bgd-line {
    min-height: 160px;
  }
}

.cto {
  margin-bottom: 100px;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .cto {
    margin-bottom: 120px;
  }
}
@media (min-width: 991px) {
  .cto {
    margin-bottom: 180px;
  }
}
.cto__tf {
  margin-bottom: 34px;
}
.cto h2 {
  margin-bottom: 32px;
}

.pia {
  padding: 100px 24px;
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
@media (min-width: 991px) {
  .pia {
    margin-bottom: 100px;
  }
}
.pia__bgd {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.pia__tf {
  margin-bottom: 50px;
  position: relative;
}
.pia__tf h2 {
  color: #fff;
}
.pia__tf p {
  color: #fff;
  opacity: 0.65;
}
.pia__slide {
  text-align: center;
}
.pia__slide-image {
  max-width: 700px;
  margin: 0 auto;
}
.pia__slide-btn {
  background: none;
}
.pia__slide-title {
  margin-top: 12px;
}
.pia__slide-title p {
  font-size: 26px;
  font-family: "Noto Sans", sans-serif;
  color: #fff;
}
@media (min-width: 991px) {
  .pia__slide-title p {
    font-size: 32px;
  }
}
.pia__slide img {
  margin: 40px auto 0 auto;
}
@media (min-width: 768px) {
  .pia__slide img {
    margin: 0 auto;
  }
}
.pia .slider-arrow {
  top: 10px;
}
@media (min-width: 768px) {
  .pia .slider-arrow {
    top: 50%;
  }
}

.itp {
  position: relative;
  margin-bottom: 100px;
}
@media (min-width: 768px) {
  .itp {
    margin-bottom: 120px;
  }
}
@media (min-width: 991px) {
  .itp {
    margin-bottom: 165px;
  }
}
.itp__tf {
  margin-bottom: 50px;
  position: relative;
  padding: 0 24px;
}
.itp__slide {
  text-align: center;
}
.itp__slide img {
  margin: 0 auto;
}
.itp__slide-box {
  position: relative;
  cursor: pointer;
}
.itp__slide-box button {
  padding: 0;
  margin: 0;
}
.itp__slide-box-play {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.itp__slide-box-play svg {
  width: 40px;
  height: 40px;
}
@media (min-width: 991px) {
  .itp__slide-box-play svg {
    width: 64px;
    height: 64px;
  }
}
.itp .swiper-slide {
  transform: scale(0.85);
}
.itp .swiper-slide-active {
  transform: none;
}
.itp .swiper-pagination {
  bottom: -40px;
}
.itp .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
}
.itp .swiper-pagination-bullet-active {
  background: #46B5F3;
}

.nwsl {
  position: relative;
  margin-bottom: 100px;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .nwsl {
    margin-bottom: 120px;
  }
}
@media (min-width: 991px) {
  .nwsl {
    margin-bottom: 200px;
  }
}
.nwsl__tf {
  margin-bottom: 45px;
}
.nwsl .news__slide {
  border-radius: 16px;
}
.nwsl .news__slide-link {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #46B5F3;
  text-decoration: none;
  display: block;
  padding: 32px 20px;
  background: #fff;
  box-shadow: 0 4px 20px 0 rgba(16, 24, 46, 0.04);
  border-radius: 16px;
}
.nwsl .news__slide-link span {
  margin-left: 8px;
}
.nwsl .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  gap: 8px;
  padding: 0;
  margin-top: 60px;
}
.nwsl .slick-dots li button {
  padding: 0;
  display: block;
  font-size: 0;
  min-width: 6px;
  max-width: 6px;
  min-height: 6px;
  max-height: 6px;
  border-radius: 100px;
  background: #C1CBD9;
  border: none;
}
.nwsl .slick-dots li.slick-active button {
  background: #46B5F3;
}
.nwsl .slick-list {
  margin: 0 -10px;
}
.nwsl .slick-slide {
  margin: 0 10px;
}
.nwsl .slick-arrow.prev,
.nwsl .slick-arrow.next {
  top: unset;
  bottom: -29px;
}
@media (min-width: 768px) {
  .nwsl .slick-arrow.prev,
.nwsl .slick-arrow.next {
    bottom: -40px;
  }
}

.gtd {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: 200px 24px 40px 24px;
}
@media (min-width: 991px) {
  .gtd {
    padding: 0 24px;
  }
}
.gtd__bgd {
  background-image: url("../../img/footer-bg_v2.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: initial;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.gtd__tf {
  max-width: 50%;
}
.gtd .btn--white {
  color: #46B5F3;
}
.gtd__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 991px) {
  .gtd__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
.gtd__grid-item h2 {
  color: #fff;
  margin-bottom: 10px;
}
.gtd__grid-item p {
  color: #fff;
  margin-bottom: 20px;
}

.abhero {
  background-image: url("../../img/hero_section_bgd.webp");
  position: relative;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  margin-bottom: 60px;
  min-height: 400px;
  display: flex;
  align-items: center;
}
@media (min-width: 991px) {
  .abhero {
    min-height: 720px;
  }
}
.abhero h1 {
  margin-top: 0;
  color: #fff;
}
@media (min-width: 991px) {
  .abhero h1 {
    margin-top: -100px;
  }
}

.pbc {
  padding: 0 24px;
  position: relative;
}
.pbc__tf {
  position: relative;
  z-index: 2;
}
.pbc__tf h2 {
  margin-bottom: 18px;
}
.pbc__tf h3 {
  font-size: 20px;
  font-weight: 600;
  color: #46B5F3;
  margin-bottom: 18px;
}
.pbc__tf p {
  margin-bottom: 20px;
}
.pbc__image {
  max-width: 100%;
}
@media (min-width: 991px) {
  .pbc__image {
    max-width: 60%;
    margin-left: auto;
  }
}
.pbc__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 991px) {
  .pbc__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.pbc__bgd-line {
  background-image: url("../../img/section-line-background.svg");
  width: 100%;
  min-height: 120px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
}
@media (min-width: 991px) {
  .pbc__bgd-line {
    min-height: 160px;
    position: absolute;
    bottom: -70px;
    left: 0;
    right: 0;
  }
}

.sms {
  margin-bottom: 100px;
  padding: 0 24px;
}
@media (min-width: 991px) {
  .sms {
    margin-bottom: 120px;
  }
}
.sms__tf {
  max-width: 768px;
  margin: 0 auto 60px auto;
}
.sms__tf h2 {
  margin-bottom: 18px;
}
.sms__box {
  width: 100%;
  text-align: center;
  position: relative;
  padding-bottom: 37px;
  max-width: 359px;
  min-height: 241px;
}
.sms__box::after {
  content: "";
  background-image: url("../../img/box-svg.svg");
  width: 100%;
  height: 100%;
  background-size: cover;
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
}
.sms__box img {
  margin-bottom: 10px;
}
.sms__box h3 {
  margin-bottom: 14px;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 500;
}
.sms__box p {
  padding: 0 17px;
  margin-bottom: 0;
}
.sms__boxes {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}
@media (min-width: 1220px) {
  .sms__boxes {
    flex-direction: row;
    gap: 36px;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
}

.srs {
  margin-bottom: 100px;
  padding: 0 24px;
}
@media (min-width: 991px) {
  .srs {
    margin-bottom: 150px;
  }
}
.srs__tf {
  max-width: 768px;
  margin: 0 auto 60px auto;
}
.srs__tf h2 {
  margin-bottom: 18px;
}
.srs__boxes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}
@media (min-width: 991px) {
  .srs__boxes {
    grid-template-columns: 1fr 1fr;
  }
}
.srs__box {
  background: #fff;
  border-radius: 17px;
  padding: 36px 24px;
  display: flex;
  align-items: center;
  gap: 29px;
  box-shadow: 0 4px 20px 0 rgba(16, 24, 46, 0.04);
}
.srs__box-icon {
  min-width: 64px;
}

.team {
  position: relative;
  min-height: 980px;
  margin-bottom: 100px;
  padding: 83px 24px 0 24px;
}
.team__bgd {
  background-image: url("../../img/team-bgd.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.team__tf {
  position: relative;
  margin-bottom: 60px;
}
.team__tf h2 {
  color: #fff;
  margin-bottom: 18px;
}
.team__tf p {
  color: #fff;
  opacity: 65%;
}
.team__slide1 {
  margin-bottom: 70px;
}
.team__slide1 p {
  color: #fff;
  margin-bottom: 0;
}
.team__slide1.slick-current p {
  color: #90D7FF;
  text-decoration: underline;
  text-underline-offset: 8px;
}
.team__slide1-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.team__slide1-icon {
  max-width: 64px;
}
.team__slide1-icon img {
  border-radius: 100%;
}
.team__slide-wrapper {
  background: #fff;
  box-shadow: 0 4px 20px 0 rgba(16, 24, 46, 0.04);
  padding: 32px;
  border-radius: 43px;
}
@media (min-width: 991px) {
  .team__slide-wrapper {
    padding: 32px 52px;
  }
}
.team__slide-top {
  display: flex;
  align-items: center;
  gap: 42px;
  margin-bottom: 42px;
  flex-direction: column;
}
@media (min-width: 991px) {
  .team__slide-top {
    flex-direction: row;
  }
}
.team__slide-name {
  font-size: 24px;
  color: #2E2E2E;
  font-weight: 600;
  margin-bottom: 6px;
}
.team__slide-position {
  font-size: 18px;
  color: #46B5F3;
  font-weight: 500;
  margin-bottom: 0;
}
.team__slide-tf p {
  color: rgba(46, 46, 46, 0.65);
}
.team__slide-icon {
  max-width: 120px;
  border-radius: 100%;
}
.team__slide-icon img {
  border-radius: 100%;
}
.team .slider-for {
  margin-top: 40px;
}
@media (min-width: 991px) {
  .team .slider-for {
    margin-top: 0;
  }
}
.team .slider-arrow.next {
  right: 0;
  transform: none;
  top: -50px;
}
@media (min-width: 991px) {
  .team .slider-arrow.next {
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.team .slider-arrow.prev {
  left: 0;
  transform: none;
  top: -50px;
}
@media (min-width: 991px) {
  .team .slider-arrow.prev {
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
  }
}

.bep {
  padding: 0 24px;
  margin-bottom: 100px;
}
@media (min-width: 768px) {
  .bep {
    margin-bottom: 140px;
  }
}
@media (min-width: 991px) {
  .bep {
    margin-bottom: 190px;
  }
}
.bep__tf h2 {
  margin-bottom: 18px;
}
.bep__tf h3 {
  font-size: 20px;
  font-weight: 600;
  color: #46B5F3;
  margin-bottom: 18px;
}
.bep__tf p {
  margin-bottom: 20px;
}
.bep__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 991px) {
  .bep__grid {
    grid-template-columns: 1fr 0.33fr;
    gap: 20px;
  }
}

.byc {
  margin-bottom: 100px;
  padding: 0 24px;
}
@media (min-width: 991px) {
  .byc {
    margin-bottom: 150px;
  }
}
.byc__tf {
  max-width: 768px;
  margin: 0 auto 60px auto;
}
.byc__tf h2 {
  margin-bottom: 18px;
}
.byc__tf p {
  margin-bottom: 0;
}
.byc__boxes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}
@media (min-width: 991px) {
  .byc__boxes {
    grid-template-columns: 1fr 1fr;
  }
}
.byc__box {
  background: #fff;
  border-radius: 17px;
  padding: 36px 24px;
  box-shadow: 0 4px 20px 0 rgba(16, 24, 46, 0.04);
}
.byc__box-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.blog {
  margin-bottom: 100px;
  padding: 0 24px;
}
@media (min-width: 991px) {
  .blog {
    margin-bottom: 150px;
  }
}
.blog__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .blog__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 991px) {
  .blog__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.blog__post {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog__post-image {
  width: 100%;
  height: 180px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
}
@media (min-width: 768px) {
  .blog__post-image {
    height: 160px;
  }
}
@media (min-width: 991px) {
  .blog__post-image {
    height: 210px;
  }
}
.blog__post-content {
  background: #fff;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  box-shadow: 0 4px 20px 0 rgba(16, 24, 46, 0.04);
  padding: 24px 30px 33px 27px;
  margin-top: -13px;
  height: 100%;
}
.blog__post-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  color: #2E2E2E;
}
.blog__post-description {
  margin-bottom: 17px;
}
.blog__post-link {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #46B5F3;
  text-decoration: none;
  display: block;
  width: 100%;
  border-radius: 16px;
}
.blog__post-link span {
  margin-left: 8px;
}

.post__bgd {
  background-image: url("../../img/hero_section_bgd.webp");
  position: relative;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  min-height: 400px;
  display: flex;
  align-items: center;
}
@media (min-width: 991px) {
  .post__bgd {
    min-height: 600px;
  }
}
.post-wrapper {
  max-width: 940px;
  margin: -120px auto 100px auto;
  padding: 0 24px;
  position: relative;
}
@media (min-width: 991px) {
  .post-wrapper {
    margin: -300px auto 160px auto;
  }
}
.post__image {
  margin-bottom: 60px;
}
@media (min-width: 991px) {
  .post__image {
    margin-bottom: 100px;
  }
}
.post__button {
  text-align: center;
}
.post__button span {
  margin-right: 10px;
}
.post__content {
  border-top: 1px solid #2E2E2E;
  padding-top: 38px;
  margin-top: 30px;
  margin-bottom: 70px;
}
.post__content p {
  color: #757677;
}
.post__content p strong {
  color: #2E2E2E;
}
.post__content h2 {
  margin-bottom: 25px;
  margin-top: 10px;
}
.post__content h3 {
  margin-bottom: 24px;
}
.post__content h5 {
  margin: 32px 0 15px 0;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fefefe;
  padding: 20px;
  border-radius: 5px;
  max-width: 90%;
  min-width: 90%;
}
@media (min-width: 991px) {
  .modal-content {
    max-width: 80%;
    min-width: 50%;
  }
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  margin-bottom: 20px;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

#videoContainer {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  min-width: 300px;
  /* Add this line */
  width: 100%;
  /* Add this line */
}

#videoContainer iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/*# sourceMappingURL=app.css.map */
