/*
 *
 *
 *
 *
 */

html, body {
    min-height: 100%;
    height: 100%;
}

body {
    font-family: "Inter", sans-serif;
    --base-color: #0E264E;
    --background-color: #2866A5;
    --red-color: #CD0404;
    --red-hover-color: #b10404;
    --bs-border-radius: 10px;
    --swiper-navigation-sides-offset: -18px;
    --swiper-theme-color: #0E264E;
    --bs-primary-text-emphasis: #0E264E;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

main {
    padding-top: 90px;
    flex-grow: 1;
}

a {
	text-decoration: none;
	color: var(--base-color);
    transition: .4s;
}

a:hover {
	color: var(--red-color);
}

.btn {
    padding: 7px 28px;
    font-weight: 700;
}

.btn.btn-danger {
    --bs-btn-bg: var(--red-color);
    --bs-btn-border-color: var(--red-color);
    --bs-btn-disabled-bg: var(--red-color);
    --bs-btn-disabled-border-color: var(--red-color);
    --bs-btn-hover-bg: var(--red-hover-color);
    --bs-btn-hover-border-color: var(--red-hover-color);
    --bs-btn-active-bg: var(--red-hover-color);
    --bs-btn-active-border-color: var(--red-hover-color);
}

.btn.btn-light {
	--bs-btn-color: var(--base-color);
    --bs-btn-hover-color: var(--base-color);
    --bs-btn-active-color: var(--base-color);
    --bs-btn-disabled-color: var(--base-color);
    --bs-btn-hover-border-color: var(--red-hover-color);
}

.btn.btn-light:hover {
    --bs-btn-color: #fff;
    --bs-btn-hover-color: #fff;
    --bs-btn-active-color: #fff;
    --bs-btn-disabled-color: #fff;
    --bs-btn-hover-border-color: var(--red-hover-color);
    background-color: var(--red-color);
}

.btn.btn-lg {
    padding: 12px 24px;
    font-size: 18px;
}

img {
    max-width: 100%;
}

.wpcf7-not-valid-tip {
    display: none;
}

.form:not(.form_type_fancybox) .wpcf7 form .wpcf7-response-output {
    grid-column-start: 1;
    margin: 0;
    padding: 20px;
    width: 100%;
    grid-column-end: 4;
}

.form_type_fancybox {
    max-width: 600px!important;
}

.form_type_fancybox .form__form {
    margin-top: 0!important;
}

.wpcf7-form-control {
    width: 100%!important;
    border-radius: 10px!important;
    box-shadow: none!important;
    border: 1px solid transparent!important;
    padding: 15px!important;
}

.wpcf7-form-control.wpcf7-textarea {
    width: 100% !important;
    min-height: 78px !important;
    border-radius: 10px !important;
    box-shadow: none !important;
    border: 1px solid transparent !important;
    padding: 15px !important;
    background: rgba(229, 229, 229, 1) !important;
    max-height: 120px;
    resize: none;
}

.wpcf7 form .wpcf7-response-output {
    margin: 0;
    padding: 12px;
    border: 2px solid #00a0d2;
}

.form_type_fancybox .form__form .form__form-title {
    margin-bottom: 28px;
}

.fancybox-content.form_type_fancybox {
    padding: 20px;
}

@media (max-width: 992px) {
    .form_type_fancybox .wpcf7-form {
        gap: 20px!important;
    }
}

@media (min-width: 992px) {
    .btn.btn-lg {
        padding: 20px 48px;
        font-size: 25px;
    }
    .fancybox-content.form_type_fancybox {
        padding: 40px;
    }
    .fancybox-content.form_type_fancybox {
        padding: 30px;
    }
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1392px;
    }
}

/**
 * 
 * 
 * 
 */

.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 4;
    width: 100%;
    background: #fff;
    box-shadow: 0 0 30px hsl(0deg 0% 0% / 15%);
}

