html {
  scroll-behavior: smooth; }

body {
  min-width: 320px;
  margin: 0;
  font-family: 'Montserrat', 'Open Sans', 'Arial', sans-serif; }

.container {
  box-sizing: border-box;
  width: 1200px;
  margin: 0 auto;
  padding: 0 15px; }

::-webkit-scrollbar {
  width: 10px; }

::-webkit-scrollbar-track {
  background: #fff;
  border: 1px solid #e1e1e1; }

::-webkit-scrollbar-thumb {
  background: #ffa800; }

::-webkit-scrollbar-thumb:hover {
  background: #e69700; }

@media screen and (max-width: 1210px) {
  .container {
    width: 100%; } }

@font-face {
  font-family: 'Sylfaen';
  src: local("Sylfaen"), url("../fonts/Sylfaen.woff2") format("woff2"), url("../fonts/Sylfaen.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Montserrat';
  src: local("Montserrat Thin"), local("Montserrat-Thin"), url("../fonts/Montserrat-Thin.woff2") format("woff2"), url("../fonts/Montserrat-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal; }

@font-face {
  font-family: 'Montserrat';
  src: local("Montserrat ExtraLight"), local("Montserrat-ExtraLight"), url("../fonts/Montserrat-ExtraLight.woff2") format("woff2"), url("../fonts/Montserrat-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal; }

@font-face {
  font-family: 'Montserrat';
  src: local("Montserrat Light"), local("Montserrat-Light"), url("../fonts/Montserrat-Light.woff2") format("woff2"), url("../fonts/Montserrat-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal; }

@font-face {
  font-family: 'Montserrat';
  src: local("Montserrat Regular"), local("Montserrat-Regular"), url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Montserrat';
  src: local("Montserrat Medium"), local("Montserrat-Medium"), url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal; }

@font-face {
  font-family: 'Montserrat';
  src: local("Montserrat SemiBold"), local("Montserrat-SemiBold"), url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal; }

@font-face {
  font-family: 'Montserrat';
  src: local("Montserrat Bold"), local("Montserrat-Bold"), url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal; }

@font-face {
  font-family: 'Montserrat';
  src: local("Montserrat ExtraBold"), local("Montserrat-ExtraBold"), url("../fonts/Montserrat-ExtraBold.woff2") format("woff2"), url("../fonts/Montserrat-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal; }

@font-face {
  font-family: 'Montserrat';
  src: local("Montserrat Black"), local("Montserrat-Black"), url("../fonts/Montserrat-Black.woff2") format("woff2"), url("../fonts/Montserrat-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal; }

.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0px 2px 6px 0px rgba(0, 0, 0, 0.15);
  z-index: 2; }

@media screen and (max-width: 768px) {
  .header {
    position: relative; } }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between; }

.nav__list {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none; }

.nav__logo {
  margin: 0 30px 0 0;
  transition: 0.3s; }
  .nav__logo:hover, .nav__logo:focus {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px); }

.nav__item {
  margin: 0 30px 0 0; }
  .nav__item:last-child {
    margin: 0; }

.nav__link {
  padding: 30px 0 27px 0;
  color: #000;
  font-size: 16px;
  font-weight: normal;
  text-decoration: none;
  border-bottom: 4px solid transparent;
  transition: 0.5s; }
  .nav__link:hover, .nav__link:focus {
    color: #dd0505;
    border-bottom: 4px solid #dd0505; }
  .nav__link--phone {
    padding: 30px 0 27px 30px;
    background: url("../img/svg/phone.svg") no-repeat left/20px; }

.nav__open {
  display: none;
  margin: 0;
  width: 30px;
  height: 30px;
  font-size: 0;
  border: none;
  background: url("../img/svg/nav.svg") no-repeat center/cover;
  transition: 0.5s; }
  .nav__open--close {
    position: fixed;
    top: 38px;
    right: 15px;
    background: url("../img/svg/close.svg") no-repeat center/cover;
    z-index: 2; }

@media screen and (max-width: 1210px) {
  .nav {
    flex-wrap: wrap;
    justify-content: center; }
  .nav__item {
    padding: 20px 0; }
  .nav__link {
    border: none;
    font-size: 14px; }
    .nav__link:hover {
      border: none; } }

@media screen and (max-width: 768px) {
  .nav {
    justify-content: space-between; }
  .nav__list--mobile {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background: #fff;
    transition: 0.5s;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%); }
  .nav__list--show {
    -webkit-transform: translateY(0%);
            transform: translateY(0%); }
  .nav__item {
    margin: 0;
    padding: 0 0 30px 0; }
  .nav__link {
    padding: 0;
    border: none; }
    .nav__link--phone {
      padding: 0 0 0 30px; }
    .nav__link:hover, .nav__link:focus {
      border: none; }
  .nav__logo {
    margin: 0 10px 0 0; }
  .nav__open {
    display: block; } }

.heading {
  position: relative;
  margin: 0;
  color: #dd0505;
  font-size: 70px;
  font-weight: 500;
  line-height: 100%; }
  .heading--yellow {
    color: #ffa800; }
  .heading--small {
    display: inline-block;
    font-size: 40px; }
  .heading--center {
    text-align: center; }
  .heading--left {
    padding: 0 0 0 60px;
    font-size: 48px; }
  .heading--smallest {
    font-size: 28px; }
  .heading--sub {
    display: block;
    margin: 20px 0 0 0;
    font-size: 27px;
    line-height: 150%; }

@media screen and (max-width: 768px) {
  .heading {
    font-size: 30px;
    text-align: center; }
    .heading--small {
      display: block;
      font-size: 20px; }
    .heading--smallest {
      font-size: 18px; }
    .heading--left {
      padding: 0; } }

.title {
  position: relative;
  padding-top: 81px;
  /* background-image: url("../img/title-bg-temp.jpg"); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; }

.title__video {
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.title__content {
  position: relative;
  width: 845px;
  margin: 0 auto;
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: rgba(252, 175, 26, 0.7);
  z-index: 1; }
  
.title__content::after {
  content: '';
  position: absolute;
  top: 20px;
  left: -20px;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  border: 5px solid #FFA800;
}
  
.title__title {
  margin-top: 0;
  margin-bottom: 30px;
  color: #FFFFFF;
  font-size: 85px;
  font-weight: 500;
  text-align: center;
  line-height: 1em; }

.title__title--sub {
  display: block;
  margin-top: 20px;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2em;
}

.title__text {
  margin-bottom: 50px;
  color: #FFFFFF;
  font-size: 25px;
  font-weight: 400;
  text-align: center;
}

.title__info {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
}

.title__info--number {
  color: #DD0505;
  font-weight: 700;
}

.title__button {
  position: relative;
  margin: auto;
  z-index: 2;
}

@media screen and (max-width: 950px) {
  .title__content {
    width: 100%; }
}
    
@media screen and (max-width: 768px) {
  .title {
    padding-top: 0;
  }
  
  .title__content {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  
  .title__content::after {
    top: 10px;
    left: -5px;
    border-width: 3px;
    animation: move 0.7s infinite alternate;
  }
  
  @keyframes move {
    0% {}
      
    100% {
      top: 0;
      left: 0;
    }
  }
  
  .title__title {
    font-size: 30px;
  }
  
  .title__title--sub {
    font-size: 23px;
  }
  
  .title__text {
    font-size: 18px;
  }
  
  .title__text br {
    display: none;
  }
  
  .title__info {
    font-size: 16px;
  }
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 195px;
  padding: 13px;
  color: #fff;
  font-size: 18px;
  font-weight: normal;
  font-family: inherit;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 15px;
  background: #dd0505;
  cursor: pointer;
  transition: 0.3s; }
  .button:hover, .button:focus {
    box-shadow: 0px 1px 13px 0px rgba(255, 0, 25, 0.81);
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px); }
  .button--center {
    margin: auto; }
  .button--small {
    width: 110px;
    padding: 8px;
    font-size: 12px; }
  .button--yellow {
    width: auto;
    margin: 30px 0 0 0;
    padding: 10px;
    font-size: 16px;
    text-decoration: none; }
  .button:disabled {
    background: lightgray;
    cursor: not-allowed; }
    .button:disabled:hover {
      box-shadow: none;
      -webkit-transform: none;
              transform: none; }

.button__icon {
  fill: #fff;
  margin: 0 0 0 5px; }

@media screen and (max-width: 768px) {
  .button {
    width: 170px;
    padding: 10px;
    font-size: 16px; }
    .button--small {
      width: 130px;
      margin: 0 auto;
      padding: 8px;
      font-size: 12px; } }

.edge {
  padding: 100px 0; }

.edge__flex {
  display: flex;
  align-items: center;
  justify-content: space-between; }

.edge__content {
  width: 680px; }

.edge__list {
  margin: 0;
}

.edge__item {
  margin-bottom: 15px;
}

.edge__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%; }
  .edge__text--red {
    color: #dd0505;
    font-size: 24px;
    font-weight: 500; }
  .edge__text:first-of-type {
    margin: 100px 0 0 0; }

.edge__mockup {
  position: relative;
  width: 537px;
  height: 537px;
  background: url("../img/edge-mockup.png") no-repeat center/contain; }
  .edge__mockup::before {
    content: '';
    position: absolute;
    top: 75px;
    left: 60px;
    box-sizing: border-box;
    width: 380px;
    height: 380px;
    border: 10px solid #ffa800;
    -webkit-animation: edge-mockup-rotate 2s infinite alternate;
            animation: edge-mockup-rotate 2s infinite alternate;
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg); }

@-webkit-keyframes edge-mockup-rotate-reverse {
  0% { }
  100% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg); } }

@keyframes edge-mockup-rotate-reverse {
  0% { }
  100% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg); } }

@-webkit-keyframes edge-mockup-rotate {
  0% { }
  100% {
    -webkit-transform: rotate(-80deg);
            transform: rotate(-80deg); } }

@keyframes edge-mockup-rotate {
  0% { }
  100% {
    -webkit-transform: rotate(-80deg);
            transform: rotate(-80deg); } }

@media screen and (max-width: 1210px) {
  .edge__flex {
    flex-wrap: wrap; }
  .edge__mockup {
    margin: auto; } }

@media screen and (max-width: 768px) {
  .edge {
    padding: 50px 0; }
  .edge__flex {
    flex-direction: column; }
  .edge__content {
    width: auto; }
  .edge__text:first-of-type {
    margin: 30px 0 0 0; }
  .edge__text--red {
    font-size: 18px; }
  .edge__mockup {
    width: 300px;
    height: 300px; }
    .edge__mockup::before {
      top: 50px;
      left: 50px;
      width: 200px;
      height: 200px; } }

.square {
  position: absolute;
  top: -40px;
  left: -130px;
  width: 200px;
  height: 200px;
  background: #ffe3a6;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  z-index: -1; }
  .square::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 0;
    width: 300px;
    height: 5px;
    background: #ffa800;
    -webkit-animation: square-decorate-left 2s infinite alternate;
            animation: square-decorate-left 2s infinite alternate; }
  .square::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 300px;
    height: 5px;
    background: #dd0505;
    -webkit-animation: square-decorate-right 2s infinite alternate;
            animation: square-decorate-right 2s infinite alternate; }
  .square--rotate {
    left: auto;
    right: 250px;
    width: 180px;
    height: 180px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg); }
  .square--small {
    width: 150px;
    height: 150px; }

@-webkit-keyframes square-decorate-left {
  0% { }
  100% {
    right: -100px; } }

@keyframes square-decorate-left {
  0% { }
  100% {
    right: -100px; } }

@-webkit-keyframes square-decorate-right {
  0% { }
  100% {
    left: -100px; } }

@keyframes square-decorate-right {
  0% { }
  100% {
    left: -100px; } }

@media screen and (max-width: 768px) {
  .square {
    top: 0;
    left: -50px;
    width: 100px;
    height: 100px; }
    .square::before {
      content: '';
      position: absolute;
      top: 20px;
      right: 0;
      width: 200px;
      height: 5px;
      background: #ffa800;
      -webkit-animation: square-decorate-left 2s infinite alternate;
              animation: square-decorate-left 2s infinite alternate; }
    .square::after {
      content: '';
      position: absolute;
      top: 40px;
      left: 0;
      width: 200px;
      height: 5px;
      background: #dd0505;
      -webkit-animation: square-decorate-right 2s infinite alternate;
              animation: square-decorate-right 2s infinite alternate; } }

.video {
  padding: 150px 0 90px 0;
  background: #e95356 url("../img/video-bg-temp.jpg") no-repeat top/cover; }

.video__name {
  margin: 0;
  padding: 85px 0;
  color: #fff;
  font-size: 35px;
  font-weight: 500;
  text-align: center;
  background: url("../img/border.png") no-repeat center; }

.video__open {
  display: block;
  width: 110px;
  height: 110px;
  margin: 0 auto 40px auto;
  font-size: 0;
  border: none;
  background: url("../img/svg/youtube.svg") no-repeat center/cover;
  cursor: pointer;
  transition: 0.3s; }
  .video__open:hover, .video__open:focus {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px); }

.video__leading {
  color: #fff;
  font-size: 24px;
  font-style: italic;
  font-weight: normal;
  text-align: center; }

.video__content {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 1200px;
  height: auto;
  opacity: 0;
  transition: 0.5s;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  visibility: hidden;
  z-index: 4; }
  .video__content--show {
    opacity: 1;
    visibility: visible; }

.video__close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  margin: 0;
  font-size: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5) url("../img/svg/close-black.svg") no-repeat center/15px;
  cursor: pointer;
  transition: 0.3s;
  z-index: 5; }
  .video__close:hover {
    background: white url("../img/svg/close-black.svg") no-repeat center/15px; }

.video__source {
  width: 100%;
  height: 100%; }

@media screen and (max-width: 1210px) {
  .video__content {
    width: 95%; } }

@media screen and (max-width: 768px) {
  .video {
    padding: 50px 0; }
  .video__name {
    box-sizing: border-box;
    width: 300px;
    margin: auto;
    padding: 30px 10px;
    font-size: 13px;
    background: url("../img/border.png") no-repeat center/contain; }
  .video__open {
    width: 70px;
    height: 70px;
    margin: 30px auto 0 auto; }
  .video__leading {
    padding: 0 15px;
    font-size: 16px; } }

.start {
  padding: 150px 0 0 0; }

.start__name {
  position: relative;
  margin: 0 0 50px 0;
  color: #dd0505;
  font-size: 70px;
  font-weight: normal;
  font-family: 'Sylfaen', sans-serif;
  text-align: center; }
  .start__name--small {
    display: block;
    font-size: 40px; }

.start__subtext {
  margin: 50px 0 30px 0;
  font-weight: normal;
  line-height: 150%; }

.start__flex {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 0 0 30px 0; }
  .start__flex::before {
    content: '';
    position: absolute;
    top: 15px;
    right: 0;
    width: 1050px;
    height: 355px;
    background: #e5e5e5;
    z-index: -1; }

.start__box {
  box-sizing: border-box;
  width: 470px; }
  .start__box:hover .start__img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05); }

.start__figure {
  margin: 0;
  overflow: hidden; }

.start__img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s; }

.start__whom {
  position: relative;
  margin: 20px 0 20px 0;
  color: #dd0505;
  font-size: 18px;
  font-weight: 500;
  text-align: center; }
  .start__whom--red {
    padding: 10px 0;
    border-left: 16px solid #dd0505; }
  .start__whom--yellow {
    padding: 10px 0;
    border-left: 16px solid #ffa800; }

.start__content {
  margin: 0 0 0 7px;
  padding: 0 0 0 20px; }
  .start__content--red {
    border-left: 2px solid #dd0505; }
  .start__content--yellow {
    border-left: 2px solid #ffa800; }

.start__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 150%; }

.start__button {
  margin: auto; }

@media screen and (max-width: 1210px) {
  .start__flex {
    flex-wrap: wrap; } }

@media screen and (max-width: 768px) {
  .start {
    padding: 50px 0; }
  .start__subtext {
    margin: 30px 0; }
  .start__flex {
    flex-direction: column;
    margin: 0; }
    .start__flex::before {
      display: none; }
  .start__box {
    width: 100%;
    margin: 0 0 30px 0; } }

.advantages {
  padding: 150px 0 100px 0; }

.advantages__inner {
  position: relative;
  margin: 40px 0 80px 0; }

.advantages__controll {
  position: absolute;
  top: 50%;
  width: 100px;
  height: 40px;
  font-size: 0;
  border: none;
  background: #ffa800;
  cursor: pointer;
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  transition: 0.3s;
  outline: none;
  z-index: 1; }
  .advantages__controll:hover .advantages__icon {
    fill: #dd0505; }
  .advantages__controll--prev {
    left: -7px;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg); }
  .advantages__controll--next {
    right: -7px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); }

.advantages__icon {
  fill: #EBEBEB;
  transition: 0.3s; }
  .advantages__icon--prev {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); }
  .advantages__icon--next {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); }

.advantages__list {
  width: 90%;
  margin: 0;
  padding: 0;
  list-style: none;
  margin: auto; }

.advantages__item {
  margin: 5px;
  outline: none; }

.advantages__box {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  height: 480px;
  margin: 0 auto;
  padding: 0 40px 30px 40px;
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.33);
  overflow: hidden;
  transition: 0.5s; }
  .advantages__box::before {
    content: '';
    position: absolute;
    bottom: -115px;
    left: -50px;
    width: 1500px;
    height: 500px;
    background: #ebebeb;
    -webkit-transform: rotate(-15deg);
            transform: rotate(-15deg);
    z-index: -1; }

.advantages__flex {
  display: flex;
  align-items: center;
  justify-content: space-between; }

.advantages__content {
  position: relative;
  width: 600px;
  margin: 0 50px 0 0; }
  .advantages__content::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -30px;
    width: 2px;
    height: 200px;
    background: #ffa800;
    -webkit-animation: 2s decorate-up infinite alternate;
            animation: 2s decorate-up infinite alternate; }

@-webkit-keyframes decorate-up {
  0% { }
  100% {
    bottom: 100px; } }

@keyframes decorate-up {
  0% { }
  100% {
    bottom: 100px; } }

.advantages__title {
  position: relative;
  margin: 0 0 0 100px;
  font-size: 250px;
  font-weight: normal;
  font-family: 'Sylfaen', sans-serif; }
  .advantages__title--label {
    position: absolute;
    bottom: 110px;
    left: 50px;
    padding: 10px 20px;
    font-size: 24px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    background: #ffa800; }

.advantages__text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%; }

.advantages__img {
  box-sizing: border-box;
  width: 350px;
  height: auto;
  border: 5px solid #ffa800;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1; }

@media screen and (max-width: 768px) {
  .advantages {
    padding: 0 0 50px 0; }
  .advantages__controll {
    display: none !important; }
  .advantages__list {
    width: 100%; }
  .advantages__box {
    padding: 20px;
    height: auto; }
  .advantages__content {
    width: auto; }
  .advantages__flex {
    flex-direction: column; }
  .advantages__title {
    margin: 0;
    font-size: 200px; }
    .advantages__title--label {
      font-size: 16px; }
  .advantages__text {
    font-size: 15px; }
  .advantages__img {
    display: none !important; } }

.specialty {
  position: relative;
  padding: 0 0 20px 0; }
  .specialty::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffe3a6;
    -webkit-clip-path: polygon(60% 0, 100% 0%, 75% 100%, 30% 100%);
            clip-path: polygon(60% 0, 100% 0%, 75% 100%, 30% 100%); }

.specialty__list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 40px 0 0 0;
  overflow: hidden; }

.specialty__item {
  margin: 10px 30px;
  outline: none;
  transition: 0.3s; }

.specialty__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  height: 300px;
  padding: 30px 25px;
  background: #fff;
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.3);
  transition: 0.3s; }

.specialty__content {
  width: 230px;
  margin: 0 10px 0 0; }

.specialty__title {
  margin: 0 0 40px 0;
  color: #dd0505;
  font-size: 15px;
  font-weight: normal;
  transition: 0.3s; }

.specialty__text {
  margin: 0 0 40px 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  transition: 0.3s; }

.specialty__logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none; }

.specialty__uni {
  margin: 0 10px 0 0; }

.specialty__img {
  box-sizing: border-box;
  width: 100%;
  max-width: 200px;
  height: 215px;
  border: 10px solid #ffa800;
  -o-object-fit: cover;
     object-fit: cover; }

@media screen and (max-width: 1210px) {
  .specialty__item {
    margin: 10px 0; }
  .specialty__box {
    width: 50%;
    margin: 0 auto; } }

@media screen and (max-width: 768px) {
  .specialty {
    padding: 20px 0; }
  .specialty__box {
    flex-direction: column;
    width: 90%;
    height: auto;
    padding: 20px 15px; }
  .specialty__content {
    width: 100%;
    margin: 0;
    text-align: center; }
  .specialty__text {
    margin: 0 0 40px 0; }
  .specialty__img {
    display: none !important; } }

.warranty {
  padding: 50px 0 0 0; }

.warranty__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 40px 0; }

.warranty__content {
  width: 500px; }

.warranty__name {
  margin: 0 0 30px 0;
  color: #dd0505;
  font-size: 48px;
  font-weight: 500; }
  .warranty__name--small {
    font-size: 28px; }
  .warranty__name--left {
    padding: 0 0 0 60px; }

.warranty__text {
  margin: 30px 0 0 0;
  font-weight: 400;
  line-height: 150%; }

.warranty__mockup {
  position: relative;
  width: 572px;
  height: 430px;
  background: url("../img/warranty-mockup.jpg") no-repeat center/cover; }
  .warranty__mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    width: 572px;
    height: 430px;
    border: 10px solid #ffa800;
    -webkit-animation: 1.5s mockup infinite alternate;
            animation: 1.5s mockup infinite alternate; }

@-webkit-keyframes mockup {
  0% { }
  100% {
    top: -20px;
    left: -20px; } }

@keyframes mockup {
  0% { }
  100% {
    top: -20px;
    left: -20px; } }

@media screen and (max-width: 1210px) {
  .warranty__flex {
    flex-wrap: wrap; } }

@media screen and (max-width: 768px) {
  .warranty__flex {
    flex-direction: column; }
  .warranty__content {
    width: auto;
    margin: 0 0 30px 0; }
  .warranty__mockup {
    width: 300px;
    height: 300px; }
    .warranty__mockup::before {
      top: -10px;
      left: -10px;
      width: 300px;
      height: 300px; }
  @-webkit-keyframes mockup {
    0% { }
    100% {
      top: 0;
      left: 0; } }
  @keyframes mockup {
    0% { }
    100% {
      top: 0;
      left: 0; } } }

.stages {
  position: relative;
  padding: 170px 0 80px 0; }
  .stages::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 100%;
    background: #e6e6e6;
    z-index: -1;
    -webkit-clip-path: polygon(0 30%, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 30%, 100% 0, 100% 100%, 0% 100%); }

.stages__name {
  margin: 0 0 80px 0;
  color: #dd0505;
  font-size: 70px;
  font-weight: 500;
  text-align: center; }

.stages__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 70px 0 30px 0; }

.stages__item {
  position: relative;
  box-sizing: border-box;
  width: 250px;
  padding: 30px 0 30px 40px;
  background: url("../img/stage-arrow.png") no-repeat center/cover; }
  .stages__item:nth-child(2) {
    background: url("../img/stage-media.png") no-repeat center/cover; }
  .stages__item:nth-child(5) {
    padding: 30px 0 30px 50px;
    background: url("../img/stage-square.png") no-repeat center/210px; }

.stages__title {
  margin: 0 0 10px 0;
  color: #dd0505;
  font-size: 14px;
  font-weight: 500; }

@media screen and (max-width: 1210px) {
  .stages__list {
    flex-wrap: wrap; } }

@media screen and (max-width: 768px) {
  .stages {
    padding: 50px 0 0 0; }
  .stages__list {
    flex-direction: column;
    margin: 30px 0; }
  .stages__item {
    width: 300px;
    margin: 0 0 30px 0;
    padding: 30px 0;
    text-align: center;
    background: url("../img/stage-square.png") no-repeat center/300px 140px; }
    .stages__item:nth-child(2) {
      background: url("../img/stage-media.png") no-repeat center/300px 140px; }
    .stages__item:nth-child(5) {
      margin: 0;
      padding: 30px 0;
      background: url("../img/stage-square.png") no-repeat center/300px 140px; }
      .stages__item:nth-child(5)::after {
        display: none; }
    .stages__item::after {
      content: '';
      position: absolute;
      bottom: -16px;
      left: 50%;
      width: 90px;
      height: 30px;
      background: url("../img/stage-arrow-mobile.png") no-repeat center/cover;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%); } }

.process {
  padding: 160px 0 100px 0; }

.process__name {
  position: relative;
  margin: 0 0 20px 0;
  color: #dd0505;
  font-size: 70px;
  font-weight: 500; }

.process__subtext {
  margin: 0 0 30px 0;
  padding: 0 0 0 45px;
  font-size: 24px;
  font-weight: normal; }

.process__flex {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 0 0 30px 0; }

.process__box {
  box-sizing: border-box;
  width: 470px; }

.process__wrapper {
  position: relative; }
  .process__wrapper--red::before {
    content: '';
    position: absolute;
    top: 10px;
    left: -10px;
    box-sizing: border-box;
    width: 100%;
    height: 90%;
    border: 2px solid #dd0505; }
  .process__wrapper--yellow::before {
    content: '';
    position: absolute;
    top: 10px;
    left: -10px;
    box-sizing: border-box;
    width: 100%;
    height: 90%;
    border: 2px solid #ffa800; }

.process__img {
  margin: 0 0 30px 0;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover; }

.process__content {
  margin: 0 0 0 7px;
  padding: 0 0 0 20px; }
  .process__content--red {
    border-left: 2px solid #dd0505; }
  .process__content--yellow {
    border-left: 2px solid #ffa800; }

.process__text {
  position: relative;
  margin: 0;
  padding: 0 0 10px 40px;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%; }
  .process__text--red {
    border-left: 2px solid #dd0505; }
  .process__text--yellow {
    border-left: 2px solid #ffa800; }

.process__logo {
  position: absolute;
  top: 0;
  left: -28px;
  padding: 0 0 10px 0;
  background: #fff; }

.process__button {
  margin: auto; }

@media screen and (max-width: 1210px) {
  .process__flex {
    flex-wrap: wrap; } }

@media screen and (max-width: 768px) {
  .process {
    padding: 70px 0; }
  .process__subtext {
    margin: 30px 0;
    padding: 0;
    font-size: 16px; }
  .process__flex {
    flex-direction: column; }
  .process__box {
    width: 90%;
    margin: 0 0 30px 0; }
    .process__box:last-child {
      margin: 0; } }

.cost {
  padding: 0 0 80px 0; }
  
  .cost__list {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 30px;
    margin-bottom: 15px;
    padding: 0;
    list-style: none;
  }
  
  .cost__item {
    width: 280px;
    border-radius: 10px;
    background-color: #FFFFFF;
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: 0.2s;
  }
  
  .cost__item:hover {
    box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.6);
    transform: scale(1.05);
  }
  
  .cost__name {
    display: block;
    padding: 15px 0;
    color: #DD0505;
    font-size: 25px;
    font-weight: 600;
    text-align: center;
  }
  
  .cost__cost {
    margin: 0;
    padding: 10px 0;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    background-color: #32004b;
  }
  
  .cost__cost--number {
    font-size: 35px;
    font-weight: 700;
  }
  
  .cost__recomend {
    margin: 0;
    padding: 10px;
    color: #494949;
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    border-bottom: 1px solid #cccccc;
  }
  
  .cost__structure {
    margin: 10px 0;
    padding-left: 20px;
    color: #0c1087;
    font-size: 18px;
    font-weight: 700;
  }
  
  .cost__sublist {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .cost__check {
    margin-bottom: 10px;
    margin-left: 15px;
    padding-left: 20px;
    color: #494949;
    font-size: 14px;
    font-weight: 400;
    background-image: url('../img/svg/check.svg');
    background-repeat: no-repeat;
    background-position: left 3px;
    background-size: 15px;
  }
  
  .cost__check--media {
    margin-left: 0;
    padding: 10px 0;
    padding-left: 35px;
    color: #494949;
    font-weight: 600;
    background-color: #ffa800;
    background-image: url('../img/svg/check-white.svg');
    background-position: 15px center;
  }
  
  .cost__check:last-child {
    margin-bottom: 15px;
  }
  
  .cost__duration {
    margin: 0;
    padding: 10px 0;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    background-color: #32004b;
  }
  
  .cost__caution {
    font-size: 14px;
    text-align: center;
  }
  
  @media screen and (max-width: 1210px) {
    .cost__list {
      flex-wrap: wrap;
      width: 600px;
      margin: auto;
      margin-top: 30px;
      margin-bottom: 15px;
    }
    
    .cost__item {
      margin-bottom: 15px;
    }
  }
  
  @media screen and (max-width: 768px) {
    .cost__wrapper {
      overflow-x: scroll;
    }
    
    .cost__wrapper::-webkit-scrollbar {
      width: 0;
      height: 5px;
    }
    
    .cost__list {
      flex-wrap: nowrap;
      align-items: flex-end;
      width: 400%;
      margin-bottom: 20px;
    }
    
    .cost__item {
      margin: auto;
    }
    
    .cost__item:hover {
      transform: none;
    } 
    
    .cost__info {
      margin-top: 20px;
      text-align: center;
    }
  }

/* .cost__name {
  margin: 0 0 50px 0;
  color: #dd0505;
  font-size: 70px;
  font-weight: 500;
  text-align: center; }

.cost__table {
  width: 100%;
  margin: 50px 0 0 0;
  border-collapse: collapse; }

.cost__tr,
.cost__td,
.cost__th {
  border: 1px solid #e1e1e1; }

.cost__th {
  padding: 20px 0;
  color: #dd0505;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  background: #fff; }

.cost__tr {
  transition: 0.3s; }
  .cost__tr:hover {
    background: lightgray; }

.cost__td {
  padding: 15px;
  color: #494949;
  font-size: 14px;
  font-weight: normal;
  text-align: center; }
  .cost__td--summary {
    padding: 30px 0;
    color: #fff;
    font-size: 36px;
    font-weight: bold;
    background: #32004b; }
  .cost__td--small {
    padding: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    border: none; }
  .cost__td--blue {
    color: #0c1087;
    font-size: 15px;
    font-weight: 600; }
  .cost__td--violet {
    color: #fff;
    background: #32004b; }
  .cost__td--media {
    font-weight: 600;
    background: #ffa800; }

@media screen and (max-width: 768px) {
  .cost__table {
    display: block;
    padding: 0 0 10px 0;
    overflow-x: scroll; }
    .cost__table::-webkit-scrollbar {
      height: 5px; }
  .cost__th {
    font-size: 15px; }
  .cost__td {
    padding: 10px;
    font-size: 13px; }
    .cost__td--summary {
      padding: 15px 10px;
      font-size: 20px; }
    .cost__td--small {
      padding: 0; } } */

.reviews {
  position: relative;
  margin: 0 0 150px 0; }
  .reviews::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 120%;
    background: #e6e6e6;
    -webkit-clip-path: polygon(0 20%, 100% 0, 100% 60%, 0 80%);
            clip-path: polygon(0 20%, 100% 0, 100% 60%, 0 80%);
    z-index: -1; }

.reviews__name {
  margin: 0 0 50px 0;
  color: #dd0505;
  font-size: 70px;
  font-weight: 500;
  text-align: center; }
  .reviews__name--small {
    display: block;
    font-size: 40px; }

.reviews__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 50px 0 0 0; }

.reviews__subtext {
  position: relative;
  width: 350px;
  margin: 0;
  font-size: 22px;
  font-weight: normal; }
  .reviews__subtext--red {
    display: block;
    margin: 20px 0 0 0;
    color: #dd0505;
    font-size: 18px;
    font-weight: normal;
    text-align: right; }
    .reviews__subtext--red::before {
      display: none; }
  .reviews__subtext::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -40px;
    width: 195px;
    height: 140px;
    background: url("../img/quote.png") no-repeat center/cover; }

.reviews__slider {
  position: relative;
  width: 730px;
  margin: 0 50px 0 0; }

.reviews__list {
  margin: 0;
  padding: 0;
  list-style: none; }

.reviews__controll {
  position: absolute;
  top: 50%;
  width: 100px;
  height: 40px;
  font-size: 0;
  border: none;
  background: #ffa800;
  cursor: pointer;
  -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
          clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  transition: 0.3s;
  z-index: 1; }
  .reviews__controll:hover .reviews__icon {
    fill: #dd0505; }
  .reviews__controll--prev {
    left: -65px;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg); }
  .reviews__controll--next {
    right: -65px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); }

.reviews__icon {
  fill: #EBEBEB;
  transition: 0.3s; }
  .reviews__icon--prev {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); }
  .reviews__icon--next {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); }

.reviews__item {
  box-sizing: border-box;
  width: 360px;
  margin: 5px;
  padding: 15px 20px 20px 20px;
  background: #fff;
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.33);
  outline: none; }

.reviews__header {
  display: flex;
  align-items: center;
  justify-content: space-between; }

.reviews__figure {
  position: relative;
  margin: 0; }
  .reviews__figure::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 0px;
    width: 15px;
    height: 165px;
    background: #ffa800; }
  .reviews__figure::after {
    content: '';
    position: absolute;
    top: 0;
    right: -90px;
    width: 129px;
    height: 93px;
    background: url("../img/quote.png") no-repeat center/cover; }

.reviews__img {
  width: 160px;
  height: 165px;
  margin: 0 15px 0 15px;
  -o-object-fit: cover;
     object-fit: cover; }

.reviews__author {
  width: 100%;
  margin: 20px 0 15px 0;
  padding: 0 0 15px 0;
  color: #dd0505;
  font-size: 18px;
  font-weight: normal;
  border-bottom: 2px solid #ffa800; }

.reviews__short {
  margin: 40px 0 0 0;
  font-size: 16px;
  font-weight: 600; }

.reviews__quote {
  height: 120px;
  margin: 0;
  padding: 0 10px 0 0;
  font-weight: 300;
  line-height: 150%;
  overflow-y: scroll; }
  .reviews__quote::-webkit-scrollbar {
    width: 4px; }
  .reviews__quote::-webkit-scrollbar-track {
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 10px; }
  .reviews__quote::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #ffa800; }
  .reviews__quote::-webkit-scrollbar-thumb:hover {
    background: #e69700; }

@media screen and (max-width: 1210px) {
  .reviews__flex {
    flex-wrap: wrap; }
  .reviews__slider {
    width: 650px;
    margin: 0 auto; } }

@media screen and (max-width: 768px) {
  .reviews {
    margin: 0 0 50px 0; }
  .reviews__subtext {
    width: auto;
    margin: 0 0 30px 0;
    font-size: 16px;
    text-align: center; }
    .reviews__subtext--red {
      margin: 10px 0 0 0; }
    .reviews__subtext::before {
      display: none; }
  .reviews__flex {
    flex-direction: column;
    margin: 30px 0 0 0; }
  .reviews__controll {
    display: none !important; }
  .reviews__slider {
    width: 100%; }
  .reviews__item {
    width: 100%; }
  .reviews__short {
    display: none; }
  .reviews__figure {
    width: 100%; }
    .reviews__figure::after {
      display: none; }
  .reviews__img {
    margin: auto; }
  .reviews__author {
    text-align: center; }
  .reviews__quote {
    height: 250px;
    font-size: 15px; } }

.contact {
  padding: 100px 0; }

.contact__flex {
  display: flex;
  align-items: center;
  justify-content: space-between; }

.contact__content {
  width: 450px; }

.contact__name {
  position: relative;
  margin: 0 0 20px 0;
  color: #dd0505;
  font-size: 30px;
  font-weight: 500; }

.contact__subtext {
  margin: 30px 0 5px 0;
  font-weight: 400; }
  .contact__subtext--second {
    margin: 5px 0 30px 0;
    color: #dd0505;
    font-size: 25px;
    font-weight: normal; }

.contact__phone {
  display: block;
  margin: 0 0 30px 0;
  color: #dd0505;
  font-size: 25px;
  font-weight: normal;
  text-decoration: none;
  transition: 0.3s; }
  .contact__phone:hover {
    color: #ffa800; }

.contact__title {
  margin: 0 0 30px 0;
  color: #2e3192;
  font-size: 18px;
  font-weight: 500;
  text-align: center; }

.contact__list {
  list-style: none; }

.contact__item {
  margin: 0 0 20px 0;
  padding: 0 0 0 55px;
  font-size: 14px;
  font-weight: 400;
  background: url("../img/svg/contact-point.svg") no-repeat left; }
  .contact__item--study {
    font-size: 18px;
    font-weight: normal; }
  .contact__item--media {
    font-size: 18px;
    font-weight: normal;
    background: url("../img/svg/contact-point-media.svg") no-repeat left; }

.contact__station {
  display: block;
  color: #dd0505;
  font-size: 16px;
  font-weight: normal; }

.contact__map {
  width: 670px;
  height: 670px; }

@media screen and (max-width: 768px) {
  .contact__subtext {
    margin: 10px 0;
    text-align: center; }
    .contact__subtext--second {
      margin: 0 0 30px 0;
      font-size: 18px; }
  .contact__phone {
    text-align: center; }
  .contact__flex {
    flex-direction: column; }
  .contact__content {
    width: auto; }
  .contact__item--media {
    background: url("../img/svg/contact-point-media.svg") no-repeat left/40px; }
  .contact__map {
    width: 100%;
    height: 300px; } }

.request {
  padding: 150px 0;
  background: #e6e6e6 url("../img/request-bg.jpg") no-repeat center/cover; }

.request__form {
  width: 435px;
  margin: auto; }

@media screen and (max-width: 768px) {
  .request__form {
    width: 95%; } }

.footer {
  padding: 15px 0;
  background: #dd0505; }

.footer__text {
  margin: 0;
  color: #fff;
  font-weight: normal;
  text-align: center; }

.popup {
  position: fixed;
  top: 50%;
  left: 50%;
  box-sizing: border-box;
  width: 945px;
  background: #fff;
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.3);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  transition: 0.5s;
  visibility: hidden;
  z-index: 3; }
  .popup--show {
    opacity: 1;
    visibility: visible; }

.popup__close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 30px;
  height: 30px;
  margin: 0;
  font-size: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5) url("../img/svg/close-black.svg") no-repeat center/15px;
  cursor: pointer;
  transition: 0.3s; }
  .popup__close:hover {
    background: white url("../img/svg/close-black.svg") no-repeat center/15px; }

.popup__flex {
  display: flex;
  align-items: center;
  justify-content: space-between; }

.popup__content {
  width: 600px;
  padding: 40px 15px 40px 50px; }

.popup__name {
  margin: 0 0 20px 0;
  padding: 0 0 0 30px;
  color: #dd0505;
  font-size: 38px;
  font-weight: 500; }

.popup__warning {
  margin: 0 0 0 30px;
  padding: 10px 0 10px 45px;
  font-size: 14px;
  font-weight: 500; }
  .popup__warning--calendar {
    background: url("../img/svg/calendar.svg") no-repeat left/30px; }
  .popup__warning--academy {
    background: url("../img/svg/contact-point.svg") no-repeat left/30px; }
  .popup__warning--media {
    background: url("../img/svg/contact-point-media.svg") no-repeat left/30px; }
  .popup__warning--guarantee {
    background: url("../img/svg/cap.svg") no-repeat left/30px; }
  .popup__warning--experts {
    background: url("../img/svg/employees.svg") no-repeat left/30px; }

.popup__text {
  padding: 0 15px 0 0;
  font-weight: 400;
  line-height: 150%; }

.popup__scroll {
  height: 200px;
  overflow-y: scroll; }
  .popup__scroll::-webkit-scrollbar {
    width: 4px; }
  .popup__scroll::-webkit-scrollbar-track {
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 10px; }
  .popup__scroll::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #ffa800; }
  .popup__scroll::-webkit-scrollbar-thumb:hover {
    background: #e69700; }

.popup__subname {
  margin: 30px 0 0 0;
  color: #ffa800;
  font-size: 20px;
  font-weight: 500; }

.popup__img {
  -o-object-fit: cover;
     object-fit: cover; }

.popup__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 2; }
  .popup__overlay--show {
    opacity: 0.8;
    visibility: visible; }

@media screen and (max-width: 768px) {
  .popup {
    width: 95%; }
  .popup__content {
    padding: 50px 15px 20px 15px; }
  .popup__name {
    padding: 0;
    font-size: 18px;
    text-align: center; }
  .popup__warning {
    margin: 0;
    font-size: 12px; }
  .popup__flex--column {
    flex-direction: column; }
  .popup__img {
    display: none; } }

.thankyou {
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  height: 100vh; }
  .thankyou::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #e6e6e6;
    -webkit-clip-path: polygon(0 25%, 100% 0, 100% 75%, 0% 100%);
            clip-path: polygon(0 25%, 100% 0, 100% 75%, 0% 100%);
    z-index: -1; }

.thankyou__content {
  text-align: center; }

.thankyou__text:first-of-type {
  margin: 20px 0 30px 0;
  font-size: 20px;
  font-weight: 500; }

.thankyou__text:last-of-type {
  margin: 10px 0 50px 0; }
  
.popupC {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 920px;
  border-left: 5px solid #DD0505;
  background-color: #FFFFFF;
  clip-path: polygon(0 30%, 100% 0, 100% 100%, 0% 100%);
  opacity: 1;
  transform: translate(-50%, -50%);
  visibility: visible;
  z-index: 3;
}

.popupC--hide {
  opacity: 0;
  visibility: hidden;
}

.popupC__close {
  position: absolute;
  top: 15px;
  right: 10px;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background-color: #FFFFFF;
  background-image: url('../img/svg/close.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px;
  cursor: pointer;
  outline: none;
  z-index: 1;
}

.popupC__wrapper {
  display: flex;
  justify-content: space-between;
}

.popupC__content {
  width: 525px;
  padding-top: 200px;
}

.popupC__title {
  position: relative;
  margin-top: 0;
  margin-bottom: 5px;
  padding-left: 10px;
  font-size: 28px;
  font-weight: 600;
  text-align: center;
}

.popupC__title::before {
  content: '';
  position: absolute;
  top: -110px;
  left: 0;
  width: 180px;
  height: 180px;
  background-color: #ffe3a6;
  transform: rotate(45deg);
  z-index: -1;
}

.popupC__title::after {
  content: '';
  position: absolute;
  top: -150px;
  right: 0;
  width: 125px;
  height: 145px;
  background-image: url('../img/popupC-1.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.popupC__position {
  margin-top: 0;
  margin-bottom: 20px;
  padding: 5px 0;
  color: #FFFFFF;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  background-color: #DD0505;
}

.popupC__text {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 19px;
  font-weight: 500;
  text-align: right;
}

.popupC__text--select {
  padding: 0 5px;
  background-color: #ffa800;
}

.popupC__image {
  position: relative;
  width: 360px;
  height: 370px;
  background-image: url('../img/popupC-image.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.popupC__image::after {
  content: '';
  position: absolute;
  top: -15px;
  left: -10px;
  width: 120%;
  height: 105%;
  border: 5px solid #ffa800;
}

.popupC__form {
  width: 100%;
}

@media screen and (max-width: 960px) {
  .popupC {
    width: 95%;
  }
  
  .popupC__close {
    background-color: #EEEEEE;
  }
  
  .popupC__content {
    width: 100%;
  }
  
  .popupC__image {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .popupC__mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    overflow-y: scroll;
    visibility: visible;
    z-index: 3;
  }
  
  .popupC__mobile--hide {
    opacity: 0;
    visibility: hidden;
  }
  
  .popupC__mobile::-webkit-scrollbar {
    width: 5px;
  }
  
  .popupC {
    position: relative;
    top: 0;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    clip-path: none;
    transform: none;
  }
  
  .popupC__content {
    padding-top: 80px;
  }
  
  .popupC__position {
    font-size: 25px;
  }
  
  .popupC__text {
    text-align: center;
  }
}

.spring {
  position: fixed;
  top: 50%;
  left: 50%;
  box-sizing: border-box;
  width: 900px;
  padding: 30px 40px;
  border: 4px solid #fca80d;
  border-radius: 20px;
  background-color: #FFFFFF;
  transform: translate(-50%, -50%);
  background-image: url('../img/sbg.png');
  background-repeat: no-repeat;
  background-position: right;
  z-index: 3;
  transition: 0.3s;
}

.spring--hide {
  opacity: 0;
  visibility: hidden;
}

.spring__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background-image: url('../img/svg/close-black.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px;
}

.spring__title {
  margin-top: 0;
  margin-bottom: 10px;
  color: #dd0505;
  font-size: 30px;
  font-weight: 700;
}

.spring__text {
  margin: 0;
  margin-bottom: 5px;
  padding: 5px 0;
  padding-left: 30px;
  background-repeat: no-repeat;
  background-position: left;
}

.spring__text--1 {
  background-image: url('../img/s1.png');
  background-size: 20px;
}

.spring__text--2 {
  background-image: url('../img/s2.png');
  background-size: 20px;
}

.spring__text--3 {
  background-image: url('../img/s3.png');
  background-size: 20px;
}

.spring__text--4 {
  background-image: url('../img/s4.png');
  background-size: 20px;
}

.spring__text--red {
  color: #DD0505;
}

.spring__text--bold {
  margin-top: 20px;
  margin-bottom: 10px;
  padding-left: 0;
  color: #DD0505;
  font-size: 18px;
  font-weight: 500;
}

.spring__list {
  margin: 0;
  padding-left: 25px;
}

.spring__item {
  margin-bottom: 5px;
}

.spring__button {
  display: block;
  box-sizing: border-box;
  width: 145px;
  margin: 0 auto;
  margin-top: 10px;
  padding: 10px 20px;
  color: #fff;
  font-size: 16px;
  font-weight: normal;
  font-family: inherit;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 20px;
  background: #dd0505;
}

@media screen and (max-width: 768px) {
  .spring {
    width: 95%;
    padding: 20px;
    background-image: none;
  }
  
  .spring__title {
    font-size: 25px;
    text-align: center;
  }
  
  .spring__text--bold {
    margin-top: 15px;
    text-align: center;
  }
}