@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Cormorant+Garamond:700,700i|Fira+Sans&display=swap");
@font-face {
  font-family: 'Proxima Nova Bold';
  src: url(../fonts/ProximaNovaBold.otf);
}

@font-face {
  font-family: 'Proxima Nova Regular';
  src: url(../fonts/ProximaNovaRegular.ttf);
}

/*Шрифты*/
.prox-bold {
  font-family: 'Proxima Nova Bold', sans-serif;
}

.prox-reg {
  font-family: 'Proxima Nova Regular', sans-serif;
  font-weight: 500;
}

.cg-font-bold {
  font-family: 'Cormorant Garamond', sans-serif;
  font-weight: 700;
}

.cg-font-bold-i {
  font-family: 'Cormorant Garamond', sans-serif;
  font-weight: 700;
  font-style: italic;
}

.fira-sans {
  font-family: 'Fira Sans', sans-serif;
}

.dark {
  color: #332A18;
}

.white {
  color: #fff;
}

.semitransparent {
  color: rgba(51, 42, 24, 0.6);
}

.orange {
  color: #FFA55C;
}

.header {
  font-family: 'Cormorant Garamond', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #332A18;
}

.subhead {
  font-family: 'Cormorant Garamond', sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 24px;
  color: rgba(51, 42, 24, 0.6);
}

/*Глобальные стили*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

body {
  padding: 0;
  margin: 0;
}

/*Общие стилистические классы*/
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 10px;
}

.medium-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 10px;
}

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

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

.centered {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.columned {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.wrapping {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

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

.col-md-7 {
  width: 59.7%;
}

.col-md-6 {
  width: 50%;
  padding-left: 15px;
  padding-right: 15px;
}

.col-md-5 {
  width: 40.3%;
}

.col-md-3 {
  width: 33.3%;
  padding-left: 12px;
  padding-right: 12px;
}

.hidden {
  display: none;
}

/*Анимации*/
.rotateIn {
  -webkit-animation-name: rotation;
          animation-name: rotation;
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.rotateInReverse {
  -webkit-animation-name: rotationReverse;
          animation-name: rotationReverse;
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

/*Стили страницы*/
img {
  display: block;
}

header.container {
  max-width: 1343px;
}

.header-wrapper {
  padding: 15px 0;
}

.logo {
  position: relative;
  max-width: 265px;
  width: 100%;
  margin-right: 23px;
}

.logo::before {
  content: '';
  display: block;
  height: 100px;
  width: 610px;
  position: absolute;
  z-index: -1;
  right: 0;
  top: -15px;
  background: #CCAA84;
}

.logo h1 {
  font-size: 14px;
  margin-left: 15px;
  margin-right: 30px;
  font-family: 'Proxima Nova Regular', sans-serif;
  font-weight: 100;
  line-height: 18px;
}

.header-wrapper nav {
  max-width: 310px;
  width: 100%;
  margin-right: 47px;
}

.header-wrapper .social {
  max-width: 105px;
  width: 100%;
  margin-right: 40px;
}

.geo {
  margin-right: 50px;
}

.geo span {
  margin-left: 7px;
}

.call-back-btn {
  width: 190px;
  height: 46px;
  margin-right: 41px;
  background: url(../img/button-bg.png) center/cover no-repeat;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-transition: .5s;
  transition: .5s;
  cursor: pointer;
}

.call-back-btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../img/button-bg.png) center/cover no-repeat;
}

.call-back-btn::after {
  content: '';
  position: absolute;
  right: -10px;
  bottom: -6px;
  width: 23px;
  height: 16px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.call-back-btn:hover {
  background: #FFA55C;
  color: #fff;
}

.phone {
  font-size: 20px;
}

.phone ::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 15px;
  background: url(../img/icons/phone.png) center/cover no-repeat;
}

#topper {
  position: relative;
}

#topper .container {
  position: relative;
}

#topper .container #topper-img {
  width: 35%;
  height: auto;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-31%);
          transform: translateX(-31%);
  bottom: 0;
}

