/* USER VARIABLES SECTION */

:root {
    --accent: orange;
    --text: #333;
    --regular-text: 16px;
    --lineheight: 1.65;
    --userfont: Montserrat, sans-serif;
    --systemfont: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

/* BOOTSTRAP SETTINGS SECTION */

/* gutter 20px (10px + 10px). Comment this code for default gutter start at 1.5rem (24px) wide. */
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    --bs-gutter-x: .625rem;
}

.row, .row > * {
    --bs-gutter-x: 1.25rem;
}

/* FONTS LOAD SECTION */

@font-face {
    src: url("../fonts/roboto-regular-webfont.woff2") format("woff2");
    font-family: "roboto-st";
    font-weight: 400;
    font-style: normal;
}

@font-face {
    src: url("../fonts/roboto-italic-webfont.woff2") format("woff2");
    font-family: "roboto-st";
    font-weight: 400;
    font-style: italic;
}

@font-face {
    src: url("../fonts/roboto-bold-webfont.woff2") format("woff2");
    font-family: "roboto-st";
    font-weight: 700;
    font-style: normal;
}

@font-face {
    src: url("../fonts/roboto-bolditalic-webfont.woff2") format("woff2");
    font-family: "roboto-st";
    font-weight: 700;
    font-style: italic;
}


@font-face {
    src: url("../fonts/montserrat-regular.woff2") format("woff2");
    font-family: "Montserrat";
    font-weight: 400;
    font-style: normal;
}

@font-face {
    src: url("../fonts/montserrat-italic.woff2") format("woff2");
    font-family: "Montserrat";
    font-weight: 400;
    font-style: italic;
}

@font-face {
    src: url("../fonts/montserrat-bold.woff2") format("woff2");
    font-family: "Montserrat";
    font-weight: 700;
    font-style: normal;
}

@font-face {
    src: url("../fonts/montserrat-bolditalic.woff2") format("woff2");
    font-family: "Montserrat";
    font-weight: 700;
    font-style: italic;
    margin-left: 15px;
}

/* GENERAL CSS SETTINGS */

::placeholder {
    color: #666;
}

::selection {
    background-color: var(--accent);
    color: #fff;
}

input, textarea {
    outline: none;
}

input:focus:required:invalid, textarea:focus:required:invalid {
    border-color: red;
}

input:required:valid, textarea:required:valid {
    border-color: green;
}

body {
    font-family: var(--userfont);
    font-size: var(--regular-text);
    line-height: var(--lineheight);
    color: var(--text);
    min-width: 320px;
    position: relative;
    overflow-x: hidden;
    background: #F5F5F5;
}

/* USER STYLES */

.image {
    max-width: 100%;
    margin-bottom: var(--bs-gutter-x);
    border-radius: 4px;
}

.accent {
    color: #FF5E00;
    
}

.accent1 {
    color: #000;

}


.title {

    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-size: 32px;
    line-height: 39px;
    letter-spacing: 0.02em;

    color: #FF5E00;

    margin-bottom: 25px;
}

.rates-item {
    background: #fff;
    background-image: url("../images/rates-left-circle.svg");
    background-repeat: no-repeat;
    background-position: left 210px;
    border-bottom-left-radius: 200px;
    border-bottom-right-radius: 200px;
    margin-right: 20px;
    margin-left: 20px;
    min-height: 300px;
}

.rates-item:hover {
    box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px 0px;
}

.btn-list {
    text-align: center;
}

.rates-item .rates-item__header {
    border-bottom-left-radius: 180px;
    border-bottom-right-radius: 180px;
    background: #F6F6FA;
    background-image: url("../images/rates-top-circle.svg"), url("../images/rates-right-circle.svg");
    background-position: 25px top, right 50px;
    background-repeat: no-repeat, no-repeat;
    padding: 10px;
    padding-top: 30px;
    text-align: center;
}

.rates-item__header .shows-title {
    font-weight: 600;
    font-size: 42px;
    line-height: 51px;
    text-align: center;
    letter-spacing: 0.02em;

    color: #FF5E00;
}

.rates-item__header .shows-subtitle {
    font-weight: 300;
    font-size: 42px;
    line-height: 51px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #000000;
    margin-top: -10px;
}

