/* 
naming convention:
BEM - BLOCK__ELEMENT--MODIFIER
name spacing:
u = utilities
l = layout
c = component 
js = javascript hook
breakpoints:
mobile - 600px
*/

/* CSS vars */

:root {
  /* colors */
  --clr-primary100: #eef3f9;
  --clr-primary200: #FDCFEB;
  --clr-primary300: #FFACFF;
  --clr-primary400: #FF8AFF;
  --clr-primary500: #3268f0;
  --clr-primary600: #2a52ca;
  --clr-primary700: #11299a;
  --clr-primary800: #213f65;
  --clr-primary900: #172e4c;
  --clr-secondary500: #ffff00;
  --clr-text: #343434;
  --clr-text-reverse: white;
  /* heights */
  --height-header: 106px;
  --height-viewport: 100vh;
  /* spacing */
  --b-space: 135px;
  --b-space-sm: 80px;
  /* font family */
  --ff-body: 'Nunito', sans-serif;
  --ff-heading: var(--ff-body);
  /* font sizes */
  --fs-h1: 85px;
  --fs-h2: 75px;
  --fs-h3: 24px;
  --fs-p: 18px;
  --fs-p-xlg: 36px;
  --fs-p-lg: 20px;
  --fs-p-sm: 14px;

  --container-radius: 34px;
}


@media screen and (max-width:1200px) { 
  :root {
    --b-space: 100px;
    --fs-h1: 72px;
    --fs-h2: 50px;
  }
}


@media screen and (max-width:600px) {
  :root {
    --height-header: 72px;
    /* font sizes */
    --fs-h1: 50px;
    --fs-h2: 32px;
    --fs-h3: 18px;
    --fs-p: 16px;
    --fs-p-xlg: 24px;
    --fs-p-lg: 18px;
    --fs-p-sm: 14px;
    /* spacing */
    --b-space: 75px;
    --b-space-sm: 50px;

  }
} 

@media screen and (max-width:400px) {
  :root {
    --b-space: 60px;
  }

}

/* utilities */

.u-cf:after { 
	content:"";
	display:table;
	clear:both;
}

.u-wc {
	width:100%;
	max-width: 1470px;
  padding: 0 60px;
	margin:0 auto;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}

@media screen and (max-width: 980px) {

  .u-wc { 
    padding: 0 40px;
  }

}

@media screen and (max-width:400px) {

  .u-wc {
    padding: 0 30px;
  }

}

.u-wc--lg {
  max-width: 1550px;
}

.u-wc--sm {
  max-width: 1120px;
}

.u-wc--full {
  max-width: 100%;
}

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

.u-clr-primary-500 {
  color: var(--clr-primary500);
}

.u-clr-secondary-500 {
  color: var(--clr-secondary500);
}

/* base styles */

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
	background: white;
	font-family: var(--ff-body);
  font-weight: 400;
	font-size: var(--fs-p);
	margin: 0;
	color: var(--clr-text);
  position: relative;
  overflow-x: hidden;
  line-height: 1.77;
	-moz-osx-font-smoothing:grayscale;
	-webkit-font-smoothing:antialiased;
}

main {
  overflow: clip;
}

p, h1, h2, h3, h4, h5, h6, ul{
	margin:0;
}

h1, h2, h3, h4, h5 {
  font-family: var(--ff-heading);
  font-weight: 700;
}

h1 {
  font-size: var(--fs-h1);
  line-height: .95;
  margin: 0 0 14px;
  font-weight: 800;
}

h2 {
  font-size: var(--fs-h2);
  line-height: 1.2;
  margin: 32px 0 24px;
  font-weight: 800;
}

h2 sup {
  top: -1.2em;
  font-size: .35em;
  margin-left: 4px;
}

h2:first-child {
  margin-top: 0;
}


h3 {
  font-size: var(--fs-h3);
  margin: 32px 0 20px;
  line-height: 1.1;
}

h3:first-child {
  margin-top: 0;
}

h4 {
  font-size: var(--fs-h4);
  line-height: 1.3;
  margin: 28px 0 16px;
}

h4:first-child {
  margin-top: 0;
}

h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child,
p:last-child {
  margin-bottom: 0;
}


p {
  margin-bottom: 20px;
}

.p--sm {
  font-size: var(--fs-p-sm);
  line-height: 1.8;
}

.p--lg {
  font-size: var(--fs-p-lg);
  line-height: 1.43;
  margin-bottom: 28px;
  font-weight: 700;
}


