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

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

@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy-Semibold.woff2") format("woff2"), url("../fonts/Gilroy-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

button,
input,
textarea {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
}

button:focus {
  box-shadow: none !important;
}

*:focus {
  outline: none;
}

body {
  font-family: "Gilroy";
  font-weight: 400;
  color: #1c1c1c;
}

a {
  display: inline-block;
  font: inherit;
  color: inherit;
  transition: 300ms;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  max-height: 100%;
}

a img {
  border: none;
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

@media screen and (max-width: 1260px) {
  .container {
    width: 970px;
  }
}

@media screen and (max-width: 991px) {
  .container {
    width: 750px;
  }
}

@media screen and (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }
}

.wrapper {
  overflow: hidden;
  background: #fff;
  position: relative;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #be151b;
  border-radius: 10px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  border: 1px solid #be151b;
}

.btn:hover {
  background: none;
  color: #be151b;
}

.header {
  background: #ffffff;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.04);
  padding: 23px 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0 auto;
  z-index: 100;
  transition: 500ms;
}

.header.dop {
  top: -100px;
}

@media only screen and (max-width: 991px) {
  .header.dop {
    top: 0;
  }
}

.header.active {
  top: 0;
  position: fixed;
}

@media only screen and (max-width: 1260px) {
  .header {
    padding: 20px 0;
  }
}

@media only screen and (max-width: 991px) {
  .header {
    position: fixed;
  }
}

@media only screen and (max-width: 767px) {
  .header {
    padding: 12px 0;
  }
}

.header__items {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 991px) {
  .header__items {
    justify-content: space-between;
  }
}

.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  margin-right: 100px;
}

