html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

* {
    box-sizing: border-box;
    font-family: 'Exo', sans-serif;
    list-style: none;
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5 {
    margin-top: 0;
    margin-bottom: 0;
}

p {
    margin: 0;
}

html,
body {
    height: 100%;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

.title {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 40px;
}

.text {
    font-size: 18px;
    line-height: 1.1;
}

.content {
    flex: 1 0 auto;
}

.footer {
    flex: 0 0 auto;
}

.container,
.content-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

@media screen and (min-width: 600px) {
    .container,
    .content-container {
        padding-left: 40px;
        padding-right: 40px;
    }

    .title {
        font-size: 44px;
    }
}

@media screen and (min-width: 1024px) {
    .container {
        max-width: 1385px;
    }

    .content-container {
        max-width: 1200px;
    }
}

.no-scroll {
    height: 100vh;
    overflow-y: hidden;
}

.btn-blue {
    background-color: #2F80ED;
    color: #FFFFFF;
    transition: background-color .4s ease;
    border-radius: 4px;
    padding: 16px 30px;
    font-size: 20px;
    min-width: 190px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

.btn-blue:hover {
    background-color: #2375e4;
}

/*------------------ header-----------------------*/
.header {
    background-color: #FFFFFF;
    color: #103844;
    padding: 40px 0;
}
.header__logo {
    width: 127px;
    height: 44px;
}

.header__img-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.header__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #F1F5F9;
    padding-bottom: 5px;
}

.header__menu-top {
    display: block;
}

.header__bottom {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.header__phone {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
    color: #2C2C2C;
    text-decoration: none;
}

.header__phone:hover {
    color: #2F80ED;
    text-decoration: none;
    outline: none;
}

.header__contact {
    display: none;
}

.menu-list {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 850px;
    width: 100%;
}

.menu-list__item {
    list-style-type: none;
    padding-right: 30px;
}

.menu-list__item:last-child {
    padding-right: 0;
}

.menu-list__link:before {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    top: -25px;
}

.menu-list__link_company:before {
    background-image: url("../image/icons/company.svg");
}

.menu-list__link_action:before {
    background-image: url("../image/icons/action.svg");
}

.menu-list__link_contact:before {
    background-image: url("../image/icons/contact.svg");
}

.menu-list__link:hover {
    color: #2F80ED;
    text-decoration: none;
    outline: none;
}

.menu-list__link {
    text-decoration: none;
    color: #000000;
    position: relative;
    transition: color 0.5s ease-out;
}

/* Верхнее меню */
.top-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: row nowrap;
    margin: 0;
    padding: 0;
    font-size: 16px;
    line-height: 18px;
}

.menu-main {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.menu-main__item {
    list-style-type: none;
    position: relative;
}

.menu-main__item_arrow:after {
    content: '';
    position: absolute;
    display: block;
    width: 12px;
    height: 12px;
    background: url("../image/icons/arrow.svg") no-repeat;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.menu-main__link {
    line-height: 1.1;
    text-decoration: none;
    color: #000000;
    position: relative;
    transition: color 0.5s ease-out;
    cursor: pointer;
}

.menu-main__link:hover {
    color: #2F80ED;
    text-decoration: none;
    outline: none;
}

/*________Выпадающий список start______*/

.menu-main__list {
    padding-left: 0;
    list-style: none;
}

.menu-main__item {
    position: relative;
}

.card-price .price-block {
    margin-top: 0;
    padding-bottom: 20px;
}

.card-price .price {
    font-size: 28px;
}

.submenu {
    display: none;
    position: absolute;
    background: #FFFFFF;
    padding: 10px 15px;
    border-radius: 12px;
    box-shadow: 2px 2px 6px 5px #0000001a;
    z-index: 5;
}

.submenu__link {
    color: #000000;
}

.submenu__link:hover {
    color: #2F80ED;
    text-decoration: none;
    outline: none;
}

.menu-active {
    display: block;
}

.dropdown {
    color: #000000;
    box-shadow: 0 4px 6px #0000001a;
}

.dropdown-item a {
    padding: 0;
    text-align: left;
}

.sidebar-open,
.sidebar-close {
    display: none;
}

@media screen and (max-width: 1024px) {
    .submenu {
        position: relative;
        background-color: transparent;
        box-shadow: none;
        border-radius: 0;
        min-width: fit-content;
    }

    .dropdown {
        box-shadow: none;
    }

    .menu-main {
        align-items: start;
    }

    .header__bottom.active {
        overflow-y: scroll;
    }
}

@media screen and (min-width: 450px) {
    .header__contact {
        display: block;
    }
}

@media screen and (min-width: 1023px) {
    .menu-main__item:hover .submenu {
        display: flex;
        flex-direction: column;
        min-width: 200px;
    }
}

.item-card {
    background-color: #FFFFFF;
}

.cards-container {
    display: grid;
    gap: 30px;
    grid-template-columns:  repeat(auto-fit, minmax(250px, 366px));
    font-size: 14px;
}

.cards-wrapper {
    display: grid;
    gap: 30px;
    grid-template-columns:  repeat(auto-fit, minmax(250px, 1fr));
    font-size: 14px;
}

.card {
    display: inline-block;
    overflow: hidden;
    background: #fff;
    line-height: 22px;
    padding: 20px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.08);
    transition: box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    position: relative;
}

.card:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.card:active {
    color: inherit;
}

.card-image img {
    width: 100%;
    object-fit: cover;
    height: 220px;
    border-radius: 10px;
}

.card__image {
    width: 100%;
    object-fit: cover;
    height: 100%;
    border-radius: 10px;
}

.card img {
    transition: 1s;
    display: block;
    height: 220px;
}

.card__sales {
    position: relative;
}

.card-description {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.1;
    padding-top: 16px;
    color: #000000;
}

.card .card-date {
    color: #2C2C2C;
    font-weight: 600;
}


@media screen and (max-width: 799px) {
    .sidebar {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        height: 100%;
        z-index: 50;
        background-color: #f1f5f9;
        padding: 30px 0;
        transform: translateX(-100%);
        transition: .3s;
        overflow-y: auto;
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .sidebar-close {
        margin-left: auto;
        display: block;
        margin-right: 20px;
        margin-top: 10px;
        margin-bottom: 20px;
        width: 27px;
        height: auto;
    }

    .sidebar-open {
        margin-bottom: 30px;
    }

    .sidebar-open,
    .sidebar-close {
        display: block;
    }
}

@media screen and (max-width: 1024px) {
    .cards-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media screen and (min-width: 850px) {
    .cards-wrapper {
        grid-template-columns:  repeat(auto-fit, minmax(250px, 272px));
    }
}

.hover-image-scale {
    display: inline-block;
    overflow: hidden;
}

.hover-image-scale img {
    transition: 1s;
    display: block;
}

.hover-image-scale img:hover {
    transform: scale(1.2);
}


/*________Footer______*/

.footer {
    background-color: #2F80ED;
    color: #fff;
    position: relative;
    width: 100%;
    min-height: 400px;
    bottom: 0;
    padding: 40px 0;
}

.footer__wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
    margin-bottom: 6px;
}

.footer__item {
    color: #FFFFFF;
    padding-top: 14px;
    position: relative;
}

.footer__item_block {
    padding-left: 26px;
}

.footer__item_address:before,
.footer__item_email:before,
.footer__item_phone:before {
    content: '';
    position: absolute;
    left: 0;
    display: block;
    background-repeat: no-repeat;
}

.footer__item_address:before {
    width: 17px;
    height: 19px;
    background-image: url("../image/icons/marker.svg");
}

.footer__item_email:before {
    width: 18px;
    height: 18px;
    background-image: url("../image/icons/email.svg");
}

.footer__item_phone:before {
    width: 19px;
    height: 18px;
    background-image: url("../image/icons/phone-while.svg");
}

.footer__link {
    color: #FFFFFF;
    position: relative;
    font-weight: 400;
}

.footer__link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0;
    height: 1px;
    background-color: #FFFFFF;
}

.footer__link:hover:before {
    width: 100%;
}

.footer__link::before {
    transition: width 0.35s;
}

.footer__copyright {
    margin-top: 30px;
    text-align: center;
}

@media screen and (min-width: 768px) {
    .footer {
        padding: 50px 0;
    }

    .footer__title {
        margin-bottom: 26px;
    }

    .container,
    .content-container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/*________Footer End______*/

.header__bottom li a {
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    padding: 10px 0;
    position: relative;
    transition: 0.3s;
}

.burger {
    display: none;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.7);
    transition: all 0.35s ease-in-out;
}

.menu-mobile {
    display: none;
}

@media (max-width: 1024px) {
    .header {
        box-shadow: 0 4px 6px #0000001a;
        padding: 15px 0;
    }

    .burger {
        display: flex;
        background-color: transparent;
        border: none;
        padding: 0;
        flex-direction: column;
        gap: 6px;
        justify-content: center;
    }

    .burger_line {
        width: 32px;
        height: 3px;
        background-color: #000000;
        display: block;
        transition: 0.3s;
    }

    .burger.active .burger_line:nth-child(1) {
        transform: translateY(9px) rotate(-45deg);
    }

    .burger.active .burger_line:nth-child(2) {
        opacity: 0;
    }

    .burger.active .burger_line:nth-child(3) {
        transform: translateY(-9px) rotate(45deg);
    }

    .header__bottom {
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        width: 70vw;
        transform: translateX(-100%);
        transition: 0.3s;
        z-index: 999;
    }

    .header__bottom.active {
        transform: translateX(0);
    }

    .overlay.active {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .header__bottom ul {
        flex-direction: column;
        gap: 16px;
        padding: 12px 30px;
    }

    .header__bottom.active {
        background-color: #DCEAF8;
    }

    .header__top {
        border-bottom: none;
    }

    .header__menu-top {
        display: none;
    }

    .menu-mobile {
        display: block;
    }
}

@media (max-width: 767px) {
    .logo {
        width: 140px;
    }
}

/*----------------------------Our-Service---------------------------------------*/

.our-service {
    max-width: 1024px;
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(6, 1fr);
    padding: 10px;
    font-size: 14px;
}

.card-service {
    display: inline-block;
    overflow: hidden;
    background: #DCEAF8;
    line-height: 22px;
    padding: 20px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.08);
    transition: box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    position: relative;
    color: #000000;
    max-width: 350px;
    height: 450px;
    margin: 0 auto;
}

.service-wrapper {
    max-width: 1024px;
    display: grid;
    gap: 30px;
    grid-template-columns:  repeat(auto-fit, minmax(250px, 308px));
    justify-content: center;
    margin: 0 auto;
}


.theme-btn {
    background-color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    color: #2b3b95;
    padding: 9px 32px;
    border: 0;
    border-radius: 3px;
    text-transform: uppercase;
    display: inline-block;
    transition: all .4s ease;
}


a {
    text-decoration: none;
    transition: all 0.2s ease;
}

.theme-btn-s3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #ffffff;
    text-transform: uppercase;
}

i.fa-chevron-circle-right {
    height: 22px;
    width: 22px;
}

a:hover {
    text-decoration: none;
}

/*______________ASK_FORM__________________________________*/

.info-success {
    text-align: center;
    padding-top: 20px;
    font-size: 24px;
    color: #13ef71;
}

.required-field {
    color: #f83838;
}


.alert {
    margin-bottom: 1em;
    padding: 10px;
    background: #0ff817;
    font-family: 'Mukta Mahee', sans-serif;
    font-size: 14px;
    text-align: center;
    color: #fff;
    border-radius: 2.5px;
    display: none;
}


.wrap {
    width: 100%;
    min-width: 20em;
}


#title {
    width: 100%;
    margin: 0;
    padding: .5em 0;

}

#title h1 {
    text-align: center;
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-size: 2em;
    font-weight: 400;
    line-height: 1em;
    margin-top: .3em;
}