.header__social > a {
    width: 32px;
    background: #06214d;
    height: 32px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__grid {
    justify-content: space-between;
    height: 90px
}

.header__nav a {
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    height: 40px;
    padding: 10px;
}

.header__nav {
    gap: 20px;
}

.header__contacts {
    gap: 30px;
}

.header__social {
	gap: 15px;
}

.header__mobile {
    cursor: pointer;
}

.header__mobile span {
    width: 38px;
    height: 5px;
    background: var(--base-color);
    display: block;
    margin: 7px 0;
    border-radius: 3px;
}

.header__mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    min-width: 300px;
    width: 60%;
    max-width: 400px;
    background: #ffffff;
    bottom: 0;
    box-shadow: 0 0 60px rgb(0 0 0 / 22%);
    z-index: 3;
    padding: 40px;
    gap: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .4s;
}

.header__mobile-menu .header__nav a {
    padding: 15px 0;
    height: 100%;
}

.header__mobile-menu .header__nav {
    gap: 0;
}

.header__mobile-menu .header__contacts {
    flex-direction: column;
    align-items: start !important;
}

.header__mobile-menu.header__mobile-hide {
    transform: translate(100%, 0px);
}

.header__mobile-close span {
    width: 28px;
    height: 4px;
    background: var(--base-color);
    display: block;
    margin: 9px 0;
    border-radius: 3px;
}

.header__mobile-close {
    transform: rotate(45deg);
    position: absolute;
    right: 17px;
    top: 34px;
}

.header__mobile-close span:last-child {
    transform: rotate(-90deg);
    position: absolute;
    right: 0px;
    top: 1px;
}

/**
 * 
 * 
 * 
 */

.action {
    background: var(--background-color);
    color: #fff;
    padding: 30px;
    position: relative;
}  

.action__title {
    font-size: 32px;
    line-height: 120%;
}

.action__title + .action__button {
    margin-top: 40px;
}

.action:before {
    content: '';
    position: absolute;
    background: url(../svg/gift.svg) no-repeat;
    width: 99px;
    height: 105px;
    right: 50px;
    bottom: 48px;
}

.action.action_type_existstag:after {
    content: '';
    position: absolute;
    width: 205px;
    height: 151px;
    background: url(../images/action.png) no-repeat;
    top: -70px;
    right: -50px;
}

.action.action_type_existstag {
    padding-right: 82px;
}

.archive-header.archive-header_type_services .archive-header__title h1 {
    text-transform: uppercase;
    font-size: 60px;
    max-width: 780px;
    line-height: 74px;
}

@media (max-width: 991px) {

    .action.action_type_existstag:after {
        transform: scale(0.6);
    }

    .action__title {
        font-size: 22px;
        line-height: 120%;
    }

    .action:before {
        position: static;
        width: 40px;
        height: 40px;
        display: block;
        background-size: contain;
        margin-bottom: 30px;
    }
    
    .action.action_type_existstag {
        padding-right: 32px;
    }

}

@media (min-width: 992px) {

    .action {
        padding: 50px;
    }

}

/**
 * 
 * 
 * 
 */
 

.h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 55px;
    margin-bottom: 30px;
    color: var(--base-color);
}

.h2 {
    font-size: 40px;
    line-height: 45px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--base-color);
}

.h3 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--base-color);
}

.h4 {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--base-color);
}

.h5, .h6 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 10px;
    font-weight: 700;
    color: var(--base-color);
}

.fancybox-image {
    border-radius: 10px;
}

@media (max-width: 467px) {

    .h1 {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 24px;
    }
    
    .h2 {
        font-size: 34px;
        line-height: 42px;
        margin-bottom: 21px;
    }
    
    .h3 {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 18px;
    }
    
    .h4 {
        font-size: 18px;
        line-height: 22px;
    }
    
    .h5, .h6 {
        font-size: 17px;
        line-height: 22px;
    }

}

