:root {
    --gray: #646464;
    --semi-gray: #5C5C5C;

    --soft-light-gray: #ECECEC;
    --very-light-gray: #f6f6f6;
    --silver: #D1D1D1;
    --soft-blue-gray: #C0CBDA;
    --light-gray: #676767;
    --dark-gray: #212121;
    --dark-blue-gray: #363B4F;

    --red: #cc003d;
    --sub-red: #ff5151;

	--swiper-pagination-bottom: 0px;
    --swiper-pagination-bullet-size: 14px;
    --swiper-pagination-color: #cc003d;
    --swiper-pagination-bullet-inactive-color: #ff8787;
    --swiper-pagination-bullet-inactive-opacity: .65;
}

html {
    font-family: Arial, sans-serif;
}

html,
body {
    position: relative;
    height: 100%;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Yandex Sans Text', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

img,
svg {
    display: block;
    vertical-align: middle;
}

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

h1.section__title {
    text-align: center;
    font-size: 38px;
    font-weight: 600;
}

h2.section__title {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
}

a {
    color: inherit;
    text-decoration: inherit;
}

ol, ul {
    list-style: none
}

main {
    padding-top: 250px;
}

section {
    margin-bottom: 25px;
}

input[type="input"], 
input[type="text"], 
input[type="tel"], 
textarea,
select {
    position: relative;
    outline: none;
    border: none;
    color: #646464;
    border-radius: 16px;
    font-size: 18px;
    padding: 15px 30px;
    background: #ECECEC;
    transition: 250ms;
    line-height: 60px;
}

input[type="checkbox"]:hover, 
input[type="input"]:hover, 
input[type="text"]:hover, 
input[type="tel"]:hover, 
textarea:hover,
select:hover  {
    border-color: #cc003d;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 3px #cc003d;
}

input[type="checkbox"]:hover, 
input[type="input"]:focus, 
input[type="text"]:focus, 
input[type="tel"]:focus, 
textarea:focus,
select:focus {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px #cc003d;
}


select {
    background: white;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-repeat: no-repeat;
    background-position: calc(100% - 15px), calc(100% - 20px);
    background-size: 5px 5px, 5px 5px;
    background-image:   linear-gradient(135deg, var(--red) 50%,transparent 50%),
                        linear-gradient(45deg, transparent 50%, var(--red) 50%);
}

.container,
.header__top,
.header__bottom {
    width: 100%;
    margin: 0 auto;
    max-width: 1370px;
}

.button {
    font-size: 17px ;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px 25px;
    position: relative;
    border-radius: 0.5rem;
    transition: 0.3s;
}

.button:hover {
    transform: scale(0.98);
    transition: 0.3s;
}

.button.red {
    background: #cc003d;
    color: white;
}

.swiper-scrollbar-drag {
    --swiper-scrollbar-drag-bg-color: #cc003d;
    cursor: pointer;
    min-height: 250%;
}

.swiper-scrollbar{
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

/* ===== VIDEO ===== */


.video__container {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
  justify-content: center;
}

.video__container img {
  object-fit: fill;
  cursor: pointer;
}

.video__container .play__btn {
  background: #2B4BC6;
  height: 48px; 
  width: 48px;
  border-radius: 12px;
  border: none;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  cursor: pointer;
}

.video__container iframe {
  height: 100%;
  width: 100%;
}

.video__container .play__btn svg {
  width: 100%;
}

/* ===== TAB ===== */

.tab__btn,
.tab__btn__two {
  border: none;
  border-radius: 8px;
  padding: 20px 30px;
  font-weight: 500;
  font-size: 16px;
  background-color: #737373;
  color: white;
  cursor: pointer;
  text-align: center;
  transition: 0.3s;
}

.tab__btn:hover,
.tab__btn__two:hover {
    scale: 0.95;
    transition: 0.3s;
}

.tab__btn.active,
.tab__btn__two.active {
  background: #cc003d;
}

.tab__content,
.tab__content__two {
  display: none;
  width: 100%;
}

.tab__content.active,
.tab__content__two.active {
  display: flex;
}

/* ===== HEADER ===== */

.header {
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    position: fixed;
    top: 0; 
    transition: 0.3s;
    z-index: 99;
}

.header.fixed {
    top: -58px;
    transition: 0.3s;
}

.header__promo {
    width: 100%;
    background-color: var(--red);
    color: white;  
    padding: 10px 0;
}

.header__promo .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.header__promo p {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 600;
}

.yandex__rate {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    border-radius: 9px;
    padding: 5px 10px;
    font-weight: 800;
    font-size: 20px;
    color: #000;
}

.yandex__rate img {
    height: 25px;
    width: auto;
}

.header__right.mobile {
    display: none;
}

.mobile__menu {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 0;
    opacity: 0;
    transition: 0.3s;

    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile__menu.active {
    height: 100vh;
    opacity: 1;
    transition: 0.3s;
    overflow-x: scroll;
    padding-bottom: 25px;
}

.mobile__nav__accord__list {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.mobile__accord__item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-bottom: 1px solid lightgray;
}

.mobile__accord__image {
    width: 40px;
    height: 40px;
}

.mobile__accord__head {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 5px 5px 5px 50px;
    height: 60px;
    transition: 0.3s;
    font-size: 20px;
}

.mobile__accord__item.active .mobile__accord__head {
    background-color: #cc003d;
    color: #fff;
}
    
.mobile__accord__head::before {
    position: absolute;
    content: '\25BC';
    color: #4971EC;
    width: 20px;
    height: 20px;
    right: 5%;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile__accord__item.active .mobile__accord__head::before {
    color: black;
    transform: rotate(180deg);
    transition: 0.3s;
    color: #fff;
}

.mobile__accord__content {
    max-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    border-top: 0px solid lightgray;
    width: 100%;
}

.mobile__accord__item.active .mobile__accord__content {
    border-top: 1px solid lightgray;
    max-height: 600px;
    padding: 10px;
    visibility: visible;
    opacity: 1;
    transition: 0.3s;
}

.mobile__accord__content ul {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.mobile__accord__content ul li{
    align-self: center;
    padding: 5px;
}

.mobile__nav__link {
    width: 100%;
}

.mobile__nav__link ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
}

.mobile__nav__link ul li {
    padding: 10px; 
    font-size: 20px;
    width: 100%;
    text-align: center;
    position: relative;
    border-bottom: 1px solid lightgray;
}

.mobile__nav__link ul li::before {
    position: absolute;
    content: '\3E';
    color: #4971EC;
    width: 20px;
    height: 20px;
    right: 5%;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu__burger {
    position: relative;
    display: block;
    text-align: center;
    cursor: pointer;
    width: 20px;
    height: 20px;
}

.menu__burger::before, 
.menu__burger::after {
    content: '';
    left: 0;
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 10px;
    background: black;
}

.menu__burger.active::before {
    top: 9px;
    transform: rotate(45deg);
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0);
    transition: box-shadow .15s, top .3s, transform .3s .15s;
}

.menu__burger.active::after {
    bottom: 9px;
    transform: rotate(-45deg);
    transition: bottom .3s, transform .3s .15s;
}

.menu__burger::before {
    top: 0;
    box-shadow: 0 9px 0 black;
    transition: box-shadow .3s .15s, top .3s .15s, transform .3s;
}

.menu__burger::after {
    bottom: 0;
    transition: bottom .3s .15s, transform .3s;
}

.header__top {
    display: grid;
    grid-template-columns: 25% 45% 12% 15%;
    gap: 1%;
    align-items: center;
    padding: 20px 0 15px;
    border-bottom: 1px solid #eee;
}

.fixed .header__top {
    padding: 5px 0;
}

.header__logo {
    display: grid;
    grid-template-columns: 59% 40%;
    gap: 1%;
    align-items: center;
}

.header__logo img {
    width: 100%;
    max-height: 65px;
}

.header__prize {
    display: block;
    overflow: hidden;
    position: relative;
}

.header__prize:after {
    content: "";
    display: block;
    width: 20px;
    height: 200px;
    margin-left: 50px;
    background: #fff;
    opacity: 0.8;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0.5) 100%);
    left: -40px;
    top: -100px;
    z-index: 1;
    transform: rotate(45deg);
    position: absolute;
    animation: movingFlare 3s ease-in-out 0.05s infinite;
}

@keyframes movingFlare {
    0% {
        left: -30px;
        margin-left: 0px;
    }
    30% {
        left: 110%;
        margin-left: 80px;
    }
    100% {
        left: 110%;
        margin-left: 80px;
    }
}

.header__top__nav {
    width: 100%;
}

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

.header__top__nav ul li:hover {
    color: #08A2E4;
    cursor: pointer;
    transition: 0.3s;
}

.header__grafik {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    height: 100%;
}

.header__right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;  
    width: max-content;
    margin-left: auto;  
}

.header__right a {
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
    position: relative;
}

.header__socials__logo {
    display:  flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.header__socials__logo img {
    width: 30px;    
}

.header__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap : 20px;
    padding: 10px 0;
}

.header__bottom__nav {
    width: 100%;
    padding-left: 25px;
}

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

.bottom__nav__item{
    transition: 0.3s;
    padding-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #212112;
    letter-spacing: .015rem;
    position: relative;
}

.bottom__nav__item:hover {
    color: #08A2E4;
    cursor: pointer;
    transition: 0.3s;
}

.service__dropdown__menu {
    display: flex;
    gap: 0px;
    width: max-content;
    position: absolute;
    opacity: 0;
    left: -9999px;
    background: #fff;
    z-index: 6;
    border-radius: 16px;
    overflow: hidden;
    transition: all 250ms ease-in-out;
    box-shadow: 0 2px 10px rgba(22, 100, 191, .15);
    margin-top: 10px;
}

.service__dropdown__menu__left {
    display: flex;
    flex-direction: column;
    padding: 15px 25px 15px 25px;
    gap: 10px;
}

.service__dropdown:hover .service__dropdown__menu {
    left: auto;
    opacity: 1;
}

.dropdown__menu__item {
    width: 100%;
    font-size: 20px;
    transition: all .3s ease-out;
    font-weight: 500;
    color: black;
}

.dropdown__menu__item a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.dropdown__menu__item:hover,
.dropdown__menu__item.active {
    scale: 0.95;
    transition: all .3s ease-out;
}

.dropdown__menu__item.voda:hover,
.dropdown__menu__item.voda.active {
    color: #169bd5;
}

.dropdown__menu__item.teplo:hover,
.dropdown__menu__item.teplo.active {
    color: #fe951c;
}

.dropdown__menu__item.smart:hover,
.dropdown__menu__item.smart.active {
    color: #03c700;
}

.dropdown__menu__item.magazine:hover,
.dropdown__menu__item.magazine.active {
    color: var(--red);
}

.dropdown__menu__item span {
    width: 40px;
    height: 50px;
}

.service__dropdown__menu__right {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 10px;
    border-left: 1px solid lightgray;
    height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    padding: 0;
    transition: 0.3s;
}

.service__dropdown__menu__right.voda {
    background-color: #dbf4ff;
}

.service__dropdown__menu__right.teplo {
    background-color: #ffe6ca;
}

.service__dropdown__menu__right.smart {
    background-color: #c5ffc4;
}

.service__dropdown__menu__right.active {
    height: 260px;
    opacity: 1;
    visibility: visible;
    padding: 15px 25px;
    transition: 0.3s;
}

.service__dropdown__menu__right .dropdown__menu__item {
    display: flex;
    align-items: center;
    min-height: 40px;
}

.service__dropdown__menu__right .dropdown__menu__item:hover {
    color: #08A2E4;
}

.service__dropdown__submenu {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    visibility: hidden;
    z-index: -9999;
    width: 0px;
    height: 0;
    
}

.service__dropdown__menu:has(.service__dropdown__menu__left .dropdown__menu__item.active).service__dropdown__menu .service__dropdown__submenu {
    opacity: 1;
    visibility: visible;
    width: auto;
    height: auto;
}
    
/* ===== HEADER END ===== */

/* ===== FOOTER ===== */

.footer {
    position: relative;
    width: 100%;
    padding: 65px 0 25px;
    background-color: #363b4f;
}

.footer .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
    color: #fff;
}