.popup-form {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    display: none;
}

.popup-form.appear {
    display: block;
    animation: appear 0.3s ease forwards;
}

/*------------------------Legal-Info--------------------------*/

article {
    display: flex;
    flex-direction: column;
    gap: 3.6rem;
}

.content-legal__info {
    display: flex;
    flex-direction: column;
}

section {
    padding: 2rem 0;
}

@media screen and (min-width: 48rem) {
    .content-legal__info {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-auto-flow: row dense;
    }

    .content-body {
        grid-column: 2 / -1;
    }
}

/*--------------------Partner-Slider-----------------*/


.partner-title {
    font-size: 20px;
    padding-bottom: 30px;
}

.partner {
    padding: 72px 0;
    background-color: #F1F5F9;
}

.carousel-partner {
    margin: 20px 0;
    padding: 0 20px;
}

.partner-card-image {
    width: 250px;
    object-fit: cover;
    height: 50px;
    border-radius: 10px;
}

.carousel-partner .swiper-slide a {
    display: block;
    width: 100%;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    -webkit-box-shadow: 3px 2px 20px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 3px 2px 20px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 3px 2px 20px 0px rgba(0, 0, 0, 0.2);
}

.carousel-partner .swiper-slide a:hover .image .overlay {
    opacity: 1;
}

