/*animations*/
@keyframes anim-1 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes anim-2 {
  from {
    transform: translateX(15px) rotate(5deg);
  }
  to {
    transform: translateX(-15px) rotate(-5deg);
  }
}
/*-animations*/
/*fonts*/
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.title-xl {
  display: block;
  font-weight: 700;
  font-size: 56px;
  line-height: 70px;
  color: #2F2D2D;
  text-transform: uppercase;
}
.title-xl span {
  color: #3734A9;
}
.title-xl b {
  color: #22D497;
}

.title-x {
  display: block;
  font-weight: 700;
  font-size: 48px;
  line-height: 70px;
  text-transform: uppercase;
  color: #2F2D2D;
}

.title-lg {
  display: block;
  font-weight: 700;
  font-size: 40px;
  line-height: 64px;
  color: #2F2D2D;
  text-transform: uppercase;
}
.title-lg b {
  color: #22D497;
}

.title-l {
  display: block;
  font-weight: 700;
  font-size: 36px;
  line-height: 48px;
  color: #2F2D2D;
  text-transform: uppercase;
}

.title-md {
  display: block;
  font-weight: 700;
  font-size: 26px;
  line-height: 40px;
  color: #2F2D2D;
  text-transform: uppercase;
}

.title-m {
  display: block;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: #2F2D2D;
  text-transform: uppercase;
}

.text-xl {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #4B4848;
}
.text-xl b {
  font-weight: 400;
  color: #1FBB83;
}

.text-x {
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #2F2D2D;
}

.content *:last-child {
  margin-bottom: 0px;
}
.content p {
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #2F2D2D;
  margin-bottom: 30px;
}
.content p b {
  font-weight: 400;
  color: #1FBB83;
}
.content ul {
  margin-bottom: 30px;
}
.content ul li {
  position: relative;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #2F2D2D;
  padding-left: 15px;
  margin-bottom: 15px;
}
.content ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1FBB83;
}

