:root {
    --ze-main-color: #3A954F;
    --ze-second-color: #FF7029;
    --ze-heading-font: "Plus Jakarta Sans", serif;
    --ze-body-font: 'Inter', sans-serif;
}

body {
    font-family: var(--ze-body-font);
    font-size: 16px;
    line-height: 1.5;
}

body.prevent {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--ze-heading-font);
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
}

.modal-backdrop {
    --bs-backdrop-opacity: 0.85;
}

.top-bar {
    position: relative;
    padding: 15px 0 60px;
    background-color: var(--ze-main-color);
}

.top-bar a {
    color: #FFF !important;
    letter-spacing: .6px;
    transition: .2s;
}

.top-bar .top-bar-column:first-child a:not(:last-child) {
    margin-right: 20px;
}

.top-bar .top-bar-column:first-child a i {
    margin-right: 8px;
}

.menu-bar {
    position: relative;
    background-color: #FFF;
    border-radius: 100px;
    margin-top: -45px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px 0 12px;
}

.menu-bar .logo img {
    width: 152px;
}

.nav-bar {
    margin-right: auto;
    margin-left: 65px;
}

.navbar-links {
    display: flex;
    margin-bottom: 0;
}

.navbar-links li {
    margin: 0 15px;
}

.navbar-links a {
    display: inline-block;
    padding: 30px 0;
    font-weight: 400;
    color: #1F2220;
    letter-spacing: .6px;
    transition: .2s;
}

.navbar-links a:hover {
    color: var(--ze-second-color);
}

.menu-bar .btn-action a {
    position: relative;
    display: inline-block;
    padding: 18px 30px 18px 75px;
    background-color: var(--ze-second-color);
    color: #FFF;
    border-radius: 100px;
    font-weight: 600;
    letter-spacing: .6px;
    border: 2px solid transparent;
    transition: .2s;
}

.menu-bar .btn-action a:hover {
    background-color: #FFF;
    border-color: var(--ze-second-color);
    color: var(--ze-second-color);
}

.menu-bar .btn-action a i {
    position: absolute;
    top: 48%;
    left: 35px;
    transform: translateY(-50%) rotate(319deg);
    font-size: 28px;
}

