/* Theme base styles */

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Generic
This is where reset, normalize & box-sizing styles go.
*/

/* *, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
} */

/* Objects
Non-cosmetic design patterns including grid and layout classes)
*/

/* 

/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
} */
/* .content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
} */

/* Elements
Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/



/* Components
Specific pieces of UI that are stylized. Typically used for global partial styling
*/

/* /* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
} */

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}

/* Font */

@font-face {
  font-family: "Nekst";
  src: url("https://7907058.fs1.hubspotusercontent-na1.net/hubfs/7907058/pages-files/about-us/fonts/FontsFree-Net-Nekst-Black.ttf")
    format("truetype");
  font-weight: 900;
}

@font-face {
  font-family: "Nekst";
  src: url("https://7907058.fs1.hubspotusercontent-na1.net/hubfs/7907058/pages-files/about-us/fonts/Nekst-Bold.ttf")
    format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "Nekst";
  src: url("https://7907058.fs1.hubspotusercontent-na1.net/hubfs/7907058/pages-files/about-us/fonts/Nekst-SemiBold.ttf")
    format("truetype");
  font-weight: 600;
}

@font-face {
  font-family: "Nekst";
  src: url("https://7907058.fs1.hubspotusercontent-na1.net/hubfs/7907058/pages-files/about-us/fonts/Nekst-Medium.ttf")
    format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: "Nekst";
  src: url("https://7907058.fs1.hubspotusercontent-na1.net/hubfs/7907058/pages-files/about-us/fonts/Nekst-Regular.ttf")
    format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Helvetica-Bold";
  src: url("https://7907058.fs1.hubspotusercontent-na1.net/hubfs/7907058/pages-files/about-us/fonts/Helvetica-Bold.ttf")
    format("truetype");
}

@font-face {
  font-family: "Helvetica";
  src: url("https://7907058.fs1.hubspotusercontent-na1.net/hubfs/7907058/pages-files/about-us/fonts/Helvetica.ttf")
    format("truetype");
}

@font-face {
  font-family: CharterITC BT;
  src: url("https://7907058.fs1.hubspotusercontent-na1.net/hubfs/7907058/pages-files/about-us/fonts/Charter-ITC-Roman-BT.ttf")
    format("truetype");
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-display: swap;
    font-family: Montserrat-font;
    font-style: normal;
    font-weight: 500;
  src: url("https://7907058.fs1.hubspotusercontent-na1.net/hubfs/7907058/pages-files/fonts/Montserrat-Medium.ttf") format("truetype");
    
}

@font-face {
  font-display: swap;
  font-family: Neue Montreal;
  font-style: normal;
  font-weight: 700;
  src: url("https://7907058.fs1.hubspotusercontent-na1.net/hubfs/7907058/pages-files/fonts/NeueMontreal-Bold.ttf")
    format("truetype");
}

@font-face {
  font-display: swap;
  font-family: Neue Montreal;
  font-style: normal;
  font-weight: 500;
  src: url("https://7907058.fs1.hubspotusercontent-na1.net/hubfs/7907058/pages-files/fonts/NeueMontreal-Medium.ttf")
    format("truetype");
}

@font-face {
  font-display: swap;
  font-family: Neue Montreal;
  font-style: normal;
  font-weight: 400;
  src: url("https://7907058.fs1.hubspotusercontent-na1.net/hubfs/7907058/pages-files/fonts/NeueMontreal-Regular.ttf")
    format("truetype");
}

/* TEKO fonts */

@font-face {
  font-family: "Teko";
  src: url("https://7907058.fs1.hubspotusercontent-na1.net/hubfs/7907058/pages-files/fonts/Teko-Bold.ttf")
    format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "Teko";
  src: url("https://7907058.fs1.hubspotusercontent-na1.net/hubfs/7907058/pages-files/fonts/Teko-SemiBold.ttf")
    format("truetype");
  font-weight: 600;
}