@media (max-width: 1660px) {
  .title-xl {
    font-size: 45px;
    line-height: 60px;
  }
  .title-lg {
    font-size: 35px;
    line-height: 50px;
  }
  .title-l {
    font-size: 30px;
    line-height: 40px;
  }
  .title-md {
    font-size: 24px;
  }
}
@media (max-width: 800px) {
  .title-xl {
    font-size: 28px;
    line-height: 38px;
  }
  .title-lg {
    font-size: 24px;
    line-height: 34px;
  }
  .title-l {
    font-size: 22px;
    line-height: 32px;
  }
  .title-md {
    font-size: 18px;
    line-height: 28px;
  }
  .title-m {
    font-size: 18px;
    line-height: 28px;
  }
  .text-xl {
    font-size: 14px;
  }
  .content p {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .content ul {
    margin-bottom: 15px;
  }
  .content ul li {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .content ul li:before {
    top: 9px;
  }
}
/*-fonts*/
/*options*/
*, ::after, ::before {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: normal;
  margin: 0px;
  padding: 0px;
  overflow-x: hidden;
}

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

body::-webkit-scrollbar-thumb {
  background: #22D497;
  border-radius: 5px;
}

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

p {
  width: 100%;
  margin: 0px;
}

h1, h2, h3, h4, h5 {
  width: 100%;
  margin: 0px;
}

img {
  max-width: 100%;
}

ul, ol {
  padding: 0px;
  margin: 0px;
}

li {
  list-style-type: none;
}

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

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

select {
  opacity: 1;
  border-radius: 0;
  font-family: "Montserrat", sans-serif;
}
select:hover, select:focus {
  outline: none;
  text-decoration: none;
}

textarea {
  font-family: "Montserrat", sans-serif;
  resize: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 1;
  resize: none;
  border-radius: 0;
}
textarea::-webkit-input-placeholder {
  color: #98999E;
}
textarea::-moz-placeholder {
  color: #98999E;
}
textarea:-ms-input-placeholder {
  color: #98999E;
}
textarea:-moz-placeholder {
  color: #98999E;
}
textarea:hover, textarea:focus {
  outline: none;
  text-decoration: none;
}

input {
  font-family: "Montserrat", sans-serif;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  opacity: 1;
  border-radius: 0;
}
input::-webkit-input-placeholder {
  color: #98999E;
}
input::-moz-placeholder {
  color: #98999E;
}
input:-ms-input-placeholder {
  color: #98999E;
}
input:-moz-placeholder {
  color: #98999E;
}
input:hover, input:focus {
  outline: none;
  text-decoration: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

button {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0px;
}
button:hover, button:focus {
  outline: none;
  text-decoration: none;
}

html,
body {
  height: 100%;
}

.container {
  height: 100%;
  width: 100%;
  max-width: 1630px;
  padding: 0 15px;
  margin: 0 auto;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
}

main {
  flex: 1 0 auto;
}

footer {
  flex: 0 0 auto;
}

.section {
  padding: 80px 0px;
}

.section-wrap {
  position: relative;
}

.section-label {
  display: block;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  text-transform: capitalize;
  color: #1FBB83;
}

.section-bg {
  position: absolute;
  z-index: -1;
  left: 500px;
  top: 70px;
  transform: translateY(-50%);
  display: block;
  font-weight: 700;
  font-size: 260px;
  line-height: 100%;
  white-space: nowrap;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 214, 217, 0.6);
}

.section-title {
  max-width: 900px;
  margin-bottom: 70px;
}

.section-descr {
  max-width: 500px;
  margin-bottom: 70px;
  margin-top: -20px;
}

@media (max-width: 1660px) {
  .container {
    max-width: 1200px;
  }
  .section-bg {
    font-size: 200px;
  }
  .section-label {
    font-size: 18px;
  }
  .section-title {
    max-width: 800px;
  }
}
@media (max-width: 1200px) {
  .container {
    max-width: 800px;
  }
  .section {
    padding: 70px 0px;
  }
  .section-title {
    margin-bottom: 50px;
  }
  .section-descr {
    margin-bottom: 50px;
    margin-top: -30px;
  }
  .section-bg {
    top: -20px;
    font-size: 70px;
  }
}
@media (max-width: 800px) {
  body {
    overflow: auto;
  }
  .wrapper {
    overflow: visible;
  }
  .container {
    max-width: 500px;
  }
  .section {
    padding: 50px 0px;
  }
  .section-wrap {
    padding-right: 15px;
  }
  .section-wrap::after {
    content: "";
    position: absolute;
    z-index: 1;
    right: -15px;
    top: 0;
    width: 25px;
    height: 100%;
    background: #FFFFFF;
  }
  .section-title {
    margin-top: -160px;
    margin-bottom: 25px;
  }
  .section-descr {
    margin-bottom: 25px;
    margin-top: -15px;
  }
  .section-label {
    font-size: 16px;
  }
  .section-bg {
    position: sticky;
    z-index: 2;
    top: 65px;
    left: auto;
    right: 0;
    width: 10px;
    height: 180px;
    margin-left: auto;
    transform: translate(0);
    font-size: 18px;
    letter-spacing: -2px;
  }
  .section-bg span {
    position: absolute;
    z-index: 2;
    right: -25px;
    writing-mode: vertical-rl;
    text-orientation: upright;
  }
  .section-wrap.two {
    padding-right: 0px;
    padding-left: 15px;
  }
  .section-wrap.two::after {
    right: auto;
    left: -15px;
  }
  .section-wrap.two .section-bg {
    right: auto;
    left: 0;
    width: 0px;
    margin-left: 0;
  }
  .section-wrap.two .section-bg span {
    left: -25px;
    right: auto;
  }
}
/*-options*/
/*buttons*/
.btn-one {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: fit-content;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  padding: 0px 48px;
  transition: 0.3s;
}
.btn-one::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  background: #3734A9;
  transition: 0.3s;
}
.btn-one::after {
  content: "";
  position: absolute;
  z-index: -2;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  background: #3734A9;
  transition: 0.3s;
}

.btn-two {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: fit-content;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  padding: 0px 48px;
  transition: 0.3s;
}
.btn-two::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  background: #22D497;
  transition: 0.3s;
}
.btn-two::after {
  content: "";
  position: absolute;
  z-index: -2;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  background: #22D497;
  transition: 0.3s;
}

@media (max-width: 800px) {
  .btn-one {
    width: 100%;
  }
  .btn-two {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .btn-one:hover {
    transform: scale(1.05);
  }
  .btn-one:hover:before {
    background: #22D497;
  }
  .btn-one:hover:after {
    transform: translate(5px, 5px);
  }
  .btn-two:hover {
    transform: scale(1.05);
  }
  .btn-two:hover:before {
    background: #3734A9;
  }
  .btn-two:hover:after {
    transform: translate(5px, 5px);
  }
}
/*-buttons*/
/*slider*/
.slider-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0px 20px 49px -10px rgba(0, 0, 0, 0.19);
  cursor: pointer;
  transition: 0.1s;
}
.slider-arrow svg {
  stroke: #2F2D2D;
  transition: 0.1s;
}

.slider-arrow.swiper-button-disabled {
  display: none;
}

@media (max-width: 800px) {
  .slider-arrow {
    width: 50px;
    height: 50px;
  }
  .slider-arrow svg {
    width: 20px;
    height: auto;
  }
}
@media (min-width: 1200px) {
  .slider-arrow:hover {
    background: #22D497;
  }
  .slider-arrow:hover svg {
    stroke: #FFFFFF;
  }
}
/*-slider*/
/*form*/
.form-input {
  position: relative;
  display: block;
  width: 100%;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #2F2D2D;
  margin-bottom: 5px;
}

.form-input_point {
  width: 100%;
  height: 32px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #2F2D2D;
  border: none;
  background: transparent;
  border-bottom: 1px solid #2F2D2D;
}