.top-hero {
    position: relative;
    background-image: url(/img/freepik__adjust__11292-min.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    min-height: calc(100vh - 98px);
    margin-top: -40px;
    display: flex;
/*    align-items: center;*/
}

.top-hero:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    background-image: linear-gradient(180deg, #F8F2F080 4%, #110d07 40%);
    opacity: .7;
}

.top-hero .container {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.top-hero .hero-content {
    padding-top: 160px;
}

.top-hero .hero-content .hero-brand {
    color: #FFF;
    letter-spacing: 14px;
    margin-bottom: 8px;
    font-size: 14px;
}

.top-hero .hero-content .h1 {
    font-size: 46px;
    color: #FFF;
    margin-bottom: 35px;
    font-weight: 700;
}

.top-hero .hero-content .h1 span {
    background-color: #ff7129;
    line-height: 50px;
    padding: 0 10px 8px 10px;
    border-radius: 8px;
    display: inline-block;
}

.top-hero .hero-content p {
    color: #FFF;
    max-width: 50%;
    letter-spacing: .6px;
}

.top-hero .hero-content a {
    position: relative;
    background-color: var(--ze-main-color);
    color: #FFF;
    height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    padding: 0 30px 0 70px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .6px;
    transition: .2s;
}

.top-hero .hero-content a:hover {
    background-color: var(--ze-second-color);
}

.top-hero .hero-content a i {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background-color: #FFF;
    color: var(--ze-main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding-top: 3px;
    transition: .2s;
}

.top-hero .hero-content a:hover i {
    color: var(--ze-second-color);
}

.top-hero .top-action {
    margin-top: -100px;
}

.top-hero .top-action .columns {
    background-color: #FFF;
    border-radius: 25px 25px 0 0;
    padding: 25px 35px;
    max-width: 412px;
    margin-left: auto;
}

.top-hero .top-action .column-left {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
/*    justify-content: center;*/
}

.top-hero .top-action .column-left label {
    font-size: 18px;
    color: #828282;
    margin-right: 13px;
    margin-top: 1px;
}

.top-hero .top-action .column-left a {
    font-size: 26px;
    font-family: var(--ze-heading-font);
    font-weight: 600;
    color: #ff7229;
}

.top-hero .top-action .separator {
/*    text-align: center;*/
    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
    color: #828282;
}

/*.top-hero .top-action .separator:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 1px;
    width: 100%;
    background-color: #828282;
}

.top-hero .top-action .separator span {
    background-color: #FFF;
    position: relative;
    padding: 0 15px;
}*/

.top-hero .top-action .form-control {
    height: 50px;
    padding: 0 20px;
}

.top-hero .top-action [type="submit"] {
    background-color: var(--ze-main-color);
    color: #FFF;
    margin-top: 10px;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    transition: .2s;
}

.top-hero .top-action [type="submit"]:hover {
    background-color: var(--ze-second-color);
}

.top-hero .top-action [type="submit"] i {
    margin-right: 8px;
}

.bloc-ze-brand {
    letter-spacing: 6px;
    margin-bottom: 8px;
    font-size: 14px;
    text-align: center;
    color: var(--ze-main-color);
    text-transform: uppercase;
}

.bloc-ze-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -1.4px;
    text-align: center;
    font-family: var(--ze-heading-font);
}

.nos-services {
    margin-bottom: 100px;
    background-color: rgb(235, 243, 237);
    padding: 100px 0 120px;
}

.nos-services .service-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
    margin-top: 100px;
}

.nos-services .service-item {
    border-radius: 20px;
    padding: 40px 30px 20px 30px;
    background-color: #FFF;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}

.nos-services .service-item:nth-child(1),
.nos-services .service-item:nth-child(3) {
    transform: scale(0.9);
}

.nos-services .service-item:nth-child(2) {
    transform: scale(1.08);
}

.nos-services .service-item .icon i {
    width: 76px;
    height: 76px;
    background-color: var(--ze-main-color);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 32px;
    padding-top: 3px;
    padding-right: 1px;
    margin: 0 auto 20px;
}

.nos-services .service-item .title {
    font-family: var(--ze-heading-font);
    font-size: 26px;
    letter-spacing: -1.4px;
    line-height: normal;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}

.nos-services .service-item p {
    color: #828282;
    text-align: center;
}

.choose-area {
    margin-bottom: 100px;
}

.choose-area .columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    grid-gap: 25px;
}

.choose-area .ze-brand {
    letter-spacing: 6px;
    color: #3a954f;
    margin-bottom: -5px;
    font-size: 14px;
}

.choose-area .title {
    font-size: 54px;
    font-family: var(--ze-heading-font);
    font-weight: 700;
    letter-spacing: -0.6px;
    margin-bottom: 30px;
}

.choose-area p {
    color: #828282;
    font-size: 18px;
}

.choose-area li {
    color: #828282;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 18px;
}

.choose-area li i {
    color: var(--ze-second-color);
    margin-right: 20px;
    font-size: 35px;
    font-weight: 300;
    width: 80px;
    height: 80px;
    border: 2px solid var(--ze-second-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 3px;
}

.choose-area li i:after {
    transform: rotate(100deg);
    width: 83px;
    height: 87px;
    position: absolute;
    background-color: #fff;
    content: "";
    border-radius: 64%;
    z-index: -15;
    border: 8px solid var(--ze-second-color);
    -webkit-clip-path: inset(50% 0 0 50%);
    clip-path: inset(50% 0 0 50%);
}

.choose-area li .content span {
    font-size: 27px;
    display: block;
    font-family: var(--ze-heading-font);
    color: #212529;
    font-weight: 600;
    margin-bottom: 3px;
    letter-spacing: -0.6px;
}

.choose-area .column:last-child {
    padding-left: 50px;
}

.choose-area img {
    width: 100%;
}

.choose-area .call-us {
    position: relative;
    background-color: var(--ze-main-color);
    color: #FFF;
    height: 55px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    padding: 0 30px 0 70px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .6px;
    margin-top: 15px;
    transition: .2s;
}

.choose-area .call-us:hover {
    background-color: var(--ze-second-color);
}

.choose-area .call-us i {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    background-color: #FFF;
    color: var(--ze-main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding-top: 3px;
    transition: .2s;
}

.choose-area .call-us:hover i {
    color: var(--ze-second-color);
}

.companies-area {
    padding: 100px 0;
}

.companies-area .list-companies {
    margin-top: 80px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    grid-gap: 20px;
}

.companies-area .list-companies .company {
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, .1);
    border-radius: 10px;
    overflow: hidden;
    width: 18%;
}

.companies-area .list-companies img {
    width: 100%;
}

.discover-note .banner {
    background-color: rgb(32 36 33);
    border-radius: 20px;
    padding: 40px 50px;
    display: grid;
    grid-template-columns: 60% 40%;
    margin-bottom: 100px;
}

.discover-note .banner .title {
    color: #FFF;
    font-size: 38px;
    font-family: var(--ze-heading-font);
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.6px;
    margin-bottom: 15px;
}

.discover-note .banner p {
    font-size: 18px;
    color: #DDD;
}

.discover-note .banner img {
    width: 150px;
}

.discover-note .banner .column:last-child {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.discover-note .banner .btn-action {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.discover-note .btn-action .btn {
    position: relative;
    display: inline-block;
    padding: 15px 30px 15px 30px;
    background-color: var(--ze-second-color);
    color: #FFF;
    border-radius: 100px;
    font-weight: 600;
    letter-spacing: .6px;
    border: 2px solid transparent;
    transition: .2s;
    font-size: 18px;
    margin-bottom: 35px;
}

.discover-note .btn-action .btn:hover {
    background-color: transparent;
    color: var(--ze-second-color);
    border-color: var(--ze-second-color);
}

.discover-note .btn-action .number-phone {
    font-size: 18px;
    font-weight: 600;
    color: #FFF;
    display: flex;
    align-items: center;
}

.discover-note .btn-action .number-phone i {
    margin-right: 20px;
    width: 55px;
    height: 55px;
    font-size: 24px;
    background-color: var(--ze-main-color);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding-top: 3px;
    transition: .2s;
}

.discover-note .btn-action .number-phone:hover {
    color: var(--ze-second-color);
}

.discover-note-modal .modal-dialog {
    max-width: 615px;
}

.discover-note-modal .modal-content {
    border-radius: 10px;
    overflow: hidden;
    border: unset;
}

.discover-note-modal .modal-body {
    padding: 20px 20px
}

.discover-note-modal .col--2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

.discover-note-modal .modal-header {
    background-color: var(--ze-main-color);
    color: #FFF;
    padding: 15px 20px;
}

.discover-note-modal .modal-header .modal-title {
    color: #FFF;
    font-size: 32px;
    font-family: var(--ze-heading-font);
    font-weight: 700;
    letter-spacing: -0.6px;
}

.discover-note-modal form .form-control {
    height: 50px;
    border-color: #E0E2E3;
}

.discover-note-modal form [type="file"].form-control {
    height: unset;
}

.discover-note-modal form [type="file"] {
    padding: 12px 15px;
}

.discover-note-modal form [type="submit"] {
    background-color: var(--ze-main-color);
    width: 100%;
    border-color: var(--ze-main-color);
    height: 50px;
    border-radius: 10px;
    font-weight: 600;
    transition: .2s;
}

.discover-note-modal form [type="submit"]:hover {
    background-color: var(--ze-second-color);
    border-color: var(--ze-second-color);
}

.discover-note-modal form [type="submit"] i {
    margin-right: 10px;
}

.discover-note-modal .alert {
    margin-bottom: 15px !important;
}

.action-steps .banner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: #ebf3ed;
    border-radius: 20px;
    padding: 50px 50px 100px;
}

.action-steps .box-column {
    text-align: center;
}

.action-steps .icon {
    width: 82px;
    height: 82px;
    background-color: #FFF;
    color: var(--ze-main-color);
    font-weight: 700;
    font-family: var(--ze-heading-font);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    font-size: 28px;
}

.action-steps .title {
    font-size: 20px;
    font-weight: 700;
    font-family: var(--ze-heading-font);
    margin-bottom: 3px;
    letter-spacing: -0.6px;
}

.faqs-area {
    margin-bottom: 100px;
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    font-size: 14px;
    padding: 15px;
    color: #FFF;
    background-color: var(--ze-main-color);
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-item.show .faq-question {
    background-color: var(--ze-second-color);
    color: #FFF;
}

.faq-question i {
    min-width: 25px;
}

.faq-answer {
    padding: 15px;
    background-color: #fff;
    display: none;
    border-top: 1px solid #ddd;
}

.faq-answer p, .faq-answer ul {
    margin: 0;
    color: #777;
    letter-spacing: .6px;
    font-size: 14px;
    line-height: 22px;
}

.faqs-items {
    margin-top: 80px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px 50px;
    align-items: flex-start;
}

.form-contact {
    margin-bottom: 100px;
}

.form-contact-content {
    max-width: 1024px;
    margin: -65px auto 0;
    background-color: var(--ze-main-color);
    padding: 40px;
    border-radius: 20px;
}

.form-contact-content .title {
    text-align: center;
    font-size: 28px;
    font-family: var(--ze-heading-font);
    font-weight: 700;
    color: #FFF;
    margin-bottom: 40px;
    letter-spacing: -0.6px;
}

.form-contact-content .title a {
    color: #FFF;
    background-color: var(--ze-second-color);
    padding: 1px 8px 3px;
    border-radius: 8px;
    margin: 0 5px;
}

.form-contact-content .col--2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

.form-contact-content label {
    color: #FFF;
}

.form-contact-content .form-control:not([type="file"]) {
    height: 50px;
}

.form-contact-content [type="file"].form-control {
    padding: 12px;
}

.form-contact-content .btn {
    background-color: var(--ze-second-color);
    width: 100%;
    border-color: var(--ze-second-color);
    height: 50px;
    border-radius: 10px;
    font-weight: 600;
    transition: .2s;
    margin-top: 15px;
}

.form-contact-content .btn i {
    margin-right: 10px;
}

footer {
    background-color: rgb(31, 34, 32);
    padding: 20px 0;
}

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

footer .logo {
    margin-right: 25px;
}

footer .logo img {
    width: 85px;
}

footer p {
    margin-bottom: 0;
    color: #FFF;
    opacity: .9;
}

.bottom-action {
    background-color: var(--ze-second-color);
    padding: 30px 0;
}

.bottom-action .columns {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-action .title {
    color: #FFF;
    font-size: 32px;
    font-family: var(--ze-heading-font);
    font-weight: 700;
    letter-spacing: -0.6px;
    margin-bottom: 10px;
}

.bottom-action p {
    color: #FFF;
    margin-bottom: 0;
    opacity: .9;
}

.bottom-action .btn {
    background-color: var(--ze-main-color);
    color: #FFF;
    font-size: 22px;
    padding: 15px 35px;
    border-radius: 10px;
    margin-left: 15px;
    font-family: var(--ze-heading-font);
    font-weight: 500;
    letter-spacing: -0.6px;
    transition: .2s;
}

.bottom-action .btn:hover {
    background-color: #2d8040;
}

.bottom-action .btn i {
    margin-right: 10px;
}

.rappel-modal .modal-header {
    background-color: var(--ze-main-color);
    color: #FFF;
    padding: 15px 20px;
}

.rappel-modal .modal-title {
    color: #FFF;
    font-size: 32px;
    font-family: var(--ze-heading-font);
    font-weight: 700;
    letter-spacing: -0.6px;
}

.rappel-modal form .form-control {
    height: 50px;
    border-color: #E0E2E3;
}

.rappel-modal .modal-body {
    padding: 20px 20px;
}

.rappel-modal form [type="submit"] {
    background-color: var(--ze-main-color);
    width: 100%;
    border-color: var(--ze-main-color);
    height: 50px;
    border-radius: 10px;
    font-weight: 600;
    transition: .2s;
}

.rappel-modal form [type="submit"]:hover {
    background-color: var(--ze-second-color);
    border-color: var(--ze-second-color);
}

.rappel-modal form [type="submit"] i {
    margin-right: 10px;
}

.rappel-modal form .alert {
    margin-bottom: 15px !important;
}

.moda-call-us {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgb(0 0 0 / 85%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-call-us-dialog {
    position: relative;
    padding: 45px 50px 50px;
    border-radius: 20px;
    max-width: 715px;
    width: 100%;
    background-color: #FFF;
    text-align: center;
}

.modal-call-us-dialog img {
    width: 200px;
    margin-bottom: 15px;
}

.modal-call-us-dialog .title {
    font-size: 38px;
    font-family: var(--ze-heading-font);
    font-weight: 700;
    letter-spacing: -0.6px;
    margin-bottom: 15px;
    color: var(--ze-main-color);
}

.modal-call-us-dialog .content {
    font-size: 22px;
    color: #363636;
}

.modal-call-us-dialog .content a {
    background-color: var(--ze-second-color);
    color: #FFF;
    padding: 6px 10px;
    border-radius: 8px;
    margin-left: 3px;
}

.modal-call-us-dialog .close-callus-action {
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 22px;
    padding: 10px;
    color: #363636;
}

.btn-menu {
    display: none;
}

@media (max-width: 1024px) {

    .nav-bar {
        display: none;
    }

    .menu-bar {
        padding: 10px 12px 10px 12px;
    }

    .menu-bar .btn-action {
        margin-left: auto;
        margin-right: 10px;
    }

    .btn-menu {
        width: 64px;
        height: 64px;
        background-color: var(--ze-main-color);
        color: #FFF;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50px;
        font-size: 30px;
        padding-top: 3px;
    }

    .top-hero {
        background-size: cover;
        min-height: 660px;
    }

    .nav-bar {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: 9999999;
        margin: 0;
        background-color: rgb(0 0 0 / 85%);
    }

    .nav-bar .navbar-links {
        position: relative;
        background-color: #FFF;
        flex-direction: column;
        max-width: 250px;
        height: 100%;
        padding-top: 75px;
    }

    .nav-bar .navbar-links li {
        margin: 0;
    }

    .nav-bar .navbar-links a {
        padding: 20px 15px;
        width: 100%;
    }

    .companies-area .list-companies {
        grid-gap: 15px;
    }

    .nos-services .service-item {
        transform: scale(1) !important;
    }

    .nos-services .service-items {
        grid-template-columns: repeat(1, 1fr);
    }

    .discover-note .banner {
        grid-template-columns: 100%;
        padding: 40px 25px;
    }

    .discover-note .banner .column:last-child {
        justify-content: flex-start;
        margin-top: 35px;
    }

    .discover-note .banner .btn-action {
        align-items: flex-start;
    }

    .discover-note .btn-action .btn {
        margin-bottom: 25px;
    }

    .choose-area .columns {
        grid-template-columns: repeat(1, 1fr);
    }

    .choose-area .column:last-child {
        display: none;
    }

    .form-contact-content {
        margin: 100px 0 0;
    }

    .action-steps .banner {
        padding: 50px 25px;
    }

    .form-contact-content {
        padding: 40px 25px;
    }

    .faqs-items {
        grid-gap: 10px 20px;
    }

    .bottom-action .columns {
        flex-direction: column;
    }

    .bottom-action .title {
        text-align: center;
    }

    .bottom-action p {
        text-align: center;
    }

    .bottom-action .column:first-child {
        margin-bottom: 25px;
    }

    .top-hero .top-action {
        margin-top: unset;
    }

    .nav-bar .navbar-links li:first-child {
        display: block !important;  
    }

    .close-menu {
        position: absolute;
        top: 10px;
        right: 10px;
        padding: 10px;
        font-size: 18px;
    }

}

@media (max-width: 992px) {

    .top-hero .hero-content p {
        max-width: 100%;
    }

    .top-hero .hero-content .h1 br {
        display: none;
    }

}

@media (max-width: 767px) {

    .top-hero:before {
        background-image: linear-gradient(180deg, #F8F2F080 -40%, #110d07 40%);
    }

    .menu-bar .logo img {
        width: 115px;
    }

    .menu-bar .btn-action a i {
        left: 10px;
        font-size: 20px;
    }

    .menu-bar .btn-action a {
            padding: 5px 10px 5px 31px;
    }

    .btn-menu {
        width: 40px;
        height: 40px;
        font-size: 20px;
        padding-top: 2px;
    }

    .menu-bar .btn-action {
        margin-right: 5px;
    }

    .menu-bar {
        padding: 6px 8px 6px 6px;
    }

    .top-bar .top-bar-column:first-child a:not(:last-child) {
        margin-right: 10px;
    }

    .top-bar .top-bar-column:first-child a i {
        margin-right: 4px;
    }

    .top-bar a {
        font-size: 15px;
    }

    .modal-call-us-dialog {
        margin: 0 15px;
        padding: 45px 15px 50px;
    }

    .modal-call-us-dialog .title {
        font-size: 30px;
        line-height: normal;
    }

    .modal-call-us-dialog .content a {
        display: inline-block;
        margin-top: 10px;
    }

    .top-hero .hero-content .h1 {
        font-size: 38px;
    }

    .top-hero .hero-content .h1 span {
        display: inline;
        background-color: unset;
        padding: 0;
    }

    .top-hero .hero-content {
        padding-top: 100px;
    }

    .top-hero .hero-content p {
        margin-bottom: 35px;
    }

    .top-hero .top-action .columns {
        padding: 25px 15px;
    }

    .bloc-ze-title {
        font-size: 38px;
    }

    .companies-area .list-companies .company {
        width: 30%;
    }

    .discover-note .banner {
        padding: 40px 15px;
    }

    .discover-note .banner .title {
        font-size: 30px;
    }

    .discover-note-modal .modal-header .modal-title {
        line-height: normal;
    }

    .choose-area .title {
        line-height: normal;
        font-size: 38px;
    }

    .choose-area li i {
        min-width: 80px;
    }

    .choose-area li .content span {
        line-height: normal;
        font-size: 22px;
    }

    .action-steps .banner {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 20px;
    }

    .form-contact-content {
        padding: 40px 15px;
    }

    .form-contact-content .title {
        font-size: 23px;
    }

    .form-contact-content .col--2 {
        grid-gap: 15px;
    }

    .form-contact-content .col--2:nth-of-type(2) {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 0;
    }

    .form-contact-content .title a {
        display: inline-block;
    }

    .faqs-items {
        grid-template-columns: repeat(1, 1fr);
    }

    .bottom-action .title {
        font-size: 28px;
    }

    .bottom-action .columns .column:last-child {
        text-align: center;
    }

    .bottom-action .btn {
        margin-left: 0;
    }

    .bottom-action .btn:first-child {
        margin-bottom: 20px;
    }

    footer .logo {
        margin-right: 15px;
    }

    .fixed-header .menu-bar {
        position: fixed;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 24px);
        margin: auto;
        box-shadow: 0px 0px 15px -4px rgb(0 0 0 / 59%);
    }

    .discover-note-modal .col--2 {
        grid-gap: 15px;
    }

    .discover-note-modal .col--2:nth-of-type(2) {
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 0;
    }

    .discover-note-modal .modal-header .modal-title {
        font-size: 24px;
    }

    .rappel-modal .modal-title {
        font-size: 24px;
        line-height: normal;
    }

}

label sup {
    color: #ff0e0e;
}
