@font-face {
  font-family: "icomoon";
  src: url("../fonts/icons/icomoon.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=icon-], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-checkmark:before {
  content: "\ea10";
  color: #2F8ED2;
}

.icon-download:before {
  content: "\e960";
  color: #fff;
}

.icon-block:before {
  content: "\ea1e";
  color: #2F8ED2;
}

.icon-close:before {
  content: "\ea0f";
  color: #2F8ED2;
}

.icon-close-white:before {
  content: "\ea0f";
  color: #fff;
}

/*------------------------------------*\
  #COLORS
\*------------------------------------*/
/*------------------------------------*\
  #ANIMATION
\*------------------------------------*/
/*------------------------------------*\
  #RESPONSIVE
\*------------------------------------*/
/*------------------------------------*\
  #MEDIA QUERRIES
\*------------------------------------*/
/*------------------------------------*\
  #GLOBAL STYLES
\*------------------------------------*/
* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

hr {
  background-color: #EFF1F2;
  margin: 4rem 0;
  height: 0.2rem;
  border: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-size: 180%;
}
@media screen and (max-width: 3840px) {
  html {
    font-size: 85%;
  }
}
@media screen and (max-width: 3650px) {
  html {
    font-size: 80%;
  }
}
@media screen and (max-width: 3350px) {
  html {
    font-size: 75%;
  }
}
@media screen and (max-width: 2900px) {
  html {
    font-size: 65%;
  }
}
@media screen and (max-width: 2560px) {
  html {
    font-size: 60%;
  }
}
@media screen and (max-width: 2048px) {
  html {
    font-size: 55%;
  }
}
@media screen and (max-width: 1920px) {
  html {
    font-size: 52.5%;
  }
}
@media screen and (max-width: 1350px) {
  html {
    font-size: 43%;
  }
}
@media screen and (max-width: 1023px) {
  html {
    font-size: 47%;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 44%;
  }
}
@media (max-width: 520px) {
  html {
    font-size: 38%;
  }
}

body {
  color: #2A2E38;
  font-family: "Roboto", sans-serif;
  margin: 0;
  font-size: 1.8rem;
  line-height: 2.5rem;
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  margin: 1.8rem 0;
  line-height: 6.08rem;
}
@media screen and (max-width: 1024px) {
  h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 4rem;
  }
}
h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
  color: #2F8ED2;
}

h1 {
  font-size: 7.5rem;
  letter-spacing: -1.3px;
  margin: 4rem 0;
}
@media screen and (max-width: 1024px) {
  h1 {
    font-size: 5rem;
  }
}

h2 {
  font-size: 5.5rem;
  letter-spacing: -1.1px;
}
@media screen and (max-width: 1024px) {
  h2 {
    font-size: 4rem;
  }
}

h3 {
  font-size: 3.5rem;
  letter-spacing: -1.1px;
  line-height: 1.2;
}

.btn {
  text-transform: uppercase;
  text-decoration: none;
  padding: 0 1.4rem;
  border-radius: 0.3rem;
  font-family: ropa-soft-pro, sans-serif;
  text-align: center;
  line-height: 2.7;
  transition: all 0.2s;
  font-size: 2.2rem;
  font-weight: 500;
}
.btn--primary {
  background-color: #2F8ED2;
  color: #ffffff;
}
.btn--primary:hover {
  background-color: rgba(47, 142, 210, 0.8);
}
.btn--primary--small {
  padding: 0.1rem 0.5rem;
}
.btn--secondary {
  background-color: #E9ECEE;
  color: #2A2E38;
}
.btn--secondary:hover {
  background-color: rgba(233, 236, 238, 0.8);
}
.btn--tertiary {
  background-color: #ffffff;
  color: #2A2E38;
}
.btn--tertiary svg {
  margin-right: 0.4rem;
}
.btn--tertiary.outsideCard {
  margin: -1rem 0 3rem !important;
}