.form-input_point.form-error {
  color: #E13E3E;
  border-bottom: 1px solid #E13E3E;
}

.form-input_point:focus {
  border-bottom: 1px solid #1FBB83;
}

.form-input_point:focus.form-error {
  color: #E13E3E;
  border-bottom: 1px solid #E13E3E;
}

.form-textarea {
  position: relative;
  display: block;
  width: 100%;
}

.form-textarea_point {
  width: 100%;
  height: 58px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #2F2D2D;
  border: none;
  background: transparent;
  border-bottom: 1px solid #2F2D2D;
}

.form-textarea_point:focus {
  border-bottom: 1px solid #1FBB83;
}

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

.form-select_point {
  width: 100%;
  height: 32px;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #2F2D2D;
  border: none;
  background: transparent;
  border-bottom: 1px solid #2F2D2D;
}

.form-select_point.form-error {
  color: #E13E3E;
  border-bottom: 1px solid #E13E3E;
}

.form-select_point:focus {
  border-bottom: 1px solid #1FBB83;
}

.form-select_point:focus.form-error {
  color: #E13E3E;
  border-bottom: 1px solid #E13E3E;
}

span.form-error {
  position: absolute;
  left: 0;
  bottom: -18px;
  font-size: 12px;
  color: #E13E3E;
}

@media (max-width: 800px) {
  .form-label {
    font-size: 14px;
  }
  .form-input_point {
    font-size: 14px;
    line-height: 24px;
  }
  .form-textarea_point {
    font-size: 14px;
    line-height: 24px;
  }
}
/*-form*/
/*header*/
.header {
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  background: #FFFFFF;
  transition: 0.5s;
}

.header.active {
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.05);
}

.header.fixed {
  transform: translateY(-100%);
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0px;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: fit-content;
  margin-right: 55px;
}
.header-logo img {
  width: 150px;
  height: 30px;
}

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

.header-menu {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-menu li {
  margin-right: 50px;
}
.header-menu li:last-child {
  margin-right: 0px;
}
.header-menu a {
  display: block;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #2F2D2D;
  transition: 0.1s;
}

.header-contact {
  display: flex;
  align-items: center;
}

.header-phone {
  display: flex;
  align-items: center;
  height: 32px;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #FFFFFF;
  background: #3734A9;
  border-radius: 40px;
  letter-spacing: 1px;
  padding: 0px 12px;
  margin-right: 25px;
  transition: 0.1s;
}
.header-phone svg {
  margin-right: 6px;
}

.header-link {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 25px;
}
.header-link:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 50%;
  background: #FFFFFF;
  transition: 0.3s;
}
.header-link:after {
  content: "";
  position: absolute;
  z-index: -2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(166.26deg, #698DE8 2.31%, #61C4B5 42.12%, #6CE898 90.18%);
}
.header-link svg {
  fill: #2F2D2D;
  transition: 0.3s;
}

.header-lang {
  position: relative;
}

.header-lang_point {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  width: 66px;
  background: #F7F7F7;
  border-radius: 40px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #2F2D2D;
  cursor: pointer;
  transition: 0.1s;
}
.header-lang_point svg {
  transition: 0.2s;
  margin-left: 5px;
}

.header-lang_list {
  position: absolute;
  left: 0;
  top: 100%;
  display: none;
  width: 100%;
  background: #F7F7F7;
  border-radius: 0px 0px 10px 10px;
}
.header-lang_list a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2F2D2D;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  padding: 5px 0px;
  transition: 0.1s;
}

.header-burger {
  display: none;
}

@media (max-width: 1660px) {
  .header-logo {
    margin-right: 20px;
  }
  .header-menu li {
    margin: 0px 10px;
  }
  .header-phone {
    margin-right: 15px;
  }
  .header-link {
    margin-right: 15px;
  }
}
@media (max-width: 1200px) {
  .header-wrap {
    position: relative;
    padding: 15px 0px;
  }
  .header-logo {
    margin: 0px;
  }
  .header-nav {
    position: absolute;
    right: 0;
    top: 100%;
    display: none;
  }
  .header-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 15px;
    border-radius: 10px;
    background: #FFFFFF;
    border: 1px solid #22D497;
  }
  .header-menu li {
    margin-bottom: 15px;
    margin-right: 0px;
  }
  .header-menu li:last-child {
    margin-bottom: 0px;
  }
  .header-info {
    width: fit-content;
  }
  .header-lang.active .header-lang_point {
    border-radius: 10px 10px 0px 0px;
  }
  .header-lang.active .header-lang_point svg {
    transform: rotate(-180deg);
  }
  .header-lang.active .header-lang_list {
    display: block;
  }
  .header-burger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    width: 24px;
    height: 24px;
    margin-left: 30px;
  }
  .header-burger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #22D497;
    border-radius: 2px;
    transition: 0.2s;
  }
  .header-burger span:nth-child(3) {
    width: 50%;
  }
  .header-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 9px);
  }
  .header-burger.active span:nth-child(2) {
    opacity: 0;
  }
  .header-burger.active span:nth-child(3) {
    width: 100%;
    transform: rotate(-45deg) translate(6px, -9px);
  }
}
@media (max-width: 800px) {
  .header-logo img {
    width: 120px;
    height: 24px;
  }
  .header-phone span {
    display: none;
  }
  .header-phone svg {
    margin: 0px;
  }
  .header-phone {
    margin-right: 15px;
  }
  .header-burger {
    margin-left: 15px;
  }
}
@media (max-width: 500px) {
  .header-logo img {
    width: 24vw;
    height: 4.8vw;
  }
}
@media (min-width: 1200px) {
  .header-menu a:hover {
    color: #1FBB83;
  }
  .header-phone:hover {
    background: #1FBB83;
  }
  .header-lang:hover .header-lang_list {
    display: block;
  }
  .header-lang:hover .header-lang_point {
    border-radius: 10px 10px 0px 0px;
  }
  .header-lang:hover .header-lang_point svg {
    transform: rotate(-180deg);
  }
  .header-lang_list a:hover {
    color: #1FBB83;
  }
  .header-link:hover:before {
    transform: translate(-50%, -50%) scale(0);
  }
  .header-link:hover svg {
    fill: #FFFFFF;
  }
}
/*-header*/
/*footer*/
.footer-top {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #E5E5E5;
  padding: 80px 0px 25px 0px;
}