.footer .container.mobile {
    display: none;
}

.footer__nav {
    display: flex;
    gap: 25px;
    padding: 0 15px;
}

.footer__column,
.contacts__column {
    width: 25%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer__image {
    width: 100%;
    height: 50px;
}

.footer__column a,
.contacts__column a {
    font-weight: 600;
    font-size: 18px;
    line-height: 1.5;
    transition: 0.3s;
}

.footer__column a:hover,
.contacts__column a:hover {
    opacity: 0.5;
    transition: 0.3s;
}

.footer__contacts {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__docs {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    line-height: 1.5;
}

.footer__address {
    font-size: 14px;
    line-height: 1.5;
}

a.footer__phone {
    font-size: 24px;
    font-weight: 400;
}

a.footer__email {
    font-size: 20px;
    font-weight: 400;
}

.footer__docs p {
    font-size: 14px;
    opacity: 0.8;
}

.footer__docs a {
    font-size: 20px;
}

.footer__column ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer__column ul li a{
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

.footer__copyright {
    font-size: 14px;
    color: #adafb8;
    padding: 0 15px;
}

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

.footer__social a {
    width: 25px;
    height: 25px;
}

/* ===== FOOTER END ===== */

/* ===== MAIN ===== */

/* ===== SWIPER DEFAULT ===== */
.swiper {
    width: 100%;
    height: 100%;
}

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

.swiper-pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* ===== MAIN STYLES ===== */

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

.hero__slider .swiper-pagination  {
    display: none;
}

.hero__slider .swiper-wrapper {
    display: grid;
    grid-template-columns: 800px 300px;
    grid-template-rows: 130px 130px 130px;
    grid-template-areas: "main one"
                         "main two"
                         "main three";
    gap: 20px;
    width: auto;
}

.hero__slider .swiper-slide:nth-child(1) {
    grid-area: main;
}

.hero__slider .swiper-slide:nth-child(2) {
    grid-area: one;
}   

.hero__slider .swiper-slide:nth-child(3) {
    grid-area: two;
}   

.hero__slider .swiper-slide:nth-child(4) {
    grid-area: three;
}
.swiper-slide.main__hero__slide {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    background-color: #f5f8fc;
    border-radius: 30px;
    padding: 20px 40px;
    overflow: hidden;
    min-height: 400px;
}

.main__hero__slide h3 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

.hero__slide__price {
    font-family: 'Bahnschrift';
    font-size: 110px;
    color: #f90805;
    line-height: 1;
}

.hero__slide__benefits {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}

.hero__benefit__item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 10px;
}

.hero__benefit__item h4 {
    color: #d90000;
    font-size: 20px;
    font-weight: 600;
}

.hero__benefit__item p {
    color: #333;
    font-size: 16px;
}

.hero__benefit__item b {
    font-weight: 600;
}

.main__hero__slide .button {
    background-color: #ffb100;
    color: white;
    font-weight: 600;
}

.main__hero__slide .button:hover {
    color: black;
}

.hero__slide.swiper-slide {
    display: flex;
    align-items: center;
    width: 100%;
    height: -webkit-fill-available;
    border-radius: 16px;
    border: 1px solid #d9d9d9;
    overflow: hidden;
    max-height: 400px;
}

.hero__slide img {
    width: 100%;
    object-fit: fill;
}

.title__section .container{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.title__section p {
    font-size: 16px;
    line-height: 1.5;
}

.title__section ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.title__section li {
    position: relative;
    padding-left: 20px;
}

.title__section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    background: #0eaef0;
    width: 5px;
    height: 5px;
    display: block;
    border-radius: 50%;
    top: .5rem;
}

.title__section .button {
    width: 500px;
    text-align: center;
    align-self: center;
    justify-content: center;
    height: 60px;
}

.service__table__section {
    background-color: #e9eef9a1;
}

.service__table__section .container { 
    padding-block: 60px;   
}

.service__table {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.service__table__row {
    width: 100%;
    display: grid;
    grid-template-columns: 60% 25% 15%;
}

.service__table__row div{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.service__table__row:not(.service__table__head) {
    padding: 20px 0;
    border-bottom: 1px solid #818181;
}

.service__table__head {
    font-size: 16px;
    font-weight: 700;
    padding: 10px 0;
}

.service__table__name {
    font-size: 20px;
}

.service__table__price {
    font-size: 26px;
    color: #cc003d; 
    font-weight: 600;
}

.step__section .container {
    width: 100%; 
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.step__slider .swiper-wrapper{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 25px;
    align-items: flex-start;
}

.step__item.swiper-slide {
    width: 300px;
    height: 200px;
    background-color: #f6f5f3;
    border-radius: 15px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 20px;
}

.step__num {
    background: #cc003d;
    color: white;
    width: 40px;
    height: 40px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    font-weight: bold;
    font-size: 25px;
}

.step__item h3 {
    font-weight: bold;
    font-size: 25px;
    color: #2C2C2C;
}

.step__item p {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #2C2C2C;
}

.doc__section .container{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 20px;
}

.doc__item {
    width: 280px;
    height: 400px;
}

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

.service__block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #FAFAFA;
    border-radius: 17px;
    box-shadow: 0px 0px 4px 0px #0c0c0c66;
    gap: 20px;
    padding: 30px 20px;
}

.service__block h2 {
    align-self: flex-start;
    font-size: 24px;
    font-weight: 500;
    line-height: 20px;
}

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

.service__include__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service__include__item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.service__include__list.reverse .service__include__item {
    flex-direction: row-reverse;
}

.service__include__img {
    width: 25px;
    height: 25px;
}

.service__price__block {
    width: 35%;
    padding: 16px 20px;
    background-color: white;
    display: flex;
    align-items: center;
    gap: 25px;
    flex-direction: column;
    border-radius: 16px;
    box-shadow: 0px 0px 4px 0px #0c0c0c66;
}

.service__price__block h3 {
    font-size: 40px;
    color: #cc003d;
}

.service__price__block p {
    align-self: flex-start;
}

.service__price__block .button {
    width: 100%;   
    justify-content: center; 
}

.arshin__section {
    background-color: #444b6c;
}

.arshin__section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding: 40px 0 30px;
}

.arshin__section h2 {
    color: white;
}

.arshin__input__block {
    width: 100%;
    display: flex; 
    gap: 25px;
    justify-content: center;
    align-items: center;
}

.arshin__input__block input,
.arshin__input__block select {
    padding: 0 20px;
}

.arshin__input__block input,
.arshin__input__block select,
.arshin__input__block button {
    width: 300px;
    height: 60px;
}

.arshin__input__block button {
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
}

.team__section .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.team__slider.swiper {
    padding-bottom: 30px;
}

.team__slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.team__slide{
    max-width: 360px;
    height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 3px 10px 10px #E7EFF7;
}

.team__slide::before {
    content: '';
    background: linear-gradient(171.56deg, rgba(7, 38, 67, 0) 53.87%, rgba(7, 39, 64, 0.59) 85.43%);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 1;
}

.team__slide img {
    width: 100%;
}

.team__block {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: #fff;
    display: flex;
    flex-direction: column;
    z-index: 2;
    background-color: #444b6ca3;
    padding: 10px;
    border-radius: 10px;
} 


.work__section .container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.work__slider.swiper {
    padding-bottom: 30px;
}

.work__slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.work__slide {
    max-width: 360px;
    width: 100%;
    height: 350px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 2px 4px 12px #DDE6FF;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
    align-items: flex-start;
}

.work__image {
    width: 100%;
    height: 200px;
}

.work__image img {
    width: 100%;
}

.work__slide p {
    padding: 0 32px;
    line-height: 1.5;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    text-align: center;
}

.work__section a {
    text-align: center;
    font-size: 18px;
}

.team__section a {
    text-decoration: underline;
    text-align: center;
    font-size: 18px;
}

.about__main__section .container{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;  
    gap: 20px;
}

.about__main__right,
.about__main__left {
    min-width: 40%;
}

.about__main__left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
}

.about__main__right .video__container{
    border: 1px solid #d9d9d9;
    border-radius: 16px;
    overflow: hidden;
    height: 300px;
}

.about__main__right .video__container img {
    width: 100%;
}

.tab__btn__about__container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
}

.about__main__text {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
}

.about__main__text h2 {
    font-size: 32px;
    font-weight: 400;
    color: #5C5C5C;
}

.about__main__text p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    color: #5C5C5C;
}

