@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Light.woff2") format("woff2"), url("../fonts/Manrope-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Bold.woff2") format("woff2"), url("../fonts/Manrope-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Rubik";
  src: url("../fonts/Rubik-Bold.woff2") format("woff2"), url("../fonts/Rubik-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Medium.woff2") format("woff2"), url("../fonts/Manrope-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Regular.woff2") format("woff2"), url("../fonts/Manrope-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a {
  cursor: pointer;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  font-family: "Rubik", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
}

h1 {
  font-size: 62px;
  line-height: 130%;
}

h2 {
  font-size: 52px;
  line-height: 130%;
}

h3 {
  font-size: 36px;
  line-height: 130%;
}
h4 {
  font-size: 32px;
  line-height: 130%;
}

h5 {
  font-size: 28px;
  line-height: 130%;
}
p, li {
  font-size: 22px;
  line-height: 145%;
}

body {
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
  background: #141414;
  color: #fff;
}

.container {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 15px;
}

body, html {
  overflow-x: hidden;
}

body::-webkit-scrollbar {
  width: 4px;
  background-color: #141414;
}

body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #4BB6A1;
}

.burger {
  display: none;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 36px;
  height: 24px;
  cursor: pointer;
  gap: 8px;
  transition: all 0.3s ease;
}
.burger.active {
  z-index: 200;
}
.burger span {
  width: 100%;
  height: 2px;
  background: #4BB6A1;
  transition: all 0.3s ease;
  border-radius: 5px;
}
.burger span:nth-child(1), .burger span:nth-child(3) {
  transform-origin: center;
}
.burger.active {
  gap: 0;
}
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(1px, 1px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(2px, -2px);
}