.footer-info {
  width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.footer-logo img {
  width: 120px;
  height: 24px;
}

.footer-descr {
  margin-top: 25px;
}

.footer-boxs {
  display: flex;
  justify-content: space-between;
  width: 1000px;
  margin-top: 49px;
}

.footer-label {
  display: block;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #2F2D2D;
  margin-bottom: 25px;
}

.footer-menu li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.footer-menu li:last-child {
  margin-bottom: 0px;
}
.footer-menu svg {
  margin-left: 16px;
}
.footer-menu a {
  display: block;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: #2F2D2D;
  transition: 0.1s;
}

.footer-socials {
  display: flex;
  align-items: center;
}
.footer-socials li {
  margin-right: 15px;
}
.footer-socials li:last-child {
  margin-right: 0px;
}
.footer-socials a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.footer-socials a:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 50%;
  background: #FFFFFF;
  transition: 0.3s;
}
.footer-socials a:after {
  content: "";
  position: absolute;
  z-index: -2;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(166.26deg, #698DE8 2.31%, #61C4B5 42.12%, #6CE898 90.18%);
}
.footer-socials svg {
  fill: #2F2D2D;
  transition: 0.3s;
}

.footer-bottom {
  padding-bottom: 25px;
}

.footer-text {
  display: block;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #2F2D2D;
  text-transform: uppercase;
}

@media (max-width: 1660px) {
  .footer-boxs {
    width: 800px;
  }
}
@media (max-width: 1200px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 70px 0px 25px 0px;
  }
  .footer-boxs {
    order: 1;
    width: 100%;
    margin-top: 0px;
    margin-bottom: 50px;
  }
  .footer-info {
    order: 2;
  }
}
@media (max-width: 800px) {
  .footer-top {
    padding: 50px 0px 25px 0px;
  }
  .footer-boxs {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 30px;
  }
  .footer-box {
    margin-bottom: 30px;
  }
  .footer-box:last-child {
    margin-bottom: 0px;
  }
  .footer-label {
    margin-bottom: 15px;
  }
  .footer-descr {
    margin-top: 15px;
  }
  .footer-menu a {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  .footer-menu a:hover {
    color: #1FBB83;
  }
  .footer-socials a:hover:before {
    transform: translate(-50%, -50%) scale(0);
  }
  .footer-socials a:hover svg {
    fill: #FFFFFF;
  }
}
/*-footer*/
/*start*/
.start-slider {
  height: 100vh;
  padding-top: 70px;
  overflow: visible;
}

.start-slide {
  position: relative;
  display: flex;
  align-items: center;
  opacity: 0 !important;
}

.start-slide.swiper-slide-active {
  opacity: 1 !important;
}

.start-slide_text {
  width: 100%;
}

.start-title {
  max-width: 690px;
}

.start-descr {
  max-width: 470px;
  margin-top: 25px;
}

.start-btn {
  margin-top: 50px;
}

.start-slide_img {
  position: absolute;
  right: 150px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 500px;
  height: 700px;
}
.start-slide_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5000px;
  overflow: hidden;
}

.start-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
}

.start-prev {
  left: -50px;
}

.start-next {
  right: -50px;
}

