/* =============================================
   INLINED PARTIALS (previously @import)
   Eliminates render-blocking CSS requests
   ============================================= */

/* === root.css === */
:root {
	--primary: #0F8C85;
	--primary-invert: white;
	--text: #464545;
	--gray-100: #F5F6F8;
	--max-screen: 1467px;
}

html,
body {
	padding: 0;
	margin: 0;
}

/* === typography.css === */
@font-face {
	font-family: "Museo Sans Rounded 700";
	font-style: normal;
	font-weight: normal;
	font-display: swap;
	src: local("Museo Sans Rounded 700"),
	url("/assets/fonts/MuseoSansRounded700.woff") format("woff");
}

@font-face {
	font-family: "Montserrat Thin";
	font-style: normal;
	font-weight: normal;
	font-display: swap;
	src: local("Montserrat Thin"),
	url("/assets/fonts/Montserrat-Thin.woff") format("woff");
}

@font-face {
	font-family: "Montserrat Light";
	font-style: normal;
	font-weight: normal;
	font-display: swap;
	src: local("Montserrat Light"),
	url("/assets/fonts/Montserrat-Light.woff") format("woff");
}

@font-face {
	font-family: "Montserrat Regular";
	font-style: normal;
	font-weight: normal;
	font-display: swap;
	src: local("Montserrat Regular"),
	url("/assets/fonts/Montserrat-Regular.woff") format("woff");
}

@font-face {
	font-family: "Montserrat Medium";
	font-style: normal;
	font-weight: normal;
	font-display: swap;
	src: local("Montserrat Medium"),
	url("/assets/fonts/Montserrat-Medium.woff") format("woff");
}

@font-face {
	font-family: "Montserrat SemiBold";
	font-style: normal;
	font-weight: normal;
	font-display: swap;
	src: local("Montserrat SemiBold"),
	url("/assets/fonts/Montserrat-SemiBold.woff") format("woff");
}

@font-face {
	font-family: "Montserrat ExtraBold";
	font-style: normal;
	font-weight: normal;
	font-display: swap;
	src: local("Montserrat ExtraBold"),
	url("/assets/fonts/Montserrat-ExtraBold.woff") format("woff");
}

/* Unified Montserrat family with proper weights */
@font-face {
	font-family: "Montserrat";
	font-style: normal;
	font-weight: 100;
	font-display: swap;
	src: local("Montserrat Thin"),
	url("/assets/fonts/Montserrat-Thin.woff") format("woff");
}

@font-face {
	font-family: "Montserrat";
	font-style: normal;
	font-weight: 300;
	font-display: swap;
	src: local("Montserrat Light"),
	url("/assets/fonts/Montserrat-Light.woff") format("woff");
}

@font-face {
	font-family: "Montserrat";
	font-style: normal;
	font-weight: 400;
	font-display: swap;
	src: local("Montserrat Regular"),
	url("/assets/fonts/Montserrat-Regular.woff") format("woff");
}

@font-face {
	font-family: "Montserrat";
	font-style: normal;
	font-weight: 500;
	font-display: swap;
	src: local("Montserrat Medium"),
	url("/assets/fonts/Montserrat-Medium.woff") format("woff");
}

@font-face {
	font-family: "Montserrat";
	font-style: normal;
	font-weight: 600;
	font-display: swap;
	src: local("Montserrat SemiBold"),
	url("/assets/fonts/Montserrat-SemiBold.woff") format("woff");
}

@font-face {
	font-family: "Montserrat";
	font-style: normal;
	font-weight: 800;
	font-display: swap;
	src: local("Montserrat ExtraBold"),
	url("/assets/fonts/Montserrat-ExtraBold.woff") format("woff");
}

/* === utilities.css === */
.museo {
	font-family: "Museo Sans Rounded 700", sans-serif;
}

.thin {
	font-family: "Montserrat Thin", sans-serif;
}

.light {
	font-family: "Montserrat Light", sans-serif;
}

.regular {
	font-family: "Montserrat Regular", sans-serif;
}

.medium {
	font-family: "Montserrat Medium", sans-serif;
}

.semibold {
	font-family: "Montserrat SemiBold", sans-serif;
}

.extrabold {
	font-family: "Montserrat ExtraBold", sans-serif;
}

.relative {
	position: relative;
}

.w-full {
	width: 100%;
}

.flex {
	display: flex;
}

.flex-1 {
	flex: 1;
}

.flex-2 {
	flex: 2;
}

.flex-3 {
	flex: 3;
}

.flex-4 {
	flex: 4;
}

.flex-5 {
	flex: 5;
}

.flex-6 {
	flex: 6;
}

.flex-7 {
	flex: 7;
}

.flex-8 {
	flex: 8;
}

.tracking-wide {
  letter-spacing: 0.01em;
}

.tracking-wider {
  letter-spacing: 0.02em;
}

.-mb-1 {
  margin-bottom: -0.25rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.-mt-1 {
  margin-top: -0.25rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

/* === checkbox.css === */
input[type="checkbox"],
input[type="checkbox"]::before,
input[type="checkbox"]:checked::before {
	box-shadow: none !important;
	outline: none !important;
	border: none !important;
}

input[type="checkbox"]::before,
input[type="checkbox"]:checked::before {
	border: none !important;
	box-shadow: none !important;
	background: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

input[type="checkbox"] {
	position: relative;
	width: 25px !important;
	height: 25px !important;
	margin: 0 !important;
	transform: translate(1px, 1px) !important;
	outline: none !important;
	cursor: pointer;
}

input[type="checkbox"]::before {
	content: "" !important;
	position: absolute !important;
	left: 0 !important;
	right: 0 !important;
	top: 0 !important;
	bottom: 0 !important;
	width: 100% !important;
	height: 100% !important;
	background: white !important;
	border: 1px solid var(--primary) !important;
	border-radius: 4px !important;
	transform: translate(-1px, -2px) !important;
	transition: 0.2s all;
}

input[type="checkbox"]:checked::before {
	border: 1px solid var(--primary) !important;
	background: var(--primary) !important;
}

input[type="checkbox"]:checked::after {
	content: "" !important;
	width: 6px !important;
	height: 12px !important;
	border-right: 3px solid !important;
	border-bottom: 3px solid !important;
	border-color: var(--primary-invert) !important;
	position: absolute !important;
	left: 0 !important;
	top: 0 !important;
	transform: translate(94%, 18%) rotate(42deg) !important;
	transition: 0.2s all;
}

/* =============================================
   END INLINED PARTIALS
   ============================================= */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Account for fixed header height on mobile */
}

@media (min-width: 1024px) {
  html {
    scroll-padding-top: 100px; /* Account for fixed header height on desktop */
  }
}

body {
  font-family: "Montserrat Regular", sans-serif;
  color: var(--text);
}

#website > main {
  overflow-x: hidden;
  -ms-overflow-x: hidden;
}

.bg-brand .flex-1 {
  flex: auto;
}

@media (min-width: 992px) {
  .bg-brand .flex-1 {
    flex: 1;
  }
}

a,
a:visited {
  color: #148E87;
  transition: 0.3s all;
  cursor: pointer;
}

a.white-url,
a.white-url:visited {
  color: white;
}

a.black-url,
a.black-url:visited {
  color: black;
}

a:hover {
  opacity: 0.7;
}

a:active {
  transition: 0s all !important;
  opacity: 0.5;
}

.vflex {
  vertical-align: middle;
  align-items: center;
  align-content: center;
}

.widthed {
  width: 100%;
  max-width: max(1467px, 75vw);
  margin: 0 auto;
}

@media (min-width: 667px) {
  .widthed > .hero-content {
    min-width: 491px;
    margin: 0 auto;
  }
}

@media (min-width: 1024px) {
  .hero {
    width: 100%;
    padding: 0 33px;
    justify-content: space-between;
  }

  .widthed > .hero-content {
    margin: 0;
    max-width: 477px;
  }
}

@media (min-width: 1280px) {
  .widthed > .hero-content {
    margin: 0 35px 0 0;
    max-width: 557px;
  }
}

@media (min-width: 1530px) {
  .hero {
    max-width: 1467px !important;
    padding: 0 !important;
  }

  .widthed > .hero-content {
    margin: 0 38px 0 0;
  }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* border: 1px dashed #ff5a36; */
}

@media (min-width: 1024px) {
  .hero-content {
    align-items: flex-start;
  }
}

@media (min-width: 667px) {
  .hero-actions {
    width: fit-content;
    max-width: 100%;
  }
}

.hero-rating {
  width: auto;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 12px;
  row-gap: 8px;
}

.hero-rating__stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 0;
}

.hero-rating__star {
  width: 24px;
  height: 24px;
  display: block;
}

.hero-rating__text {
  margin: 0;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-align: center;
  color: #4B5563;
}

.hero-rating__link,
.hero-rating__link:visited {
  font-weight: 500;
  font-style: normal;
  color: #177165;
  text-decoration: none;
}

@media (min-width: 768px) {
  .hero-rating {
    column-gap: 14px;
  }

  .hero-rating__star {
    width: 26px;
    height: 26px;
  }

}

@media (min-width: 1024px) {
  .hero-rating__star {
    width: 28px;
    height: 28px;
  }
}

.widthed.flex.vflex,
.not-home-page__widthed {
  flex-direction: column;
}

@media (min-width: 1024px) {
  .widthed.flex.vflex,
  .not-home-page__widthed {
    flex-direction: row;
  }
}