.rates-item .rates-item__body {
    padding: 20px;
    padding-bottom: 80px;
    margin: 20px;
}

.rates-item__body .rates-body__description {
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.02em;

    color: #565A7A;
    list-style: none;
}

.rates-body__description li {
    margin-bottom: 15px;
}

.btn {
    border: none;
    background: #FF5E00;
    box-shadow: 0px 4px 10px rgba(255, 94, 0, 0.3);
    border-radius: 40px;
    padding: 10px 40px;
    font-weight: 600;
    font-size: 16px;
    line-height: 29px;

    color: #FFFFFF;
}

.btn:hover {
    box-shadow: 0px 5px 18px rgba(255, 94, 0, 4.3);
}

p {
    font-size: 16px;
}

.client-list {

}

.client-list .client-list__item {
    text-align: center;
}

.header-banner {
    min-height: 853px;
    height: 100%;
    background-image: url(../images/background-baner.png);
    background-repeat: no-repeat, no-repeat;
    background-size: cover;
}

.list-none {
    list-style: none;
}

.cursor-pointer {
    cursor: pointer;
}

.grid-template-column-2 {
    grid-template-columns: 1fr 2fr;
}

.white-text {
    color: #fff;
}

.margin-top-12 {
    margin-top: 10rem;
}

.contract-description {
    font-weight: 400;
    font-size: 22px;
    line-height: 27px;
    letter-spacing: 0.02em;

    color: rgba(0, 0, 0, 0.7);

    margin-bottom: 4rem;
}

.price-title {
    font-weight: 600;
    font-size: 38px;
    line-height: 46px;
    text-align: center;
    letter-spacing: 0.02em;

    color: #151C69;

}


.price-subtitle {
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    /* identical to box height */

    text-align: center;
    letter-spacing: 0.02em;

    color: #525676;
}

.contact-list {
    font-weight: 300;
    font-size: 22px;
    line-height: 28px;
    letter-spacing: 0.02em;
    color: #525676;
    list-style-type: none;
    list-style-position: inside;
}

.contact-list__item {


    margin-bottom: 15px;
}

.contact-list__item span {
    font-weight: 500;
    font-size: 22px;
    line-height: 28px;
    /* identical to box height */
    letter-spacing: 0.02em;
    color: #000000;
}

.contact {
    margin-top: 100px;
    padding-top: 50px;
    background-image: url(../images/footer-bg.svg);
    background-position: right -300px bottom 32px;
    background-size: auto 100%;
    background-repeat: no-repeat;
}

.contact-btn {
    background: #FF5E00;
    border-radius: 60px;
    padding: 16px 40px;

    font-weight: 600;
    font-size: 22px;
    line-height: 24px;

    color: #FFFFFF;

    border: none;
}

.header-banner__title {
    font-weight: 700;
    font-size: 38px;
    line-height: 46px;
    letter-spacing: 0.02em;

    color: #FFFFFF;
}

.header-banner__subtitle {
    font-weight: 300;
    font-size: 24px;
    line-height: 30px;
    color: #FFFFFF;
    margin-top: 25px;
}

.header-banner-btn {
    border: 2px solid #FFFFFF;
    border-radius: 50px;
    padding: 20px 50px;

    font-weight: 600;
    font-size: 22px;
    line-height: 25px;

    color: #FFFFFF;

    margin-top: 40px;

    background: transparent;
}

.rates {
    margin-top: 100px;
    margin-bottom: 20px;
}

.social-icons {
    margin-top: 100px;
    list-style-type: none;
    display: flex;
}

.social-icons li {
    margin-right: 20px;
}
.icon:hover path{
    fill: #FF5E00;
}

.w-100 {
    width: 100%!important;
}
.btn-call {
    background: #FF5E00;
    box-shadow: 0px 4px 20px rgba(255, 94, 0, 0.5);
    -webkit-animation: call-animation 2s infinite;
    animation: call-animation 2s infinite;

    border-radius: 50px;
    padding: 5px;
    text-decoration: none ;
    max-width: 270px;
    border: none;
}

.call {
    display: flex;
}

.btn-call img {
    height: 50px;
    margin-right: 15px;

    -webkit-animation: call 1s infinite;
    animation: call 1s infinite;
}