@media (max-width: 1660px) {
  .start-title {
    max-width: 560px;
  }
  .start-slide_img {
    width: 390px;
    height: 550px;
    right: 0;
  }
  .start-prev {
    left: -30px;
  }
  .start-next {
    right: -30px;
  }
}
@media (max-width: 1200px) {
  .start {
    margin-bottom: 70px;
  }
  .start-slider {
    height: auto;
  }
  .start-slide {
    display: block;
  }
  .start-slide_text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .start-title {
    max-width: 100%;
    text-align: center;
  }
  .start-descr {
    text-align: center;
  }
  .start-slide_img {
    position: relative;
    transform: translate(0);
    right: auto;
    top: auto;
    margin-top: 30px;
  }
}
@media (max-width: 800px) {
  .start {
    margin-bottom: 30px;
  }
  .start-slide_img {
    width: 290px;
    height: 290px;
    margin-top: 15px;
  }
  .start-slide_img img {
    border-radius: 50%;
  }
  .start-descr {
    margin-top: 15px;
  }
  .start-btn {
    margin-top: 25px;
  }
  .start-prev {
    left: -10px;
  }
  .start-next {
    right: -10px;
  }
}
@media (min-width: 1200px) {
  .start-slide {
    height: 100% !important;
  }
}
/*-start*/
/*info*/
.info-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.info-content {
  width: 520px;
}

.info-request {
  position: relative;
  width: 800px;
  padding: 70px;
  border-radius: 16px;
}
.info-request::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: linear-gradient(166.26deg, #698DE8 2.31%, #61C4B5 42.12%, #6CE898 90.18%);
}
.info-request::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border-radius: 16px;
  background: #FBFBFB;
}

.info-descr {
  margin-top: 10px;
}

.info-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  margin-top: 25px;
}

.info-textarea {
  grid-column-start: 1;
  grid-column-end: 3;
}

.info-submit {
  width: 100%;
  grid-column-start: 1;
  grid-column-end: 3;
}

@media (max-width: 1660px) {
  .info-request {
    width: 600px;
    padding: 50px;
  }
}
@media (max-width: 1200px) {
  .info-wrap {
    display: block;
  }
  .info-content {
    width: 100%;
  }
  .info-request {
    width: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 800px) {
  .info-request {
    padding: 20px;
    margin-top: 25px;
    display: none;  
  }
  .info-form {
    grid-template-columns: 1fr;
  }
  .info-textarea {
    grid-column-end: 2;
  }
  .info-submit {
    grid-column-end: 2;
  }}
/*-info*/
/*benefits*/
.benefits-slider {
  overflow: visible;
}

.benefits-slide {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 450px;
  height: 400px;
  padding: 130px 30px 30px 30px;
  border-radius: 16px;
  transition: 0.3s;
}

.benefits-slide_one {
  background: #A8B8FF;
}

.benefits-slide_two {
  background: #92CEFD;
}

.benefits-slide_three {
  background: #6FE7CB;
}

.benefits-slide_four {
  background: #83EAAC;
}

.benefits-slide_icon {
  position: absolute;
  left: 30px;
  top: 30px;
}

.benefits-arrow {
  position: absolute;
  z-index: 2;
  bottom: -60px;
}

.benefits-prev {
  left: 0;
}

.benefits-next {
  right: 0;
}

@media (max-width: 800px) {
  .benefits-slider {
    overflow: hidden;
    width: calc(100% + 15px);
  }
  .benefits-slide {
    padding: 100px 20px 20px 20px;
    width: 400px;
    margin-right: 15px;
  }
  .benefits-slide_icon {
    left: 20px;
    top: 20px;
  }
  .benefits-arrow {
    display: none;
  }
}
@media (max-width: 500px) {
  .benefits-slide {
    width: 275px;
  }
}
@media (min-width: 1200px) {
  .benefits-slide:hover {
    transform: scale(1.05);
  }
}
/*-benefits*/
/*fuel*/
.fuel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 590px;
}

.fuel-img {
  position: absolute;
  left: -700px;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1500px;
}
.fuel-img img {
  width: 100%;
  height: 100%;
}

.fuel-content {
  width: 520px;
}

.fuel-two .fuel-img {
  left: -100px;
  width: 1000px;
}

@media (max-width: 1660px) {
  .fuel-img {
    left: -900px;
  }
  .fuel-two .fuel-img {
    left: -400px;
  }
}
@media (max-width: 1200px) {
  .fuel-wrap {
    min-height: 100%;
    padding-top: 430px;
  }
  .fuel-content {
    width: 100%;
  }
  .fuel-img {
    left: auto;
    right: 0;
    width: 1017px;
  }
  .fuel-two .fuel-img {
    left: auto;
    right: 0;
    width: 700px;
  }
}
@media (max-width: 800px) {
  .fuel-btn {
    margin-top: 25px;
  }
  .fuel-wrap {
    padding-top: 250px;
  }
  .fuel-img {
    width: 636px;
  }
  .fuel-two .fuel-img {
    width: 400px;
  }
}
/*-fuel*/
/*chain*/
.chain-content {
  width: 520px;
}

.chain-wrap {
  display: flex;
  align-items: center;
  height: 480px;
}