@media (min-width: 992px) {

    .h1 {
        font-size: 70px;
        line-height: 70px;
        margin-bottom: 40px;
    }
    
    .h2 {
        font-size: 60px;
        line-height: 65px;
        margin-bottom: 50px;
    }
    
    .h3 {
        font-size: 45px;
        line-height: 55px;
        margin-bottom: 40px;
    }
    
    .h4 {
        font-size: 28px;
        line-height: 34px;
        margin-bottom: 15px;
    }
    
    .h5 {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 15px;
    }

}

@media (min-width: 1400px) {

    .h1 {
        font-size: 115px;
        line-height: 115px;
        margin-bottom: 60px;
    }
    
    .h2 {
        font-size: 80px;
        line-height: 96px;
        margin-bottom: 50px;
    }
    
    .h3 {
        font-size: 55px;
        line-height: 65px;
        margin-bottom: 40px;
    }
    
    .h4 {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 15px;
    }
    
    .h5 {
        font-size: 23px;
        line-height: 31px;
        margin-bottom: 15px;
    }
    
    .h6 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 10px;
    }

}



/**
 * 
 * 
 * 
 */

.section {
	padding: 50px 0;
}  

.section__top-padding {
    padding-top: 10px;
}

.section__title strong {
    background: var(--background-color);
    padding: 0 20px 4px;
    color: #fff;
    font-weight: 700;
    border-radius: 10px;
}