@font-face {
  font-family: "Teko";
  src: url("https://7907058.fs1.hubspotusercontent-na1.net/hubfs/7907058/pages-files/fonts/Teko-Medium.ttf")
    format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: "Teko";
  src: url("https://7907058.fs1.hubspotusercontent-na1.net/hubfs/7907058/pages-files/fonts/Teko-Regular.ttf")
    format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Teko";
  src: url("https://7907058.fs1.hubspotusercontent-na1.net/hubfs/7907058/pages-files/fonts/Teko-Light.ttf")
    format("truetype");
  font-weight: 300;
}

/* Airstrike Expanded font */

@font-face {
  font-family: "Airstrike Expanded";
  src: url("https://7907058.fs1.hubspotusercontent-na1.net/hubfs/7907058/pages-files/fonts/Airstrike%20Expanded.ttf")
    format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url("https://7907058.fs1.hubspotusercontent-na1.net/hubfs/7907058/pages-files/fonts/RobotoCondensed-Bold.ttf")
    format("truetype");
  font-weight: 700;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url("https://7907058.fs1.hubspotusercontent-na1.net/hubfs/7907058/pages-files/fonts/RobotoCondensed-SemiBold.ttf")
    format("truetype");
  font-weight: 600;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url("https://7907058.fs1.hubspotusercontent-na1.net/hubfs/7907058/pages-files/fonts/RobotoCondensed-Medium.ttf")
    format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: "Roboto Condensed";
  src: url("https://7907058.fs1.hubspotusercontent-na1.net/hubfs/7907058/pages-files/fonts/RobotoCondensed-Regular.ttf")
    format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "PP Telegraf";
  src: url("https://7907058.fs1.hubspotusercontent-na1.net/hubfs/7907058/pages-files/fonts/pptelegraf-ultrabold.otf")
    format("truetype");
  font-weight: 800;
}



@font-face {
  font-family: "PP Telegraf";
  src: url("https://7907058.fs1.hubspotusercontent-na1.net/hubfs/7907058/pages-files/fonts/pptelegraf-regular.otf")
    format("truetype");
  font-weight: 400;
}

* {
  margin: 0;
  outline: none !important;
  box-sizing: border-box;
  text-decoration: none !important;
}

body * {
  font-family: "Nekst";
}

.landing-redesign-container {
  max-width: 1600px;
  padding: 0 44px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 1440px) {
  .landing-redesign-container {
    padding: 0 25px;
  }
}

@media (max-width: 1023px) {
  .landing-redesign-container {
    padding: 0 21px;
  }
}