.carousel-partner .swiper-slide a .image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
}

.carousel-partner .swiper-slide a .image .overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(20, 20, 20, 0.8);
    text-align: center;
    opacity: 0;
    transition: all 0.2s linear;
}

.carousel-partner .swiper-slide a .image .overlay em {
    color: #fff;
    font-size: 26px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
}

.carousel-partner .swiper-pagination {
    position: relative;
    bottom: auto;
    text-align: center;
    margin-top: 25px;
}

.carousel-partner .swiper-pagination .swiper-pagination-bullet {
    transition: all 0.2s linear;
}

.carousel-partner .swiper-pagination .swiper-pagination-bullet:hover {
    opacity: 0.7;
}

.carousel-partner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #d63031;
    transform: scale(1.1, 1.1);
}

.product-card {
    background-color: #F1F5F9;
    padding: 80px 0;
}

.product-wrapper {
    background-color: #FFFFFF;
    width: 100%;
    /*padding-bottom: 80px;*/
}


/*navigation*/

.navigation {
    margin-top: 50px;
}

.navigation svg {
    width: 20px;
    height: auto;
}

.navigation .flex-1 {
    display: none;
}

.navigation a {
    color: #000000;
}

.navigation span[aria-current="page"] {
    color: #ffffff;
    background-color: #0d6efd;
    padding: 5px 10px;
    border-radius: 3px;
}

.navigation > nav > div.hidden.sm\:flex-1.sm\:flex.sm\:items-center.sm\:justify-between div:first-child {
    display: none;
}

.navigation > nav > div.hidden.sm\:flex-1.sm\:flex.sm\:items-center.sm\:justify-between div:last-child .relative {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navigation > nav > div.hidden.sm\:flex-1.sm\:flex.sm\:items-center.sm\:justify-between a.active\:bg-gray-100 svg {
    fill: #0d6efd;
}

.content-pb {
    padding-bottom: 80px;
}

.about-company {
    background-color: #DCEAF8;
    padding: 80px 0;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.about-company__image {
    width: 100%;
    max-height: 600px;
    min-height: 200px;
    object-fit: cover;
    border-radius: 15px;
}

.about-company__image_top {
    margin-top: 30px;
}

.about-company__description {
    font-size: 20px;
    line-height: 1.2;
    margin-top: 40px;
}

.about-company__text,
.about-company__data {
    margin-top: 50px;
}

.about-company__text,
.about-company__text p,
.about-company__text span {
    font-size: 18px !important;
    color: #000000 !important;
    background-color: transparent !important;
}

.about-company__grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    margin: 30px auto 0;
    justify-content: center;
}

.card-year {
    padding: 30px;
    background-color: #FFFFFF;
    border-radius: 15px;
}

.card-year__image {
    position: relative;
    font-size: 26px;
    line-height: 1.3;
    padding-left: 90px;
    color: #3d3d63;
}

.card-year__image:before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background-repeat: no-repeat;
    left: -14px;
    top: -18px;
}

.card-year__decsription {
    font-size: 20px;
    line-height: 1.2;
    margin-top: 50px;
}