.section_type_gradient1 {
    background: #D9E5EF;
    background: linear-gradient(90deg, #D9E5EF, #E6E6E6);
}

.section:not([class*="section_type_gradient"]) + section:not([class*="section_type_gradient"]) {
    padding-top: 20px;
}

.section.section_type_gradient1:after {
    background: linear-gradient(90deg, #D9E5EF, #D9E5EF, transparent);
}

.section.section_padding_top-large {
    padding-top: 100px!important;
} 

[class*="section_type_gradient"] .accordion-button {
    background: #fff;
}

@media (min-width: 992px) {

    .section {
        padding: 80px 0;
    }  

    .section__top-padding {
        padding-top: 30px;
    }

}

@media (min-width: 1200px) {

    .section.section_padding_top-large {
        padding-top: 200px!important;
    } 

}

@media (min-width: 1400px) {

    .h1 {
        font-size: 115px;
        line-height: 115px;
        margin-bottom: 60px;
    }
    
    .h2 {
        font-size: 80px;
        line-height: 96px;
        margin-bottom: 50px;
    }
    
    .h3 {
        font-size: 55px;
        line-height: 65px;
        margin-bottom: 40px;
    }
    
    .h4 {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 15px;
    }
    
    .h5 {
        font-size: 23px;
        line-height: 31px;
        margin-bottom: 15px;
    }
    
    .h6 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 10px;
    }

}

/**
*
*
*
*/

.footer__2 {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: 1fr;
}

.footer__items {
    grid-template-columns: 370px auto;
    justify-content: space-between;
    gap: 70px;
}

.footer__text {
    color: var(--base-color);
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
}

.footer__1 {
    display: grid;
    grid-gap: 40px;
}

.footer__title {
    font-size: 25px;
    font-weight: 700;
    color: var(--base-color);
    margin-bottom: 30px;
}

.footer__social > a {
    width: 42px;
    background: var(--base-color);
    height: 42px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__social > a:hover {
    background: var(--red-color);
}

.footer__social {
	gap: 10px;
}

@media (min-width: 768px) {

    
    .footer__2 {
        grid-template-columns: 1fr 1fr;
        grid-gap: 70px;
    }

}

/**
*
*
*
*/

.archive-header {
    background: #E5E5E5;
    position: relative;
}

.archive-header:before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #eee, transparent, #eee);
    background: rgb(238,238,238);
    background: -moz-linear-gradient(90deg, rgba(238,238,238,1) 25%, rgba(238,238,238,0) 50%, rgba(238,238,238,1) 75%);
    background: -webkit-linear-gradient(90deg, rgba(238,238,238,1) 25%, rgba(238,238,238,0) 50%, rgba(238,238,238,1) 75%);
    background: linear-gradient(90deg, rgba(238,238,238,1) 25%, rgba(238,238,238,0) 50%, rgba(238,238,238,1) 75%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#eeeeee",endColorstr="#eeeeee",GradientType=1);
    content: '';
}

.archive-header__title {
    min-height: 152px;
    display: flex;
    z-index: 1;
    opacity: .999;
}

.archive-content__card {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    gap: 18px;
    padding: 22px;
    background: linear-gradient(225deg, #E6E6E6, #D9E5EF);
}

.archive-content__col {
    margin-bottom: 30px;
}

.archive-content__card-excerpt {
    height: 100%;
}

.archive-content__card div,
.archive-content__card-excerpt p:last-child {
    margin-bottom: 0 !important;
}

.archive-content__card-image > a,
.archive-portfolio__image,
.gallery-1__item > a {
    display: block;
    overflow: hidden;
    border-radius: var(--bs-border-radius) !important;
}

.archive-content__card-image > a > img,
.archive-portfolio__image > img,
.gallery-1__item > a > img {
    transition: .5s;
}

.archive-content__card-image > a:hover > img,
.archive-portfolio__image:hover > img,
.gallery-1__item > a:hover> img {
    transform: scale(1.04);
}

.archive-content__card-image img {
    height: 205px;
    width: 100%;
    object-fit: cover;
}

.archive-content__card-excerpt {
    font-size: 16px;
    line-height: 22px;
    color: var(--base-color);
}

.gallery-1__grid {
    grid-template-columns: 1fr;
    margin-bottom: 40px;
    padding-top: 15px;
}

.gallery-1__item {
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    position: relative;
    background: #fff;
}

.gallery-1__item img {
    height: 300px;
    object-fit: cover;
    width: 100%;
}

@media (max-width: 420px) {

    .archive-content__card {
        margin-left: -12px;
        border-radius: 0 !important;
        margin-right: -12px !important;
    }

    .archive-content__card-excerpt {
        font-size: 14px;
        line-height: 22px;
    }

}

@media (min-width: 768px) {

    .gallery-1__grid {
        grid-template-columns: 1fr 1fr;
        margin-bottom: 50px;
        margin-bottom: 10px;
    }

    .gallery-1__item img {
        height: 360px;
        object-fit: cover;
    }

    .archive-content__card {
        gap: 23px;
        padding: 35px;
    }

    .archive-content__card-image img {
        height: 245px;
    }

    .archive-header__title {
        min-height: 198px;
        opacity: .999;
    }

}

@media (min-width: 1200px) {

    .gallery-1__grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        margin-bottom: 70px;
        margin-bottom: 10px;
    }

    .gallery-1__item img {
        height: 400px;
        object-fit: cover;
    }

    .archive-content__card {
        gap: 25px;
        padding: 40px;
    }

    .archive-content__card-image img {
        height: 273px;
    }

    .archive-header__title {
        min-height: 252px;
    }


}

/**
*
*
*
*
*/

.accordion-item {
    border: none;
    margin-bottom: 20px;
    color: var(--base-color);
}

.accordion-button {
    background: #D9E5EF;
    background: linear-gradient(90deg, #D9E5EF, #E6E6E6);
    border-radius: 10px !important;
    font-weight: 700;
    padding: 27px 40px;
}

/**
*
*
*
*
*/

.form__grid {
    background: var(--background-color);
    padding: 30px 25px;
    color: #fff;
    margin: 0 -12px;
}

.form .form__text {
    margin-top: -10px;
    font-size: 25px;
}

.form__form {
    margin-top: 30px;
}

.form .wpcf7-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.form__form input {
    width: 100%;
    border-radius: 10px;
    box-shadow: none;
    border: 1px solid transparent;
    padding: 15px;
}

.footer .form__form input {
    height: 78px;
}

.form .wpcf7-form * {
    margin-bottom: 0 !important;
}

.form .wpcf7-form .wpcf7-spinner {
    display: none;
}

@media (max-width: 479px) {

    .form__grid {
        padding: 24px 16px;
        color: #fff;
        margin: 0 -12px !important;
        border-radius: 0 !important;
    }

    .form.section {
        padding-bottom: 0 !important;
    }

}

@media (max-width: 991px) {

    .form__form input {
        height: 58px;
    }

}

@media (min-width: 992px) {

    .form__grid {
        padding: 30px;
        color: #fff;
        margin: 0 !important;
        border-radius: 10px !important;
    }

    .form.section {
        padding-bottom: 50px !important;
    }

    .form__form {
        margin-top: 50px;
    }

}

@media (min-width: 1200px) {

    .form__grid {
        padding: 40px 50px;
    }

    .form .wpcf7-form {
        grid-template-columns: 1fr 1fr 1fr;
    }

}

@media (min-width: 1400px) {

    .form__grid {
        padding: 50px 60px;
    }

    .form__form {
        margin-top: 30px;
    }

}

/**
*
*
*
*/

.gallery-1__item-hover {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(1, 54, 108, 0.8);
    opacity: 0;
    padding: 40px 35px;
    font-size: 34px;
    line-height: 42px;
    font-weight: 700;
    transition: .4s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gallery-1__item a:hover .gallery-1__item-hover {
    opacity: 1;
}

.gallery-1__item-hover i {
    font-style: normal;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/**
*
*
*
*
*/

.form.form_type_fancybox form.wpcf7-form {
    display: grid;
    grid-template-columns: 1fr;
}

.form.form_type_fancybox form.wpcf7-form input:not(.wpcf7-submit) {
    background: rgba(229, 229, 229, 1);
}

/*
*
*
*
*
*/

.service-start__text {
    display: grid;
    gap: 49px;
    font-size: 15px;
    line-height: 20px;
    font-weight: 600;
    color: rgba(14, 38, 78, 1);
}

.service-start__option {
    font-size: 20px;
    line-height: 33px;
    display: grid;
    grid-gap: 2px;
}

.service-content__title {
    margin-bottom: 50px;
}

.service-content__item {
    margin-bottom: 60px;
}

.service-content__text {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: var(--base-color);
}

.service-content__image-grid {
    gap: 40px;
}

.service-content__image-grid.service-content__image-grid_inverted {
    grid-template-columns: 480px 1fr;
}

.service-content__image-grid.service-content__image-grid_inverted .service-content__text {
    order: 1;
}

.service-content__image-grid {
    grid-template-columns: 1fr 480px;
}

.service-content__image-resourse img {
    max-height: 340px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.service-content__text ol, service-content__text ul {
    padding-left: 19px;
    margin-bottom: 40px;
}

.service-content__text li {
    margin-bottom: 20px;
}

.service-content__grid .service-content__item:last-child {
    margin-bottom: 0;
}

.service-steps .list-numeric {
    display: grid;
    grid-gap: 20px;
    margin-top: 50px;
    padding-left: 0;
    list-style: none;
}

.service-steps .list-numeric li {
    display: flex;
    align-items: center;
    border: 2px solid #01366C;
    border-radius: 15px;
    padding: 27px 30px 27px 110px;
    position: relative;
    font-size: 22px;
    line-height: 34px;
    color: #01366C;
    font-weight: 500;
}

.service-steps .list-numeric li span {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 15px;
    left: 22px;
    border: 2px solid #CD0404;
    border-radius: 100%;
}

.service-start__image img {
    width: 100%;
    padding-right: 40px;
}

.service-steps__image img {
    width: 100%;
    padding-left: 40px;
}

.service-start__option a, .service-start__option strong {
    color: var(--red-color);
    font-weight: 700 !important;
}

@media (max-width: 1199px) {
    .archive-header.archive-header_type_services .archive-header__title h1 {
        font-size: 40px;
        line-height: 52px;
    }
    .service-start__image {
        margin-bottom: 30px;
    }
    .service-start__text {
        gap: 40px;
    }
    .service-steps .list-numeric li span {
        top: 14px;
    }
    .service-steps__image {
        margin-top: 30px;
    }
    .service-steps__image img {
        padding-left: 0;
    }
    .service-start__image img {
        padding-right: 0;
    }
    .service-content__image-grid {
        grid-template-columns: 1fr 1fr;
    }
    .service-content__image-grid.service-content__image-grid_inverted {
        grid-template-columns: 1fr 1fr;
    }
    
    .form:not(.form_type_fancybox) .wpcf7 form .wpcf7-response-output {
        grid-column-end: 1;
    }
}

@media (max-width: 991px) {
    .service-content__image-grid {
        grid-template-columns: 1fr;
    }
    .service-content__image-grid.service-content__image-grid_inverted {
        grid-template-columns: 1fr;
    }

    .form .wpcf7-form {
        display: grid;
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .service-steps .list-numeric li {
        flex-direction: column;
    }
    .service-steps .list-numeric li span {
        position: static !important;
    }
    .service-steps .list-numeric li {
        flex-direction: column;
        padding-left: 30px !important;
    }
    .service-steps .list-numeric li {
        flex-direction: column;
        padding-left: 30px !important;
        align-items: flex-start;
        gap: 15px;
        font-size: 18px;
        line-height: 24px;
    }
    .service-steps .list-numeric li span {
        width: 40px;
        height: 40px;
    }
    .service-start__option {
        font-size: 18px;
        line-height: 28px;
        display: grid;
        grid-gap: 2px;
    }
    .archive-header.archive-header_type_services .archive-header__title h1 {
        font-size: 30px;
        line-height: 38px;
    }
}

/**
*
*
*
*/

.service-prices__grid {
    grid-template-columns: 1fr;
    margin-bottom: 10px;
}

.service-prices__item {
    box-shadow: 0 0 20px rgb(0 0 0 / 10%);
    padding: 30px;
    position: relative;
    background: #fff;
    display: flex;
    gap: 25px;
    justify-content: space-between;
    align-items: start;
    flex-direction: column;
}

.service-prices__item > *{
    margin-bottom: 0!important;
}

.service-prices__item-text {
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    color: var(--base-color);
}

.service-prices__item-image img {
    width: 330px;
    height: 182px;
    object-fit: cover;
}

.service-prices__item-price span {
    font-size: 16px;
}

.service-prices__item-price {
    background: var(--background-color);
    padding: 10px 15px;
    color: #fff;
    font-weight: 700;
    border-radius: 10px;
    display: inline-block;
}

.service-prices__item-price span:after {
    content: ' руб.';
    font-size: 16px;
    margin-left: 5px;
}

.service-prices__item-content {
    display: grid;
    grid-gap: 5px;
}

.service-prices__item-image img {
    width: 220px;
    height: 132px;
    object-fit: cover;
}

.cf7-inline-grid {
    display: grid;
    align-items: center;
    gap: 20px;
    grid-template-columns: 1fr 270px;
}

input.wpcf7-form-control.wpcf7-not-valid {
    border: 1px dotted hsl(0deg 100% 50% / 56%) !important;
}

.hero-1__button {
    max-width: 700px;
    position: relative;
}

.cf7-inline-grid input {
    height: 70px;
}

.cf7-inline-grid input.wpcf7-text {
    padding-left: 35px !important;
}

.cf7-inline-grid .btn {
    font-size: 22px;
}

.hero-1__button .wpcf7-response-output {
    position: absolute;
    width: 100%;
    bottom: -30px;
    opacity: .4;
}

@media (min-width: 1200px) {

    .service-prices__grid {
        grid-template-columns: 1fr 1fr 1fr;
        margin-bottom: 10px;
    }
    
    .service-prices__item-image img {
        width: 330px;
        height: 182px;
        object-fit: cover;
    }

    .service-prices__item-price span {
        font-size: 26px;
    }

}

@media (max-width: 991px) {
    .cf7-inline-grid {
        grid-template-columns: 1fr;
    }
}