@media only screen and (max-width: 1260px) {
  .header__logo {
    margin-right: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .header__logo {
    width: 200px;
    margin-right: 0;
  }
}

@media only screen and (max-width: 767px) {
  .header__logo {
    width: 150px;
  }
}

.header__logo img {
  width: 100%;
  height: 100%;
}

.header__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

@media only screen and (max-width: 991px) {
  .header__item {
    position: absolute;
    right: -280px;
    transition: 500ms;
    top: 0;
    height: 100vh;
    overflow-y: auto;
    width: 280px;
    background: #fff;
    z-index: 80;
    flex-direction: column;
    padding: 120px 20px 100px 20px;
    align-items: flex-start;
  }
  .header__item.active {
    right: 0;
  }
}

@media only screen and (max-width: 767px) {
  .header__item {
    padding-top: 100px;
  }
}

.header__nav {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 991px) {
  .header__nav {
    display: block;
  }
}

.header__nav li {
  margin-right: 40px;
}

@media only screen and (max-width: 1260px) {
  .header__nav li {
    margin-right: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .header__nav li {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .header__nav li:last-child {
    margin-bottom: 0;
  }
}

.header__nav li:last-child {
  margin-right: 0;
}

.header__nav li a {
  font-size: 18px;
  font-weight: 500;
}
@media only screen and (max-width: 1260px) {
  .header__nav li a {
    font-size: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .header__nav li a {
    font-size: 20px;
    font-weight: 600;
  }
}

.header__nav li a:hover {
  color: #f26522;
}

.header__nav li a.active {
  color: #f26522;
  font-weight: 600;
}

.header__tel {
  font-size: 22px;
  font-weight: 500;
}

@media only screen and (max-width: 1260px) {
  .header__tel {
    font-size: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .header__tel {
    font-size: 24px;
    margin-top: auto;
    margin-bottom: 15px;
  }
}

.header__tel:hover {
  color: #f26522;
}

.header__burger {
  display: none;
  width: 36px;
}

@media only screen and (max-width: 991px) {
  .header__burger {
    display: block;
    position: relative;
    z-index: 100;
  }
}

.header__burger a {
  display: block;
  cursor: pointer;
  padding: 12px 0;
}

.header__burger a span {
  position: relative;
  display: block;
  width: 36px;
  height: 4px;
  border-radius: 7px;
  background: #1c1c1c;
  transition: all 0.2s ease-in-out;
}

.header__burger a span:before, .header__burger a span:after {
  content: "";
  width: 36px;
  height: 4px;
  position: absolute;
  left: 0;
  background: #1c1c1c;
  border-radius: 7px;
  transition: all 0.2s ease-in-out;
}

.header__burger a span:before {
  top: -8px;
}

.header__burger a span:after {
  top: 8px;
}

.header__burger a.active span {
  background: transparent;
}

.header__burger a.active span:before {
  transform: rotate(45deg) translate(5px, 6px);
}

.header__burger a.active span:after {
  transform: rotate(-45deg) translate(5px, -6px);
}

.langswitcher{
  margin-left: 15px;
}
.select-lang{
  border: 0;
  font-size: 18px;
  font-weight: 500;
  padding: 2px;
  background: none;
  cursor: pointer;
}
@media only screen and (max-width: 991px) {
  .langswitcher{
    margin-left: auto;
    margin-right: 15px;
  }
  .select-lang{
    font-size: 16px;
    padding: 0;
  }
}

.social ul{
  display: flex;
  justify-content: center;
  align-items: center
}
.social ul li:not(:last-child){
  margin-right: 5px;
}
.social ul li a{
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center
}
.social ul li a svg{
  max-width: 100%;
  max-height: 100%;
}
.social._header{
  margin-left: 15px;
}
.social._footer{
  margin-right: 45px;
}
@media only screen and (max-width: 1260px) {
  .social._footer{
    margin-right: 40px;
  }
  }

@media only screen and (max-width: 991px) {
  .social._header{
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .social._footer{
    margin: 15px auto;
  }
}

.showcase {
  margin-top: 85px;
  background: url(../images/showcase-bg.png) no-repeat;
  background-size: cover;
  background-position: center center;
}

@media only screen and (max-width: 1260px) {
  .showcase {
    margin-top: 75px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase {
    margin-top: 55px;
    background: url(../images/showcase-bg-mobile.png) no-repeat;
    background-size: cover;
    background-position: center center;
  }
}

.showcase__inner {
  position: relative;
  padding: 124px 0 145px 0;
}

@media only screen and (max-width: 1260px) {
  .showcase__inner {
    padding: 100px 0;
  }
}

@media only screen and (max-width: 991px) {
  .showcase__inner {
    padding: 80px 0;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__inner {
    padding: 50px 0 60px 0;
  }
}

.showcase__title {
  font-size: 44px;
  line-height: 57px;
  font-weight: 600;
  max-width: 620px;
  margin-bottom: 39px;
  transition: 1000ms;
  opacity: 0;
  transform: translateX(-50px);
}

.showcase__title.element-show {
  opacity: 1;
  transform: none;
}

@media only screen and (max-width: 1260px) {
  .showcase__title {
    font-size: 36px;
    line-height: 42px;
    max-width: 550px;
  }
}

@media only screen and (max-width: 991px) {
  .showcase__title {
    font-size: 32px;
    line-height: 38px;
    max-width: 460px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 20px;
    max-width: 100%;
  }
}

.showcase__list {
  margin-bottom: 47px;
  transition: 1000ms;
  opacity: 0;
  transform: translateX(-50px);
}

.showcase__list.element-show {
  opacity: 1;
  transform: none;
}

@media only screen and (max-width: 767px) {
  .showcase__list {
    margin-bottom: 30px;
  }
}

.showcase__list li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 22px;
}

@media only screen and (max-width: 991px) {
  .showcase__list li {
    font-size: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__list li {
    font-size: 16px;
    margin-bottom: 14px;
    line-height: 19px;
  }
}

.showcase__list li::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border: 3px solid #f26522;
  border-radius: 3px;
  transform: rotate(-45deg);
  margin-right: 17px;
}

@media only screen and (max-width: 991px) {
  .showcase__list li::before {
    width: 14px;
    height: 14px;
    margin-right: 14px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__list li::before {
    width: 12px;
    height: 12px;
    margin-right: 12px;
  }
}

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

.showcase__btn {
  width: 222px;
  height: 70px;
  transition: 1000ms;
  opacity: 0;
  transform: translateX(-50px);
}

.showcase__btn.element-show {
  opacity: 1;
  transform: none;
}

@media only screen and (max-width: 991px) {
  .showcase__btn {
    height: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__btn {
    margin-bottom: 46px;
  }
}

.showcase__btn:hover {
  transition: 300ms;
}

.showcase__image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -166px;
  top: 60px;
  transition: 1000ms;
  opacity: 0;
  transform: translateX(50px);
}

.showcase__image.element-show {
  opacity: 1;
  transform: none;
}

@media only screen and (max-width: 1260px) {
  .showcase__image {
    width: 500px;
    right: -80px;
  }
}

@media only screen and (max-width: 1260px) {
  .showcase__image {
    width: 340px;
    right: -40px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__image {
    position: static;
    width: 280px;
    margin-right: 0;
    margin-left: auto;
  }
}

.showcase__blocks {
  display: flex;
  position: absolute;
  right: 170px;
  bottom: 160px;
  transition: 1000ms;
  opacity: 0;
  transform: translateX(50px);
}

.showcase__blocks.element-show {
  opacity: 1;
  transform: none;
}

@media only screen and (max-width: 991px) {
  .showcase__blocks {
    right: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__blocks {
    bottom: 80px;
    right: auto;
    left: 0;
  }
}

.showcase__block {
  width: 200px;
  background: #ffffff;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.07);
  border-radius: 15px;
  text-align: center;
  margin-right: 30px;
  padding: 24px 16px 16px 16px;
}

@media only screen and (max-width: 1260px) {
  .showcase__block {
    padding: 16px;
    width: 160px;
    border-radius: 12px;
    margin-right: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .showcase__block {
    width: 145px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__block {
    width: 106px;
    border-radius: 8px;
  }
}

.showcase__block:last-child {
  margin-right: 0;
}

.showcase__head {
  font-size: 22px;
  line-height: 26px;
}

@media only screen and (max-width: 1260px) {
  .showcase__head {
    font-size: 18px;
    line-height: 22px;
  }
}

@media only screen and (max-width: 991px) {
  .showcase__head {
    font-size: 16px;
    line-height: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__head {
    font-size: 12px;
    line-height: 14px;
  }
}

.showcase__text {
  font-size: 28px;
  line-height: 34px;
  color: #f26522;
  font-weight: 600;
}

@media only screen and (max-width: 1260px) {
  .showcase__text {
    font-size: 24px;
    line-height: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .showcase__text {
    font-size: 20px;
    line-height: 26px;
  }
}

@media only screen and (max-width: 767px) {
  .showcase__text {
    font-size: 15px;
    line-height: 18px;
  }
}

.about {
  padding: 80px 0;
}

@media only screen and (max-width: 991px) {
  .about {
    padding: 60px 0;
  }
}

@media only screen and (max-width: 767px) {
  .about {
    padding: 40px 0;
  }
}

.about__title {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 17px;
}

@media only screen and (max-width: 1260px) {
  .about__title {
    font-size: 34px;
  }
}

@media only screen and (max-width: 991px) {
  .about__title {
    font-size: 27px;
  }
}

@media only screen and (max-width: 767px) {
  .about__title {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 10px;
  }
}

.about__subtitle {
  font-size: 28px;
  margin-bottom: 46px;
}

@media only screen and (max-width: 1260px) {
  .about__subtitle {
    font-size: 24px;
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .about__subtitle {
    font-size: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .about__subtitle {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

.about__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 40px;
  column-gap: 40px;
  row-gap: 30px;
}

@media only screen and (max-width: 991px) {
  .about__items {
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .about__items {
    grid-template-columns: 1fr;
  }
}

.about__item {
  border: 1px solid #efefef;
  border-radius: 10px;
  padding: 40px 50px;
  transition: 1000ms;
  opacity: 0;
  transform: translateX(50px);
}

.about__item.element-show {
  opacity: 1;
  transform: none;
}

@media only screen and (max-width: 991px) {
  .about__item {
    padding: 30px;
  }
}

.about__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: rgba(242, 100, 34, 0.1);
  border-radius: 10px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 991px) {
  .about__image {
    margin-bottom: 23px;
  }
}

.about__head {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
}

@media only screen and (max-width: 1260px) {
  .about__head {
    font-size: 24px;
  }
}

@media only screen and (max-width: 991px) {
  .about__head {
    font-size: 20px;
    margin-bottom: 7px;
  }
}

.about__text {
  font-size: 20px;
  line-height: 26px;
}

@media only screen and (max-width: 1260px) {
  .about__text {
    font-size: 18px;
    line-height: 24px;
  }
}

@media only screen and (max-width: 991px) {
  .about__text {
    font-size: 16px;
    line-height: 21px;
  }
}

.video {
  margin-bottom: 123px;
}

@media only screen and (max-width: 1260px) {
  .video {
    margin-bottom: 100px;
  }
}

@media only screen and (max-width: 991px) {
  .video {
    margin-bottom: 75px;
  }
}

@media only screen and (max-width: 767px) {
  .video {
    margin-bottom: 50px;
  }
}

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

@media only screen and (max-width: 991px) {
  .video__items {
    display: block;
  }
}

.video__video {
  min-width: 560px;
  width: 560px;
  margin-left: 40px;
  position: relative;
}

@media only screen and (max-width: 1260px) {
  .video__video {
    min-width: 500px;
    width: 500px;
  }
}

@media only screen and (max-width: 991px) {
  .video__video {
    min-width: auto;
    width: 100%;
    margin-left: 0;
    margin-top: 30px;
  }
}

.video__header{
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .video__header{
    font-size: 20px;
    margin-bottom: 15px;
  }
}

.video__video-wrap {
  position: relative;
}
.video__video-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.video__video-image img {
  width: 100%;
  height: 100%;
}

.video__video-play {
  z-index: 5;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(190, 21, 27, 0.3);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  padding: 10px;
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite;
}

@media only screen and (max-width: 767px) {
  .video__video-play {
    width: 69px;
    height: 69px;
    padding: 6px;
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(190, 21, 27, 0.3);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(190, 21, 27, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(190, 21, 27, 0);
  }
}

.video__video-play span {
  background: #be151b;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.video__video-play span img {
  transform: translateX(5px);
}

@media only screen and (max-width: 767px) {
  .video__video-play span img {
    width: 18px;
    transform: translateX(2px);
  }
}

.video__video-play:hover {
  -webkit-animation: none;
  animation: none;
}

.video__title {
  font-size: 38px;
  line-height: 46px;
  font-weight: 600;
  margin-bottom: 28px;
}

@media only screen and (max-width: 1260px) {
  .video__title {
    font-size: 30px;
    line-height: 38px;
  }
}

@media only screen and (max-width: 767px) {
  .video__title {
    font-size: 22px;
    line-height: 27px;
    margin-bottom: 18px;
  }
}

.video__info {
  font-size: 22px;
  line-height: 29px;
}

@media only screen and (max-width: 1260px) {
  .video__info {
    font-size: 20px;
    line-height: 27px;
  }
}

@media only screen and (max-width: 767px) {
  .video__info {
    font-size: 16px;
    line-height: 21px;
  }
}

.video__info p {
  margin-bottom: 20px;
}

.video__info p:last-child {
  margin-bottom: 0;
}

#modal-video {
  max-width: 1000px;
}
#modal-video video {
  max-width: 100%;
  max-height: 100%;
}
@media only screen and (max-width: 767px) {
  #modal-video {
    padding: 40px 20px;
    width: 100%;
  }
  #modal-video video {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
  }
}

.banner__content {
  max-width: 90%;
  background: #f26522;
  padding: 97px 0 83px 0;
  margin: 0 auto;
  color: #fff;
  border-radius: 40px;
  position: relative;
}

@media only screen and (max-width: 1500px) {
  .banner__content {
    max-width: 98%;
  }
}

@media only screen and (max-width: 1260px) {
  .banner__content {
    padding: 60px 0;
    border-radius: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .banner__content {
    border-radius: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .banner__content {
    max-width: 100%;
    padding: 52px 0 315px 0;
  }
}

.banner__content::before {
  content: "";
  display: block;
  position: absolute;
  background: #ffffff;
  opacity: 0.8;
  -webkit-filter: blur(250px);
  filter: blur(250px);
  width: 394px;
  height: 394px;
  border-radius: 50%;
  bottom: -196px;
  right: 25px;
}

@media only screen and (max-width: 1260px) {
  .banner__content::before {
    width: 320px;
    height: 320px;
    bottom: -140px;
  }
}

@media only screen and (max-width: 767px) {
  .banner__content::before {
    bottom: -145px;
    width: 394px;
    height: 394px;
    right: auto;
    left: 50%;
    transform: translate(-50%, 0);
  }
}

.banner__inner {
  position: relative;
}

.banner__image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: -226px;
  bottom: -83px;
  /*  transition: 1000ms; */
  transform: translateY(50px);
  opacity: 0;
}

.banner__image.element-show {
  opacity: 1;
  transform: none;
}

@media only screen and (max-width: 767px) {
  .banner__image.element-show {
    transform: translate(-50%, 0);
  }
}

@media screen and (max-width: 1800px) {
  .banner__image {
    right: -165px;
  }
}

@media screen and (max-width: 1680px) {
  .banner__image {
    right: -90px;
  }
}

@media only screen and (max-width: 1260px) {
  .banner__image {
    width: 600px;
    bottom: -60px;
  }
}

@media screen and (max-width: 1130px) {
  .banner__image {
    right: -35px;
  }
}

@media only screen and (max-width: 991px) {
  .banner__image {
    right: -160px;
    width: 560px;
    bottom: -125px;
  }
}

@media only screen and (max-width: 767px) {
  .banner__image {
    width: 596px;
    right: auto;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: -387px;
  }
}

.banner__block {
  padding-left: 50px;
  border-left: 3px solid #ffffff;
  padding-bottom: 30px;
}

@media only screen and (max-width: 1260px) {
  .banner__block {
    padding-left: 20px;
    border-left: 2px solid #fff;
    padding-bottom: 15px;
  }
}

@media screen and (max-width: 991px) {
  .banner__block {
    padding-bottom: 0;
    margin-bottom: 15px;
  }
}

@media only screen and (max-width: 767px) {
  .banner__block {
    padding: 0;
    border: 0;
  }
}

.banner__head {
  font-size: 28px;
  line-height: 33px;
  max-width: 600px;
}

@media only screen and (max-width: 1260px) {
  .banner__head {
    font-size: 24px;
    line-height: 30px;
    max-width: 480px;
  }
}

@media only screen and (max-width: 767px) {
  .banner__head {
    font-size: 20px;
    line-height: 24px;
    max-width: 100%;
  }
}

.banner__text {
  font-size: 38px;
  font-weight: 500;
}

@media only screen and (max-width: 1260px) {
  .banner__text {
    font-size: 32px;
  }
}

@media only screen and (max-width: 767px) {
  .banner__text {
    font-size: 26px;
  }
}

.banner__btn {
  padding: 19px 98px 19px;
  background: #ffffff;
  border: 1px solid #ff0000;
  border-radius: 5px;
  font-weight: 600;
  font-size: 17px;
  line-height: 21px;
  text-transform: uppercase;
  color: #1c1c1c;
  position: absolute;
  right: 40px;
  bottom: 66px;
  transition: 300ms;
}

.banner__btn:hover {
  background: #BE151B;
  border: 1px solid #BE151B;
  color: #fff;
}

@media screen and (max-width: 1400px) {
  .banner__btn {
    padding: 19px 70px 19px;
  }
}

@media screen and (max-width: 1260px) {
  .banner__btn {
    padding: 15px 40px 15px;
    font-size: 16px;
    line-height: 19px;
  }
}

@media screen and (max-width: 991px) {
  .banner__btn {
    left: 0;
    bottom: 10px;
    position: static;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    width: 750px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .banner__btn {
    position: static;
    display: flex;
    margin: 0 auto;
    margin-top: 20px;
  }
}

.numbers {
  padding: 233px 0 90px 0;
  background: rgba(242, 100, 34, 0.06);
  margin-top: -150px;
}

@media only screen and (max-width: 1260px) {
  .numbers {
    margin-top: -130px;
    padding: 210px 0 80px 0;
  }
}

@media only screen and (max-width: 991px) {
  .numbers {
    padding: 190px 0 80px 0;
  }
}

@media only screen and (max-width: 767px) {
  .numbers {
    margin-top: -40px;
    padding: 90px 0 60px 0;
  }
}

.numbers__title {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 60px;
}

@media only screen and (max-width: 991px) {
  .numbers__title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .numbers__title {
    font-size: 22px;
    margin-bottom: 34px;
  }
}

.numbers__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 40px;
  column-gap: 40px;
  row-gap: 45px;
}

@media only screen and (max-width: 991px) {
  .numbers__items {
    -moz-column-gap: 30px;
    column-gap: 30px;
    row-gap: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .numbers__items {
    grid-template-columns: 1fr;
    row-gap: 23px;
  }
}

.numbers__item {
  transition: 1000ms;
  opacity: 0;
}

.numbers__item.element-show {
  opacity: 1;
}

.numbers__head {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
}

@media only screen and (max-width: 1260px) {
  .numbers__head {
    font-size: 36px;
  }
}

@media only screen and (max-width: 991px) {
  .numbers__head {
    font-size: 28px;
    margin-bottom: 20px;
  }
}

.numbers__head::before {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #f26522;
  border-radius: 5px;
  position: absolute;
  bottom: -14px;
  left: 0;
}

@media only screen and (max-width: 991px) {
  .numbers__head::before {
    bottom: -10px;
  }
}

.numbers__text {
  font-size: 22px;
  line-height: 26px;
  color: #5f5f5f;
}

@media only screen and (max-width: 1260px) {
  .numbers__text {
    font-size: 20px;
    line-height: 24px;
  }
}

@media only screen and (max-width: 991px) {
  .numbers__text {
    font-size: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .numbers__text {
    font-size: 16px;
    line-height: 19px;
  }
}

.buisnes {
  padding: 80px 0 100px 0;
  position: relative;
}

@media only screen and (max-width: 1260px) {
  .buisnes {
    padding: 80px 0;
  }
}

@media only screen and (max-width: 767px) {
  .buisnes {
    padding: 46px 0 63px 0;
  }
}

.buisnes::before {
  content: "";
  display: block;
  width: 500px;
  height: 500px;
  background: rgba(252, 224, 211, 0.2);
  border-radius: 50px;
  transform: rotate(30deg);
  position: absolute;
  top: 255px;
  left: -390px;
}

@media only screen and (max-width: 1260px) {
  .buisnes::before {
    display: none;
  }
}

.buisnes__title {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 14px;
}

@media only screen and (max-width: 1260px) {
  .buisnes__title {
    font-size: 32px;
  }
}

@media only screen and (max-width: 767px) {
  .buisnes__title {
    font-size: 22px;
    line-height: 27px;
    margin-bottom: 15px;
  }
}

.buisnes__head {
  font-size: 28px;
  margin-bottom: 50px;
}

@media only screen and (max-width: 1260px) {
  .buisnes__head {
    font-size: 24px;
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .buisnes__head {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 30px;
  }
}

.buisnes__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 40px;
  column-gap: 40px;
  row-gap: 30px;
}

@media only screen and (max-width: 1260px) {
  .buisnes__items {
    -moz-column-gap: 25px;
    column-gap: 25px;
    row-gap: 25px;
  }
}

@media only screen and (max-width: 991px) {
  .buisnes__items {
    grid-template-columns: 1fr;
    row-gap: 25px;
  }
}

.buisnes__item {
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 30px;
  display: flex;
  transition: 300ms;
  align-items: flex-start;
  min-height: 340px;
}

@media only screen and (max-width: 1260px) {
  .buisnes__item {
    padding: 20px 20px 30px 20px;
  }
}

@media only screen and (max-width: 991px) {
  .buisnes__item {
    min-height: auto;
  }
}

@media only screen and (max-width: 767px) {
  .buisnes__item ul {
    width: calc(100% + 60px);
    transform: translateX(-60px);
  }
}

.buisnes__item ul li {
  display: flex;
  align-items: flex-start;
  font-size: 18px;
  line-height: 22px;
  transition: 300ms;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  .buisnes__item ul li {
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 12px;
  }
}

.buisnes__item ul li:last-child {
  margin-bottom: 0;
}

.buisnes__item ul li::before {
  content: "";
  display: block;
  transition: 300ms;
  width: 3px;
  height: 3px;
  border: 2px solid #f26522;
  border-radius: 1px;
  transform: rotate(-45deg) translateY(8px);
  min-width: 3px;
  margin-right: 19px;
}

.buisnes__item:hover {
  background: #f26522;
}

.buisnes__item:hover ul li {
  color: #fff;
}

.buisnes__item:hover ul li::before {
  border: 2px solid #fff;
}

.buisnes__item:hover .buisnes__header {
  color: #fff;
}

.buisnes__item:hover .buisnes__image svg path {
  fill: #fff;
}

.buisnes__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  transition: 300ms;
  min-width: 40px;
  margin-right: 20px;
}

.buisnes__image svg path {
  transition: 300ms;
}

@media only screen and (max-width: 1260px) {
  .buisnes__image {
    min-width: 35px;
    width: 35px;
  }
}

@media only screen and (max-width: 991px) {
  .buisnes__image {
    min-width: 40px;
    width: 40px;
  }
}

.buisnes__header {
  font-size: 22px;
  font-weight: 500;
  transition: 300ms;
  margin-bottom: 24px;
}

@media only screen and (max-width: 767px) {
  .buisnes__header {
    font-size: 17px;
    line-height: 21px;
    transform: translateY(10px);
    margin-bottom: 40px;
  }
}

.buisnes__btn {
  width: 300px;
  height: 60px;
  margin: 40px auto 0 auto;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 767px) {
  .buisnes__btn {
    margin-top: 35px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-second {
    z-index: 10;
    position: relative;
  }
}

.banner-second .banner__block {
  padding-bottom: 0;
}

.banner-second .banner__image {
  bottom: -120px;
  width: 782px;
  transform: translateX(50px);
}

.banner-second .banner__image.element-show {
  transform: none;
}

@media only screen and (max-width: 767px) {
  .banner-second .banner__image.element-show {
    transform: translate(-50%, 0);
  }
}

@media only screen and (max-width: 1260px) {
  .banner-second .banner__image {
    width: 650px;
    bottom: -90px;
    right: -180px;
  }
}

@media only screen and (max-width: 991px) {
  .banner-second .banner__image {
    width: 550px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-second .banner__image {
    bottom: -342px;
    right: auto;
    left: 50%;
    transform: translate(-50%, 0);
    width: 537px;
  }
}

.banner-second .banner__image img {
  width: 100%;
  height: 100%;
}

.banner-second .banner__content {
  padding: 66px 0 48px 0;
}

@media only screen and (max-width: 1260px) {
  .banner-second .banner__content {
    padding: 40px 0;
  }
}

@media only screen and (max-width: 767px) {
  .banner-second .banner__content {
    padding: 53px 0 304px 0;
  }
}

.banner-second .banner__head {
  font-size: 24px;
  line-height: 31px;
  max-width: 707px;
  margin-bottom: 50px;
}

@media only screen and (max-width: 1260px) {
  .banner-second .banner__head {
    font-size: 20px;
    line-height: 26px;
    max-width: 600px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .banner-second .banner__head {
    max-width: 450px;
  }
}

.banner-second .banner__head br:last-child {
  display: none;
}

@media only screen and (max-width: 767px) {
  .banner-second .banner__head br:last-child {
    display: block;
  }
}

.banner-second .banner__text {
  font-size: 24px;
  line-height: 31px;
  max-width: 640px;
}

@media only screen and (max-width: 1260px) {
  .banner-second .banner__text {
    font-size: 20px;
    line-height: 26px;
    max-width: 500px;
  }
}

@media only screen and (max-width: 991px) {
  .banner-second .banner__text {
    max-width: 400px;
  }
}

.banner-second .banner__text br:last-child {
  display: none;
}

@media only screen and (max-width: 767px) {
  .banner-second .banner__text br:last-child {
    display: block;
  }
}

.clients {
  padding: 220px 0 70px 0;
  background: url(../images/clients-bg.png) no-repeat;
  background-size: cover;
  background-position: center center;
  margin-top: -140px;
}

@media only screen and (max-width: 767px) {
  .clients {
    padding: 65px 0 52px 0;
    margin-top: -20px;
    position: relative;
    background: #f9f9f9;
  }
  .clients::before {
    content: "";
    display: block;
    width: 708px;
    height: 652px;
    background: #f9f9f9;
    -webkit-filter: blur(100px);
    filter: blur(100px);
    border-radius: 50%;
    position: absolute;
    bottom: -260px;
    left: 50%;
    transform: translate(-50%, 0);
  }
}

.clients .container {
  position: relative;
  z-index: 5;
}

.clients__title {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 14px;
}

@media only screen and (max-width: 1260px) {
  .clients__title {
    font-size: 32px;
  }
}

@media only screen and (max-width: 991px) {
  .clients__title {
    font-size: 28px;
  }
}

@media only screen and (max-width: 767px) {
  .clients__title {
    font-size: 22px;
    margin-bottom: 17px;
  }
}

.clients__head {
  font-size: 28px;
  margin-bottom: 40px;
}

@media only screen and (max-width: 1260px) {
  .clients__head {
    font-size: 24px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .clients__head {
    font-size: 22px;
  }
}

@media only screen and (max-width: 767px) {
  .clients__head {
    font-size: 18px;
    margin-bottom: 36px;
  }
}

.clients__items {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 991px) {
  .clients__items {
    display: block;
  }
}

.clients__item {
  min-width: 360px;
  width: 360px;
  margin-right: 40px;
}

@media only screen and (max-width: 991px) {
  .clients__item {
    min-width: auto;
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}

.clients__item-head {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 26px;
}

@media only screen and (max-width: 1260px) {
  .clients__item-head {
    font-size: 22px;
  }
}

@media only screen and (max-width: 991px) {
  .clients__item-head {
    font-size: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .clients__item-head {
    margin-bottom: 17px;
  }
}

.clients__list {
  transition: 1000ms;
  opacity: 0;
}

.clients__list.element-show {
  opacity: 1;
}

.clients__list li {
  font-size: 22px;
  display: flex;
  align-items: center;
  margin-bottom: 23px;
}

@media only screen and (max-width: 767px) {
  .clients__list li {
    margin-bottom: 18px;
    font-size: 17px;
  }
}

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

.clients__list li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  min-width: 5px;
  margin-right: 27px;
  border: 2px solid #f26522;
  border-radius: 1px;
  transform: rotate(-45deg);
}

.clients__info {
  font-size: 20px;
  width: 100%;
  line-height: 24px;
  background: #ffffff;
  box-shadow: 0px 30px 70px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 55px 50px;
  transition: 1000ms;
  opacity: 0;
}

.clients__info.element-show {
  opacity: 1;
}

@media only screen and (max-width: 1260px) {
  .clients__info {
    padding: 35px;
  }
}

@media only screen and (max-width: 767px) {
  .clients__info {
    font-size: 16px;
    line-height: 19px;
  }
}

.clients__info p {
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .clients__info p {
    margin-bottom: 30px;
  }
}

.clients__info p:last-child {
  margin-bottom: 0;
}

.clients__info p span {
  font-weight: 500;
}

.profit {
  padding: 80px 0;
  position: relative;
}

@media only screen and (max-width: 991px) {
  .profit {
    padding: 60px 0;
  }
}

@media only screen and (max-width: 767px) {
  .profit {
    padding: 38px 0 44px 0;
    background: #fff;
  }
}

.profit::before {
  content: "";
  display: block;
  width: 325px;
  height: 325px;
  background: rgba(252, 224, 211, 0.2);
  border-radius: 50px;
  transform: rotate(-30deg);
  position: absolute;
  left: -222px;
  top: 225px;
}

@media only screen and (max-width: 1260px) {
  .profit::before {
    display: none;
  }
}

.profit::after {
  content: "";
  display: block;
  width: 500px;
  height: 500px;
  background: rgba(252, 224, 211, 0.2);
  border-radius: 50px;
  transform: rotate(-30deg);
  position: absolute;
  right: -400px;
  bottom: 100px;
}

@media only screen and (max-width: 1260px) {
  .profit::after {
    display: none;
  }
}

.profit .container {
  position: relative;
  z-index: 5;
}

.profit__title {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 40px;
}

@media only screen and (max-width: 991px) {
  .profit__title {
    font-size: 32px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .profit__title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

.profit__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 40px;
  column-gap: 40px;
  row-gap: 30px;
}

@media only screen and (max-width: 1260px) {
  .profit__items {
    -moz-column-gap: 30px;
    column-gap: 30px;
  }
}

@media only screen and (max-width: 991px) {
  .profit__items {
    -moz-column-gap: 20px;
    column-gap: 20px;
    row-gap: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .profit__items {
    grid-template-columns: 1fr;
  }
}

.profit__start {
  font-size: 24px;
  line-height: 31px;
  background: #ffffff;
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 0 60px;
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 1260px) {
  .profit__start {
    padding: 0 30px;
    font-size: 20px;
    line-height: 26px;
  }
}

@media only screen and (max-width: 991px) {
  .profit__start {
    border-radius: 10px;
    font-size: 18px;
    line-height: 23px;
    padding: 30px 20px;
  }
}

.profit__item {
  min-height: 200px;
  padding: 46px 58px;
  background: #f9f9f9;
  border-radius: 20px;
  transition: 300ms;
}

@media only screen and (max-width: 991px) {
  .profit__item {
    border-radius: 10px;
  }
}

@media only screen and (max-width: 767px) {
  .profit__item {
    min-height: 150px;
    padding: 20px 20px 30px 20px;
  }
}

.profit__item:hover {
  background: #f26522;
}

.profit__item:hover .profit__text {
  color: #fff;
}

.profit__item:hover .profit__image path {
  fill: #fff;
}

.profit__image {
  display: flex;
  align-items: center;
  margin-bottom: 22px;
  width: 60px;
}

.profit__image svg {
  width: 100%;
  height: 100%;
}

.profit__image svg path {
  transition: 300ms;
}

.profit__text {
  font-size: 22px;
  transition: 300ms;
}

@media only screen and (max-width: 1260px) {
  .profit__text {
    font-size: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .profit__text {
    font-size: 18px;
  }
}

.form {
  background: url(../images/form-bg.png) no-repeat;
  background-size: cover;
  background-position: center center;
  color: #fff;
  padding: 62px 0 55px 0;
}

@media only screen and (max-width: 991px) {
  .form {
    padding: 45px 0;
  }
}

.form__title {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 28px;
}

@media only screen and (max-width: 1260px) {
  .form__title {
    font-size: 32px;
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 991px) {
  .form__title {
    font-size: 28px;
  }
}

@media only screen and (max-width: 767px) {
  .form__title {
    font-size: 22px;
    margin-bottom: 24px;
  }
}

.form__items {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

@media only screen and (max-width: 991px) {
  .form__items {
    display: block;
    margin-bottom: 17px;
  }
}

.form__items input {
  width: 300px;
  height: 60px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  padding: 0 30px;
  font-size: 17px;
  color: #fff;
  margin-right: 40px;
}

@media only screen and (max-width: 1260px) {
  .form__items input {
    margin-right: 20px;
    width: 100%;
  }
}

@media only screen and (max-width: 991px) {
  .form__items input {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.form__items input::-moz-placeholder {
  color: #fff;
}

.form__items input::-ms-input-placeholder {
  color: #fff;
}

.form__items input::placeholder {
  color: #fff;
}

.form__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 300ms;
  border: 0;
  width: 340px;
  height: 60px;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 5px;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
}

@media only screen and (max-width: 1260px) {
  .form__btn {
    width: 100%;
  }
}

.form__btn:hover {
  background: none;
  color: #fff;
}

.form__end {
  font-size: 16px;
}

@media only screen and (max-width: 991px) {
  .form__end {
    font-size: 14px;
  }
}

.service {
  background: rgba(242, 101, 34, 0.06);
  padding: 70px 0 107px 0;
}

@media only screen and (max-width: 767px) {
  .service {
    padding: 45px 0 50px 0;
  }
}

.service__title {
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 14px;
}

@media only screen and (max-width: 1260px) {
  .service__title {
    font-size: 32px;
  }
}

@media only screen and (max-width: 767px) {
  .service__title {
    font-size: 22px;
    line-height: 27px;
  }
}

.service__subtitle {
  font-size: 28px;
  margin-bottom: 45px;
}

@media only screen and (max-width: 1260px) {
  .service__subtitle {
    font-size: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .service__subtitle {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 30px;
  }
}

.service__content {
  display: flex;
  align-items: flex-start;
}

@media only screen and (max-width: 991px) {
  .service__content {
    display: block;
  }
}

.service__right {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 520px;
  min-width: 520px;
  margin-left: 80px;
}

@media only screen and (max-width: 1260px) {
  .service__right {
    min-width: 450px;
    width: 450px;
    margin-left: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .service__right {
    min-width: auto;
    width: 100%;
    margin-left: 0;
    margin-top: 45px;
  }
  .service__right img {
    width: 100%;
    height: 100%;
  }
}

.service__item {
  margin-bottom: 50px;
  position: relative;
  transition: 1000ms;
  opacity: 0;
}

.service__item.element-show {
  opacity: 1;
}

@media only screen and (max-width: 767px) {
  .service__item {
    margin-bottom: 35px;
  }
}

.service__item::before {
  content: "";
  display: block;
  width: 1px;
  height: 30px;
  bottom: -40px;
  left: 34px;
  position: absolute;
  background: #f26522;
}

@media only screen and (max-width: 767px) {
  .service__item::before {
    height: 21px;
    bottom: -30px;
    left: 24px;
  }
}

.service__item:last-child {
  margin-bottom: 0;
}

.service__item:last-child::before {
  display: none;
}

.service__header {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .service__header {
    align-items: flex-start;
  }
}

.service__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  font-size: 38px;
  font-weight: 600;
  background: #ffffff;
  border-radius: 10px;
  color: #f26522;
  min-width: 70px;
  margin-right: 30px;
}

@media only screen and (max-width: 767px) {
  .service__number {
    min-width: 50px;
    width: 50px;
    height: 50px;
    font-size: 27px;
    margin-right: 15px;
  }
}

.service__text {
  font-size: 24px;
  line-height: 29px;
}

@media only screen and (max-width: 1260px) {
  .service__text {
    font-size: 22px;
    line-height: 26px;
  }
}

@media only screen and (max-width: 767px) {
  .service__text {
    font-size: 16px;
    line-height: 19px;
  }
}

.service__text span {
  font-weight: 500;
}

.service__drop {
  width: 530px;
  position: absolute;
  right: -600px;
  top: 20px;
}

@media only screen and (max-width: 1260px) {
  .service__drop {
    width: 420px;
    right: -500px;
    top: 0;
  }
}

@media only screen and (max-width: 991px) {
  .service__drop {
    position: static;
    margin-left: 100px;
    margin-top: 25px;
    width: auto;
  }
}

@media only screen and (max-width: 767px) {
  .service__drop {
    margin-left: 63px;
  }
}

.service__drop-inner {
  position: relative;
}

.service__drop-inner::before {
  content: "";
  display: block;
  width: 30px;
  left: -55px;
  height: 1px;
  top: 24px;
  background: #f26522;
  position: absolute;
}

@media only screen and (max-width: 991px) {
  .service__drop-inner::before {
    display: none;
  }
}

.service__drop-item {
  display: flex;
  align-items: center;
  font-size: 22px;
  line-height: 26px;
  margin-bottom: 31px;
  position: relative;
}

@media only screen and (max-width: 1260px) {
  .service__drop-item {
    font-size: 20px;
    line-height: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .service__drop-item {
    font-size: 14px;
    line-height: 17px;
  }
}

.service__drop-item::after {
  content: "";
  display: block;
  width: 1px;
  height: 30px;
  bottom: -28px;
  left: 10px;
  background: #f26522;
  position: absolute;
}

@media only screen and (max-width: 767px) {
  .service__drop-item::after {
    left: 6px;
  }
}

.service__drop-item:last-child {
  margin-bottom: 0;
}

.service__drop-item:last-child::after {
  display: none;
}

.service__drop-item::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 2px solid #f26522;
  border-radius: 5px;
  transform: rotate(-45deg);
  margin-right: 18px;
}

@media only screen and (max-width: 767px) {
  .service__drop-item::before {
    width: 12px;
    height: 12px;
    border: 1px solid #f26522;
    min-width: 12px;
  }
}

.office__inner {
  position: relative;
  padding: 80px 0 20px 0;
}

@media only screen and (max-width: 991px) {
  .office__inner {
    padding: 60px 0 20px 0;
  }
}

@media only screen and (max-width: 767px) {
  .office__inner {
    padding: 37px 0 20px 0;
  }
}

.office__image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  transition: 1000ms;
  opacity: 0;
}

@media only screen and (max-width: 991px) {
  .office__image {
    display: none;
  }
}

.office__image::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background: #d9d9d9;
  opacity: 0.5;
  top: 0;
  left: 0;
}

.office__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.office__image-first {
  left: -288px;
  top: 432px;
  width: 440px;
  transform: translateX(-50px);
}

@media only screen and (max-width: 1260px) {
  .office__image-first {
    left: -340px;
  }
}

.office__image-first.element-show {
  opacity: 1;
  transform: none;
}

.office__image-second {
  left: -140px;
  top: 605px;
  width: 440px;
  transform: translateX(-50px);
  display: none;
}

.office__image-second.element-show {
  opacity: 1;
  transform: none;
}

.office__image-third {
  right: -266px;
  z-index: 2;
  top: 450px;
  width: 440px;
  transform: translateX(50px);
}

@media only screen and (max-width: 1260px) {
  .office__image-third {
    right: -340px;
  }
}

.office__image-third.element-show {
  opacity: 1;
  transform: none;
}

.office__image-foure {
  right: -245px;
  top: 540px;
  width: 370px;
  transform: translateX(50px);
  display: none;
}

.office__image-foure.element-show {
  opacity: 1;
  transform: none;
}

.office__title {
  font-size: 38px;
  line-height: 47px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 14px;
}

@media only screen and (max-width: 991px) {
  .office__title {
    font-size: 32px;
    line-height: 42px;
  }
}

@media only screen and (max-width: 767px) {
  .office__title {
    font-size: 22px;
    line-height: 27px;
    margin-bottom: 21px;
  }
}

.office__header {
  text-align: center;
  font-size: 28px;
  margin-bottom: 60px;
}

@media only screen and (max-width: 991px) {
  .office__header {
    font-size: 24px;
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .office__header {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 33px;
  }
}

.office__items {
  max-width: 640px;
  margin: 0 auto;
}

@media only screen and (max-width: 991px) {
  .office__items {
    max-width: 100%;
  }
}

.office__item {
  width: 100%;
  border: 1px solid #f26522;
  border-radius: 10px;
  text-align: center;
  padding: 50px 40px;
  font-size: 24px;
  line-height: 29px;
  margin-bottom: 50px;
  position: relative;
}

@media only screen and (max-width: 991px) {
  .office__item {
    font-size: 20px;
    line-height: 26px;
  }
}

@media only screen and (max-width: 767px) {
  .office__item {
    font-size: 16px;
    line-height: 19px;
    padding: 20px;
    margin-bottom: 60px;
  }
}

.office__item::before {
  height: 20px;
  width: 1px;
  content: "";
  display: block;
  background: #f26522;
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translate(-50%, 0);
}

@media only screen and (max-width: 767px) {
  .office__item::before {
    bottom: -40px;
  }
}

.office__item:last-child {
  background: #f26522;
  color: #fff;
  box-shadow: 0px 20px 30px rgba(242, 101, 34, 0.2);
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  .office__item:last-child {
    padding: 30px 20px;
  }
}

.office__item:last-child::before {
  display: none;
}

.office__list {
  margin-top: 10px;
}

.office__list li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 auto 10px auto;
  width: 450px;
  max-width: 100%;
  text-align: left;
}

@media only screen and (max-width: 991px) {
  .office__list li {
    width: 263px;
  }
}

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

.office__list li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border: 2px solid #f26522;
  border-radius: 1px;
  transform: rotate(-45deg);
  margin-right: 12px;
}

.work {
  margin-bottom: 120px;
  position: relative;
}

@media only screen and (max-width: 1260px) {
  .work {
    margin-bottom: 100px;
  }
}

@media only screen and (max-width: 991px) {
  .work {
    margin-bottom: 80px;
  }
}

@media only screen and (max-width: 767px) {
  .work {
    margin-bottom: 60px;
  }
}

.work::before {
  content: "";
  display: block;
  width: 500px;
  height: 500px;
  background: rgba(252, 224, 211, 0.2);
  border-radius: 50px;
  transform: rotate(-150deg);
  position: absolute;
  top: -250px;
  left: -387px;
}

@media only screen and (max-width: 1260px) {
  .work::before {
    display: none;
  }
}

.work::after {
  content: "";
  display: block;
  width: 325px;
  height: 325px;
  background: rgba(252, 224, 211, 0.2);
  border-radius: 50px;
  transform: rotate(-150deg);
  position: absolute;
  top: -100px;
  right: -190px;
}

@media only screen and (max-width: 1260px) {
  .work::after {
    display: none;
  }
}

.work__items {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media only screen and (max-width: 991px) {
  .work__items {
    flex-direction: column-reverse;
  }
}

.work__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 500px;
  min-width: 500px;
  margin-right: 60px;
}

@media only screen and (max-width: 1260px) {
  .work__image {
    min-width: 460px;
    width: 460px;
    margin-right: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .work__image {
    min-width: auto;
    width: 100%;
    margin: 32px 0 0 0;
  }
  .work__image img {
    width: 100%;
    height: 100%;
  }
}

.work__title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 14px;
}

@media only screen and (max-width: 1260px) {
  .work__title {
    font-size: 28px;
  }
}

@media only screen and (max-width: 767px) {
  .work__title {
    font-size: 22px;
  }
}

.work__head {
  font-size: 22px;
  margin-bottom: 36px;
}

@media only screen and (max-width: 1260px) {
  .work__head {
    font-size: 20px;
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 767px) {
  .work__head {
    font-size: 18px;
  }
}

.work__info {
  font-size: 18px;
  line-height: 22px;
}

@media only screen and (max-width: 1260px) {
  .work__info {
    font-size: 16px;
    line-height: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .work__info {
    font-size: 15px;
  }
}

.work__info p {
  margin-bottom: 20px;
}

.work__info p:last-child {
  margin-bottom: 0;
}

.banner-third .banner__head {
  font-size: 38px;
  line-height: 46px;
  max-width: 650px;
  margin-bottom: 12px;
}

@media only screen and (max-width: 1260px) {
  .banner-third .banner__head {
    font-size: 32px;
    line-height: 40px;
    max-width: 550px;
  }
}

@media only screen and (max-width: 991px) {
  .banner-third .banner__head {
    font-size: 28px;
    line-height: 36px;
    max-width: 450px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-third .banner__head {
    font-size: 22px;
    line-height: 27px;
    margin-bottom: 16px;
    max-width: 100%;
  }
}

.banner-third .banner__text {
  font-size: 28px;
  line-height: 36px;
  font-weight: 400;
  max-width: 570px;
}

@media only screen and (max-width: 1260px) {
  .banner-third .banner__text {
    font-size: 26px;
    line-height: 34px;
    max-width: 450px;
  }
}

@media only screen and (max-width: 991px) {
  .banner-third .banner__text {
    font-size: 24px;
    line-height: 32px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-third .banner__text {
    font-size: 20px;
    line-height: 26px;
    max-width: 100%;
  }
}

.banner-third .banner__image {
  width: 630px;
  right: -102px;
  bottom: -65px;
  transform: translateX(50px);
}

.banner-third .banner__image.element-show {
  transform: none;
}

@media only screen and (max-width: 767px) {
  .banner-third .banner__image.element-show {
    transform: translate(-50%, 0);
  }
}

@media only screen and (max-width: 1260px) {
  .banner-third .banner__image {
    width: 550px;
    right: -80px;
  }
}

@media only screen and (max-width: 991px) {
  .banner-third .banner__image {
    width: 450px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-third .banner__image {
    width: 486px;
    right: auto;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: -325px;
  }
}

.banner-third .banner__content {
  padding: 78px 0 66px 0;
}

@media only screen and (max-width: 1260px) {
  .banner-third .banner__content {
    padding: 50px 0;
  }
}

@media only screen and (max-width: 767px) {
  .banner-third .banner__content {
    padding: 57px 0 305px 0;
  }
}

.consult {
  padding: 230px 0 105px 0;
  background: rgba(242, 100, 34, 0.06);
  margin-top: -140px;
}

@media only screen and (max-width: 1260px) {
  .consult {
    padding-top: 210px;
  }
}

@media only screen and (max-width: 767px) {
  .consult {
    padding: 80px 0 63px 0;
    margin-top: -25px;
  }
}

.consult__items {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 767px) {
  .consult__items {
    display: block;
  }
}

.consult__item {
  max-width: 350px;
  font-size: 24px;
  line-height: 29px;
  margin-right: 33px;
}

@media only screen and (max-width: 767px) {
  .consult__item {
    max-width: 100%;
    margin-bottom: 21px;
    margin-right: 0;
    text-align: center;
    font-size: 20px;
    line-height: 24px;
  }
}

.consult__btn {
  width: 300px;
  height: 70px;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
  .consult__btn {
    margin: 0 auto;
    width: 100%;
    max-width: 340px;
  }
}

.franchise {
  padding-bottom: 73px;
  background: rgba(242, 100, 34, 0.06);
}

@media only screen and (max-width: 767px) {
  .franchise {
    padding-bottom: 47px;
  }
}

.franchise__title {
  text-align: center;
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 60px;
}

@media only screen and (max-width: 1260px) {
  .franchise__title {
    font-size: 32px;
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .franchise__title {
    font-size: 22px;
    margin-bottom: 22px;
  }
}

.franchise__items {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media only screen and (max-width: 991px) {
  .franchise__items {
    display: block;
  }
}

.franchise__blocks {
  min-width: 360px;
  width: 360px;
  margin-left: 90px;
}

@media only screen and (max-width: 1260px) {
  .franchise__blocks {
    min-width: 320px;
    width: 320px;
    margin-left: 60px;
  }
}

@media only screen and (max-width: 991px) {
  .franchise__blocks {
    min-width: auto;
    width: 100%;
    margin-left: 0;
    margin-top: 45px;
  }
}

.franchise__header {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 41px;
}

@media only screen and (max-width: 1260px) {
  .franchise__header {
    font-size: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .franchise__header {
    font-size: 18px;
    margin-bottom: 33px;
  }
}

.franchise__list li {
  font-size: 22px;
  line-height: 26px;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

@media only screen and (max-width: 1260px) {
  .franchise__list li {
    font-size: 20px;
    line-height: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .franchise__list li {
    font-size: 15px;
    line-height: 18px;
    margin-bottom: 15px;
  }
}

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

.franchise__list li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  min-width: 5px;
  margin-right: 25px;
  border: 2px solid #f26522;
  border-radius: 1px;
  transform: rotate(-45deg);
}

.franchise__block {
  margin-bottom: 50px;
  transition: 1000ms;
  opacity: 0;
  transform: translateX(50px);
}

.franchise__block.element-show {
  opacity: 1;
  transform: none;
}

@media only screen and (max-width: 1260px) {
  .franchise__block {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 767px) {
  .franchise__block {
    margin-bottom: 28px;
  }
}

.franchise__block:last-child {
  margin-bottom: 0;
}

.franchise__head {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .franchise__head {
    font-size: 38px;
    margin-bottom: 26px;
  }
}

.franchise__head::before {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #f26522;
  border-radius: 5px;
  position: absolute;
  bottom: -5px;
  left: 0;
}

.franchise__text {
  font-size: 22px;
}

@media only screen and (max-width: 767px) {
  .franchise__text {
    font-size: 18px;
  }
}

.franchise__item {
  transition: 1000ms;
  opacity: 0;
}

.franchise__item.element-show {
  opacity: 1;
}

.agency {
  margin-top: -186px;
}

@media screen and (max-width: 991px) {
  .agency {
    margin-top: -60px;
  }
}

@media only screen and (max-width: 767px) {
  .agency {
    margin-top: -30px;
  }
}

.agency__content {
  max-width: 90%;
  background: #f26522;
  padding: 66px 0 76px 0;
  margin: 0 auto;
  color: #fff;
  border-radius: 40px;
  position: relative;
}

@media only screen and (max-width: 1500px) {
  .agency__content {
    max-width: 98%;
  }
}

@media only screen and (max-width: 1260px) {
  .agency__content {
    border-radius: 30px;
    padding: 50px 0;
  }
}

@media only screen and (max-width: 991px) {
  .agency__content {
    border-radius: 20px;
    padding: 45px 0 350px 0;
    max-width: none;
  }
}

@media only screen and (max-width: 767px) {
  .agency__content {
    max-width: 100%;
    padding-bottom: 300px;
  }
}

.agency__content::before {
  content: "";
  display: block;
  position: absolute;
  background: #ffffff;
  opacity: 0.8;
  -webkit-filter: blur(250px);
  filter: blur(250px);
  width: 685px;
  height: 685px;
  border-radius: 50%;
  bottom: -383px;
  left: 200px;
}

@media only screen and (max-width: 1660px) {
  .agency__content::before {
    left: 50px;
  }
}

@media only screen and (max-width: 1260px) {
  .agency__content::before {
    width: 320px;
    height: 320px;
    bottom: -140px;
  }
}

@media only screen and (max-width: 991px) {
  .agency__content::before {
    left: 50%;
    transform: translate(-50%, 0);
  }
}

@media only screen and (max-width: 767px) {
  .agency__content::before {
    bottom: -145px;
    width: 394px;
    height: 394px;
  }
}

.agency__intro {
  max-width: 660px;
  margin-right: 0;
  margin-left: auto;
}

@media only screen and (max-width: 1260px) {
  .agency__intro {
    max-width: 550px;
  }
}

@media only screen and (max-width: 991px) {
  .agency__intro {
    max-width: 100%;
  }
}

.agency__title {
  font-size: 32px;
  line-height: 39px;
  margin-bottom: 23px;
}

@media only screen and (max-width: 1260px) {
  .agency__title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .agency__title {
    font-size: 22px;
    line-height: 27px;
    margin-bottom: 24px;
  }
}

.agency__title span {
  font-weight: 600;
}

.agency__info {
  font-size: 20px;
  margin-bottom: 48px;
  line-height: 26px;
}

@media only screen and (max-width: 1260px) {
  .agency__info {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 35px;
  }
}

.agency__info p {
  margin-bottom: 20px;
}

.agency__info p:last-child {
  margin-bottom: 0;
}

.agency__info p span {
  font-size: 24px;
  line-height: 31px;
  font-weight: 500;
}

@media only screen and (max-width: 1260px) {
  .agency__info p span {
    font-size: 22px;
    line-height: 28px;
  }
}

.agency__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 60px;
  background: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 5px;
  font-size: 17px;
  font-weight: 600;
  color: #1c1c1c;
  text-transform: uppercase;
}

@media only screen and (max-width: 767px) {
  .agency__btn {
    width: 100%;
  }
}

.agency__btn:hover {
  color: #fff;
  background: none;
}

.agency__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 642px;
  position: absolute;
  left: -100px;
  bottom: -76px;
}

@media only screen and (max-width: 1260px) {
  .agency__image {
    width: 470px;
    bottom: -50px;
  }
}

@media only screen and (max-width: 991px) {
  .agency__image {
    bottom: -350px;
    right: auto;
    left: 50%;
    transform: translate(-50%, 0);
  }
}

@media only screen and (max-width: 767px) {
  .agency__image {
    width: 400px;
    bottom: -300px;
  }
}

.agency__image img {
  width: 100%;
  height: 100%;
}

.agency__inner {
  position: relative;
}

.launching {
  padding: 105px 0 90px 0;
  position: relative;
  z-index: 5;
}

@media only screen and (max-width: 1260px) {
  .launching {
    padding: 80px 0;
  }
}

@media only screen and (max-width: 767px) {
  .launching {
    padding: 45px 0 38px 0;
  }
}

.launching__title {
  text-align: center;
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 14px;
}

@media only screen and (max-width: 1260px) {
  .launching__title {
    font-size: 32px;
  }
}

@media only screen and (max-width: 767px) {
  .launching__title {
    font-size: 22px;
    line-height: 27px;
  }
}

.launching__header {
  text-align: center;
  font-size: 28px;
  margin-bottom: 56px;
}

@media only screen and (max-width: 1260px) {
  .launching__header {
    font-size: 24px;
    margin-bottom: 45px;
  }
}

@media only screen and (max-width: 767px) {
  .launching__header {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 28px;
  }
}

.launching__items {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media only screen and (max-width: 991px) {
  .launching__items {
    display: block;
  }
}

.launching__image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 560px;
  width: 560px;
  margin-left: 40px;
  transition: 1000ms;
  opacity: 0;
  transform: translateX(50px);
}

.launching__image.element-show {
  opacity: 1;
  transform: none;
}

@media only screen and (max-width: 1260px) {
  .launching__image {
    min-width: 440px;
    width: 440px;
  }
}

@media only screen and (max-width: 991px) {
  .launching__image {
    min-width: auto;
    width: 100%;
    margin: 35px 0 0 0;
  }
  .launching__image img {
    width: 100%;
    height: 100%;
  }
}

.launching__item {
  width: 100%;
  transition: 1000ms;
  opacity: 0;
}

.launching__item.element-show {
  opacity: 1;
}

.launching__head {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 38px;
}

@media only screen and (max-width: 1260px) {
  .launching__head {
    font-size: 22px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .launching__head {
    font-size: 18px;
    margin-bottom: 27px;
  }
}

.launching__list li {
  display: flex;
  align-items: center;
  font-size: 22px;
  line-height: 26px;
  margin-bottom: 25px;
}

@media only screen and (max-width: 1260px) {
  .launching__list li {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  .launching__list li {
    font-size: 16px;
    line-height: 19px;
  }
}

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

.launching__list li::before {
  content: "";
  display: block;
  width: 5px;
  border-radius: 50%;
  height: 5px;
  border: 2px solid #f26522;
  min-width: 5px;
  margin-right: 27px;
}

@media only screen and (max-width: 767px) {
  .launching__list li::before {
    margin-right: 12px;
  }
}

.form-second {
  background: url(../images/form-bg-second.png) no-repeat;
  background-size: cover;
  background-position: center center;
}

.form-second .form__title {
  margin-bottom: 14px;
}
.form-second input {
  max-width: 300px;
}

@media only screen and (max-width: 767px) {
  .form-second .form__title {
    margin-bottom: 12px;
  }
}

.form-second .form__subtitle {
  font-size: 28px;
  margin-bottom: 40px;
}

@media only screen and (max-width: 1260px) {
  .form-second .form__subtitle {
    font-size: 24px;
    margin-bottom: 34px;
  }
}

@media only screen and (max-width: 991px) {
  .form-second .form__subtitle {
    font-size: 18px;
    line-height: 24px;
  }
  .form-second input {
    max-width: unset;
  }
}
@media only screen and (max-width: 767px) {
  .form-second .form__subtitle {
    font-size: 16px;
    line-height: 19px;
  }
}

.footer {
  background: #1c1c1c;
  color: #fff;
  padding: 40px 0;
}

@media only screen and (max-width: 767px) {
  .footer {
    padding: 38px 0 48px 0;
  }
}

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

@media only screen and (max-width: 991px) {
  .footer__items {
    display: block;
    text-align: center;
  }
}

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

@media only screen and (max-width: 767px) {
  .footer__item {
    display: block;
  }
}

.footer__text {
  font-size: 18px;
  margin-right: 80px;
}

@media only screen and (max-width: 1260px) {
  .footer__text {
    margin-right: 20px;
  }
}

@media only screen and (max-width: 991px) {
  .footer__text {
    margin-right: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .footer__text {
    margin-right: 0;
  }
}

.footer__text:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 767px) {
  .footer__text:last-child {
    margin-top: 18px;
  }
}

@media only screen and (max-width: 767px) {
  .footer__text:first-child {
    margin-bottom: 28px;
  }
}

.footer__text span {
  font-size: 20px;
  font-weight: 500;
}

.footer__text a {
  text-transform: uppercase;
}

.footer__text a:hover {
  color: #f26522;
}

.footer__police {
  font-size: 18px;
}

@media only screen and (max-width: 991px) {
  .footer__police {
    margin-top: 28px;
  }
}

.footer__police:hover {
  color: #f26522;
}

.premium {
  padding: 66px 0 251px;
  background-image: url(../images/premium-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 991px) {
  .premium {
    overflow: hidden;
    padding: 45px 0 520px;
  }
}

@media screen and (max-width: 767px) {
  .premium {
    padding: 38px 0 450px;
  }
}

.premium__inner {
  position: relative;
}

.premium__intro {
  max-width: 650px;
}

@media screen and (max-width: 1260px) {
  .premium__intro {
    max-width: 480px;
  }
}

@media screen and (max-width: 991px) {
  .premium__intro {
    max-width: none;
  }
}

.premium__image {
  position: absolute;
  right: -128px;
  bottom: -200px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 644px;
}

@media screen and (max-width: 1260px) {
  .premium__image {
    width: 600px;
    bottom: -160px;
  }
}

@media screen and (max-width: 991px) {
  .premium__image {
    bottom: -580px;
    width: 450px;
    right: auto;
    left: 50%;
    transform: translate(-50%, 0);
  }
}

@media screen and (max-width: 767px) {
  .premium__image {
    left: 45%;
  }
}

.premium__title {
  font-weight: 600;
  font-size: 38px;
  line-height: 47px;
  color: #ffffff;
  margin-bottom: 41px;
}

@media screen and (max-width: 1260px) {
  .premium__title {
    font-size: 32px;
  }
}

@media screen and (max-width: 991px) {
  .premium__title {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .premium__title {
    font-size: 22px;
    line-height: 27px;
  }
}

.premium__list {
  margin-bottom: 49px;
}

@media screen and (max-width: 767px) {
  .premium__list {
    margin-bottom: 18px;
  }
}

.premium__list li {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 22px;
  line-height: 26px;
  color: #ffffff;
  margin-bottom: 25px;
}

@media screen and (max-width: 1260px) {
  .premium__list li {
    font-size: 20px;
    line-height: 24px;
  }
}

@media screen and (max-width: 991px) {
  .premium__list li {
    margin-bottom: 23px;
  }
}

@media screen and (max-width: 767px) {
  .premium__list li {
    margin-bottom: 18px;
    font-size: 17px;
  }
}

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

.premium__list li::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  min-width: 5px;
  margin-right: 25px;
  border: 2px solid #FFFFFF;
  border-radius: 1px;
  transform: rotate(-45deg);
}

.premium__btn {
  padding: 19px 78px 19px;
  font-weight: 600;
  font-size: 17px;
  line-height: 21px;
  text-transform: uppercase;
  color: #1C1C1C;
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
  border-radius: 5px;
  transition: 300ms;
}

@media screen and (max-width: 767px) {
  .premium__btn {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

.premium__btn:hover {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
}

.modal {
  width: 100%;
  max-width: 600px;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
}

@media only screen and (max-width: 767px) {
  .modal {
    padding: 40px 20px 20px 20px;
  }
}

.modal form input {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  font-size: 18px;
  color: #1c1c1c;
  border: 1px solid #f26522;
  border-radius: 8px;
  margin-bottom: 20px;
}

.modal form button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 50px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  background: #be151b;
  border: 1px solid #be151b;
  cursor: pointer;
  transition: 300ms;
  color: #fff;
  margin: 0 auto;
}

.modal form button:hover {
  color: #be151b;
}

#thanks{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 200;
  width: 300px;
  padding: 45px;
  display: none;
  text-align: center;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
}

#thanks p{
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

#thanks span{
  display: block;
  font-size: 18px;
}

body.thanks{
  position: relative;
  overflow: hidden;
}

body.thanks::before{
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 199;
}

.policy{
  padding: 110px 0 25px 0;

}
.policy h1, .policy h2, .policy h3, .policy h4, .policy h5, .policy h6{
  padding: 15px 0; 
}
.policy p, .policy ol, .policy ul{
  font-size: 18px;
  line-height: 1.5em;
  padding: 10px 0; 
}