.chain-img {
  position: absolute;
  right: -200px;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 480px;
  width: 1000px;
  border-radius: 300px 0px 0px 300px;
  overflow: hidden;
}
.chain-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1660px) {
  .chain-img {
    right: -400px;
  }
}
@media (max-width: 1200px) {
  .chain-wrap {
    position: relative;
    padding-top: 430px;
    height: 100%;
  }
  .chain-content {
    width: 100%;
  }
  .chain-img {
    bottom: auto;
    top: 0;
    right: auto;
    left: 0;
    height: 400px;
    width: 1000px;
  }
}
@media (max-width: 800px) {
  .chain-wrap {
    padding-top: 275px;
  }
  .chain-img {
    width: 100%;
    height: 250px;
  }
}
@media (max-width: 500px) {
  .chain-img {
    width: calc(100% + 15px);
    right: -15px;
  }
  .chain-img img {
    border-radius: 300px 0px 0px 300px;
  }
}
/*-chain*/
/*partners*/
.partners-wrap {
  position: relative;
  padding: 120px 100px;
  border-radius: 16px;
}
.partners-wrap::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: linear-gradient(166.26deg, #698DE8 2.31%, #61C4B5 42.12%, #6CE898 90.18%);
}
.partners-wrap::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border-radius: 16px;
  background: #FBFBFB;
}

.partners-title {
  width: 900px;
  margin: auto;
  text-align: center;
}

.partners-slider {
  margin-top: 60px;
}
.partners-slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

.partners-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}
.partners-slide img {
  width: 100%;
}

@media (max-width: 1660px) {
  .partners-wrap {
    padding: 100px 70px;
  }
}
@media (max-width: 1200px) {
  .partners-wrap {
    padding: 50px;
  }
  .partners-title {
    width: 100%;
  }
  .partners-slider {
    margin-top: 30px;
  }
}
@media (max-width: 800px) {
  .partners-wrap {
    padding: 20px;
  }
}
/*-partners*/
/*energy*/
.energy-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.energy-boxs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 90px;
  width: 930px;
}

.energy-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 450px;
  height: 650px;
}
.energy-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5000px;
  overflow: hidden;
}

@media (max-width: 1660px) {
  .energy-boxs {
    grid-column-gap: 50px;
    width: 700px;
  }
  .energy-img {
    width: 400px;
    height: 550px;
  }
}
@media (max-width: 1200px) {
  .energy-wrap {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .energy-img {
    order: 1;
  }
  .energy-boxs {
    order: 2;
    width: 100%;
    margin-top: 25px;
  }
}
@media (max-width: 800px) {
  .energy-img {
    width: 290px;
    height: 400px;
  }
  .energy-boxs {
    grid-template-columns: 1fr;
    grid-row-gap: 15px;
  }
  .energy-btn {
    margin-top: 25px;
  }
}
/*-energy*/
/*request*/
.request-wrap {
  position: relative;
  padding: 100px;
  border-radius: 24px;
  overflow: hidden;
}

.request-bg {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(166.26deg, #698DE8 2.31%, #61C4B5 42.12%, #6CE898 90.18%);
  border-radius: 24px;
}

.request-content {
  display: flex;
  justify-content: space-between;
  background: #FBFBFB;
  border-radius: 12px;
  padding: 70px;
}

.request-img {
  width: 80px;
}

.request-title {
  margin-top: 80px;
}

.request-descr {
  max-width: 450px;
  margin-top: 15px;
}

.request-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-row-gap: 25px;
  grid-column-gap: 25px;
  width: 680px;
}

.request-input:nth-child(6) {
  grid-column-start: 1;
  grid-column-end: 4;
}

.request-submit {
  max-width: 100%;
  width: 100%;
  grid-column-start: 1;
  grid-column-end: 4;
}

@media (max-width: 1660px) {
  .request-wrap {
    padding: 40px;
  }
  .request-content {
    padding: 30px;
  }
  .request-descr {
    max-width: 300px;
  }
}
@media (max-width: 1200px) {
  .request-wrap {
    padding: 50px;
  }
  .request-content {
    display: block;
    padding: 30px;
  }
  .request-title {
    margin-top: 30px;
  }
  .request-form {
    width: 100%;
    margin-top: 30px;
    grid-template-columns: 1fr 1fr;
  }
  .request-input:nth-child(6) {
    grid-column-end: 3;
  }
  .request-submit {
    grid-column-end: 3;
  }
}
@media (max-width: 800px) {
  .request-wrap {
    padding: 20px;
  }
  .request-content {
    padding: 20px;
  }
  .request-form {
    grid-template-columns: 1fr;
  }
  .request-submit {
    grid-column-end: 2;
  }
  .request-input:nth-child(6) {
    grid-column-end: 2;
  }
}
/*-request*/
/*delivery*/
.delivery-map {
  display: flex;
  justify-content: center;
  align-items: center;
}
.delivery-map path {
  transition: 0.2s;
}

.delivery-map_vector {
  fill: #F4F4F4;
}

.delivery-map_text {
  opacity: 0;
  transition: 0.1s;
}

.delivery-map_hide {
  pointer-events: none;
}

.delivery-img {
  display: none;
}

.delivery-scroll {
  display: flex;
  justify-content: center;
}

.delivery-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 100px;
  max-width: 1300px;
  padding-top: 100px;
}

