.btn a,
body .icon-play,
body header .header-menu .gridD #menu ul li,
body header .header-menu .gridD .btn-mobile span,
body main #comunications .right-content .contents .content a,
body main #faq .accordions .accordion h4,
body main #faq .accordions .accordion h4::before {
  transition: all 0.4s linear;
}

* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  outline: none;
}

.loader {
  border: 16px solid #fff;
  border-radius: 50%;
  border-top: 16px solid #e94e1b;
  height: 120px;
  width: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.gridD {
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
}

.gridE {
  max-width: 1320px;
  margin-right: auto;
  margin-left: auto;
}

.btn a {
  padding: 16px 54px;

  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.2em;
  color: #fff;
  display: inline-block;
}

@media (max-width: 1300px) {
  .btn a {
    font-size: 14px;
    line-height: 17px;
    padding-right: 45px;
    padding-left: 45px;
  }
}

.btn a:hover {
  background: #5e5e5e;
}

.slick-arrow {
  height: 40px;
  width: 40px;
  z-index: 2;
}

.slick-arrow::before {
  content: "";
  height: 100%;
  width: 100%;
  background: url("../img/icon-arrow-purple-right.png") center center no-repeat;
  background-size: cover;
  display: block;
  opacity: 1;
}

.slick-arrow.slick-prev {
  left: 10px;
}

.slick-arrow.slick-prev::before {
  transform: rotate(180deg);
}

.slick-arrow.slick-next {
  right: 10px;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2em;
  width: 100%;
  position: relative;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body span,
body ul,
body li,
body p,
body a {
  font-family: "Montserrat", sans-serif;
}

body a {
  color: inherit;
}

body img {
  display: block;
}

body .icon-play {
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.35);
}

body .icon-play:hover {
  background: rgba(255, 255, 255, 0.2);
}

body .title {
  text-align: center;
}

body .title h2 {
  font-size: 50px;
  line-height: 61px;
  letter-spacing: 0.2em;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 1300px) {
  body .title h2 {
    font-size: 40px;
    line-height: 51px;
  }
}

@media (max-width: 992px) {
  body .title h2 {
    font-size: 28px;
    line-height: 41px;
  }
}

body .title h6 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 11px;
}

@media (max-width: 1300px) {
  body .title h6 {
    font-size: 18px;
    line-height: 22px;
  }
}

@media (max-width: 992px) {
  body .title h6 {
    font-size: 16px;
    line-height: 20px;
    margin-top: 8px;
  }
}

body .title p {
  font-size: 16px;
  line-height: 19px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: #606060;
  text-transform: uppercase;
  margin-bottom: 8px;
}

@media (max-width: 992px) {
  body .title p {
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 6px;
  }
}

body .title-orange h2 {
  color: #fd9138;
}

body .title-white h2,
body .title-white p {
  color: #fff;
}

body .title-purple h2 {}

body header .header-top {
  padding-top: 21px;
  padding-bottom: 21px;
}

@media (max-width: 992px) {
  body header .header-top {
    padding: 15px 10px;
  }
}

body header .header-top .gridD {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

body header .header-top .gridD p {
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 992px) {
  body header .header-top .gridD p {
    font-size: 12px;
    font-weight: 400;
  }

  body header .header-top .gridD p span {
    display: block;
    font-weight: 700;
  }
}

body header .header-top .gridD .socials {
  display: flex;
}

body header .header-top .gridD .socials a {
  display: block;
}

body header .header-top .gridD .socials a+a {
  margin-left: 27px;
}

@media (max-width: 992px) {
  body header .header-top .gridD .socials a+a {
    margin-left: 20px;
  }
}

body header .header-menu {
  padding-top: 34px;
  padding-bottom: 42px;
  background: #fff;
  width: 100%;
}

@media (max-width: 1300px) {
  body header .header-menu {
    padding-top: 28px;
    padding-bottom: 32px;
  }
}

@media (max-width: 992px) {
  body header .header-menu {
    position: relative;
    padding-top: 15px;
    padding-bottom: 18px;
  }
}

body header .header-menu .gridD {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 1300px) {
  body header .header-menu .gridD {
    padding-right: 15px;
    padding-left: 15px;
  }
}

body header .header-menu .gridD .logo img {
  max-width: 82%;
  height: auto;
}

@media (max-width: 1300px) {
  body header .header-menu .gridD .logo {
    max-width: 180px;
  }
}

@media (max-width: 992px) {
  body header .header-menu .gridD .logo {
    max-width: 130px;
  }
}

@media (max-width: 992px) {
  body header .header-menu .gridD #menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: -1px;
    display: none;
  }
}