.certif__slider.swiper {
    padding-bottom: 30px;
    padding-inline: 0 15px;
}

.certif__slider  .swiper-wrapper {
    align-items: center;
}

.certif__slide {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 0px 4px 0px #2e2c2ceb;
}

.award__section .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
}

.award__slider.swiper {
    padding-bottom: 30px;
}

.award__slide {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #d9d9d9;
    height: 165px;
}

.award__slide img {
    width: 100%;
    object-fit: cover;
}

.about_irs__section {
    background-color: #444b6c;
    padding: 50px 0;    
}

.about_irs__section .container{
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
    color: white;
}

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

.about__ir__item {
    width: 33%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.about__ir__item h3 {
    font-size: 40px;
    font-weight: 400;
}

.about__ir__item p {
    font-size: 16px;
    line-height: 1.5;
}

.attention__block {
    background: #cc003d;
    border-radius: 16px;
    padding: 50px 30px;
    display: flex;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.attention__left {
    background: #f4f4f4;
    border-radius: 16px;
    padding: 20px;
    max-width: 328px;
    position: relative;
    z-index: 10;
    border: 1px solid #d9d9d9;
}

.attention__right {
    width: 357px;
    flex-basis: 357px;
    height: 200px;
    background: #d9d9d9;
    border-radius: 16px;
    flex-shrink: 0;
    align-self: flex-end;
    position: relative;
    overflow: hidden;
}

.attention__title {
    font-weight: 600;
    font-size: 24px;
    color: #000;
    margin-bottom: 30px;
}

.attention__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none;
    padding: 0;
}

.attention__item {
    display: flex;
    gap: 16px;
    align-items: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #000;
}

.attention__icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.attention__background {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-60%);
}

.attention__person {
    position: absolute;
    bottom: -9px;
    left: 39%;
    transform: translateX(-50%) scale(1.05);
    z-index: 43;
}

.attention img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border: none;
}

.video__review__section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.video__rev__slider.swiper {
    padding-bottom: 30px;
}

.video__rev__slide.swiper-slide {
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
}

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

.blago__section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.blago__slider.swiper {
    padding-bottom: 30px;
}

.blago__slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blago__slide {
    max-width: 350px;
    max-height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 0px 4px 0px #2e2c2ceb;
}

.blago__slide img{
    object-fit: fill;
    width: 100%;
    height: 500px;
}

.faq__section {
    background-color: #444b6c;
    padding: 30px 0;
    color: white;
}