.delivery-list_point {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.delivery-list_point *:last-child {
  margin-bottom: 0px;
}

.delivery-list_title {
  text-transform: none;
}

.delivery-list_descr {
  margin-bottom: 20px;
}

.delivery-list_link {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #1FBB83;
  margin-bottom: 15px;
  transition: 0.1s;
}

.delivery-list_sub {
  display: block;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  margin-bottom: 10px;
}

@media (max-width: 1200px) {
  .delivery-map {
    display: none;
  }
  .delivery-img {
    display: block;
    width: 100%;
  }
  .delivery-list {
    grid-column-gap: 30px;
  }
}
@media (max-width: 800px) {
  .delivery-list {
    grid-template-columns: 1fr;
    grid-row-gap: 25px;
    padding-top: 70px;
  }
  .delivery-list_point {
    align-items: flex-start;
    text-align: left;
  }
  .delivery-list_link {
    font-size: 14px;
    line-height: 24px;
    margin-top: 10px;
  }
}
@media (max-width: 500px) {
  .delivery-img {
    height: 51.2vw;
  }
}
@media (min-width: 1200px) {
  .delivery-map_point:hover .delivery-map_vector {
    fill: #22D497;
  }
  .delivery-map_point:hover .delivery-map_text {
    opacity: 1;
    position: relative;
    z-index: 2;
  }
  .delivery-list_link:hover {
    color: #3734A9;
  }
}
/*-delivery*/
/*first*/
.first {
  background: #FBFBFB;
  margin-bottom: 80px;
}

.first-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 100vh;
  padding-top: 70px;
}

.first-title {
  max-width: 690px;
}

.first-content {
  max-width: 470px;
  margin-top: 25px;
}

.first-buttons {
  display: flex;
  align-items: center;
  margin-top: 50px;
}
.first-buttons .first-btn {
  margin-right: 30px;
}

.first-img {
  position: absolute;
  top: 50%;
  right: -400px;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1200px;
}
.first-img img {
  width: 100%;
  height: 100%;
}

.first.two {
  background: none;
  overflow: hidden;
}
.first.two .first-title {
  color: #FFFFFF;
}
.first.two .content p {
  color: #FFFFFF;
}

.first-bgr {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #2F2D2D;
}
.first-bgr video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.first-bgr::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

@media (max-width: 1660px) {
  .first-img {
    right: -600px;
  }
}
@media (max-width: 1200px) {
  .first {
    margin-bottom: 70px;
    padding-bottom: 70px;
  }
  .first-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
  }
  .first-img {
    position: static;
    width: 100%;
    height: auto;
    transform: translateX(0);
    order: 1;
    margin-bottom: 30px;
  }
  .first-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
    order: 2;
  }
  .first-buttons {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
    max-width: 100%;
  }
  .first-buttons .first-btn {
    margin: 0px;
  }
}
@media (max-width: 800px) {
  .first {
    padding-bottom: 50px;
    margin-bottom: 0px;
  }
  .first.two {
    padding-bottom: 0px;
  }
  .first-content {
    margin-top: 15px;
  }
  .first-img {
    margin-bottom: 15px;
  }
  .first-buttons {
    grid-row-gap: 15px;
    margin-top: 25px;
  }
  .first.two {
    background: url("../img/first/first-2.jpg") left no-repeat;
  }
  .first.two .first-wrap {
    height: 100vh;
    justify-content: center;
  }
}
/*-first*/
/*plus*/
.plus-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 50px;
}

.plus-list_point {
  position: relative;
  padding: 90px 90px 200px 90px;
  border-radius: 16px;
}
.plus-list_point::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: linear-gradient(166.26deg, #698DE8 2.31%, #61C4B5 42.12%, #6CE898 90.18%);
}
.plus-list_point::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border-radius: 16px;
  background: #FBFBFB;
}

.plus-list_point:nth-child(2)::before {
  transform: rotate(-180deg);
}

.plus-list_icon {
  margin-bottom: 40px;
}

.plus-list_descr {
  margin-top: 20px;
}
.plus-list_descr b {
  font-weight: 600;
}

.plus-list_btn {
  position: absolute;
  left: 0;
  bottom: 0;
  left: 90px;
  bottom: 90px;
}