body header .header-menu .gridD #menu ul {
  display: flex;
  align-items: center;
}

@media (max-width: 992px) {
  body header .header-menu .gridD #menu ul {
    display: block;
  }
}

body header .header-menu .gridD #menu ul li {
  display: block;
  text-transform: uppercase;
  color: #5e5e5e;
  letter-spacing: 0.1em;
}

@media (max-width: 992px) {
  body header .header-menu .gridD #menu ul li {
    padding: 15px;
    background: #fff;
    border-top: 1px solid rgba(94, 94, 94, 0.2);
  }
}

body header .header-menu .gridD #menu ul li a {
  color: inherit;
  font-size: 9px;
}

body header .header-menu .gridD #menu ul li+li {
  margin-left: 21px;
}

@media (max-width: 1300px) {
  body header .header-menu .gridD #menu ul li+li {
    margin-left: 18px;
  }
}

@media (max-width: 992px) {
  body header .header-menu .gridD #menu ul li+li {
    margin-left: auto;
  }
}

body header .header-menu .gridD .btn-mobile {
  display: none;
}

@media (max-width: 992px) {
  body header .header-menu .gridD .btn-mobile {
    display: block;
  }
}

body header .header-menu .gridD .btn-mobile span {
  height: 4px;
  width: 35px;

  display: block;
  position: relative;
}

body header .header-menu .gridD .btn-mobile span+span {
  margin-top: 6px;
}

body header .header-menu .gridD .btn-mobile.active span:first-child {
  top: 10px;
  transform: rotate(45deg);
}

body header .header-menu .gridD .btn-mobile.active span:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}

body header .header-menu .gridD .btn-mobile.active span:last-child {
  bottom: 10px;
  transform: rotate(-45deg);
}

body header.menu-sticky {
  padding-bottom: 130px;
}

body header.menu-sticky .header-menu {
  position: fixed;
  z-index: 11;
  top: 0;
  box-shadow: 0 3px 15px rgba(32, 32, 32, 0.2);
}

body main #banner h1 img {
  width: 617px;
  position: relative;
  left: -193px;
}

body main #banner .gridD {
  position: relative;
}

body main #banner h1 {
  font-size: 77px;
  color: #fff;
  text-align: center;
  letter-spacing: -0.07px;
  font-weight: 400;
  line-height: 68px;
}

body main #banner span {
  color: #fff;
  font-size: 20px;
  line-height: 26px;
  margin-top: 32px;
  display: block;
}

@media (max-width: 992px) {
  body main #banner h1 {
    right: 0;
  }
}

body main #banner {
  background: url("../img/banner.png") center center no-repeat;
  background-size: cover;
  text-align: center;
  padding-top: 180px;
  padding-bottom: 180px;
}

@media (max-width: 1300px) {
  body main #banner img {
    max-width: 346px;
  }

  body main #banner {
    padding-top: 220px;
    padding-bottom: 219px;
  }

  body main #banner h1 {
    font-size: 36px;
    right: 0;
    line-height: 37px;
  }

  body main #banner h1 span {
    height: 84px;
  }
}

@media (max-width: 992px) {
  body main #banner {
    padding-top: 150px;
    padding-bottom: 150px;
  }

  body main #banner img {
    max-width: 210px;
    left: 0 !important;
    width: 100%;
    margin: auto;
  }
}

body main #banner a {
  display: inline-block;
}

body .left .title-purple h2 {
  text-align: left;
}

.left {
  text-align: left;
}

body .left .title-purple h2 span {
  color: #4e4e4e;
  font-size: 30px;
  font-weight: 500;
}

small {
  position: relative;
  left: 2vw;
}

header {
  z-index: 100000;
  position: relative;
}

@media (max-width: 1300px) {
  .left {
    /* text-align: center; */
  }

  body .left .title-purple h2 {
    /* text-align: center; */
  }
}

body main #contacts {
  padding-top: 54px;
  padding-bottom: 88px;
  background: #e6e6e6;
}