.faq__section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.faq__list {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.faq__item {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-bottom: 1px solid rgb(240, 240, 240);
    margin: 10px 0;
}

.faq__accord__head button {
    color: white;
    background: transparent;
    min-width: 30px;
    width: 30px;
    min-height: 30px;
    border: 0px;
    position: relative;
}

.faq__accord__head button::before,
.faq__accord__head button::after {
    content: " ";
    position: absolute;
    transition: all 300ms ease 0s;
    background: gray;
    border-radius: 2px;
}

.faq__accord__head button::before{
    top: 6px;
    bottom: 6px;
    width: 2px;
    left: 8px;
    transform: rotateZ(135deg);
}

.faq__accord__head button::after {
    left: 12px;
    right: 0%;
    height: 2px;
    top: 14px;
    transform: rotateZ(135deg);
}

.faq__item.active .faq__accord__head button::before,
.faq__item.active .faq__accord__head button::after {
    transform: rotateZ(90deg);
    top: 8px;
    background: #cc003d;
}

.faq__item.active .faq__accord__head button::after  {
    transform: rotateZ(0deg);
    top: 15px;
}

.faq__accord__head {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    padding: 5px 5px 5px 5px;
    height: 60px;
    transition: 0.3s;
    font-size: 20px;
}

.faq__accord__head:hover h3 {
    opacity: 0.6;
    transition: 0.3s;
} 

.faq__accord__head h3 {
    font-size: 20px;
    transition: 0.3s;
}

.faq__accord__head::before {
    position: absolute;
    content: '';
    scale: 0;
    right: 1%;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq__item.active .faq__accord__head::before {
    color: gray;
    content: 'X';
    scale: 1;
    font-size: 32px;
    transition: 0.3s;
    color: #fff;
    cursor: pointer;
}

.faq__item.active .faq__accord__head:hover::before {
    scale: 0.9;
}

.faq__accord__content {
    max-height: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    width: 100%;
        font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
}

.faq__item.active .faq__accord__head {
    color: #cc003d;
}

.faq__item.active .faq__accord__content {
    max-height: 600px;
    padding: 15px;
    visibility: visible;
    opacity: 1;
    transition: 0.3s;
}

.text__section .container{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.text__section h2 {
    font-weight: 500;
}

.text__section p {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}

.geo__section .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tab__btn__geo__main {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.tab__geo__regions,
.tab__geo__region,
.tab__geo__cities,
.tab__geo__metro {
    flex-direction: column;
    gap: 20px;
}

.tab__geo__regions h3,
.tab__geo__cities h3, 
.tab__geo__metro h3 {
    font-size: 16px;
    font-weight: 400;
}

.tab__btn__geo__region {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tab__btn__geo__region .tab__btn__two {
    font-size: 20px;
    padding: 15px 25px;
    border-radius: 12px;
    background-color: #f6f6f6;
    color: #646464;
}

.tab__btn__geo__region .tab__btn__two.active {
    background-color: #cc003d;
    color: white;
}

.geo__area__list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-height: 200px;
    overflow-x: hidden;
    overflow-y: scroll;
}

.geo__area__item {
    font-size: 20px;
    padding: 10px 20px;
    border-radius: 12px;
    background-color: #f6f6f6;
    transition: 0.3s;
    color: #646464;
}

.geo__area__item:hover {
    background-color: #cc003d;
    color: white;
    transition: 0.3s;
}

.ymap__section {
    margin: 0;
}

.ymap__section .container {
    position: relative;
    min-height: 580px;
}

.ymap__contacts {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    border-radius: 8px;
    padding: 2% 4%;
    right: 5%;
    top: 0%;
    bottom: -4%;
    z-index: 1;
}

.map__link img {
    width: 100%;
    min-height: 600px; 
    object-fit:cover;
}

.ymap__contacts h3 {
    text-align: center;
}

.contacts__grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    grid-template-rows: 1fr 0.5fr;
    grid-template-areas: 'info rate'
                         'social acred';
    row-gap: 20px;
    column-gap: 10px;
    font-size: 20px;
    line-height: 1.5;
}

.contacts__grid a:hover {
    color: #cc003d;
    transition: 0.2s;
}

.contacts__info {
    grid-area: info;
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.contact__info__item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
}

.contact__info__image {
    min-width: 30px;
    width: 30px;
    height: 30px;
}

.info__list {
    display: flex;
    flex-direction: column;
}

.contacts__social {
    grid-area: social;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.social__icons {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.social__icon {
    width: 30px;
    height: 30px;
}

.contacts__rate {
    grid-area: rate;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center; 
}

.contacts__rate div{
    width: 200px;
    height: 150px;
}

.contacts__rate div img {
    object-fit: contain;
}

.contacts__acred {
    grid-area: acred;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.contact__qr__container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact__qr {
    min-width: 130px;
    width: 130px;
    height: 130px;
}

.text__float__section  .container{
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.float__content p {
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.5;
    font-size: 16px;
}

.float__content ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.float__content li {
    position: relative;
    padding-left: 20px;
}

.float__content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    background: #0eaef0;
    width: 5px;
    height: 5px;
    display: block;
    border-radius: 50%;
    top: .5rem;
}

.float__content h3 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 500;
}

.float__content .button {
    padding: 20px;
}

.float__container {
    max-width: 600px;
    float: right;
    padding: 0 0 20px 20px;
}

.float__container .video__container{
    width: 100%;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
}

.advantages__section .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.advantages__container {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.advantage__item {
    width: 400px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 15px;
}

.advantage__image {
    min-width: 65px;
    width: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.advantage__content h3 {
    font-weight: 600;
    font-size: 1.25rem;
    color: #363b4f;
    line-height: 1.2;
}

.advantage__content p {
    color: #363b4f;
    font-size: 16px;
    line-height: 1.5;
}

.many__video__section .container {
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.many__video__section a {
    text-align: center;
    font-size: 18px;
}

.many__video__section a:hover {
    text-decoration: underline;
}

.video__slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video__slide{
    max-width: 360px;
    border-radius: 16px;
    overflow: hidden;
    height: 200px;
}

.video__slider.swiper {
    padding-bottom: 30px;
}

.video__slider .video__container img {
    width: 100%;
}

.how__we__work__section .container{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.how__we__work__step {
    display: grid;
    position: relative;
    grid-template-columns: 60% 36%;
    gap: 48px;
    border: 4px solid #DEDEDE;
    border-radius: 15px;
    padding: 18px 15px 26px 130px;
    margin: 0 0 10px 0;
}

.how__we__work__step .description {
    color: #5C5C5C;
    font-size: 20px;
    line-height: 125%;
}

.how__we__work__step .image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how__we__work__step img {
    width: 300px;
    height: 200px;
    border-radius: 16px;
    border: 1px solid #d9d9d9;
    margin: auto 0;
    object-fit: cover;
}

.how__we__work__step .number {
    position: absolute;
    top: -12px;
    left: -20px;
    color: #cc003d;
    font-family: "Gilroy";
    font-size: 96px;
    font-weight: 600;
    line-height: 86px;
    text-align: center;
    display: inline-block;
    float: left;
    background: white;
    padding: 20px 15px 55px 20px;
}

.how__we__work__step .title {
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin: 20px 0 10px 0;
}

.how__we__work__step .text {
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
}

.callback__form {
    background: #f6f6f6;
    padding: 20px 60px;
    border-radius: 42px;
    gap: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.callback__form__left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.callback__form__left h3 {
    font-size: 48px;
    font-weight: 600;
    line-height: 40px;
}

.callback__form__left p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    color: #5C5C5C;
}

.callback__form__left input {
    width: 100%;
    line-height: normal;
}

.callback__form__policy {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.callback__form__policy input {
    min-width: 20px;
    width: 20px;
    min-height: 20  px;
}

.callback__form__policy p {
    font-size: 14px;
    color: #212121;
}

.callback__form__policy a {
    transition: 0.3s;
    text-decoration: underline;
    color: gray;
}

.callback__form__policy a:hover {
    color: #cc003d;
    transition: 0.3s;
}

.callback__form__captcha {
    width: 100%;
    height: 100px;
}

.callback__form__left button {
    padding: 20px 40px;
    width: 100%;
    justify-content: center;
}

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

.callback__form__right  img {
    width: 100%;
    max-height: 300px;
}

.review__article__section .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rev__art__btn__container {
    display: flex;
    gap: 20px;
    align-items: center;
}

.text__rev__slider.swiper ,
.text__article__slider.swiper {
    padding-bottom: 30px;
}

.text__rev__slide.swiper-slide {
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 20px 25px;
    background: #f6f6f6;
    border-radius: 16px;
    gap: 15px;
    justify-content: flex-start;
    align-items: flex-start;
}

.review__article__section .date {
    color: #9F9F9F;
    font-size: 16px;
}

.review__article__section h3 {
    color: #2C2C2C;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -1.4px;
}

.review__article__section p {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

.text__article__slide.swiper-slide {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    border: solid 2px #f6f6f6;
    border-radius: 20px;
    overflow: hidden;
}

.article__slide__image {
    width: 100%;
    max-height: 150px;
    height: 150px;
}

.article__slide__image img {
    object-fit: cover;
    width: 100%;
}

.article__slide__content {
    width: 100%;
    height: 250px;
    display: flex;
    gap: 15px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 30px 15px;
}

.review__tab,
.article__tab {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
}

.review__tab .button,
.article__tab .button {
    width: 100%;
    justify-content: center;
    border: 2px solid #cc003d;
    color: #cc003d;
}

.partnership__section .container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: space-between;
}

.partnership__left {
    display: flex;
    width: 50%;
    height: 350px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}

.partnership__left p {
    font-size: 16px;
    line-height: 1.5;
}

.partnership__left .button {
    width: 100%;
    justify-content: center;
    padding: 20px;
}

.partnership__right {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partnership__right img {
    width: 80%;
    max-height: 350px;
    border-radius: 16px;
    overflow: hidden;
}

.partners__section .container{
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
}

.partners__slider.swiper {
    padding-bottom: 30px;
}

.all__video__section .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.all__video__container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 200px;
    grid-auto-rows: 200px;
    gap: 20px;
}

.all__video__container .video__container {
    border-radius: 16px;
    overflow: hidden;
}

.all__video__container .video__container img {
    width: 100%;
}

.all__video__container a {
    text-align: center;
}

.licenses__section {
    background-color: #f3f7ff;
    padding: 20px 0;
}

.licenses__section .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.licenses__slider.swiper {
    padding-bottom: 30px;
}

.licenses__slide {
    height: 250px;
    max-height: 250px;
    overflow: hidden;
}


.licenses__slide img {
    width: 100%;
    max-height: 250px;
    object-fit: contain;
}

.main__gallery__section .container,
.service__gallery__section .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main__gallery__container,
.service__gallery__container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 250px;
    grid-auto-rows: 250px;
    gap: 20px;
}

.main__gallery__item,
.service__gallery__item {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s;
    cursor: pointer;
}

.main__gallery__item:hover,
.service__gallery__item:hover {
    scale: 0.95;
    transition: 0.3s;
}

.main__gallery__item img{
    width: 100%;
}

.promo__section .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.promo__item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 'img txt'
                         'btn btn';
    column-gap: 10px;
    row-gap: 20px;
    padding: 15px;
    box-shadow: 2px 4px 12px #DDE6FF;
    border-radius: 16px;
    overflow: hidden;
}

.promo__img {
    grid-area: img;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo__img img{
    height: 180px;
    border-radius: 16px;
}

.promo__content {
    grid-area: txt;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 16px;
    line-height: 1.5;
}

.promo__item .button {
    grid-area: btn;
    justify-content: center;
    align-items: baseline;
    max-width: 250px;
    margin: 0 auto;
    padding: 15px;
    font-weight: 600;
}

.for__partners__section .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.for__partners__banner {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    max-height: 400px;
}

.for__partners__banner img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.two__block__section .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.two__block__container {
    display: flex;
    gap: 20px;
    justify-content: space-evenly;
    align-items: flex-start;
}

.two__block__content {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: flex-start;
    line-height: 1.5;
    font-size: 16px;
}

.two__block__image {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.two__block__image img {
    width: 100%;
    max-width: 500px;
    height: 100%;
    max-height: 350px;
}

.our__team__section .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1170px;
}

.workers__container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 300px;
    grid-auto-rows: 300px;
    gap: 20px;
}

.team__worker {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    max-height: 300px;
}

.team__worker img {
    width: 100%;
}

.worker__desc {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 15px;
    bottom: 30px;
    left: 30px;
    color: white;
}

.worker__desc h3 {
    font-weight: 500;
}

.service__list__section {
    background-color: #444b6c;
    padding: 25px 0;
}

.service__list__section h2 {
    color: white;
}

.service__list__section .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.swiper.service__list__slider {
    overflow: visible;
}

.service__list.swiper-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 120px;
    gap: 15px;
}

.service__list__item.swiper-slide {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 2px 4px 12px #DDE6FF;
    transition: 0.2s;
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    align-items: center;
    padding: 10px 20px;
}

.service__list__item:hover {
    scale: 0.98;
    transition: 0.2s;
}

.service__item__icon {
    width: 100px;
    height: 100px;
}

.service__item__icon img {
    width: 100%;    
}

.service__item__desc {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: flex-start;
    align-items: flex-start;
}

.service__item__desc h3 {
    font-size: 24px;
    font-weight: 500;
}

.service__item__desc p {
    color: #cc003d;
}

.lab__list__section .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.swiper.lab__list__slider {
    overflow: visible;
}

.lab__list.swiper-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 120px;
    gap: 15px;
}

.lab__list__item.swiper-slide {
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 40px 0 rgba(0,0,0,0.08);
    transition: 0.2s;
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    align-items: center;
    padding: 10px 20px;
}

.lab__list__item:hover {
    scale: 0.98;
    transition: 0.2s;
}

.lab__list__item:last-child {
    grid-column: 1/3;
    justify-content: center;
}

.lab__item__icon {
    width: 100px;
    height: 100px;
}

.lab__item__icon img {
    width: 100%;    
}

.lab__item__desc {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: flex-start;
    align-items: flex-start;
}

.lab__item__desc h3 {
    font-size: 24px;
    font-weight: 500;
}

.lab__item__desc p {
    color: #cc003d;
}

.smart__content__section .container{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.smart__content__section h3 {
    color: #ff0100;
    text-align: center;
    align-self: center;
    font-size: 28px;
}

.smart__content__section h2 {
    color: #ff0100;
}

.smart__content__section p,
.smart__content__section li {
    font-size: 20px;
    line-height: 1.5;
}

.smart__two__block {
    display: flex;
    align-items: center;
    gap: 10px;
}

.smart__two__block div {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.smart__two__block img {
    width: 100%;
    max-width: 450px;
    max-height: 350px;
    align-self: center;
    object-fit: contain;
}

.smart__content__section ul,
.smart__content__section ol {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.smart__content__section ul {
    list-style: disc;
    list-style-position: inside;
}

.smart__content__section ol {
    list-style: decimal;
    list-style-position: inside;
}

.smart__organization__list {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}

.smart__organization__item {
    display: flex;
    justify-content: center;
    gap: 10px;
    height: 140px;
    padding: 20px;
    max-width: 450px;
}

.smart__organization__item h4 {
    align-self: center;
    font-size: 24px;
}

.smart__organization__item div {
    min-width: 100px;
    height: 100px;
}

.calculator__section .container{
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #F6F9FE;
    padding: 30px;
    border-radius: 16px;
}

.calculator__container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.calculator__input__container {
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
}

.calculator__input__container label {
    display: flex;
    flex-direction: column;
    font-size: 24px;
    gap: 5px;
}

.calculator__input__container select {
    padding: 15px 30px;
    line-height: 1.5;
    background-color: #ececec;
    background-image: linear-gradient(135deg,#cc003d 50%,transparent 50%),linear-gradient(45deg,transparent 50%,#cc003d 50%);
    border: 2px solid #cc003d;
}

.calculator__counter__container {
    display: grid;
    grid-template-columns: repeat(auto-fill, 160px);
    grid-auto-flow: column;
    grid-template-rows: 275px 275px;
    width: 100%;
    height: 580px;
    gap: 10px;
    background-color: #ececec;
    border-radius: 16px;
    padding: 10px;
    overflow-y: hidden;
    overflow-x: scroll;
}

.calculator__counter {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 160px;
    padding: 10px 5px;
    border-radius: 20px;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 400;
    height: 275px;
    background-color: white;
    border: 1px solid #d9d9d9;
}

.calculator__counter.hide {
    display: none;
}

.calculator__image {
    max-width: 100px;
    min-width: 100px;
    min-height: 100px;
    max-height: 100px;    
}

.calculator__counter h4 {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    font-weight: 400;
}

.calculator__counter a,
.calculator__counter .button {
    width: 100%;
    padding: 15px;
    border-radius: 20px;    
    text-align: center;
    justify-content: center;
    font-weight: 600;
}

.calculator__counter a {
    color: white;
    background-color: #444b6c;
    transition: 0.2s;
}

.calculator__counter a:hover {
    scale: 0.95;
    transition: 0.2s;
}

.calculator__counter .button {
    color: #cc003d;
    border: 1px solid #cc003d;
    background-color: white;   
}

.calculator__counter .button.active {
    color: #6e6e6e;
    border: 1px solid #6e6e6e;
    background-color: white;   
}

.calculator__section .button {
    width: 100%;
    justify-content: center;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
}

.breadcrumb {
    display: flex;
    gap: 5px;
    padding: 0;
    list-style: none;
    border-radius: 0;
    font-size: .93em;
    line-height: 1.5;
    font-size: 14px;
}

.breadcrumb a {
    transition: 0.2s;
}

.breadcrumb a:hover {
    color: #cc003d;
    scale: 0.98;
    transition: 0.2s;
}

.breadcrumb>li+li:before {
    padding: 0 5px;
    color: #ccc;
    content: "/\00a0";
}

.product__section .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product__section .product__container {
    display: flex;
    gap: 20px;
}

.product__left {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    height: 500px;
}

.product__right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-evenly;
    align-items: center;
    width: 50%;
}

.product__right h2 {
    font-size: 34px;
}

.product__form {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.product__total, .product__total span {
    font-size: 20px;
}

.product__price__block {
    display: flex;
    gap: 10px;
}

.product__price__block span, .product__price {
    font-size: 42px;
    color: rgb(107, 125, 162);
    font-weight: 600;
}

.product__count__input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 20px;
    width: 130px;
    padding: 8px 6px;
    border: 1px solid rgb(221, 221, 221);
    border-radius: 4px;
}

.product__action {
    cursor: pointer;
    user-select: none;
    padding: 5px;
}

.product__count {
    font-size: 32px;
    font-weight: 400;
    user-select: none;
}

.product__form .button {
    padding: 15px;    
    width: 150px;
    justify-content: center;
}

.product__description {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 16px;
    line-height: 1.5;
}

.product__description .tab__content {
    flex-direction: column;
    gap: 10px;
}

.tab__btn__product {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    align-items: center;
    border-bottom: 1px solid #cc003d;
    padding-left: 25px;
}

.tab__btn__product .tab__btn {
    margin-bottom: -1px;
    border-radius: 24px 24px 0 0;
    min-width: 150px;
    border-bottom: 1px solid #cc003d;
    opacity: 0.8;
}

.tab__btn__product .tab__btn.active {
    opacity: 1;
}

.tab__btn__product .tab__btn.active:hover {
    opacity: 1;
}

.tab__btn__product .tab__btn:hover {
    scale: 1;
    opacity: 0.9;
}

.another__product__section .container {
    display: flex;
    flex-direction: column;
    gap: 20px;    
}

.another__product__slider.swiper {
    padding-bottom: 30px;
}

.another__product__slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product__card {
    display: flex;
    flex-direction: column;
}

.product__card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 350px;
    border: 1px solid #d9d9d9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 2px 4px 12px #DDE6FF;
}

.product__image {
    width: 100%;
    max-height: 300px;
    height: 300px;
}

.product__image img {
    width: 100%;
    max-height: 300px;
}

.product__content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.product__content h3 {
    font-size: 20px;
    font-weight: 500;
}

.product__content p {
    font-size: 24px;
    color: #53607d;
    font-weight: 500;
}

.product__content .button {
    justify-content: center;
    width: 100%;
}

.shop__section .container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tab__btn__shop {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.tab__btn__shop .tab__btn {
    min-width: 200px;
}

.tab__btn__product .tab__btn.active {
    opacity: 1;
}

.tab__btn__product .tab__btn.active:hover {
    opacity: 1;
}

.tab__btn__product .tab__btn:hover {
    scale: 1;
    opacity: 0.9;
}

.article__section .container,
.article__section .container .articles__list{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article__section .articles__more {
    display: flex;
    justify-content: center;
}

.article__item {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    box-shadow: 2px 4px 12px #DDE6FF;
    border-radius: 16px;
    overflow: hidden;
}

.article__img {
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 300px;
}

.article__img img{
    height: 100%;
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.article__content {
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 16px;
    line-height: 1.5;
}

.article-date {
    margin-top: auto;
    margin-left: auto;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    z-index: 15000;
    transition: opacity 250ms ease;
}
    
.popup_show {
    opacity: 1;
    visibility: visible;
    overflow: auto;
}

.popup.popup_show .popup__bg {
    width: 100%;
    opacity: 1;
}

.popup__bg {
    content: "";
    background: rgba(0, 0, 0, .7);
    position: fixed;
    opacity: 0;
    width: 0;
    top: 0;
    left: 0;
    padding: 0;
    cursor: pointer;
    height: 100vh;
    transition: width 700ms ease-in-out, opacity 700ms ease;
}

.popup.popup_show .popup__inner {
    opacity: 1;
}

.popup__inner {
    position: relative;
    opacity: 0;
    text-align: left;
    background: #dfe8fb;
    box-shadow: 0 2px 20px rgba(22,100,191,.15);
    border-radius: 1rem;
    padding: 30px;
    border-radius: 20px;
    max-width: clamp(25vw, calc(calc(1vw + 1vh) * 20), 50vw);
    transition: all 700ms ease-in-out;
}

.popup input[type="input"], 
.popup input[type="text"], 
.popup input[type="tel"], 
.popup input[type="date"], 
.popup textarea, 
.popup select {
    position: relative;
    outline: none;
    border: none;
    border-radius: 16px;
    font-size: 18px;
    padding: 15px 30px;
    background: #ECECEC;
    transition: 250ms;
    line-height: normal;
    width: 100%;
}

.popup select:hover, 
.popup input:hover,
.popup textarea:hover {
    border-color: #cc003d;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 3px #cc003d;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 3px #cc003d;
}

.popup .closebtn {
    padding: 10px;
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.popup__head, .popup__head__desc {
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 20px;
    text-align: center;
}

.popup__head__desc {
    font-size: 18px;
}

.popup__form {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}

.callback__policy {
    margin-top: 0;
    font-size: 14px;
}

.callback__policy a {
    color: grey;
    text-decoration: underline;
}

.popup__form .button {
    border-radius: 20px;
}

.text__section .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 20px;
}

.text__section p {
    margin: 0 0 20px;
}

.service__ip__section .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    gap: 20px;
}

.il__serivce__list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.il__serivce__list a {
    width: 100%;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 40px 0 rgba(0,0,0,0.08);
    border-radius: 8px;
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    min-height: 140px;
    transition: 0.2s;
}

.il__serivce__list a:hover {
    transition: 0.2s;
    box-shadow: 0 8px 40px 0 rgba(0,0,0,0.25);
}

.title-button {
    
}



/* ===== MAIN END ===== */

/* ===== CAPTCHA ===== */

.simple__captcha {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.captcha__field {
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

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


/* ===== CAPTCHA ===== */

/* ===== AJAX FORM ===== */

/* @import url('./lib/jquery.jgrowl.min.css'); */
.af-message-success { background-color: green !important; }
.af-message-error { background-color: brown !important; }
.af-message-info { background-color: black !important; }
.ajax_form.af_example {
    width: 100%;
}
.ajax_form.af_example .controls input,
.ajax_form.af_example .controls textarea {
    width: 100%;
}
.ajax_form .error {
    color: brown;
}
@media screen and (min-width: 320px) {
    .ajax_form.af_example .controls button[type="submit"] {
        float: right;
    }
}
@media screen and (max-width: 320px) {
    .ajax_form.af_example .controls button {
        width: 100%;
        margin-top: 5px;
    }
}

/* ===== AJAX FROM ===== */

/* ==== MEDIA ===== */

@media (max-width: 1400px) {

    .button {
        padding: 10px 20px;
    }
    .container, .header__top, .header__bottom {
        max-width: 1200px;
    }

    .header__right a {
        font-size: 20px;
    }

    .step__item.swiper-slide {
        width: 23%;
    }

    .step__slider .swiper-wrapper {
        gap: 15px;
    }

    .about__main__section .container {
        gap: 10px;
    }

    .about__main__right, .about__main__left {
        min-width: 49%;
    }

    .attention__person {
        display: none;
    }

    .ymap__contacts {
        right: 10%;
    }

    .promo__item {
        grid-template-columns: 0.8fr 1fr;
    }
    
    .blago__slider.swiper {
        padding-bottom: 60px;
    }
}

@media (max-width: 1200px) {

    section .container {
        padding-inline: 20px;
    }

    .header__promo {
        padding: 10px 10px;
    }

    .header__top,
    .header__bottom,
    .fixed .header__top {
        padding: 20px 15px 15px;
    }


    .header__top {
        grid-template-columns: 25% 55% 20%;
    }

    .header__top__nav,
    .header__grafik {
        display: none;
    }

    .hero__slider .swiper-wrapper {
        display: flex;
        align-items: center;
        gap: 0;
        width: 100%;
    }

    .hero__slider .swiper-pagination  {
        display: flex;
    }

    .hero__slider.swiper {
        padding-bottom: 35px;
    }

    .step__slider .swiper-wrapper {
        justify-content: normal;
        gap: 0;
    }
}

@media (max-width: 1100px) {
    .work__slide p {
        padding-inline: 15px;
    }
    
    .how__we__work__step {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 1000px) {
    .popup__inner  {
        max-width: 80%;    
    }
    
    main {
        padding-top: 180px;
    }

    .header__bottom,
    .header__right.desktop {
        display: none;
    }

    .header__promo p,
    .yandex__rate{
        font-size: 16px;
    }

    .header__right.mobile {
        display: flex;
        flex-direction: row;
        gap: 20px;
        margin: 0;
    }

    .header__right.mobile a{
        width: 25px;
        height: 25px;
    }

    .header__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: padding 0.3s;
    }

    .fixed .header__top {
        padding: 5px 15px;
        transition: padding 0.3s;
    }

    .header__logo {
        width: 230px;
    }

    .footer .container {
        gap: 30px;
    }

    .footer__column {
        display: none;
    }

    .contacts__column {
        width: 100%;
    }

    .contacts__column .footer__image {
        display: flex;
        justify-content: center;
    }

    .contacts__column .footer__contacts,
    .contacts__column .footer__docs {
        align-items: center;
    }

    .footer__copyright p{
        text-align: center;
    }

    .swiper.service__list__slider,
    .swiper.lab__list__slider {
        overflow: hidden;
    }

    .tab__btn__shop .tab__btn {
        min-width: 150px;
        padding: 20px;
    }

    .callback__form {
        grid-template-columns: 1fr;
    }

    .callback__form__right {
        display: none;
    }

    .service__list__slider.swiper,
    .lab__list__slider.swiper {
        padding: 0 10px 30px;
    }

    .service__list.swiper-wrapper,
    .lab__list.swiper-wrapper {
        display: flex;
        gap: 0;
    }

    .lab__list__item:last-child {
        justify-content: flex-start;
    }

    .smart__two__block {
        flex-direction: column;
    }

    .smart__two__block div {
        width: 100%;
    }

    .smart__organization__item h4 {
        font-size: 20px;
    }

    .calculator__section .container {
        border-radius: 0;
    }
    
    .arshin__input__block {
        flex-direction: column;
    }
    
    .arshin__section form {
        width: 100%;
    }
    
    .arshin__input__block input,
    .arshin__input__block select,
    .arshin__input__block button {
        width: 100%;
    }
    
    .arshin__section .container {
        padding: 40px 20px 30px;
    }

 
}

@media (max-width: 900px) {
    .smart__organization__list {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .smart__organization__item {
        margin: 0 30%;
    }
}

@media (max-width: 800px) {
    .promo__item {
        grid-template-columns: 1fr;
        grid-template-areas: 'img'
                             'txt'
                             'btn';
    }

    .smart__organization__item {
        height: 100px;
        padding: 10px;
    }

    .smart__organization__item div {
        min-width: 80px;
        height: 80px;
    }

    .product__section .product__container {
        flex-direction: column;
    }

    .product__left,
    .product__right {
        width: 100%;
    }

    .product__right {
        gap: 20px;
    }

    .product__form {
        justify-content: space-evenly;
    }

    .tab__btn__product .tab__btn {
        padding: 10px 10px;
    }
    
    .article__item {
        display: flex;
        flex-direction: column;
        padding: 15px;
        gap: 20px;
    }
    
    .article__content {
        padding: 0;
    }
    
    .article__content {
        font-size: 16px;
        gap: 15px;
    }

}

@media (max-width: 768px) {
    
    .blago__slider.swiper {
        padding-bottom: 90px;
    }

    .main__hero__slide .button {
        display: none;
    }
    
    h1.section__title {
        font-size: 32px;
    }

    h2.section__title {
        font-size: 28px;
    }

    .about__main__text p {
        font-size: 18px;
    }

    .attention__right {
        display: none;
    }

    .attention__background {
        left: initial;
        transform: initial;
        right: 0;
        max-width: 380px;
    }

    .ymap__contacts {
        position: initial;
        padding: 10px 0;
        gap: 10px;
    }

    .float__container {
        max-width: 50%;
    }

    .advantage__item {
        width: 350px;
    }

    .service__table__row {
        grid-template-columns: 1fr 0.35fr 0.7fr;
        gap: 10px;
    }

    .service__table__row div {
        justify-content: center;
    }

    .tab__btn__geo__main {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .contacts__grid {
        grid-template-columns: 1fr;
        grid-template-areas:
            'info'
            'rate'
            'social'
            'acred';
    }

    .calculator__input__container {
        grid-template-columns: 1fr;
    }

    .tab__btn__shop {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    h1.section__title {
        font-size: 28px;
    }

    .title__section p,
    .title__section li {
        font-size: 14px;
    }

    .about__main__text p {
        font-size: 16px;
    }

    .title__section .container {
        gap: 15px;
    }

    .service__table__name {
        font-size: 16px;
    }

    .service__table__price {
        font-size: 18px;
    }

    .service__table__section .container {
        padding: 20px 10px;
    }

    .service__table__section .button {
        font-size: 14px;
        padding: 10px 5px;
    }

    .service__block {
        padding: 15px 10px;
    }
    
    .service__include__list {
        width: 100%;
    }

    .service__bloc__content {
        flex-direction: column;
        gap: 10px;
    }

    .service__price__block {
        width: 100%;
    }

    .work__slide p {
        font-size: 16px;
        text-align: center;
        padding: 0 10px;
    }

    .about__main__section .container {
        flex-direction: column;
    }

    .about__main__right {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    } 
    
    .about__main__right .video__container {
        width: 80%;
    }
    
    .about__main__left {
        width: 100%;
    }

    .certif__slide img {
        width: 100%;    
    }

    .about__ir__list {
        flex-direction: column;
        gap: 15px;
    }

    .about__ir__item {
        width: 100%;
        gap: 10px;
    }

    .about__ir__item h3 {
        font-size: 28px;
    }

    .attention__block {
        padding-bottom: 250px;
    }

    .faq__accord__content{
        font-size: 16px;
    }
    
    .tab__btn__geo__region .tab__btn__two {
        font-size: 18px;
        padding: 10px 15px;
    }

    .geo__area__item {
        padding: 10px;
    }

    .contacts__social {
        align-items: center;
    }

    .map__link img {
        object-fit: fill;
    }

    .float__content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .float__container {
        max-width: 100%;
        padding: 0 0 10px;
    }

    .advantage__item {
        padding: 5px;
    }

    .how__we__work__step .number {
        padding: 20px 15px 20px 20px;
    }

    .how__we__work__step {
        padding: 100px 10px 10px;
    }

    .how__we__work__step .title {
        font-size: 22px;
    }

    .how__we__work__step .text {
        font-size: 16px;    
    }

    .callback__form {
        padding: 15px 15px;
    }

    .callback__form__left {
        gap: 15px;    
    }

    .callback__form__left h3 {
        font-size: 28px;
    }

    .callback__form__left p {
        font-size: 18px;
        text-align: center;
    }

    .callback__form__policy p {
        font-size: 12px;    
        text-align: left;
    }

    .callback__form__left button {
        padding: 15px;    
    }

    .article__slide__content {
        height: 200px;
    }

    .partnership__section .container {
        flex-direction: column-reverse;
    }

    .partnership__left {
        height: auto;
        width: 100%;
    }

    .partnership__right {
        width: 100%;
    }


    .all__video__container {
        grid-template-columns: 1fr 1fr;
    }

    .main__gallery__container,
    .service__gallery__container {
        grid-template-columns: 1fr 1fr;
    }

    .two__block__container {
        flex-direction: column;
    }

    .two__block__content,
    .two__block__image {
        width: 100%;
    }

    .workers__container {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .smart__content__section h3 {
        font-size: 22px;    
    }

    .smart__content__section p, .smart__content__section li {
        font-size: 16px;    
    }

    .calculator__input__container label {
        font-size: 20px;
    }

    .calculator__input__container select {
        padding: 10px 10px;    
    }

    .product__form {
        flex-direction: column;
    }

    .tab__btn__product {
        padding-left: 0;
    }
    
    .tab__btn__about__container {
        justify-content: center;
    }
}

@media (max-width: 700px) {
    
    .smart__organization__item {
        margin: 0 0;
    }
    
    .hero__slider .swiper-wrapper {
        height: 300px;
    }
    
    .swiper-slide.main__hero__slide {
        padding: 10px;
        height: 100%;
        min-height: auto;
        justify-content: space-evenly;
    }

    .hero__slide__benefits {
        gap: 5px;
    }

    .main__hero__slide h3 {
        font-size: 24px;
    }

    .hero__slide__price {
        font-size: 44px;
    }

    .hero__benefit__item h4,
    .hero__benefit__item p {
        font-size: 12px;
    }
    
    .hero__benefit__item {
        gap: 5px;
    }
    
    .swiper-slide.main__hero__slide {
        padding: 5px;
    }

}  

@media (max-width: 600px) {
    
    .popup input[type="input"], .popup input[type="text"], .popup input[type="tel"], .popup input[type="date"], .popup textarea, .popup select {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .popup__inner {
        padding: 15px;
        max-width: 90%;
    }
    
    .popup__form {
        gap: 10px;
    }
    
    .popup__form .button  {
        font-size: 14px;    
    }
    
    .popup__head, .popup__head__desc {
        margin-bottom: 10px;
        line-height: 1.2;
    }
    
    .callback__policy {
        font-size: 12px;
    }
    
    section {
        margin-bottom: 15px;
    }
    
    section .container {
        padding-inline: 10px;
    }
    
    .hero__slider.swiper {
        padding-bottom: 20px;
    }
    
    .title__section .container {
        gap: 10px;
    }
    
    .title__section p {
        text-align: center;
        line-height: 1.2;
    }
    
    h1.section__title {
        font-size: 19px;
    }
    
    .title__section .button {
        width: 80%;
        height: 50px;
    }
    
    .mobile__accord__head {
        padding: 5px 20px;
        justify-content: flex-start;
    }

    .mobile__nav__link ul li {
        padding: 5px 20px;
        justify-content: flex-start;
        text-align: left;
    }

    .footer .container.desktop {
        display: none;
    }

    .footer {
        padding: 60px 20px 20px;
        background-color: #292929;
    }

    .footer .container.mobile {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .footer .container.mobile a {
        text-decoration: underline;
    }
    
    .about__main__right .video__container {
        width: 100%;
        height: 200px;
    }
    
    .blago__slide img {
        height: 350px;
    }
    
}

@media (max-width: 550px) {
    .blago__slider.swiper {
        padding-bottom: 120px;
    }
    
    .team__slider.swiper {
        padding-bottom: 60px;
    }
    
    .work__slide {
        height: 300px;
    }
    
    .faq__accord__head h3 {
        font-size: 18px;
    }

}

@media (max-width: 500px) {
    
    .hero__section .conainer {
        padding-inline: 10px;
    }
    
    .hero__slider .swiper-wrapper {
        height: 150px;
    }

    .main__hero__slide h3 {
        font-size: 20px;
    }

    .hero__slide__price {
        font-size: 32px;
    }
    
    main {
        padding-top: 160px;
    }
    
    .faq__accord__head {
        gap: 10px;
        padding: 5px 5px 10px;
    }
    
    .faq__accord__head h3 {
        font-size: 14px;
    }
}

@media (max-width: 425px) {
    
    .simple__captcha {
        gap: 10px;
    }
    
    .popup__inner {
        padding: 10px;
    }
    
    .simple__captcha img {
        width: 45%;
    }
    
    .captcha__field {
        gap: 0;
    }

    input[type="checkbox"],
    input[type="input"],
    input[type="text"],
    input[type="tel"],
    textarea, select {
        padding: 15px 15px;
        font-size: 14px;
    }

    .header__logo {
        width: 200px;
    }
    
    .header__promo .container {
        justify-content: center;
    }

    .header__promo p {
        display: none;
    }

    .footer__social {
        justify-content: flex-start;
        gap: 25px;
    }

    .footer .container.mobile {
        align-items: flex-start;
    }

    h1.section__title {
        font-size: 24px;
    }

    h2.section__title {
        font-size: 22px;    
    }

    .step__item p {
        font-size: 14px;
    }

    .step__item h3 {
        font-size: 22px;
    }

    .service__table__row {
        gap: 5px;    
        grid-template-columns: 1fr 0.5fr 0.7fr;
    }

    .service__table__row:not(.service__table__head) {
        padding: 10px 0;
    }

    .service__table__name {
        font-size: 14px;    
    }

    .service__table__section .button {
        font-size: 12px;
    }

    .service__block h2 {
        font-size: 22px;
    }

    .arshin__input__block {
        gap: 15px;
    }

    .tab__btn, .tab__btn__two {
        padding: 15px 15px;
    }

    .tab__btn__about__container {
        justify-content: center;
    }

    .attention__block {
        padding-inline: 10px;
    }

    .video__rev__slide.swiper-slide {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .video__rev__slide .video__container {
        width: 200px;
        border-radius: 16px;
        overflow: hidden;
    }

    .faq__item.active .faq__accord__content {
        padding: 10px 5px;    
    }

    .text__section .container {
        text-align: center;    
    }

    .rev__art__btn__container {
        justify-content: center;    
    }

    .review__article__section p {
        font-size: 14px;    
    }

    .text__rev__slide.swiper-slide {
        gap: 10px;
        padding: 10px 10px;
    }

    .all__video__container,
    .main__gallery__container, 
    .service__gallery__container,
    .workers__container {
        gap: 10px;
        grid-template-columns: 1fr;
    }

    .float__content li {
        text-align: left;
    }

    .two__block__content, .two__block__image {
        text-align: center;
    }

    .service__list__item.swiper-slide,
    .lab__list__item.swiper-slide {
        padding: 10px;
        gap: 10px;
    }

    .service__item__desc h3,
    .lab__item__desc h3 {
        font-size: 20px;
    }

    .service__item__icon,
    .lab__item__icon  {
        width: 75px;
        height: 75px;
    }

    .smart__content__section p {
        text-align: center;
    }

    .calculator__input__container {
        gap: 10px;
    }

    .product__price__block span, .product__price,
    .product__count  {
        font-size: 28px;
    }

    .product__total, .product__total span {
        font-size: 18px;
    }

    .tab__btn__product .tab__btn {
        padding: 10px 15px;
        min-width: 100px;
    }

    .tab__btn__shop .tab__btn {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }

}

@media (max-width: 360px) {
    :root {
        --swiper-pagination-bullet-size: 12px;
    }
    
    .header__top {
        padding: 10px 15px;
    }
    
    .simple__captcha {
        gap: 5px;
    }
    
    .simple__captcha img {
        width: 40%;
    }
    
    .popup__head {
        font-size: 20px;
    }
    
    .callback__policy p {
        line-break: anywhere;
    }
    
    .popup__head__desc {
        font-size: 16px;
    }

    
    section {
        margin-bottom: 10px;
    }
    
    h1.section__title {
        font-size: 18px;    
    }
    
    main {
        padding-top: 140px;
    }
    
    .title__section .container {
        gap: 5px;
    }

}