#topper .col-md-7 {
  padding-top: 84px;
}

#topper .col-md-5 {
  padding-top: 92px;
}

#topper .col-md-5 .transpatent-block {
  border: 1px solid #D8B191;
  max-width: 363px;
  float: right;
  line-height: 28px;
  padding: 36px 46px 44px;
  position: relative;
}

#topper .col-md-5 .transpatent-block::after {
  content: '';
  display: block;
  position: absolute;
  right: 20px;
  bottom: -32px;
  height: 104px;
  width: 20px;
  background: url(../img/rhombus-trans.png) center/cover no-repeat;
}

#topper .block-with-img {
  margin-bottom: 60px;
  padding-left: 40px;
}

#topper .block-with-img div {
  margin-left: 55px;
  max-width: 476px;
}

#topper .block-with-img h6 {
  font-size: 36px;
  margin-bottom: 38px;
}

#topper .block-with-img .cg-font-bold {
  font-size: 48px;
}

#topper .white-block::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 1px;
  background: #D8B191;
  left: 0;
  bottom: 26px;
}

#topper .white-block {
  background: #fff;
  position: relative;
  padding: 51px 0 62px 114px;
  -webkit-box-shadow: 0px 50px 100px rgba(238, 219, 199, 0.54);
          box-shadow: 0px 50px 100px rgba(238, 219, 199, 0.54);
}

#topper .white-block h6 {
  font-size: 24px;
  margin-bottom: 20px;
}

#topper .white-block ul {
  max-width: 320px;
  list-style-image: url(../img/icons/orange-romb.png);
  list-style-position: inside;
}

#topper .white-block ul li {
  margin-bottom: 10px;
  line-height: 28px;
}

#topper::after {
  content: '';
  width: 100%;
  height: 88px;
  background: url(../img/Mask.png) center/cover no-repeat;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.bg-left, .bg-right {
  position: absolute;
  height: 100%;
  z-index: -1;
  top: 0;
}

.bg-left {
  background: rgba(246, 239, 227, 0.4);
  width: 56.7%;
  left: 0;
}

.bg-right {
  background: #F6EFE3;
  width: 43.3%;
  right: 0;
}

.methods .orange-block {
  margin-top: 156px;
  background: url(../img/methods-bg.png) center/cover no-repeat;
}

.methods .orange-block .students {
  margin-top: -100px;
}

.methods .orange-block div {
  padding-top: 40px;
}

.methods .orange-block div h3 {
  font-size: 48px;
  margin-top: 38px;
  margin-bottom: 20px;
}

.methods .orange-block div p {
  font-size: 24px;
}

.methods .small-container {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 67px;
}

.methods .small-container .col-md-6 {
  margin-bottom: 38px;
}

.methods .small-container .col-md-6 img {
  width: 62px;
  height: 52px;
  margin-right: 18px;
}

.methods .small-container .col-md-6 div h6 {
  font-size: 24px;
  margin-bottom: 6px;
}

.methods .small-container .col-md-6 div p {
  font-size: 16px;
  line-height: 28px;
}

#methods p.white {
  max-width: 460px;
}

#methods .col-md-6 img {
  position: relative;
  top: -10px;
}

#methods .col-md-5 {
  margin-bottom: 38px;
  margin-left: auto;
  width: 42.3%;
}

#methods .col-md-5 img {
  width: 62px;
  height: 52px;
  margin-right: 18px;
  position: relative;
  top: -10px;
}

#methods .col-md-5 div h6 {
  font-size: 24px;
  margin-bottom: 6px;
}

#methods .col-md-5 div p {
  font-size: 16px;
  line-height: 28px;
}

#algorithm .white-block {
  position: relative;
}

#algorithm #mouse {
  position: absolute;
  right: 100px;
  top: 60px;
  width: 130px;
}

#algorithm h2 {
  position: relative;
}

#algorithm h2::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -107px;
  width: 75px;
  height: 10px;
  background: url(../img/romb-orange.png) center/cover no-repeat;
}

#algorithm .gray-block {
  right: -30px;
}