.call__title {
    display: block;

    font-weight: 300;
    font-size: 16px;
    line-height: 18px;
    color: #FFFFFF;
    margin-bottom: 5px;
    margin-top: 5px;
}

.call_phone {
    font-weight: 600;
    font-size: 18px;
    line-height: 20px;

    color: #FFFFFF;
}

#modal-overlay {
    width: 100%;
    height: 100vh;
    position: fixed;
    background: rgba(0, 0, 0, 0.7);

    display: none;
    align-items: start;
    justify-content: center;
    z-index: 99;
}

#modal-overlay-success {
    width: 100%;
    height: 100vh;
    position: fixed;
    background: rgba(0, 0, 0, 0.7);

    display: none;
    align-items: start;
    justify-content: center;
    z-index: 99;
}

#modal-overlay #modal {
    max-width: 511px;
    width: 100%;
    background: #E5E5E5;
    background-image: url(../images/modal-bg.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;

    display: flex;
    flex-direction: column;
    padding:    40px 30px;

    margin-top:110px;
}


#modal-overlay-success #modal-succes {
    max-width: 511px;
    width: 100%;
    background: #E5E5E5;
    background-image: url(../images/modal-bg.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;

    display: flex;
    flex-direction: column;
    padding:    40px 30px;

    margin-top:110px;
}

#modal-overlay #modal img {
    height: 45px;

}
.modal-close {
    text-align: end;
}

#close-modal {
    top: -70px;
    right: -70px;
    position: relative;
}
#close-modal:hover {
    cursor: pointer;
}
#modal-overlay #modal .modal-footer {
    margin-top: auto;
    text-align: center;
}

#modal-overlay-success #modal-succes .modal-footer {
    margin-top: auto;
    text-align: center;
}

#modal-overlay #modal .modal-header
{
    font-weight: bold;
    font-size: 24px;
    line-height: 30px;
    color: #FF5E00;
    text-align: center;
}
.modal-description {
    font-weight: 300;
    margin-top: 5px;
    font-size: 18px;
    line-height: 27px;
    text-align: center;
    letter-spacing: 0.02em;
    color: rgba(0, 0, 0, 0.7);
}


.modal-content .modal-input {
    background: #FFFFFF;
    border-radius: 60px;
    padding: 5px 20px;
    border: 0;
    width: 100%;
    min-height: 45px;
}

.modal-content .modal-textarea {
    background: #FFFFFF;
    border-radius: 30px;
    padding: 17px 20px;
    border: 0;
    width: 100%;
    min-height: 150px;
}
input::placeholder, textarea::placeholder {
    color: #A0A0A0;
}

.just-validate-error-label {
    font-size: 15px;
    padding-top: 5px;
    padding-left: 10px;
}

/* Menu */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
    position: relative;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    margin-left: 15px;
}
.logo img {
    height: 40px;
    margin-top: -16px;
}

.menu-toggle {
    display: none;
}

.hamburger {
    display: block;
    position: relative;
    width: 20px;
    height: 3px;
    background-color: #fff;
    margin-top: 5px;
    margin-bottom: 5px;
}

.hamburger:before,
.hamburger:after {
    content: '';
    display: block;
    /*position: absolute;*/
    width: 30px;
    height: 3px;
    background-color: #fff;
}

.hamburger:before {
    transform: translateY(-6px);
}

.hamburger:after {
    transform: translateY(4px);
}

nav {
    display: flex;
}

.menu {
    display: flex;
    list-style: none;
}

.menu li {
    margin-left: 40px;
}

.menu a {
    text-decoration: none;

    font-size: 20px;
    line-height: 24px;
    color: #fff;
}
.menu a:hover {
    color: #fd701d;
}

.btn-call {
    margin-right: 10px;
    position: fixed;
    bottom: 50px;
    z-index: 98;
}

.header-menu {
    display: none;
    padding: 30px;
}