.card-year__image_start:before {
    background-image: url('../image/icons/business-start.svg');
}

.card-year__image_award:before {
    background-image: url('../image/icons/award.svg');
}

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

@media screen and (max-width: 500px) {
    .about-company {
        padding: 45px 0 70px;
    }

    .card-year__decsription,
    .about-company__grid {
        margin-top: 30px;
    }

    .about-company__description {
        margin-top: 20px;
    }
}

@media screen and (min-width: 768px) {
    .about-company__grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 360px));
        margin-top: 50px;
    }
}

.action {
    padding-bottom: 60px;
    background-color: #FFFFFF;
}

.action__title {
    margin-top: 0;
}

.cards-container {
    justify-content: flex-start;
}

.item-card__image {
    max-width: 500px;
    min-height: 300px;
    max-height: 500px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.item-card__action {
    background-color: #FFFFFF;
}

.item-card__text {
    font-size: 26px;
    line-height: 1.2;
    margin-top: 40px;
}

.item-card__btn {
    margin-top: 50px;
}

.card {
    display: grid;
}

.card-date {
    margin-top: 16px;
    align-self: end;
}

@media screen and (min-width: 991px) {
    .item-card__wrapper {
        display: flex;
        column-gap: 50px;
    }

    .item-card__text {
        margin-top: 0;
    }
}

@media screen and (max-width: 1024px) {
    .action .cards-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

.article-company {
    background-color: #FFFFFF;
    padding-bottom: 80px;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.article-company__image {
    width: 100%;
    max-height: 830px;
    min-height: 200px;
    object-fit: cover;
    border-radius: 15px;
}

.article-company__image_top {
    margin-top: 30px;
}


.article-company__title {
    margin-top: 0;
}

.article-company__text,
.article-company__data {
    margin-top: 50px;
}

.article-company__text,
.article-company__text p,
.article-company__text span {
    font-size: 18px !important;
    color: #000000 !important;
    background-color: transparent !important;
}

.article-company__grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    margin: 30px auto 0;
    justify-content: center;
}

.card-year {
    padding: 30px;
    background-color: #FFFFFF;
    border-radius: 15px;
}

.card-year__image {
    position: relative;
    font-size: 26px;
    line-height: 1.3;
    padding-left: 90px;
    color: #3d3d63;
}

.card-year__image:before {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    background-repeat: no-repeat;
    left: -14px;
    top: -18px;
}

.card-year__decsription {
    font-size: 20px;
    line-height: 1.2;
    margin-top: 50px;
}

.card-year__image_start:before {
    background-image: url('../image/icons/business-start.svg');
}

.card-year__image_award:before {
    background-image: url('../image/icons/award.svg');
}

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

.article-company__description {
    margin-top: 30px;
}

@media screen and (max-width: 500px) {
    .article-company {
        padding: 45px 0 70px;
    }

    .card-year__decsription,
    .article-company__grid {
        margin-top: 30px;
    }
}

@media screen and (min-width: 768px) {
    .article-company__grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 360px));
        margin-top: 50px;
    }
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    padding-bottom: 40px;
}

.breadcrumbs__link {
    color: #2F80ED;
    font-weight: 500;
    transition: color .4s ease-in;
}

.breadcrumbs__link:hover {
    color: #100de6;
}

.breadcrumbs__separator {
    color: #2F80ED;
    margin: auto 3px;
    user-select: none;
    padding-right: 2px;
}

.breadcrumbs__list.active {
    font-weight: 500;
}

@media screen and (max-width: 1024px) {
    .breadcrumbs {
        padding-top: 40px;
    }
}

.catalog {
    background-color: #DCEAF8;
    padding: 80px 0;
}

.catalog-title {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.catalog-service {
    background-color: #F1F5F9;
    padding: 72px 0;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

@media screen and (max-width: 500px) {
    .catalog-service,
    .catalog {
        padding: 45px 0;
    }
}

.catalog-service {
    background-color: #DCEAF8;
    padding: 80px 0;
}

.card-item__service {
    background-color: #ffffff;
    color: #000000;
    border-radius: 10px;
    min-height: 200px;
    overflow: hidden;
    padding: 30px 20px;
    display: inline-block;
    line-height: 22px;
    font-size: 16px;
}

.item-service__image {
    position: relative;
    padding-left: 60px;
    font-size: 24px;
}

.item-service__image:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-repeat: no-repeat;
}

.item-service__image_measument:before {
    background-image: url('../image/icons/measument.svg');
}

.item-service__image_settings-gear:before {
    background-image: url('../image/icons/settings-gear.svg');
}

.item-service__image_warranty:before {
    background-image: url('../image/icons/warranty.svg');
}

.item-service__image_delivery:before {
    background-image: url('../image/icons/delivery.svg');
}

.item-service__image_setup:before {
    background-image: url('../image/icons/setup.svg');
}

.item-service__image_settings:before {
    background-image: url('../image/icons/settings.svg');
}


.item-service__decsription {
    margin-top: 22px;
}


.item-service__image {
    position: relative;
    padding-left: 60px;
    font-size: 24px;
}

.item-service__image:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-repeat: no-repeat;
}

.catalog-service__container {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    margin: 20px auto;
}


.item-service__decsription {
    margin-top: 22px;
    font-size: 18px;
    line-height: 1.1;
}

@media screen and (min-width: 1024px) {
    .catalog-service__container {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }

    .item-service__image {
        font-size: 20px;
    }
}