#algorithm .gray-block .col-md-3 h6 {
  margin-top: 22px;
}

#algorithm .gray-block::after {
  content: '';
  width: 100%;
  height: 82px;
  position: absolute;
  bottom: 0;
  right: 0;
  background: url(../img/gray-mask.png) center/cover no-repeat;
}

#algorithm, #psychologist {
  margin-top: 164px;
}

#algorithm .white-block, #psychologist .white-block {
  background: #fff;
  padding: 28px;
  -webkit-box-shadow: 0px 4px 100px rgba(238, 219, 199, 0.54);
          box-shadow: 0px 4px 100px rgba(238, 219, 199, 0.54);
  max-width: 1000px;
}

#algorithm .white-block .flex-block, #psychologist .white-block .flex-block {
  border: 1px solid #FFB77C;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

#algorithm .white-block .flex-block img, #psychologist .white-block .flex-block img {
  margin-top: 20px;
  margin-bottom: -55px;
  display: block;
}

#algorithm .white-block .flex-block h2, #psychologist .white-block .flex-block h2 {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 20px;
}

#algorithm .white-block .flex-block p, #psychologist .white-block .flex-block p {
  font-size: 24px;
  line-height: 28px;
  max-width: 560px;
}

#algorithm .gray-block, #psychologist .gray-block {
  padding: 200px 36px 82px 82px;
  background: #F2E9DB;
  position: relative;
  top: -130px;
  z-index: -1;
}

#algorithm .gray-block .col-md-3, #psychologist .gray-block .col-md-3 {
  margin-bottom: 28px;
}

#algorithm .gray-block .col-md-3 h6, #psychologist .gray-block .col-md-3 h6 {
  margin-bottom: 20px;
  font-size: 24px;
}

#algorithm .gray-block .col-md-3 p, #psychologist .gray-block .col-md-3 p {
  font-size: 18px;
  line-height: 28px;
}

#algorithm .gray-block::before, #psychologist .gray-block::before {
  content: '';
  width: 20px;
  height: 105px;
  position: absolute;
  top: 0;
  right: 20px;
  background: url(../img/romb-down.png) center/cover no-repeat;
}

#psychologist .gray-block p {
  line-height: 28px;
}

#psychologist .gray-block h6 {
  margin-top: 16px;
}

#project-activities p.cg-font-bold-i {
  line-height: 28px;
}

#project-activities .white-block__wrapper .col-md-6 .head-desc p {
  line-height: 28px;
  max-width: 460px;
}

#project-activities .white-block__wrapper .col-md-6 .head-desc p.custom {
  max-width: 432px;
}

.img-white-block .left-block {
  position: relative;
}

.img-white-block .left-block span.circle {
  position: absolute;
  width: 450px;
  height: 450px;
  left: -13px;
  z-index: -1;
  background: url(../img/girl-bg-line.png) center/cover no-repeat;
}

.img-white-block .left-block span.fadeIn {
  position: absolute;
  width: 33px;
  height: 33px;
  background: url(../img/girl-bg-romb.png) center/cover no-repeat;
  top: 50%;
  right: -38px;
  opacity: 0;
}

.img-white-block .left-block img {
  width: 350px;
  height: auto;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.img-white-block .right-block h2 {
  margin-top: 38px;
  margin-bottom: 10px;
}

.img-white-block .right-block p {
  font-size: 24px;
}

.img-white-block .white-block {
  -webkit-box-shadow: 0px 4px 100px rgba(238, 219, 199, 0.54);
          box-shadow: 0px 4px 100px rgba(238, 219, 199, 0.54);
  padding: 30px;
  margin-top: -50px;
  position: relative;
  z-index: 1;
  background: #fff;
}

.img-white-block .white-block .white-block__wrapper {
  border: 1px solid #FFB77C;
  padding: 84px 0 84px 84px;
}

.img-white-block .white-block .white-block__wrapper .col-md-6 img {
  margin-right: 18px;
  max-height: 62px;
  max-width: 55px;
}

.img-white-block .white-block .white-block__wrapper .col-md-6 h6 {
  font-size: 24px;
  margin-bottom: 8px;
}

.img-white-block .white-block .white-block__wrapper .col-md-6 p {
  font-size: 18px;
  line-height: 28px;
}

.img-white-block .white-block .white-block__wrapper .col-md-6:first-child, .img-white-block .white-block .white-block__wrapper .col-md-6:nth-child(2) {
  margin-bottom: 40px;
}

#exam-prepare span.circle {
  width: 475px;
  height: 475px;
}