@media (max-width: 992px) {
  body main #contacts {
    padding-top: 34px;
    padding-bottom: 50px;
  }
}

body main #contacts .gridD {
  max-width: 1400px;
}

@media (max-width: 1450px) {
  body main #contacts .gridD {
    max-width: 1200px;
  }
}

@media (max-width: 1300px) {
  body main #contacts .gridD {
    max-width: 990px;
  }
}

body main #contacts .title {
  margin-bottom: 65px;
}

@media (max-width: 992px) {
  body main #contacts .title {
    margin-bottom: 25px;
  }
}

body main #contacts .title h2 {
  letter-spacing: 0;
}

body main #contacts .contacts {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 992px) {
  body main #contacts .contacts {
    flex-direction: column;
    justify-content: center;
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
  }
}

body main #contacts .contacts .contact {
  display: flex;
  align-items: center;
}

body main #contacts .contacts .contact img {
  margin-right: 45px;
}

@media (max-width: 1450px) {
  body main #contacts .contacts .contact img {
    margin-right: 30px;
    max-width: 65px;
  }
}

@media (max-width: 1300px) {
  body main #contacts .contacts .contact img {
    max-width: 50px;
    margin-right: 25px;
  }
}

@media (max-width: 992px) {
  body main #contacts .contacts .contact img {
    max-width: 30px;
    margin-right: 15px;
  }
}

body main #contacts .contacts .contact p {
  font-size: 28px;
  line-height: 34px;
  font-weight: 500;
  color: #484848;
  letter-spacing: 0.1em;
}

@media (max-width: 1450px) {
  body main #contacts .contacts .contact p {
    font-size: 24px;
    line-height: 30px;
  }
}

@media (max-width: 1300px) {
  body main #contacts .contacts .contact p {
    font-size: 20px;
    line-height: 26px;
  }
}

@media (max-width: 992px) {
  body main #contacts .contacts .contact p {
    font-size: 14px;
    line-height: 22px;
  }
}

body main #contacts .contacts .contact p strong {
  font-style: italic;
  font-weight: 800;
}

body footer {
  padding-top: 80px;
  padding-bottom: 96px;
  text-align: center;
  background-color: #fd7623;
}

@media (max-width: 1300px) {
  body footer {
    padding-top: 50px;
    padding-bottom: 66px;
  }
}

@media (max-width: 992px) {
  body footer {
    padding-top: 30px;
    padding-bottom: 45px;
  }
}

body footer .logo img {
  display: block;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 1300px) {
  body footer .logo img {
    max-width: 180px;
  }
}

@media (max-width: 992px) {
  body footer .logo img {
    max-width: 130px;
  }
}

body footer .plan-admins h4 {
  margin-bottom: -9px;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 0.1em;
  color: #5e5e5e;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 33px;
}

@media (max-width: 1300px) {
  body footer .plan-admins h4 {
    font-size: 12px;
    margin-top: 23px;
  }
}

body footer .companies {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 992px) {
  body footer .companies {
    display: block;
    text-align: center;
    margin-top: 15px;
  }
}

@media (max-width: 1300px) {
  body footer .companies img {
    max-height: 65px;
  }
}

@media (max-width: 992px) {
  body footer .companies img {
    margin-right: auto;
    margin-left: auto;
  }
}

body footer .companies img+img {
  margin-left: 19px;
}

@media (max-width: 992px) {
  body footer .companies img+img {
    margin-right: auto;
    margin-left: auto;
  }
}

#sub-menu {
  background: #e6e6e6;
  color: #63666a;
}

#sub-menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

#sub-menu li {
  list-style: none;
  margin: 40px 25px;
}

#sub-menu li a {
  font-size: 18px;
}

#sub-menu li.orange {
  color: #fff;
  background: #fd7623;
  padding: 5px 20px;
  border-radius: 20px;
}

#education .gridD {
  padding: 60px 0;
  display: flex;
}

h2 {
  color: #fd7623;
  font-size: 40px;
  font-weight: 900;
  line-height: 43px;
  letter-spacing: 2px;
}

h3 {
  color: #707070;
}

h3 strong {
  color: #fd7623;
}

button {
  background: #fd7623;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
  padding: 14px 45px;
  border: 0;
  border-radius: 30px;
}