.certificate {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.certificate-card {
    overflow: hidden;
    background: #FFFFFF;
    border-radius: 10px;
    max-width: 300px;
    max-height: 400px;
    margin: 0 auto;
}

.certificate-card-image {
    width: 100%;
    height: 100%;
    background-color: #eaebeb;
}

.section-header-customer .title-customer {
    font-size: 35px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1.2;
}

.certificate-item {
    background-color: #F1F5F9;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    align-items: center;
}

.certificate-item .name-certificate {
    font-size: 24px;
    text-transform: capitalize;
    font-weight: 600;
    color: black;
    line-height: 1.2;
}

.certificate-item p {
    margin-top: 20px;
    color: rgb(128, 128, 128);
}

.certificate .swiper-pagination {
    position: relative;
    margin-top: 40px;
    bottom: auto;
}

.certificate .swiper-pagination-bullet {
    height: 12px;
    width: 12px;
    background-color: hsl(196, 96%, 48%)
}

@media screen and (max-width: 768px) {
    .slide p {
        padding: 0 20px;
    }

    .nav-btn {
        display: none;
    }
}

.company {
    padding: 80px 0;
    background-color: #FFFFFF;
    flex-direction: row;
    display: flex;
    gap: 60px;
}

.company__about,
.company__news {
    width: 100%;
}

.company__title {
    margin-top: 45px;
}

.company__grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    margin: 20px auto;
}

.company__btn {
    padding-top: 40px;
}

.company__info {
    float: left;
    background-color: #F1F5F9;
    padding: 72px 0;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.company__text {
    font-size: 20px;
    line-height: 1.4;
    margin-top: 30px;
}

.company__paragraf {
    font-size: 18px;
    line-height: 1.3;
    margin-top: 20px;
}

.company___btn {
    margin-top: 30px;
}

.item-card {
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #eaebeb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 300ms;
    position: relative;
}

.item-card__block {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 10px 20px;
    background-color: #ffffffbd;
    width: 100%;
    min-height: 78px;
}

.item-card__title,
.item-card__date {
    font-size: 16px;
    line-height: 1;
    color: #000000;
    font-weight: 600;
}

.item-card__date {
    margin-top: 10px;
}

.item-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

@media screen and (min-width: 1024px) {
    .company__wrapper {
        display: flex;
        justify-content: space-between;
        gap: 30px;
    }

    .company__about {
        max-width: 500px;
    }

    .company__news {
        max-width: 700px;
    }

    .company__title {
        margin-top: 0;
    }
}

.contacts {
    padding: 80px 0;
    background-color: #F1F5F9;
    overflow: hidden;
}

.contacts__wrapper {
    gap: 60px;
}

.contacts__item {
    font-size: 18px;
    line-height: 1.1;
    padding-left: 35px;
    position: relative;
}

.contacts__item:not(:first-child) {
    margin-top: 20px;
}

.contacts__item_block {
    font-size: 18px;
    line-height: 1.1;
    color: #000000;
    transition: color .5s ease-in;
}

.contacts__item_block:hover {
    color: #2F80ED;
    text-decoration: none;
    outline: none;
}

.contacts__item_address:before {
    content: '';
    position: absolute;
    left: 0;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    background-image: url("../image/icons/location-black.svg");
}

.contacts__item_email:before {
    content: '';
    position: absolute;
    left: 0;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    background-image: url("../image/icons/email-black.svg");
}

.contacts__item_phone:before {
    content: '';
    position: absolute;
    left: 0;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    background-image: url("../image/icons/phone-while-black.svg");
}

.contacts__item_web:before {
    content: '';
    position: absolute;
    left: 0;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    background-image: url("../image/icons/web.svg");
}

.contacts__item_clock:before {
    content: '';
    position: absolute;
    left: 0;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    background-image: url("../image/icons/clock_work.svg");
    top: 50%;
    transform: translateY(-50%);
}

.contacts__item_clock p {
    font-size: 18px;
    line-height: 1.1;
    padding-top: 14px;
}

.contacts-item__map {
    max-width: 800px;
    width: 100%;
    margin-top: 40px;
    position: relative;
    min-height: 250px;
}

.contacts-item__map iframe {
    height: 100%;
    min-height: 250px;
    position: absolute;
    left: -60px;
    width: calc(100% + 80px);
}

@media screen and (min-width: 768px) {
    .contacts__wrapper {
        display: flex;
        flex-direction: row;
    }

    .contacts-item__map {
        margin-top: 0;
        min-height: 320px;
    }

    .contacts-item__map iframe {
        width: 100%;
        min-height: 320px;
        position: relative;
        left: inherit;
    }
}

.customer__wrapper {
    padding: 80px 0;
}

.testimonials-customer {
    padding: 100px 0;
}

.testimonials-content-customer {
    margin-top: 30px;
}

.js-testimonials-slider {
    padding-bottom: 50px;
}

.customer__subtitle {
    font-size: 20px;
    line-height: 1.1;
    padding-bottom: 30px;
    max-width: 560px;
    width: 100%;
}

.section-header-customer {
    text-align: center;
    margin-bottom: 50px;
}

.section-header-customer .title-customer {
    font-size: 35px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1.2;
}

.testimonials-item.swiper-slide {
    height: initial;
}

.testimonials-item {
    background-color: #F1F5F9;
    padding: 30px;
    border-radius: 10px;
}

.testimonials-item .info-customer {
    display: flex;
    align-items: center;
}

.testimonials-item img {
    max-width: 80px;
    border-radius: 50%;
    margin-right: 20px;
    vertical-align: middle;
}

.testimonials-item .name-customer {
    font-size: 24px;
    text-transform: capitalize;
    font-weight: 600;
    color: black;
    line-height: 1.2;
}

.testimonials-item .location {
    color: rgb(38, 38, 38);
    font-size: 18px;
    line-height: 1.1;
    margin-top: 20px;
}

.testimonials-item p {
    font-size: 18px;
    line-height: 1.1;
    margin-top: 20px;
    color: rgb(128, 128, 128);
}

.testimonials-customer .swiper-pagination {
    position: relative;
    margin-top: 40px;
    bottom: auto;
}

.testimonials-customer .swiper-pagination-bullet {
    height: 12px;
    width: 12px;
    background-color: hsl(0, 0%, 100%)
}

.customer__btn {
    margin-top: 40px;
    cursor: pointer;
}

.customer .swiper-horizontal > .swiper-pagination {
    bottom: 0;
}

.customer .swiper-wrapper {
    align-items: stretch;
    padding-bottom: 40px;
}

@media screen and (max-width: 768px) {
    .slide p {
        padding: 0 20px;
    }

    .nav-btn {
        display: none;
    }

    .js-testimonials-slider {
        padding-bottom: 30px;
    }
}

.btn-reset {
    outline: none;
}

.modal__title {
    font-size: 32px;
    line-height: 1.3;
}

.modal__subtitle {
    font-size: 18px;
    line-height: 1.1;
    margin-top: 10px;
}

.modal__form {
    padding: 30px 20px;
    margin-bottom: 0;
}

.graph-modal__container {
    max-width: 750px;
}

.graph-modal__container.graph-modal-open {
    border-radius: 26px;
}

.graph-modal__close.btn-reset {
    right: 30px;
    top: 30px;
}

.field {
    padding-top: 20px;
}

.field label {
    display: block;
    margin-bottom: 6px;
}

.modal__message {
    resize: none;
    height: 120px;
}

.modal__section {
    color: #000000;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.1;
    background-color: #FFFFFF;
    width: 100%;
    padding: 10px 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid rgb(19, 30, 74);
    border-radius: 5px;
}

.modal__section:focus,
.modal__section:active {
    border: 1px solid #2F80ED;
}

.modal__btn:disabled {
    cursor: default;
    background-color: #4674b2;
}

.modal__btn:disabled:hover {
    background-color: #4674b2;
}

.modal__btn {
    background-color: #2F80ED;
    color: #FFFFFF;
    transition: background-color .4s ease;
    border-radius: 4px;
    padding: 16px 30px;
    font-size: 20px;
    cursor: pointer;
    outline: none;
    border: none;
    min-width: 190px;
    height: 55px;
}

.modal__btn:hover {
    background-color: #2375e4;
}

.modal__link {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.1;
}

.modal__img {
    max-width: 170px;
    width: 100%;
}

.modal__text {
    margin-top: 30px;
}

.hidden-modal {
    display: none;
}

.modal__success,
.modal__error {
    text-align: center;
    padding: 50px 10px;
}

@media (min-width: 768px) {
    .modal__title {
        font-size: 36px;
    }

    .modal__subtitle {
        font-size: 22px;
    }

    .modal__form {
        padding: 30px;
    }
}

@keyframes spinner-border {
    100% {
        transform: rotate(360deg);
    }
}

.modal__wrap {
    margin-top: 30px;
}

.submit-spinner.submit-spinner_hide {
    display: none;
}

.modal__spinner {
    position: relative;
    display: inline-block;
}

/*.graph-modal {*/
.preloader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.submit-spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    vertical-align: -0.125em;
    border: 0.2em solid #ffffff;
    border-right-color: transparent;
    border-radius: 50%;
    -webkit-animation: .75s linear infinite spinner-border;
    animation: .75s linear infinite spinner-border;
}