.c-form__group {
  display: flex;
  flex-direction: column;
  margin-top: 0.8rem;
}
.c-form__group input {
  height: 6rem;
  border-radius: 0.3rem;
  border: 1px solid #D7D7D7;
  font-size: 1.9rem;
  padding: 0 2.4rem;
}
.c-form__group input::placeholder {
  color: #2A2E38;
}
.c-form__group input[type=submit] {
  background-color: #2F8ED2;
  color: #ffffff;
  font-family: "ropa-soft-pro";
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 3rem;
  font-size: 2.2rem;
  -webkit-appearance: none;
  border-radius: 0.3rem;
}
.c-form__group input[type=submit]:hover {
  cursor: pointer;
}
.c-form--sign-up {
  position: relative;
  width: 57.2rem;
  max-width: 57.2rem;
}
@media screen and (max-width: 520px) {
  .c-form--sign-up {
    width: 100%;
    max-width: 100%;
  }
}
.c-form--sign-up input {
  border: 0;
}
.c-form--sign-up input[type=submit] {
  position: absolute;
  right: 0;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.o-container {
  width: 100%;
  margin: 0 auto;
}
.o-container--primary {
  max-width: 121.8rem;
}
@media screen and (max-width: 1186px) {
  .o-container--primary {
    max-width: calc(100% - 8rem);
  }
}
@media screen and (max-width: 750px) {
  .o-container--primary {
    max-width: calc(100% - 4rem);
  }
}
@media screen and (max-width: 500px) {
  .o-container--primary {
    max-width: calc(100% - 4rem);
  }
}
@media screen and (max-width: 350px) {
  .o-container--primary {
    max-width: calc(100% - 2rem);
  }
}
.o-container--secondary {
  max-width: 140rem;
}
@media screen and (max-width: 1000px) {
  .o-container--secondary {
    max-width: calc(100% - 8rem);
  }
}
@media screen and (max-width: 750px) {
  .o-container--secondary {
    max-width: calc(100% - 4rem);
  }
}
@media screen and (max-width: 500px) {
  .o-container--secondary {
    max-width: calc(100% - 4rem);
  }
}
@media screen and (max-width: 350px) {
  .o-container--secondary {
    max-width: calc(100% - 2rem);
  }
}
.o-container--tertiary {
  max-width: 100.5rem;
}
@media screen and (max-width: 1000px) {
  .o-container--tertiary {
    max-width: calc(100% - 8rem);
  }
}
@media screen and (max-width: 750px) {
  .o-container--tertiary {
    max-width: calc(100% - 4rem);
  }
}
@media screen and (max-width: 500px) {
  .o-container--tertiary {
    max-width: calc(100% - 4rem);
  }
}
@media screen and (max-width: 350px) {
  .o-container--tertiary {
    max-width: calc(100% - 2rem);
  }
}

.c-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
  position: sticky;
  background-color: #fff;
  width: 100%;
  top: 0;
  z-index: 9999;
}
@media screen and (max-width: 1024px) {
  .c-header {
    padding: 0;
  }
}
.c-header .o-container--secondary {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-header__logo {
  display: flex;
}
.c-header__logo a {
  display: flex;
}
.c-header__logo img {
  width: 28.3rem;
}
@media screen and (max-width: 1024px) {
  .c-header__logo img {
    width: 24rem;
    padding: 2rem 0;
  }
}
@media screen and (max-width: 1024px) {
  .c-header__primary-navigation {
    display: none;
  }
}
.c-header__primary-navigation ul {
  display: flex;
}
.c-header__primary-navigation ul li {
  margin-left: 5rem;
}
.c-header__primary-navigation ul li:first-child {
  margin-left: 0;
}
.c-header__primary-navigation ul li a {
  color: #2A2E38;
  text-transform: uppercase;
  text-decoration: none;
  height: 11.8rem;
  line-height: 11.8rem;
  font-family: ropa-soft-pro;
  font-size: 2.2rem;
  font-weight: 500;
}
.c-header__primary-navigation ul li a svg {
  margin-left: 0.4rem;
  width: 11px;
}
.c-header__primary-navigation ul li a.hasChildren {
  display: flex;
}
.c-header__primary-navigation ul li a:hover {
  text-decoration: underline;
}
.c-header__cta-buttons {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .c-header__cta-buttons {
    display: none;
  }
}
.c-header__cta-buttons .btn {
  margin-right: 0.8rem;
  width: 15.6rem;
  min-width: 15.6rem;
  line-height: 2.25;
}
.c-header__cta-buttons .btn:last-of-type {
  margin-right: 0;
}
.c-header__cta-buttons--mobile {
  display: none;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .c-header__cta-buttons--mobile {
    display: flex;
  }
}
.c-header__menu-trigger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  height: 1.8rem;
}
@media screen and (max-width: 1024px) {
  .c-header__menu-trigger {
    display: flex;
  }
}
.c-header__menu-trigger:hover {
  cursor: pointer;
}
.c-header__menu-trigger figure {
  background-color: #2A2E38;
  width: 2.5rem;
  min-width: 2.5rem;
  height: 2px;
  margin: 0px;
}
.c-header__mobile {
  background-color: #ffffff;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  min-height: 100vh;
  width: 35rem;
  min-width: 35rem;
  padding: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: 0.5s all;
  transform: translateX(-100%);
}
.c-header__mobile .icon-close {
  position: absolute;
  right: 3rem;
  top: 3rem;
}
.c-header__mobile__buttons {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.c-header__mobile .c-header__primary-navigation {
  display: block;
  margin-top: 4.5rem;
}
.c-header__mobile .c-header__primary-navigation ul {
  flex-direction: column;
}
.c-header__mobile .c-header__primary-navigation ul li {
  margin-left: 0;
  border-bottom: 1px solid #e9ecee;
}
.c-header__mobile .c-header__primary-navigation ul li:last-of-type {
  border-bottom: 0px;
}
.c-header__mobile .c-header__primary-navigation ul li a {
  height: 6rem;
  line-height: 6rem;
  font-size: 2.8rem;
}
.c-header__mobile__background {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s all;
}
.c-header__mobile__background.isActive {
  opacity: 1;
  pointer-events: all;
  cursor: pointer;
}
.c-header__mobile.isActive {
  transform: translateX(0);
  pointer-events: all;
}
.c-header__mobile.isActive__background.mainSideMenuToggle {
  opacity: 1;
  pointer-events: all;
  cursor: pointer;
}

.s-hero {
  background-size: cover;
  background-position: center;
  height: 62.5rem;
  max-height: 62.5rem;
  width: 160rem;
  max-width: 160rem;
  display: flex;
  margin: 0 auto 5rem auto;
  align-items: center;
  padding: 10rem;
  position: relative;
  overflow: hidden;
}
.s-hero iframe {
  width: 160rem;
  height: 56.25vw;
  /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
  min-height: 100vh;
  min-width: 160rem;
  /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1000px) {
  .s-hero {
    width: 100%;
    max-width: 100%;
    padding: 0px;
    height: 55rem;
    max-height: 55rem;
  }
  .s-hero--content {
    height: 30rem;
    max-height: 30rem;
  }
}
.s-hero .c-hero {
  width: 80rem;
  max-width: 80rem;
  position: relative;
}
@media screen and (max-width: 900px) {
  .s-hero .c-hero {
    width: 100%;
    max-width: 100%;
  }
}
.s-hero .c-hero h1 {
  font-size: 6.5rem;
  color: #ffffff;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .s-hero .c-hero h1 {
    font-size: 4.2rem;
  }
}
.s-hero .c-hero p {
  color: #ffffff;
  margin-right: 8rem;
  font-size: 2.2rem;
}
@media screen and (max-width: 1024px) {
  .s-hero .c-hero p {
    margin-right: 0rem;
    font-size: 1.8rem;
  }
}
.s-hero--video {
  background-color: #F6F9FC;
  width: 100%;
  max-width: 100%;
  height: 85.6rem;
  max-height: 85.6rem;
  display: block;
  padding: 8rem 0 0 0;
  margin-bottom: 9.5rem;
}
@media screen and (max-width: 1024px) {
  .s-hero--video {
    height: initial;
    max-height: initial;
    padding: 4rem 0 10rem 0;
    margin-bottom: 4rem;
  }
}
.s-hero--video .c-hero--video {
  width: 100rem;
  max-width: 100rem;
  height: 56.4rem;
  max-height: 56.4rem;
  display: block;
  margin: 0 auto;
  background-size: cover;
  background-position: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .s-hero--video .c-hero--video {
    width: 100%;
    max-width: 100%;
    height: 40rem;
    max-height: 40rem;
  }
}
.s-hero--video .c-hero--video h1 {
  position: absolute;
  bottom: -13rem;
  left: 6rem;
  color: #2A2E38;
  font-size: 9rem;
  max-width: 73.2rem;
  width: 73.2rem;
  letter-spacing: -1.8px;
  line-height: 8.5rem;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .s-hero--video .c-hero--video h1 {
    font-size: 5rem;
    line-height: 5rem;
    max-width: 48rem;
    width: 48rem;
    bottom: -8rem;
  }
}
@media screen and (max-width: 900px) {
  .s-hero--video .c-hero--video h1 {
    left: 0;
    padding-left: 2.5rem;
  }
}
@media screen and (max-width: 520px) {
  .s-hero--video .c-hero--video h1 {
    max-width: 80%;
    width: 80%;
  }
}
.s-hero--video .c-hero--video img {
  position: absolute;
  width: 8rem;
  height: 8rem;
  left: calc(50% - 4rem);
  top: calc(50% - 4rem);
  transition: transform 0.15s;
}
.s-hero--video .c-hero--video:hover {
  cursor: pointer;
}
.s-hero--video .c-hero--video:hover img {
  transform: scale(1.1);
}