.splide__arrow {
    display: none!important;
}
.splide__pagination {
    bottom: -2.5em;
}
.menu-social-icons {
    display: none;
}
@media only screen and (max-width: 768px) {
    .header-menu {
        display: block;
        border-bottom: 1px solid rgba(255, 94, 0, 0.6);
    }

    .header-menu .logo-menu {
        height: 40px;
    }

    .nav-menu {
        display: block;
        width: 100%;
    }

    .menu-toggle-close {
        display: block;
        position: absolute;
        top: 30px;
        right: 30px;
        cursor: pointer;
    }
    .menu-toggle {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        cursor: pointer;
    }

    .hamburger {
        width: 20px;
        height: 3px;
        background-color: #fff;
        margin: 5px 0;
    }

    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background-color: #fff;
        transition: all 0.3s ease-in-out;
        z-index: 9999;
    }

    .menu {
        flex-direction: column;
        margin-left: -40px;
    }

    .menu li {
        padding: 20px 0;
        border-bottom: 1px solid rgba(255, 94, 0, 0.1);
    }

    .menu a {
        font-weight: 500;
        font-size: 20px;
        line-height: 24px;

        color: #202020;
        text-decoration: none;
    }

    .menu-social-icons {
        display: block;
        list-style-type: none;
        margin-top: 30px;
        margin-top: 36px;
    }

    .menu-social-icons li {
        margin-bottom: 15px;
    }

    .active-nav {
        left: 0;
    }
}
/* End Menu */

.header-desc {
    margin-top:10rem;
}

.service-item {
    mix-blend-mode: normal;
    box-shadow: 7px 7px 0px #FF5E00;
    width: 87%;
    border-bottom-left-radius: 215px;
    overflow: hidden;
    margin-bottom: 10px;
}

.service-pagination {
    bottom: 1.5rem;
}

.service-item img {
    width: 100%;
}


/* Safari 4.0 - 8.0 */
@-webkit-keyframes call-animation {
    0% { box-shadow: 0px 4px 10px rgba(255, 94, 0, 0.5);}
    10% { box-shadow: 0px 4px 13px rgba(255, 94, 0, 0.6);}
    20% { box-shadow: 0px 4px 16px rgba(255, 94, 0, 0.7);}
    30% { box-shadow: 0px 4px 19px rgba(255, 94, 0, 0.8);}
    40% { box-shadow: 0px 4px 22px rgba(255, 94, 0, 0.9);}
    50% { box-shadow: 0px 4px 25px rgba(255, 94, 0, 1.0);}
    60% { box-shadow: 0px 4px 22px rgba(255, 94, 0, 0.9);}
    70% { box-shadow: 0px 4px 19px rgba(255, 94, 0, 0.8);}
    80% { box-shadow: 0px 4px 16px rgba(255, 94, 0, 0.7);}
    90% { box-shadow: 0px 4px 13px rgba(255, 94, 0, 0.6);}
    100% { box-shadow: 0px 4px 10px rgba(255, 94, 0, 0.5);}
}

@keyframes call-animation {
    0% { box-shadow: 0px 4px 10px rgba(255, 94, 0, 0.5);}
    10% { box-shadow: 0px 4px 13px rgba(255, 94, 0, 0.6);}
    20% { box-shadow: 0px 4px 16px rgba(255, 94, 0, 0.7);}
    30% { box-shadow: 0px 4px 19px rgba(255, 94, 0, 0.8);}
    40% { box-shadow: 0px 4px 22px rgba(255, 94, 0, 0.9);}
    50% { box-shadow: 0px 4px 25px rgba(255, 94, 0, 1.0);}
    60% { box-shadow: 0px 4px 22px rgba(255, 94, 0, 0.9);}
    70% { box-shadow: 0px 4px 19px rgba(255, 94, 0, 0.8);}
    80% { box-shadow: 0px 4px 16px rgba(255, 94, 0, 0.7);}
    90% { box-shadow: 0px 4px 13px rgba(255, 94, 0, 0.6);}
    100% { box-shadow: 0px 4px 10px rgba(255, 94, 0, 0.5);}
}


@keyframes call{
    0% { transform: rotateZ(0deg);}
    10% { transform: rotateZ(5deg);}
    20% { transform: rotateZ(10deg);}
    30% { transform: rotateZ(15deg);}
    40% { transform: rotateZ(10deg);}
    50% { transform: rotateZ(5deg);}
    60% { transform: rotateZ(0deg);}
    70% { transform: rotateZ(-5deg);}
    80% { transform: rotateZ(-10deg);}
    90% { transform: rotateZ(-5deg);}
    100% { transform: rotateZ(0deg);}
}
