@font-face {
  font-family: "Barlow Semi Condensed";
  src: url("fonts/BarlowSemiCondensed-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Semi Condensed";
  src: url("fonts/BarlowSemiCondensed-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Semi Condensed";
  src: url("fonts/BarlowSemiCondensed-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow Semi Condensed";
  src: url("fonts/BarlowSemiCondensed-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("fonts/Sora-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sora";
  src: url("fonts/Sora-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  font-size: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Georgia", sans-serif;
  color: #2e2e2e;
  line-height: 1.5;
  position: relative;
  width: 100%;
}
body.m-bg-img {
  background-image: url(assets/bg_shapes.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

h1, h2, h3 {
  font-family: "Tahoma", sans-serif;
  font-weight: 700;
  margin: 0;
}

h1 {
  font-size: 60px;
  line-height: 70px;
}

h2 {
  font-size: 40px;
  line-height: 54px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

ul {
  list-style: none;
}

button {
  border: 0;
  cursor: pointer;
}

.l-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
}

main {
  max-width: 1440px;
  margin: 0 auto 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
  min-height: 60%;
}

.link {
  text-decoration: underline;
  color: #1b7fbd;
  transition: 0.3s;
}

.w-1024px {
  width: 1024px;
}

.b-btn {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: "Tahoma", sans-serif;
  font-size: 14px;
  line-height: 14px;
  padding: 8px 24px;
  color: #fff;
  transition: 0.3s;
  border: 0;
}
.b-btn:hover {
  cursor: pointer;
}
.b-btn.rounded {
  border-radius: 100px;
}
.b-btn.primary {
  background-color: #016B61;
}

.b-input-group {
  position: relative;
}
.b-input-group input, .b-input-group textarea {
  width: 100%;
  border: 1px solid #a7a7a7;
  border-radius: 7px;
  padding: 7px 20px;
  min-height: 59px;
  color: #2e2e2e;
  font-size: 18px;
  font-family: "Georgia", sans-serif;
  line-height: 20px;
}
.b-input-group input.with-label, .b-input-group textarea.with-label {
  padding: 16px 20px 4px;
}
.b-input-group input:focus-visible, .b-input-group input:focus, .b-input-group input:hover, .b-input-group input:active, .b-input-group textarea:focus-visible, .b-input-group textarea:focus, .b-input-group textarea:hover, .b-input-group textarea:active {
  border: 1px solid #a7a7a7;
}
.b-input-group textarea {
  padding-top: 16px;
}
.b-input-group label {
  position: absolute;
  top: 8px;
  left: 20px;
  font-size: 10px;
  line-height: 20px;
}

.b-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.b-checkbox input[type=checkbox] {
  margin-top: 4px;
}
.b-checkbox label {
  font-size: 10px;
  line-height: 20px;
  cursor: pointer;
}
.b-checkbox label a {
  color: #c36;
}
.b-checkbox label a:hover {
  color: #2e2e2e;
}

.m-x-auto {
  margin: 0 auto;
}

.m-fit {
  width: -moz-fit-content;
  width: fit-content;
}

.m-lh-0 {
  line-height: 0;
}

.m-bold {
  font-weight: 700;
}

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

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

.t-20 {
  font-size: 20px;
  line-height: 30px;
}

.m-hidden {
  display: none;
}

.m-show {
  display: block;
}

.w-30 {
  width: 30% !important;
}

.w-70 {
  width: 70% !important;
}

@keyframes starbucksAnimation {
  from {
    right: 0;
    opacity: 0;
  }
  to {
    right: calc(50% - 224px);
    opacity: 100%;
  }
}
@media screen and (max-width: 576px) {
  @keyframes starbucksAnimation {
    from {
      right: 0;
      opacity: 0;
    }
    to {
      right: calc(50% - 40vw);
      opacity: 100%;
    }
  }
}
.b-overlay {
  display: none;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2;
  transition: all 1s ease-in-out;
}

.starbucks-animation-forwards {
  animation: starbucksAnimation 0.5s ease-in forwards;
  animation-direction: normal;
}

.starbucks-animation-reverse {
  animation: starbucksAnimation 0.5s ease-in forwards;
  animation-direction: reverse;
}

.b-starbucks-modal {
  position: absolute;
  z-index: 3;
  border-radius: 16px;
  top: calc(50% - 160px);
  width: 448px;
  height: 320px;
  right: calc(50% - 224px);
  display: flex;
  padding: 0 30px;
  background-color: #fff;
}
@media screen and (max-width: 576px) {
  .b-starbucks-modal {
    width: 80vw;
    height: auto;
    right: calc(50% - 40vw);
  }
}
.b-starbucks-modal .close-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  font-size: 32px;
  line-height: 16px;
  text-align: center;
  background-color: #F3F3F3;
  cursor: pointer;
  border-radius: 5px;
}
.b-starbucks-modal .starbucks-modal-content-wrapper {
  display: flex;
  flex-direction: row;
  gap: 24px;
  width: 100%;
  padding: 50px 0 58px;
}
@media screen and (max-width: 576px) {
  .b-starbucks-modal .starbucks-modal-content-wrapper {
    flex-direction: column;
    padding: 8vw 0;
  }
}
.b-starbucks-modal .starbucks-modal-content-wrapper .starbucks-logo {
  margin-top: 7px;
  width: 57px;
  height: 57px;
}
@media screen and (max-width: 576px) {
  .b-starbucks-modal .starbucks-modal-content-wrapper .starbucks-logo {
    margin: 0 auto;
    width: 45px;
    height: 45px;
  }
}
.b-starbucks-modal .starbucks-modal-content-wrapper .starbucks-modal-title {
  font-size: 28px;
  line-height: 40px;
  padding-bottom: 4px;
}
@media screen and (max-width: 576px) {
  .b-starbucks-modal .starbucks-modal-content-wrapper .starbucks-modal-title {
    font-size: 20px;
    line-height: 30px;
  }
}
.b-starbucks-modal .starbucks-modal-content-wrapper .starbucks-modal-text {
  padding-bottom: 16px;
}
@media screen and (max-width: 576px) {
  .b-starbucks-modal .starbucks-modal-content-wrapper .starbucks-modal-text {
    font-size: 14px;
    line-height: 20px;
  }
}

.b-starbucks-btn {
  position: fixed;
  z-index: 10;
  width: 92px;
  height: 92px;
  top: 76vh;
  right: 13.5vw;
  padding: 17px;
  background-color: rgba(255, 255, 255, 0.8588235294);
  border-radius: 8px;
  box-shadow: 16px 16px 16px 0px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  .b-starbucks-btn {
    top: 85vh;
    right: 11px;
  }
}
@media screen and (max-width: 576px) {
  .b-starbucks-btn {
    width: 75px;
    height: 75px;
  }
}
.b-starbucks-btn .starbucks-img {
  width: 58px;
  height: 58px;
}
@media screen and (max-width: 576px) {
  .b-starbucks-btn .starbucks-img {
    width: 41px;
    height: 41px;
  }
}

.l-header {
  position: sticky;
  top: 0;
  z-index: 1;
  width: 100%;
  background-color: #fff;
  margin: 0 auto;
  padding: 0;
}
.l-header .l-container {
  display: flex;
  align-items: center;
  padding: 16px 52px 26px 34px;
}
@media screen and (max-width: 768px) {
  .l-header .l-container {
    width: 100%;
    justify-content: space-between;
    padding: 35px 37px 26px 20px;
  }
}
@media screen and (max-width: 576px) {
  .l-header .l-container {
    padding: 20px 15px 18px;
  }
}
.l-header .l-container .b-logo-section {
  width: 20%;
}
@media screen and (max-width: 576px) {
  .l-header .l-container .b-logo-section {
    width: 50%;
  }
}
.l-header .l-container .b-logo-section .logo-wrap {
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .l-header .l-container .b-logo-section .logo-wrap {
    width: 160px;
    align-items: flex-start;
  }
}
.l-header .l-container .b-logo-section .logo-img {
  width: 180px;
  height: 58px;
}
@media screen and (max-width: 768px) {
  .l-header .l-container .b-logo-section .logo-img {
    width: 160px;
    height: auto;
  }
}
@media screen and (max-width: 576px) {
  .l-header .l-container .b-logo-section .logo-img {
    width: 122px;
    height: auto;
  }
}
.l-header .l-container .b-nav {
  width: 60%;
  display: flex;
  gap: 64px;
  align-items: center;
  padding-top: 8px;
  padding-left: 64px;
}
.l-header .l-container .b-nav .nav__link {
  font-size: 18px;
  line-height: 24px;
}
@media screen and (max-width: 768px) {
  .l-header .l-container .b-nav {
    display: none;
  }
}
.l-header .l-container .call-us {
  padding-top: 8px;
}
@media screen and (max-width: 768px) {
  .l-header .l-container .call-us {
    display: none;
  }
}
.l-header .l-container .call-us a {
  text-decoration: underline;
}
.l-header .l-container .b-mobile-btns-wrapper {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-header .l-container .b-mobile-btns-wrapper {
    display: flex;
    gap: 18px;
    justify-content: flex-end;
    align-self: flex-start;
    margin-top: 26px;
  }
}
.l-header .l-container .b-mobile-btns-wrapper .phone-icon {
  margin-top: 2px;
  width: 22px;
  height: 22px;
}
.l-header .l-container .b-mobile-btns-wrapper .hamburger-menu {
  width: 28px;
  height: 29px;
  cursor: pointer;
}
.l-header .l-container .b-mobile-btns-wrapper .close-icon {
  width: 28px;
  height: 20px;
  text-align: center;
  font-size: 40px;
  line-height: 20px;
  display: none;
}
.l-header .l-container .b-nav-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 134px;
  left: 0;
  padding: 16px 30px;
  background-color: #fff;
  z-index: 5;
  transition: all 1s ease-in-out;
}
@media screen and (max-width: 576px) {
  .l-header .l-container .b-nav-mobile-menu {
    top: 98px;
  }
}
.l-header .l-container .b-nav-mobile-menu .nav__link {
  font-family: "Tahoma", sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.b-footer {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #0a0a0a;
  padding: 72px 0;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .b-footer {
    border-radius: 0;
    padding: 38px 0 46px;
  }
}
@media screen and (max-width: 576px) {
  .b-footer {
    padding: 45px 0 75px;
  }
}
.b-footer .footer-content {
  display: flex;
  flex-direction: row;
  gap: 36px;
  align-items: center;
  padding-right: 32px;
}
@media screen and (max-width: 768px) {
  .b-footer .footer-content {
    flex-direction: column;
    width: 72%;
    padding-right: 0;
    gap: 26px;
    width: 84%;
  }
}
.b-footer .footer-content .footer-logo {
  width: 230px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-self: flex-start;
  padding-right: 44px;
}
@media screen and (max-width: 768px) {
  .b-footer .footer-content .footer-logo {
    align-self: center;
  }
}
@media screen and (max-width: 576px) {
  .b-footer .footer-content .footer-logo {
    align-self: flex-start;
    width: 200px;
  }
}
.b-footer .footer-content .footer-logo .logo-img-wrapper {
  line-height: 0;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .b-footer .footer-content .footer-logo .logo-img-wrapper {
    text-align: center;
  }
}
@media screen and (max-width: 576px) {
  .b-footer .footer-content .footer-logo .logo-img-wrapper {
    text-align: left;
  }
}
.b-footer .footer-content .footer-logo .logo-img-wrapper .logo-img {
  width: 149px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .b-footer .footer-content .footer-logo .logo-img-wrapper .logo-img {
    width: 123px;
    height: 40px;
  }
}
.b-footer .footer-content .footer-nav-wrapper {
  display: flex;
  border-left: 1px solid #2e2e2e;
  padding-left: 40px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .b-footer .footer-content .footer-nav-wrapper {
    width: 100%;
    border-left: none;
    border-right: none;
    padding: 16px 0;
    color: rgba(255, 255, 255, 0.8588235294);
    justify-content: center;
  }
}
@media screen and (max-width: 576px) {
  .b-footer .footer-content .footer-nav-wrapper {
    gap: 6px;
  }
}
.b-footer .footer-content .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 23px;
}
.b-footer .footer-content .footer-nav .copyright {
  font-size: 12px;
  line-height: 20px;
}

.b-hero {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding-right: 13px;
}
@media screen and (max-width: 768px) {
  .b-hero {
    flex-direction: column;
    padding: 0 32px;
  }
}
@media screen and (max-width: 576px) {
  .b-hero {
    padding: 0 14px;
  }
}
.b-hero .hero-content-wrapper {
  width: 60%;
  margin-top: 65px;
  margin-left: 44px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .b-hero .hero-content-wrapper {
    width: 100%;
    gap: 12px;
    margin-left: 0;
    margin-top: 33px;
    padding: 15px 16px 0;
    text-align: center;
    align-items: center;
  }
}
@media screen and (max-width: 576px) {
  .b-hero .hero-content-wrapper {
    margin-top: 0;
    gap: 8px;
    align-items: flex-start;
  }
}
.b-hero .hero-content-wrapper .hero-title {
  color: #1b7fbd;
  text-shadow: #0a0a0a 1px 1px 2px;
}
@media screen and (max-width: 768px) {
  .b-hero .hero-content-wrapper .hero-title {
    font-size: 44px;
    line-height: 56px;
  }
}
@media screen and (max-width: 576px) {
  .b-hero .hero-content-wrapper .hero-title {
    max-width: 80%;
    font-size: 28px;
    line-height: 38px;
    text-align: left;
  }
}
.b-hero .hero-content-wrapper .hero-text {
  font-size: 20px;
  line-height: 30px;
  max-width: 84%;
}
@media screen and (max-width: 768px) {
  .b-hero .hero-content-wrapper .hero-text {
    font-size: 16px;
    line-height: 28px;
  }
}
@media screen and (max-width: 576px) {
  .b-hero .hero-content-wrapper .hero-text {
    max-width: 100%;
    font-size: 18px;
    line-height: 28px;
    text-align: left;
    font-weight: 300;
  }
}
.b-hero .hero-content-wrapper .hero-btn-wrapper {
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 576px) {
  .b-hero .hero-content-wrapper .hero-btn-wrapper {
    width: 100%;
    margin-top: 16px;
  }
}
.b-hero .hero-content-wrapper .b-btn {
  font-size: 16px;
  font-weight: 700;
  padding: 16.5px 32px;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .b-hero .hero-content-wrapper .b-btn {
    font-size: 16px;
    line-height: 28px;
  }
}
@media screen and (max-width: 576px) {
  .b-hero .hero-content-wrapper .b-btn {
    justify-content: center;
    width: 100%;
    font-size: 13px;
    font-weight: 400;
    line-height: 13px;
    padding: 10px 3.75px;
    gap: 12px;
  }
}
.b-hero .hero-content-wrapper .b-btn img {
  width: 24px;
  height: 24px;
  margin-top: -2px;
}
.b-hero .hero-content-wrapper #feature-text-mobile {
  display: none;
}
@media screen and (max-width: 576px) {
  .b-hero .hero-content-wrapper #feature-text-mobile {
    display: block;
    font-family: "Tahoma", sans-serif;
    font-size: 12px;
    padding-top: 7vw;
    margin-bottom: -14px;
  }
}
.b-hero .hero-content-wrapper #feature-text-desktop {
  display: block;
}
@media screen and (max-width: 576px) {
  .b-hero .hero-content-wrapper #feature-text-desktop {
    display: none;
  }
}
.b-hero .hero-content-wrapper .featured {
  width: 630px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media screen and (max-width: 576px) {
  .b-hero .hero-content-wrapper .featured {
    width: 100%;
  }
}
.b-hero .hero-content-wrapper .featured .feature-wrapper {
  width: 126px;
  font-family: "Tahoma", sans-serif;
  font-size: 14px;
  margin-top: 2px;
}
@media screen and (max-width: 576px) {
  .b-hero .hero-content-wrapper .featured .feature-wrapper {
    width: 25%;
  }
  .b-hero .hero-content-wrapper .featured .feature-wrapper img {
    width: 72% !important;
  }
}
.b-hero .hero-content-wrapper .featured .feature-wrapper .img-yelp {
  width: 74px;
  height: 30px;
}
.b-hero .hero-content-wrapper .featured .feature-wrapper .img-yahoo {
  width: 71px;
  height: 26px;
}
.b-hero .hero-content-wrapper .featured .feature-wrapper .img-bbb {
  width: 40px;
  height: 68px;
}
.b-hero .hero-content-wrapper .featured .feature-wrapper .img-trustpilot {
  width: 111px;
  height: 28px;
}
@media screen and (max-width: 576px) {
  .b-hero .hero-content-wrapper .featured .feature-wrapper .img-trustpilot {
    width: 100% !important;
  }
}
.b-hero .hero-img-wrapper {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .b-hero .hero-img-wrapper {
    width: 100%;
    padding: 0 14px;
    text-align: center;
  }
}
.b-hero .hero-img-wrapper .hero-img {
  width: 100%;
  max-width: 576px;
  height: auto;
  max-height: 577px;
}
@media screen and (max-width: 768px) {
  .b-hero .hero-img-wrapper .hero-img {
    max-width: 433px;
    height: auto;
  }
}

.b-hiw {
  display: flex;
  flex-direction: row;
  width: 100%;
  padding: 90px 0;
  border-radius: 40px;
  background-color: #1b7fbd;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .b-hiw {
    border-radius: 0;
    flex-direction: column;
    padding: 84 0;
    margin-top: -30px;
  }
}
@media screen and (max-width: 576px) {
  .b-hiw {
    padding: 14vw 8vw;
  }
}
.b-hiw .title-wrapper {
  width: 440px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 87px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .b-hiw .title-wrapper {
    width: 100%;
    padding: 0 32px;
    text-align: center;
  }
}
.b-hiw .title-wrapper .pretitle {
  margin-bottom: 6px;
  font-size: 20px;
  font-family: "Tahoma", sans-serif;
}
@media screen and (max-width: 768px) {
  .b-hiw .title-wrapper .pretitle {
    font-size: 18px;
  }
}
@media screen and (max-width: 576px) {
  .b-hiw .title-wrapper .pretitle {
    font-size: 12px;
  }
}
.b-hiw .title-wrapper .title {
  margin-bottom: 35px;
  text-shadow: #0a0a0a 2px 2px 2px;
}
@media screen and (max-width: 768px) {
  .b-hiw .title-wrapper .title {
    font-size: 36px;
  }
}
@media screen and (max-width: 576px) {
  .b-hiw .title-wrapper .title {
    font-size: 7vw;
  }
}
.b-hiw .title-wrapper .text {
  font-size: 20px;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .b-hiw .title-wrapper .text {
    display: none;
  }
}
.b-hiw .cards-wrapper {
  max-width: 864px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .b-hiw .cards-wrapper {
    width: 424px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 576px) {
  .b-hiw .cards-wrapper {
    width: 100%;
  }
}
.b-hiw .cards-wrapper .cards-line {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  background: rgba(255, 0, 0, 0.05);
  gap: 16px;
  will-change: transform;
  transform: translateX(0);
}
.b-hiw .cards-wrapper .cards-indicator {
  display: none;
}
@media screen and (max-width: 768px) {
  .b-hiw .cards-wrapper .cards-indicator {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    margin: 16px 0 20px;
  }
}
.b-hiw .cards-wrapper .cards-indicator .indicator-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.2;
  transition: all 0.3s ease-in-out;
}
.b-hiw .cards-wrapper .cards-indicator .indicator-dot.m-active {
  opacity: 1;
}
.b-hiw .cards-wrapper .text {
  display: none;
  color: #fff;
  font-size: 16px;
  line-height: 16px;
  font-family: "Tahoma", sans-serif;
  text-decoration: underline;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .b-hiw .cards-wrapper .text {
    display: block;
  }
}
.b-hiw .hiw {
  max-width: 920px;
  color: #fff;
  font-size: 20px;
  line-height: 32px;
  margin-right: 60px;
  padding: 60px;
  border-radius: 40px;
  background-color: rgba(255, 255, 255, 0.1254901961);
}
@media screen and (max-width: 768px) {
  .b-hiw .hiw {
    max-width: 100%;
    padding: 24px 32px 0;
    margin: 0 20px;
    text-align: center;
  }
}
@media screen and (max-width: 576px) {
  .b-hiw .hiw {
    border-radius: 20px;
    padding: 16px 16px;
    margin: 0;
    font-size: 16px;
    line-height: 26px;
    text-align: left;
  }
}
.b-hiw .hiw .hiw-title {
  font-family: "Tahoma", sans-serif;
  font-size: 24px;
  line-height: 48px;
  margin-bottom: 12px;
  text-shadow: #0a0a0a 1px 1px 2px;
}
@media screen and (max-width: 576px) {
  .b-hiw .hiw .hiw-title {
    font-size: 18px;
    line-height: 26px;
  }
}
.b-hiw .hiw h4 {
  text-shadow: #0a0a0a 1px 1px 2px;
  line-height: 48px;
}
.b-hiw .hiw .check-mark {
  width: 18px;
  height: 18px;
  margin-right: 12px;
  margin-bottom: -2px;
}
@media screen and (max-width: 576px) {
  .b-hiw .hiw .check-mark {
    width: 16px;
    height: 16px;
  }
}
.b-hiw .hiw p + p {
  margin-top: 12px;
}
.b-hiw .hiw .hiw-list li {
  list-style-type: circle;
  margin-left: 48px;
}
@media screen and (max-width: 576px) {
  .b-hiw .hiw .hiw-list li {
    margin-left: 20px;
  }
}

.b-funding-card {
  width: 424px;
  min-width: 424px;
  height: 495px;
  display: flex;
  flex-direction: column;
}
.b-funding-card.wide {
  width: 500px;
}
.b-funding-card.wide .card-content-wrapper {
  background-color: #f3f4f8;
}
@media screen and (max-width: 768px) {
  .b-funding-card.wide {
    width: 48%;
    min-width: auto;
  }
}
@media screen and (max-width: 576px) {
  .b-funding-card.wide {
    width: 100%;
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
}
@media screen and (max-width: 576px) {
  .b-funding-card {
    width: 100%;
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
}
.b-funding-card .funding-card-img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 16px 16px 0 0;
}
.b-funding-card .card-content-wrapper {
  height: 315px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 44px 32px;
  border-radius: 0 0 16px 16px;
  background-color: #fff;
  align-items: stretch;
}
.b-funding-card .card-content-wrapper .title-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.b-funding-card .card-content-wrapper .title-wrapper .card-icon {
  width: 40px;
  height: 40px;
}
.b-funding-card .card-content-wrapper .title-wrapper .card-title {
  font-size: 20px;
  font-family: "Tahoma", sans-serif;
  font-weight: 600;
}
.b-funding-card .card-content-wrapper .card-links-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.b-funding-card .card-content-wrapper .card-links-wrapper .card-link {
  text-decoration: underline;
}
.b-funding-card .card-content-wrapper .card-links-wrapper .card-apply {
  text-decoration: underline;
  font-family: "Tahoma", sans-serif;
  font-size: 15px;
  color: #016B61;
}

.b-success {
  display: flex;
  flex-direction: row;
  gap: 30px;
  width: 100%;
  padding: 60px 80px;
  border-radius: 24px;
  background: #016B61;
}
@media screen and (max-width: 768px) {
  .b-success {
    flex-direction: column-reverse;
    width: calc(100% - 60px);
    align-self: center;
  }
}
@media screen and (max-width: 576px) {
  .b-success {
    padding: 60px 40px;
    width: calc(100% - 30px);
  }
}
.b-success .success-card-wrapper {
  width: 50%;
  justify-content: center;
  display: flex;
}
@media screen and (max-width: 768px) {
  .b-success .success-card-wrapper {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
}

.b-success-card {
  display: none;
  width: 360px;
  height: 460px;
  background-color: #fff;
  border-radius: 16px;
  padding: 32px 36px;
}
.b-success-card.m-active {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
}
.b-success-card .success-img-wrapper {
  position: relative;
}
.b-success-card .success-img-wrapper .success-card-img {
  width: 100%;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.b-success-card .success-img-wrapper .badge {
  background-color: #BDFFEB;
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  gap: 3px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.b-success-card .success-img-wrapper .badge span {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  line-height: 1;
}
.b-success-card .success-img-wrapper .badge h3 {
  font-size: 15px;
  font-weight: 500;
}
.b-success-card .success-card-title {
  font-size: 34px;
  color: #1b7fbd;
}
.b-success-card .success-card-list {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 20px;
  line-height: 28px;
}
.b-success-card .success-card-list li {
  margin-bottom: 8px;
}

.b-success-options {
  width: 50%;
  text-align: center;
  align-content: center;
}
@media screen and (max-width: 768px) {
  .b-success-options {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
}
.b-success-options .title {
  line-height: 48px;
  margin-bottom: 8px;
  color: #fff;
}
.b-success-options .text {
  color: #fff;
}
.b-success-options .text a {
  text-decoration: underline;
}
.b-success-options .b-stories-wrapper {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.b-success-options .b-stories-wrapper .success-btn {
  background-color: #0FFFB7;
  border: none;
  border-radius: 6px;
  padding: 18px 22px;
  color: #016B61;
  font-family: "Tahoma", sans-serif;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.15);
  position: relative;
  transition: all 500ms ease-in-out;
}
@media screen and (max-width: 576px) {
  .b-success-options .b-stories-wrapper .success-btn {
    font-size: 16px;
  }
}
.b-success-options .b-stories-wrapper .success-btn:hover {
  background-color: #33f0b9;
  color: #fff;
}
.b-success-options .b-stories-wrapper .success-btn.m-active {
  background-color: #fff;
  color: #016B61;
  font-size: 24px !important;
  transition: all 500ms ease-in-out;
}
.b-success-options .b-stories-wrapper .success-btn.m-active::after {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url(assets/icon_block.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  margin-left: 2px;
}

.b-faq, .b-accordion {
  background-color: #f6f6f6;
  padding: 86px 170px 28px;
  border-radius: 40px;
}
@media screen and (max-width: 768px) {
  .b-faq, .b-accordion {
    padding: 60px 20px 40px;
  }
}
@media screen and (max-width: 576px) {
  .b-faq, .b-accordion {
    padding: 60px 10px;
  }
}
.b-faq .i-title, .b-accordion .i-title {
  font-size: 32px;
  line-height: 32px;
  margin-bottom: 80px;
}
@media screen and (max-width: 576px) {
  .b-faq .i-title, .b-accordion .i-title {
    width: 80%;
    margin: 0 auto 40px;
    font-size: 28px;
    line-height: 40px;
  }
}
.b-faq .accordion-wrapper, .b-accordion .accordion-wrapper {
  width: 100%;
}
.b-faq .accordion-wrapper .accordion-item, .b-accordion .accordion-wrapper .accordion-item {
  padding-bottom: 44px;
}
@media screen and (max-width: 576px) {
  .b-faq .accordion-wrapper .accordion-item, .b-accordion .accordion-wrapper .accordion-item {
    padding-bottom: 10px;
  }
}
.b-faq .accordion-wrapper .accordion-item .accordion-item-title-row, .b-accordion .accordion-wrapper .accordion-item .accordion-item-title-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding-bottom: 20px;
}
@media screen and (max-width: 576px) {
  .b-faq .accordion-wrapper .accordion-item .accordion-item-title-row, .b-accordion .accordion-wrapper .accordion-item .accordion-item-title-row {
    padding: 0 10px 26px;
  }
  .b-faq .accordion-wrapper .accordion-item .accordion-item-title-row.m-active, .b-accordion .accordion-wrapper .accordion-item .accordion-item-title-row.m-active {
    padding-bottom: 10px;
  }
}
.b-faq .accordion-wrapper .accordion-item .accordion-item-title-row .accordion-item-title, .b-accordion .accordion-wrapper .accordion-item .accordion-item-title-row .accordion-item-title {
  color: #1f2124;
  font-weight: 400;
}
@media screen and (max-width: 576px) {
  .b-faq .accordion-wrapper .accordion-item .accordion-item-title-row .accordion-item-title, .b-accordion .accordion-wrapper .accordion-item .accordion-item-title-row .accordion-item-title {
    font-size: 16px !important;
  }
}
.b-faq .accordion-wrapper .accordion-item .accordion-item-title-row .accordion-item-icon, .b-accordion .accordion-wrapper .accordion-item .accordion-item-title-row .accordion-item-icon {
  width: 32px;
  height: 26px;
}
.b-faq .accordion-wrapper .accordion-item .accordion-item-text, .b-accordion .accordion-wrapper .accordion-item .accordion-item-text {
  color: #787878;
  max-height: 0;
  width: 100%;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}
@media screen and (max-width: 768px) {
  .b-faq .accordion-wrapper .accordion-item .accordion-item-text, .b-accordion .accordion-wrapper .accordion-item .accordion-item-text {
    font-size: 16px;
    line-height: 24px;
  }
}
.b-faq .accordion-wrapper .accordion-item .accordion-item-text.m-active, .b-accordion .accordion-wrapper .accordion-item .accordion-item-text.m-active {
  max-height: 500px;
  opacity: 1;
  margin: 16px 10px 26px;
}
@media screen and (max-width: 768px) {
  .b-faq .accordion-wrapper .accordion-item .accordion-item-text.m-active, .b-accordion .accordion-wrapper .accordion-item .accordion-item-text.m-active {
    margin: 0 0 26px;
  }
}
.b-faq .accordion-wrapper .b-divider, .b-accordion .accordion-wrapper .b-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.24);
  margin-bottom: 44px;
}

main.b-page {
  padding: 40px 0 96px;
  gap: 0;
  min-height: calc(100vh - 529px);
}
@media screen and (max-width: 768px) {
  main.b-page {
    padding-bottom: 12px;
  }
}
@media screen and (max-width: 576px) {
  main.b-page {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.page-title {
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .page-title {
    font-size: 40px;
    line-height: 40px;
  }
}
@media screen and (max-width: 576px) {
  .page-title {
    width: 70%;
    margin: 0 auto;
  }
}

.b-page-sections {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 80px 80px 60px;
  background-color: #F4F5F9;
  border-radius: 24px;
  align-self: center;
  gap: 52px;
}
@media screen and (max-width: 768px) {
  .b-page-sections {
    margin: 30px 45px;
    gap: 38px;
  }
}
@media screen and (max-width: 576px) {
  .b-page-sections {
    flex-direction: column;
    margin: 26px 0;
  }
}
.b-page-sections p {
  line-height: 32px;
  font-size: 18px;
}
.b-page-sections strong, .b-page-sections b {
  padding-right: 6px;
}
.b-page-sections li {
  margin-left: 20px;
  font-size: 18px;
  line-height: 32px;
}
.b-page-sections .page-section-text {
  order: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 576px) {
  .b-page-sections .page-section-text {
    order: 1;
    padding: 8px 30px 60px;
  }
}
.b-page-sections .page-section-text .page-p {
  font-size: 20px;
  line-height: 30px;
}
@media screen and (max-width: 576px) {
  .b-page-sections .page-section-text .page-p {
    font-size: 4.5vw;
    line-height: 28.5px;
  }
  .b-page-sections .page-section-text .page-p.m-bold {
    font-size: 20px;
  }
}
.b-page-sections .page-section-blue {
  order: 1;
  width: 350px;
  background-color: #1b7fbd;
  padding: 56px 48px;
  border-radius: 16px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .b-page-sections .page-section-blue {
    padding: 46px 46px 54px;
  }
}
@media screen and (max-width: 576px) {
  .b-page-sections .page-section-blue {
    order: 0;
    width: 100%;
    border-radius: 0;
    padding: 38px 30px 40px;
  }
}
.b-page-sections .page-section-blue .page-blue-title {
  font-size: 20px;
  line-height: 30px;
}
@media screen and (max-width: 576px) {
  .b-page-sections .page-section-blue .page-blue-title {
    font-size: 17.25px;
    line-height: 26px;
  }
}
.b-page-sections .page-section-blue .page-img {
  margin-top: 52px;
  width: 100%;
  min-width: 250px;
  height: auto;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .b-page-sections .page-section-blue .page-img {
    min-width: 178px;
  }
}
@media screen and (max-width: 576px) {
  .b-page-sections .page-section-blue .page-img {
    margin-top: 28px;
    width: 100%;
    height: auto;
  }
}

.page-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
}

.b-cards-content {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 24px;
       column-gap: 24px;
  row-gap: 30px;
  flex-wrap: wrap;
  margin: 56px auto;
}
@media screen and (max-width: 768px) {
  .b-cards-content {
    justify-content: space-between;
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 576px) {
  .b-cards-content {
    width: 100%;
  }
}

.green-bg {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  background: #016B61;
  padding: 51px;
  border-radius: 16px;
  max-width: 1256px;
  margin: 0 auto;
}
@media screen and (max-width: 576px) {
  .green-bg {
    margin-left: -20px;
    margin-right: -20px;
    padding: 35px;
  }
}

.b-accordion {
  display: flex;
  flex-direction: row;
  padding: 80px 80px 60px;
  background-color: #F4F5F9;
  border-radius: 24px;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .b-accordion {
    padding: 50px 62px;
    border-radius: 0;
  }
}
@media screen and (max-width: 576px) {
  .b-accordion {
    flex-direction: column;
    margin-left: -20px;
    margin-right: -20px;
    padding: 9vw 8vw 11vw;
  }
}
.b-accordion .title {
  width: 30%;
  font-size: 34px;
  line-height: 46px;
  color: #1b7fbd;
}
@media screen and (max-width: 768px) {
  .b-accordion .title {
    font-size: 19px;
    line-height: 30px;
  }
}
@media screen and (max-width: 576px) {
  .b-accordion .title {
    width: 100%;
    font-size: 20px;
    line-height: 46px;
  }
}
.b-accordion .accordion-wrapper {
  width: 70%;
}
@media screen and (max-width: 576px) {
  .b-accordion .accordion-wrapper {
    width: 100%;
  }
}
.b-accordion .accordion-wrapper .accordion-item {
  padding-top: 4px;
  padding-bottom: 0;
}
.b-accordion .accordion-wrapper .accordion-item .accordion-item-title-row {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 576px) {
  .b-accordion .accordion-wrapper .accordion-item .accordion-item-title-row {
    padding-bottom: 12px;
  }
}
.b-accordion .accordion-wrapper .accordion-item .accordion-item-title-row .accordion-item-title {
  padding-bottom: 6px;
}
@media screen and (max-width: 768px) {
  .b-accordion .accordion-wrapper .accordion-item .accordion-item-title-row .accordion-item-title {
    font-size: 1.8vw;
    line-height: 30px;
  }
}
@media screen and (max-width: 576px) {
  .b-accordion .accordion-wrapper .accordion-item .accordion-item-title-row .accordion-item-title {
    padding: 0;
  }
}
.b-accordion .accordion-wrapper .accordion-item .accordion-item-text.m-active {
  margin: 0 -4px 12px;
}
@media screen and (max-width: 768px) {
  .b-accordion .accordion-wrapper .accordion-item .accordion-item-text.m-active {
    font-size: 1.7vw;
    line-height: 1.5;
  }
}
@media screen and (max-width: 576px) {
  .b-accordion .accordion-wrapper .accordion-item .accordion-item-text.m-active {
    font-size: 14px;
    line-height: 20px;
  }
}

.b-accordion-divider {
  width: 1px;
  height: 24px;
}

.contact-wrapper {
  display: flex;
  flex-direction: row;
  gap: 5vw;
  padding: 80px 80px 60px;
  background-color: #F4F5F9;
  border-radius: 24px;
}
@media screen and (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
    gap: 8vw;
    padding: 0;
    margin-top: 20px;
  }
}
.contact-wrapper .contact-info-column {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .contact-wrapper .contact-info-column {
    width: 100%;
    padding: 2vw 8vw 0;
  }
}
@media screen and (max-width: 576px) {
  .contact-wrapper .contact-info-column {
    padding: 8vw 8vw 0;
  }
}
.contact-wrapper .contact-info-column h2 {
  color: #1b7fbd;
  font-size: 34px;
  line-height: 46px;
}
@media screen and (max-width: 768px) {
  .contact-wrapper .contact-info-column h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 576px) {
  .contact-wrapper .contact-info-column h2 {
    font-size: 16px;
    line-height: 24px;
  }
}
.contact-wrapper .contact-info-column p {
  font-size: 20px;
  line-height: 30px;
}
@media screen and (max-width: 576px) {
  .contact-wrapper .contact-info-column p {
    font-size: 16px;
    line-height: 24px;
  }
}
.contact-wrapper .contact-info-column .b-btn {
  padding: 12px 24px 14px;
}
.contact-wrapper .contact-info-column .b-btn img {
  width: 14px;
  height: 14px;
}
.contact-wrapper .contact-form-column {
  width: 50%;
  background-color: #1b7fbd;
  border-radius: 16px;
  padding: 60px 68px;
}
@media screen and (max-width: 768px) {
  .contact-wrapper .contact-form-column {
    width: 100%;
    border-radius: 0;
  }
}
@media screen and (max-width: 576px) {
  .contact-wrapper .contact-form-column {
    width: 100vw;
    margin-left: -20px;
    margin-right: -20px;
    padding: 9vw 8vw 11vw;
  }
}
.contact-wrapper .contact-form-column h3 {
  color: #fff;
  text-align: center;
  margin: 0 auto;
  font-weight: 500;
  width: 80%;
  margin-bottom: 32px;
}
.contact-wrapper .contact-form-column .contact-form {
  background-color: #fff;
  padding: 32px 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-wrapper .contact-form-column .contact-form .b-btn {
  width: 100%;
  padding: 12px 24px 14px;
  justify-content: center;
}
.contact-wrapper .contact-form-column .contact-form .success {
  color: #016B61;
}
.contact-wrapper .contact-form-column .contact-form .error {
  color: #d9534f;
}/*# sourceMappingURL=style.css.map */