.s-text-image {
  padding-bottom: 5rem;
}
@media screen and (max-width: 1024px) {
  .s-text-image {
    padding-bottom: 2.5rem;
  }
}
.s-text-image .c-text-image {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .s-text-image .c-text-image {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}
.s-text-image .c-text-image__text {
  margin-right: 9.5rem;
}
@media screen and (max-width: 1024px) {
  .s-text-image .c-text-image__text {
    order: 0 !important;
    margin-right: 0;
  }
}
.s-text-image .c-text-image__text p {
  font-size: 2rem;
}
.s-text-image .c-text-image__text h4 {
  color: #2F8ED2;
  line-height: 1;
  position: relative;
}
.s-text-image .c-text-image__text h4:before {
  content: "";
  position: absolute;
  width: 1.6rem;
  height: 1.6rem;
  background-color: #2F8ED2;
  left: -3rem;
}
@media screen and (max-width: 768px) {
  .s-text-image .c-text-image__text h4:before {
    display: none;
  }
}
.s-text-image .c-text-image__text h2 {
  font-family: "Roboto Condensed";
}
.s-text-image .c-text-image__text ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.s-text-image .c-text-image__text ul li i {
  margin: 0.3rem 1rem 0 0;
}
.s-text-image .c-text-image__image {
  height: 60rem;
  max-height: 60rem;
  width: 54rem;
  min-width: 54rem;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 1024px) {
  .s-text-image .c-text-image__image {
    width: 100%;
    min-width: 100%;
    height: 40rem;
    max-height: 40rem;
  }
}
@media screen and (max-width: 1024px) {
  .s-text-image .c-text-image__image {
    order: 1 !important;
  }
}
.s-text-image .c-text-image__image--left {
  margin-right: 9.5rem;
}
.s-text-image .c-text-image--full {
  position: relative;
  margin: 8.5rem 0 16rem 0;
}
@media screen and (max-width: 1024px) {
  .s-text-image .c-text-image--full {
    margin: 5rem 0 0 0;
  }
}
.s-text-image .c-text-image--full__image {
  width: 100%;
  min-width: 100%;
  height: 62rem;
  min-height: 62rem;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 1024px) {
  .s-text-image .c-text-image--full__image {
    height: 30rem;
    min-height: 30rem;
  }
}
.s-text-image .c-text-image--full__text {
  position: absolute;
  width: 66rem;
  min-width: 66rem;
  right: 0;
  bottom: -16rem;
  background-color: #ffffff;
  padding: 7rem;
}
@media screen and (max-width: 1024px) {
  .s-text-image .c-text-image--full__text {
    width: 100%;
    min-width: 100%;
    position: initial;
    padding: 0px;
  }
}
.s-text-image .c-text-image--full__text ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.s-text-image .c-text-image--full__text ul li i {
  margin: 0.3rem 1rem 0 0;
}

.s-usp {
  padding: 4rem 0 8rem 0;
}
@media screen and (max-width: 520px) {
  .s-usp {
    padding: 2rem 0 4rem 0;
  }
}
.s-usp .c-usp {
  display: flex;
  gap: 5rem;
}
@media screen and (max-width: 900px) {
  .s-usp .c-usp {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 520px) {
  .s-usp .c-usp {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 2.5rem;
  }
}
.s-usp .c-usp__single {
  width: 33.3333333333%;
}
@media screen and (max-width: 900px) {
  .s-usp .c-usp__single {
    width: calc(50% - 2.5rem);
  }
}
@media screen and (max-width: 520px) {
  .s-usp .c-usp__single {
    width: 100%;
  }
}
.s-usp .c-usp__single h3 {
  color: #2F8ED2;
  margin: 0;
  line-height: 6.08rem;
}
.s-usp .c-usp__single p {
  margin: 0;
}

.s-cta .c-cta {
  background-color: #2A2E38;
  color: #ffffff;
  padding: 7.5rem 9rem;
  margin-top: 4rem;
}
@media screen and (max-width: 520px) {
  .s-cta .c-cta {
    margin-top: 2rem;
    padding: 2.5rem;
  }
}
@media screen and (max-width: 900px) {
  .s-cta .c-cta {
    padding: 3rem;
  }
}
.s-cta .c-cta h2 {
  margin: 0;
  line-height: 1;
}
.s-cta .c-cta p {
  margin: 1.3rem 0 2rem 0;
}
.s-cta .c-cta--light {
  background-color: #F6F9FC;
  color: #2A2E38;
}
.s-cta .c-cta--light h2 {
  font-size: 4.5rem;
}

.c-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 0 6rem 0;
}
@media screen and (max-width: 1024px) {
  .c-footer {
    flex-direction: column;
    align-items: center;
    padding: 4rem 0;
  }
  .c-footer .c-header__primary-navigation {
    display: block;
  }
  .c-footer .c-header__primary-navigation ul li {
    margin-left: 2rem;
  }
  .c-footer .c-header__primary-navigation ul li:first-of-type {
    margin-left: 0;
  }
}
.c-footer__logo {
  width: 28.3rem;
  max-width: 28.3rem;
}
@media screen and (max-width: 1024px) {
  .c-footer__logo {
    width: 24rem;
    max-width: 24rem;
  }
}

.c-link {
  text-decoration: none;
}
.c-link--v1 {
  color: #2F8ED2;
}

.c-form-container {
  display: flex;
  padding: 8rem;
  background: #fff;
  transform: translateY(-15rem);
  box-shadow: 0px 0px 11px 1px #6464641a;
  margin-bottom: -8rem;
  min-width: 124rem;
  width: 124rem;
  gap: 6rem;
}
@media screen and (max-width: 1024px) {
  .c-form-container {
    flex-direction: column;
    min-width: 100%;
    width: 100%;
    gap: 3rem;
    padding: 4rem;
  }
}
.c-form-container h1, .c-form-container h2, .c-form-container h3, .c-form-container h4 {
  margin: 0 0 2rem 0;
}
.c-form__introduction h1 {
  font-size: 6.4rem;
}
@media screen and (max-width: 1024px) {
  .c-form__introduction h1 {
    font-size: 4.5rem;
  }
}
.c-form__introduction p {
  margin-top: 0;
}
.c-form form {
  font-family: "Roboto", sans-serif;
  margin-top: 3rem;
}
.c-form form label {
  font-weight: 400 !important;
  font-size: 1.8rem !important;
}
.c-form form input {
  height: 5rem;
  min-height: 5rem;
  border: 1px solid #D7D7D7;
  border-radius: 0.3rem;
  font-size: 1.5rem !important;
  padding: 0 1.5rem !important;
}
.c-form form input[type=checkbox] {
  border: 1px solid #D7D7D7;
  -webkit-appearance: none;
  width: 1.8rem;
  max-width: 1.8rem;
  height: 1.8rem;
  min-height: 1.8rem;
  border-radius: 0px;
  margin: 0 1.5rem 0 0;
  font-size: initial !important;
  padding: initial !important;
}
.c-form form input[type=checkbox]:checked {
  background-color: #2F8ED2;
  border: 1px solid #2F8ED2;
  background-image: url("/wp-content/themes/unframed/assets/images/check.svg");
  background-size: 75%;
  background-position: center;
  background-repeat: no-repeat;
}
.c-form form input:focus {
  outline: none;
  border: 2px solid #2F8ED2;
}
.c-form form textarea {
  resize: none;
  border: 1px solid #D7D7D7;
  border-radius: 0.3rem;
  padding: 1.5rem !important;
  font-size: 1.5rem !important;
  font-family: "Roboto", sans-serif;
  border-radius: 0.3rem;
}
.c-form form textarea:focus {
  outline: none;
  border: 2px solid #2F8ED2;
}
.c-form form .gform_button {
  text-transform: uppercase;
  text-decoration: none;
  padding: 0 3rem !important;
  height: 6rem;
  border-radius: 0.3rem;
  font-family: ropa-soft-pro, sans-serif;
  text-align: center;
  transition: all 0.2s;
  font-size: 2.2rem !important;
  font-weight: 500;
  background-color: #2F8ED2;
  color: #ffffff;
  border: 0px;
  -webkit-appearance: none;
}
.c-form form .gform_button:focus {
  border: 0px;
}
.c-form form .gform_button:hover {
  background-color: rgba(47, 142, 210, 0.8);
  cursor: pointer;
}
.c-form form .ginput_container_consent {
  display: flex;
  align-items: center;
}
.c-form form .ginput_container_consent a {
  color: #2A2E38;
}
.c-form form .gfield_required_text {
  display: none;
}
.c-form form .spacer {
  display: none;
}

.gfmc-column ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gfmc-column ul li {
  width: 100%;
}

.c-contact-data__item {
  margin-bottom: 2rem;
}
.c-contact-data__item a {
  display: block;
}
.c-contact-data__item h3 {
  font-size: 2.8rem;
  margin-bottom: 0;
  line-height: 5rem;
}
.c-contact-data__item p {
  margin: 0;
}

.s-content-slider {
  padding: 5rem 0;
}
.s-content-slider .c-content-slider__single {
  display: flex;
  position: relative;
  height: 63rem;
}
@media screen and (max-width: 1024px) {
  .s-content-slider .c-content-slider__single {
    flex-direction: column;
    gap: 4rem;
    height: initial;
  }
}
.s-content-slider .c-content-slider__single__content {
  width: calc(33.3333333333% - 9rem);
  max-width: calc(33.3333333333% - 9rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 7rem;
}
@media screen and (max-width: 1024px) {
  .s-content-slider .c-content-slider__single__content {
    width: 100%;
    max-width: 100%;
    text-align: center;
    align-items: center;
    padding-top: 0px;
  }
}
.s-content-slider .c-content-slider__single__content .btn {
  font-size: 1.8rem;
  font-weight: bold;
}
.s-content-slider .c-content-slider__single__content .btn i {
  margin-right: 0.5rem;
}
.s-content-slider .c-content-slider__single__image {
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 1024px) {
  .s-content-slider .c-content-slider__single__image {
    position: initial;
  }
}
.s-content-slider .c-content-slider__single__image img {
  width: 112.8rem;
  max-width: 112.8rem;
}
@media screen and (max-width: 1024px) {
  .s-content-slider .c-content-slider__single__image img {
    width: 100%;
    max-width: 100%;
  }
}

.lSAction {
  display: flex;
  gap: 2rem;
  margin: -10rem 0 10rem 0;
}
@media screen and (max-width: 1024px) {
  .lSAction {
    margin: 4rem 0 0 0;
    justify-content: center;
  }
}
.lSAction > a {
  position: relative !important;
  width: 6rem !important;
  height: 6rem !important;
  opacity: 1 !important;
}
@media screen and (max-width: 1024px) {
  .lSAction > a {
    width: 9rem !important;
    height: 9rem !important;
  }
}
.lSAction > a.lSNext {
  background-image: url("../images/next.svg");
  background-repeat: no-repeat;
  background-position: 0 0;
  left: 0;
}
.lSAction > a.lSPrev {
  background-image: url("../images/prev.svg");
  background-repeat: no-repeat;
  background-position: 0 0;
  left: 0;
}

.c-video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  display: none;
}
.c-video-modal__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.c-video-modal__content {
  z-index: 1;
  position: relative;
  height: 100%;
  min-height: 100%;
  min-width: 110rem;
  width: 110rem;
}
@media screen and (max-width: 1024px) {
  .c-video-modal__content {
    width: 100%;
    min-width: 100%;
    height: 35rem;
    min-height: 35rem;
  }
}
.c-video-modal__content iframe {
  width: 100%;
  height: 100%;
}
.c-video-modal__content--close {
  position: absolute;
  right: -3rem;
  top: -3rem;
}
.c-video-modal__content--close:hover {
  cursor: pointer;
}
.c-video-modal__content--close svg {
  max-width: 2rem;
}
.c-video-modal__content i {
  position: absolute;
  right: -3rem;
  top: -3rem;
}
.c-video-modal__content i:hover {
  cursor: pointer;
}

.js-modalActive {
  display: flex;
}

.s-faq {
  margin-bottom: 4rem;
}
.s-faq h2 {
  color: #A7C0DA;
  font-size: 3.5rem;
}
.s-faq .c-faq__single {
  border-bottom: 1px solid #A7C0DA;
}
.s-faq .c-faq__single__header {
  margin-top: 3rem;
  position: relative;
  padding: 0 3rem 2rem 0;
}
.s-faq .c-faq__single__header:hover {
  cursor: pointer;
}
.s-faq .c-faq__single__header h3 {
  font-weight: bold;
  font-size: 1.8rem;
  font-family: "Roboto", sans-serif;
  text-transform: none;
  letter-spacing: 0;
  margin: 0;
}
.s-faq .c-faq__single__header:after {
  content: "";
  background-image: url("../images/chevron.svg");
  background-size: cover;
  position: absolute;
  right: 0;
  top: 0.5rem;
  width: 2rem;
  height: 1.2rem;
  transform: rotate(180deg);
}
.s-faq .c-faq__single__header.arrowRotate:after {
  transform: rotate(0deg);
}
.s-faq .c-faq__single__content {
  padding-bottom: 3rem;
}
.s-faq .c-faq__single__content p {
  margin: 0;
}
.s-faq .c-faq__single:first-of-type header {
  margin-top: 0;
}

.c-lines {
  position: absolute;
  display: flex;
  justify-content: space-between;
  height: 100%;
  width: 150.7rem;
  max-width: 150.7rem;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  margin: 0 auto;
  opacity: 0.4;
}
@media screen and (max-width: 1024px) {
  .c-lines {
    width: 100%;
    max-width: 100%;
  }
}
.c-lines figure {
  width: 0.1rem;
  background-color: #E3EFF8;
  position: relative;
  margin: 0;
}

.s-pricing-form {
  background-color: #fff;
  padding: 8rem;
  transform: translateY(-15rem);
  box-shadow: 0px 0px 11px 1px #6464641a;
  margin-bottom: -8rem;
}
@media screen and (max-width: 520px) {
  .s-pricing-form {
    padding: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .s-pricing-form {
    padding: 6rem;
  }
}
.s-pricing-form h2, .s-pricing-form h3 {
  margin-top: 0px;
}
.s-pricing-form__content ul {
  padding: 0 0 0 3rem;
}
.s-pricing-form__content ul li {
  list-style: none;
  position: relative;
  margin-top: 2rem;
}
.s-pricing-form__content ul li::before {
  content: "";
  position: absolute;
  left: -3rem;
  top: 0.4rem;
  width: 1.6rem;
  height: 1.6rem;
  background-color: #2F8ED2;
}
.s-pricing-form .c-pricing-form__group {
  display: flex;
  flex-direction: column;
}
.s-pricing-form .c-pricing-form__group__prices {
  display: flex;
  margin-top: 0.5rem;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .s-pricing-form .c-pricing-form__group__prices {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 1rem;
  }
}
@media screen and (max-width: 1024px) {
  .s-pricing-form .c-pricing-form__group__prices {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }
}
@media screen and (max-width: 960px) {
  .s-pricing-form .c-pricing-form__group__prices--container {
    flex-wrap: nowrap;
    overflow-x: scroll;
    margin: 0 -7rem;
    padding-left: 7rem;
    -ms-overflow-style: none;
    /* for Internet Explorer, Edge */
    scrollbar-width: none;
    /* for Firefox */
  }
  .s-pricing-form .c-pricing-form__group__prices--container::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .s-pricing-form .c-pricing-form__group__prices--container {
    margin: 0 -4rem;
    padding-left: 4rem;
  }
}
@media screen and (max-width: 600px) {
  .s-pricing-form .c-pricing-form__group__prices--container {
    margin: 0 -2.5rem;
    padding-left: 2.5rem;
  }
}
.s-pricing-form .c-pricing-form__group__prices--single {
  width: 20%;
  text-align: center;
  min-height: 19.6rem;
  height: 19.6rem;
  position: relative;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .s-pricing-form .c-pricing-form__group__prices--single {
    width: calc(33.3333333333% - 1rem);
  }
}
@media screen and (max-width: 768px) {
  .s-pricing-form .c-pricing-form__group__prices--single {
    width: calc(50% - 1rem);
    margin-right: 0;
  }
}
.s-pricing-form .c-pricing-form__group__prices--single.is-active > label {
  border: 2px solid #2F8ED2;
}
.s-pricing-form .c-pricing-form__group__prices--single:last-of-type {
  margin-right: 0;
}
.s-pricing-form .c-pricing-form__group__prices--single:hover {
  cursor: pointer;
}
.s-pricing-form .c-pricing-form__group__prices--single input {
  position: absolute;
  left: 0.2rem;
  top: 0.2rem;
}
.s-pricing-form .c-pricing-form__group__prices--single label {
  width: 100%;
  height: 100%;
  padding: 2rem 0;
  border: 1px solid #E9ECEE;
  border-radius: 0.15rem;
  position: absolute;
  left: 0;
}
.s-pricing-form .c-pricing-form__group__prices--single label:hover {
  cursor: pointer;
}
.s-pricing-form .c-pricing-form__group__prices--single .discount-label {
  width: auto;
  left: 0;
  right: 0;
  max-width: 9rem;
  width: 9rem;
  margin: -1.25rem auto;
  font-weight: 700;
  border: 0;
  background-color: #9AD751;
  padding: 0.5rem 0.5rem !important;
  font-size: 1.35rem;
  border-radius: 2rem !important;
  height: auto !important;
}
.s-pricing-form .c-pricing-form__group__prices--single h2, .s-pricing-form .c-pricing-form__group__prices--single h4 {
  margin: 0;
  font-size: 4.5rem;
  line-height: 1;
  color: #2F8ED2;
}
.s-pricing-form .c-pricing-form__group__prices--single h4 {
  margin-top: 2.4rem;
  font-size: 2.5rem;
  font-family: "Roboto Condensed", sans-serif;
}
.s-pricing-form .c-pricing-form__group__prices--single hr {
  margin: 2.5rem 0 0 0;
  background-color: #EFF1F2;
  height: 0.15rem;
  border: 0;
}
.s-pricing-form .c-pricing-form__group__prices--single small {
  font-size: 1.6rem;
}
.s-pricing-form .c-pricing-form__group--header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .s-pricing-form .c-pricing-form__group--header {
    align-items: flex-start;
  }
}
.s-pricing-form .c-pricing-form__group--header .price-tag {
  border: 2px solid #2F8ED2;
  border-radius: 2rem;
  color: #2F8ED2;
  padding: 0.2rem 0.5rem;
  font-weight: 700;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1rem;
}
@media screen and (max-width: 960px) {
  .s-pricing-form .c-pricing-form__group--header .price-tag {
    margin-top: 1.5rem;
    font-size: 0.8rem;
  }
}
.s-pricing-form .c-pricing-form__group--header * {
  margin-bottom: 0;
}
.s-pricing-form .c-pricing-form__group--total {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.s-pricing-form .c-pricing-form__group--total * {
  color: #2A2E38 !important;
  margin-right: 0.3rem;
  font-weight: 700;
}
.s-pricing-form .c-pricing-form__group--total > small {
  font-family: "Roboto Condensed", sans-serif;
}
.s-pricing-form .c-pricing-form__group--total > small:first-of-type {
  text-decoration: line-through;
}
.s-pricing-form .c-pricing-form__group--total > small:last-of-type {
  margin: 0 0.5rem;
  font-weight: 400;
}
.s-pricing-form .c-pricing-form__group--total h4 {
  font-family: "Roboto Condensed", sans-serif;
  margin: 0;
  font-size: 2.2rem;
}
.s-pricing-form .c-pricing-form__group--total h4 small {
  font-weight: 400 !important;
  font-size: 1.4rem;
  text-transform: lowercase;
  margin: 0 0.5rem 0 0.1rem;
}
.s-pricing-form .c-pricing-form__group--total .discount-label {
  width: auto;
  left: 0;
  right: 0;
  font-weight: 700;
  border: 0;
  background-color: #9AD751;
  padding: 0 1rem !important;
  font-size: 1.35rem;
  border-radius: 2rem !important;
  height: auto !important;
}
.s-pricing-form .c-pricing-form__group__payment {
  display: flex;
  border-top: 1px solid #D7D7D7;
  margin: 3rem -3.5rem -3.5rem;
}
@media screen and (max-width: 1150px) {
  .s-pricing-form .c-pricing-form__group__payment {
    flex-direction: column;
    margin: 3rem -6.5rem -2.75rem -6.5rem;
  }
}
.s-pricing-form .c-pricing-form__group__payment h3 {
  width: 100%;
  color: #2A2E38;
}
@media screen and (max-width: 1300px) {
  .s-pricing-form .c-pricing-form__group__payment h3 {
    margin-top: 0;
  }
}
.s-pricing-form .c-pricing-form__group__payment > div {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding: 3rem 3.5rem;
  border-right: 1px solid #D7D7D7;
}
@media screen and (max-width: 1150px) {
  .s-pricing-form .c-pricing-form__group__payment > div {
    border-right: 0;
    border-bottom: 1px solid #D7D7D7;
    padding: 1.5rem 6.5rem;
  }
}
.s-pricing-form .c-pricing-form__group__payment > div:last-of-type {
  border-right: 0;
}
@media screen and (max-width: 1300px) {
  .s-pricing-form .c-pricing-form__group__payment > div:last-of-type {
    border-bottom: 0;
  }
}
.s-pricing-form .c-pricing-form__group__payment--single {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  margin-top: 0.5rem;
}
.s-pricing-form .c-pricing-form__group__payment--single:first-of-type {
  margin-top: 0px;
}
.s-pricing-form .c-pricing-form__group__payment--single img {
  margin-right: 0.5rem;
  max-height: 1.6rem;
}
.s-pricing-form .c-pricing-form__group__payment--single input[type=radio] {
  margin: 0;
  left: 0.7rem;
}
.s-pricing-form .c-pricing-form__group__payment--single input[type=radio]:checked {
  color: #2F8ED2;
}
.s-pricing-form .c-pricing-form__group__payment--single input[type=radio]:checked + label {
  border-color: #2F8ED2;
}
.s-pricing-form .c-pricing-form__group__payment--single input[type=radio]:checked + label p {
  color: #2F8ED2;
  font-weight: 500;
}
.s-pricing-form .c-pricing-form__group__payment--single > div {
  display: flex;
  align-items: center;
}
.s-pricing-form .c-pricing-form__group__payment--single label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 0;
  right: 0;
  border: 1px solid #D7D7D7;
  padding: 0 1rem 0 2.2rem;
  width: 100%;
  position: relative;
  height: 2.6rem;
}
.s-pricing-form .c-pricing-form__group__payment--single label > div {
  display: flex;
  align-items: center;
}
.s-pricing-form .c-pricing-form__group__payment--single label:hover {
  cursor: pointer;
}
.s-pricing-form .c-pricing-form__group__payment--total {
  width: 100%;
}
.s-pricing-form .c-pricing-form__group__payment--total hr {
  margin: 0 0 1rem 0;
  background-color: #D7D7D7;
}
.s-pricing-form .c-pricing-form__group__payment--total--row {
  display: flex;
  justify-content: space-between;
}
.s-pricing-form .c-pricing-form__group__payment--total--row:first-of-type, .s-pricing-form .c-pricing-form__group__payment--total--row .total {
  font-family: "Roboto Condensed", sans-serif;
}
.s-pricing-form .c-pricing-form__group__payment--total--row:last-of-type {
  margin-top: 0.3rem;
}
.s-pricing-form .c-pricing-form__group__payment--total--row .total {
  font-size: 1.3rem;
  color: #2F8ED2;
}
.s-pricing-form .c-pricing-form__group__payment--total--terms-agree {
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
}
@media screen and (max-width: 1300px) {
  .s-pricing-form .c-pricing-form__group__payment--total--terms-agree {
    margin: 1rem 0;
  }
}
.s-pricing-form .c-pricing-form__group__payment--total--terms-agree label {
  padding: 0 1.8rem;
}
.s-pricing-form .c-pricing-form__group__payment--total--terms-agree label:hover {
  cursor: pointer;
}
.s-pricing-form .c-pricing-form__group ul {
  display: flex;
  flex-wrap: wrap;
  max-width: 82rem;
  line-height: 2;
}
.s-pricing-form .c-pricing-form__group ul li {
  padding-left: 3rem;
  position: relative;
  width: 50%;
  margin-bottom: 0px;
}
@media screen and (max-width: 960px) {
  .s-pricing-form .c-pricing-form__group ul li {
    width: 100%;
    padding-left: 4rem;
  }
}
.s-pricing-form .c-pricing-form__group ul li:before {
  content: "";
  position: absolute;
  background-image: url("/wp-content/themes/unframed/assets/images/list-checkmark.svg");
  background-repeat: no-repeat;
  left: 0;
  top: 8px;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 960px) {
  .s-pricing-form .c-pricing-form__group ul li:before {
    top: 4px;
  }
}
.s-pricing-form .c-pricing-form__group input[type=range] {
  -webkit-appearance: none;
  margin: 0.8rem 0;
  width: 100%;
  background-color: transparent;
  border-radius: 5rem;
}
.s-pricing-form .c-pricing-form__group input[type=range]::-webkit-slider-runnable-track {
  height: 1rem;
  background-color: #C4E6FF;
  border-radius: 5rem;
}
.s-pricing-form .c-pricing-form__group input[type=range]::-moz-range-track {
  height: 1rem;
  background-color: #C4E6FF;
  border-radius: 5rem;
}
.s-pricing-form .c-pricing-form__group input[type=range]::-webkit-slider-thumb {
  background: #2F8ED2;
  border: 4px solid #FFFFFF;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  width: 3rem;
  height: 3rem;
  border-radius: 5rem;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -8px;
  position: relative;
}
.s-pricing-form .c-pricing-form__group input[type=range]::-moz-range-thumb {
  background: #2F8ED2;
  border: 4px solid #FFFFFF;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
  width: 3rem;
  height: 3rem;
  border-radius: 5rem;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -8px;
  position: relative;
}
.s-pricing-form .c-pricing-form__group input[type=range]::-moz-range-thumb {
  width: 2rem;
  height: 2rem;
}
.s-pricing-form .c-pricing-form__group .range-tooltip-container {
  background-color: #C4E6FF;
  display: inline-flex;
  font-weight: 700;
  border-radius: 2rem;
  text-align: center;
  color: #2A2E38;
  padding: 0.4rem 2rem;
  position: relative;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  left: 10%;
  transform: translateX(-50%);
}
.s-pricing-form .c-pricing-form__group .range-tooltip-container output {
  margin-right: 0.4rem;
}
.s-pricing-form .c-pricing-form__group .range-tooltip-container:after {
  content: "";
  position: absolute;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  width: 2rem;
  height: 1rem;
  left: calc(50% - 1rem);
  bottom: -1rem;
  background-color: #C4E6FF;
}

.c-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 0 6rem 0;
}
@media screen and (max-width: 1024px) {
  .c-footer {
    flex-direction: column;
    align-items: center;
    padding: 4rem 0;
  }
  .c-footer .c-header__primary-navigation {
    display: block;
  }
  .c-footer .c-header__primary-navigation ul li {
    margin-left: 2rem;
  }
  .c-footer .c-header__primary-navigation ul li:first-of-type {
    margin-left: 0;
  }
}
.c-footer__logo {
  width: 28.3rem;
  max-width: 28.3rem;
}
@media screen and (max-width: 1024px) {
  .c-footer__logo {
    width: 24rem;
    max-width: 24rem;
  }
}