.p--xlg {
  font-size: var(--fs-p-xlg);
  line-height: 1.43;
  margin-bottom: 16px;
  font-weight: 800;
}

h2 + .p--xlg {
  margin-top: -8px;
}


@media screen and (max-width: 600px) {

  h1 {
    margin-bottom: 16px;

  }

  h2 {
    margin-bottom: 16px;
  }
  
  h3 {
    margin-bottom: 16px;
  }

  p {
    margin-bottom: 12px;
  }

  .p--lg { 
    margin-bottom: 20px;
  }
}

li:last-child {
  margin-bottom: 0;
}

ul {
  padding-left: 24px;
  margin: 20px 0 16px;
}

ul.is-style-no-left-spacing {
  padding-left: 0;
}

ul:first-child {
  margin-top: 0;
}

ul:last-child {
  margin-bottom: 0;
}

ol {
  margin: 20px 0 16px;
}

ol:first-child {
  margin-top: 0;
}

ol:last-child {
  margin-bottom: 0;
}

li {
  padding-left: 4px;
  margin-bottom: 4px;
}

.ul--lg li {
  font-size: var(--fs-p-lg);
}


a, a:focus{
   outline: 0;
}

a {
  text-decoration: none;
  color: var(--clr-accent500);
	transition:.3s color, .3s background;
	-webkit-transition:.3s color, .3s background;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-tap-highlight-color: transparent; /* For some Androids */
}

a:hover {
  color: var(--clr-accent400);
}

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

hr {
  display: block;
  padding: 0;
  height: 1px;
  background: #bcbec0;
  margin: 36px 0;
  border: none !important;
}

@media screen and (max-width: 480px) {
  hr { 
    margin: 24px 0;
  }
}

.c-section {
  padding: var(--b-space) 0;
  position: relative;
  background-size: cover;
  background-position: center center;
}

.u-typographyDark {
  color: var(--clr-text-reverse);
}

.c-section--lg {
  padding: var(--b-space-lg) 0;
}

.c-section--sm {
  padding: var(--b-space-xsm) 0;
}

.c-section--noBottomPadding {
  padding-bottom: 0;
}

.c-section--noTopPadding {
  padding-top: 0;
}


input{
  outline:none;
}

.c-btnGroup {
  display: flex;
  grid-gap: 12px;
  margin-top: 32px;
}

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

.c-btn {
  display: inline-block;
  padding: 13px 40px;
  border: none;
  color: white;
  background: var(--clr-primary500);
  /* border: 1px solid var(--clr-accent500); */
  text-decoration: none;
  font-size: 21px;
  font-family: var(--ff-heading);
  font-weight: 800;
  text-align: center;
  border-radius: 50px;
  line-height: inherit;
  transition: .3s background, .3s color, .3s opacity;
}

.c-btn:hover {
  color: var(--clr-primary500);
  background: var(--clr-primary100);
}

.c-btn:disabled {
    opacity: .6;
}

.c-btn--secondary {
  background: black;
}

.c-btn--secondary:hover {
  background: var(--clr-secondary500);
  color: black;
}

@media screen and (max-width: 600px) {

  .c-btnGroup {
    flex-direction: column;
    grid-gap: 12px;
    align-items: flex-start;
  }

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

  .c-btn {
    font-size: 16px;
  }

}

.c-mainHeader {
  position: sticky;
  z-index: 9999;
  top: 0;
  background: var(--clr-primary900);
  height: var(--height-header);
}

.c-mainHeader .u-wc {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.c-slogan {
  margin-left: auto;
  color: white;
  font-weight: 800;
  position: relative;
  padding-left: 16px;
  line-height: 1.2;
}

.c-slogan:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-primary500);
}

.c-slogan span {
  color: var(--clr-secondary500);
}

.c-logo img {
  display: block;
}

.c-mainHeader__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

@media screen and (max-width: 1300px) {
  .c-mainHeader .c-btn {
    padding: 13px 24px;
    font-size: 15px;
  }
}

@media screen and (max-width: 1000px) {
  .c-slogan {
    font-size: 16px;
  }
}

@media screen and (max-width: 800px) {
  .c-slogan {
    display: none;
  }
  .c-mainHeader__actions { 
    margin-left: auto;
  }
  .c-logo {
    max-width: 160px;
  }
}
@media screen and (max-width: 600px) {
  .c-mainHeader .c-btn {
    padding: 10px 20px;
    font-size: 13px;
  }
  .c-logo {
    max-width: 120px;
  }
}

