/* default styles */

* {
  box-sizing: border-box; 
  font-family: 'Arial', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.2;
}

body, 
html {
  width: 100%; 
  height: 100%;
  background: #fff;
  padding: 0;
}

a {
  text-decoration: none;
  color: #e55721;
}

body.fancybox-active {
  height: 100%;
}

.container {
  width: 1280px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.main-padding {
  padding-top: 120px;
  padding-bottom: 30px;
}

.h2 {
  font-size: 40px;
  display: block;
  margin: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000;
  line-height: 1.4;
  text-align: center;
}

section {
  padding-top: 80px;
}

.btn {
  display: inline-block;
  width: auto;
  height: auto;
  font-size: 16px;
  line-height: 1;
  padding: 9px 26px;
  border-radius: 6px;
  background: #e55721;
  color: #fff;
  text-decoration: none;
  outline: none;
  transition: all .5s ease;
  margin: 15px 0;
  border: 2px solid #e55721;
}

.btn:hover,
.btn:focus {
  background: #fff;
  color: #e55721;
}

.btn.btn--transparent {
  background: none;
  color: #fff;
  border: 2px solid #fff;
}

.btn.btn--transparent:hover {
  background: #fff;
  color: #333;
}

.btn.btn--transparent-2 {
  background: none;
  color: #d55220;
  border: 2px solid #d55220;
}

.btn.btn--transparent-2:hover {
  background: #d55220;
  color: #fff;
}

.main-btn-wrap {
  text-align: center;
  display: block;
  width: 100%;
  position: relative;
}

.main-btn-wrap.main-btn-wrap--wide .btn {
  margin-right: 20px;
}

.main-btn-wrap-right {
  text-align: right;
}

.main-btn-wrap-left {
  text-align: left;
}

.onepage-pagination {
  right: 50%;
  margin-right: -660px;
}

.onepage-pagination li a {
  padding: 12px;
  outline: none;
}

.onepage-pagination li a:before {
  width: 10px;
  height: 10px;
  background: none;
  border: 2px solid #e55721;
  margin-top: -7px;
  left: 5px;
  transition: all .4s ease;
}

.onepage-pagination li a.active:before {
  background: #e55721;
  border: 2px solid #e55721;
  margin-top: -7px;
  left: 5px;
}

/* ========================================================= */
/* header */
/* ========================================================= */

.header {
  position: fixed;
  top: -1px;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all .5s ease;
  background: rgba(255,255,255,0);
  box-shadow: 0 0 8px 0 rgba(0,0,0,0);
}

.header.header-scroll {
  background: rgba(255,255,255,1);
  box-shadow: 0 0 8px 0 rgba(0,0,0,.1);
}

.header-wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.header-logo {
  transition: all .5s ease;
}

.header-logo-full {
  position: absolute;
  width: 250px;
  display: block;
  top: 20px;
  left: 1px;
  z-index: 10;
  outline: none;
}

.header-logo-full > img,
.header-logo-small > img {
  display: block;
  width: 100%;
  height: auto;
}

.header-logo-small {
  width: 212px;
  display: block;
  opacity: 0;
  pointer-events: none;
  z-index: 9;
}

.header.header-scroll .header-logo-full {
  top: -200%;
}

.header.header-scroll .header-logo-small {
  opacity: 1;
  pointer-events: all;
  z-index: 11;
}

.header-menu-wrap {
  position: relative;
}

.header-menu-btn {
  position: relative;
  width: 40px;
  height: 40px;
  display: block;
  cursor: pointer;
  top: 1px;
}

.header-menu-btn > i {
  display: block;
  position: absolute;
  width: 32px;
  height: 2px;
  background: #e55721;
  left: 50%;
  margin-left: -16px;
  top: 50%;
  transition: all .3s ease;
}

.header-menu-btn > i:nth-of-type(1) {
  margin-top: -10px;
}

.header-menu-btn > i:nth-of-type(2) {
  margin-top: -1px;
}

.header-menu-btn > i:nth-of-type(3) {
  margin-top: 8px;
}

.menu-show .header-menu-btn > i:nth-of-type(1) {
  margin-top: -1px;
  transform: rotate(45deg);
}

.menu-show .header-menu-btn > i:nth-of-type(2) {
  opacity: 0;
  width: 1px;
}

.menu-show .header-menu-btn > i:nth-of-type(3) {
  margin-top: -1px;
  transform: rotate(-45deg);
}

.header-menu {
  position: absolute;
  opacity: 0;
  top: 100%;
  right: -200%;
  margin-top: 5px;
  background: #fff;
  padding: 10px 0;
  box-shadow: 0 0 11px 0 rgba(0,0,0,0.2);
  visibility: hidden;
  z-index: 11;
  transition: all .5s ease;
}

.header-menu > a {
  display: block;
  width: 100%;
  text-decoration: none;
  white-space: nowrap;
  padding: 5px 28px 5px 22px;
  line-height: 1;
  position: relative;
  transition: all .4s ease;
  color: #000;
}

.header-menu:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 8px;
  top: -8px;
  left: 0;
}

.header-menu > a:before {
  content: '';
  position: absolute;
  display: block;
  width: 3px;
  height: 100%;
  top: 0;
  left: 0;
  background: #e55721;
  opacity: 0;
  transition: all .4s ease;
}

.header-menu > a:hover {
  background: rgba(229,87,33,.2);
}

.header-menu > a:hover:before {
  opacity: 1;
}

.menu-show .header-menu {
  right: 0;
  opacity: 1;
  visibility: visible;
}

.header-phone {
  position: absolute;
  display: none !important;
  top: 50%;
  right: 80px;
  padding: 3px 3px 3px 25px;
  color: #111;
  font-size: 20px;
  line-height: 1;
  transform: translateY(-50%);
}

.header-phone:before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background: url(../images/icon_phone.svg) no-repeat center/12px;
}

/* ========================================================= */
/* main */
/* ========================================================= */

.main-0.main-1 > .container {
  background: url(../images/main-1-bg.jpg) no-repeat right 24%;
  background-size: 45%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
}

.main-0-btns {
  width: 100%;
  padding-top: 20px;
  text-align: center;
}

.main-0.main-1 {
  padding: 80px 0 30px 0;
}

.main-0 .main-1-content {
  width: 53%;
  text-align: left;
}

.main-0 .main-1-title {
  margin-bottom: 0;
  line-height: 1.2;
}

.main-1-1-content .main-0-btns {
  padding: 0;
}

.main-1-program-text {
  font-size: 16px;
  line-height: 1.6;
  display: block;
  margin: 35px 0 0 0;
}

.main-0 .main-1-program-text {
  margin: 15px 50% 5px 0;
  width: 50%;
}