#exam-prepare .right-block p {
  line-height: 28px;
}

#exam-prepare .white-block p {
  line-height: 28px;
  max-width: 460px;
}

#exam-prepare .white-block img {
  width: 58px;
  height: 58px;
}

.head-desc-img h6 {
  font-size: 24px;
  margin-bottom: 8px;
}

.head-desc-img p {
  font-size: 18px;
}

#foriegn {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 195px;
}

#foriegn .subhead {
  margin: 10px 0;
  display: block;
}

#foriegn .head-desc-img:first-child {
  margin-top: 40px;
}

#foriegn .head-desc-img {
  margin-top: 36px;
}

#foriegn .head-desc-img img {
  width: 63px;
  height: 62px;
  margin-right: 15px;
  position: relative;
  top: -10px;
}

#foriegn .head-desc-img p {
  line-height: 28px;
}

#foriegn .col-md-5 {
  width: 42.5%;
}

#foriegn .right-block.col-md-5 {
  margin-top: -55px;
  width: 45.3%;
  position: relative;
}

#foriegn .right-block.col-md-5 #flags {
  position: absolute;
  width: 500px;
  top: -13px;
  right: 16px;
}

#psychologist {
  margin-bottom: 80px;
}

#psychologist .gray-block {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#psychologist .gray-block .flex-block:first-child, #psychologist .gray-block .flex-block:nth-child(2) {
  margin-bottom: 40px;
}

#psychologist .gray-block img {
  max-width: 57px !important;
  max-height: 54px !important;
  margin-right: 16px;
}

#psychologist .white-block {
  position: relative;
}

#psychologist .white-block #plan {
  position: absolute;
  width: 255px;
  left: 51px;
  top: 19px;
}

#acting .left-block img {
  margin-top: -50px;
}

#acting .left-block span.fadeIn {
  left: -28px;
  right: unset;
}

#buisiness-study .orange-block div h3 {
  margin-top: 68px;
}

#buisiness-study .orange-block div p {
  line-height: 28px;
}

#buisiness-study .students {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

#buisiness-study .medium-container {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-top: 74px;
}

#buisiness-study .medium-container .head-desc-img img {
  width: 63px;
  height: 63px;
  margin-bottom: 16px;
}

#buisiness-study .medium-container .head-desc-img h6 {
  margin-bottom: 20px;
}

#buisiness-study .medium-container .head-desc-img p {
  line-height: 28px;
}

#buisiness-study {
  margin-bottom: 126px;
}

#exam-prepare .circle {
  background: url(../img/exam-prepare-circle.png) center/cover no-repeat;
}

#exam-prepare .col-md-6 {
  padding: 0;
}

#exam-prepare .left-block {
  position: relative;
}

#exam-prepare #ex {
  position: absolute;
  width: 530px;
  left: -40px;
  top: -50px;
}

#form-map {
  position: relative;
  margin-top: 196px;
}

#form-map .map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#form-map .map .bg {
  width: 100%;
  background: #F2E9DB;
}

#form-map .contact-form {
  padding-left: 98px;
  position: absolute;
  background: #fff;
  bottom: 0;
  right: 880px;
  max-width: 710px;
  -webkit-box-shadow: 0px 4px 100px rgba(238, 219, 199, 0.54);
          box-shadow: 0px 4px 100px rgba(238, 219, 199, 0.54);
}

#form-map form {
  position: relative;
}

#form-map .contact-form::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 98px;
  height: 100%;
  background: url(../img/cf-left.png) center/cover no-repeat;
}