.partner {
    padding: 80px 0;
    background-color: #F1F5F9;
}

.partner__service {
    background-repeat: no-repeat;
    max-width: 300px;
    height: 200px;
    background-size: contain;
    background-position: center;
    display: block;
    background-color: white;
    border-radius: 16px;
    transition: box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.partner__service:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.partner__grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(150px, 260px));
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    margin-top: 50px;
}

.partner__text {
    font-size: 20px;
    line-height: 1.2;
}

@media screen and (max-width: 500px) {
    .partner {
        padding: 45px 0;
    }

    .partner__grid {
        margin-top: 30px;
    }
}

@media screen and (min-width: 768px) {
    .product-params__cell__td {
        width: 50%
    }
}

.portfolio-cards-container {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    justify-content: center;
    margin: 0 auto;
}

.portfolio-card {
    height: 225px;
    border-radius: 10px;
    overflow: hidden;
    max-width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.portfolio-card-certificat {
    height: 390px;
    border-radius: 10px;
    overflow: hidden;
    max-width: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.portfolio {
    padding-bottom: 80px;
}

@media screen and (min-width: 1024px) {
    grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
}

.item-card__info {
    padding-bottom: 80px;
    background-color: #FFFFFF;
}

.item-description h2 {
    font-size: 24px !important;
    color: #000000 !important;
}

.item-description p,
.item-description span {
    font-size: 20px !important;
    color: #000000 !important;
}

.item-description p {
    margin-top: 20px !important;
}

.item-description {
    font-size: 18px;
    margin-top: 100px;
}

.card-price__price {
    font-size: 24px;
    margin-bottom: 20px;
    padding-right: 15px;
    color: #000000;
}

.price {
    font-size: 20px;
    color: #000000;
    font-weight: 500;
    position: relative;
}

.old-price:after,
.price:after {
    content: ' \20BD';
}

.price:after {
    content: ' \20BD';
    position: absolute;
    width: 12px;
    height: 22px;
    padding-left: 5px;
}

.old-price {
    font-size: 18px;
    line-height: 1.2;
    color: #000000;
    position: relative;
    text-decoration: none;
    font-weight: 500;
    margin-left: 30px;
}

.old-price:before {
    content: "";
    border-bottom: 2px solid red;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
}

.title-item {
    padding-bottom: 20px;
}

.item-row {
    padding-bottom: 10px;
}

.price-block {
    display: flex;
    align-items: start;
    margin-top: 20px;
}

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

.item-slider-container {
    max-width: 1200px;
    /*padding: 0 15px;*/
    position: relative;
    margin: 0 auto;
}

.item-swiper-button-prev-partner,
.item-swiper-button-next-partner {
    background-color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px 20px;
}

.swiper-button-prev-partner::after,
.swiper-button-next-partner::after {
    display: none;
}

*, :after, :before {
    box-sizing: border-box !important;
}

.slider-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
}


.slider {
    display: flex;
    margin-top: 50px;
}

.slider-nav {
    display: none;
    overflow: hidden;
    width: 100px;
    margin-right: 10px;
    flex-shrink: 0;
    height: 500px;
}

.slider-nav.nav-content {
    width: 200px;
}

.slider-main {
    overflow: hidden;
    height: 230px;
}

.slider-nav .swiper-slide {
    width: 100px;
    height: 100px;
}

.slider-nav.nav-content .swiper-slide {
    width: 200px;
    height: 100px;
}

.card-price__text {
    margin-top: 20px;
}

.swiper-slide img {
    max-width: 730px;
    max-height: 500px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.swiper-slide img {
    max-width: 730px;
    max-height: 500px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.swiper-slide.max-content img {
    max-width: 100%;
}

.order-ask__btn {
    max-width: 100%;
    margin-top: 20px;
}

.order-ask__btn .btn-blue {
    max-width: 100%;
    display: block;
}

.card-tag {
    width: 100%;
    min-width: 70px;
    padding: 4px;
    font-size: 10px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    color: #fff;
    position: absolute;
}

.tag-novelty {
    background: #36b37e;
    max-width: 100px;
    top: 0;
    left: 0;
}

.tag-hit_sales {
    background: #f83838;
    max-width: 100px;
    bottom: 0;
    left: 0;
}

.tag-best_price {
    background: #fd5a00;
    max-width: 100px;
    top: 0;
    right: 0;
}

.item-slider-buttons {
    position: absolute;
    bottom: -65px;
}

.item-slider-buttons button {
    width: 40px;
    height: 40px;
    border: 1px solid #000000;
    background-color: #FFFFFF;
    border-radius: 50%;
}

.product-params__cell, .product-params__cell__td {
    width: 50%;
    color: #868695;
    font-weight: 400;
    text-align: left;
    vertical-align: top;
    padding: 4px 0;
}

.product-params__cell__td {
    color: #373738;
}


.product-params__cell-decor {
    position: relative;
    display: inline-block;
    vertical-align: bottom;
    width: 100%;
}

.product-params__cell-decor span {
    padding-right: 12px;
    position: relative;
    z-index: 1;
    background-color: #FFFFFF;
}

.product-params__cell-decor::after {
    content: "";
    display: block;
    width: 100%;
    height: 20px;
    position: absolute;
    left: 0;
    bottom: 5px;
    border-bottom: 1px dashed #d3d4dd;
}

.product-params__table td {
    width: 100%;
    text-align: left;
    vertical-align: bottom;
    padding: 4px 0 4px 12px;
}

.card-container__block {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-top: 100px;
    flex-direction: column;
}

.card-price {
    min-height: 280px;
    min-width: 260px;
    max-width: 500px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .08);
    padding: 30px 20px;
    border-radius: 16px;
}

.product-params__table {
    width: 100%;
}

.pt-40 {
    padding-top: 40px;
}

.info-item {
    max-width: 100%;
    width: 100%;
}

.sidebar li {
    list-style: none;
    transition: background-color .4s ease-in-out;
}

.sidebar .nav-link a {
    padding-left: 30px;
    padding-right: 10px;
}

.sidebar li .text {
    color: #707070;
    transition: all .3s;
}

.sidebar li a {
    height: 100%;
    width: 100%;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
    text-align: left;
    padding: 15px 0;
    color: #000000;
}

.menu-product {
    display: none;
    padding-left: 20px;
}

.nav-link.active .menu-product {
    display: block;
    background-color: #dceaf8;
}

.nav-link.active .nav-text {
    color: #FFFFFF;
    background-color: #2F80ED;
}

.menu-product__link:hover {
    color: #2F80ED;
}

.sidebar li .text:hover {
    color: #FFFFFF;
    background-color: #2F80ED;
}

.sidebar .menu-bar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.menu-bar .mode {
    position: relative;
    border-radius: 6px;
    background: #f4f2f2;
}

.menu-bar .mode .moon-sun {
    height: 50px;
    width: 60px;
    display: flex;
    align-items: center;
}

.switch::before {
    content: "";
    position: absolute;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    background-color: #fff;
}

@media screen and (min-width: 768px) {
    .card-container__block {
        flex-direction: row;
    }

    .product-params__cell,
    .product-params__cell__td,
    .product-params__table td {
        width: 50%;
    }

    .info-item {
        max-width: 700px;
        width: 100%;
    }

    .slider-nav {
        display: block;
    }

    .slider-main {
        height: 500px;
    }
}

@media screen and (min-width: 800px) {
    .sidebar {
        display: block;
    }

    .block-sidebar {
        display: flex;
        column-gap: 30px;
    }

    .sidebar .menu {
        width: 250px;
    }

    .sidebar .nav-link a {
        padding-left: 16px;
    }

    .sidebar {
        position: sticky;
        top: 0;
        height: 100%;
        padding: 10px 0 30px;
        transition: all 0.2s ease;
        background-color: #f1f5f9;
        border-radius: 10px;
    }

    .sidebar li a {
        border-radius: 6px;
    }
}

@media screen and (min-width: 1024px) {
    .card-container {
        display: flex;
        gap: 30px;
    }
}

.requisitee {
    background-color: #FFFFFF;
    padding: 80px 0;
}

.requisitee__company {
    font-size: 20px;
    line-height: 1.2;
}

.requisites__table {
    margin-top: 50px;
}

.requisites-params__cell,
.product-params__cell__td {
    color: #868695;
    font-weight: 400;
    text-align: left;
    vertical-align: top;
    padding: 4px 0;
    font-size: 20px;
    line-height: 1.2;
}

.requisites-params__cell__td {
    color: #373738;
    font-size: 20px;
    line-height: 1.2;
}

.requisites__block:not(:last-child) {
    margin-top: 20px;
}

@media screen and (min-width: 768px) {
    .requisites__block {
        display: flex;
        align-items: center;
    }

    .requisites-params__cell {
        width: 50%
    }
}

.hero-slider {
    width: 100%;
    height: 600px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    z-index: 0;
}

.slider-btn {
    background-color: #2F80ED;
    color: #FFFFFF;
    transition: background-color .4s ease;
    border-radius: 4px;
    padding: 16px 30px;
    cursor: pointer;
    text-transform: uppercase;
}

.slider-btn:hover {
    background-color: #2375e4;
}

.swiper-wrapper__container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
}

.hero-slider .swiper-slide {
    overflow: hidden;
    color: #FFFFFF;
}

.hero-slider .swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.hero-slider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}