.u-bg-cover-center {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.u-bg-contain-top {
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
}

.global-box-shadow {
  box-shadow: 3px 0 20px 0 rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 1150px) {
  .global-box-shadow {
    box-shadow: none;
  }
}

.u-reset-ul {
  padding: 0;
  margin: 0;
}
.u-reset-ul li {
  list-style-type: none;
}
.u-reset-ul.icons-list {
  margin: 4rem 0;
}
.u-reset-ul.icons-list li {
  margin-bottom: 2rem;
}

.circle-wrap {
  width: 50px;
  height: 50px;
  background-color: #F6F9FC;
  border-radius: 50%;
}

.circle-wrap .circle .mask,
.circle-wrap .circle .fill {
  width: 50px;
  height: 50px;
  position: absolute;
  border-radius: 50%;
}

.circle-wrap .circle .mask {
  clip: rect(0px, 50px, 50px, 25px);
}

.circle-wrap .inside-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
  line-height: 40px;
  text-align: center;
  margin-top: 5px;
  margin-left: 5px;
  color: #9AD751;
  font-family: "Roboto", serif;
  font-weight: bold;
  position: absolute;
  z-index: 100;
  font-size: 1rem;
}

/* color animation */
/* 3rd progress bar */
.mask .fill {
  clip: rect(0px, 58px, 116px, 0px);
  background-color: #9AD751;
}

.mask.full,
.circle .fill {
  animation: fill ease-in-out 3s;
  transform: rotate(135deg);
}

@keyframes fill {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(135deg);
  }
}
.wp-block-column h1, .wp-block-column h2, .wp-block-column h3, .wp-block-column h4, .wp-block-column h5 {
  color: #2F8ED2;
}
.wp-block-column h1 a, .wp-block-column h2 a, .wp-block-column h3 a, .wp-block-column h4 a, .wp-block-column h5 a {
  color: #2F8ED2;
}

/*# sourceMappingURL=main.css.map */