form {
  max-width: 600px;
  padding: 85px 100px 66px 46px;
}

form span {
  display: block;
  font-size: 24px;
  line-height: 28px;
  margin: 17px 0 42px;
}

form .form-input-string {
  margin-bottom: 42px;
}

form .form-input-string input {
  padding-bottom: 6px;
  border-top: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 1px solid #E5E5E5;
  color: #332A18;
  font-size: 24px;
  font-family: 'Cormorant Garamond', sans-serif;
  font-style: italic;
  margin-right: auto;
}

form .form-input-string input.phone-mask {
  font-family: 'Proxima Nova Bold', sans-serif;
}

form .form-input-string input::-webkit-input-placeholder {
  font-size: 24px;
  font-family: 'Cormorant Garamond', sans-serif;
  font-style: italic;
  color: rgba(51, 42, 24, 0.6);
}

form .form-input-string input:-ms-input-placeholder {
  font-size: 24px;
  font-family: 'Cormorant Garamond', sans-serif;
  font-style: italic;
  color: rgba(51, 42, 24, 0.6);
}

form .form-input-string input::-ms-input-placeholder {
  font-size: 24px;
  font-family: 'Cormorant Garamond', sans-serif;
  font-style: italic;
  color: rgba(51, 42, 24, 0.6);
}

form .form-input-string input::placeholder {
  font-size: 24px;
  font-family: 'Cormorant Garamond', sans-serif;
  font-style: italic;
  color: rgba(51, 42, 24, 0.6);
}

form .form-input-string label {
  border: 0;
  width: 100%;
  cursor: default;
  font-family: 'Proxima Nova Regular', sans-serif;
  color: red;
}

form .btn-submit {
  position: relative;
  max-width: 280px;
  width: 100%;
  margin-bottom: 24px;
}

form .btn-submit::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  background: #fff;
  width: 17px;
  height: 23px;
  display: block;
  -webkit-transform: rotate(45deg) translateX(13px);
          transform: rotate(45deg) translateX(13px);
}

form #btn {
  text-align: center;
  padding: 16px 0;
  background: #ffa55c;
  color: #fff;
  border: 0;
  font-family: 'Proxima Nova Regular', sans-serif;
  font-size: 18px;
  max-width: 280px;
  width: 100%;
  -webkit-transition: .3s;
  transition: .3s;
}

form #agree {
  display: none;
}

form #agree2 {
  display: none;
}

form label {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #C4C4C4;
  cursor: pointer;
  padding: 4px;
  margin-right: 12px;
}

form label span {
  display: block;
  width: 100%;
  height: 100%;
  background: #FFA55C;
  border-radius: 50%;
  -webkit-transform: translateY(-16.5px);
          transform: translateY(-16.5px);
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

form #agree:checked ~ label span {
  opacity: 1;
}

form #agree2:checked ~ label span {
  opacity: 1;
}

form a {
  color: #FFA55C;
}

footer {
  background: #F6EFE3;
  border-bottom: 1px solid #EEDBC7;
}

footer .logo::before {
  display: none;
}

.copyright {
  background: #F6EFE3;
  text-align: center;
  padding-top: 24px;
  padding-bottom: 40px;
  line-height: 28px;
}

.copyright a {
  text-decoration: none;
  -webkit-transition: .3s;
  transition: .3s;
}

.copyright a:hover {
  color: #FFA55C;
}

#cf-wrapper {
  display: none;
}

#cf-wrapper .overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 6;
  background: rgba(0, 0, 0, 0.6);
  display: block;
  top: 0;
  left: 0;
  cursor: pointer;
}

#cf-wrapper form {
  padding: 56px 46px 66px;
  position: fixed;
  z-index: 7;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
}

#cf-wrapper form .close {
  position: absolute;
  right: 20px;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}

#cf-wrapper form .close span {
  width: 2px;
  height: 20px;
  background: rgba(51, 42, 24, 0.6);
}