@media (max-width: 1660px) {
  .plus-list_point {
    padding: 50px 50px 150px 50px;
  }
  .plus-list_btn {
    left: 50px;
    bottom: 50px;
  }
}
@media (max-width: 1200px) {
  .plus-list {
    grid-template-columns: 1fr;
    grid-row-gap: 50px;
  }
}
@media (max-width: 800px) {
  .plus-list {
    grid-row-gap: 30px;
  }
  .plus-list_point {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  .plus-list_icon {
    margin-bottom: 20px;
  }
  .plus-list_descr {
    margin-top: 15px;
  }
  .plus-list_btn {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 25px;
  }
}
/*-plus*/
/*important*/
.import-wrap {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 590px;
}

.import-img {
  position: absolute;
  right: -700px;
  top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1500px;
}
.import-img img {
  width: 100%;
  height: 100%;
}

.import-content {
  width: 520px;
}

@media (max-width: 1660px) {
  .import-img {
    right: -1000px;
  }
}
@media (max-width: 1200px) {
  .import-wrap {
    min-height: 100%;
    padding-top: 430px;
  }
  .import-content {
    width: 100%;
  }
  .import-img {
    top: 0;
    left: auto;
    right: 0;
    width: 1017px;
  }
}
@media (max-width: 800px) {
  .import-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 0px;
  }
  .import-img {
    position: static;
    width: 100%;
    z-index: -1;
  }
  .import-content {
    order: 1;
  }
}
/*-important*/
/*contact*/
.contact-map {
  width: 100%;
  height: 700px;
  border-radius: 24px;
  border: none;
}

@media (max-width: 1660px) {
  .contact-map {
    height: 600px;
  }
}
@media (max-width: 1200px) {
  .contact-map {
    height: 500px;
  }
}
@media (max-width: 800px) {
  .contact-map {
    border-radius: 16px;
  }
}
/*-contact*/
/*azs*/
.azs {
  background: #FBFBFB;
  margin-bottom: 80px;
  overflow: hidden;
}

.azs-wrap {
  position: relative;
  display: flex;
  align-items: center;
  height: 100vh;
  padding-top: 70px;
}

.azs-title {
  max-width: 690px;
}

.azs-content {
  max-width: 470px;
  margin-top: 25px;
}

.azs-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 440px;
  margin-top: 50px;
}

.azs-box {
  position: relative;
  width: 900px;
}

.azs-img {
  position: relative;
  width: 100%;
}

.azs-info {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 500px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 15px;
  border-radius: 16px;
  padding: 20px;
}
.azs-info::before {
  content: "";
  position: absolute;
  z-index: -2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: linear-gradient(166.26deg, #698DE8 2.31%, #61C4B5 42.12%, #6CE898 90.18%);
}
.azs-info::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border-radius: 16px;
  background: #FBFBFB;
}
.azs-info li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 160px;
  font-weight: 600;
  font-size: 24px;
  line-height: 40px;
  text-transform: uppercase;
  border-radius: 12px;
  padding-left: 30px;
}
.azs-info li span {
  display: block;
  font-weight: 700;
  font-size: 32px;
  line-height: 48px;
}
.azs-info li:nth-child(1) {
  background: #BA9FF3;
}
.azs-info li:nth-child(2) {
  background: #A8B8FF;
}
.azs-info li:nth-child(3) {
  background: #92CEFD;
}
.azs-info li:nth-child(4) {
  background: #6FE7CB;
}
.azs-info li:nth-child(5) {
  background: #82EAAC;
}

.azs-mob {
  display: none;
}

@media (max-width: 1660px) {
  .azs-box {
    width: 700px;
  }
  .azs-info {
    width: 300px;
  }
  .azs-info li {
    height: 100px;
    font-size: 20px;
    padding-left: 15px;
  }
  .azs-info li span {
    font-size: 22px;
    line-height: 34px;
  }
}
@media (max-width: 1200px) {
  .azs {
    padding-bottom: 70px;
    margin-bottom: 70px;
  }
  .azs-wrap {
    height: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .azs-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .azs-buttons {
    display: none;
  }
  .azs-box {
    width: 100%;
    margin-top: 50px;
  }
  .azs-mob {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
  }
}
@media (max-width: 800px) {
  .azs {
    margin-bottom: 0px;
    padding-bottom: 50px;
  }
  .azs-info {
    width: 170px;
    padding: 10px;
    grid-column-gap: 10px;
  }
  .azs-info:after {
    width: calc(100% - 4px);
    height: calc(100% - 4px);
  }
  .azs-info li {
    height: 60px;
    font-size: 14px;
    line-height: 21px;
    padding-left: 10px;
  }
  .azs-info li span {
    font-size: 16px;
    line-height: 21px;
  }
  .azs-box {
    margin-top: 30px;
  }
}
/*-azs*/
/*thank*/
.thank {
  position: fixed;
  z-index: 20;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(29, 28, 28, 0.53);
  display: none;
}

.thank-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.thank-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 490px;
  padding: 60px 80px;
  background: #FFFFFF;
  border-radius: 16px;
  text-align: center;
}

.thank-title {
  margin-top: 25px;
}

.thank-descr {
  margin-top: 10px;
}

.thank-btn {
  margin-top: 40px;
  max-width: 100%;
  width: 100%;
}

@media (max-width: 800px) {
  .thank-wrap {
    padding: 0px 15px;
  }
  .thank-box {
    width: 100%;
    padding: 50px;
  }
  .thank-btn {
    margin-top: 25px;
  }
}
/*-thank*/
