@font-face {
    font-family: 'Roboto';
    src: url('./assets/fonts/Roboto/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('./assets/fonts/Poppins/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'Poppins';
    src: url('./assets/fonts/Poppins/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
}

@font-face {
    font-family: 'Poppins';
    src: url('./assets/fonts/Poppins/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./assets/fonts/Montserrat/Montserrat-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./assets/fonts/Montserrat/Montserrat-Medium.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./assets/fonts/Montserrat/Montserrat-SemiBold.ttf') format('truetype');
    font-weight: 600;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./assets/fonts/Montserrat/Montserrat-Bold.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'Montserrat';
    src: url('./assets/fonts/Montserrat/Montserrat-ExtraBold.ttf') format('truetype');
    font-weight: 800;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 14px;
    font-family: 'Montserrat';
}

main {
    overflow: hidden;
}

a {
    color: #D2232A;
    font-weight: 700;
    text-decoration: none;
}

ul {
    list-style-type: none;
}

.main-nav ul {
    align-items: center;
    display: flex;
    text-transform: uppercase;
}

.main-nav li {
    margin-left: 28px;
}

.main-nav a {
    font-size: 16px;
    line-height: 24px;
}

header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding-top: 9px;
    padding-bottom: 2px;
}

.position-relative {
    position: relative;
}

.container {
    margin: 0 auto;
    max-width: 1270px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
}

.copyright {
    background-color: #000;
    color: #fff;
    padding: 26.5px;
    text-align: center;
}

.menu-button {
    height: 16px;
	cursor: pointer;
    display: block;
	position: relative;
	width: 25px;
    z-index: 10;
}

.menu-button span,
.menu-button::after,
.menu-button::before {
	content: '';
	display: block;
	background-color: #000;
	height: 2px;
	position: absolute;
	right: 0;
    transition: all 0.2s ease;
    width: 100%;
}

.menu-button.menu-active::before {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-button.menu-active span {
    opacity: 0;
}

.menu-button.menu-active::after {
    transform: rotate(-45deg) translate(5px, -5px);
    width: 100%;
}

.menu-button::before {
	top: 0;
}

.menu-button span {
	top: calc(50% - 1px);
}

.menu-button::after {
	bottom: 0;
}

.banner {
    border-top: 6px solid #D2232A;
    color: #fff;
    margin-bottom: 94px;
    position: relative;
}

/* .banner .inner-wrapper::before {
    background-image: url('assets/images/man-banner.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: -40px;
    content: '';
    display: block;
    height: 690px;
    left: 46%;
    width: 315px;
    z-index: 1;
} */

.banner .inner-wrapper::after {
    background-image: url(assets/images/main-bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 46px;
    content: '';
    display: block;
    height: 690px;
    left: 37%;
    width: 45%;
    z-index: -1;
    position: absolute;
}


.banner::after {
    background-color: #000;
    content: '';
    display: block;
    height: 1050px;
    left: 50%;
    position: absolute;
    top: 196px;
    transform: translate(-50%, -50%) rotate(-9deg);
    width: 200vw;
    z-index: -2;
}

.banner .inner-wrapper {
    align-items: center;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1440px;
    padding: 106px 20px 0;
}

.banner h2 {
    font-style: normal;
    font-weight: 500;
    font-size: 26px;
    line-height: 45px;
    letter-spacing: 0.04em;
    margin-bottom: 26px;
}

.banner h2 b {
    font-size: 35px;
    font-weight: 800;
}

.btn {
    background-color: #D2232A;
    border-radius: 0;
    border: none;
    box-shadow: none;
    color: #fff;
    cursor: pointer;
    font-family: 'Montserrat';
    font-weight: bold;
    font-size: 18px;
    line-height: 22px;
    padding: 11px 67px;
    text-align: center;
    text-transform: uppercase;
    transition: .3s all;
}

.btn:not(.btn-special):hover {
    background-color: #a91c22;
}

.btn-black, .btn-black:hover {
    background-color: #000;
}

.btn-special {
    display: inline-block;
    overflow: hidden;
    position: relative;
}

.btn-special::after {
    background-color: #000;
    clip-path: polygon(10px 0%, 100% 0, 100% 100%, 0% 100%);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    transition: .3s all;
    width: 29px;
}

.btn-special:hover::after {
    transform: translateX(100%);
}

.btn-special.black, .btn-special.black:hover {
    background-color: #000;
}

.btn-special.black::after {
    background-color: #D2232A;
}

.banner-list {
    display: flex;
    flex-wrap: wrap;
}

.banner-list a {
    align-items: center;
    background-color: #D2232A;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.05);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    height: 160px;
    line-height: 24px;
    margin-bottom: 13px;
    margin-right: 25px;
    padding: 10px;
    text-align: center;
    width: 160px;
}

.banner-list a, .banner-list a img {
    transition: .3s all;
}

.banner-list a:hover {
    background-color: #fff;
    color: #D2232A;
}

.banner-list a:hover img {
    filter: none;
}

.banner-list img {
    filter: brightness(0) invert(1);
    margin-bottom: 12px;
}

.advantages-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
    max-width: 1440px;
}

.advantages-list li {
    align-items: center;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 18px;
    height: 337px;
    justify-content: center;
    line-height: 27px;
    text-align: center;
    width: 100%;
}

.advantages-list li:nth-of-type(2) {
    background-color: #F7F7F7;
}

.advantages-list li img {
    margin-bottom: 18px;
}

.reasons {
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1340px;
    position: relative;
}

.reasons > div {
    padding: 40px;
    position: relative;
    width: 100%;
}

.reasons > div::after {
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    width: 100vw;
    z-index: -1;
}

.reasons h3 {
    color: #D2232A;
    font-weight: 800;
    font-size: 28px;
    line-height: 145.6%;
    margin-bottom: 37px;
    max-width: 500px;
}

.black-col::after {
    background-color: #000;
    right: 0;
}

.red-col {
    font-weight: 800;
    font-size: 40px;
    line-height: 49px;
}

.reasons h2 {
    font-size: 40px;
    line-height: 49px;
    margin-left: auto;
    max-width: 503px;
}

.reasons ul {
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
}

.reasons li {
    margin-bottom: 32px;
}

.reasons li, .custom-list li {
    padding-left: 30px;
    position: relative;
}

.reasons li::after, .custom-list li::after {
    border: 6px solid #D2232A;
    border-radius: 50%;
    content: '';
    height: 3px;
    display: block;
    left: 1px;
    position: absolute;
    top: 7px;
    width: 3px;
}

.red-col::after {
    background-color: #D2232A;
    left: 0;
}

.partners {
    background-color: #fafafa;
}

.images-slider video{
    margin-top: 50px;
}

.partners ul {
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.partners li {
    padding: 36px;
}

.services {
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-bottom: 153px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 114px;
}

.services h2, .services p {
    text-align: center;
}

.services h2 {
    color: #D2232A;
    font-weight: 800;
    font-size: 46px;
    line-height: 56px;
    margin-bottom: 10px;
}

.services p {
    font-weight: 500;
    font-size: 18px;
    line-height: 161.9%;
    margin: 0 auto;
    max-width: 1040px;
}

.services-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 72px auto 86px;
    max-width: 1134px;
}

.services-items li {
    align-items: center;
    display: flex;
    font-family: 'Poppins';
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    padding: 26px 22px;
    width: 284px;
}

.services-items li:hover {
    background-color: #FFFFFF;
    box-shadow: 0px 9px 34px rgba(0, 0, 0, 0.1);
    color: #D2232A;
}

.services-items li:hover img {
    filter: none;
}

.services-items li img {
    filter: brightness(0);
    margin-right: 20px;
}

.services-items li, .services-items li img {
    transition: .3s all;
}

.schedule-services {
    background-color: #000;
    color: #fff;
}

.schedule-services .inner-wrapper {
    align-items: center;
    background-color: #D2232A;
    box-shadow: 0px 0px 34px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    max-width: calc(100% - 40px);
    position: relative;
    padding: 43px 40px;
    transform: translateY(-80px);
}

.schedule-services img {
    margin-right: 10px;
    vertical-align: middle;
    margin-top: -10px;
}

.schedule-services h2 {
    font-size: 42px;
    line-height: 51px;
}

.schedule-services .btn {
    font-size: 19px;
    line-height: 23px;
    padding: 21px 44px;
    position: relative;
    z-index: 2;
}

.reviews-section {
    background-color: #FAFAFA;
    padding: 99px 20px 200px;
}

.reviews-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1280px;
    text-align: center;
    background: #fff;
    margin-bottom: -280px;
    z-index: 1;
    position: relative;
    padding: 50px;
}

.images-slider {
    max-width: 467px;
    width: 100%;
}

.images-slider img {
    width: 100%;
}

.reviews-slider-wrapper {
    margin-top: 40px;
    max-width: 680px;
    width: 100%;
}

.reviews-slider {
    margin-bottom: 74px;
}

.slick-slider {
    padding: 0 20px 100px;
}

.slick-arrow {
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 0;
    height: 20px;
    outline: none;
    position: absolute;
    top: 100%;
    transform: translateY(calc(-50% - 17px));
    width: 40px;
}

.slick-arrow::before, .slick-arrow::after {
    content: '';
    display: block;
    position: absolute;
}

.slick-arrow::before {
    background-color: #D2232A;
    height: 3px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
}

.slick-arrow::after {
    border-color: #D2232A;
    border-style: solid;
    border-width: 0 3px 3px 0;
    height: 12px;
    width: 12px;
}

.slick-prev {
    left: calc(50% - 80px);
}

.slick-prev::after {
    left: 0;
    transform: rotate(135deg) translate(-7px, 4px);
}

.slick-next {
    right: calc(50% - 80px);
}

.slick-next::after {
    right: 0;
    transform: rotate(-45deg) translate(4px, -7px);
}

.reviews-slider h4 {
    font-family: 'Roboto';
    font-size: 22px;
    font-weight: bold;
    line-height: 26px;
    margin-bottom: 24px;
}

.reviews-slider p {
    font-weight: 500;
    font-size: 17px;
    line-height: 160.7%;
}

.reviews-slider p span {
    color: #D2232A;
    display: block;
    font-weight: 700;
    margin-top: 28px;
}

.statistics {
    background-color: #fff;
    box-shadow: 0px 0px 34px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
    transform: translateY(-87px);
    padding: 30px;
}

.statistics li {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
    width: 100%;
}

.statistics .number {
    color: #D2232A;
    font-size: 60px;
    font-weight: 700;
    line-height: 161.9%;
    margin-bottom: -5px;
}

.statistics .name {
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
}

.you-deserve {
    background-color: #D2232A;
    padding-bottom: 73px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 150px;
}

.you-deserve .inner-wrapper {
    display: flex;
    justify-content: space-between;
    margin: -8px auto 0;
    max-width: 1100px;
}

.you-deserve h3 {
    color: #fff;
    font-weight: bold;
    font-size: 26px;
    line-height: 140.4%;
    max-width: 480px;
    padding-left: 90px;
    position: relative;
}

.you-deserve h3::before {
    background-image: url('assets/images/svg/deserve.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    display: block;
    height: 72px;
    left: 0;
    position: absolute;
    top: 0;
    width: 72px;
}

footer {
    background-color: #F5F5F5;
    padding-top: 11px;
}

.footer-cols {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1270px;
    padding: 46px 20px;
}

.footer-cols > ul {
    color: #424242;
    font-weight: 800;
    margin-top: 30px;
    max-width: 140px;
    text-transform: uppercase;
}

.satisfaction-guaranteed {
    background-color: #fff;
    border-bottom: 7px solid #D2232A;
    font-size: 25px;
    font-weight: 600;
    line-height: 151.9%;
    max-width: 384px;
    padding: 46px 20px;
    text-align: center;
}

.footer-logo-wrapper {
    max-width: 264px;
}

.satisfaction-guaranteed .btn {
    margin-top: 25px;
}

.footer-cols p {
    color: #969696;
    font-size: 14px;
    font-weight: 500;
    line-height: 151.9%;
}

.links-list li, .services-list li {
    margin: 12px 0;
}

.links-list a, .services-list a {
    color: #747474;
    font-weight: 500;
    text-transform: capitalize;
    position: relative;
}

.links-list a:hover{
    color: #D2232A;
}

.page-title {
    border-top: 6px solid #D2232A;
    padding: 74px 20px;
    position: relative;
}

.page-title h2 {
    color: #fff;
    font-weight: 500;
    font-size: 36px;
    line-height: 55px;
    letter-spacing: 0.04em;
    margin: 0 auto;
    max-width: 1230px;
}

.page-title h2 b {
    font-weight: 800;
}

.page-title::after {
    background-color: #000;
    clip-path: polygon(0 0, 100% 0, 100% 55%, 0% 100%);
    content: '';
    display: block;
    height: 250px;
    left: 50%;
    position: absolute;
    top: 0;
    width: 2000px;
    z-index: -1;
    transform: translateX(-50%);
}

.red{
    color: #D2232A;
}

.page-title img {
    margin-right: 10px;
    vertical-align: middle;
}

.services-items a{
    color: #000000;
}

.services-list a:hover {
    color: #D2232A;
}



.main-nav  ul {
	padding: 0;
    margin: 0;
	list-style: none;
	position: relative;
	}
	
    .main-nav  ul li {
    display:inline-block;
    padding: 10px 0px;
	}


/* Hide Dropdowns by Default */
.main-nav ul ul {
    display: none;
    position: absolute;
    top: 55px;
    left: 93px;
    background-color: #ffffff;
    z-index: 2;
    box-shadow: 1px 1px 20px 1px #00000014;
}
	
/* Display Dropdowns on Hover */
.main-nav ul li:hover > ul {
	display:inherit;
}

.dropdown li {
    margin-left: 15px;
}
	
/* Fisrt Tier Dropdown */
.main-nav .dropdown a {
    width: 300px;
    float: none;
    display: list-item;
    position: relative;
    margin-left: 0px;
    padding: 0px 0px 0px 5px;
    color: #000;
    font-size: 13px;
    font-weight: 600;
    text-transform: capitalize;
}

.main-nav .dropdown a:hover {
    background: #d2232a24;
}

.main-nav .dropdown a:hover li{
    color: #d2232a;
}

.small-img{
    display: none;
    margin: 0 auto;
    max-height: 500px;
}

/* DATE 20-AUGUST-2020 BY DISHA*/

label.error {
    color: red;
}

label.error {
    float: left;
    margin-top: -20px;
    margin-bottom: 20px;
}

.messages-wrapper {
    width: 100%;
    padding: 20px 0;
    color: #FF2C9C;
}

.message-success, .message-error {
    color: #2F2F2F;
    text-align: center;
}

.form-row {
    width: 100%;
}

.w-50 {
    width: calc(49% - 9px);
    float: left;
}

.form-row .w-50:nth-of-type(1) {
    margin-right: 30px;
}

.w-100 {
    width: 100%;
}

.contact-form .form-row input, .popup-form .form-row input, .popup-form .form-row .services-field { width: 100%; }

/**************************/

.dropdown .pm::after {
    bottom: 0px;
} 


.pm::after {
    background-image: url(assets/images/pm.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: -30px;
    content: '';
    display: block;
    height: 43px;
    right: 20px;
    position: absolute;
    width: 18px;
} 
.pmf{
    position: relative;
}
.pmf::after {
    background-image: url(assets/images/pm.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: '';
    display: block;
    height: 23px;
    right: -150px;
    position: absolute;
    width: 18px;
    bottom: -21px;
} 
@media (max-width: 767px) {
    .banner-list a:nth-of-type(2n + 2) {
        margin-right: 0;
    }

    .banner-list {
        max-width: 345px;
    }

    .you-deserve .inner-wrapper {
        align-items: center;
        flex-direction: column;
    }

    .you-deserve h3 {
        font-size: 18px;
        line-height: 140.4%;
        margin-bottom: 58px;
        max-width: 350px;
        padding-left: 72px;
    }

    .you-deserve h3::before {
        height: 58px;
        width: 58px;
    }

    .you-deserve .inner-wrapper {
        margin-top: 12px;
    }

    .statistics .btn-black {
        padding: 22px 67px;
    }

    .banner .inner-wrapper {
        padding-top: 40px;
    }

    .banner .inner-wrapper::before {
        margin-top: -65px;
        margin-bottom: -97px;
    }

    .logo-wrapper img {
        width: 87px;
    }

    .banner-list a {
        margin-bottom: 29px;
        width: calc(100% / 2 - 25px / 2);
    }

    .banner {
        margin-bottom: -12px;
    }

    .schedule-services .inner-wrapper {
        flex-wrap: wrap;
        justify-content: center;
        padding: 30px;
        text-align: center;
        transform: translateY(-130px);
    }

    .schedule-services {
        height: 92px;
    }

    .schedule-services h2 {
        font-size: 23px;
        line-height: 28px;
        margin-bottom: 28px;
    }

    .schedule-services img {
        width: 31px;
    }

    .services .btn {
        display: none;
    }

    .reviews-slider h4 {
        display: none;
    }

    .reviews-slider-wrapper .btn {
        display: none;
    }

    .reviews-section {
        padding-bottom: 120px;
    }

    .statistics li {
        margin-bottom: 20px;
    }
    /*DATE 20-AUGUST-2020 BY DISHA*/
    .w-50 { width: 100%; }
}

@media (min-width: 768px) and (max-width: 1199px) {
    
    .banner-list {
        max-width: 530px;
    }

    .banner-list a:nth-of-type(3n + 3) {
        margin-right: 0;
    }
}

@media (min-width: 768px) {
    .advantages-list li {
        width: 33.33%;
    }

    .statistics li {
        width: 50%;
    }

    header {
        padding-top: 27px;
        padding-bottom: 21px;
    }

    .banner h2 {
        font-size: 30px;
        line-height: 48px;
    
    }

    .up{
        text-transform: uppercase;
    }

    .banner h2 b {
        font-size: 40px;
        line-height: 60px;
    }

    .banner .inner-wrapper::before {
        width: 400px;
    }

    .reasons > div {
        width: 50%;
    }

    .slick-slider {
        padding: 0 95px;
    }

    .slick-arrow {
        top: 50%;
    }

    .slick-prev {
        left: 0;
    }

    .slick-next {
        right: 0;
    }
}

@media (max-width: 991px) {
    .menu-wrapper {
        display: none;
    }

    .main-nav ul li{
        text-align: center;
    }

    .main-nav ul ul {
        position: relative;
        top: 10px;
        left: 0px;
        text-align: center;
    }
    .main-nav ul {
        height: auto;
        padding-right: 10px;
        padding-top: 10px;
    }

    .reviews-inner {
        align-items: center;
        flex-direction: column;
        justify-content: unset;
    }

    .footer-cols {
        flex-direction: column;
        padding-top: 85px;
        text-align: center;
    }

    .footer-cols p {
        margin-top: 13px;
    }

    .footer-logo-wrapper {
        margin-bottom: 32px;
    }

    .footer-cols > ul {
        margin-top: 38px;
        max-width: 300px;
    }

    .satisfaction-guaranteed {
        margin-top: 56px;
    }

    .menu-wrapper {
        align-items: center;
        background-color: #fff;
        bottom: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100vh;
        left: 0;
        overflow: hidden;
        position: fixed;
        transition: .3s all;
        width: 100%;
        z-index: 9;
    }

    .menu-wrapper.menu-active {
        bottom: 0;
    }

    body.menu-active {
        overflow: hidden;
    }

    .main-nav ul {
        flex-direction: column;
        /* height: 400px; */
        justify-content: space-between;
    }
}

@media (min-width: 992px) {
    .menu-button {
        display: none;
    }

    .images-slider {
        width: calc(45% - 20px);
    }

    .reviews-slider-wrapper {
        width: 55%;
    }

    .statistics li {
        width: 33.33%;
    }

    .statistics li:not(:last-of-type) {
        position: relative;
    }
    
    .statistics li:not(:last-of-type)::after {
        background-color: #000;
        content: '';
        display: block;
        height: calc(100% - 48px);
        position: absolute;
        right: 0;
        width: 1px;
    }

    .footer-logo-wrapper {
        width: 22.75%;
    }
    
    .footer-cols > ul {
        /* width: 23%; */
        max-width: 50%;
    }

    .satisfaction-guaranteed {
        width: 31.25%;
    }

    .services-items {
        justify-content: space-between;
    }
}

@media (max-width: 1199px) {
    .banner .inner-wrapper > div {
        order: -1;
        text-align: center;
    }

    .banner-list {
        margin-top: 40px;
    }

    .schedule-services .btn, .schedule-services .btn:hover {
        background-color: #fff;
        color: #D2232A;
    }
    .banner .inner-wrapper::after {
        display: none;
    }
    .banner .inner-wrapper::before {
        display: none;
    }
    .small-img{
        display: block;
    }
}

@media (min-width: 1200px) {
    .banner-list {
        max-width: 345px;
    }

    .banner-list a:nth-of-type(2n + 2) {
        margin-right: 0;
        transform: translateY(132px);
    }

    .banner .inner-wrapper {
        align-items: unset;
        flex-direction: row;
        justify-content: space-between;
        padding: 106px 110px 0 106px;
    }

    .banner .inner-wrapper::before {
        position: absolute;
        transform: translateX(-50%);
    }

    .advantages-list {
        padding-bottom: 66px;
    }

    .advantages-list li:nth-of-type(2) {
        position: relative;
    }
    
    .advantages-list li:nth-of-type(2)::after {
        background-color: #F7F7F7;
        bottom: -66px;
        content: '';
        display: block;
        height: 200%;
        left: 0;
        position: absolute;
        width: 100%;
        z-index: -3;
    }

    .banner h2 {
        max-width: 400px;
    }

    .banner::after {
        height: 700px;
    }

    .reasons::after {
        background-image: url('assets/images/cook.png');
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        bottom: 0;
        content: '';
        display: block;
        height: 464px;
        left: 50%;
        position: absolute;
        transform: translateX(calc(-50% + 44px));
        width: 477px;
    }

    /* .black-col::after {
        clip-path: polygon(0 0, 100% 0, calc(100% - 57px) 100%, 0% 100%);
        right: 25px;
    } */

    .red-col::after {
        clip-path: polygon(57px 0, 100% 0, 100% 100%, 0% 100%);
        left: -82px;
    }

    .banner-list a:last-of-type {
        margin-right: 0;
    }

    .reasons > div {
        padding: 0 0 74px;
    }

    .reasons > .black-col {
        padding-top: 87px;
        padding-left: 54px;
    }

    .reasons > .red-col {
        padding-right: 20px;
        padding-top: 65px;
    }

    .schedule-services .inner-wrapper::after {
        background-color: #fff;
        clip-path: polygon(39px 0, 100% 0, 100% 100%, 0% 100%);
        content: '';
        display: block;
        height: 100%;
        position: absolute;
        right: -1px;
        width: 577px;
    }
}

@media (min-width: 1300px) {
    .schedule-services .inner-wrapper, .statistics {
        max-width: 1230px;
    }
}

/* Page about */
.about-section {
    max-width: 1300px;
    margin: 73px auto 0;
    padding: 0 20px;
    position: relative;
}

.about-section p {
    font-weight: 500;
    font-size: 18px;
    line-height: 161.9%;
    margin-bottom: 32px;
}

.choosing {
    background: #FFFFFF;
    box-shadow: 0px 0px 34px rgba(0, 0, 0, 0.05);
    margin: 0 20px 90px;
    padding: 71px 20px;
    text-align: center;
}

.choosing h2 {
    color: #D2232A;
    font-weight: 800;
    font-size: 28px;
    line-height: 145.6%;
}

.choosing-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 52px;
}

.choosing-list li {
    align-items: center;
    display: flex;
    flex-direction: column;
    font-weight: 600;
    font-size: 20px;
    line-height: 147.4%;
    padding: 20px;
    position: relative;
    width: 100%;
}

.choosing-list li img {
    margin-bottom: 18px;
}

.choosing-list li p {
    max-width: 245px;
}

.licensed {
    margin-bottom: 53px;
    padding: 0 20px;
    text-align: center;
}

.licensed h2 {
    color: #D2232A;
    font-weight: 800;
    font-size: 36px;
    line-height: 55px;
    letter-spacing: 0.04em;
    margin-bottom: 26px;
    text-align: center;
}

.licensed p {
    font-weight: 500;
    font-size: 18px;
    line-height: 161.9%;
    margin: 0 auto;
    max-width: 1080px;
}

.docs-list {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 74px;
}

.docs-list li {
    margin: 0 20px 40px;
}

ul.docs-list img {
    max-height: 260px;
}

.page-about .you-deserve {
    padding-top: 85px;
    padding-bottom: 81px;
}

@media (max-width: 767px) {
    .about-section {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
        margin-top: -5px;
        text-align: center;
    }

    .about-section img {
        max-width: 350px;
        margin-bottom: 40px;
        width: 100%;
    }

    body:not(.contact-page) .page-title::after {
        height: 485px;
    }

    .choosing {
        padding: 54px 20px;
    }

    .choosing h2 {
        font-size: 18px;
    }

    .choosing-list li {
        margin: 11px 0;
    }
}

@media (min-width: 768px) {
    .about-section .text-wrapper {
        width: 55%;
    }

    .about-section img {
        bottom: -82px;
        position: absolute;
        right: 34px;
        width: 37.5%;
    }

    .choosing {
        margin: 126px 20px 165px;
    }

    .choosing-list li {
        width: 50%;
    }

    .licensed {
        margin-bottom: 143px;
    }
}

@media (min-width: 992px) {
    .choosing-list li {
        width: 33.33%;
    }

    .choosing-list li:not(:last-of-type)::after {
        background-color: #000;
        content: '';
        display: block;
        height: 130px;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
    }
}

@media (min-width: 1300px) {
    .choosing {
        margin: 126px auto 165px;
        max-width: 1280px;
    }
}

/* Services page */
.services-page .tabs-holder {
    position: relative;
}

.services-main-section {
    align-items: flex-end;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 6px auto 0;
    max-width: 1250px;
    padding: 0 20px;
}

.services-main-section p {
    font-weight: 500;
    font-size: 18px;
    line-height: 161.9%;
    margin-bottom: 90px;
}

.services-main-section img {
    margin-right: 0px;
    width: calc(35% + 90px);
    margin-bottom: 76px;
}

.services-tabs-section {
    padding: 0 20px;
}

.tabs-holder {
    background: #FFFFFF;
    box-shadow: 0px 0px 34px rgba(0, 0, 0, 0.05);
    margin: 0 auto;
    max-width: 1222px;
}

.tabs-menu {
    display: flex;
    flex-wrap: wrap;
}

.tabs-holder .tab-content:not(.active) {
    display: none;
}

.tabs-menu li {
    align-items: center;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins';
    font-weight: 600;
    font-size: 16px;
    height: 159px;
    justify-content: center;
    line-height: 24px;
    padding: 20px;
    position: relative;
    text-align: center;
    width: 50%;
}

.tabs-menu li:not(.active) {
    background-color: #000;
    color: #fff;
    cursor: pointer;
}

.tabs-menu li.active::after {
    background-color: #D2232A;
    content: '';
    display: block;
    height: 6px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.tabs-menu li.active {
    color: #D2232A;
}

.services-tabs-section .tabs-menu li img {
    margin-bottom: 8px;
}

.tab-content {
    font-weight: 500;
    font-size: 16px;
    line-height: 161.9%;
    padding: 72px 78px;
}

.services-tabs-section .tab-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.images-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 470px;
    margin-right: -30px;
    margin-bottom: -50px;
    max-height: 630px;
    overflow: auto;
}

.images-list li {
    display: flex;
    /* margin-bottom: 20px;
    width: calc(100% / 2 - 20px /2); */
}

.images-list li img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.services-tabs-section .custom-list {
    margin-bottom: 53px;
    margin-top: 35px;
    margin-left: 15px;
}

.services-tabs-section .description {
    margin-bottom: 70px;
    padding-left: 70px;
    position: relative;
}

.services-tabs-section .description::before {
    background-image: url('assets/images/svg/descr.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    content: '';
    display: block;
    height: 18px;
    left: 0;
    position: absolute;
    top: 6px;
    width: 52px;
}

.services-tabs-section .description h4 {
    color: #D2232A;
    font-weight: bold;
    font-size: 18px;
    line-height: 161.9%;
}

.services-tabs-section .description p {
    font-weight: 500;
    font-size: 16px;
    line-height: 161.9%;
}

.services-page .you-deserve {
    margin-top: -194px;
    padding-top: 249px;
}


.modal img{
    width: 100%;
}

.modal {
    padding: 15px 15px !important;
}   

#images-container {
    width: 100%;
    max-width: 700px;
    margin: 1em auto;
}
.images-cols {
    column-count: 2;
    column-gap: 2%;
    column-width: 49%;
}
.box {
    margin-bottom: 3px;
}



@media (max-width: 767px) {
    .services-main-section {
        flex-direction: column-reverse;
        text-align: center;
    }

    .services-main-section img {
        margin-bottom: 51px;
        margin-left: auto;
        margin-right: -20px;
        max-width: 383px;
        width: 100%;
        margin: 0 auto 50px auto;
    }

    .tab-content {
        padding: 15px;
    }
    .tab-content {
        font-size: 14px;
    }
    .page-title {
        padding: 50px 20px;
    }
}

@media (min-width: 768px) {
    .tabs-menu li {
        width: 33.33%;
    }

    .services-main-section p {
        width: 52%;
    }
}

@media (max-width: 991px) {
    .images-list {
        display: none;
    }

    .tabs-menu li {
        border: 5px solid #fff;
    }
}

@media (min-width: 992px) {
    .services-tabs-section .tab-content .text-wrapper {
        width: calc(100% - 470px);
    }

    .services-page main {
        position: relative;
    }
    
    .services-page .page-title {
        left: 0;
        width: 100%;
        position: absolute;
        top: 0;
    }

    .tabs-menu {
        flex-wrap: unset;
    }

    .tabs-menu li {
        width: 100%;
    }

    .tabs-menu li:not(:last-of-type) {
        border-right: 1px solid #fff;
    }

    .services-main-section {
        height: 461px;
    }
}

/* Contact page */
.contact-page .you-deserve {
    margin-top: -107px;
    padding-top: 167px;
}

.contact {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: -21px auto 0;
    max-width: 1260px;
    padding: 0 20px;
}

.contact > div {
    padding: 65px 28px;
    width: 100%;
}

.contact h2 {
    color: #D2232A;
    font-weight: 800;
    font-size: 29px;
    line-height: 55px;
    letter-spacing: 0.04em;
    margin-bottom: 36px;
}

.contact form {
    background: #FFFFFF;
    box-shadow: 0px 0px 34px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px;
    width: 100%;
}

.contact form .btn, .popup-outer-wrapper form .btn {
    margin: 0 auto;
}

input, textarea, select {
    background: rgba(196, 196, 196, 0.05);
    border: 1px solid #000000;
    box-shadow: none;
    font-family: 'Montserrat';
    font-weight: 300;
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 27px;
    padding: 15px;
    width: 100%;
}

input, select {
    height: 55px;
}

.contacts-list {
    color: #2F2F2F;
    font-weight: 500;
    font-size: 18px;
    line-height: 155.7%;
    max-width: 300px;
}

.contacts-list li {
    margin-bottom: 35px;
    padding-left: 30px;
    position: relative;
}

.contacts-list img {
    left: 0;
    position: absolute;
    top: 3px;
}

@media (min-width: 768px) {
    .contact form input, .popup-outer-wrapper form input, .popup-outer-wrapper form select {
        width: calc(100% / 2 - 35px / 2);
    }
}

@media (min-width: 992px) {
    .contact > div {
        width: 33%;
    }

    .contact form {
        padding: 60px;
        width: 67%;
    }

    .contact {
        margin: 86px auto 0;
    }

    .contact-page .you-deserve {
        padding-top: 198px;
    }
}

/* Popup */
.popup-outer-wrapper {
    align-items: flex-start;
    z-index: 999;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.popup-inner-wrapper {
    min-height: 0;
    background-color: #ffffff;
    box-shadow: 0 40px 110px rgba(0, 0, 0, 0.25);
    margin: 20px auto;
    padding: 55px;
    position: relative;
}

.close-btn {
	position: absolute;
	height: 28px;
	width: 28px;
	right: 30px;
	top: 30px;
	cursor: pointer;
	transition: all 0.2s ease;
	z-index: 1;
}

.close-btn:hover {
	transform: scale(1.2);
}

.close-btn::before {
	transform: rotate(45deg);
}

.close-btn::after {
	transform: rotate(135deg);
}

.close-btn::before,
.close-btn::after {
	content: '';
	display: block;
	position: absolute;
	background-color: #3b3b3b;
	height: 2px;
	width: 35px;
	top: 13px;
	left: -3px;
}

.d-none {
    display: none;
}

.d-flex {
    display: flex;
}

.custom-popup-overlay {
    background-color: rgba(0, 0, 0, 0.8);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: -1;
}

.popup-outer-wrapper form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 80px;
    width: 100%;
}

.popup-header {
    background-color: #D2232A;
    color: #fff;
    font-weight: bold;
    font-size: 26px;
    line-height: 32px;
    display: flex;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    padding: 21.5px;
    width: 100%;
}

.popup-header img {
    margin-right: 20px;
}

@media (min-width: 768px) {
    .popup-inner-wrapper {
        margin: 20px auto;
        max-width: 820px;
    }
}

@media (min-width: 1024px) {
    .popup-outer-wrapper {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .reasons h3 {
        font-size: 22px;
    }
    .reasons ul {
        font-size: 16px;
    }
    .reasons h2 {
        font-size: 25px;
        line-height: 35px;
    }
    .services p {
        font-size: 16px;
    }
    .services h2 {
        font-size: 36px;
    }
    .services {
        padding-top: 50px;
    }
    .schedule-services h2 {
        font-size: 16px;
    }
    .schedule-services .btn {
        font-size: 16px;
        padding: 15px 15px;
    }
    .reviews-section {
        padding: 20px 20px 200px;
    }
    .reviews-slider p {
        font-size: 14px;
    }
    .reviews-inner {
        padding: 0px;
    }
    .btn {
        font-size: 16px;
        padding: 10px 30px;
    }
    .you-deserve h3 {
        margin-bottom: 20px;
    }
    .satisfaction-guaranteed {
        padding: 20px 20px;
        font-size: 18px;
    }
    .services-items {
        margin: 72px auto 15px;
    }
    .banner h2 {
        line-height: 40px;
    }
    .about-section p {
        font-size: 16px;
    }
    .choosing-list li {
        font-size: 16px;
    }
    .licensed p {
        font-size: 16px;
    }
    .licensed h2 {
        font-size: 26px;
    }
    .page-about .you-deserve {
        padding-top: 35px;
        padding-bottom: 45px;
    }
    .page-title h2 {
        font-size: 24px;
    }
    .contact h2 {
        font-size: 22px;
    }
    .contacts-list li, .services-main-section p {
        font-size: 16px;
    }
    .contact form {
        padding: 10px 10px 30px 10px;
    }
    .page-title img {
        max-width: 80px;
    }
    
}
@media (max-width: 400px) {
    .banner .inner-wrapper {
        padding: 36px 5px 0;
    }
}