#cf-wrapper form .close span:first-child {
  -webkit-transform: rotate(45deg) translatex(5px);
          transform: rotate(45deg) translatex(5px);
}

#cf-wrapper form .close span:last-child {
  -webkit-transform: rotate(-45deg) translatex(-5px);
          transform: rotate(-45deg) translatex(-5px);
}

#cf-wrapper form .form-input-string input {
  width: 100%;
}

#cf-wrapper #spasibo-popup {
  padding: 56px 46px 66px;
  position: fixed;
  z-index: 8;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  display: none;
}

#cf-wrapper #spasibo-popup .close {
  position: absolute;
  right: 20px;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}

#cf-wrapper #spasibo-popup .close span {
  width: 2px;
  height: 20px;
  background: rgba(51, 42, 24, 0.6);
}

#cf-wrapper #spasibo-popup .close span:first-child {
  -webkit-transform: rotate(45deg) translatex(5px);
          transform: rotate(45deg) translatex(5px);
}

#cf-wrapper #spasibo-popup .close span:last-child {
  -webkit-transform: rotate(-45deg) translatex(-5px);
          transform: rotate(-45deg) translatex(-5px);
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes rotationReverse {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-290deg);
            transform: rotate(-290deg);
  }
}

@keyframes rotationReverse {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-290deg);
            transform: rotate(-290deg);
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (min-width: 1360px) {
  #topper .white-block {
    margin-right: 90px;
  }
  #acting .right-block {
    width: 55%;
    position: relative;
    left: -70px;
  }
  #methods .small-container {
    position: relative;
    left: -15px;
  }
}

@media screen and (max-width: 1600px) {
  #form-map .contact-form {
    right: 600px;
  }
  #form-map #map_canvas iframe {
    width: 600px;
  }
}

@media screen and (max-width: 1360px) {
  .hide-1200 {
    display: none;
  }
  .header-wrapper {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .header {
    font-size: 38px;
  }
  .methods .orange-block .students {
    max-width: 680px;
  }
  .methods.container {
    padding: 0;
  }
  .orange-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .orange-block .students {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  .orange-block div {
    background: #FFA55C;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }
  .orange-block div h3 {
    margin-top: 0 !important;
  }
  .orange-block div p {
    margin-bottom: 20px;
  }
  #algorithm .gray-block {
    right: 0;
  }
  #form-map .contact-form::before {
    display: none;
  }
  #form-map .contact-form {
    padding-left: 0;
  }
  #form-map .contact-form form {
    padding-right: 46px;
  }
  #form-map .contact-form form span, #form-map .contact-form form input {
    font-size: 20px;
  }
}