.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    text-align: left;
    line-height: 12px;
    font-size: 12px;
    color: #000;
    opacity: 1;
    background-color: #FFFFFF;
    transition: all .2s ease;
}

.hero-slider .swiper-pagination-bullet-active {
    background-color: #2F80ED;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
    bottom: 30px;
}

.swiper-horizontal > .swiper-pagination {
    bottom: 20px;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 50px;
    padding: 0 15px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
}

.hero-style {
    height: 600px;
    transition: all .4s ease;
}

@media screen and (min-width: 992px) {
    .hero-style .container {
        padding-top: 95px;
    }
}

.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btns {
    max-width: 690px;
}

.hero-style .slide-title h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
    color: #ffffff;
    margin: 0 0 10px;
    text-transform: capitalize;
    transition: all .4s ease;
}

.hero-style .slide-text p {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: normal;
    color: #ffffff;
    margin: 0 0 40px;
    transition: all .4s ease;
}

.hero-style .slide-btns > a:first-child {
    margin-right: 10px;
}

.swiper-button-next,
.swiper-button-prev {
    display: none;
}

@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }

    .hero-style {
        height: 500px;
    }
}

@media (min-width: 767px) {
    .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets {
        bottom: 30px;
    }
}

@media (min-width: 991px) {
    .hero-style .slide-title h2 {
        font-size: 50px;
        margin: 0 0 35px;
    }

    .hero-style .slide-text p {
        font-size: 32px;
    }
}