@media (max-width: 1023px) {
  .not-home-page__widthed > div:first-child {
    width: 100%;
  }
}

.widthed.cf.whythebest {
  display: flex;
  flex-direction: column;
}

@media (min-width: 1024px) {
  .widthed.cf.whythebest {
    display: block;
  }
}

.brand-color {
  color: #148E87;
}

.brand-color-light {
  color: #57AFAA;
}

#website {
}

.bg1 {
  top: 0;
  left: 0;
  right: 0;
  position: absolute;
  width: 100%;
}

header {
  transition: top 0.5s ease 0s;
}

header.sticked {
  position: fixed;
  top: -90px;
  left: 0;
  right: 0;
  background: white;
  z-index: 10000;
  box-shadow: -5px -10px 10px 10px rgb(224, 224, 224);
}

header.sticked.forLong {
  top: 0;
}

header.sticked .header-container {
  padding-top: 12px;
  padding-bottom: 10px;
}

@media (max-width: 1023px) {
  header .widthed.cf {
    display: flex;
    align-items: center;
  }

  header .widthed.cf .left.logo {
    flex-grow: 1;
  }
}

header,
main,
footer {
  position: relative;
  z-index: 20;
}

main {
  z-index: 19;
}

/* This is to match the header padding on storage frontend */
.header-container {
  padding: 33px 33px 20px; /* 33px top for mobile */
  max-width: var(--max-screen);
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .header-container {
    padding-top: 30px; /* 30px top for desktop */
  }
}

@media (min-width: 1530px) {
  .header-container {
    padding-left: 0;
    padding-right: 0;
  }
}

main {
  min-height: calc(100vh - 80px - 94px);
}

.mobile-container {
  padding: 0 20px;
  margin: auto;
}

.mobile-container--shrunk {
  padding: 0 20px;
  max-width: 400px;
  margin: auto;
}

@media (min-width: 768px) {
  .mobile-container {
    padding: 0 32px;
  }

  .mobile-container--shrunk {
    padding: 0 32px;
    max-width: 550px;
  }
}

@media (min-width: 1024px) {
  .mobile-container {
    padding: 0;
  }

  .mobile-container--shrunk {
    padding: 0;
    max-width: 900px;
  }
}

@media (min-width: 1280px) {
  .mobile-container--shrunk {
    max-width: 1100px;
  }
}

@media (min-width: 1530px) {
  .mobile-container--shrunk {
    max-width: var(--max-screen);
  }
}

@media (min-width: 1024px) {
  footer .mobile-container {
    max-width: var(--max-screen);
  }
}

.mobile-container--about-content {
  max-width: 600px;
}

@media (min-width: 1024px) {
  .mobile-container--about-content {
    max-width: var(--max-screen);
  }
}

footer {
  background-color: #0E857E;
  position: relative;
  /* z-index: 0; */
  overflow: hidden;
}

@media (min-width: 992px) {
  footer {
    height: 80px;
    overflow: visible;
  }
}

@media (max-width: 991px) {
  .footer__grade--1,
  .footer__grade--2,
  .footer__grade--3 {
    position: relative;
    background: transparent !important;
  }

  .footer__grade--1 {
    z-index: 3;
  }

  .footer__grade--2 {
    z-index: 2;
  }

  .footer__grade--3 {
    z-index: 1;
  }

  .footer__grade--1::before,
  .footer__grade--2::before,
  .footer__grade--3::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    transform: scaleX(9999);
  }

  .footer__grade--2::before {
    background: rgba(0, 0, 0, 0.1);
  }

  .footer__grade--3::before {
    top: -30px;
    background: rgba(0, 0, 0, 0.05);
    transform-origin: top;
    transform: scaleX(9999) scaleY(9999);
  }

  .left.w27 {
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
    z-index: 2;
  }

  .left.w13 {
    padding: 30px 0;
  }

  .left.w13 > div {
    display: flex;
    justify-content: center;
  }

  .left.w13 > div > * {
    margin: 0 23px;
    position: relative;
    z-index: 1;
  }
}

@media (min-width: 700px) and (max-width: 991px) {
  .left.w27 {
    display: flex;
    justify-content: space-between;
  }

  .left.w27 > div {
    flex: 0 0 auto;
    width: calc(50% - 15px);
  }
}

@media (max-width: 991px) {
  .flex-2.right-align.lh30 {
    font-size: 24px;
    padding-top: 50px;
    padding-bottom: 70px;
  }
}

.logo-img {
  height: 47px;
}

@media (min-width: 992px) {
  .logo-img {
    height: 60px;
  }
}

.left {
  float: left;
}

.right {
  float: right;
}

.cf::after {
  content: "";
  clear: both;
  display: block;
}

.logo-name {
  font-size: 28px;
  padding-left: 15px;
}

.navi {
  display: flex;
  line-height: 45px;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  position: absolute;
  width: auto;
  top: 78px;
  left: 0;
  right: 0;
  padding: 20px 33px 33px;
  box-sizing: border-box;
  border-radius: 0 0 20px 20px;
  background: #FEFEFE;
  box-shadow: 0 20px 20px rgb(0, 0, 0, 0.05);
  visibility: hidden;
  opacity: 0;
  transition: 0.2s all;
}

.navi-links {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 1024px) {
  .navi {
    line-height: 67px;
    position: static;
    flex-direction: row;
    gap: 0;
    background: transparent;
    width: auto;
    padding: 0;
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
  }

  .navi-links {
    display: flex;
    flex-direction: row;
    margin-right: 44px;
  }
}

@media (max-width: 1023px) {
  .not-home-page .navi {
    background: #109891;
  }
}

.not-home-page .sticked .navi--show {
  background: white;
}

.navi--show {
  visibility: visible;
  opacity: 1;
}

.sticked .navi {
  top: 73px;
}

.navi__toggle-btn {
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  font-size: 2rem;
  transform: translateY(5px);
  color: #008B85;
}

.not-home-page .sticked .navi__toggle-btn {
  color: #008B85;
}

.not-home-page .navi__toggle-btn {
  color: white;
}

.navi .btn-default {
  line-height: 20px;
}

@media (min-width: 992px) {
  .pseudo-list {
    margin-right: 8px;
    margin-left: 8px;
  }

  .pseudo-list:first-child {
    margin-left: 0 !important;
    margin-right: 36px !important;
  }

  .pseudo-list:last-child {
    margin-right: 0 !important;
  }
}

.pseudo-list a {
  text-decoration: none;
  color: #222222;
}

.pseudo-list.active a {
  font-family: "Montserrat SemiBold", sans-serif;
  text-decoration: none;
  color: #191919;
}