@media screen and (max-width: 1024px) {
  .hide-1024 {
    display: none;
  }
  #algorithm, #psychologist {
    margin-top: 60px;
  }
  #algorithm .gray-block::before, #psychologist .gray-block::before {
    display: none;
  }
  #algorithm .gray-block, #psychologist .gray-block {
    right: unset;
    padding-left: 20px;
    padding-right: 20px;
  }
  .gray-block {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .img-white-block .small-container .col-md-6 {
    display: none;
  }
  .img-white-block .hidden {
    display: block;
    text-align: center;
    margin-bottom: 20px;
  }
  .img-white-block .hidden p {
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 40px;
  }
  .img-white-block .white-block .white-block__wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
  .small-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #form-map .contact-form {
    right: 450px;
  }
  #form-map .contact-form form {
    padding: 50px 20px;
  }
  #form-map #map_canvas iframe {
    width: 450px;
  }
  footer .container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    padding: 20px 20px;
  }
  footer .container .logo {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  footer .container nav {
    max-width: 100%;
    -ms-flex-preferred-size: 61%;
        flex-basis: 61%;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  footer .container nav a {
    margin-left: 15px;
  }
  footer .container .social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: auto;
    margin-right: 20px;
  }
  footer .container .geo {
    margin-right: 20px;
  }
  #flags {
    display: none;
  }
  #exam-prepare #ex {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .hide-768 {
    display: none;
  }
  .col-sm-12 {
    width: 100%;
  }
  header {
    background: #ffa55c;
    position: fixed;
    height: 60px;
    padding: 10px;
    width: 100%;
    z-index: 4;
  }
  header .header-wrapper {
    height: 100%;
  }
  header .logo::before {
    display: none;
  }
  header .logo img {
    width: 50px;
  }
  header nav a {
    color: #ffffff;
  }
  header .call-back-btn::before {
    display: none;
  }
  header .call-back-btn::after {
    display: none;
  }
  header .call-back-btn {
    background: #FFA55C;
    color: #fff;
  }
  #topper::after {
    display: none;
  }
  #topper .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #topper .container #topper-img {
    display: block;
    max-width: 70%;
    margin: 0 auto;
    width: 100%;
    position: unset;
    -webkit-transform: none;
            transform: none;
  }
  #topper .col-md-5 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding-top: 0;
  }
  #topper .col-md-5 .transpatent-block {
    max-width: 100%;
  }
  #algorithm, #psychologist {
    padding: 0;
  }
  #algorithm .white-block .flex-block, #psychologist .white-block .flex-block {
    padding: 20px;
  }
  #algorithm .white-block .flex-block img, #psychologist .white-block .flex-block img {
    display: none;
  }
  #algorithm .gray-block:after, #psychologist .gray-block:after {
    display: none;
  }
  #algorithm .gray-block, #psychologist .gray-block {
    padding-top: 150px;
    padding-bottom: 20px;
  }
  .img-white-block .left-block span {
    display: none;
  }
  #foriegn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
  #foriegn .right-block {
    margin-top: 100px;
    width: 100%;
  }
  #foriegn .hidden {
    display: block;
    background: url(../img/foriegn-bg.png) center/cover no-repeat;
    padding: 0 20% 90px;
  }
  #foriegn .hidden img {
    max-width: 450px;
    width: 100%;
    margin: 0 auto -106px;
    display: block;
    -webkit-transform: translateY(-110px);
            transform: translateY(-110px);
  }
  #foriegn .hidden p {
    font-size: 30px;
    line-height: 40px;
  }
  #buisiness-study .orange-block .col-md-6 {
    background: transparent;
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
  }
  #buisiness-study .medium-container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #buisiness-study .medium-container .col-md-3 {
    width: 100%;
    margin-bottom: 20px;
  }
  #form-map .map .bg {
    display: none;
  }
  #form-map .map #map_canvas {
    width: 100%;
    overflow: hidden;
  }
  #form-map .map #map_canvas iframe {
    width: 768px;
  }
  #form-map .contact-form {
    right: 450px;
    position: unset;
    width: 100%;
    max-width: 100%;
  }
  footer .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .container div, footer .container nav, footer .container .logo, footer .container .social, footer .container .geo {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto 20px;
  }
  footer .container .social, footer .container .geo {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media screen and (max-width: 500px) {
  .col-12 {
    width: 100%;
  }
  #methods .col-12 {
    width: 100%;
    padding: 0 10px;
  }
  .header {
    font-size: 28px;
  }
  menu.hidden {
    display: block;
    position: fixed;
    width: 300px;
    height: 110vh;
    background: #fff;
    right: -300px;
    top: 0;
    z-index: 5;
    -webkit-transition: .3s;
    transition: .3s;
  }
  menu.hidden nav {
    display: block;
    margin-top: 80px;
    margin-bottom: 40px;
  }
  menu.hidden nav a {
    display: block;
    text-align: center;
    margin-bottom: 20px;
    font-size: 20px;
  }
  menu.hidden .social, menu.hidden .geo, menu.hidden .phone {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 20px;
  }
  menu.hidden .call-back-btn {
    margin: 0 auto 50px;
  }
  menu.active {
    right: 0;
  }
  #close-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 20px;
    margin-top: 20px;
  }
  #close-menu span {
    height: 23px;
    width: 2px;
    background: rgba(51, 42, 24, 0.6);
    display: block;
  }
  #close-menu span:first-child {
    -webkit-transform: rotate(-45deg) translateX(2.5px);
            transform: rotate(-45deg) translateX(2.5px);
  }
  #close-menu span:last-child {
    -webkit-transform: rotate(45deg) translateX(-2.5px);
            transform: rotate(45deg) translateX(-2.5px);
  }
  header .call-back-btn {
    display: none;
  }
  header #menu-opener {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    width: 30px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  header #menu-opener span {
    width: 30px;
    height: 2px;
    background: #fff;
    display: block;
  }
  #topper .block-with-img {
    margin-bottom: 20px;
    padding-left: 0;
  }
  #topper .block-with-img div {
    margin-left: 20px;
  }
  #topper .white-block {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
  }
  #form-map {
    margin-top: 40px;
  }
  #form-map form .form-input-string input {
    width: 100%;
  }
  #form-map .map #map_canvas iframe {
    width: 500px;
  }
  #algorithm h2::after {
    display: none;
  }
  #foriegn .col-md-5.right-block {
    margin-top: 100px;
  }
  #foriegn .col-md-5, #foriegn .col-md-5.right-block {
    width: 100%;
  }
  #foriegn .col-md-5 .orange-romb, #foriegn .col-md-5.right-block .orange-romb {
    width: 100%;
  }
  #psychologist .gray-block {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #psychologist .gray-block .col-md-6 {
    width: 100%;
  }
  .white-block__wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .white-block__wrapper .col-md-6 {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 20px;
  }
  .white-block__wrapper .col-md-6 img {
    margin-bottom: 10px;
  }
  .img-white-block .white-block .white-block__wrapper {
    padding-bottom: 0;
  }
  #cf-wrapper form {
    padding: 32px 20px;
    width: 80%;
  }
  #cf-wrapper form .close {
    right: 13px;
    top: -10px;
  }
  #cf-wrapper .header {
    font-size: 27px;
  }
  #cf-wrapper .form-input-string {
    margin-bottom: 20px;
  }
  #foriegn {
    margin-top: 40px;
    padding: 0 20px;
  }
  #foriegn .hidden {
    padding-left: 10%;
    padding-right: 10%;
  }
  #project-activities {
    margin-top: -100px;
  }
  #project-activities .white-block__wrapper {
    padding-bottom: 0;
  }
  #project-activities .white-block__wrapper .col-md-6 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 20px;
  }
  #project-activities .white-block__wrapper .col-md-6 img {
    margin-bottom: 10px;
  }
  #psychologist {
    margin-bottom: -20px;
  }
  #psychologist .gray-block .flex-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 20px;
  }
  #psychologist .gray-block .flex-block img {
    margin-bottom: 10px;
  }
  .methods .orange-block {
    margin-top: 100px;
  }
  .img-white-block .left-block img {
    width: 100% !important;
    max-width: 80%;
  }
  form span {
    font-size: 18px;
    margin-bottom: 20px;
  }
  form label span {
    width: 10px;
    height: 10px;
  }
  footer .container nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .container nav a {
    width: 100%;
    display: block;
    text-align: center;
    margin-bottom: 20px;
  }
  #spasibo-popup {
    width: 80%;
    text-align: center;
    padding: 32px 20px 32px;
  }
}
/*# sourceMappingURL=style.css.map */

.breadcrumbs {
  background: url("https://olgimnaz.ru/5-9classes/img/breadcrumbs.svg") left center no-repeat;
  background-size: 17px 15px;
  font-size: 14px;
  letter-spacing: .35px;
  padding: 0 0 0 30px;
  font-family: 'Proxima Nova Regular', sans-serif;
  margin-top: -40px;
  margin-bottom: 60px;
  margin-left: 40px;
}
.breadcrumbs span {
  display: inline-block;
  color: #fa9f42;
  position: relative;
  padding: 0 22px 0 0;
}
.breadcrumbs span svg {
  width: 8px;
  height: 9px;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.breadcrumbs a {
  color: #a29585;
  margin: 0 30px 0 0;
  transition: color .5s;
  text-decoration: none;
}