.c-hero {
  background: black;
}

.c-hero__section {
  background: var(--clr-primary900) url('imgs/hero-bg.jpg') center center / cover;;
  color: white;
  min-height: 70vh;
}

.c-hero__inner {
  display: flex;
  gap: 32px;
  min-width: 0;
}

.c-hero__content {
  width: 440px;
}

.c-hero__content p {
  max-width: 376px;
}

.c-hero__img {
  flex-grow: 1;
  margin-top: 12px;
  min-width: 0
}

.c-hero__img img {
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 980px) {
  .c-hero__img img {
    width: 300px;
  }

}

@media screen and (max-width: 767px) {

  .c-hero__content {
    width: 100%;
  }

  .c-hero__inner {
    flex-direction: column;
  }

}

.c-change, .c-assessment {
  background: var(--clr-primary800);
  color: white;
  text-align: center;
}

.c-inquire {
  padding: 0;
}

.c-inquire__inner {
  background: var(--clr-primary800);
  color: white;
  text-align: center;
  padding: var(--b-space) 45px 60px;
  border-top-right-radius: var(--container-radius);
  border-top-left-radius: var(--container-radius);
}

@media screen and (max-width: 1200px) {
  .c-inquire .u-wc {
    padding-inline: 16px;
  }

}

@media screen and (max-width: 600px) {
  .c-inquire .u-wc {
    padding-inline: 8px;
  }

  .c-inquire__inner {
    padding-inline: 32px;
  }

}

.c-featuresBlock {
  padding-top: 32px;
  padding-bottom: 0;
}

.c-mediaText {
  display: flex;
  gap: 9%;
  align-items: flex-start;
}

.c-mediaText--reverse {
  flex-direction: row-reverse;
}

.c-mediaText__media {
  width: 50%;
  flex-shrink: 0;
}

.c-mediaText__media img {
  display: block;
}

.c-mediaText__text {
  padding: var(--b-space) 0 60px;
  max-width: 450px;
}

@media screen and (max-width: 900px) {

    .c-mediaText, .c-mediaText--reverse {
      flex-direction: column;
      gap: 32px;
      align-items: stretch;
    }

    .c-mediaText__media {
      width: 100%;
    }

    .c-mediaText__media img {
      width: 800px;
      margin: 0 auto;
    }

    .c-mediaText__text {
      padding-top: 0;
      padding-bottom: 0;
      max-width: 100%;
    }
}

.c-featuresList {
  container-type: inline-size;
}