.burger__menu {
  padding: 40px;
  padding-top: 150px;
  position: fixed;
  top: 0;
  width: 400px;
  height: 100%;
  background: linear-gradient(180deg, #1C1C1C 0%, #141414 100%);
  right: -500px;
  display: flex;
  flex-direction: column;
  transition: 0.3s all;
  gap: 20px;
}
.burger__menu.active {
  right: 0;
}
.burger__menu-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.burger__menu-list a {
  color: #fff;
  font-size: 18px;
  line-height: 130%;
}
.burger__menu-list a:hover {
  color: #4BB6A1;
}
.burger__menu .header__right {
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.burger__menu .header__right .phone {
  align-items: flex-start;
}
.burger__menu .header__right .phone p::before {
  display: none;
}

.header {
  position: fixed;
  top: 30px;
  width: 100%;
  padding: 0 50px;
  z-index: 9;
}
.header__content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  padding: 25px 30px;
  border-radius: 15px;
  background: linear-gradient(180deg, rgba(31, 42, 44, 0.8) 0%, rgba(28, 28, 28, 0.8) 100%);
  box-shadow: inset 0px 0px 14px rgba(255, 255, 255, 0.22);
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header__menu a {
  color: #fff;
  position: relative;
  transition: all 0.3s ease;
  font-size: 20px;
  line-height: 130%;
}
.header__menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: #4BB6A1;
  transition: all 0.3s ease;
}
.header__menu a:hover, .header__menu a.active {
  color: #4BB6A1;
}
.header__menu a:hover::after, .header__menu a.active::after {
  width: 100%;
}
.header__right {
  display: flex;
  align-items: center;
  gap: 25px;
}
.header__right .phone {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.header__right .phone:hover p {
  color: #4BB6A1;
}
.header__right .phone p {
  transition: 0.3s all;
  font-size: 22px;
  font-weight: bold;
  line-height: 130%;
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}
.header__right .phone p::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #4BB6A1;
}
.header__right .phone span {
  font-size: 13px;
  line-height: 130%;
  font-weight: 300;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo span {
  font-size: 20px;
  line-height: 130%;
  color: #fff;
  transition: 0.3s all;
}
.logo:hover span {
  color: #4BB6A1;
}

.social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.soc {
  background: #4BB6A1;
  width: 33px;
  height: 33px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s all;
}
.soc path {
  transition: 0.3s all;
}
.soc:hover {
  background: #fff;
}
.soc:hover path {
  fill: #4BB6A1;
}

.main {
  padding: 290px 0;
  position: relative;
}
.main .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  z-index: 3;
  position: relative;
}
.main h1 {
  max-width: 998px;
  text-align: center;
}
.main-service h1 {
  max-width: 100%;
}
.main p {
  text-align: center;
  max-width: 880px;
}
.main__img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.main__img::after {
  content: "";
  width: 100%;
  display: inline-block;
  height: 100%;
  background: linear-gradient(180deg, rgba(19, 19, 19, 0.6) 0%, rgba(19, 46, 38, 0.8) 48.56%, #141414 100%);
  top: 0;
  left: 0;
  position: absolute;
}
.main__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn {
  padding: 25px 60px;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  border-radius: 15px;
  background: linear-gradient(0deg, #10443A 0.81%, #1F977F 100.81%), linear-gradient(0deg, #397A6D 0.81%, #4DC4AD 100.81%);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
.btn span {
  position: relative;
  z-index: 2;
}
.btn::before {
  content: "";
  width: 100%;
  height: 100%;
  left: -100%;
  background: linear-gradient(180deg, #1C1C1C 0%, #141414 100%);
  position: absolute;
  top: 0;
  z-index: 1;
  transition: 0.3s all;
}
.btn:hover::before {
  left: 0;
}

.mt110 {
  margin-top: 110px;
}

.adv {
  margin-top: 40px;
}
.adv .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.adv__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  padding: 40px;
  background: linear-gradient(0deg, #10443A 0.81%, #1F977F 100.81%), linear-gradient(0deg, #397A6D 0.81%, #4DC4AD 100.81%);
  border-radius: 45px;
}
.adv__item:nth-child(even) {
  background: linear-gradient(180deg, #1C1C1C 0%, #141414 100%);
}
.adv__item .n {
  font-family: "Rubik";
  font-weight: bold;
  font-size: 97px;
  line-height: 130%;
}
.adv__item p {
  font-size: 18px;
}

.block-wrap {
  position: relative;
}
.block-wrap .circle {
  bottom: 135px;
  left: -184px;
}
.block-wrap .circle2 {
  bottom: -135px;
  right: -200px;
  left: auto;
}

.block {
  padding: 85px 100px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 40px;
  background: linear-gradient(180deg, #1C1C1C 0%, #141414 100%);
}
.block__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}
.block__text-img img {
  width: 100%;
  border-radius: 15px;
  height: auto;
}
.block__text ul {
  padding-left: 30px;
}
.block__text li {
  list-style-type: disc;
}
.block__text a {
  color: #4BB6A1;
  text-decoration: underline;
}
.block__text a:hover {
  text-decoration: none;
}
.block__text a.btn {
  color: #fff;
  text-decoration: none;
}
.block .imgs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.block .imgs img {
  width: 350px;
  border-radius: 15px;
}
.block .imgs__cert {
  cursor: pointer;
}
.block .imgs2 {
  display: flex;
  gap: 10px;
}
.block .imgs2__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.block .imgs2__col img {
  max-width: 861px;
  width: 100%;
  border-radius: 15px;
}
.block .imgs2__col a {
  font-size: 22px;
  line-height: 130%;
  color: #4BB6A1;
  text-decoration: underline;
}
.block .imgs2__col a:hover {
  text-decoration: none;
}
.block .imgs2 .imgs__cert {
  width: 350px;
  border-radius: 15px;
}
.block__soc {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}
.block__soc-item {
  cursor: pointer;
  font-size: 22px;
  line-height: 130%;
  color: #fff !important;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s all;
}
.block__soc-item:hover {
  color: #4BB6A1 !important;
}
.wpcf7 form .wpcf7-response-output {
  margin: 0;
}
.block__soc-item-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: linear-gradient(0deg, #10443A 0.81%, #1F977F 100.81%), linear-gradient(0deg, #397A6D 0.81%, #4DC4AD 100.81%);
}
.block__img-time {
  max-width: 420px;
  width: 100%;
}
.block__img-time img {
  width: 100%;
}
.block__img-garant {
  max-width: 330px;
  width: 100%;
}
.block__img-garant img {
  width: 100%;
}
.block__img-who {
  max-width: 476px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.block__img-who p {
  font-size: 22px;
  line-height: 140%;
}
.block__img-who img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.about {
  position: relative;
}
.about .circle {
  bottom: -258px;
  left: -184px;
}

.circle {
  position: absolute;
  width: 729px;
  height: 638px;
  background: rgba(75, 182, 161, 0.3);
  filter: blur(137px);
  z-index: -1;
}

.services {
  padding-top: 110px;
  position: relative;
}
.services .circle {
  bottom: 55px;
  right: -243px;
}
.services h2 {
  font-weight: 700;
  font-size: 188px;
  line-height: 130%;
  text-transform: uppercase;
  background: linear-gradient(90deg, #FFFFFF 0%, #141414 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.services__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: -60px;
}
.services__item {
  padding: 58px 36px;
  border-radius: 45px;
  background: linear-gradient(180deg, #1C1C1C 0%, #141414 100%);
  display: flex;
  align-items: center;
  gap: 40px;
}
.services__item:nth-child(even) {
  background: linear-gradient(0deg, #10443A 0.81%, #1F977F 100.81%), linear-gradient(0deg, #397A6D 0.81%, #4DC4AD 100.81%);
}
.services__item:nth-child(even) .n {
  border-color: #fff;
  color: #fff;
}
.services__item:nth-child(even) .btn {
  background: linear-gradient(180deg, #1C1C1C 0%, #141414 100%);
}
.services__item:nth-child(even) .btn::before {
  background: linear-gradient(0deg, #10443A 0.81%, #1F977F 100.81%), linear-gradient(0deg, #397A6D 0.81%, #4DC4AD 100.81%);
}
.services__item .btn {
  margin-left: auto;
  flex-shrink: 0;
}
.services__item .n {
  padding: 10px 25px;
  border-radius: 50px;
  border: 1px solid #4BB6A1;
  color: #4BB6A1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 500;
  line-height: 120%;
}
.services__item-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.services__item .title {
  font-size: 36px;
  font-family: "Rubik";
  font-weight: bold;
  line-height: 130%;
}
.services__item p {
  font-size: 18px;
}

.logos h2 {
  text-align: center;
  margin-bottom: 35px;
}
.logos__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.logos__item {
  padding: 40px;
  min-height: 184px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #1C1C1C 0%, #141414 100%);
  border-radius: 35px;
  width: auto;
  max-width: 100%;
}
.logos__item:nth-child(even) {
  background: linear-gradient(0deg, #10443A 0.81%, #1F977F 100.81%), linear-gradient(0deg, #397A6D 0.81%, #4DC4AD 100.81%);
}

.arrows {
  display: flex;
  gap: 15px;
  align-items: center;
}

.arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #4BB6A1;
  transition: 0.3s all;
  cursor: pointer;
}
.arrow:hover {
  background: linear-gradient(180deg, #1C1C1C 0%, #141414 100%);
}

.reviews {
  position: relative;
}
.reviews .circle {
  top: -141px;
  left: -210px;
}
.reviews__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 35px;
}
.reviews__item {
  padding: 40px;
  border-radius: 35px;
  background: linear-gradient(180deg, #1C1C1C 0%, #141414 100%);
}
.reviews__item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 10px;
}
.reviews__item-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.reviews__item .name {
  font-size: 29px;
  font-weight: bold;
  font-family: "Rubik";
  line-height: 130%;
}
.reviews__item .work {
  font-size: 18px;
  color: #A8A8A8;
  line-height: 130%;
}
.reviews__item .date {
  font-size: 18px;
  line-height: 130%;
  display: flex;
  align-items: center;
  gap: 10px;
}
.reviews__item-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.reviews__item-text p {
  font-size: 18px;
  line-height: 130%;
}

.form {
  position: relative;
}
.form .circle {
  bottom: -150px;
  right: -145px;
}
.form__content {
  padding: 85px 100px;
  border-radius: 45px;
  background: linear-gradient(180deg, #1C1C1C 0%, #141414 100%);
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
.form__content img {
  border-radius: 15px;
  width: 100%;
  max-width: 460px;
}
.form form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.form__head {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.form__head h2 {
  text-transform: none;
}
.form__head p {
  font-size: 20px;
}
.form__box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 460px;
  width: 100%;
}
.form__box p {
  font-size: 13px;
  line-height: 130%;
}
.form__box p a {
  color: #4BB6A1;
  text-decoration: underline;
}
.form__box p a:hover {
  text-decoration: none;
}

.input {
  padding: 15px;
  border-bottom: 1px solid #A5A5A5;
  color: #fff;
  font-size: 20px;
  line-height: 130%;
  background: none;
}
.input:focus {
  border-color: #4BB6A1;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: linear-gradient(180deg, #1C1C1C 0%, #141414 100%);
  padding: 25px 50px;
}
.footer__menu {
  display: flex;
  align-items: center;
  gap: 30px;
}
.footer__menu p, .footer__menu a {
  font-size: 20px;
  color: #fff;
  line-height: 130%;
  transition: 0.3s all;
}
.footer__menu p:hover, .footer__menu a:hover {
  color: #4BB6A1;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s all;
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal__close {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}
.modal__close svg {
  width: 35px;
  height: 35px;
  transition: 0.3s all;
}
.modal__close:hover svg {
  transform: rotate(90deg);
}
.modal__content {
  position: relative;
  background: linear-gradient(180deg, #1C1C1C 0%, #141414 100%);
  padding: 60px 45px;
  border-radius: 45px;
  max-width: 800px;
  width: 100%;
}
.modal__content-img {
  padding: 30px;
  height: 100%;
}
.modal__content-img img {
  width: auto;
  height: 100%;
  border-radius: 15px;
}
.modal__content h2 {
  text-align: center;
}
.modal__content p {
  text-align: center;
}
.modal__content form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.modal__content form .wpcf7-form-control-wrap {
  width: 100%;
}
.modal__content form .input {
  width: 100%;
}
.modal__content form p {
  font-size: 14px;
}
.modal__content form a {
  color: #4BB6A1;
  text-decoration: underline;
}
.modal__content form a:hover {
  text-decoration: none;
}

.etap {
  position: relative;
}
.etap .circle {
  top: -210px;
  left: -210px;
}
.etap h2 {
  font-weight: 700;
  font-size: 170px;
  line-height: 130%;
  text-transform: uppercase;
  background: linear-gradient(90deg, #FFFFFF 0%, #141414 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.etap__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: -55px;
}
.etap__item {
  padding: 43px 60px;
  border-radius: 35px;
  background: linear-gradient(180deg, #1C1C1C 0%, #141414 100%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.etap__item p a {
  color: #4BB6A1;
}
.etap__item p a:hover {
  text-decoration: underline;
}
.etap__item:last-child {
  align-items: center;
  text-align: center;
  grid-column: span 2;
}
.etap__item:last-child p {
  max-width: 976px;
}
.etap__item:nth-child(odd) {
  background: linear-gradient(0deg, #10443A 0.81%, #1F977F 100.81%), linear-gradient(0deg, #397A6D 0.81%, #4DC4AD 100.81%);
}
.etap__item:nth-child(odd) .n {
  border-color: #fff;
  color: #fff;
}
.etap__item .n {
  padding: 10px 25px;
  border-radius: 50px;
  border: 1px solid #4BB6A1;
  color: #4BB6A1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 500;
  line-height: 120%;
}

.bred {
  margin-top: 200px;
  margin-bottom: 60px;
}
.bred h2 {
  margin-bottom: 15px;
  max-width: 882px;
  width: 100%;
}
.bred__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.bred__list span {
  color: #6C6C6C;
}
.bred__list a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
}
.bred__list a::after {
  content: "/";
}
.bred__list a, .bred__list span {
  font-size: 18px;
  line-height: 130%;
}

.news {
  position: relative;
}
.news .circle {
  top: 135px;
  left: -150px;
}
.news .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.news__item {
  display: flex !important;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
  border-radius: 35px;
  background: linear-gradient(180deg, #1C1C1C 0%, #141414 100%);
}
.news__item img {
  width: 100%;
  height: 321px;
  border-radius: 15px;
  object-fit: cover;
}
.news__item .title {
  font-size: 28px;
  line-height: 130%;
  font-family: "Rubik";
  font-weight: bold;
}
.news__item-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.news__item-bot .date {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.another__head {
  margin-bottom: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

@media (max-width: 1440px) {
  .header__menu a {
    font-size: 16px;
  }
  .header {
    padding: 0 20px;
    top: 10px;
  }
  .footer__menu p, .footer__menu a {
    font-size: 16px;
  }
  .header__right {
    gap: 15px;
  }
  .header__right .phone p {
    font-size: 18px;
  }
  .header__right .phone span {
    font-size: 10px;
  }
  h1 {
    font-size: 52px;
  }
  h2 {
    font-size: 42px;
  }
  h3 {
    font-size: 28px;
  }
  h4 {
    font-size: 24px;
  }
  h5 {
    font-size: 20px;
  }
  p, li {
    font-size: 16px;
  }
  .adv__item .n {
    font-size: 70px;
  }
  .main {
    padding: 220px 0;
  }
  .main h1 {
    max-width: 900px;
  }
  .block {
    padding: 50px;
  }
  .about .block__img img {
    width: 350px;
    height: auto;
  }
  .services h2 {
    font-size: 150px;
  }
  .services__content {
    margin-top: -50px;
  }
  .footer {
    padding: 20px;
  }
  .etap h2 {
    font-size: 140px;
  }
  .bred {
    margin-top: 150px;
  }
}
@media (max-width: 1200px) {
  .header__content {
    padding: 15px 20px;
  }
  .header__menu {
    display: none;
  }
  .header .header__right {
    display: none;
  }
  .burger {
    display: flex;
  }
  .burger__menu .header__right {
    display: flex;
  }
  .adv .container {
    grid-template-columns: repeat(2, 1fr);
  }
  .block {
    flex-direction: column;
  }
  .mt110 {
    margin-top: 80px;
  }
  .services {
    padding-top: 80px;
  }
  .services h2 {
    font-size: 70px;
  }
  .services__content {
    margin-top: 0;
  }
  .services__item {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 20px;
  }
  .services__item .n {
    font-size: 16px;
  }
  .services__item .title {
    font-size: 26px;
  }
  .logos__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .btn {
    font-size: 16px;
    padding: 20px 40px;
  }
  .form__content {
    flex-direction: column;
    padding: 50px;
  }
  .form__content img {
    max-width: 100%;
  }
  .form form {
    width: 100%;
    max-width: 100%;
  }
  .form__box {
    max-width: 100%;
  }
  .footer {
    flex-wrap: wrap;
  }
  .footer__menu {
    gap: 15px;
    flex-direction: column;
  }
  .block .imgs img {
    width: 200px;
  }
  .etap h2 {
    font-size: 80px;
  }
  .etap__list {
    margin-top: 0;
  }
  .etap__item {
    padding: 20px;
    gap: 10px;
  }
  .etap__item .n {
    font-size: 16px;
  }
  .news .container {
    grid-template-columns: repeat(1, 1fr);
  }
  .block .imgs2 {
    align-items: flex-start;
  }
  .block .imgs2 .imgs__cert {
    width: 200px;
    height: auto;
  }
}
@media (max-width: 640px) {
  .burger__menu {
    width: 300px;
  }
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 22px;
  }
  h4 {
    font-size: 20px;
  }
  h5 {
    font-size: 18px;
  }
  .mt110 {
    margin-top: 50px;
  }
  .header {
    padding: 0 10px;
  }
  .logo {
    gap: 10px;
  }
  .logo svg {
    width: 40px;
  }
  .logo span {
    font-size: 16px;
  }
  .main {
    padding: 150px 0;
  }
  .main .container {
    gap: 10px;
  }
  .adv .container {
    grid-template-columns: repeat(1, 1fr);
  }
  .adv__item {
    padding: 20px;
    border-radius: 20px;
  }
  .adv__item .n {
    font-size: 50px;
  }
  .adv__item p {
    font-size: 16px;
  }
  .block {
    padding: 20px;
    border-radius: 15px;
  }
  .block__text ul {
    padding-left: 20px;
  }
  .circle {
    width: 411px;
    height: 360px;
  }
  .about .block__img img {
    width: 250px;
  }
  .services {
    padding-top: 50px;
  }
  .services h2 {
    font-size: 40px;
  }
  .services__item {
    border-radius: 15px;
  }
  .services__item .title {
    font-size: 18px;
  }
  .services__item p {
    font-size: 16px;
  }
  .logos__content {
    gap: 10px;
  }
  .logos__item {
    min-height: auto;
  }
  .logos__item img {
    width: 100%;
    max-width: 100px;
  }
  .arrow {
    width: 45px;
    height: 45px;
  }
  .arrow svg {
    width: 10px;
  }
  .reviews__head {
    margin-bottom: 25px;
  }
  .reviews__item {
    padding: 20px;
  }
  .reviews__item .name {
    font-size: 18px;
  }
  .reviews__item .work {
    font-size: 14px;
  }
  .reviews__item-text p {
    font-size: 14px;
  }
  .reviews__item .date {
    font-size: 16px;
  }
  .form__content {
    padding: 20px;
    border-radius: 15px;
  }
  .form__head p {
    font-size: 16px;
  }
  .input {
    font-size: 16px;
    width: 100%;
  }
  .footer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
  }
  .footer__menu p, .footer__menu a {
    font-size: 14px;
  }
  .modal__content {
    padding: 45px 20px;
    border-radius: 30px;
  }
  .modal__close svg {
    width: 20px;
    height: 20px;
  }
  .modal__content-img {
    padding: 0 30px;
    width: 100%;
    height: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .modal__content-img img {
    width: 100%;
    height: auto;
  }
  .block .imgs__cert {
    width: 100%;
  }
  .block .imgs img {
    width: 100%;
  }
  .block__soc {
    flex-direction: column;
    gap: 15px;
  }
  .block__soc-item {
    width: 100%;
    font-size: 18px;
  }
  .etap h2 {
    font-size: 40px;
  }
  .etap__item {
    grid-column: span 2;
    border-radius: 15px;
  }
  .etap__item:last-child {
    align-items: flex-start;
    text-align: left;
  }
  .block__img-time {
    max-width: 300px;
  }
  .block__img-time img {
    max-width: 100%;
  }
  .bred {
    margin-bottom: 30px;
  }
  .bred__list a, .bred__list span {
    font-size: 14px;
  }
  .news__item {
    padding: 20px;
  }
  .news__item .btn {
    padding: 20px 30px;
  }
  .news__item .title {
    font-size: 20px;
  }
  .news__item img {
    height: 150px;
  }
  .news__item-bot {
    gap: 10px;
  }
  .news__item-bot .date {
    font-size: 16px;
  }
  .block__img-who {
    max-width: 100%;
  }
  .block__img-who p {
    font-size: 18px;
  }
  .block__img-who img {
    width: 100%;
  }
  .block .imgs2 {
    flex-direction: column;
  }
  .block .imgs2 .imgs__cert {
    width: 100%;
  }
  .block .imgs2__col a {
    font-size: 18px;
  }
}