/*fonts*/
@font-face {
  font-family: 'FranklinGothic';
  src: url("../fonts/FranklinGothic-Book.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'FranklinGothic';
  src: url("../fonts/FranklinGothic-Demi.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'FranklinGothic';
  src: url("../fonts/FranklinGothic-Heavy.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

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

body.active {
  overflow: hidden;
}

body {
  font-family: 'FranklinGothic', sans-serif;
  font-weight: 400;
  line-height: normal;
  background: #FFFFFF;
  color: #413960;
  margin: 0;
}

body::-webkit-scrollbar {
  width: 7px;
}

body::-webkit-scrollbar-thumb {
  background: #FA6326;
  border-radius: 4px;
}

body::-webkit-scrollbar-track {
  background: #FFFFFF;
}

p {
  width: 100%;
  font-size: 15px;
  line-height: 21px;
  margin: 0;
}

h1, h2, h3, h4, h5 {
  width: 100%;
  font-weight: 600;
  margin: 0;
}

h1 b, h2 b, h3 b, h4 b, h5 b {
  color: #FEC300;
}

h1 {
  font-size: 46px;
  line-height: 60px;
}

h2 {
  font-size: 42px;
  line-height: 48px;
}

h3 {
  font-size: 20px;
  line-height: 30px;
}

img {
  max-width: 100%;
}

ul, ol {
  margin-top: 0;
  padding-left: 0;
  margin-bottom: 0;
}

li {
  list-style-type: none;
}

.list li {
  position: relative;
  font-size: 15px;
  line-height: 21px;
  padding-left: 15px;
  margin-bottom: 15px;
}

.list li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FEC300;
}

.list li:last-child {
  margin-bottom: 0px;
}

.list.two li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0px;
}

.list.two li:before {
  display: none;
}

.list.two img {
  margin-right: 5px;
}

a {
  outline: none;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  outline: none;
}

select {
  opacity: 1;
  border-radius: 0;
  font-family: 'FranklinGothic', sans-serif;
}

select:hover, select:focus {
  outline: none;
  text-decoration: none;
}

textarea {
  font-family: 'FranklinGothic', sans-serif;
  resize: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 1;
  resize: none;
  border-radius: 0;
}

textarea::-webkit-input-placeholder {
  color: #413960;
}

textarea::-moz-placeholder {
  color: #413960;
}

textarea:-ms-input-placeholder {
  color: #413960;
}

textarea:-moz-placeholder {
  color: #413960;
}

textarea:hover, textarea:focus {
  outline: none;
  text-decoration: none;
}

input {
  font-family: 'FranklinGothic', sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 1;
  border-radius: 0;
}

input::-webkit-input-placeholder {
  color: #413960;
}

input::-moz-placeholder {
  color: #413960;
}

input:-ms-input-placeholder {
  color: #413960;
}

input:-moz-placeholder {
  color: #413960;
}

input:hover, input:focus {
  outline: none;
  text-decoration: none;
}

button {
  font-family: 'FranklinGothic', sans-serif;
  cursor: pointer;
  border: none;
  background: none;
}

button:hover, button:focus {
  outline: none;
  text-decoration: none;
}

table {
  border-collapse: collapse;
}

html,
body {
  height: 100%;
}

.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

main {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

footer {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.section {
  margin-bottom: 120px;
}

.container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1530px;
  padding: 0 15px;
  margin: 0 auto;
}

.animation {
  position: absolute;
  width: 100px;
  height: 100px;
}

.animation:after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: #80A6FF;
  -webkit-animation: animation 1s infinite linear alternate;
          animation: animation 1s infinite linear alternate;
}

.animation:before {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: #FA6326;
  animation: animation 1s infinite linear alternate-reverse;
}

.button {
  position: relative;
  z-index: 1;
  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;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 60px;
  font-size: 17px;
  font-weight: 600;
  color: #FFFFFF;
  background: #FA6326;
  -webkit-box-shadow: 0px 8px 5px rgba(250, 99, 38, 0.15);
          box-shadow: 0px 8px 5px rgba(250, 99, 38, 0.15);
  border-radius: 32px;
  padding: 0px 50px;
  -webkit-transition: 0.1s;
  -o-transition: 0.1s;
  transition: 0.1s;
}

.button svg {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  margin-left: 10px;
}

.button:before, .button:after {
  content: '';
  position: absolute;
  z-index: -1;
  left: -20%;
  display: block;
  width: 140%;
  height: 100%;
  -webkit-transition: all ease-in-out 0.5s;
  -o-transition: all ease-in-out 0.5s;
  transition: all ease-in-out 0.5s;
  background-repeat: no-repeat;
}

.button:before {
  display: none;
  top: -75%;
  background-image: -o-radial-gradient(circle, #80A6FF 20%, transparent 20%), -o-radial-gradient(circle, transparent 20%, #80A6FF 20%, transparent 30%), -o-radial-gradient(circle, #FA6326 20%, transparent 20%), -o-radial-gradient(circle, #FA6326 20%, transparent 20%), -o-radial-gradient(circle, transparent 10%, #FA6326 15%, transparent 20%), -o-radial-gradient(circle, #FA6326 20%, transparent 20%), -o-radial-gradient(circle, #FA6326 20%, transparent 20%), -o-radial-gradient(circle, #80A6FF 20%, transparent 20%), -o-radial-gradient(circle, #FA6326 20%, transparent 20%);
  background-image: radial-gradient(circle, #80A6FF 20%, transparent 20%), radial-gradient(circle, transparent 20%, #80A6FF 20%, transparent 30%), radial-gradient(circle, #FA6326 20%, transparent 20%), radial-gradient(circle, #FA6326 20%, transparent 20%), radial-gradient(circle, transparent 10%, #FA6326 15%, transparent 20%), radial-gradient(circle, #FA6326 20%, transparent 20%), radial-gradient(circle, #FA6326 20%, transparent 20%), radial-gradient(circle, #80A6FF 20%, transparent 20%), radial-gradient(circle, #FA6326 20%, transparent 20%);
  background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%;
}

.button:after {
  display: none;
  bottom: -75%;
  background-image: -o-radial-gradient(circle, #80A6FF 20%, transparent 20%), -o-radial-gradient(circle, #FA6326 20%, transparent 20%), -o-radial-gradient(circle, transparent 10%, #FA6326 15%, transparent 20%), -o-radial-gradient(circle, #80A6FF 20%, transparent 20%), -o-radial-gradient(circle, #80A6FF 20%, transparent 20%), -o-radial-gradient(circle, #80A6FF 20%, transparent 20%), -o-radial-gradient(circle, #FA6326 20%, transparent 20%);
  background-image: radial-gradient(circle, #80A6FF 20%, transparent 20%), radial-gradient(circle, #FA6326 20%, transparent 20%), radial-gradient(circle, transparent 10%, #FA6326 15%, transparent 20%), radial-gradient(circle, #80A6FF 20%, transparent 20%), radial-gradient(circle, #80A6FF 20%, transparent 20%), radial-gradient(circle, #80A6FF 20%, transparent 20%), radial-gradient(circle, #FA6326 20%, transparent 20%);
  background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 10% 10%, 20% 20%;
}

.button.two:after {
  display: none;
}

.button.two:before {
  display: none;
}

.input {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  margin-bottom: 30px;
}

.input-title {
  display: block;
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 10px;
}

.input-point {
  width: 100%;
  height: 60px;
  font-size: 15px;
  background: #FFFFFF;
  border: 1px solid #F8DAB9;
  border-radius: 10px;
  padding: 0px 30px;
}

.input-point:focus {
  border: 1px solid #FA6326;
}

span.error-form {
  position: absolute;
  right: 0;
  bottom: -20px;
  font-size: 12px;
  color: #e32020;
}

.input-icon {
  position: absolute;
  right: 30px;
  bottom: 18px;
}

.select {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  margin-bottom: 30px;
}

.select-title {
  display: block;
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 10px;
}

.select-wrap {
  position: relative;
  display: block;
  width: 100%;
}

.select-wrap:after {
  content: '';
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 18px;
  width: 20px;
  height: 20px;
  background: url("../img/icons/arrow.svg") center no-repeat;
  background-size: contain;
}

.select-point {
  width: 100%;
  height: 60px;
  font-size: 15px;
  background: #FFFFFF;
  border: 1px solid #F8DAB9;
  border-radius: 10px;
  padding: 0px 30px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: none;
  cursor: pointer;
}

.select-point::-ms-expand {
  display: none;
}

.select-point:focus {
  border: 1px solid #FA6326;
}

.choice {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 30px;
}

.choice-title {
  display: block;
  width: 100%;
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 10px;
}

.radio {
  width: 48%;
}

.radio-point {
  position: absolute;
  z-index: -1;
  width: 0px;
  height: 0px;
  padding: 0px;
  margin-bottom: 0px;
  opacity: 0;
}

.radio-point:checked + .radio-text {
  color: #FFFFFF;
  background: #FA6326;
  border: 1px solid #FA6326;
}

.radio-text {
  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;
  width: 100%;
  height: 60px;
  font-size: 15px;
  background: #FFFFFF;
  border: 1px solid #F8DAB9;
  border-radius: 10px;
  cursor: pointer;
}

.radio-text img {
  margin-right: 10px;
}

@media (max-width: 1500px) {
  .container {
    max-width: 1200px;
  }
}

@media (max-width: 1200px) {
  .container {
    max-width: 768px;
  }
  .section {
    margin-bottom: 90px;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 520px;
  }
  .section {
    margin-bottom: 50px;
  }
  p {
    font-size: 14px;
  }
  h1 {
    font-size: 28px;
    line-height: 32px;
  }
  h2 {
    font-size: 22px;
    line-height: 28px;
  }
  h3 {
    font-size: 18px;
    line-height: 24px;
  }
  .button {
    height: 50px;
    font-size: 16px;
  }
  .input {
    margin-bottom: 20px;
  }
  .input-point {
    height: 50px;
    padding: 0px 15px;
  }
  .input-icon {
    right: 15px;
    bottom: 14px;
  }
  .select {
    margin-bottom: 20px;
  }
  .select-point {
    height: 50px;
    padding: 0px 15px;
  }
  .select-wrap:after {
    right: 15px;
    bottom: 14px;
  }
  .choice {
    margin-bottom: 20px;
  }
  .radio-text {
    font-size: 12px;
    height: 50px;
  }
}

/*-options*/
/*animations*/
@-webkit-keyframes button-1 {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes button-1 {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

@-webkit-keyframes button-2 {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

@keyframes button-2 {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}

@-webkit-keyframes animation {
  form {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}

@keyframes animation {
  form {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}

@-webkit-keyframes home-1 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes home-1 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes home-2 {
  form {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  to {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
}

@keyframes home-2 {
  form {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  to {
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
  }
}

@-webkit-keyframes home-3 {
  form {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}

@keyframes home-3 {
  form {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}

@-webkit-keyframes about-1 {
  0% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes about-1 {
  0% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes request-1 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes request-1 {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes request-2 {
  0% {
    -webkit-transform: translateY(-10px) rotate(10deg);
            transform: translateY(-10px) rotate(10deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(-10deg);
            transform: translateY(0) rotate(-10deg);
  }
}

@keyframes request-2 {
  0% {
    -webkit-transform: translateY(-10px) rotate(10deg);
            transform: translateY(-10px) rotate(10deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(-10deg);
            transform: translateY(0) rotate(-10deg);
  }
}

/*-animations*/
.gm-style .gm-style-iw-c {
  color: #413960;
  font-size: 14px;
  line-height: 20px;
}

/*header*/
.header {
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  padding: 15px 0px;
  background: #FFFFFF;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.header .container {
  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;
}

.header.fixed {
  -webkit-box-shadow: 0px 5px 5px 0px rgba(254, 195, 0, 0.1);
          box-shadow: 0px 5px 5px 0px rgba(254, 195, 0, 0.1);
}

.header-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 100px;
}

.header-menu li {
  margin-right: 40px;
}

.header-menu li:last-child {
  margin-right: 0px;
}

.header-menu a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  color: #413960;
}

.header-menu a:after {
  content: '';
  position: absolute;
  left: 50%;
  top: -15px;
  width: 6px;
  height: 6px;
  background: #80A6FF;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.header-menu a:before {
  content: '';
  position: absolute;
  right: 50%;
  top: -15px;
  width: 6px;
  height: 6px;
  background: #FA6326;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.header-menu svg {
  margin-left: 10px;
}

.header-lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 50px;
}

.header-lang li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-lang li:after {
  content: '|';
  font-size: 15px;
  line-height: 15px;
  font-weight: 500;
  color: #FA6326;
  margin: 0px 5px;
}

.header-lang li:last-child:after {
  display: none;
}

.header-lang a {
  font-size: 15px;
  color: #413960;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.header-lang li.active a {
  font-weight: 500;
  color: #FA6326;
}

.header-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  font-size: 17px;
  color: #FFFFFF;
  background: #FA6326;
  border-radius: 6px;
  padding: 15px 25px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.header-phone svg {
  margin-right: 10px;
}

.header-burger {
  display: none;
}

@media (max-width: 1200px) {
  .header {
    padding: 10px 0px;
  }
  .header .container {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 100%;
  }
  .header-nav {
    position: fixed;
    top: 68px;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
  }
  .header-menu {
    -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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    margin-right: 0px;
  }
  .header-menu li {
    width: 100%;
    margin: 0px;
  }
  .header-menu a {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    font-size: 17px;
    border-top: 1px solid #EBEAF0;
    padding: 20px 0px;
    text-align: center;
  }
  .header-lang {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    border-top: 1px solid #EBEAF0;
    margin-right: 0px;
  }
  .header-lang a {
    font-size: 17px;
    padding: 20px 0px;
  }
  .header-phone {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 0;
    margin: auto;
  }
  .header-burger {
    position: relative;
    z-index: 11;
    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-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    width: 40px;
    height: 26px;
  }
  .header-burger span {
    display: block;
    height: 3px;
    width: 100%;
    border-radius: 4px;
    background: #413960;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
  }
  .header-burger.active span:nth-child(1) {
    -webkit-transform: translate(5px, 11px) rotate(-45deg);
        -ms-transform: translate(5px, 11px) rotate(-45deg);
            transform: translate(5px, 11px) rotate(-45deg);
  }
  .header-burger.active span:nth-child(2) {
    opacity: 0;
  }
  .header-burger.active span:nth-child(3) {
    -webkit-transform: translate(5px, -11px) rotate(45deg);
        -ms-transform: translate(5px, -11px) rotate(45deg);
            transform: translate(5px, -11px) rotate(45deg);
  }
}

@media (max-width: 768px) {
  .header-logo {
    width: 120px;
  }
  .header-nav {
    top: 60px;
  }
}

/*-header*/
/*home*/
.home {
  padding-top: 80px;
}

.animation-home_one {
  left: -100px;
  top: 50px;
}

.animation-home_one:after {
  left: 0;
  bottom: 0;
  width: 10px;
  height: 10px;
}

.animation-home_one:before {
  right: 0;
  top: 0;
  width: 8px;
  height: 8px;
}

.animation-home_two {
  right: -150px;
  top: 60%;
}

.animation-home_two:after {
  left: 30px;
  bottom: 30px;
  width: 6px;
  height: 6px;
}

.animation-home_two:before {
  left: 0;
  bottom: 0;
  width: 10px;
  height: 10px;
}

.animation-home_three {
  left: 40%;
  top: 5%;
}

.animation-home_three:after {
  left: 0;
  bottom: 0;
  width: 10px;
  height: 10px;
}

.animation-home_three:before {
  left: -30px;
  bottom: 30px;
  width: 6px;
  height: 6px;
}

.home-wrap {
  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;
}

.home-text {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 45%;
}

.home-text span {
  display: block;
  font-size: 17px;
  padding: 5px 10px;
  background: #CFE1EA;
  margin-bottom: 10px;
}

.home-text h1 {
  margin-bottom: 30px;
}

.home-img {
  position: relative;
  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;
  width: 50%;
}

.home-img_bgr img {
  position: absolute;
}

.home-img_bgr img:nth-child(1) {
  left: 5%;
  bottom: 55%;
  -webkit-animation: home-1 4s infinite ease-in;
          animation: home-1 4s infinite ease-in;
}

.home-img_bgr img:nth-child(2) {
  left: 15%;
  top: 5%;
  -webkit-animation: home-1 4s 0.2s infinite ease-in;
          animation: home-1 4s 0.2s infinite ease-in;
}

.home-img_bgr img:nth-child(3) {
  top: 15%;
  left: 24%;
  -webkit-animation: home-1 4s 0.5s infinite ease-in;
          animation: home-1 4s 0.5s infinite ease-in;
}

.home-img_bgr img:nth-child(4) {
  right: 0;
  top: 30%;
  -webkit-animation: home-2 2s infinite linear alternate;
          animation: home-2 2s infinite linear alternate;
}

.home-boxs {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0px -20px;
}

.home-boxs:before {
  content: '';
  position: absolute;
  z-index: -1;
  right: -550px;
  top: 50%;
  width: 833px;
  height: 657px;
  background-image: url("../img/bgr/bgr-1.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.home-boxs li {
  position: relative;
  z-index: 1;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: calc(25% - 40px);
  border-radius: 50px;
  background: #FFF8F0;
  padding: 35px;
  margin: 0px 20px;
  overflow: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.home-boxs span {
  position: relative;
  z-index: 1;
  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;
  margin-bottom: 30px;
}

.home-boxs span:after {
  content: '';
  position: absolute;
  z-index: 2;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FA6326;
  -webkit-animation: home-3 2s infinite linear alternate;
          animation: home-3 2s infinite linear alternate;
}

.home-boxs h3 {
  margin-bottom: 15px;
}

.home-boxs li:nth-child(1) span:after {
  left: 15px;
  bottom: 10px;
}

.home-boxs li:nth-child(2) span:after {
  right: 15px;
  top: 10px;
  animation: home-3 2s infinite linear alternate-reverse;
}

.home-boxs li:nth-child(3) span:after {
  right: 15px;
  bottom: 10px;
}

.home-boxs li:nth-child(4) span:after {
  left: 15px;
  top: 10px;
  animation: home-3 2s infinite linear alternate-reverse;
}

@media (max-width: 1500px) {
  .home-boxs {
    margin: 0px -10px;
  }
  .home-boxs li {
    width: calc(25% - 20px);
    padding: 25px;
    margin: 0px 10px;
  }
}

@media (max-width: 1200px) {
  .animation-home_three {
    left: auto;
    right: -100px;
  }
  .home-wrap {
    -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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .home-text {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
  .home-img {
    width: 100%;
  }
  .home-boxs {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0px -10px;
  }
  .home-boxs li {
    width: calc(50% - 20px);
    margin: 20px 10px 0px 10px;
  }
}

@media (max-width: 768px) {
  .animation-home_one {
    left: 5px;
  }
  .animation-home_one:after {
    width: 6px;
    height: 6px;
  }
  .animation-home_one:before {
    width: 7px;
    height: 7px;
    right: auto;
    left: 10px;
    bottom: 20px;
  }
  .animation-home_two {
    display: none;
  }
  .animation-home_three {
    right: 5px;
  }
  .animation-home_three:before {
    left: auto;
    right: 0px;
    width: 3px;
    height: 3px;
  }
  .animation-home_three:after {
    left: auto;
    right: 10px;
    width: 5px;
    height: 5px;
  }
  .home-boxs {
    top: -17px;
    margin: 0px;
  }
  .home-boxs:before {
    right: -160px;
    top: 0;
  }
  .home-boxs li {
    width: 100%;
    border-radius: 20px;
    padding: 20px 15px;
    margin: 15px 0px 0px 0px;
  }
  .home-boxs h3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 60px;
    padding-left: 70px;
    margin-bottom: 10px;
  }
  .home-boxs span {
    position: absolute;
    left: 15px;
    top: 20px;
    margin-bottom: 10px;
  }
  .home-boxs img {
    width: 60px;
  }
  .home-boxs span:after {
    width: 6px;
    height: 6px;
  }
  .home-boxs li:nth-child(1) span:after {
    left: 0;
  }
  .home-boxs li:nth-child(2) span:after {
    right: 0;
  }
  .home-boxs li:nth-child(3) span:after {
    right: 0;
  }
  .home-boxs li:nth-child(4) span:after {
    left: 0;
  }
  .home-text span {
    font-size: 14px;
  }
  .home-text h1 {
    margin-bottom: 20px;
  }
  .home-img_bgr img:nth-child(1) {
    left: 0;
    width: 60px;
  }
  .home-img_bgr img:nth-child(2) {
    left: 2%;
  }
  .home-img_bgr img:nth-child(3) {
    left: 10%;
  }
  .home-img_bgr img:nth-child(4) {
    right: 0;
    width: 40px;
  }
}

/*-home*/
/*about*/
.animation-about_one {
  left: -100px;
  top: 150px;
}

.animation-about_one:after {
  left: 0;
  bottom: 0;
  width: 6px;
  height: 6px;
}

.animation-about_one:before {
  left: -20px;
  bottom: 50px;
  width: 10px;
  height: 10px;
}

.animation-about_two {
  right: -150px;
  top: 60%;
}

.animation-about_two:after {
  left: 30px;
  bottom: -30px;
  width: 8px;
  height: 8px;
}

.animation-about_two:before {
  left: 0;
  bottom: 0;
  width: 4px;
  height: 4px;
}

.animation-about_three {
  left: 50%;
  top: 0;
}

.animation-about_three:after {
  left: 0;
  bottom: 0;
  width: 6px;
  height: 6px;
}

.animation-about_three:before {
  left: 50px;
  bottom: 20px;
  width: 6px;
  height: 6px;
}

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

.about-img {
  position: relative;
  z-index: 1;
  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;
  width: 45%;
}

.about-img_oval {
  width: 100%;
}

.about-img_photo {
  position: absolute;
  z-index: 3;
  /*left: 0;*/
  bottom: 0;
  width: 70%;
}

.about-img_line {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
}

.about-img_key {
  position: absolute;
  z-index: 4;
  bottom: -50px;
  left: 200px;
}

.about-img_play {
  position: absolute;
  z-index: 2;
  right: 0;
  top: 0;
  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;
}

.about-img_play circle {
  fill: #80A6FF;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.about-img_play g {
  -webkit-animation: about-1 2s linear infinite alternate;
          animation: about-1 2s linear infinite alternate;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.about-text {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 46%;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text blockquote {
  font-size: 15px;
  line-height: 25px;
  font-weight: 900;
  background: #CBE2FF;
  padding: 15px 25px 15px 30px;
  border-left: 8px solid #80A6FF;
  margin: 0px;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 30px;
}

@media (max-width: 1500px) {
  .animation-about_three {
    left: 48%;
  }
  .about-img_play svg {
    width: 110px;
  }
}

@media (max-width: 1200px) {
  .about-wrap {
    -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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .about-img {
    width: 100%;
    margin-bottom: 50px;
  }
  .about-text {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .animation-about_one {
    left: 0;
    top: -60px;
  }
  .animation-about_one:before {
    left: 15px;
  }
  .animation-about_one:after {
    left: 40px;
    bottom: 5px;
  }
  .animation-about_two {
    right: 0;
    top: auto;
    bottom: 0;
  }
  .about-img_key {
    width: 150px;
    right: 0;
    left: auto;
    bottom: -35px;
  }
  .about-img_play svg {
    width: 80px;
  }
  .about-text p {
    margin-bottom: 20px;
  }
  .about-text blockquote {
    font-size: 14px;
    line-height: 21px;
    padding: 10px 15px 10px 15px;
    margin-bottom: 15px;
  }
}

/*-about*/
/*who*/
.animation-who_one {
  left: -100px;
  top: 50px;
}

.animation-who_one:after {
  left: 0;
  bottom: 0;
  width: 10px;
  height: 10px;
}

.animation-who_one:before {
  left: 10px;
  top: 0;
  width: 8px;
  height: 8px;
}

.animation-who_two {
  right: -150px;
  top: 60%;
}

.animation-who_two:after {
  left: 15px;
  bottom: 50px;
  width: 6px;
  height: 6px;
}

.animation-who_two:before {
  left: 0;
  bottom: 0;
  width: 10px;
  height: 10px;
}

.who .container {
  position: relative;
  height: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.who .container h2 {
  position: absolute;
  left: 15px;
  top: 0;
}

.who .container .button {
  position: absolute;
  right: 15px;
  bottom: 0;
}

.who-boxs {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0px -20px;
}

.who-boxs li {
  position: relative;
  z-index: 1;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: calc(25% - 40px);
  border-radius: 50px;
  min-height: 330px;
  padding: 35px;
  background: #FFFFFF;
  margin: 0px 20px;
  overflow: hidden;
  -webkit-box-shadow: 0px 4px 25px rgba(65, 57, 96, 0.05);
          box-shadow: 0px 4px 25px rgba(65, 57, 96, 0.05);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.who-boxs span {
  position: relative;
  z-index: 1;
  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;
  margin-bottom: 30px;
}

.who-boxs b {
  content: '';
  position: absolute;
  z-index: 2;
  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;
  width: 20px;
  height: 20px;
  font-size: 10px;
  line-height: 10px;
  font-weight: 600;
  color: #FFFFFF;
  border-radius: 50%;
  background: #FA6326;
  -webkit-animation: home-3 2s infinite linear alternate;
          animation: home-3 2s infinite linear alternate;
}

.who-boxs h3 {
  margin-bottom: 15px;
}

.who-boxs li:nth-child(1) {
  margin-top: 260px;
}

.who-boxs li:nth-child(1) b {
  left: 0;
  bottom: 10px;
}

.who-boxs li:nth-child(2) {
  margin-top: 100px;
}

.who-boxs li:nth-child(2) b {
  right: 0;
  top: 10px;
  animation: home-3 2s infinite linear alternate-reverse;
}

.who-boxs li:nth-child(3) {
  margin-bottom: 100px;
}

.who-boxs li:nth-child(3) b {
  right: 0;
  bottom: 10px;
}

.who-boxs li:nth-child(4) {
  margin-bottom: 260px;
}

.who-boxs li:nth-child(4) b {
  left: 0;
  top: 10px;
  animation: home-3 2s infinite linear alternate-reverse;
}

@media (max-width: 1500px) {
  .who-boxs {
    margin: 0px -10px;
  }
  .who-boxs li {
    width: calc(25% - 20px);
    padding: 25px;
    margin: 0px 10px;
  }
}

@media (max-width: 1200px) {
  .who .container {
    -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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: auto;
  }
  .who .container h2 {
    position: static;
    text-align: center;
    margin-bottom: 30px;
  }
  .who .container .button {
    position: static;
    margin: auto;
    margin-top: 50px;
  }
  .who-boxs {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
    margin: 0px -10px;
  }
  .who-boxs li {
    min-height: auto;
  }
  .who-boxs li:nth-child(1) {
    margin-top: 20px;
  }
  .who-boxs li:nth-child(2) {
    margin-top: 20px;
  }
  .who-boxs li:nth-child(3) {
    margin-bottom: 0px;
  }
  .who-boxs li:nth-child(4) {
    margin-bottom: 0px;
  }
  .who-boxs li {
    width: calc(50% - 20px);
    margin: 20px 10px 0px 10px;
  }
}

@media (max-width: 768px) {
  .animation-who_two {
    right: 0;
    top: auto;
    bottom: 0;
  }
  .who .container h2 {
    margin-bottom: 15px;
  }
  .who .container .button {
    margin-top: 30px;
  }
  .who-boxs {
    margin: 0px;
  }
  .who-boxs:before {
    right: -160px;
    top: 0;
  }
  .who-boxs li {
    width: 100%;
    border-radius: 20px;
    padding: 20px 15px;
    margin: 15px 0px 0px 0px;
  }
  .who-boxs li:nth-child(1) {
    margin-top: 15px;
  }
  .who-boxs li:nth-child(2) {
    margin-top: 15px;
  }
  .who-boxs h3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 60px;
    padding-left: 70px;
    margin-bottom: 10px;
  }
  .who-boxs span {
    position: absolute;
    left: 15px;
    top: 20px;
    margin-bottom: 10px;
  }
  .who-boxs img {
    width: 60px;
  }
  .who-boxs span:after {
    width: 6px;
    height: 6px;
  }
  .who-boxs li:nth-child(1) span:after {
    left: 0;
  }
  .who-boxs li:nth-child(2) span:after {
    right: 0;
  }
  .who-boxs li:nth-child(3) span:after {
    right: 0;
  }
  .who-boxs li:nth-child(4) span:after {
    left: 0;
  }
  .who-boxs li:nth-child(2n+2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: right;
  }
  .who-boxs li:nth-child(2n+2) span {
    left: auto;
    right: 15px;
  }
  .who-boxs li:nth-child(2n+2) h3 {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-left: 0px;
    padding-right: 70px;
  }
}

/*-who*/
/*programs*/
.animation-programs_one {
  left: -100px;
  top: 50px;
}

.animation-programs_one:after {
  left: 0;
  bottom: 0;
  width: 10px;
  height: 10px;
}

.animation-programs_one:before {
  right: 0;
  top: 0;
  width: 8px;
  height: 8px;
}

.animation-programs_two {
  right: -150px;
  top: 60%;
}

.animation-programs_two:after {
  left: 30px;
  bottom: 30px;
  width: 6px;
  height: 6px;
}

.animation-programs_two:before {
  left: 0;
  bottom: 0;
  width: 10px;
  height: 10px;
}

.programs h2 {
  text-align: center;
  margin-bottom: 50px;
}

.programs-wrap {
  position: relative;
  z-index: 1;
  padding: 70px 60px;
  border-radius: 50px;
  overflow: hidden;
}

.programs-wrap:before {
  content: '';
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #FFF8F0;
}

.programs-wrap:after {
  content: '';
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 449px;
  height: 484px;
  background: url("../img/bgr/bgr-4.svg") center no-repeat;
  background-size: contain;
}

.programs-age {
  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;
  margin-bottom: 30px;
}

.programs-age h3 {
  width: auto;
  text-align: center;
}

.programs-age_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.programs-age_list li {
  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;
  width: 180px;
  height: 60px;
  font-size: 17px;
  font-weight: 600;
  background: #FFFFFF;
  border: 1px solid #F8DAB9;
  -webkit-box-shadow: 0px 4px 25px rgba(65, 57, 96, 0.05);
          box-shadow: 0px 4px 25px rgba(65, 57, 96, 0.05);
  border-radius: 10px;
  margin: 0px 10px;
  cursor: pointer;
  -webkit-transition: 0.15s;
  -o-transition: 0.15s;
  transition: 0.15s;
}

.programs-age_list li.active {
  color: #FFFFFF;
  border: 1px solid #FA6326;
  background: #FA6326;
}

.programs-age_list img {
  margin-right: 15px;
}

.programs-box {
  display: none;
}

.programs-box.active {
  display: block;
}

.programs-year_box {
  display: none;
}

.programs-year_box.active {
  display: block;
}

.programs-year {
  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;
  margin-bottom: 30px;
}

.programs-year h3 {
  width: auto;
  text-align: center;
}

.programs-year_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.programs-year_list li {
  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;
  width: 110px;
  height: 60px;
  font-size: 17px;
  font-weight: 600;
  background: #FFFFFF;
  border: 1px solid #F8DAB9;
  -webkit-box-shadow: 0px 4px 25px rgba(65, 57, 96, 0.05);
          box-shadow: 0px 4px 25px rgba(65, 57, 96, 0.05);
  border-radius: 10px;
  margin: 0px 10px;
  cursor: pointer;
  -webkit-transition: 0.15s;
  -o-transition: 0.15s;
  transition: 0.15s;
}

.programs-year_list li.active {
  color: #FFFFFF;
  border: 1px solid #FA6326;
  background: #FA6326;
  -webkit-transition: 0.15s;
  -o-transition: 0.15s;
  transition: 0.15s;
}

.programs-subtitle {
  text-align: center;
}

.programs-slider .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 102%;
  margin: 0px -15px;
}

.programs-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(33.3% - 30px) !important;
  min-height: 270px;
  border-radius: 40px;
  padding: 30px;
  margin: 30px 15px 0px 15px;
  overflow: hidden;
  cursor: pointer;
}

.programs-slide:before {
  content: '';
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
}

.programs-slide:after {
  content: '';
  position: absolute;
  z-index: -1;
  right: -150px;
  top: 0;
  height: 100%;
  width: 300px;
  border-radius: 50%;
  background: #FFF2CE;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.programs-slide_text {
  width: 65%;
}

.programs-slide_text ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.programs-slide_text li {
  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;
  width: 80px;
  height: 22px;
  font-size: 12px;
  text-align: center;
  background: #FFF8F0;
  border-radius: 5px;
  margin-right: 10px;
}

.programs-slide_text li:nth-child(2) {
  display: none;
}

.programs-slide_text h3 {
  margin-bottom: 10px;
}

.programs-slide_text p {
  margin-bottom: 10px;
}

.programs-slide_text span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 17px;
  font-weight: 600;
  color: #FA6326;
}

.programs-slide_text span:after {
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  background: url("../img/icons/click.svg") center no-repeat;
  background-size: contain;
  margin-left: 15px;
}

.programs-slide_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 27%;
}

.programs-navigation {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 20px;
}

.programs-pagination {
  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;
  font-size: 17px;
  line-height: 17px;
}

.programs-pagination .swiper-pagination-current {
  font-size: 26px;
  line-height: 26px;
  font-weight: 600;
  color: #FA6326;
}

.programs-img {
  position: absolute;
  right: 0;
  bottom: 0;
  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;
  width: 350px;
}

.programs-img img:nth-child(2) {
  position: absolute;
  width: 50px;
  left: 45%;
  top: -35px;
  -webkit-animation: home-1 4s infinite ease-in;
          animation: home-1 4s infinite ease-in;
}

.programs-img img:nth-child(3) {
  position: absolute;
  width: 55px;
  right: 15px;
  top: -10px;
  -webkit-animation: home-1 4s 0.3s infinite ease-in;
          animation: home-1 4s 0.3s infinite ease-in;
}

@media (max-width: 1500px) {
  .programs-wrap {
    padding: 50px 30px;
  }
  .programs-slide {
    width: calc(50% - 30px) !important;
  }
}

@media (max-width: 1200px) {
  .programs-wrap:after {
    display: none;
  }
  .programs-img {
    display: none;
  }
  .programs-slider .swiper-wrapper {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    margin: 0px;
    width: 100%;
  }
  .programs-slide {
    width: 100% !important;
    margin: 0px;
  }
  .programs-age {
    -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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 30px;
  }
  .programs-age h3 {
    margin-bottom: 10px;
  }
  .programs-year {
    -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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 30px;
  }
  .programs-year h3 {
    margin-bottom: 10px;
  }
  .programs-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .programs-subtitle {
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .programs h2 {
    margin-bottom: 30px;
  }
  .programs-wrap {
    padding: 30px 15px;
    border-radius: 20px;
  }
  .programs-age {
    margin-bottom: 20px;
  }
  .programs-age_list li {
    width: 90px;
    height: 40px;
    font-size: 14px;
    margin: 0px 5px;
  }
  .programs-age_list img {
    display: none;
  }
  .programs-year {
    margin-bottom: 20px;
  }
  .programs-year_list li {
    width: 75px;
    height: 40px;
    font-size: 14px;
    margin: 0px 5px;
  }
  .programs-slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    border-radius: 20px;
    padding: 20px 15px;
  }
  .programs-slide:after {
    top: 165px;
    right: -175px;
  }
  .programs-slide_text {
    width: 100%;
  }
  .programs-slide_img {
    position: absolute;
    right: 15px;
    bottom: 15px;
    width: 70px;
  }
  .programs-subtitle {
    margin-bottom: 15px;
  }
}

/*-programs*/
/*graduates*/
.animation-graduates_one {
  left: -100px;
  top: 50px;
}

.animation-graduates_one:after {
  left: 0;
  bottom: 0;
  width: 5px;
  height: 5px;
}

.animation-graduates_one:before {
  left: 10px;
  bottom: -50px;
  width: 3px;
  height: 3px;
}

.graduates h2 {
  text-align: center;
  margin-bottom: 50px;
}

.graduates-boxs {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0px -20px;
}

.graduates-boxs:before {
  content: '';
  position: absolute;
  z-index: -1;
  right: -170px;
  top: -50px;
  width: 150px;
  height: 150px;
  background: url("../img/bgr/bgr-5.svg") center no-repeat;
  background-size: contain;
}

.graduates-boxs li {
  position: relative;
  z-index: 1;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: calc(33.3% - 40px);
  height: 530px;
  border-radius: 60px;
  background: #FFF8F0;
  padding: 70px 50px 0px 50px;
  margin: 0px 20px;
  overflow: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.graduates-boxs img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.graduates-boxs h3 {
  margin-bottom: 15px;
}

@media (max-width: 1500px) {
  .graduates-boxs {
    margin: 0px -10px;
  }
  .graduates-boxs li {
    width: calc(33.3% - 20px);
    height: 450px;
    padding: 50px 30px;
    margin: 0px 10px;
  }
}

@media (max-width: 1200px) {
  .graduates-boxs {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .graduates-boxs li {
    width: calc(50% - 20px);
    margin: 0px 10px 20px 10px;
  }
}

@media (max-width: 768px) {
  .graduates h2 {
    margin-bottom: 30px;
  }
  .graduates-boxs {
    margin: 0px;
  }
  .graduates-boxs:before {
    width: 70px;
    height: 70px;
    right: -35px;
  }
  .graduates-boxs li {
    width: 100%;
    height: 430px;
    border-radius: 20px;
    padding: 30px 15px;
    margin: 0px 0 15px 0;
  }
  .graduates-boxs li:before {
    border-radius: 20px;
  }
  .graduates-boxs li:last-child {
    margin-bottom: 0px;
  }
  .graduates-boxs h3 {
    margin-bottom: 10px;
  }
}

/*-graduates*/
/*request*/
.request {
  background: #FFF1E4;
  margin-bottom: 50px;
}

.request-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 50px 550px 50px 0;
}

.request-wrap:before {
  content: '';
  position: absolute;
  z-index: -1;
  right: 90%;
  bottom: -10%;
  width: 780px;
  height: 713px;
  background: url("../img/bgr/bgr-6.svg") center no-repeat;
  background-size: contain;
}

.request-form {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.request-form .input {
  width: 48%;
}

.request-form .select {
  width: 48%;
}

.request-form .choice {
  width: 48%;
}

.request-form .button {
  width: 48%;
}

.request-wrap_text {
  position: relative;
  z-index: 2;
}

.request-wrap_text h2 {
  margin-bottom: 10px;
}

.request-wrap_text p {
  margin-bottom: 30px;
}

.request-wrap_text b {
  color: #FA6326;
}

.request-wrap_img {
  position: absolute;
  right: 0;
  bottom: 0;
  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;
  width: 450px;
}

.request-wrap_img img:nth-child(2) {
  position: absolute;
  right: 0;
  top: 40px;
  -webkit-animation: request-1 4s infinite ease-in;
          animation: request-1 4s infinite ease-in;
}

.request-wrap_img img:nth-child(3) {
  position: absolute;
  z-index: -1;
  left: -200px;
  top: 50px;
}

.request-wrap_img img:nth-child(4) {
  position: absolute;
  left: -100px;
  top: 0;
  width: 100px;
  -webkit-animation: request-2 4s infinite linear alternate;
          animation: request-2 4s infinite linear alternate;
}

@media (max-width: 1500px) {
  .request-wrap {
    padding: 50px 400px 50px 0;
  }
  .request-wrap_img {
    width: 370px;
  }
}

@media (max-width: 1200px) {
  .request-wrap {
    padding: 50px 0;
  }
  .request-wrap_img {
    display: none;
  }
}

@media (max-width: 768px) {
  .request {
    margin-bottom: 0px;
  }
  .request-wrap {
    padding: 50px 0px;
  }
  .request-form .input {
    width: 100%;
  }
  .request-form .choice {
    width: 100%;
  }
  .request-form .select {
    width: 100%;
  }
  .request-form .button {
    width: 100%;
  }
}

/*-request*/
/*map*/
.map-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 650px;
  border-radius: 30px;
}

@media (max-width: 768px) {
  .map .container {
    padding: 0px;
    max-width: 100%;
  }
  .map-wrap {
    height: 600px;
    border-radius: 0px;
  }
}

/*-map*/
/*faq*/
.faq {
  position: relative;
  z-index: 2;
}

.faq h2 {
  text-align: center;
  margin-bottom: 50px;
}

.animation-faq_one {
  position: absolute;
  left: -100px;
  top: 200px;
}

.animation-faq_one:before {
  left: 0;
  top: 0;
  width: 5px;
  height: 5px;
}

.animation-faq_one:after {
  left: 20px;
  bottom: 0;
  width: 10px;
  height: 10px;
}

.faq-list li {
  width: 100%;
  margin-bottom: 30px;
}

.faq-list li:last-child {
  margin-bottom: 0px;
}

.faq-list li:nth-child(1) .faq-list_bottom {
  display: block;
}

.faq-list.active li {
  display: none;
}

.faq-list.active li:nth-child(1),
.faq-list.active li:nth-child(2),
.faq-list.active li:nth-child(3),
.faq-list.active li:nth-child(4),
.faq-list.active li:nth-child(5) {
  display: block;
}

.faq-list_top {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 80px;
  border-radius: 40px;
  background: #FFF8F0;
  padding: 0px 120px;
  cursor: pointer;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.faq-list_top h3 {
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.faq-list_top span {
  position: absolute;
  left: 5px;
  top: 5px;
  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;
  width: 70px;
  height: 70px;
  font-size: 20px;
  font-weight: 600;
  color: #413960;
  border-radius: 50%;
  background: #FFFFFF;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.faq-list_top svg {
  position: absolute;
  right: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  fill: #413960;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.faq-list_top.active {
  background: #FEC300;
}

.faq-list_top.active h3 {
  color: #FFFFFF;
}

.faq-list_top.active span {
  color: #FEC300;
}

.faq-list_top.active svg {
  fill: #FFFFFF;
  -webkit-transform: translateY(-50%) rotate(180deg);
      -ms-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.faq-list_bottom {
  display: none;
  padding: 30px 120px 0px 120px;
}

.faq-btn {
  margin: 50px auto 0 auto;
}

.faq-btn.active {
  display: none;
}

@media (max-width: 1500px) {
  .faq-list_top {
    padding: 0px 100px;
  }
  .faq-list_top svg {
    right: 25px;
  }
}

@media (max-width: 1200px) {
  .faq-list_top {
    padding: 0px 70px 0px 90px;
  }
  .faq-list_top svg {
    right: 25px;
  }
}

@media (max-width: 768px) {
  .animation-faq_one {
    left: 0;
  }
  .animation-faq_one:after {
    left: 2px;
  }
  .animation-faq_one:before {
    left: 2px;
  }
  .faq h2 {
    margin-bottom: 20px;
  }
  .faq-list li {
    margin-bottom: 15px;
  }
  .faq-list_top {
    padding: 15px 40px 15px 15px;
    height: auto;
    border-radius: 10px;
  }
  .faq-list_top h3 {
    font-size: 16px;
    line-height: 20px;
  }
  .faq-list_top span {
    display: none;
  }
  .faq-list_top svg {
    width: 20px;
    right: 10px;
  }
  .faq-list_bottom {
    padding: 15px 15px 0px 15px;
  }
  .faq-btn {
    margin-top: 20px;
  }
}

/*-faq*/
/*footer*/
.footer {
  background: #FEC300;
}

.footer-top {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid rgba(65, 57, 96, 0.25);
  padding: 60px 0px;
}

.footer-top:before {
  content: '';
  position: absolute;
  z-index: -1;
  right: -520px;
  bottom: 100%;
  width: 829px;
  height: 697px;
  background: url("../img/bgr/bgr-7.svg") center no-repeat;
  background-size: contain;
}

.footer-img {
  position: absolute;
  right: 0;
  bottom: 0;
  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;
}

.footer-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-right: 50px;
}

.footer-contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-contacts li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: right;
  margin-right: 50px;
}

.footer-contacts a {
  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: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-contacts span {
  display: block;
  font-size: 15px;
  line-height: 21px;
  color: #413960;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.footer-contacts b {
  display: block;
  font-size: 20px;
  line-height: 20px;
  font-weight: 900;
  color: #413960;
  margin-bottom: 5px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.footer-contacts svg {
  margin-left: 15px;
}

.footer-contacts li:last-child {
  margin-right: 0px;
}

.footer-bottom {
  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: 15px 0px;
}

.footer-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-socials li {
  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;
  margin-right: 20px;
}

.footer-socials li:last-child {
  margin-right: 0px;
}

.footer-socials a {
  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;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.footer-bottom_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer-descr {
  font-size: 13px;
  line-height: 14px;
}

.footer-link {
  font-size: 13px;
  line-height: 14px;
  color: #413960;
  border-bottom: 1px solid #413960;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  margin-right: 30px;
}

.footer-klovak {
  display: block;
  font-size: 13px;
  line-height: 14px;
  color: #413960;
  margin-right: 30px;
}

.footer-klovak a {
  font-weight: 600;
  color: #413960;
  border-bottom: 1px solid #413960;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

@media (max-width: 1500px) {
  .footer-top {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer-img {
    display: none;
  }
}

@media (max-width: 1200px) {
  .footer .container {
    max-width: 100%;
  }
  .footer-top {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 40px 0px;
  }
  .footer-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    right: auto;
    left: 0;
    width: 240px;
  }
  .footer-contacts {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 320px;
  }
  .footer-contacts li {
    text-align: left;
    margin-bottom: 20px;
  }
  .footer-contacts li:last-child {
    margin-bottom: 0px;
  }
  .footer-contacts a {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .footer-contacts svg {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-right: 10px;
    margin-left: 0px;
  }
}

@media (max-width: 768px) {
  .footer-img {
    width: 190px;
  }
  .footer-bottom {
    -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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .footer-socials {
    margin-bottom: 15px;
  }
  .footer-socials li {
    margin: 0px 10px;
  }
  .footer-socials li:last-child {
    margin-right: 10px;
  }
  .footer-bottom_wrap {
    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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .footer-link {
    margin-right: 0px;
    margin-bottom: 15px;
  }
  .footer-klovak {
    margin-right: 0px;
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .footer .container {
    padding: 0px;
  }
  .footer-top {
    -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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 30px 0px;
  }
  .footer-img {
    display: none;
  }
  .footer-logo {
    margin-bottom: 20px;
  }
  .footer-contacts {
    width: 310px;
  }
  .footer-contacts svg {
    width: 45px;
    height: 45px;
  }
  .footer-contacts b {
    font-size: 18px;
    line-height: 18px;
  }
}

/*-footer*/
/*messege*/
.messege {
  position: fixed;
  z-index: 6;
  right: 15px;
  bottom: 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;
}

.messege-wrap {
  display: none;
  padding: 15px;
  background: #FFF8F0;
  -webkit-box-shadow: 0px 4px 5px rgba(65, 57, 96, 0.1);
          box-shadow: 0px 4px 5px rgba(65, 57, 96, 0.1);
  border-radius: 10px;
}

.messege-wrap span {
  font-size: 15px;
  text-align: center;
  display: block;
  margin-bottom: 10px;
}

.messege-close {
  position: absolute;
  right: 0;
  top: -30px;
  cursor: pointer;
}

.messege-list {
  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;
}

.messege-list li {
  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;
  margin: 0px 10px;
}

.messege-list a {
  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;
}

.messege-img {
  cursor: pointer;
  width: 70px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

@media (max-width: 768px) {
  .messege-img {
    width: 50px;
  }
  .messege-list img {
    width: 40px;
  }
}

/*-messege*/
/*thank*/
.thank {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}

.thank-wrap {
  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;
}

.thank-wrap_text {
  width: 600px;
}

.thank-wrap_text h1 {
  margin-bottom: 10px;
}

.thank-wrap_text p {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 20px;
}

.thank-wrap_img {
  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;
  width: 550px;
}

@media (max-width: 1200px) {
  .thank-wrap {
    -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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .thank-wrap_text {
    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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .thank-wrap_img {
    width: 100%;
  }
  .thank-wrap_text p {
    font-size: 15px;
    line-height: 21px;
  }
}

/*-thank*/
/*modal*/
.modal {
  position: fixed;
  z-index: 15;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1150px;
  border-radius: 40px;
  background: #FFFFFF;
  display: none;
  overflow: hidden;
}

.modal-bgr {
  position: fixed;
  z-index: 14;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: none;
}

.modal-close {
  position: absolute;
  right: 30px;
  top: 30px;
  cursor: pointer;
  outline: none;
  fill: #413960;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.modal-wrap {
  display: none;
}

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

.modal-info {
  padding: 50px 50px 30px 50px;
}

.modal-text {
  position: relative;
  padding-left: 140px;
  margin-bottom: 10px;
}

.modal-text ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}

.modal-text li {
  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;
  width: 70px;
  height: 22px;
  font-size: 12px;
  text-align: center;
  background: #FFF8F0;
  border-radius: 5px;
  margin-right: 10px;
}

.modal-text h3 {
  margin-bottom: 10px;
}

.modal-text span {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 5px;
}

.modal-text span b {
  color: #FA6326;
}

.modal-text img {
  position: absolute;
  left: 0;
  top: 0;
  width: 120px;
}

.modal-boxs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0px -15px;
}

.modal-box {
  width: calc(25% - 30px);
  margin: 20px 15px 0px 15px;
}

.modal-box h3 {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
}

.modal-box li {
  font-size: 13px;
  line-height: 16px;
  margin-bottom: 10px;
}

.modal-box p {
  font-size: 13px;
  line-height: 16px;
  margin-bottom: 10px;
}

.modal-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background: #FFF1E4;
  padding: 20px 50px;
}

.modal-form .input {
  width: 32%;
  margin-bottom: 20px;
}

.modal-form .select {
  width: 32%;
  margin-bottom: 0px;
}

.modal-form .button {
  width: 66%;
}

@media (max-width: 1200px) {
  .modal {
    top: 0;
    left: 0;
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
    width: 100%;
    height: 100%;
    border-radius: 0;
    -webkit-box-shadow: 0;
            box-shadow: 0;
    overflow: auto;
    overflow-x: hidden;
  }
  .modal-box {
    width: calc(50% - 30px);
  }
}

@media (max-width: 768px) {
  .modal-close {
    right: 15px;
    top: 15px;
  }
  .modal-info {
    padding: 30px 15px;
  }
  .modal-text {
    padding-left: 0px;
    margin-bottom: 0px;
  }
  .modal-text ul {
    position: absolute;
    left: 90px;
    top: 15px;
  }
  .modal-text span {
    position: absolute;
    left: 90px;
    top: 45px;
    width: 100%;
    font-size: 14px;
  }
  .modal-text img {
    position: static;
    width: 80px;
    margin-bottom: 10px;
  }
  .modal-box h3 {
    font-size: 14px;
  }
  .modal-form {
    padding: 30px 15px;
  }
  .modal-form .input {
    width: 100%;
  }
  .modal-form .select {
    width: 100%;
  }
  .modal-form .button {
    width: 100%;
    margin-top: 20px;
  }
}
/*-modal*/
/*popup*/
.popup {
  position: fixed;
  z-index: -1;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 730px;
  background: #FFF1E4;
  border-radius: 50px;
  padding: 50px 50px 0 50px;
  overflow: hidden;
  opacity: 0;
}

.popup.active {
  opacity: 1;
  z-index: 15;
}

.popup-bgr {
  position: fixed;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
}

.popup-bgr.active {
  opacity: 1;
  z-index: 14;
}

.popup-close {
  position: absolute;
  right: 30px;
  top: 30px;
  cursor: pointer;
  outline: none;
  fill: #413960;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}

.popup-info h3 {
  font-weight: 600;
  font-size: 42px;
  text-align: center;
  margin-bottom: 15px;
}

.popup-info p {
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
}

.popup-info b {
  color: #FEC300;
}

.popup-info ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.popup-info li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 33.3%;
  font-weight: 600;
  font-size: 20px;
  margin-top: 15px;
}

.popup-info li:before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FA6326;
  margin-right: 10px;
}

.popup-form {
  margin-top: 30px;
}

@media (max-width: 768px) {
  .popup {
    left: 0;
    top: 0;
    border-radius: 0px;
    width: 100%;
    height: 100%;
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
    padding: 50px 15px 0 15px;
  }
  .popup-close {
    right: 15px;
    top: 15px;
  }
  .popup-info h3 {
    font-size: 28px;
  }
  .popup-info p {
    font-size: 16px;
    line-height: 24px;
  }
  .popup-info li {
    width: 50%;
    font-size: 16px;
  }
}

/*-popup*/
@media (min-width: 1200px) {
  /*hover*/
  .button:hover {
    background: #FEC300;
  }
  .button:hover svg {
    -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
            transform: rotate(360deg);
  }
  .button:hover:before {
    display: block;
    -webkit-animation: button-1 ease-in-out 1s forwards infinite;
            animation: button-1 ease-in-out 1s forwards infinite;
  }
  .button:hover:after {
    display: block;
    -webkit-animation: button-2 ease-in-out 1s forwards infinite;
            animation: button-2 ease-in-out 1s forwards infinite;
  }
  .button.two:hover:before {
    display: none;
  }
  .button.two:hover:after {
    display: none;
  }
  .header-menu a:hover {
    color: #FEC300;
  }
  .header-menu a:hover:after {
    opacity: 1;
    left: 0;
  }
  .header-menu a:hover:before {
    opacity: 1;
    right: 0;
  }
  .header-phone:hover {
    background: #FEC300;
  }
  .home-boxs li:hover {
    background: #FEC300;
  }
  .who-boxs li:hover {
    background: #FEC300;
  }
  .graduates-boxs li:hover {
    background: #FEC300;
  }
  .header-lang a:hover {
    color: #FEC300;
  }
  .about-img_play:hover circle {
    fill: #FA6326;
  }
  .about-img_play:hover g {
    opacity: 0;
  }
  .faq-list_top:hover {
    background: #413960;
  }
  .faq-list_top:hover h3 {
    color: #FFFFFF;
  }
  .faq-list_top:hover span {
    color: #413960;
  }
  .faq-list_top:hover svg {
    fill: #FFFFFF;
  }
  .footer-contacts a:hover span {
    color: #FA6326;
  }
  .footer-contacts a:hover b {
    color: #FA6326;
  }
  .modal-close:hover {
    fill: #FA6326;
  }
  .footer-socials a:hover {
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
  }
  .messege-img:hover {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
  .programs-age_list li.active:hover {
    background: #FA6326;
    border: 1px solid #FA6326;
  }
  .programs-year_list li.active:hover {
    background: #FA6326;
    border: 1px solid #FA6326;
  }
  .programs-age_list li:hover {
    color: #FFFFFF;
    background: #FEC300;
    border: 1px solid #FEC300;
  }
  .programs-year_list li:hover {
    color: #FFFFFF;
    background: #FEC300;
    border: 1px solid #FEC300;
  }
  .programs-slide:hover:after {
    background: #FEC300;
  }
  .footer-link:hover {
    color: #FA6326;
    border-bottom: 1px solid #FA6326;
  }
  .footer-klovak a:hover {
    color: #FA6326;
    border-bottom: 1px solid #FA6326;
  }
  /*-hover*/
}
