/*----------------GLOBAL STYLES----------------*/
html, body {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  line-height: 150%;
  color: #4D4D4D;
}

body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

html::-webkit-scrollbar {
  width: 5px;
  height: 0px;
  background-color: #2E36CB;
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
  background-color: #000;
  border-radius: 10px;
}

.container {
  max-width: 1208px;
  margin: 0 auto;
}

.font-deco {
  font-family: "Merriweather", serif;
  color: #2E36CB;
}

.content-title {
  font-size: 72px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -1.5px;
  margin-bottom: 48px;
  max-width: 585px;
  color: #000;
}

.content-desc {
  max-width: 480px;
  margin-bottom: 40px;
}

img {
  -webkit-transition: -webkit-filter 0.5s ease-in-out;
  transition: -webkit-filter 0.5s ease-in-out;
  transition: filter 0.5s ease-in-out;
  transition: filter 0.5s ease-in-out, -webkit-filter 0.5s ease-in-out;
}

img:hover {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

.margin-top30 {
  margin-top: 30px;
}

@media only screen and (min-width: 200px) and (max-width: 1024px) {
  .content-title {
    font-size: 32px;
  }
}

.btn-start, .btn-learn {
  width: 138px;
  height: 56px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 33px;
  background-color: #2E36CB;
  -webkit-transition: background-color 0.5s ease-in-out;
  transition: background-color 0.5s ease-in-out;
  position: relative;
}

.btn-start:before, .btn-learn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2E36CB;
  border-radius: 33px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.btn-start:hover:before, .btn-learn:hover:before {
  -webkit-transform: scale(1.2) scaleY(1.4);
          transform: scale(1.2) scaleY(1.4);
  opacity: 0;
}

.btn-start:hover, .btn-learn:hover {
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-start:active, .btn-learn:active {
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.btn-learn {
  background-color: #fff;
  color: #2E36CB;
  border: 2px solid #2E36CB;
}

.btn-modal {
  border: 2px solid #fff;
  color: #fff;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  width: 175px;
  height: 50px;
  border-radius: 33px;
  -webkit-transition: -webkit-transform 0.5s ease-in;
  transition: -webkit-transform 0.5s ease-in;
  transition: transform 0.5s ease-in;
  transition: transform 0.5s ease-in, -webkit-transform 0.5s ease-in;
}

.btn-modal:hover {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

/* Links */
a, a:link, a:visited {
  color: inherit;
  text-decoration: none;
  /* display: inline-block; */
}

a:hover {
  /* color: inherit; */
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type="submit"] {
  display: inline-block;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

/*------------------BLOCKS-----------------*/
.header {
  border-bottom: 1px solid #C4C4C4;
  overflow: hidden;
}

.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 44px 0 27px;
}

.header__wrapper-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__logo {
  font-size: 23px;
  font-weight: 700;
  color: #000;
  cursor: pointer;
  -webkit-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
  margin-right: 87px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.header__logo:hover {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

.header__logo img {
  margin-right: 11px;
  vertical-align: middle;
}

.header__nav {
  font-size: 16px;
}

.header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__nav ul > * + * {
  margin-left: 40px;
}

.header__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  cursor: pointer;
  -webkit-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}

.header__cta-login {
  height: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 20px;
  padding-right: 48px;
  -webkit-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}

.header__cta-login:hover {
  color: #2E36CB;
}

.header__cta-start {
  height: 100%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
  padding-left: 48px;
  border-left: 1px solid #4D4D4D;
  -webkit-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}

.header__cta-start:hover {
  color: #2E36CB;
}

/*-------------------For Burger-----------------------*/
.header__nav.show-header__nav {
  display: block;
}

.header__cta.show-header__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav__mobile {
  display: none;
}

/*------------------For Burger End----------------------*/
@media only screen and (min-width: 200px) and (max-width: 1024px) {
  .header__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header__wrapper-2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header__logo {
    margin-right: unset;
    margin-left: -15px;
    padding-bottom: 20px;
  }
  .header__nav {
    display: none;
  }
  .header__nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header__nav ul li {
    margin-left: unset;
    padding: 5px 0;
  }
  .header__cta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: unset;
    margin-top: 20px;
    display: none;
  }
  .header__cta-login {
    padding-right: unset;
  }
  .header__cta-start {
    padding: 10px 0;
    border-left: unset;
  }
  .header__cta-start::before {
    display: none;
  }
  .nav__mobile {
    display: block;
    margin: 20px 0 40px;
  }
}

.begin {
  padding: 63px 0 97px;
  border-bottom: 1px solid #C4C4C4;
}

.begin__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
}

.begin__content {
  position: absolute;
  top: 45%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.begin__content-title {
  font-size: 100px;
  letter-spacing: -1px;
  line-height: 100%;
  margin-bottom: 48px;
  margin-right: 52px;
  color: #000;
  z-index: -999;
}

.begin__content-desc {
  max-width: 505px;
  margin-bottom: 40px;
}

.begin__pictures {
  max-width: 584px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

.begin__pictures-col-1 {
  position: relative;
  margin-right: 40px;
  min-width: 272px;
}

.begin__pictures-col-1 img {
  width: 100%;
}

.begin__pictures-col-1::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("./../../img/elements/line-1.svg");
  background-repeat: no-repeat;
  top: -129px;
  left: 142px;
  -webkit-animation: movebounce 3s linear infinite;
          animation: movebounce 3s linear infinite;
}

@-webkit-keyframes movebounce {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes movebounce {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.begin__pictures-col-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 42px;
}

.begin__pictures-col-2 img {
  -webkit-transition: -webkit-filter 0.5s ease-in-out;
  transition: -webkit-filter 0.5s ease-in-out;
  transition: filter 0.5s ease-in-out;
  transition: filter 0.5s ease-in-out, -webkit-filter 0.5s ease-in-out;
}

.begin__pictures-col-2 img:hover {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

@media only screen and (min-width: 200px) and (max-width: 1024px) {
  .begin {
    padding: 40px 45px;
  }
  .begin__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .begin__content {
    position: relative;
    -webkit-transform: translate(0%);
            transform: translate(0%);
    text-align: center;
  }
  .begin__content-title {
    font-size: 42px;
    margin-right: unset;
  }
  .begin__pictures {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 120px;
  }
  .begin__pictures-col-1 {
    margin: 0 0 40px 0;
  }
  .begin__pictures-col-1::before {
    width: 50%;
    top: -100px;
    left: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .begin__pictures {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-column-gap: 50px;
            column-gap: 50px;
  }
}

.video {
  position: relative;
  /*overflow: hidden;*/
  max-width: 272px;
}

.video__overlay {
  position: absolute;
  z-index: 99;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}

.video__overlay-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.video__overlay-btn img {
  width: 56px;
  height: 56px;
}

.video__asset {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.video__overlay.hidden {
  opacity: 0;
}

.rating {
  padding: 101px 0 97px;
  border-bottom: 1px solid #C4C4C4;
}

.rating__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.rating__circle {
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 5px solid #2E36CB;
  background-color: #fff;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.rating__circle-number {
  font-size: 160px;
  line-height: 100%;
  letter-spacing: -5px;
  color: #000;
}

.rating__circle-desc {
  font-weight: 500;
  font-size: 28px;
}

.rating__circle:after {
  content: "";
  position: absolute;
  top: 40%;
  right: -5px;
  width: 0;
  /*---no need---*/
  height: 0;
  /*---no need---*/
  border-top: 50px solid transparent;
  border-right: 75px solid #fff;
  border-bottom: 50px solid transparent;
}

.rating__circle-top {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 5px solid rgba(46, 54, 203, 0.2);
  background-color: transparent;
}

@media only screen and (min-width: 200px) and (max-width: 1024px) {
  .rating {
    padding: 40px 45px;
  }
  .rating__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .rating__circle {
    width: 200px;
    height: 200px;
    margin-bottom: 40px;
  }
  .rating__circle:after {
    border-top: 25px solid transparent;
    border-right: 50px solid #fff;
    border-bottom: 25px solid transparent;
  }
  .rating__circle-number {
    font-size: 60px;
  }
  .rating__circle-desc {
    font-size: 16px;
  }
  .rating__circle-top {
    width: 198px;
    height: 198px;
  }
  .rating__content {
    text-align: center;
  }
}

.seminars {
  padding: 96px 0;
  border-bottom: 1px solid #C4C4C4;
}

.seminars__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.seminars__pictures {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 584px;
}

.seminars__pictures-col-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 40px;
}

.seminars__pictures-col-1 img:nth-child(2) {
  width: 176px;
  height: 146px;
  margin-top: 32px;
  -ms-flex-item-align: end;
      align-self: flex-end;
  -webkit-animation: movebounce 3s linear infinite;
          animation: movebounce 3s linear infinite;
}

@keyframes movebounce {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.seminars__pictures-col-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.seminars__pictures-content {
  text-align: center;
  margin-bottom: 48px;
}

.seminars__pictures-content p:first-child {
  font-size: 120px;
  line-height: 110%;
  margin-bottom: 16px;
  color: #000;
}

.seminars__pictures-content p:last-child {
  font-size: 24px;
  font-weight: 500;
}

@media only screen and (min-width: 200px) and (max-width: 1024px) {
  .seminars {
    padding: 0 45px 40px;
  }
  .seminars__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .seminars__content {
    text-align: center;
    margin-top: 40px;
  }
  .seminars__pictures {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .seminars__pictures-col-1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-right: unset;
  }
  .seminars__pictures-col-1 img:nth-child(2) {
    margin-bottom: 32px;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    -webkit-transform: rotate(280deg);
            transform: rotate(280deg);
  }
  .seminars__pictures-col-2 {
    margin-top: 20px;
  }
  .seminars__pictures-content p:first-child {
    font-size: 85px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .seminars__pictures {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.change {
  padding: 96px 0;
  border-bottom: 1px solid #C4C4C4;
}

.change__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.change__pictures {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin-bottom: 96px;
}

.change__pictures-img {
  position: relative;
}

.change__pictures-img:after {
  content: "";
  position: absolute;
  display: block;
  background-image: url("./../../img/elements/line-3.svg");
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  left: 316px;
  top: 88px;
  z-index: 99;
  -webkit-animation: movebounce 3s linear infinite;
          animation: movebounce 3s linear infinite;
}

@keyframes movebounce {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.change__pictures .video {
  -ms-flex-item-align: end;
      align-self: flex-end;
  position: absolute;
  right: -208px;
  bottom: -100px;
}

@media only screen and (min-width: 200px) and (max-width: 1024px) {
  .change {
    padding: 40px 45px;
  }
  .change__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .change__pictures {
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 40px;
  }
  .change__pictures-img:after {
    display: none;
  }
  .change__content {
    text-align: center;
  }
  .change .video {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    position: relative;
    right: unset;
    bottom: -40px;
    margin-bottom: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .change__pictures {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .change__pictures img {
    padding-right: 20px;
  }
}

.news {
  padding: 96px 0 119px;
}

.news__intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 64px;
}

.news__intro-text {
  font-size: 72px;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -2px;
  color: #000;
}

.news__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.news__items-img {
  margin-bottom: 64px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.news__items-img-caption {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translateY(-20px);
          transform: translateY(-20px);
  opacity: 0;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  z-index: 999;
}

.news__items-img-caption p {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.news__items-img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #02fcad;
  opacity: 0.7;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out;
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}

.news__items-img:hover:after {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.news__items .news__items-img:hover .news__items-img-caption {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.news__items-desc {
  font-size: 40px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -1px;
  color: #000;
  max-width: 482px;
}

.news__items-link a {
  text-decoration: underline;
  -webkit-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}

.news__items-link a:hover {
  color: #2E36CB;
}

.news__items-2 {
  margin-top: 112px;
}

@media only screen and (min-width: 200px) and (max-width: 1024px) {
  .news {
    padding: 40px 45px;
  }
  .news__intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 40px;
  }
  .news__intro-text {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
  }
  .news__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
  .news__items-desc {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .news__items-2 {
    margin-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.cta {
  padding: 160px 0;
  background-color: #000;
}

.cta__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 130px;
  position: relative;
}

.cta__wrapper::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("./../../img/elements/line-4.svg");
  background-repeat: no-repeat;
  left: 487px;
  top: 198px;
  z-index: 99;
  -webkit-animation: movebounce 3s linear infinite;
          animation: movebounce 3s linear infinite;
}

@keyframes movebounce {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(15px);
            transform: translateY(15px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.cta__text {
  font-size: 88px;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -2px;
  color: #fff;
  max-width: 826px;
}

@media only screen and (min-width: 200px) and (max-width: 1024px) {
  .cta {
    padding: 140px 45px 160px;
  }
  .cta__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    padding-right: unset;
    position: relative;
  }
  .cta__wrapper::after {
    left: 10px;
    top: 175px;
    background-image: url("./../../img/elements/line-4-mobile.svg");
  }
  .cta__text {
    font-size: 28px;
    line-height: 150%;
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .cta__wrapper::after {
    left: 250px;
    top: 138px;
    width: 55%;
  }
}

.footer {
  padding: 160px 0 61px;
}

.footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 100px;
}

.footer__col-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 100px;
}

.footer__col-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.footer__logo {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.footer__logo:hover {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

.footer__logo img {
  margin-right: 11px;
  vertical-align: middle;
}

.footer__desc {
  font-size: 16px;
  max-width: 272px;
  margin-top: 40px;
}

.footer__cta p {
  font-size: 56px;
  font-weight: 500;
  line-height: 120%;
  color: #000;
  letter-spacing: -1px;
  max-width: 792px;
  margin-bottom: 64px;
}

.footer__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 24px;
  font-weight: 500;
  color: #000;
  margin-bottom: 144px;
}

.footer__nav {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2] 2fr;
      grid-template-columns: repeat(2, 1fr) 2fr;
}

.footer__nav-links {
  font-weight: 500;
}

.footer__nav-links li {
  -webkit-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}

.footer__nav-links li:hover {
  color: #2E36CB;
}

.footer__nav-socials > * + * {
  margin-left: 16px;
}

.footer__terms ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
}

.footer__terms ul > * + * {
  margin-left: 24px;
}

@media only screen and (min-width: 200px) and (max-width: 1024px) {
  .footer {
    padding: 40px 45px;
  }
  .footer__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    margin-bottom: 20px;
  }
  .footer__col-1 {
    margin-right: unset;
  }
  .footer__desc {
    max-width: unset;
  }
  .footer__cta p {
    font-size: 36px;
    margin: 40px 0;
  }
  .footer__contacts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 40px;
  }
  .footer__nav {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .footer__nav-links li {
    margin-top: 10px;
  }
  .footer__nav-socials {
    margin-top: 35px;
  }
  .footer__terms ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    /*--------underline perfectly---------------*/
  }
  .footer__terms ul li {
    margin-left: unset;
    margin-top: 10px;
  }
}

.icon_interactif {
  cursor: pointer;
  fill: #fff;
  stroke: #000;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.icon_interactif:hover {
  fill: #2E36CB;
  stroke: #fff;
}

.dropbtn {
  position: relative;
}

.dropbtn img {
  vertical-align: middle;
  margin: -2px 0 0 8px;
}

.dropbtn:hover {
  color: #2E36CB;
}

.dropdown-content {
  display: none;
  background-color: #2E36CB;
  color: #fff;
  font-weight: 400;
  z-index: 99;
  position: absolute;
}

.dropdown-content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.dropdown-content ul li {
  margin-left: 0;
  padding: 10px 30px;
}

.dropdown-content li:hover {
  background-color: #C4C4C4;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media only screen and (min-width: 200px) and (max-width: 1024px) {
  .dropdown-content {
    right: 50%;
    -webkit-transform: translate(50%, 8%);
            transform: translate(50%, 8%);
  }
}

.underline-effect {
  position: relative;
}

.underline-effect::after {
  position: absolute;
  left: 0;
  width: 0%;
  bottom: -9px;
  content: "";
  display: block;
  height: 2px;
  background-color: #2E36CB;
  -webkit-transition: width 0.5s ease-in;
  transition: width 0.5s ease-in;
}

.underline-effect:hover::after {
  width: 100%;
}

.nav__mobile-wrapper {
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav__mobile {
  position: relative;
  width: 30px;
  height: 5px;
  background-color: #2E36CB;
}

.nav__mobile::before {
  position: absolute;
  left: 0;
  top: -10px;
  content: '';
  width: 30px;
  height: 5px;
  background-color: #2E36CB;
  -webkit-transition: top 0.2s linear 0.2s, -webkit-transform 0.2s ease-in;
  transition: top 0.2s linear 0.2s, -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in, top 0.2s linear 0.2s;
  transition: transform 0.2s ease-in, top 0.2s linear 0.2s, -webkit-transform 0.2s ease-in;
}

.nav__mobile::after {
  position: absolute;
  left: 0;
  top: 10px;
  content: '';
  width: 30px;
  height: 5px;
  background-color: #2E36CB;
  -webkit-transition: top 0.2s linear 0.2s, -webkit-transform 0.2s ease-in;
  transition: top 0.2s linear 0.2s, -webkit-transform 0.2s ease-in;
  transition: transform 0.2s ease-in, top 0.2s linear 0.2s;
  transition: transform 0.2s ease-in, top 0.2s linear 0.2s, -webkit-transform 0.2s ease-in;
}

.nav__mobile.nav__mobile-active {
  background-color: transparent;
}

.nav__mobile.nav__mobile-active::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 0;
  -webkit-transition: top 0.2s linear, -webkit-transform 0.2s ease-in 0.2s;
  transition: top 0.2s linear, -webkit-transform 0.2s ease-in 0.2s;
  transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
  transition: top 0.2s linear, transform 0.2s ease-in 0.2s, -webkit-transform 0.2s ease-in 0.2s;
}

.nav__mobile.nav__mobile-active::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 0;
  -webkit-transition: top 0.2s linear, -webkit-transform 0.2s ease-in 0.2s;
  transition: top 0.2s linear, -webkit-transform 0.2s ease-in 0.2s;
  transition: top 0.2s linear, transform 0.2s ease-in 0.2s;
  transition: top 0.2s linear, transform 0.2s ease-in 0.2s, -webkit-transform 0.2s ease-in 0.2s;
}

.backscale-effect a {
  position: relative;
}

.backscale-effect a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 10%;
  background-color: #2E36CB;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.backscale-effect a:hover:before {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.modal {
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-animation: modalopen 0.5s ease-in-out;
          animation: modalopen 0.5s ease-in-out;
  z-index: 999;
  display: none;
}

.modal .btn-modalclose {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.modal .btn-modalclose img {
  width: 30px;
}

@-webkit-keyframes modalopen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalopen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-container {
  background-color: #2E36CB;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  padding: 50px;
}

.modal__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.modal__title {
  font-size: 18px;
  letter-spacing: 1px;
  color: #fff;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.modal__subtitle {
  font-family: "Merriweather", serif;
  font-size: 45px;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
}

.modal__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 200px;
}

.modal__form--active {
  -webkit-box-shadow: 0px 17px 42px rgba(255, 255, 255, 0.2);
          box-shadow: 0px 17px 42px rgba(255, 255, 255, 0.2);
}

.modal__form input {
  background-color: transparent;
  border-bottom: 3px solid #fff;
  width: 300px;
  height: 50px;
  margin-right: 10px;
  color: #fff;
}

.modal__form input::-webkit-input-placeholder {
  color: #fff;
  letter-spacing: 2px;
}

.modal__form input:-ms-input-placeholder {
  color: #fff;
  letter-spacing: 2px;
}

.modal__form input::-ms-input-placeholder {
  color: #fff;
  letter-spacing: 2px;
}

.modal__form input::placeholder {
  color: #fff;
  letter-spacing: 2px;
}

.modal.show-modal {
  display: block;
}

@media only screen and (min-width: 200px) and (max-width: 1024px) {
  .modal-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  .modal-container .btn-modalclose img {
    margin-bottom: 30px;
  }
  .modal__form input {
    width: 100%;
    margin-bottom: 20px;
  }
}

.user-choice__item {
  color: #fff;
  margin-bottom: 30px;
}

.custom-check {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid #fff;
  margin-right: 5px;
  vertical-align: middle;
}

.custom-check::before {
  content: '';
  position: absolute;
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: none;
}

.real-check:checked + .custom-check::before {
  display: block;
}

.real-check {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
  z-index: -1;
}

.real-check:focus + .custom-check {
  border: 2px dotted #fff;
}

.modal-login.visible {
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -ms-grid-rows: auto 100%;
      grid-template-rows: auto 100%;
}

.modal-login {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  width: 500px;
  height: 100vh;
  background-color: #2E36CB;
  padding-top: 30px;
  display: none;
}

.modal-login__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 88px;
  padding: 28px 32px;
  background-color: #2E36CB;
  width: 500px;
}

.modal-login__header p {
  font-size: 30px;
  letter-spacing: 2px;
  color: #fff;
}

.modal-login .btn-loginclose img {
  width: 30px;
  margin-right: 10px;
}

.modal-login__main {
  padding: 100px 0 0 28px;
  background-color: #2E36CB;
}

.modal-login__footer {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 56px;
  background-color: #fff;
  color: #2E36CB;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .modal-login {
    width: 450px;
  }
}

@media only screen and (min-width: 200px) and (max-width: 768px) {
  .modal-login {
    width: 100%;
    height: 100%;
    padding-top: unset;
    overflow: hidden;
  }
}
/*# sourceMappingURL=style.css.map */