p {
  font-size: 25px;
  color: #6f6f6f;
  line-height: 28px;
}

#education {
  padding: 30px;
}

#education .gridD .col:last-child {
  max-width: 60%;
}

#education .gridD .col:first-child {
  width: 55%;
}

#education .gridD .col:first-child img {
  max-width: 100%;
}

#education .gridD .col:last-child p {
  margin-top: 38px;
}

#education h2 {
  margin-top: 30px;
}

#find {
  background: #f8f8f8;
  padding: 80px 0;
  text-align: center;
}

#find .infos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#find h2 {
  margin-bottom: 30px;
}

#find .infos .col {
  width: 31%;
  display: flex;
  border-radius: 38px;
  border: 1px solid #e0e0e0;
  margin: 1%;
  justify-content: center;
  align-items: center;
  min-height: 162px;
  margin-top: 33px;
}

#find .infos .col img {
  max-width: 23%;
  padding: 21px;
}

#find .infos .col h3 {
  padding-right: 21px;
}

#orange {
  background: #fd7623;
  text-align: center;
  padding: 60px 0;
}

#orange h2,
#orange p {
  color: #fff;
  margin-bottom: 30px;
}

#orange button {
  color: #fd7623;
  letter-spacing: 2px;
  background: #fff;
  margin-top: 20px;
  font-size: 20px;
}

#how {
  padding: 80px 0;
}

#how .gridE {
  display: flex;
}

#how .gridE .col:first-child {
  width: 40%;
}

#how .gridE .col:last-child {
  width: 60%;
  padding-left: 50px;
}

#how .gridE p {
  font-size: 18px;
  margin-bottom: 20px;
}

#how h2 {
  margin-bottom: 30px;
}

#how .gridE p span {
  background: #fd7623;
  color: #fff;
  display: inline-block;
  margin-right: 16px;
  font-weight: 800;
  width: 30px;
  text-align: center;
  height: 30px;
  border-radius: 200px;
}

#how button {
  font-size: 17px;
  width: 100%;
  padding: 8px;
}

#more {
  height: 530px;
  width: 100%;
  background: url(../img/bg.png) center center no-repeat;
  background-size: cover;
  display: block;
  position: relative;
}

#more .col:last-child {
  width: 33%;
  position: absolute;
  right: 14vw;
  top: 5vw;
}

#more p {
  margin: 33px 0;
}

#lecture {
  background: #FD7623;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  position: relative;
  height: 410px;
  margin: 70px 0px;
}

#lecture h2 {
  color: #fff;
}

#lecture h2 span {
  font-size: 55px;
}

#lecture img {
  position: relative;
  top: 0;
  width: 570px;
  max-width: 100%;
  left: 0;
}

#lecture button {
  background: #fff;
  color: #fd7623;
  margin-top: 25px;
}

@media (max-width: 992px) {
  #sub-menu ul {
    display: block;
  }

  #lecture {

    display: block;
  }

  section#lecture img {
    position: relative;
    top: -28px;
    max-width: 100%;
    margin: 0 auto;
  }

  #lecture {
    background: #FD7623;
    display: block;
    justify-content: space-around;
    align-items: center;
    position: relative;
    height: auto;
    padding: 50px;
    margin: 70px 0px;
  }

  #sub-menu {
    padding: 20px 0;
  }

  #education .gridD,
  #how .gridE {
    display: block;
  }

  #education .gridD .col:first-child,
  #education .gridD .col:last-child,
  #find .infos .col,
  #how .gridE .col:first-child,
  #how .gridE .col:last-child {
    width: 100%;
    padding-left: 0;
  }

  .gridE,
  .gridD {
    padding: 0 30px;
  }

  #more .col:last-child {
    width: 100%;
    position: relative;
    right: 0;
    top: 0;
  }

  #more {
    height: auto;
    width: 100%;
    padding: 60px 0;
    background: #f8f8f8;
    background-size: cover;
    display: block;
  }

  p {
    font-size: 14px;
  }

  h2 br {
    display: none;
  }

  h2 {
    font-size: 26px;
    font-weight: 900;
    line-height: 33px;
  }

  h3 {
    color: #707070;
    font-size: 14px;
  }

  #orange p br {
    display: none;
  }

  #how button,
  button {
    font-size: 14px;
  }
}