@media (min-width: 1400px) {
    .swiper-wrapper__container {
        max-width: 1200px;
    }

    .hero-slider .swiper-button-prev:after,
    .hero-slider .swiper-button-next:after {
        font-size: 20px;
        top: 50%;
        position: absolute;
        transform: translate(-50%, -50%);
        left: 50%;
    }

    .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next {
        background: transparent;
        width: 55px;
        height: 55px;
        line-height: 53px;
        margin-top: -30px;
        text-align: center;
        border: 2px solid #FFFFFF;
        border-radius: 55px;
        transition: all .3s ease;
        color: #FFFFFF;
    }

    .hero-slider:hover .swiper-button-prev,
    .hero-slider:hover .swiper-button-next {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .hero-slider .swiper-button-prev {
        left: 25px;
        transform: translateX(50px);
        position: absolute;
    }

    .hero-slider .swiper-button-prev:before {
        font-size: 15px;
        color: #d4d3d3;
        font-style: normal;
        display: inline-block;
        vertical-align: middle;
        font-weight: 900;
    }

    .hero-slider .swiper-button-next {
        right: 25px;
        transform: translateX(-50px);
        position: absolute;
    }

    .hero-slider .swiper-button-next:before {
        font-size: 15px;
        color: #d4d3d3;
        font-style: normal;
        display: inline-block;
        vertical-align: middle;
        font-weight: 900;
    }

    .swiper-button-prev {
        content: '<';
    }

    .swiper-button-next {
        content: '>';
    }

    .slider-buttons {
        display: flex;
        align-items: center;
    }

    .swiper-button-prev,
    .swiper-button-next {
        position: static;
        margin-left: 10px;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: block;
    }
}