.btn-duo {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.btn-duo > a {
  display: block;
  width: 100%;
  height: 52px;
}

@media (min-width: 667px) {
  .btn-duo {
    flex-direction: row;
    width: fit-content;
    max-width: 100%;
  }

  .btn-duo > a {
    width: auto;
  }
}

@media (min-width: 768px) {
  .btn-duo {
    padding: 0;
    gap: 24px;
  }

  .btn-duo > a {
    height: 56px;
  }
}

@media (min-width: 1024px) {
  .btn-duo {
    justify-content: flex-start;
    gap: 16px;
  }
}

@media (min-width: 1280px) {
  .btn-duo {
    gap: 20px;
  }
}

.btn {
  display: block;
  font-family: "Montserrat Regular", sans-serif;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.btn--flex {
  width: fit-content;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Montserrat Medium", sans-serif;
  font-size: 14px;
  line-height: 17px;
  letter-spacing: .02em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

@media (min-width: 667px) {
  .btn--flex {
    font-size: 16px;
    line-height: 20px;
  }
}

.btn-default {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white !important;
  max-height: 48px;
  gap: .5rem;
  border-radius: 60px;
  padding: .75rem 2rem;
  font-family: "Montserrat Medium", sans-serif;
  text-transform: uppercase;
  letter-spacing: .02em;
  transition: all .3s ease;
}

.btn,
.btn-default,
.btn-greenish,
.btn-white,
.btn-footer {
  box-shadow: 3px 4px 5px 0 rgba(0, 0, 0, 0.13);
  cursor: pointer;
}

.btn:hover,
.btn-default:hover,
.btn-greenish:hover,
.btn-white:hover,
.btn-footer:hover {
  box-shadow: 3px 4px 5px 0 rgba(0, 0, 0, 0.10);
}

.btn:active,
.btn-default:active,
.btn-greenish:active,
.btn-white:active,
.btn-footer:active {
  box-shadow: 3px 4px 5px 0 rgba(0, 0, 0, 0.15);
}

.widthed.flex.vflex .flex-5 > .cf {
  display: flex;
}

.btn-main {
  padding: 16px 32px;
  font-size: 16px;
  color: white;
  border-radius: 40px;
}

@media (min-width: 768px) {
  .btn-main {
    font-size: 20px;
  }
}

.btn-light {
  max-height: 48px;
  gap: .5rem;
  border-radius: 60px;
  padding: .75rem 2rem;
  font-family: "Montserrat Medium", sans-serif;
  text-transform: uppercase;
  letter-spacing: .02em;
  background: var(--gray-100);
  transition: all .3s ease;
}

.btn-grey {
  background-color: #B3B3B3;
}

.btn-outline {
  color: var(--primary) !important;
  background: transparent;
  border: 1px solid var(--primary);
  box-shadow: none;
}

.btn-gradient {
  position: relative;
  background: linear-gradient(90deg, #57AFAA 0%, #148E87 100%);
  transition: all 0.3s ease-in-out;
}

.btn-gradient:hover {
  background: linear-gradient(90deg, #148E87 0%, #57AFAA 100%) !important;
}

.offset-left {
  margin-left: 30px;
}

.offset-right {
  margin-right: 16px;
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .offset-right {
    margin-right: 30px;
    margin-bottom: 15px;
  }
}

.section-offset {
  height: 64px;
  width: 100%;
}

.section-offset-low {
  height: 35px;
  width: 100%;
}

.section-offset-huge {
  height: 100px;
  width: 100%;
}

@media (min-width: 768px) {
  .section-offset {
    height: 92px;
  }

  .section-offset-huge {
    height: 140px;
  }
}

@media (min-width: 1024px) {
  .section-offset-huge {
    height: 100px;
  }
}

@media (min-width: 1280px) {
  .section-offset-huge {
    height: 164px;
  }
}

.section-offset-huge.header-margin {
  height: 76px;
  width: 100%;
}

@media (min-width: 667px) {
  .section-offset-huge.header-margin {
    height: 32px;
  }
}

@media (min-width: 768px) {
  .section-offset-huge.header-margin {
    height: 100px;
  }
}

@media (min-width: 1024px) {
  .section-offset-huge.header-margin {
    height: 128px;
  }
}

@media (min-width: 1280px) {
  .section-offset-huge.header-margin {
    height: 115px;
  }
}

@media (min-width: 1530px) {
  .section-offset-huge.header-margin {
    height: 100px;
  }
}

.hero-text {
  font-size: 40px;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-text {
    text-align: left;
  }
}

.hero-text .line1 {
  display: block;
  font-size: 40px;
  color: var(--text) !important;
  line-height: 49px;
  letter-spacing: 0.02em;
  margin-bottom: 3px;
}

.hero-text .line2 {
  display: block;
  font-size: 28px;
  line-height: 34px;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.hero-text .line3 {
  display: block;
  font-size: 26px;
  line-height: 32px;
  letter-spacing: 0.02em;
  color: var(--text) !important;
}

@media (min-width: 768px) {
  .hero-text .line1 {
    font-size: 62px;
    line-height: 76px;
    letter-spacing: 0.03em;
    margin-bottom: 4px;
  }

  .hero-text .line2 {
    font-size: 43px;
    line-height: 52px;
    letter-spacing: 0.03em;
    margin-bottom: 13px;
  }

  .hero-text .line3 {
    font-size: 40px;
    line-height: 48px;
  }
}

@media (min-width: 1530px) {
  .hero-text .line1 {
    font-size: 73px;
    line-height: 89px;
    margin-bottom: 5px;
  }

  .hero-text .line2 {
    font-size: 50px;
    line-height: 61px;
    margin-bottom: 15px;
  }

  .hero-text .line3 {
    font-size: 47px;
    line-height: 57px;
  }
}

.hero-img-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px !important;
}

.hero-img-wrapper picture {
  display: block;
  width: 100%;
}

.hero-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

@media (min-width: 667px) {
  .hero-img-wrapper {
    width: 504px !important;
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  .hero-img-wrapper {
    margin-top: 80px !important;
    width: 740px !important;
  }
}

@media (min-width: 1024px) {
  .hero-img-wrapper {
    width: 522px !important;
    margin: 0 !important;
    justify-content: flex-end;
  }
}

@media (min-width: 1280px) {
  .hero-img-wrapper {
    width: 740px !important;
  }
}

@media (min-width: 1530px) {
  .hero-img-wrapper {
    width: 869px !important;
  }
}

.wtb-grid {
  margin-top: 28px;
  display: grid;
  gap: 28px;
}

.wtb-grid__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.wtb-grid__item__content {
  font-size: 17px;
  line-height: 28px;
  letter-spacing: 0.02em;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color: #3C434A;
}

.wtb-grid__item__content > p {
  margin: 0;
}

@media (min-width: 667px) {
  .wtb-grid {
    grid-template-columns: 313fr 273fr;
    column-gap: 40px;
    row-gap: 56px;
  }
}

@media (min-width: 768px) {
  .wtb-grid {
    grid-template-columns: 313fr 325fr;
    margin-top: 60px;
    column-gap: 66px;
  }
}

@media (min-width: 1024px) {
  .wtb-grid {
    padding: 0 32px;
    grid-template-columns: 313fr 265fr 269fr;
    column-gap: 56px;
    row-gap: 64px;
  }
}

@media (min-width: 1280px) {
  .wtb-grid {
    padding: 0 28px;
    grid-template-columns: 359fr 339fr 339fr;
    column-gap: 93px;
  }
}

@media (min-width: 1530px) {
  .wtb-grid {
    margin-top: 80px;
    padding: 0;
    column-gap: 132px;
  }

  .wtb-grid__item__content {
    font-size: 20px;
    line-height: 32px;
  }
}

.center {
  text-align: center;
}

.big-font {
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .big-font {
    font-size: 48px;
    line-height: 58px;
  }
}

.bg2 {
  position: absolute;
  top: 0;
  left: -20px; /* overflows to the left */
  right: 0;
  width: calc(100% + 40px); /* overflows to the right */
  height: 227px;
}

@media (min-width: 768px) {
  .bg2 {
    left: -32px; /* overflows to the left */
    width: calc(100% + 64px); /* overflows to the right */
    height: 362px;
  }
}

@media (min-width: 1024px) {
  .bg2 {
    height: 341px;
  }
}

@media (min-width: 1280px) {
  .bg2 {
    height: 488px;
  }
}

@media (min-width: 1530px) {
  .bg2 {
    height: 640px;
  }
}

.hdiw-grid {
  margin-top: 40px;
  display: grid;
}

.hdiw-grid__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hdiw-grid__item__content > h3 {
  margin: 0 !important;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.hdiw-grid__item__content > p {
  margin: 8px 0 0 !important;
  font-size: 17px;
  line-height: 28px;
  letter-spacing: 0.02em;
}

.hdiw-grid__item--img {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0 60px;
}

.hdiw-grid__item__img {
  width: 100%;
  max-width: 375px;
}

/* Handle picture element wrapping img for responsive images */
.hdiw-grid__item--img picture {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hdiw-grid__item--img picture img {
  width: 100%;
  max-width: 375px;
  height: auto;
}

.hdiw--block-1 {
  order: 1;
}

.hdiw--block-2 {
  order: 2;
}

.hdiw--block-3 {
  order: 3;
}

.hdiw--block-4 {
  order: 4;
}

.hdiw--block-5 {
  order: 5;
}

.hdiw--block-6 {
  order: 6;
}

.hdiw--block-7 {
  order: 7;
}

.hdiw--block-8 {
  order: 8;
}

@media (min-width: 376px) and (max-width: 768px) {
  .hdiw-grid__item {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }

  .hdiw-grid__item__content {
    flex: 1 1 auto;
    min-width: 0;
    margin-top: -2px;
  }
}

@media (min-width: 768px) {
  .hdiw-grid {
    margin-top: 80px;
  }

  .hdiw-grid__item__content > h3 {
    font-size: 30px;
    line-height: 38px;
    letter-spacing: 0.02em;
  }

  .hdiw-grid__item__content > p {
    margin: 12px 0 0 !important;
    font-size: 20px;
    line-height: 32px;
  }

  .hdiw-grid__item__img {
    max-width: 512px;
    padding: 60px 0 80px;
  }

  .hdiw-grid__item--img picture img {
    max-width: 512px;
  }
}

@media (min-width: 1025px) {
  .hdiw-grid {
    position: relative;
    padding: 0 32px;
    grid-template-columns: repeat(2, 1fr);
  }

  .hdiw-grid__item {
    --dashed-border: 3px dashed #DDE1EB;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 0 32px;
  }


  .hdiw-grid__item:nth-child(1) {
    padding-left: 48px;
    border-left: var(--dashed-border);
    border-bottom: var(--dashed-border);
  }

  .hdiw-grid__item:nth-child(3) {
    padding: 52px 32px 0 48px;
  }

  .hdiw-grid__item:nth-child(4) {
    padding: 64px 32px 64px 0;
    border-right: var(--dashed-border);
    border-bottom: var(--dashed-border);
  }

  .hdiw-grid__item:nth-child(4) .hdiw-grid__item__img {
    width: 426px;
  }

  .hdiw-grid__item:nth-child(5) {
    padding: 52px 32px 52px 48px;
    border-left: var(--dashed-border);
    border-bottom: var(--dashed-border);
  }

  .hdiw-grid__item:nth-child(6) {
    padding: 0;
    position: relative;
  }

  .hdiw-grid__item:nth-child(6) .hdiw-grid__item__img {
    position: absolute;
    left: -32px;
    max-width: unset;
    width: 536px;
  }

  /* When wrapped in picture element, position the picture instead */
  .hdiw-grid__item:nth-child(6) picture {
    position: absolute;
    left: -32px;
    top: 0;
    width: 536px;
  }

  .hdiw-grid__item:nth-child(6) picture .hdiw-grid__item__img {
    position: static;
    left: auto;
    width: 100%;
  }

  .hdiw-grid__item:nth-child(7) {
    padding-top: 52px;
    padding-left: 48px;
  }

  .hdiw-grid__item:nth-child(8) {
    padding: 64px 32px 64px 0;
    border-right: var(--dashed-border);
  }

  .hdiw-grid__item--img {
    padding: 0;
  }

  .hdiw-grid__item__img {
    padding: 0;
  }

  .hdiw--block-3 {
    order: 4;
  }

  .hdiw--block-4 {
    order: 3;
  }

  .hdiw--block-7 {
    order: 8;
  }

  .hdiw--block-8 {
    order: 7;
  }
}

@media (min-width: 1280px) {
  .hdiw-grid {
    padding: 0 28px;
  }

  .hdiw-grid__item__img {
    max-width: 648px;
  }

  .hdiw-grid__item--img picture img {
    max-width: 648px;
  }

  .hdiw-grid__item:nth-child(1) {
    padding-left: 70px;
  }

  .hdiw-grid__item:nth-child(3) {
    padding: 52px 32px 0 70px;
  }

  .hdiw-grid__item:nth-child(4) {
    padding: 64px 32px 64px 40px;
  }

  .hdiw-grid__item:nth-child(4) .hdiw-grid__item__img {
    width: 478px;
  }

  .hdiw-grid__item:nth-child(5) {
    padding: 52px 32px 52px 70px;
  }

  .hdiw-grid__item:nth-child(6) .hdiw-grid__item__img {
    left: -16px;
    width: 641px;
  }

  .hdiw-grid__item:nth-child(6) picture {
    left: -16px;
    width: 641px;
  }

  .hdiw-grid__item:nth-child(7) {
    padding-left: 70px;
  }

  .hdiw-grid__item:nth-child(8) {
    padding: 64px 32px 64px 40px;
  }

  .hdiw-grid__item:nth-child(8) .hdiw-grid__item__img {
    width: 520px;
  }
}

@media (min-width: 1530px) {
  .hdiw-grid__item:nth-child(1) {
    padding-left: 80px;
  }

  .hdiw-grid__item:nth-child(3) {
    padding: 52px 32px 0 80px;
  }

  .hdiw-grid__item:nth-child(4) {
    align-items: center;
  }

  .hdiw-grid__item:nth-child(5) {
    padding: 52px 32px 52px 80px;
  }

  .hdiw-grid__item:nth-child(6) .hdiw-grid__item__img {
    left: 0;
    width: 701px;
  }

  .hdiw-grid__item:nth-child(6) picture {
    left: 0;
    width: 701px;
  }

  .hdiw-grid__item:nth-child(7) {
    padding-left: 80px;
  }

  .hdiw-grid__item:nth-child(8) {
    padding: 64px 32px 64px 40px;
    align-items: center;
  }
}

.number-img {
  display: block;
  width: 44px;
  min-width: 44px;
  max-width: 44px;
  height: auto;
  flex: 0 0 44px;
}

@media (min-width: 376px) and (max-width: 667px) {
  .number-img {
    width: 52px;
    min-width: 52px;
    max-width: 52px;
    flex-basis: 52px;
  }
}

@media (min-width: 668px) and (max-width: 768px) {
  .number-img {
    width: 50px;
    min-width: 50px;
    max-width: 50px;
    flex-basis: 50px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .number-img {
    width: 55px;
    min-width: 55px;
    max-width: 55px;
    flex-basis: 55px;
  }
}

@media (min-width: 1025px) {
  .number-img {
    width: 79px;
    min-width: 79px;
    max-width: 79px;
    flex-basis: 79px;
  }
}

.magic-dot {
  display: none;
}

@media (min-width: 1024px) {
  .magic-dot {
    display: inline-block;
    width: 32px;
    height: 32px;
    background: rgba(15, 140, 133, 0.16);
    border-radius: 50%;
    position: absolute;
    left: 18px;
    top: -18px;
  }

  .magic-dot::after {
    content: "";
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 8px;
  }

  .magic-dot--bottom {
    top: unset;
    left: -18px;
    bottom: -18px;
  }
}

@media (min-width: 1280px) {
  .magic-dot {
    left: 14px;
  }

  .magic-dot--bottom {
    left: -18px;
  }
}

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

.relative.widthed > .flex-wrap {
  flex-direction: column;
}

@media (min-width: 992px) {
  .relative.widthed > .flex-wrap {
    flex-direction: row;
  }
}

.flex-wrap .flex-1 {
  flex: 1 0 50%;
  box-sizing: border-box;
}

.width40 {
  width: 100%;
}

@media (min-width: 992px) {
  .width40 {
    width: 85%;
  }
}

.ntp {
  padding-top: 0;
}

.f20 {
  font-size: 20px;
}

a {
  text-decoration: none;
}

.bg-brand {
  background: #0F867F;
}

.bg-brand .widthed.flex-wrap.whyprem {
  flex-direction: column;
  max-width: 1200px;
}

@media (min-width: 992px) {
  .bg-brand .widthed.flex-wrap.whyprem {
    flex-direction: row;
    gap: 24px 40px;
  }
}

.bg-brand .widthed.flex-wrap.whyprem + .widthed.flex-wrap.whyprem {
  margin-top: 15px;
}

@media (min-width: 992px) {
  .bg-brand .widthed.flex-wrap.whyprem + .widthed.flex-wrap.whyprem {
    margin-top: 24px;
  }
}

.logowithunder {
  position: relative;
  height: auto;
  max-width: 220px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .logowithunder {
    max-width: 280px;
  }
}

@media (min-width: 992px) {
  .logowithunder {
    height: clamp(190px, 22vw, 250px);
    max-height: 250px;
    max-width: none;
    margin: 0;
  }
}

.underlogo {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  opacity: 0.8;
  display: block;
}

@media (min-width: 992px) {
  .underlogo {
    position: absolute;
    width: 90%;
    margin: auto;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

@media (min-width: 1300px) {
  .underlogo {
    width: 540px;
  }
}

.lightlogo1 {
  position: absolute;
  width: 70px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (min-width: 768px) {
  .lightlogo1 {
    width: 90px;
  }
}

@media (min-width: 992px) {
  .lightlogo1 {
    width: 185px;
  }
}

.header-brand-bg {
  color: white;
  font-size: 23px;
  line-height: 1.5;
  margin-top: 20px;
}

@media (min-width: 992px) {
  .header-brand-bg {
    font-size: 46px;
    line-height: 56px;
  }
}

.white {
  color: white;
}

.big-f {
  font-size: 42px;
}

.mtl {
  margin-top: 25px;
}

.magic-line {
  background: #0D7E78;
}

.magic-line-wrap {
  white-space: nowrap;
}

@media (max-width: 992px) {
  .white.big-f.light.mtl.cf.magic-line-wrap {
    font-size: 18px;
    margin-top: 22px;
    margin-bottom: 24px;
  }
}

.special-widthed {
  margin-right: 0;
}

.calculated-right {
  margin: 0;
}

@media (min-width: 992px) {
  .calculated-right {
    margin-right: 0;
    max-width: 700px;
    letter-spacing: 0.01em;
  }
}

@media (min-width: 992px) {
  .premium-intro {
    gap: 24px;
    align-items: center;
  }

  .premium-intro .header-brand-bg {
    margin-top: 0;
    font-size: clamp(40px, 2.8vw, 52px);
    line-height: 1.16;
  }

  .premium-intro .big-f {
    font-size: clamp(32px, 2.2vw, 42px);
    line-height: 1.2;
  }

  .premium-intro .logowithunder {
    flex: 0 0 520px;
    max-width: 520px !important;
    max-height: 250px;
  }

  .premium-intro .underlogo {
    width: auto;
    height: 100%;
    max-width: 460px;
    max-height: 250px;
  }

  .premium-intro .lightlogo1 {
    width: 150px;
  }

  .premium-intro .calculated-right {
    max-width: 640px;
    margin-right: 0;
  }
}

@media (max-width: 991px) {
  .calculated-left.special-widthed.flex.vflex {
    flex-direction: column;
    margin: 0;
    width: 100%;
    align-items: flex-start;
  }
}

@media (min-width: 992px) {
  .calculated-left {
    margin-left: calc((100vw - 320px - max(1200px, 75vw)) / 2)
  }
}

/* .magic-line {
  position: relative;
  overflow: hidden;
  max-width: 50px;
}

.magic-line::before {
  content: '';
  background: #0d7e78;
  width: calc(100vw - max(1200px, 75vw) + 390px);
  height: 100%;
  position: absolute;
  overflow: hidden;
}

.magic-line::after {
  content: "here's why:";
  background: #0d7e78;
  left: 10px;
  width: calc(100vw - max(1200px, 75vw) + 390px);
  height: 100%;
  position: absolute;
  overflow: hidden;
} */
.bg-brand {
  position: relative;
}

.bg-brand .bar {
  height: 47px;
  background: #0D7E78;
  position: absolute;
  right: 0;
  top: 293px;
  /* width: calc(100vw - 1200px); */
  width: calc(100vw - max(1200px, 75vw));
}

.checkmark {
  width: 16px;
  height: 16px;
  min-width: 16px;
  padding-top: 1px;
  object-fit: contain;
}

@media (min-width: 992px) {
  .checkmark {
    width: 20px;
    height: 20px;
    min-width: 20px;
  }
}

.whyprem .flex-1 {
  display: flex;
  align-items: flex-start;
  line-height: 30px;
  margin-top: 15px;
}

@media (max-width: 991px) {
  .whyprem .flex-1 {
    width: 100%;
    flex: 0 0 100%;
  }
}

@media (min-width: 992px) {
  .whyprem .flex-1 {
    flex: 0 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
    margin-top: 0;
  }
}

.whyprem .flex-1 .left {
  margin-top: 4px;
  width: 26px;
  display: flex;
  justify-content: center;
  flex: 0 0 26px;
}

@media (max-width: 991px) {
  .whyprem .flex-1 .whyprem-content {
    flex-grow: 1;
  }
}

.whyprem .whyprem-content {
  font-size: 14px;
  color: white;
  float: none;
  flex: 1 1 auto;
  width: auto;
  padding-left: 12px;
  margin-top: 0;
  letter-spacing: 0.01em;
}

@media (min-width: 1024px) {
  .whyprem .whyprem-content {
    font-size: 16px;
    letter-spacing: 0.02em;
  }
}

.treat {
  background: var(--primary);
  color: white;
  align-items: center;
  justify-content: center;
}

.contact-q {
  color: #333333;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat Medium", sans-serif;
}

.bg-follow {
  background: var(--primary);
  padding: 40px;
  text-align: center;
  font-size: 20px;
  font-family: "Montserrat Light", sans-serif;
}

.bg-follow-white {
  text-align: center;
  font-size: 20px;
  font-family: "Montserrat Light", sans-serif;
  padding: 10px 10px 90px;
}

.btn-white {
  display: inline-block;
  background: white;
  padding: 12px 70px 12px 40px;
  font-family: "Montserrat Regular", sans-serif;
  font-size: 16px;
  position: relative;
  border-radius: 40px;
  margin: 22px 0 0;
  color: black !important;
  transition: 0.3s all;
}

@media (min-width: 992px) {
  .btn-white {
    padding: 12px 70px 12px 40px;
    font-size: 20px;
    margin-top: 0;
    margin-left: 40px;
  }
}

.btn-greenish {
  border-radius: 40px;
  background: #3FA39D;
  padding: 12px 70px 12px 40px;
  font-family: "Montserrat Regular", sans-serif;
  margin-top: 22px;
  display: block;
  position: relative;
  transition: 0.3s all;
  color: white !important;
}

@media (min-width: 992px) {
  .btn-greenish {
    margin-left: 40px;
    display: inline;
  }
}

.green-arrow-circle {
  border-radius: 50%;
  height: 30px;
  width: 30px;
  top: 7px;
  right: 8px;
  background: #E7F3F3;
  position: absolute;
  display: inline-block;
  transition: 0.3s all;
}

@media (min-width: 992px) {
  .green-arrow-circle {
    height: 40px;
    width: 40px;
    top: 4px;
    right: 8px;
  }
}

.greener-arrow-circle {
  border-radius: 50%;
  height: 40px;
  width: 40px;
  background: #118078;
  position: absolute;
  display: inline-block;
  top: 4px;
  right: 8px;
  transition: 0.3s all;
}

.green-arrow-circle::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 8px;
  width: 8px;
  height: 8px;
  border-left: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(-135deg);
}

@media (min-width: 992px) {
  .green-arrow-circle::after {
    top: 12px;
    left: 10px;
    width: 12px;
    height: 12px;
  }
}

.greener-arrow-circle::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 10px;
  width: 12px;
  height: 12px;
  border-left: 2px solid #FFF;
  border-bottom: 2px solid #FFF;
  transform: rotate(-135deg);
}

.btn-white:hover .green-arrow-circle {
  right: -8px;
}

.btn-greenish:hover .greener-arrow-circle {
  right: -8px;
}

.arrow-bottom {
  position: relative;
  padding-top: 15px;
  padding-bottom: 35px;
  cursor: pointer;
}

.arrow-bottom .the-arrow::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 50%;
  height: 15px;
  width: 15px;
  border-left: 4px solid white;
  border-bottom: 4px solid white;
  transform: rotate(-45deg) translate(-4px, 0px);
  transition: 0.3s all;
}

.arrow-bottom:hover .the-arrow::after {
  top: 10px;
}

.arrow-bottom.openned .the-arrow::after {
  transform: rotate(-225deg);
}

.faq-section {
  background: #F8F8F9;
}

.faq-header {
  padding-top: 65px;
  margin-bottom: 24px;
  font-size: 24px;
  line-height: 32px;
  font-family: "Montserrat ExtraBold", sans-serif;
  color: var(--primary);
  text-align: center;
  letter-spacing: 0.02em;
}

@media (min-width: 992px) {
  .faq-header {
    font-size: 36px;
  }
}

.flex-faq {
  align-items: initial;
  padding-bottom: 60px;
}

@media (min-width: 992px) {
  .flex-faq .flex-1:nth-child(1) {
    border-right: 1px solid var(--primary);
    padding-right: 40px;
  }

  .flex-faq .flex-1:nth-child(2) {
    border-left: 1px solid #2A9993;
    padding-left: 40px;
  }
}

@media (max-width: 991px) {
  .faq-section .flex.flex-wrap.flex-faq {
    flex-direction: column;
    padding-bottom: 0;
  }
}

.faq-dot-wrap {
  margin: 0;
  padding: 0;
}

@media (min-width: 992px) {
  .faq-dot-wrap {
    margin-top: 10px;
    padding-top: 30px;
    position: relative;
  }
}

.faq-dot {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 8px;
}

.faqs-list {
  /* padding-top: 40px; */
  padding-bottom: 20px;
}

.faq-section .flex.flex-wrap.flex-faq .flex-1:nth-child(1) .faqs-list {
  padding-bottom: 0;
}

.faq-section .flex.flex-wrap.flex-faq .flex-1:nth-child(2) .faqs-list {
  padding-top: 0;
}

.faq-row-container {
  background: white;
  margin-bottom: 20px;
  border-radius: 6px;
  box-shadow: -3px 3px 10px 3px rgb(224, 224, 224, 0.4);
}

.faq-row-title {
  font-size: 22px;
  position: relative;
  padding: 20px 40px;
  transition: 0.3s all;
}

.faq-row-title span {
  max-width: calc(100% - 25px);
  display: inline-block;
}

@media (max-width: 991px) {
  .faq-row-title span {
    font-size: 14px;
    line-height: 1.6;
  }
}

.faq-row-title:hover {
  background: #DCF5F4;
  border-radius: 6px;
}

.faq-row-button {
  position: absolute;
  right: 20px;
  top: 20px;
  height: 24px;
  width: 24px;
  border-radius: 50%;
  border: 1px solid var(--primary);
}

.faq-row-button::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 1px;
  background: var(--primary);
  top: 11px;
  left: 4px;
  transition: 0.3s all;
}

.faq-row-button::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 15px;
  background: var(--primary);
  top: 4px;
  left: 11px;
  transition: 0.3s all;
}

.faq-row-content {
  color: #323232;
  opacity: 0.8;
  line-height: 25px;
  font-size: 16px;
  transition: 0.3s all;
}

@media (max-width: 767px) {
  .faq-row-content {
    font-size: 14px;
    line-height: 22px;
  }

  .faq-row-container.active .faq-row-content {
    padding: 0 20px 20px;
  }
}

.faq-row-container.active .faq-row-title {
  color: var(--primary);
}

.faq-row-container.active .faq-row-button {
  border: 1px solid #AAA;
}

.faq-row-container.active .faq-row-button::after {
  background: #AAA;
  transform: rotate(45deg);
}

.faq-row-container.active .faq-row-button::before {
  background: #AAA;
  transform: rotate(45deg);
}

.faq-row-container:not(.active) .faq-row-content {
  max-height: 0;
  overflow: hidden;
}

.faq-row-container.active .faq-row-content {
  padding: 0 60px 25px;
  /* noinspection CssInvalidPropertyValue */
  max-height: auto;
}

footer .footer {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 420px;
  overflow: hidden;
}

.footer .footer-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 48px 18px 40px;
  display: flex;
  flex-direction: column;
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

@media (min-width: 667px) {
  footer .footer {
    height: 340px;
  }

  .footer .footer-wrapper {
    padding: 64px 20px 40px;
  }

  .footer__content {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 768px) {
  footer .footer {
    height: 365px;
  }

  .footer .footer-wrapper {
    padding: 88px 32px 40px;
  }
}

@media (min-width: 1530px) {
  .footer .footer-wrapper {
    max-width: var(--max-screen);
    padding: 88px 0 40px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.footer__logo {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.footer__logo > img {
  width: 44px;
  height: 44px;
}

.footer__logo > p {
  font-family: "Museo Sans Rounded 700", sans-serif;
  margin: 0;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}

@media (min-width: 667px) {
  .footer__logo {
    width: fit-content;
    justify-content: flex-start;
  }
}

.footer__btns {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.footer__btns a.btn--flex {
  padding: 16px 24px;
}

.footer__btns a.btn-storage {
  padding: 10px 20px 10px 14px;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.2);
}

@media (min-width: 667px) {
  .footer__btns {
    justify-content: flex-end;
  }

  .footer__btns a.btn--flex {
    padding: 14px 28px;
  }

  .footer__btns a.btn-storage {
    padding: 10px 28px 10px 16px;
  }
}

@media (min-width: 768px) {
  .footer__btns {
    gap: 40px;
  }

  .footer__btns a.btn--flex {
    padding: 14px 36px;
  }

  .footer__btns a.btn-storage {
    padding: 10px 28px 10px 22px;
  }
}

@media (min-width: 1024px) {
  .footer__btns {
    gap: 20px;
  }
}

.footer__btns a.btn-storage > img {
  color: #FFFFFF;
}

.footer__links {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.footer__links > div {
  text-align: center;
  font-family: "Montserrat Light", sans-serif;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.02em;
}

@media (min-width: 667px) {
  .footer__links {
    flex-direction: row;
    gap: 92px;
  }
}

@media (min-width: 1024px) {
  .footer__links {
    width: fit-content;
    justify-content: flex-start;
    gap: 40px;
    position: relative;
    top: -69px;
    left: 224px;
  }
}

@media (min-width: 1280px) {
  .footer__links {
    gap: 80px;
    left: 268px;
  }
}

@media (min-width: 1530px) {
  .footer__links {
    gap: 140px;
    left: 328px;
  }
}

.footer__copyright {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: auto;
}

.footer__copyright > p {
  margin: 0;
  text-align: center;
  color: #FFFFFF;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: .02em;
}

.footer__plates {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 3fr 1fr 2fr;
  grid-template-rows: 5fr 2fr;
}

@media (min-width: 667px) {
  .footer__plates {
    grid-template-columns: 5fr 1fr 2fr;
    grid-template-rows: 6fr 2fr;
  }
}

.plate:nth-child(1) {
  background-color: #0F8C85;
}

.plate:nth-child(2) {
  background-color: #0E857E;
}

.plate:nth-child(3) {
  background-color: #0D7E78;
}

.plate:nth-child(4) {
  background-color: #0E857E;
}

.plate:nth-child(5) {
  background-color: #0D7E78;
}

.plate:nth-child(6) {
  background-color: #0C7872;
}

.w60 {
  width: 60%;
}

.w27 {
  width: 27%;
}

.w13 {
  width: 13%;
}

.btn-footer {
  display: block;
  padding: 10px;
  min-width: 155px;
  max-width: 155px;
  border-radius: 40px;
  margin-bottom: 15px;
  margin-left: 55px;
  font-family: "Montserrat Medium", sans-serif;
  box-shadow: none;
}

.btn-footer-white {
  background: #FFF;
  color: #148E87 !important;
}

.btn-footer-green {
  background: #0A6460;
  color: #FFF !important;
}

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

.inline {
  display: inline-block;
}

.icon-share {
  margin-top: 10px;
  height: 20px;
  margin-left: 2px;
  margin-right: 2px;
}

.footer-links {
  line-height: 30px;
  font-family: "Montserrat Light", sans-serif;
}

.lh30 {
  line-height: 30px;
}

.top-more {
  top: 75px;
}

#the-part-to-be-hidden {
  overflow: hidden;
  max-height: 0;
  animation: 0.3s all;
}

.faq-row-button,
.faq-row-title {
  cursor: pointer;
}

/* #go-premium:hover {
  transform: rotate(-5deg);
} */
.featured-header {
  text-align: center;
  padding-top: 150px;
  padding-bottom: 100px;
  background: #0F948D url("../imgs/bg-top-2.png") 30px 700px;
  margin-bottom: 60px;
}

@media (min-width: 700px) {
  .featured-header {
    padding-top: 200px;
    padding-bottom: 200px;
    margin-bottom: 120px;
  }
}

.featured-title {
  font-size: 34px;
  font-family: "Montserrat SemiBold", sans-serif;
  color: white;
  line-height: 40px;
}

@media (min-width: 700px) {
  .featured-title {
    font-size: 40px;
  }
}

header:not(.sticked).transparent {
  width: 100%;
  position: relative;
  z-index: 1000;
}

header:not(.sticked).transparent a {
  color: white !important;
}

header:not(.sticked).transparent .header-container {
  top: 0;
  left: 0;
  right: 0;
  position: absolute;
}

header:not(.sticked).transparent .white-logo {
  display: block !important;
}

header:not(.sticked).transparent .dark-logo {
  display: none;
}

header:not(.sticked).transparent .btn-default {
  background: #FFF;
  color: black !important;
  cursor: pointer;
}

header:not(.sticked).transparent .btn-light {
  background-color: #F5F6F880;
  color: var(--text) !important;
}

header.transparent + main > .mobile-container {
  padding-left: 32px;
  padding-right: 32px;
}

.pad30 {
  padding: 0 30px;
}

.with-tap {
  position: relative;
  padding-top: 20px;
  line-height: 35px;
  font-size: 20px;
}

.with-tap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
  height: 8px;
  border-radius: 4px;
  background: #E3F2FD;
}

.thankyou {
  font-size: 26px;
  font-family: "Montserrat Medium", sans-serif;
  padding-bottom: 100px;
}

.f18 {
  font-size: 18px;
}

@media (max-width: 992px) {
  .widthed.f18.lh30 {
    font-size: 16px;
  }
}

.lh30 {
  line-height: 30px;
}

.f24 {
  font-size: 24px;
}

.animation-right {
  width: 100%;
  margin-top: 22px;
}

@media (min-width: 1024px) {
  .animation-right {
    width: auto;
    margin-top: 0;
    position: relative;
    left: calc((100vw - 7px - max(1200px, 75vw)) / 2 - 40px);
    opacity: 0;
    transition: 0.8s all cubic-bezier(0.25, 0.1, 0, 0.96);
    animation-delay: 0.6s;
  }
}

.animation-left {
  position: relative;
  right: calc((100vw - 7px - max(1200px, 75vw)) / 2 - 40px);
  opacity: 0;
  transition: 0.8s all cubic-bezier(0.25, 0.1, 0, 0.96);
  animation-delay: 0.6s;
}

.animation-right.exec,
.animation-left.exec {
  opacity: 1;
}

.animation-right.exec {
  left: 0;
}

.animation-left.exec {
  right: 0;
}

.f16 {
  font-size: 16px;
}

.padl {
  padding-left: 20px;
  margin-top: 15px;
  margin-bottom: 15px;
  line-height: 25px;
}

@media (min-width: 992px) {
  .padl {
    padding-left: 40px;
  }
}

.padl .left:nth-child(1) {
  width: 30px;
}

@media (min-width: 992px) {
  .padl .left:nth-child(1) {
    width: 50px;
  }
}

.padl .left:nth-child(2) {
  width: calc(100% - 50px);
  font-family: "Montserrat Light", sans-serif;
}

.ntlrp {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.np {
  padding: 0;
}

.sellcodes-overlay header {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease 0.4s, visibility 0s linear 0.7s;
}

.pointer-to-Inisev,
.pointer-to-Inisev .pointer-content,
.pointer-to-Inisev .inisev-link .arrow-right,
.pointer-to-Inisev .inisev-link-wrapper,
.pointer-to-Inisev .inisev-projects-list-wrapper {
  display: -webkit-inline-flex;
  /* noinspection CssInvalidPropertyValue */
  display: -ms-inline-flex;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.pointer-to-Inisev {
  width: 100%;
  background-color: #FFFFFF;
  overflow: hidden;
}

.pointer-to-Inisev .pointer-content {
  position: relative;
}

@media (max-width: 1010px) {
  .pointer-to-Inisev .pointer-content {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (min-width: 625px) and (max-width: 1010px) {
  .pointer-to-Inisev .pointer-content {
    padding: 25px 30px;
  }
}

@media (max-width: 624px) {
  .pointer-to-Inisev .pointer-content {
    padding: 25px 15px;
  }
}

@media (min-width: 1501px) {
  .pointer-to-Inisev .pointer-content {
    padding: 65px 30px;
  }
}

@media (min-width: 1011px) and (max-width: 1500px) {
  .pointer-to-Inisev .pointer-content {
    padding: 135px 30px 40px 30px;
  }
}

@media (min-width: 700px) {
  .pointer-to-Inisev .pointer-content::after,
  .pointer-to-Inisev .pointer-content::before {
    content: "";
    position: absolute;
    background-image: url("../imgs/inisev-dots.svg");
    width: 118px;
    height: 124px;
  }
}

.pointer-to-Inisev .pointer-content::before {
  right: calc(100% + 15px);
}

@media (min-width: 1400px) {
  .pointer-to-Inisev .pointer-content::after {
    left: calc(100% + 352px);
  }
}

@media (max-width: 1399px) {
  .pointer-to-Inisev .pointer-content::after {
    left: calc(100% + (50vw - 50% - 75px));
  }
}

@media (min-width: 1011px) {
  .pointer-to-Inisev .pointer-content::after {
    bottom: 25px;
  }
}

@media (max-width: 1010px) {
  .pointer-to-Inisev .pointer-content::after {
    top: -60px;
  }

  .pointer-to-Inisev .pointer-content::before {
    bottom: -60px;
  }
}

@media (min-width: 1011px) {
  .pointer-to-Inisev .inisev-projects-list-wrapper {
    position: absolute;
  }
}

@media (max-width: 1010px) {
  .pointer-to-Inisev .inisev-projects-list-wrapper {
    overflow: hidden;
    max-height: 110px;
  }
}

@media (max-width: 580px) {
  .pointer-to-Inisev .inisev-projects-list-wrapper img {
    width: 100%;
  }
}

@media (min-width: 1501px) {
  .pointer-to-Inisev .inisev-projects-list-wrapper {
    right: calc(100% + 32px);
    height: 100%;
  }
}

@media (max-width: 1500px) {
  .pointer-to-Inisev .inisev-projects-list-wrapper {
    width: 100%;
    right: 0;
    bottom: 70px;
  }
}

.pointer-to-Inisev span {
  font-style: normal;
  font-weight: 500;
  color: #000000;
  text-align: center;
}

@media (min-width: 421px) {
  .pointer-to-Inisev span {
    font-size: 21px;
    line-height: 25px;
  }
}

@media (max-width: 420px) {
  .pointer-to-Inisev span {
    font-size: 16px;
    line-height: 12px;
  }
}

.pointer-to-Inisev a.colored-part {
  color: #00938D;
  text-decoration: none;
}

.pointer-to-Inisev a.colored-part:hover {
  color: #00A69F;
  opacity: 1 !important;
}

@media (max-width: 650px) {
  .pointer-to-Inisev a.colored-part {
    line-height: 35px;
  }
}

@media (min-width: 546px) {
  .visible-545 {
    display: none;
  }
}

@media (min-width: 1501px) {
  .pointer-to-Inisev .inisev-link-wrapper {
    position: absolute;
    height: 100%;
    top: 0;
  }
}

@media (min-width: 1011px) and (max-width: 1500px) {
  .pointer-to-Inisev .inisev-link-wrapper {
    margin-left: 40px;
  }
}

@media (min-width: 1401px) {
  .pointer-to-Inisev .inisev-link-wrapper {
    left: calc(100% + 62px);
  }
}

@media (min-width: 1011px) and (max-width: 1400px) {
  .pointer-to-Inisev .inisev-link-wrapper {
    left: calc(100% + 20px);
  }
}

@media (min-width: 421px) and (max-width: 1010px) {
  .pointer-to-Inisev .inisev-link-wrapper {
    margin-top: 15px;
  }
}

@media (max-width: 420px) {
  .pointer-to-Inisev .inisev-link-wrapper {
    margin-top: 5px;
  }
}

.pointer-to-Inisev .inisev-link {
  display: block;
  font-style: normal;
  font-weight: 600;
  line-height: 23px;
  color: #FFFFFF;
  background-size: 200% auto;
  /* background-image: linear-gradient(to right, #1D976C 0%, #93F9B9  51%, #1D976C  100%); */
  background-image: linear-gradient(
    to right,
    #00938D 0%,
    #246F9A 51%,
    #00938D 100%
  );
  border-radius: 40px;
  position: relative;
  text-decoration: none;
  transition: background 0.5s;
  white-space: nowrap;
}

@media (min-width: 421px) {
  .pointer-to-Inisev .inisev-link {
    padding: 10px 72px 10px 54px;
    font-size: 19px;
  }
}

@media (max-width: 420px) {
  .pointer-to-Inisev .inisev-link-wrapper {
    width: 100%;
  }

  .pointer-to-Inisev .inisev-link {
    padding: 10px 0;
    width: 100%;
    text-align: center;
    font-size: 16px;
  }
}

.pointer-to-Inisev .inisev-link:hover {
  background-position: right center;
  opacity: 1 !important;
}

.pointer-to-Inisev .inisev-link .arrow-right {
  position: absolute;
  right: 7px;
  top: 5px;
  background-color: rgba(0, 0, 0, 0.1);
  width: 35px;
  height: 32px;
  border-radius: 100%;
}

.pointer-to-Inisev .inisev-link .arrow-right svg {
  width: 10px;
  height: 16px;
  margin-left: 3px;
}

@media (min-width: 1011px) {
  .pointer-to-Inisev .pointer-content::before {
    display: none;
  }

  .pointer-to-Inisev .pointer-content {
    width: calc(100% - 64px);
    max-width: 1460px;
    margin: 0 auto;
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 2.5vw, 48px);
  }

  .pointer-to-Inisev .inisev-projects-list-wrapper {
    position: relative;
    width: auto;
    height: auto;
    right: auto;
    bottom: auto;
    margin: 0;
    flex: 0 0 auto;
    z-index: 1;
  }

  .pointer-to-Inisev .inisev-projects-list-wrapper::after {
    content: "";
    position: absolute;
    top: -5px;
    right: -26px;
    width: 118px;
    height: 124px;
    background-image: url("../imgs/inisev-dots.svg");
    z-index: -1;
  }

  .pointer-to-Inisev .inisev-link-wrapper {
    position: static;
    height: auto;
    top: auto;
    left: auto;
    margin: 0;
    flex: 0 0 auto;
  }

  .pointer-to-Inisev span {
    margin: 0;
    flex: 0 0 auto;
    white-space: nowrap;
  }
}

/* Blog -------- */

.page-header {
  background: url(/assets/imgs/bg-middle-min.png) bottom;
  background-size: cover;
}

.help-center-page-header {
  background-position: top;
  background-size: auto;
}

.page-header__heading {
  max-width: 1200px;
  margin: auto;
  position: relative;
  font-family: "Montserrat SemiBold", sans-serif;
  font-size: 36px;
  text-align: center;
  color: #464646;
  padding: 70px 0 100px 0;
}

@media (min-width: 992px) {
  .page-header__heading {
    font-size: 44px;
    padding: 100px 0 150px 0;
  }
}

.page-header__back-btn {
  position: absolute;
  right: 0;
  left: 33px;
  bottom: 32px;
  margin: auto;
  padding: 0;
  border: none;
  background: none;
  color: #533232;
  cursor: pointer;
  transition: 0.2s all;
}

.page-header__back-btn:hover,
.page-header__back-btn:focus {
  opacity: 0.7;
}

@media (min-width: 1200px) {
  .page-header__back-btn {
    right: auto;
    bottom: auto;
    top: 100px;
  }
}

.page-header__back-btn-text {
  font-size: 19px;
  margin-left: 15px;
}

.page-header__back-btn svg {
  width: 24px;
  height: 16px;
}

@media (min-width: 992px) {
  .page-header__back-btn svg {
    width: 27px;
    height: 20px;
  }
}

@media (min-width: 992px) {
  .page-header__back-btn-text {
    font-size: 25px;
  }
}

.blog-container {
  max-width: 956px;
  margin: 43px auto auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.blog-container__left-side {
  width: 100%;
}

@media (min-width: 992px) {
  .blog-container__left-side {
    flex: 0 0 auto;
    width: 63.9%;
  }
}

.blog-container__right-side {
  width: 100%;
}

@media (min-width: 992px) {
  .blog-container__right-side {
    flex: 0 0 auto;
    width: 27.3%;
  }
}

.blog-post {
  margin-bottom: 41px;
}

.blog-post__date {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 13px;
  top: 13px;
  width: 64px;
  height: 64px;
  border-radius: 9px;
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.33);
  background-color: #FFFFFF;
}

.blog-post__date-content {
  display: block;
}

.blog-post__day,
.blog-post__month {
  display: block;
}

.blog-post__day {
  font-family: "Montserrat ExtraBold", sans-serif;
  font-size: 23px;
}

.blog-post__month {
  font-family: "Montserrat Medium", sans-serif;
  font-size: 15px;
}

.blog-post__img-container {
  position: relative;
}

.blog-post__img {
  width: 100%;
  border-radius: 10px;
}

.blog-post__title {
  font-size: 19px;
  font-weight: bolder;
  font-family: "Montserrat Medium", sans-serif;
  margin: 25px 0;
}

.blog-post__description {
  font-size: 16px;
  line-height: 1.4;
}

.blog-post__footer {
  display: flex;
  margin-top: 40px;

  flex-direction: column-reverse;
  align-items: flex-start;
}

@media (min-width: 992px) {
  .blog-post__footer {
    flex-direction: row;
    align-items: center;
  }
}

.blog-post__tags-container {
  display: flex;
  flex-grow: 1;
  flex-wrap: wrap;
  max-width: 490px;
}

.blog-post__tag {
  background: var(--primary);
  color: var(--primary-invert) !important;
  border: 2px solid;
  font-family: "Montserrat SemiBold", sans-serif;
  font-size: 12px;
  font-weight: 600;
  border-radius: 10rem;
  padding: 10px 16px;
  margin-right: 12px;
  margin-bottom: 12px;
  transition: 0.2s all;
}

.blog-post__tag:hover,
.blog-post__tag:focus {
  background: transparent;
  color: var(--primary) !important;
  opacity: 1;
}

.blog-post__link {
  margin-bottom: 40px;
}

@media (min-width: 992px) {
  .blog-post__link {
    margin-bottom: 12px;
  }
}

.blog-post__link-text {
  margin-right: 10px;
}

.search-input {
  width: 100%;
  display: flex;
  align-items: center;
  color: #444;
  background: #F6F6F6;
  border-radius: 10px;
  overflow: hidden;
}

.search-input__input {
  color: inherit;
  border: none;
  padding: 17px 22px;
  background: none;
  margin: 0;
  flex-grow: 1;
  max-width: 9999px;
  outline: none;
  box-shadow: none;
  transition: 0.2s all;
}

.search-input__submit-btn {
  color: inherit;
  border: none;
  background: none;
  padding: 17px 22px 17px 0;
  margin: 0;
  cursor: pointer;
  transition: 0.2s all;
}

.search-input__input:focus,
.search-input__input:focus ~ .search-input__submit-btn,
.search-input__submit-btn:hover,
.search-input__submit-btn:focus {
  color: var(--primary) !important;
}

.blog-right-side {
  font-size: 16px;
  line-height: 1.6;
  color: #252525;
}

.blog-right-side__p {
  margin-top: 21px;
  margin-bottom: 25px;
  font-size: inherit;
  font-family: inherit;
}

.blog-right-side__a {
  font-size: inherit;
  font-family: inherit;
  color: var(--primary) !important;
}

.blog-right-side__br {
  padding: 0;
  margin: 0;
  border-color: black;
  border-bottom: none;
  opacity: 4%;
}

.cta-btns {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}

.cta-btns__label {
  margin-bottom: 17px;
}

.cta-btns__link {
  width: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  background: var(--primary);
  color: var(--primary-invert) !important;
  padding: 12px 20px;
  font-size: 14px;
  font-family: "Montserrat SemiBold", sans-serif;
  border-radius: 10rem;
}

.cta-btns__link svg {
  margin-right: 11px;
}

.side-posts {
  margin-top: 50px;
}

.side-posts__heading {
  font-size: 17px;
  font-family: "Montserrat ExtraBold", sans-serif;
  display: block;
  margin-bottom: 30px;
}

.side-posts__ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.side-posts__li {
  padding: 0;
  display: flex;
  margin: 0 0 20px;
}

.side-posts__li:last-child {
  margin-bottom: 0;
}

.side-one-post__img-container {
  max-width: 100px;
}

.side-one-post__img {
  width: 100%;
}

.side-one-post__content {
  padding-left: 15px;
}

.side-one-post__heading {
  margin: 0;
  color: inherit;
  font-size: 15px;
  font-family: "Montserrat Medium", sans-serif;
  line-height: 1.3;
}

.side-one-post__date {
  font-size: 14px;
  opacity: 0.7;
}

/* Help Center Page ---------------- */

.help-center-container {
  max-width: 500px;
  margin: auto;
}

@media (min-width: 750px) {
  .help-center-container {
    max-width: 750px;
  }
}

@media (min-width: 992px) {
  .help-center-container {
    max-width: 992px;
  }
}

@media (min-width: 1200px) {
  .help-center-container {
    max-width: 1200px;
  }
}

.help-box {
  background: white;
  padding: 36px 35px 70px 35px;
  border-radius: 10px;
  box-shadow: 0 0 210px 0 rgba(0, 0, 0, 0.04);
}

@media (min-width: 992px) {
  .help-box {
    padding: 44px 130px 70px 130px;
    transform: translateY(-100px);
  }
}

.help-box__heading {
  text-align: center;
  font-family: "Montserrat Thin", sans-serif;
  font-size: 21px;
  margin-bottom: 35px;
}

@media (min-width: 992px) {
  .help-box__heading {
    font-size: 25px;
    margin-bottom: 45px;
  }
}

.help-box__question-type-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 56px;
}

@media (min-width: 750px) {
  .help-box__question-type-container {
    flex-direction: row;
    margin-bottom: 56px;
  }
}

.help-box__question-type {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
  cursor: pointer;
}

@media (min-width: 750px) {
  .help-box__question-type {
    width: calc(50% - 13px);
  }
}

.help-box__question-content {
  display: block;
  font-size: 21px;
  width: 100%;
  height: 100%;
  padding: 110px 0;
  border-radius: 22px;
  background-color: #E3E3E3;
  text-align: center;
  line-height: 1.4;
  transition: 0.1s all;
}

@media (min-width: 992px) {
  .help-box__question-content {
    font-size: 25px;
  }
}

.help-box__question-hidden-radio:checked ~ .help-box__question-content,
.help-box__question-hidden-radio:hover ~ .help-box__question-content {
  background: var(--primary);
  color: var(--primary-invert);
}

.help-box__question-hidden-radio {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.help-box__input-group {
  display: flex;
  flex-direction: column;
  color: #606060;
  margin-bottom: 30px;
}

@media (min-width: 992px) {
  .help-box__input-group {
    flex-direction: row;
    align-items: flex-start;
  }
}

.help-box__input-group:last-child {
  margin-bottom: 0;
}

.help-box__input-container {
  flex-grow: 1;
}

.help-box__input-label {
  width: 100%;
  font-size: 17px;
  margin-bottom: 20px;
  font-family: "Montserrat Medium", sans-serif;
}

@media (min-width: 992px) {
  .help-box__input-label {
    min-width: 225px;
    max-width: 225px;
    font-size: 21px;
    margin-bottom: 0;
    transform: translateY(15px);
  }
}

.help-box__input,
.help-box__textarea {
  width: 100%;
  padding: 20px;
  border-radius: 12px;
  border: solid 2px #EDEDED;
  transition: 0.1s all;
  box-shadow: none;
  outline: none;
}

.help-box__input:focus,
.help-box__textarea:focus {
  border-color: var(--primary);
}

.help-box__textarea {
  resize: vertical;
  min-height: 200px;
}

@media (min-width: 992px) {
  .help-box__textarea {
    min-height: 240px;
  }
}

.help-box__p {
  font-size: 14px;
  line-height: 1.5;
  font-family: "Montserrat Medium", sans-serif;
}

@media (min-width: 992px) {
  .help-box__p {
    font-size: 17px;
  }
}

.drag-file-group {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  width: 100%;
  padding: 20px;
  border-radius: 12px;
  border: dashed 3px #EDEDED;
  transition: 0.1s all;
  box-shadow: none;
  outline: none;
  position: relative;
}

@media (min-width: 992px) {
  .drag-file-group {
    min-height: 240px;
  }
}

.drag-file-group__file-input {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.drag-file-group__content {
  text-align: center;
}

.drag-file-group__icon {
  width: 73px;
  height: 57px;
}

@media (min-width: 992px) {
  .drag-file-group__icon {
    width: 95px;
    height: 71px;
  }
}

.drag-file-group__text {
  font-size: 18px;
  color: #606060;
  margin-top: 14px;
}

@media (min-width: 992px) {
  .drag-file-group__text {
    font-size: 23px;
  }
}

.help-box__checkbox-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}

.help-box__checkbox-label {
  color: #2B2B2B;
  font-size: 17px;
  font-family: "Montserrat Medium", sans-serif;
  margin: 0 15px;
}

.help-box__checkbox-link {
  color: #8D8D8D !important;
  text-decoration: underline;
}

.help-box__footer {
  margin-top: 40px;
  text-align: center;
}

.help-box__submit-btn {
  background: var(--primary);
  color: var(--primary-invert);
  border-radius: 10rem;
  font-size: 21px;
  font-family: "Montserrat Medium", sans-serif;
  padding: 13px 40px;
  border: none;
  box-shadow: none;
  outline: none;
  cursor: pointer;
}

@media (min-width: 992px) {
  .help-box__submit-btn {
    font-size: 24px;
    padding: 15px 50px;
  }
}

/* Utility classes */

.d-none {
  display: none;
}

@media (min-width: 1024px) {
  .d-large-none {
    display: none !important;
  }
}

.d-block {
  display: block;
}

@media (min-width: 992px) {
  .d-large-block {
    display: block;
  }
}

.align-items-stretch {
  align-items: stretch;
}

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

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

.d-flex {
  display: flex;
}

.w-100 {
  width: 100%;
}

@media (min-width: 992px) {
  .large-hidden {
    visibility: hidden;
  }
}

.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 70px;
}

.blog-pagination__link {
  font-size: 14px;
  background: #FBFBFD;
  border: 1px solid #EEE;
  color: #CCC;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 10rem;
  margin-right: 10px;
  margin-bottom: 10px;
}

.blog-pagination__link--active {
  color: var(--primary-invert) !important;
  background: var(--primary);
  border-color: var(--primary);
}

.font-light {
  font-family: "Montserrat Light", sans-serif;
}

.font-regular {
  font-family: "Montserrat Regular", sans-serif;
}

.font-bold {
  font-family: "Montserrat SemiBold", sans-serif;
}

body > jdiv {
  position: fixed;
  z-index: 100000 !important;
}

.appsumo-inputs #appsumosend {
  width: 100%;
  border-radius: 10px;
  font-size: 18px;
  margin-top: 10px;
  box-shadow: none;
  outline: 0;
  padding: 11px 20px;
  text-align: center;
}

.appsumo-input-title {
  /*  text-align: right;*/
}

.appsumo-input {
  width: 100%;
  box-shadow: none;
  border: 2px solid var(--primary);
  border-radius: 10px;
  padding: 15px 20px;
  font-size: 20px;
  outline: none;
  background: #FFF;
  transition: background 0.3s,
  opacity 0.3s;
  margin-bottom: 15px;
}

.appsumo-input:active,
.appsumo-input:focus {
  background: rgba(15, 140, 133, 0.9) !important;
  color: white;
}

.appsumodesc {
  font-size: 14px;
  text-align: center;
  width: 100%;
  color: gray;
}

.appsumomain {
  position: relative;
  height: 100%;
  width: 100%;
}

.appsumomain .overlay {
  position: absolute;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.8s,
  opacity 0.8s;
}

.appsumomain .overlay h1 {
  color: forestgreen;
  font-weight: 200;
}

.overlay.is-error h1 {
  color: red;
}

.appsumomain.is-sent .overlay {
  display: flex;

  width: 100%;
  height: 100%;
  text-align: center;
  background: white;
  z-index: 10000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  visibility: visible;
  opacity: 1;
}

.appsumoanotherbox {
  font-size: 14px;
  margin-top: 35px;
}

.appsumoanotherbox a {
  color: gray;
  font-weight: 200;
}

.overlaytable blockquote {
  text-align: left;
  margin-bottom: 25px;
  margin-top: 25px;
  border-left: 4px solid var(--primary);
  padding-left: 15px;
  padding-bottom: 15px;
}

.overlaytable .tierdetails {
  margin-bottom: 25px;
  margin-top: 25px;
  padding-top: 15px;
}

.overlaytable li:first-child {
  margin-bottom: 15px;
}