a,
button,
input,
textarea,
.form__item-input {
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease,
    background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  -moz-transition: opacity 0.3s ease, visibility 0.3s ease,
    background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  -ms-transition: opacity 0.3s ease, visibility 0.3s ease,
    background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  -o-transition: opacity 0.3s ease, visibility 0.3s ease,
    background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease,
    background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

 .sc__subtitle {
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
   .sc__subtitle {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 24px;
  }
}

 .hover-active input {
  opacity: 1;
}

 .container {
  margin: 0 auto;
  padding-left: 5px;
  padding-right: 5px;
}



@media (min-width: 767px) {
   .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (min-width: 1200px) {
   .container {
    max-width: 1600px;
    width: 100%;
    padding-left: 34px;
    padding-right: 34px;
  }
}


@media (min-width: 1440px) {
   .container {
    padding-left: 90px;
    padding-right: 90px;
  }
}
@media screen and (max-width: 1199px) {
   .container {
    padding-left: 34px;
    padding-right: 34px;
    max-width: 100%;
  }
}




@media screen and (max-width: 1023px) {
   .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media screen and (max-width: 767px) {
   .container {
    padding-left: 5px;
    padding-right: 5px;
  }
}

.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

@media (min-width: 576px) {
  .col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

@media (min-width: 992px) {
  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 1200px) {
  .col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}


@media screen and (min-width: 1440px) {
  .promo__title {
    margin-left: 60px;
  }
  .sc__promo .sc__descr {
    max-width: 560px;
    margin-left: 72px;
  }
}

.icon__down,
.icon__up {
  width: 22px;
  height: 23px;
  min-width: 22px;
  margin-right: 10px;
}

@media screen and (max-width: 767px) {
  .icon__down,
  .icon__up {
    margin-right: 2px;
    margin-top: 7px;
  }
  .icon__down svg,
  .icon__up svg {
    width: 15px;
    height: 15px;
    min-width: 15px;
    margin-right: 10px;
  }
}


/* NEW COURSE STYLE */

@font-face {
  font-family: "GT Eesti Pro";
  src: url("https://7907058.fs1.hubspotusercontent-na1.net/hubfs/7907058/pages-files/fonts/gteestiprodisplay_medium.otf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "GT Eesti Pro";
  src: url("https://7907058.fs1.hubspotusercontent-na1.net/hubfs/7907058/pages-files/fonts/gteestiprodisplay_regular.otf") format("truetype");
  font-weight: 400;
}

/* ROOT START */

:root {
  --swiper-theme-color: #007aff;
}

:root {
  --swiper-navigation-size: 44px;
}

:root {
  --gray: #595959;
  --dark: #303030;
  --black: #1f1f1f;
  --player-bg: #ebc86e;
  --decor-gradient-1: linear-gradient(
    78deg,
    rgb(var(--decor-rgb-1)) 2%,
    rgba(var(--decor-rgb-1), 0.15) 104%
  );
  --decor-gradient-2: linear-gradient(
    78deg,
    rgb(var(--decor-rgb-2)) 2%,
    rgba(var(--decor-rgb-2), 0.15) 104%
  );
  --decor-gradient-3: linear-gradient(
    78deg,
    rgb(var(--decor-rgb-3)) 2%,
    rgba(var(--decor-rgb-3), 0.15) 104%
  );
  --decor-gradient-4: linear-gradient(
    78deg,
    rgb(var(--decor-rgb-4)) 2%,
    rgba(var(--decor-rgb-4), 0.15) 104%
  );
  --outer: 0;
  --inner: 0;
  --y-padding: 4.5rem;
  --shape-side: Min(1.5rem, 5.8vw);
  --free-side: Min(1.5rem, 5.8vw);
  --max-content: 80.375rem;
  --chart-size: 12.5rem;
  --chart-stroke-width: 12;
  --chart-margin: 1.25rem;
  --chart-inner-margin: 1.625rem;
}

:root {
  --banner-height: 48px;
}

@media only screen and (min-width: 48em) {
  :root {
    --inner: 1.25rem;
    --y-padding: 6.25rem;
    --chart-size: 16.375rem;
    --chart-margin: 1.75rem;
    --chart-inner-margin: 2.1875rem;
    --banner-height: 60px;
  }
}

@media only screen and (min-width: 64em) {
  :root {
    --outer: 0.5rem;
    --inner: 0.75rem;
    --shape-side: Min(9vw, 7.5rem);
    --free-side: Min(5vw, 4.125rem);
  }
}

@media only screen and (min-width: 71.25em) {
  :root {
    --y-padding: 9rem;
    --inner: 2rem;
    --chart-size: 20.25rem;
    --chart-margin: 2.125rem;
    --chart-inner-margin: 2.75rem;
  }
}

@media only screen and (max-width: 71.25em) {
  .mobile-hidden {
    display: none;
  }
}

/* ROOT END */

body {
  /* background: #f3f3f3; */

  box-sizing: border-box;
  text-rendering: optimizeSpeed;
  vertical-align: baseline;
}

body .section * {
  font-family: GT Eesti Pro, sans-serif;
  line-height: 1.16;
}

/* TAGS START */

.new-design a {
  text-decoration: none;
}

.new-design a,
.new-design button {
  -webkit-tap-highlight-color: transparent;
  outline: none;
  transition: all 0.25s;
}

.new-design blockquote,
.new-design body,
.new-design dd,
.new-design dl,
.new-design figure,
.new-design h1,
.new-design h2,
.new-design h3,
.new-design h4,
.new-design h5,
.new-design h6,
.new-design ol,
.new-design p,
.new-design ul {
  margin: 0;
  padding: 0;
}

.new-design ol,
.new-design ul {
  list-style-type: none;
}

.new-design b,
.new-design h1,
.new-design h2,
.new-design h3,
.new-design h4,
.new-design h5,
.new-design h6,
.new-design strong {
  font-weight: 500;
}

.new-design img,
.new-design picture,
.new-design svg {
  display: block;
  max-width: 100%;
}

.new-design button,
.new-design input,
.new-design select,
.new-design textarea {
  border: none;
  font: inherit;
  padding: 0;
}

*,
:after,
:before {
  box-sizing: inherit;
  color: inherit;
  line-height: inherit;
}

/* TAGS END */

/* CONTAINER START */

.course-container {
  grid-column: main;
}

.container--free {
  padding: var(--y-padding) var(--free-side);
}

.section {
  background: #f3f3f3;
  display: grid;
  grid-template-columns:
    [full-start] minmax(var(--outer), 1fr) [wide-start] var(--inner)
    [main-start] minmax(0, var(--max-content)) [main-end] var(--inner) [wide-end] minmax(
      var(--outer),
      1fr
    )
    [full-end];
  overflow: hidden;
  position: relative;
  z-index: 200;
}

.wrapper {
  position: relative;
  z-index: 100;
}

.container--shape {
  background-color: var(--bg-color, #111);
  border-radius: 2.25rem;
  color: var(--txt-color, #fff);
  padding: 5rem var(--shape-side) var(--y-padding);
}

@media only screen and (min-width: 48em) {
  .container--shape {
    padding-top: var(--y-padding);
  }
}

@media only screen and (min-width: 71.25em) {
  .container--shape {
    border-radius: 2.5rem;
  }
}

/* CONTAINER END */

/* GLOBAL CLASS START */

.new-design .sm-lead {
  color: var(--txt-color, var(--dark));
  font-size: 1.25rem;
}

.new-design .sc-title {
  color: var(--txt-color, var(--black));
  font-size: 14vw;
  line-height: 0.9;
  padding-bottom: 0.13em;
  padding-top: 0.13em;
}

.new-design .sc-title span {
  display: block;
}

.new-design .sm-label {
  font-size: 1rem;
  font-weight: 500;
}

.new-design .sc-title,
.new-design .sm-label,
.new-design .sm-lead {
  font-weight: 500;
}

.new-design .reg-lg,
.new-design .reg-md,
.new-design .reg-sm {
  font-size: 1.25rem;
  line-height: 1.875rem;
}

.new-design .reg-xs, .new-design .reg-xs * {
  font-size: 1.125rem;
  line-height: 1.625rem;
}

@media only screen and (min-width: 25.875em) {
  .new-design .sc-title {
    font-size: 3.625rem;
  }
}

@media only screen and (min-width: 48em) {
  .new-design .sm-lead {
    font-size: 1.5rem;
  }
  .new-design .sc-title {
    font-size: 5rem;
  }

  .new-design .sm-label {
    font-size: 1.125rem;
  }

  .new-design .reg-sm {
    line-height: 2rem;
  }
  .new-design .reg-md,
  .new-design .reg-sm {
    font-size: 1.375rem;
  }
  .new-design .reg-xs, .new-design .reg-xs * {
    font-size: 1.25rem;
    line-height: 1.8125rem;
}

}

@media only screen and (min-width: 71.25em) {
  .new-design .sm-lead {
    font-size: 1.625rem;
  }
  .new-design .sc-title {
    font-size: 6.25rem;
  }
}

/* GLOBAL CLASS END */

/* PANE START */

.new-design .pane__wrap {
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

.new-design .pane__wrap ~ * {
  position: relative;
  z-index: 10;
}

.new-design .pane {
  max-width: unset;
  overflow: visible;
  position: relative;
}

@media only screen and (min-width: 48em) {
  .new-design .pane--sm {
    display: none;
  }

  @media only screen and (max-width: 47.9375em) {
    .new-design .pane--lg {
      display: none;
    }
  }
}

/* LANDING-V3 START */

.landing-v4-container {
  max-width: 1366px;
  width: 100%;
  margin: 0 auto;
  padding: 0 11px;
}

/* LANDING-V5 START */

.landing-v5-container {
  max-width: 2576px;
  width: 100%;
  margin: 0 auto;
  padding: 0 18px;
}

@media (min-width: 767px) {
  .landing-v5-container {
    padding: 0 27px;
  }
}

.referral-page-container {
  max-width: 1600px;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  margin: 0 auto;
}

@media (min-width: 370px) {
  .referral-page-container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

@media (min-width: 767px) {
  .referral-page-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (min-width: 1200px) {
  .referral-page-container {
    padding-left: 34px;
    padding-right: 34px;
  }
}

@media (min-width: 1440px) {
  .referral-page-container {
    padding-left: 90px;
    padding-right: 90px;
  }
}

/* careers-container */

.careers-container {
  max-width: 1600px;
  padding: 0 44px;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .careers-container {
    padding: 0 12px;
  }
}

/* teach-with-us-container */

.teach-with-us-container {
  max-width: 1600px;
  margin: 0 auto;
}

/* Landing v6 */

.landing-v6-container {
  max-width: 902px;
  padding: 0 15px;
  width: 100%;
  margin: 0 auto;
  color: #fff;
}

.referral-aller {
  /* height: 50px; */
  padding: 12.5px 10px;
  width: 100vw;
  background: #025453;
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;

  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.referral-aller * {
  white-space: nowrap;
}

.referral-aller p {
  color: #f5f5f5;
  font-family: "Neue Montreal";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
}

.referral-aller p span {
  font-family: "Neue Montreal";
}

.referral-aller a {
  color: #e5f744;
  font-family: Nekst;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 120% */
  letter-spacing: -0.16px;
  text-decoration-line: underline !important;
  cursor: pointer;
  text-transform: uppercase;
  text-underline-offset: 2px;
}

.show-referral-alert {
  position: relative;
  padding-top: var(--referral-alert-height);
}

.show-referral-alert .referral-aller {
  display: flex;
}

.show-referral-alert .header,
.show-referral-alert header {
  top: var(--referral-alert-height);
}

@media (max-width: 767px) {
  .referral-aller {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 400px) {
  .referral-aller {
    flex-direction: column;
    gap: 10px;
  }

  .referral-aller p {
    font-size: 18px;
  }
}

@media (max-width: 350px) {
  .referral-aller a {
    font-size: 18px;
  }
}

.content {
  margin-top: 201px;
}

.content .hero .course__title {
    margin-left: 0;
}




.blog__nav ul li a {
    color: #30192d !important;
}

.content .pagination {
    margin-top: 40px;
}

@media(max-width: 1199px) {
    .content {
        margin-top: 183px;
    }


    .content .hero .container {
        padding-bottom: 51px;
    }

    .content .hero .course__title {
        font-size: 84px;
        line-height: 71px;
        margin-bottom: 40px;
    }
}

@media(max-width: 1023px) {
    .content {
        margin-top: 218px;
    }


    .content .hero .container {
        padding-bottom: 41px;
    }



    .content .hero .course__subtitle {
        margin-bottom: 6px;
    }

    .content .hero .course__title {
        margin-bottom: 0;
    }
}

@media(max-width: 767px) {
    .content {
        margin-top: 133px;
    }


    .content .hero .container {
        padding-bottom: 34px;
    }

    .content .hero .course__subtitle {
        margin-bottom: 8px;
    } 

    .content .hero .course__title {
            font-size: 61px;
            line-height: 48px;
    }
}

@media(max-width: 413px) {
    .content {
        margin-top: 123px;
    }


    .content .hero .container {
        padding-bottom: 31px;
    }

    .content .hero .course__subtitle {
        margin-bottom: 3px;
    } 

    .content .hero .course__title {
        font-size: 48px;
        line-height: 41px;
    }
}