.btn-scroll-1 {
  background: none!important;
  padding: 0;
  width: 40px;
  height: 40px;
  margin: 5px;
  position: relative;
  opacity: .8;
  cursor: pointer;
}

.btn-scroll-1:after,
.btn-scroll-1:before {
  content: '';
  width: 25px;
  height: 2px;
  background: #e55721;
  top: 17px;
  left: 50%;
  position: absolute;
}

.btn-scroll-1:hover {
  opacity: 1;
}

.btn-scroll-1:after {
  transform: rotate(45deg);
  margin-left: -21px;
}

.btn-scroll-1:before {
  transform: rotate(-45deg);
  margin-left: -4px;
}

.proj-usa .onepage-pagination {
  display: none;
}

.main-1 > .container {
  height: 100%;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.main-1-content {
  width: 100%;
}

.main-1-text p {
  font-size: 16px;
  line-height: 1.6;
  margin: 15px 0;
}

.main-1-text p.main-1-text-new {
  margin: 15px 0;
}

.main-1-text {
  padding: 10px 0 0 0;
}

.main-1-title {
  font-size: 30px;
  margin: 10px 0;
  text-align: left;
}

.main-1-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

.main-1-left,
.main-1-right {
  width: 36%;
}

.main-1-1-title {
  font-size: 28px;
  margin: 5px 0;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
}

.main-1-1-title.gray {
  color: #979797;
}

.main-1-time {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 12px 0 0 0;
}

.main-1-text .main-1-time > span {
  display: block;
  font-size: 32px;
  text-transform: uppercase;
  line-height: 0.9;
  color: #e55721;
  padding-right: 5px;
  margin-right: 5px;
}

.main-1-text .main-1-time > p {
  display: block;
  margin: 0;
  line-height: 1;
  font-size: 14px;
  text-align: left;
}

.main-1-time br {
  line-height: 0;
}

.main-1-scheme {
  position: relative;
}

.program-usa-list .btn-scroll {
  display: none;
}

.main-1-maze-img,
.main-1-arrow-img {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 200px;
  background: url(../images/main-1-maze.png) no-repeat center;
  background-size: contain;
  display: block;
  z-index: 1;
  margin: 25px 0 40px 0;
}

.main-1-maze .main-1-maze-text,
.main-1-arrow .main-1-arrow-text {
  position: absolute;
  display: block;
  margin: 0;
  font-size: 15px;
  line-height: 1;
  width: 110px;
  z-index: 2;
  text-align: center;
}

.main-1-maze-text-1 {
  top: 0;
  left: 68px;
}

.main-1-maze-text-2 {
  top: 145px;
  left: 0px;
}

.main-1-maze-text-3 {
  top: 197px;
  left: 111px;
}

.main-1-maze-text-4 {
  top: 134px;
  left: 258px;
}

.main-1-maze-text-5 {
  top: 49px;
  left: 272px;
}

.main-1-arrow-img {
  background: url(../images/main-1-arrow.png) no-repeat center;
  height: 200px;
  background-size: contain;
  margin-top: -4px;
}

.main-1-1-link {
  color: #e55721;
  text-decoration: underline;
  position: relative;
  z-index: 1;
}

.main-1-arrow .main-1-arrow-text {
  width: 150px;
}

.main-1-arrow-text-1 {
  top: 60px;
  left: 8px;
}

.main-1-arrow-text-2 {
  top: 60px;
  left: 157px;
}

.main-1-man {
  width: 132px;
  height: 344px;
  background: url(../images/main-1-man.png) no-repeat center;
  background-size: contain;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.main-1-text .main-1-man > p {
  display: block;
  margin: 0;
  text-align: center;
  font-weight: 700;
  width: 110px;
  font-size: 14px;
  line-height: 1.4;
  position: absolute;
  left: 50%;
  margin-left: -55px;
  top: 33px;
}

.main-1-2-img {
  width: 310px;
  height: 210px;
  background-size: contain!important;
  display: block;
  margin-top: 20px;
}

.main-w-footer {
  padding-bottom: 75px;
}

.main-1-2-img-1 {
  background: url(../images/main-2-img-1.png) no-repeat center;
  margin-top: 57px;
}

.main-1-2-img-2 {
  background: url(../images/main-2-img-2.png) no-repeat center;
}

.main-1-2-img-3 {
  background: url(../images/main-2-img-3.png) no-repeat center;
  margin-top: 57px;
}

.main-1-2-img-4 {
  background: url(../images/main-2-img-4.png) no-repeat center;
}

.main-1-2-img-5 {
  background: url(../images/main-2-img-5.png) no-repeat center;
}

.main-1-2-img-6 {
  background: url(../images/main-2-img-6.png) no-repeat center;
}

.main-2 > .container {
  position: relative;
  height: 100%;
}

.main-1-2 > .container {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
}

.main-1-2 > .container hr {
  display: block;
  width: 100%;
  margin: 20px 0;
}

.main-1-2 .main-1-text p {
  margin: 30px 0;
  text-align: center;
}

.main-2-title {
  font-size: 36px;
  margin: 30px 0;
  text-transform: uppercase;
  text-align: left;
}

.main-1-2-title {
  text-transform: none;
  font-size: 36px;
}

.main-1-city {
  display: block;
  width: 290px;
  height: 222px;
  background: url(../images/main-1-bg.jpg) no-repeat center;
  background-size: contain;
  position: absolute;
  right: 0;
  top: -180px;
}

.main-2-content {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 40px 0;
}

.main-2-img,
.main-2-text {
  width: 48%;
  display: block;
}

.main-2-text {
  padding-right: 15px;
}

.main-2.main-2-reverse .main-2-text {
  padding-right: 0;
}

.main-content-list {
  list-style: none;
  padding: 0;
  margin: 5px 0;
}

.main-content-list a {
    color: #e55721;
    text-decoration: underline;
}

.main-content-list > li {
  position: relative;
  padding: 5px 5px 5px 35px;
  font-size: 16px;
  line-height: 1.3;
}

.main-content-list > li:before {
  content: '';
  position: absolute;
  width: 21px;
  height: 18px;
  background: url(../images/icon-check.png) no-repeat center;
  background-size: 19px;
  top: 5px;
  left: 0;
}

.main-2-img {
  min-height: 562px;
  position: relative;
  overflow-x: hidden;
}

.main-2 .main-2-img {
  margin-top: -60px;
}

.main-2-img-line {
  display: block;
  width: 296px;
  height: 562px;
  background: url(../images/main-content-line.png) no-repeat center;
  background-size: contain;
  position: absolute;
  z-index: 5;
  top: 0;
  right: -1px;
}

.main-2-img-line:after {
  content: '';
  position: absolute;
  width: 5px;
  height: 100%;
  background: #fff;
  top: 0;
  right: -1px;
}

.main-2-img > img {
  display: block;
  height: 410px;
  width: auto;
  position: absolute;
  top: 50%;
  margin-top: -205px;
  right: -100%;
  transition: all 1.1s ease;
  z-index: 3;
}

.main-2.active .main-2-img > img {
  right: -20px;
}

.main-2.main-2-reverse .main-2-content {
  flex-direction: row-reverse;
}

.main-2.main-2-reverse .main-2-img-line {
  transform: rotate(180deg);
  right: auto;
  left: -1px;
}

.main-2.main-2-reverse .main-2-img-line:after {
  right: -1px;
  left: auto;
}

.main-2.main-2-reverse .main-2-img > img {
  right: auto;
  left: -100%;
}

.main-2.main-2-reverse.active .main-2-img > img {
  left: -20px;
}

.main-3 .main-2-img,
.main-4 .main-2-img {
  margin-top: 0;
}

.main-2-content p {
  font-size: 16px;
  line-height: 1.5;
}

.main-2-partners-list {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.main-2-partners-list a {
  width: 140px;
  height: auto;
  display: block;
}

.main-2-partners-list a img {
  display: block;
  width: 100%;
  height: auto;
}

.main-2-content-about {
  flex-wrap: wrap;
  align-content: center;
  height: 100%;
}

.main-4 {padding-top: 30px;}

/* ========================================================= */
/* footer */
/* ========================================================= */

.footer {
  padding: 10px 0;
  background: #e55721;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 9;
  width: 100%;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-items: center;
}

.footer-social {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.footer-social-link {
  width: 46px;
  height: 46px;
  display: block;
  border-radius: 50%;
  border: 1px solid #fff;
  line-height: 44px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  margin: 0 20px 0 0;
  transition: all .4s ease;
}

.footer-social-link:hover {
  background: rgba(255,255,255,0.1);
}

.footer-info {
  line-height: 46px;
  font-size: 16px;
  color: #fff;
  text-align: right;
}

/* ========================================================= */
/* About */
/* ========================================================= */

.main-about {
  padding: 50px 0 30px 0;
  background: #ebebeb;
}

.main-about-list {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  margin: 50px 0 60px 0;
  width: 100%;
}

.main-about-item {
  display: block;
  width: 33%;
  padding: 0 20px;
  margin: 10px 0;
  text-align: center;
  position: relative;
}

.main-about-item-text {
  display: block;
  width: 100%;
  position: absolute;
  top: 100%;
  margin-top: 10px;
  left: 0;
  text-align: center;
  font-size: 14px;
  line-height: 1;
}

.main-about-item-top {
  display: block;
  text-align: center;
  font-size: 40px;
  line-height: 1;
  font-weight: 700;
  padding-bottom: 25px;
  position: relative;
  text-transform: uppercase;
}

.main-about-item-top:after {
  content: '';
  position: absolute;
  width: 140px;
  height: 3px;
  background: #e55721;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -70px;
}

.main-about-item-top b {
  font-size: 72px;
  font-weight: 700;
}

.main-about-item-bottom {
  margin: 17px 0 0 0;
  line-height: 1.3;
  min-height: 60px;
}

.main-1.main-about .container {
  background: none;
  flex-wrap: wrap;
  align-content: center;
}

.main-1.main-about {
  background: url(../images/about-bg-img.jpg) no-repeat center 100%;
  background-size: 1920px;
}

.main-about-title {
  width: 100%;
  text-align: center;
  font-size: 36px;
  line-height: 1;
  margin: 0;
}

.main-about-2 .main-2-text {
  margin-top: -100px;
}

.main-about-2--asia .main-2-text {
  margin-top: 0;
}

.main-about-2 .main-btn-wrap {
  padding-top: 120px;
}

.main-about-3 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.about-3-list {
  width: 48%;
}

.about-3-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.about-3-img {
  display: block;
  width: 140px;
  height: 140px;
  min-width: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 35px;
}

.about-3-img > img {
  display: block;
  width: 100%;
  height: auto;
}

.about-3-text {
  width: 100%;
}

.about-3-text.about-3-text--disable > p {
  color: #aaa;
}

.about-3-text > p {
  display: block;
  width: 100%;
  margin: 5px 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.about-link {
  padding: 5px 0;
}

.about-3-text > a,
.about-link {
  display: inline-block;
  position: relative;
  font-size: 16px;
  line-height: 1;
  color: #e65722;
  text-decoration: none;
  padding-right: 55px;
}

.about-3-text > a:after,
.about-link:after {
  content: '';
  width: 41px;
  height: 11px;
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -5px;
  background: url(../images/icon-arrow.png) no-repeat center/41px;
}

.main-about-3 .main-btn-wrap {padding-top: 140px;}

.about-popup {
  width: 1200px;
  max-width: 95%;
  padding: 60px 40px 80px 60px;
}

.about-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.about-nav > button {
  background: rgba(255,255,255,0);
  padding: 0;
  width: 50px;
  height: 40px;
  outline: none;
}

.about-nav > button > div {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.about-nav > button > div:after {
  content: '';
  position: absolute;
  width: 44px;
  height: 11px;
  display: block;
  top: 50%;
  left: 50%;
  margin: -5px 0 0 -22px;
  background: url(../images/icon-arrow.png) no-repeat center;
  background-size: contain;
}

.about-nav > button.about-nav-left > div {
  transform: rotate(180deg);
}

.about-popup-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}

.about-popup-right {
  width: 50%;
  max-width: 50%;
  margin-left: 40px;
}

.about-popup-left.about-3-item {
  width: auto;
}

.hidden-content {
  width: 1100px;
  padding: 30px;
  max-width: 98%;
}

.hidden-content-title {
  font-size: 28px;
  line-height: 1;
  margin: 0 0 20px 0;
  color: #111;
  display: block;
}

.hidden-content-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}

.hidden-content-left {
  width: 53%;
}
.hidden-content-right {
  width: 43%;
  padding: 25px 0 0 0;
}

.hidden-content-right a {
  color: #e55721;
  text-decoration: underline;
}

/* ========================================================= */
/* Program */
/* ========================================================= */

.program-1.main-1 .container {
  background: none;
}

.program-2,
.program-3,
.program-4 {
  padding-top: 30px;
}

.program-2 > .container,
.program-3 > .container,
.program-4 > .container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}

.program-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.program-usa .program-wrap {
  flex-wrap: wrap;
  width: 100%;
}

.program-usa .program-wrap-full {
  width: 100%;
  display: block;
}

.program-usa .program-wrap-full p {
  margin: 5px 0;
}

.program-left,
.program-right {
  width: 49%;
}

.program-right .program-right-list {
  margin-top: -5px;
}

.program-usa .program-wrap-full h2 {
  margin: 20px 0 10px 0;
}

.program-wrap p {
  font-size: 16px;
  line-height: 1.2;
}

.program-left .main-2-title {
  margin: 0 0 15px 0;
}

.program-right-list > li {
  position: relative;
  display: flex;
  min-height: 54px;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  padding: 0 0 0 62px;
  margin: 8px 0;
}

.program-right-list > li:before {
  content: '';
  position: absolute;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 4px solid #e55721;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.program-right-list > li.program-list-1:before {
  background: url(../images/icon-program-1.png) no-repeat center;
}

.program-right-list > li.program-list-2:before {
  background: url(../images/icon-program-2.png) no-repeat center;
}

.program-right-list > li.program-list-3:before {
  background: url(../images/icon-program-3.png) no-repeat center;
}

.program-right-list > li.program-list-4:before {
  background: url(../images/icon-program-4.png) no-repeat center;
}

.program-right-list > li.program-list-5:before {
  background: url(../images/icon-program-5.png) no-repeat center;
}

.program-right-list > li.program-list-6:before {
  background: url(../images/icon-program-6.png) no-repeat center;
}

.program-right-list > li.program-list-7:before {
  background: url(../images/icon-program-7.png) no-repeat center;
}

.program-right-list > li.program-list-8:before {
  background: url(../images/icon-program-8.png) no-repeat center;
}

.program-right-list > li.program-list-9:before {
  background: url(../images/icon-program-9.png) no-repeat center;
}

.program-right-list > li.program-list-10:before {
  background: url(../images/icon-program-10.png) no-repeat center;
}

.program-right-list > li.program-list-11:before {
  background: url(../images/icon-program-11.png) no-repeat center;
}

.program-right-list > li.program-list-12:before {
  background: url(../images/icon-program-12.png) no-repeat center;
}

.program-right-list > li.program-list-13:before {
  background: url(../images/icon-program-13.png) no-repeat center;
}

.program-usa-list {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin-top: 10px;
  position: relative;
}

.program-usa-list > .about-3-text {
  width: 33%;
  padding-right: 52px;
}

.program-usa-1 .main-btn-wrap {
  padding-top: 20px;
}

.list-double {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.list-double > span {
  display: block;
  width: 49%;
  margin: 2px 0;
  line-height: 1.1;
}

.main-2-title-new {
  display: block;
  padding: 10px 0 10px 15px;
  font-size: 24px;
  line-height: 1;
  text-transform: none;
  text-align: left;
  font-weight: 400;
  margin: 0;
  font-family: 'Roboto', Arial, sans-serif;
  border-left: 3px solid #e55721;
}

.program-price {
  font-weight: 700;
  color: #a3a3a3;
  font-size: 32px;
  line-height: 1;
}

.program-slider {
  padding: 0 0 50px 0;
}

.program-slider .owl-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin-top: 0;
  z-index: 1;
  height: 100%;
}

.program-slider .owl-nav > .owl-prev,
.program-slider .owl-nav > .owl-next {
  position: absolute;
  width: 30px;
  height: 30px;
  top: 50%;
  margin-top: -15px!important;
  transition: all .3s ease;
  background: none!important;
  outline: none;
  z-index: 10;
}

.program-slider .owl-nav > .owl-prev.disabled,
.program-slider .owl-nav > .owl-next.disabled {
  filter: grayscale(1);
}

.program-slider .owl-nav > .owl-prev:hover,
.program-slider .owl-nav > .owl-next:hover {
  opacity: .8;
  background: none!important;
}

.program-slider .owl-nav > .owl-prev {
  left: -40px;
}

.program-slider .owl-nav > .owl-next {
  right: -40px;
}

.program-slider .owl-nav > .owl-prev:after,
.program-slider .owl-nav > .owl-prev:before,
.program-slider .owl-nav > .owl-next:after,
.program-slider .owl-nav > .owl-next:before {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: #e65e2a;
  top: 22px;
  left: 5px;
  transform: rotate(45deg);
}

.program-slider .owl-nav > .owl-prev:after {
  transform: rotate(-45deg);
  top: 8px;
}

.program-slider .owl-nav > .owl-next:after {
  top: 8px;
}

.program-slider .owl-nav > .owl-next:before {
  transform: rotate(-45deg);
}

.program-slider .owl-carousel .owl-stage-outer {
  z-index: 9;
}

.feedback-list {
  padding-bottom: 30px;
}

.feedback-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 38px 15px;
}

.feedback-item:nth-of-type(2n) {
  background: #ebebeb;
}

.feedback-photo {
  min-width: 146px;
  width: 146px;
  height: 146px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 50px;
}

.feedback-photo > img {
  display: block;
  width: 100%;
  height: auto;
}

.feedback-right {
  border-left: 2px solid #e55721;
  padding-left: 30px;
}

.feedback-title {
  font-size: 24px;
  margin-bottom: 6px;
  line-height: 1;
  font-family: 'Roboto', Arial, sans-serif;
}

.feedback-detail {
  font-size: 14px;
  line-height: 1;
  margin-bottom: 22px;
  display: block;
  color: #888;
}

.feedback-text {
  display: block;
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
}

.proj-usa .main-1 > .container {
  background: none;
  flex-wrap: wrap;
  align-content: center;
}

.proj-usa {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.proj-usa-item {
  width: 25%;
  padding: 30px 20px;
  text-align: center;
}

.program-right p {
  margin: 5px 0;
}

.proj-usa-item > span {
  display: block;
  padding: 14px 0 0 0;
  position: relative;
  font-size: 18px;
  text-transform: uppercase;
  margin-top: 20px;
}

.proj-usa-item > div {
  display: flex;
  width: 100%;
  min-height: 120px;
  align-content: center;
  justify-content: center;
}

.proj-usa-item > div > img {
  width: 100%;
  max-width: 190px;
  max-height: 110px;
  height: auto;
  object-fit: contain;
}

.proj-usa-item > span:before {
  content: '';
  position: absolute;
  width: 144px;
  height: 4px;
  top: -2px;
  background: #e55721;
  left: 50%;
  margin-left: -77px;
}

/* ========================================================= */
/* Contacts */
/* ========================================================= */

.contacts-1,
.contacts-1 > .container {
  position: relative;
}

.contacts-1 > .container {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
}

.main-contacts {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  position: relative;
  flex-wrap: wrap;
  padding-top: 140px;
}

.contacts-1 .footer,
.normal-page .footer {
  position: relative;
}

.normal-page main {
  width: 100%;
}

.contacts-left,
.contacts-right {
  width: 47%;
}

.contacts-title {
  display: block;
  width: 100%;
}

.contacts-text {
  font-size: 16px;
  line-height: 1.6;
  margin: 30px 0;
}

.contacts-email {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  position: relative;
  padding: 0 0 0 40px;
  color: #000;
  text-decoration: none;
}

.contacts-email:before {
  content: '';
  position: absolute;
  width: 31px;
  height: 21px;
  background: url(../images/icon-email.png) no-repeat center/31px;
  top: 2px;
  left: 0;
}

.contacts-map {
  min-height: 400px;
  margin: 40px 0 30px 0;
  width: 100%;
  display: block;
}

.contacts-map * {
  font-size: 12px;
  line-height: 1;
}

.contacts-map > iframe {
  width: 100%;
}

.contacts-page .header-logo-full,
.normal-page .header-logo-full {
  width: 220px;
}

/* subsribe popup */

.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100000;
  display: none;
  pointer-events: none;
}

.popup.show {
  display: block;
  pointer-events: all;
}

.popup-bg {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1;
}

.popup-window {
  width: 90%;
  max-width: 460px;
  background: #fff;
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 12px;
  padding: 25px;
}

.popup-close {
  color: #333;
  font-size: 20px;
  display: block;
  line-height: 1;
  padding: 2px 5px;
  position: absolute;
  top: 10px;
  right: 10px;
  transition: all .4s ease;
  opacity: .7;
  cursor: pointer;
}

.popup-close:hover {
  opacity: .9;
}

.popup-img {
  display: block;
  width: 44px;
  height: 44px;
  margin: 10px auto;
  background: url(../images/icon_subscribe.svg) no-repeat center;
  background-size: contain;
}

.popup-title {
  font-size: 27px;
  text-align: center;
  color: #333;
  display: block;
  margin: 20px 0;
  line-height: 1.1;
}

.popup-form {
  width: 100%;
  max-width: 310px;
  display: block;
  margin: 0 auto;
}

.form-line {
  display: block;
  width: 100%;
  margin: 18px 0;
}

.popup-form label {
  display: block;
  width: 100%;
  font-size: 14px;
  margin: 0 0 5px 0;
  color: #666;
  line-height: 1;
}

.popup-form input,
.popup-form select {
  border: 1px solid #ddd;
  line-height: 1;
  padding: 8px 12px;
  background: #fff;
  display: block;
  width: 100%;
  color: #333;
  font-size: 14px;
  box-shadow: none;
  letter-spacing: 0;
}

.popup-form input[type="submit"] {
  border: none;
  background: #e65622;
  width: 200px;
  margin: 30px auto 0 auto;
  font-size: 16px;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
  padding: 13px 5px;
  cursor: pointer;
  transition: all .4s ease;
  letter-spacing: 0;
}

.popup-form input[type="submit"]:hover {
  background: #dc5220;
}

.popup-form input[disabled] {
  background: #999!important;
  cursor: default;
}

.popup-btn {
  color: #b4b4b4;
  font-size: 14px;
  line-height: 1;
  display: block;
  margin: 10px auto 0 auto;
  width: 130px;
  text-align: center;
  padding: 7px 0;
  cursor: pointer;
  letter-spacing: 0;
}

form .messages {
  display: block;
  margin: 0;
  padding: 0;
}

form .messages span {
  display: block;
  width: 100%;
  line-height: 1;
  padding: 3px 0;
  margin: 0;
  font-size: 14px;
  text-align: center;
}

form .messages .popup-successful {
  color: green;
  background: #fff;
  display: flex;
  position: absolute;
  left: 0;
  width: 100%;
  top: 32px;
  height: calc(100% - 48px);
  justify-content: center;
  align-items: center;
  padding: 0 30px 32px 30px;
  font-size: 16px;
  line-height: 1.4;
  z-index: 500;
}

form .messages .popup-successful:after {
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  height: 60px;
  background: #fff;
  z-index: 501;
  top: -15px;
  left: 50%;
  margin-left: -30px;
}

.bottom-tel {
  display: block;
  text-align: center;
  margin: 5px 0 0 0!important;
}

.bottom-tel a {
  color: #e55721;
}

@media (max-width: 399px) {
  .popup-title {
    font-size: 24px;
  }
}

.footer-news-btn {
  display: block;
  width: auto;
  line-height: 1;
  padding: 10px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  border: 2px solid #fff;
}

.main-contacts > p {
    display: block !important;
    width: 100% !important;
  }

/* ========================================================= */
/* Media queries */
/* ========================================================= */

@media (max-width: 1499px) {
  .program-2, 
  .program-3, 
  .program-4 {
    padding-top: 50px;
  }
}

@media (max-width: 1399px) {
  .onepage-pagination {
    right: 3px;
    margin-right: 0;
  }

  .container {
    padding-right: 30px;
  }

  .header > .container {
    padding: 0 20px;
  }

  .main-page .main-1 .container {
    background: url(../images/main-1-bg.png) no-repeat 96% 50%;
    background-size: 42%;
  }

  .header-logo-full {
    width: 240px;
  }

  .footer-social-link {
    width: 34px;
    height: 34px;
    line-height: 32px;
    font-size: 16px;
    margin-right: 14px;
  }

  .footer-info {
    line-height: 32px;
    font-size: 14px;
  }

  .main-2-title {
    font-size: 32px;
    margin: 25px 0;
  }

  .main-2-img > img {
    height: 350px;
    margin-top: -175px;
  }

  .main-2.active .main-2-img > img {
    right: 10px;
  }

  .main-2-img-line {
    width: 236px;
    height: 450px;
  }

  .main-2-img {
    min-height: 452px;
  }

  .main-1.main-about {
    padding-top: 100px;
    background-size: 100%;
  }

  .program-slider .owl-carousel {
    padding: 0 30px;
  }

  .program-slider .owl-nav > .owl-prev {
    left: 0px;
    margin: 0;
  }

  .program-slider .owl-nav > .owl-next {
    right: 0px;
    margin: 0;
  }
}

@media (max-width: 1279px) {
  *,
  .main-1-text p,
  .main-content-list > li,
  .main-2-content p,
  .program-wrap p {
    font-size: 14px;
    line-height: 1.5;
  }

  .main-contacts {
    padding-top: 0;
  }

  .main-content-list > li:before {
    top: 5px;
  }

  .header-wrap {
    padding: 10px 0;
  }

  .header .header-logo-small {
    opacity: 1;
    pointer-events: all;
    z-index: 11;
  }

  .header .header-logo-full {
    display: none;
  }

  .main-2-title,
  .main-about-title,
  .program-wrap .h2,
  h1 {
    font-size: 26px;
    margin: 25px 0 15px 0;
  }

  .btn {
    padding: 13px 20px;
    font-size: 14px;
    margin: 12px 0;
  }

  .main-1.main-about {
    padding-top: 40px;
  }

  .main-about-item-top {
    font-size: 32px;
    padding-bottom: 15px;
  }

  .main-about-item-top b {
    font-size: 60px;
  }

  .about-3-text > p {
    font-size: 22px;
    font-weight: 400;
  }

  .program-right-list > li:before {
    width: 43px;
    height: 43px;
    border-width: 2px;
  }

  .program-right-list > li {
    margin: 4px 0;
    min-height: 46px;
  }

  .program-wrap .h2.main-2-title {
    margin: 0 0 5px 0;
  }

  .program-left .main-content-list > li {
    padding: 0px 5px 1px 30px
  }

  .program-left .btn {
    margin: 5px 0 0 0;
  }

  .program-4 {
    padding-top: 20px;
  }

  .main-contacts {
    flex-wrap: wrap;
  }

  .contacts-1, 
  .contacts-1 > .container {
    height: auto;
  }

  .contacts-1 {
    padding-top: 80px;
  }

  .contacts-page,
  .contacts-page body,
  .contacts-page .onepage-wrapper {
    position: relative;
    overflow: auto;
    height: auto;
    min-height: 100%;
  }

  .contacts-page .footer {
    position: relative;
    margin-top: 30px;
  }

  .contacts-map {
    min-height: 450px;
  }
}

@media (max-height: 779px) {
  .header-logo-full {
    width: 176px;
  }

  .program-usa-list-1 {
    margin-top: 20px;
    top: 20px;
  }

  .program-usa-list-2 {
    margin-top: 20px;
  }

  .program-usa-list-3,
  .program-usa-list-4,
  .program-usa-list-5 {
    margin-top: 30px;
  }

  .main-btn-wrap-1 {
    top: 20px;
  }

  .main-1-text p.main-1-text-new,
  .main-1-program-text {
    margin: 25px 0 15px 0;
    font-size: 14px;
    line-height: 1.3;
  }

  .about-3-text > p {
    font-size: 20px;
    margin: 3px 0;
  }

  .about-3-text > a, .about-3-text .about-link {
    font-size: 14px;
  }

  .main-1-city {
    display: block;
    width: 250px;
    height: 202px;
    top: -120px;
  }

  .main-1-text p {
    font-size: 15px;
    line-height: 1.4;
  }

  .main-1-2-img {
    width: 215px;
    height: 175px;
  }

  .main-0.main-1 > .container {
    background-size: 42%;
  }

  *,
  .main-1-text p,
  .main-content-list > li,
  .main-2-content p,
  .program-wrap p,
  .footer-info {
    font-size: 14px;
    line-height: 1.5;
  }

  .program-price {font-size: 26px;}
}

@media (max-height: 689px) {
  *,
  .main-1-text p,
  .main-content-list > li,
  .main-2-content p,
  .program-wrap p,
  .footer-info {
    font-size: 14px;
    line-height: 1.5;
  }

  .main-contacts {
    padding-top: 0;
  }

  .main-content-list > li:before {
    top: 5px;
  }

  .header-wrap {
    padding: 10px 0;
  }

  .header .header-logo-small {
    opacity: 1;
    pointer-events: all;
    z-index: 11;
  }

  .header .header-logo-full {
    display: none;
  }

  .main-about-title,
  h1 {
    font-size: 26px;
    margin: 25px 0 15px 0;
  }

  .btn {
    padding: 9px 20px;
    font-size: 14px;
    margin: 12px 0;
  }

  .main-1.main-about {
    padding-top: 40px;
  }

  .main-about-item-top {
    font-size: 32px;
    padding-bottom: 15px;
  }

  .main-about-item-top b {
    font-size: 60px;
  }

  .about-3-text > p {
    font-size: 18px;
    line-height: 1;
  }

  .program-right-list > li:before {
    width: 43px;
    height: 43px;
    border-width: 2px;
  }

  .program-right-list > li {
    margin: 4px 0;
    min-height: 46px;
  }

  .program-wrap .h2.main-2-title {
    margin: 20px 0 5px 0;
  }

  .program-left .main-content-list > li {
    padding: 0px 5px 1px 30px
  }

  .program-left .btn {
    margin: 5px 0 0 0;
  }

  .program-4 {
    padding-top: 20px;
  }

  .main-contacts {
    flex-wrap: wrap;
  }

  .contacts-1, 
  .contacts-1 > .container {
    height: auto;
  }

  .contacts-1 {
    padding-top: 80px;
  }

  .contacts-page,
  .contacts-page body,
  .contacts-page .onepage-wrapper {
    position: relative;
    overflow: auto;
    height: auto;
    min-height: 100%;
  }

  .contacts-page .footer {
    position: relative;
    margin-top: 30px;
  }

  .contacts-map {
    min-height: 400px;
  }

  .main-1-maze-img, 
  .main-1-arrow-img {
    max-width: 357px;
  }

  .main-1-maze-text-1 {
    top: -2px;
  }

  .main-1-maze-text-2 {
    top: 140px;
  }

  .main-1-maze-text-3 {
    top: 201px;
    left: 132px;
  }

  .main-1-maze-text-4 {
    top: 137px;
    left: 290px;
  }

  .main-1-maze-text-5 {
    top: 46px;
    left: 302px;
  }

  .main-1-arrow-text-1 {
    top: 63px;
    left: 17px;
  }

  .main-1-arrow-text-2 {
    top: 63px;
    left: 186px;
  }

  .main-1-program-text {
    font-size: 14px;
    line-height: 1.5;
  }

  .main-0 .main-1-program-text {
    width: 55%;
    margin-right: 40%;
  }

  .main-0 .main-1-content {
    width: 55%;
  }

  .main-1-time br {
    line-height: 0;
  }

  .main-1-man {
    width: 130px;
    height: 305px;
    top: 20px;
  }

  .main-1-man > p {
    font-size: 12px;
    width: 100px;
    top: 19px;
    margin-left: -50px;
  }

  .main-1-title {
    font-size: 28px;
    margin: 10px 0 10px 0;
    text-align: left;
  }

  .main-1-1-title {
    font-size: 24px;
  }

  .main-1-time {
    padding-top: 0;
  }

  .main-1-time > span {
    font-size: 29px;
    line-height: 0.7;
  }

  .main-1-time > p,
  .main-1-time > p * {
    line-height: 0.9;
  }

  .main-1-maze .main-1-maze-text {
    width: 100px;
  }

  .main-1-maze .main-1-maze-text, .main-1-arrow .main-1-arrow-text {
    font-size: 14px;
  }

  .main-1-maze-img {
    margin-top: 0;
  }

  .main-1-arrow-img {
    margin-top: -26px;
  }

  .main-1-text,
  .main-1-1-content .main-0-btns {
    padding: 0;
  }

  .main-0.main-1 > .container {
    background-size: 36%;
  }

  .main-1-text .main-1-man > p {
    top: 18px;
  }
}

@media (max-width: 1199px) {
  .main-1-left, 
  .main-1-right {
    width: 38%;
  }

  .main-1-city {
    display: none;
  }

  .main-1-maze .main-1-maze-text, 
  .main-1-arrow .main-1-arrow-text {
    font-size: 14px;
    width: 96px;
  }

  .main-1-arrow .main-1-arrow-text {
    width: 146px;
  }

  .main-1-title {
    font-size: 26px;
    margin: 10px 0 ;
  }

  .main-1-1-title {
    font-size: 22px;
    margin-top: 10px;
  }

  .main-1-2-img {
    width: 240px;
    height: 190px;
  }

  .main-1-maze-img, 
  .main-1-arrow-img {
    max-width: 300px;
    height: 170px;
  }

  .main-1-maze-text-1 {
    top: -8px;
  }

  .main-1-maze-text-2 {
    top: 130px;
  }

  .main-1-maze-text-3 {
    top: 176px;
    left: 106px;
  }

  .main-1-maze-text-4 {
    top: 115px;
    left: 245px;
  }

  .main-1-maze-text-5 {
    top: 38px;
    left: 256px;
  }

  .main-1-arrow-text-1 {
    top: 46px;
    left: 4px;
  }

  .main-1-arrow-text-2 {
    top: 46px;
    left: 146px;
  }

  .main-1-man {
    width: 120px;
    height: 323px;
    top: 10px;
  }

  .main-1-man > p {
    font-size: 12px;
    width: 100px;
    top: 19px;
    margin-left: -50px;
  }

  .main-1-2-title {
    font-size: 28px;
  }

  .main-1-2 > .container hr {
    margin: 0 0 10px 0;
  }

  .main-1-2 .main-1-text p {
    margin: 18px 0;
  }

  .main-1-text .main-1-man > p {
    top: 33px;
  }
}

@media (max-width: 991px) {
  .onepage-wrapper .section,
  .container,
  .main-2-content {
    height: auto;
  }

  .main-0-btns {
    margin-top: 20px;
  }

  .main-padding {
    padding-top: 90px;
    padding-bottom: 15px;
  }

  .contacts-left, 
  .contacts-right {
    width: 100%;
  }

  .main-0 .main-1-content {
    width: 59%;
  }

  .main-0-btns--start {
    display: none;
  }

  .main-1-arrow-img {
    margin-top: 20px;
  }

  .main-1-2-img {
    margin: 15px auto 0 auto;
  }

  .program-usa-list {
    flex-wrap: wrap;
    padding: 10px 0 5px 0;
  }

  .program-usa-list .about-3-text {
    width: 100%;
    padding: 5px 0;
  }

  .proj-usa .main-1 {
    padding-bottom: 0;
  }

  .proj-usa-item {
    padding: 40px 20px;
  }

  .program-2, .program-3, .program-4 {
    padding-top: 20px;
  }

  .program-slider {
    padding-bottom: 0;
  }

  .main-1-maze-img {
    margin: 45px 0 50px 0;
  }

  .main-1-arrow-img {
    margin-bottom: 50px;
  }

  .container {
    padding: 0 20px;
  }

  .main-2-img-line {
    display: none;
  }

  .main-2-img-line:after {
    display: none;
    z-index: 11;
  }

  .main-2-img > img,
  .main-2.main-2-reverse .main-2-img > img,
  .main-2.active .main-2-img > img,
  .main-2.main-2-reverse.active .main-2-img > img {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    margin: 10px 0;
    width: 90%;
    max-width: 400px;
    height: auto;
  }

  .main-1.main-about {
    padding-top: 80px;
  }

  .main-2-img,
  .main-2 .main-2-img {
    margin-top: 0;
    min-height: 10px;
    overflow-x: inherit;
    width: 100%;
  }

  .main-2-content {
    flex-wrap: wrap;
  }

  .main-2-text {
    width: 100%;
  }

  section {
    padding: 20px 0 0 0;
  }

  .program-usa-list .btn-scroll-slide.btn-scroll--hide {
    display: none;
  }

  .program-usa-list .btn-scroll {
    display: inline-block;
  }

  .main-btn-wrap-right {
    text-align: left;
  }

  .footer {
    position: relative;
    margin-top: 30px;
  }

  .main-4 {
    padding: 20px 0 0 0;
  }

  .contacts-text {
    margin: 10px 0;
  }

  .contacts-text b {
    font-size: 16px;
  }

  .contacts-map {
    margin-top: 20px;
  }

  .contacts-email {
    font-size: 18px;
  }

  .contacts-email:before {
    top: 0;
  }

  .contacts-1 {
    padding-top: 60px;
  }

  .header {
    background: rgba(255,255,255,1);
    box-shadow: 0 0 8px 0 rgba(0,0,0,.1);
  }

  .main-1 {
    padding-top: 15px;
  }

  .main-about-item-top {
    font-size: 30px;
    padding-bottom: 5px;
  }

  .main-about-item-top b {
    font-size: 50px;
  }

  .main-about-2 .main-2-text {
    margin-top: 0;
  }

  .main-about-2 .main-btn-wrap,
  .main-about-3 .main-btn-wrap {
    padding-top: 0;
  }

  .main-2.main-2-reverse .main-2-content {
    flex-direction: column-reverse;
    padding-bottom: 10px;
  }

  .about-3-list {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-top: 20px;
  }

  .about-3-item {
    width: 50%;
  }

  .about-3-img {
    width: 100px;
    height: 100px;
    min-width: 100px;
    margin-right: 20px;
  }

  .about-3-text > p {
    font-size: 18px;
  }

  .about-popup-right {
    width: 62%;
    max-width: 62%;
    margin-left: 25px;
  }

  .hidden-content-title {
    font-size: 20px;
    font-weight: 700;
  }

  .hidden-content-left,
  .hidden-content-right {
    width: 100%;
  }

  .hidden-content-right {
    padding: 0 0 20px 0;
  }

  .hidden-content-wrap {
    flex-direction: column-reverse;
  }

  .main-about-3 {
    padding-bottom: 0;
  }

  .contacts-map {
    margin-bottom: 0;
  }

  .main-usa .main-1 {
    padding-bottom: 0;
  }

  .main-1-man {
    display: none;
  }

  .main-1-left, .main-1-right {
    width: 45%;
  }

  .main-1-2 {padding-bottom: 0;}
}

@media (max-width: 799px) {
  .program-left,
  .program-right {
    width: 100%;
  }

  .hidden-content {
    padding: 20px;
  }

  .list-double > span {
    width: 100%;
  }

  .main-btn-wrap.main-btn-wrap--wide .btn {
    margin-right: 10px;
  }

  .btn {
    padding: 9px 12px;
  }

  .proj-usa-item {
    padding: 30px 20px;
  }

  .program-wrap {
    flex-wrap: wrap;
  }

  .main-1-right {
    text-align: center;
  }

  .program-right p,
  .program-right-list {
    padding-left: 0;
  }

  .proj-usa-item {
    width: 50%;
  }

  .main-1-wrap {
    display: block;
  }

  .main-1-left, .main-1-right {
    width: 360px;
    margin: 0 auto;
  }

  .main-1-right {
    padding: 25px 0;
  }

  .main-1-arrow-img {
    height: 100px;
    margin: 20px 0 0 25px;
  }

  .main-1-arrow-text-1,
  .main-1-arrow-text-2 {
    top: 7px;
  }

  .main-1-arrow-text-1 {
    left: 28px;
  }

  .main-1-arrow-text-2 {
    left: 170px;
  }

  .main-1-time {
    padding-top: 0;
    justify-content: center;
  }

  .main-1-1-title {
    font-size: 24px;
    text-align: center;
  }

  .main-1-title {
    font-size: 28px;
    text-align: center;
  }

  .program-right .program-right-list {
    margin-top: 25px;
  }
}

@media (max-width: 699px) {
  .main-page .main-1 .container {
    background: none;
  }

  .main-0 .main-1-content {
    width: 100%;
  }

  .main-0-btns {
    padding-top: 0;
  }

  .main-0 .main-1-title {margin-bottom: 10px;}

  .main-0.main-1 > .container {
    background: none!important;
  }

  .main-1-content {
    width: 60%;
  }

  .main-1-1-content {
    width: 100%!important;
  }

  .main-1 > .container {
    background-position: right 30px;
    background-size: 38%;
  }

  .main-1 {
    padding: 46px 0 20px 0;
  }

  .header > .container,
  .container {
    padding: 0 13px;
  }

  .header-logo-small {
    width: 198px;
    margin: 4px 0;
  }

  .feedback-photo {
    min-width: 96px;
    width: 96px;
    height: 96px;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .feedback-item {
    padding: 20px 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .feedback-right {
    padding-left: 0;
    border-left: 0;
    width: 100%;
  }

  .header-wrap {
    padding: 5px 0;
  }

  .main-2-title, 
  .main-about-title,
  .program-wrap .h2,
  h1 {
    font-size: 22px;
  }

  .main-0 .main-1-program-text {
    width: 100%;
    margin-right: 0;
  }

  .main-2-img > img, 
  .main-2.main-2-reverse .main-2-img > img, 
  .main-2.active .main-2-img > img {
    margin: 0;
  }

  .about-popup-wrap {
    flex-wrap: wrap;
  }

  .about-popup-left.about-3-item,
  .about-popup-right {
    width: 100%;
    max-width: 100%;
    margin: 10px 0;
  }

  .about-popup {
    padding: 20px 30px 60px 30px;
  }

  .about-popup-left.about-3-item {
    margin-bottom: 0;
  }

  .about-3-text > p {
    margin: 5px 0;
  }

  .main-1-2-title {
    font-size: 22px;
  }

  .header-phone {
    right: 63px;
    font-size: 18px;
  }

  .header-phone:before {
    top: 1px;
  }

  .footer-info {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    display: block;
    text-align: center;
    line-height: 1;
  }

  .footer-content {
    padding-bottom: 30px;
  }

  .footer-social-link {
    margin-right: 4px;
  }

  .footer-news-btn {
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 400;
    border: 1px solid #fff;
  }
}

@media (max-width: 599px) {
  .main-1.main-about {
    background: none;
  }

  .main-about-list {
    margin: 0;
    flex-wrap: wrap;
  }

  .main-about-item {
    width: 50%;
    padding: 20px;
  }

  .main-about-item-bottom {
    min-height: 5px;
    margin-top: 14px;
  }

  .main-about-item-text {
    position: relative;
    font-size: 13px;
  }

  .about-3-item {
    width: 100%;
  }

  .proj-usa-item {
    padding: 30px 20px;
  }

  .main-0-btns > .btn {
    margin: 8px 6px!important;
  }
}

@media (max-width: 549px) {
  .main-1-content {
    width: 100%;
    padding-top: 0;
  }

  .main-1-1-content {
    padding-top: 0;
  }

  .main-1 > .container {
    background-position: left 25px;
    background-size: 50%;
  }
}

@media (max-width: 499px) {
  .about-3-img {
    width: 80px;
    height: 80px;
    min-width: 80px;
    margin-right: 15px;
  }

  .hidden-content {
    padding: 15px;
  }

  .about-nav {
    padding: 10px 20px;
  }

  .about-popup {
    padding: 20px 20px 40px 20px;
  }

  .title-h2.main-about-title br {
    display: none;
  }

  .main-about-item {
    width: 100%;
    padding: 5px 0;
  }

  .main-about-3 {
    padding-top: 0;
  }

  .proj-usa-item {
    width: 100%;
  }

  .header-phone {
    color: transparent;
    font-size: 0;
    width: 26px;
    height: 28px;
    overflow: hidden;
    padding: 0 0 0 28px;
    right: 58px;
  }

  .header-phone:before {
    left: 0px;
    top: 0;
    width: 26px;
    height: 26px;
    background-size: 16px;
  }
}

@media (max-width: 449px) {
  .main-1-title {
    font-size: 22px;
    text-align: left;
    margin: 0 0 20px 0;
  }

  .main-1-right {
    text-align: left;
  }

  .main-1-left, .main-1-right {
    width: 100%;
    margin: 0;
    max-width: 100%;
  }

  .main-1-1-title {
    font-size: 20px;
    text-align: left;
    margin: 10px 0;
  }

  .main-1-maze-img,
  .main-1-arrow-img {
    display: none;
  }

  .main-1-maze .main-1-maze-text, 
  .main-1-arrow .main-1-arrow-text {
    position: relative;
    top: auto;
    left: auto;
    margin: 0 0 12px 0;
    width: 100%;
    text-align: left;
    padding-left: 16px;
  }

  .main-1-maze .main-1-maze-text:before, 
  .main-1-arrow .main-1-arrow-text:before {
    content: '';
    position: absolute;
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    left: 3px;
    top: 5px;
    background: #e65622;
  }

  .main-1-time {
    justify-content: flex-start;
  }

  .main-1-time > span {
    font-size: 32px;
  }

  .main-1-time > p,
  .main-1-time > p br {
    font-size: 12px!important;
    line-height: 1.3!important;
  }

  .main-1-text {
    padding-bottom: 0;
  }

  .main-1-text .main-btn-wrap > .btn {
    margin: 10px!important;
    width: 170px;
  }

  .main-1-2 {
    padding-top: 0;
  }

  .main-1-2 > .container hr {
    margin: 0;
  }

  .main-1-2-title {
    font-size: 20px;
    line-height: 1;
    margin-bottom: 10px;
  }
}

@media (max-width: 349px) {
  .main-1-content {
    width: 100%;
    padding-top: 10px;
  }

  .main-1 > .container {
    background: none;
  }
}