.c-featuresList__cols {
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.c-featuresList__col {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.c-featuresList__col li {
  padding: 0;
  margin: 0;
  font-weight: 800;
}

@container (max-width: 380px) {
  .c-featuresList__cols {
    flex-direction: column;
    gap: 0;
  }
}

.c-platform__wrapper{
  background: var(--clr-primary100);
  border-top-right-radius: var(--container-radius);
  border-top-left-radius: var(--container-radius);
  margin-top: var(--b-space);
  padding-top: 32px;
  padding-inline: 45px;
  padding: 26px 45px var(--b-space);
}

@media screen and (max-width: 1200px) {
  .c-platform {
    padding-inline: 16px;
  }


}

@media screen and (max-width: 600px) {
  .c-platform {
    padding-inline: 8px;
  }

  .c-platform__wrapper {
    padding-inline: 32px;
  }
}

.c-choose .u-wc {
  max-width: 1300px;
}

.c-choose__wrapper {
  max-width: 1200px;
  display: flex;
  gap: 8%;
  margin-top: 80px;
}

.c-choose__overview {
  width: 40%;
  flex-shrink: 0;
}

.c-choose__slider {
  min-width: 0;
}

.c-card {
  background: var(--clr-primary900);
  color: white;
  padding: 44px 36px;
  border-radius: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.c-card__subtitle {
  font-size: 31px;
  font-weight: 800;
  line-height: 1.4;
}

.c-card__title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
}

.c-card__price {
  font-size: 60px;
  border-bottom: 2px solid var(--clr-secondary500);
  font-weight: 800;
  position: relative;
  line-height: 1.3;
  margin-bottom: 8px;
}

.c-card__price span {
  font-size: 15px;
  font-weight: 500;
  position: absolute;
  left: calc(100% + 8px);
  top: 44px;
}

.c-card__list {
  list-style-type: none;
  padding: 0;
  text-align: left;
  font-size: 20px;
  margin: 8px 0 32px;
}

.c-card__list li {
  padding: 0 0 0 32px;
  position: relative;
  font-weight: 900;
  line-height: 1.4;
}

.c-card__list li + li {
  margin-top: 8px;
}

.c-card__list li:before {
  content: '';
  background: url('imgs/check-icon.png') center center / 20px 15px;
  width: 20px;
  height: 15px;
  margin-top: -7px;
  position: absolute;
  top: 50%;
  left: 0;
}


.c-choose__control {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: var(--clr-text);
  padding: 0;
  border: none;
  outline: none;
  background: none;
  text-align: left;
  line-height: 1.2;
  transition: .3s color;
}

.c-choose__control + .c-choose__control {
  margin-top: 8px;
}

.c-choose__control:hover, .c-choose__control--active {
  color: var(--clr-primary500);
}

.c-chooseSlider .owl-stage-outer {
  overflow: visible;
  pointer-events: none;
}

.c-chooseSlider .owl-stage {
  display: flex;
}

.c-chooseSlider .owl-item {
  pointer-events: initial;
  opacity: 0;
  visibility: hidden;
  display: flex;
  transition: .3s opacity, 0s visibility .3s;
}

.c-chooseSlider .owl-item.active {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.c-chooseSlider {
  position: relative;
  padding-right: 107px;
}

.c-chooseSlider .owl-nav {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c-chooseSlider .owl-nav button.owl-prev, .c-chooseSlider .owl-nav button.owl-next {
  width: 62px;
  height: 62px;
  background: var(--clr-primary500) url('imgs/arrow-left.png') no-repeat center center / 15px 16px;
  border-radius: 50%;
  border: none;
  padding: 0;
  font-size: 0;
  transition: .3s background;
}

.c-chooseSlider .owl-nav button.owl-next {
  background-image: url('imgs/arrow-right.png');
}

.c-chooseSlider .owl-nav button.owl-prev:hover, .c-chooseSlider .owl-nav button.owl-next:hover {
  background-color: var(--clr-primary700);
}

@media screen and (max-width: 1200px) {

  .c-choose__control {
    font-size: 24px;
  }

  .c-card__subtitle {
    font-size: 20px;
  }

  .c-card__price {
    font-size: 50px;
  }

  .c-card__title {
    font-size: 32px;
  }

  .c-card__list { 
    font-size: 17px;
  }

  .c-card__price span {
    font-size: 12px;
    top: 36px;
  }

  .c-chooseSlider {
    padding-right: 80px;
  }

  .c-choose__overview {
    width: 45%;
  }

}

@media screen and (max-width: 980px) {

  .c-choose .u-wc {
    max-width: 800px;
  }

  .c-choose__wrapper {
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
  }

  .c-choose__controls {
    display: none;
  }

  .c-choose__overview {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .c-choose__wrapper {
    margin-top: 0;
  }
}

@media screen and (max-width: 480px) {

  .c-card {
    padding: 36px 32px;
  }

  .c-card__price {
    font-size: 32px;
  }
  .c-card__list {
    font-size: 16px;
  }

  .c-card__title {
    font-size: 24px;
  }

  .c-chooseSlider .owl-nav button.owl-prev, .c-chooseSlider .owl-nav button.owl-next {
    width: 48px;
    height: 48px;
  }

  .c-chooseSlider .owl-nav {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 24px;
    transform: none;
  }

  .c-chooseSlider {
    padding-right: 0;
  }

  .c-card__price span {
    top: 17px;
  }

  .c-card__list {
    margin-bottom: 24px;
  }

}

.c-modal {
  background: var(--clr-violet);
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  z-index: 9999;
  display: flex;
  padding: 100px 60px;
  text-align: center;
  overflow-x: auto;
  visibility: hidden;
  transform: scale(.9);
  opacity: 0;
  transition: .3s transform, .3s opacity, 0s visibility .3s;
}

.c-modal--violet {
  background: var(--clr-violet);
}

.c-modal--active {
  visibility: visible;
  transform: none;
  opacity: 1;
  transition-delay: 0s;
}

.c-modal__close {
  position: absolute;
  top: 60px;
  right: 60px;
  background: black;
  background-image: url('imgs/close-icon.png');
  background-size: 20px 20px;
  background-position: center center;
  background-repeat: no-repeat;
  width: 72px;
  height: 72px;
  border-radius: 100%;
  border: none;
  font-size: 0;
  outline: none;
  transition: .3s background;
}

.c-modal__close:hover {
  background-color: #2b2b2b;
}


.c-modal .u-wc {
  margin: auto;
  padding: 0;
}

.c-modal h2 {
  font-size: 60px;
  margin-bottom: 70px;
}

.c-modal h2 + p {
  max-width: 630px;
  margin-inline: auto;
}

.c-modal__footer {
  text-align: center;
  max-width: 830px;
  margin: 0 auto;
}

.c-modal__footer p:first-child {
  max-width: 575px;
  margin-inline: auto;
}

.c-modal__footer p {
  font-size: var(--fs-p-sm);
}

.c-modal__footer img {
  display: block;
  margin: 48px auto 0;
}

@media screen and (max-width: 600px) {
  .c-modal__footer img {
    margin: 24px auto 0;
  }
}

@media screen and (max-width:980px) {

  .c-modal__close {
    top: 30px;
    right: 30px;
  }
}


@media screen and (max-width:600px) {

  .c-modal {
    padding: 60px 40px;
  }

  .c-modal h2 {
    font-size: 48px;
    margin-bottom: 20px;
  }

  .c-modal__close {
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}

@media screen and (max-width:400px) {
  .c-modal {
    padding: 60px 30px;
  }
}

.c-form  {
  max-width: 775px;
  margin: 60px auto;
}

.c-form__status {
  margin: 20px 0;
}

.c-form__status p {
  font-weight: 800;
  margin: 32px 0;
}


.c-form textarea, .c-form input[type="text"], .c-form input[type="email"] {
  border: 0;
  display: block;
  width: 100%;
  padding: 22px 24px;
  font-size: 16px;
  color: black;
  background: #eee9e9;
  border-radius: 8px;
  font-weight: 600;
  transition: .3s background;
}

.c-form textarea:focus, .c-form input[type="text"]:focus, .c-form input[type="email"]:focus {
  background: white;
}

.c-form__inputs {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 40px;
}

.c-form__input {
  width: calc((100% - 28px) / 2);
}

.c-form textarea {
  width: 100% !important;
}

.c-form textarea.error, .c-form input[type="text"].error, .c-form input[type="email"].error {
  border: 4px solid red;
}

.c-form .c-btn {
  min-width: 290px;
}

.c-form .c-btn[type="submit"] {
  margin-top: 20px;
}

.genisys {
  position: absolute !important;
  z-index: -1;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  word-wrap: normal;
  color: white;
  opacity: 0;
  margin: 0 !important;
  padding: 0 !important;
}

.c-form__or {
  margin: 12px 0;
  font-weight: 800;
  font-size: 21px;
}

@media screen and (max-width:800px) {

  .c-form__inputs {
    gap: 12px;
  }

  .c-form__input {
    width: 100%;
  }
}


@media screen and (max-width:600px) {

  .c-form {
    margin: 40px 0;
  }

  .c-form textarea, .c-form input[type="text"], .c-form input[type="email"] {
    padding: 16px 20px;
    font-size: 16px;
  }

  .c-form .c-btn {
    min-width: 100%;
  }

  .c-form__inputs {
    margin-bottom: 24px;
  }

  .c-form .c-btn[type="submit"] {
    margin-top: 12px;
  }

  .c-form__or {
    margin: 8px 0;
    font-size: 16px;
  }

}

.c-copyright {
  font-size: var(--fs-p-sm);
  color: #a6a2a2;
}

.c-copyright a {
  color: inherit;
}

.c-copyright a:hover {
  color: white;
}


.animate {
  opacity: 0;
  filter: blur(5px);
  visibility: hidden;
  transform-origin: top;
  transform:  rotate(1deg) scale(1.1) translateY(1.8%);
  transition: 1s opacity .3s, 1s transform .3s, 1s filter .3s, 0s visibility .3s;
}

.show {
  visibility: visible;
  opacity: 1;
  filter: none;
  transform: none;
}

.animate[animation="slow-zoom"] {
  filter: none;
  transform: scale(1);
  transition: 1s opacity .3s, 20s transform .3s, 0s visibility .3s;
}

.animate[animation="slow-zoom"].show {
  transform: scale(1.2);
}

.animate[delay="1"] {
  transition-delay: .3s;
}

.animate[delay="2"] {
  transition-delay: .6s;
}

.animate[delay="3"] {
  transition-delay: .9s;
}

.animate[delay="4"] {
  transition-delay: 1.2s;
}