body {
    margin: 0px;
    overflow-x: hidden;
    background-color: #fff;
    font-family: "Roboto", sans-serif;
}

header {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    padding: 10px 0px;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1380px;
}
header nav {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
}
header ul {
    list-style-type: none;
    padding: 0px;
    display: flex;
    flex-flow: row nowrap;
}

.ambulance {
    position: absolute;
    color: #fff;
    top: 25px;
    right: 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.ambulance a {
    text-decoration: none;
    color: #fff;
}
.ambulance img {
    position: fixed;
    margin-top: 3px;
    right: 152.7px;
    z-index: 10000000;
}
.ambulance .ambulance-background {
    position: fixed;
    -webkit-animation-name: ambulance;
    animation-name: ambulance;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    border-radius: 50%;
    margin-top: 24px;
    height: 33.8px;
    width: 33.8px;
    transform: translateX(-11.8px);
    top: 95.2px;
    margin-left: 33px;
}
@-webkit-keyframes ambulance {
    0% {
        background-color: black;
    }
    100% {
        background-color: none;
    }
}
@keyframes ambulance {
    0% {
        background-color: black;
    }
    100% {
        background-color: none;
    }
}

.mobile-ambulance {
    display: none;
}

.container {
    margin: 0px auto;
    max-width: 1380px;
    width: 95%;
}

.display-mobile {
    display: none !important;
}

.display-desktop {
    display: inline-block !important;
}

#menu {
    display: none;
}

.menu-open {
    display: none;
    font-size: 45px;
    margin-left: auto;
}

.menu-close {
    font-size: 35px;
    position: absolute;
    right: 25px;
    top: 25px;
    display: none;
}

#mobile-logo {
    display: none;
}

#mobile-telephone {
    display: none;
}

@media screen and (max-width: 1600px) {
    .footer-noel {
        font-size: 12px;
    }

    .ambulance img {
        right: 133.8px;
        margin-top: 2px;
    }
}
@media screen and (max-width: 992px) {
    #mobile-telephone {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    #facebook-logo {
        width: 28px;
    }

    #mobile-logo {
        display: flex;
        width: 200px;
        transform: translateY(-16px);
    }

    .ambulance .mobile-ambulance {
        display: block;
    }

    .mobile-ambulance {
        display: flex;
        position: fixed;
        top: 32px !important;
        left: 44px !important;
    }

    .ambulance img {
        z-index: 5000000000000000;
    }

    .display-desktop {
        display: none !important;
    }

    #menu {
        display: none;
    }

    header nav {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100vw;
        left: -150%;
        height: 100vh;
        transition: all 0.3s;
        z-index: 10000000000000002000;
        flex-direction: column;
        align-items: flex-start;
    }
    header nav ul {
        flex-direction: column;
        margin: 0px;
        padding: 0px;
        z-index: 50000000000000000;
        align-items: flex-start;
        width: 100%;
        height: 80%;
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: relative !important;
    }

    #menu:checked ~ nav {
        left: 0px;
    }

    .mobile-ambulance {
        z-index: 9;
    }

    .ambulance p,
    .ambulance span {
        position: relative;
        z-index: 5000000;
    }

    .menu-open {
        display: block;
        margin-top: -5px;
        z-index: 5000000;
    }

    .menu-close {
        display: block;
    }

    footer .row h3 {
        font-size: 40px;
    }

    .ambulance p {
        color: #fff;
        padding-top: 18px;
    }
    .ambulance a {
        color: #000;
    }
}
@supports (-webkit-touch-callout: none) {
    #mobile-logo {
        display: flex;
        width: 200px !important;
        transform: translateY(-16px);
    }
}
.homepage-hero {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.homepage-hero .check-us {
    transform: skew(20deg);
    background: #000000;
    font-weight: normal;
    display: inline-block;
    font-style: italic;
    color: #ffff;
    height: 48px;
    text-transform: uppercase;
    border: none;
    margin-bottom: 2%;
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
    width: 220px;
    margin-left: 1%;
    cursor: pointer;
}
.homepage-hero .check-us:hover {
    background: #222;
}

.slider {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slides {
    width: 500%;
    height: 100%;
    display: flex;
}

.slides input {
    display: none;
}

.slide {
    width: 20%;
    transition: 2s;
}

.slide img {
    width: 100%;
    height: 100%;
}

.slide-description {
    position: absolute;
    top: 20%;
    padding-left: 10%;
    width: 100%;
    height: 100%;
}
.slide-description p {
    position: absolute;
    transition: none !important;
    width: 30%;
    transition: 2s easy-in-out;
}
.slide-description h1 {
    color: #222;
    font-weight: bold;
    font-size: 45px;
    width: 30%;
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
    -webkit-animation: fadeInLeft 5s infinite;
    animation: fadeInLeft 5s infinite;
}
@-webkit-keyframes fadeInLeft {
    from {
        transform: translatex(50px);
    }
    to {
        transform: translatex(0px);
    }
}
@keyframes fadeInLeft {
    from {
        transform: translatex(50px);
    }
    to {
        transform: translatex(0px);
    }
}

.navigation-manual {
    position: absolute;
    width: 100%;
    margin-top: -40px;
    display: flex;
    justify-content: center;
}

.manual-btn {
    border: 2px solid #eb1a24;
    padding: 5px;
    border-radius: 10px;
    cursor: pointer;
    transition: 1s;
}

.manual-btn:not(:last-child) {
    margin-right: 20px;
}

.manual-btn:hover {
    background: #eb1a24;
}

#radio1:checked ~ .first {
    margin-left: 0;
}

#radio2:checked ~ .first {
    margin-left: -20%;
}

#radio3:checked ~ .first {
    margin-left: -40%;
}

.navigation-auto {
    position: absolute;
    width: 100%;
    margin-top: -40px;
    display: flex;
    justify-content: center;
}

.navigation-auto div {
    border: 2px solid #eb1a24;
    padding: 5px;
    border-radius: 10px;
    transition: 1s;
}

.navigation-auto div:not(:last-child) {
    margin-right: 20px;
}

#radio1:checked ~ .navigation-auto .auto-btn1 {
    background: #eb1a24;
}

#radio2:checked ~ .navigation-auto .auto-btn2 {
    background: #eb1a24;
}

#radio3:checked ~ .navigation-auto .auto-btn3 {
    background: #eb1a24;
}

nav {
    width: 100%;
    position: absolute;
    top: 90px;
    display: flex;
    justify-content: flex-end;
}
nav ul {
    width: 700px;
    display: flex;
    justify-content: space-between;
    margin-right: 20%;
}
nav ul a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
}

.section-aboutus {
    height: 100vh;
    background-image: url("/images/s2.png");
    background-position-x: -10%;
    overflow: hidden;
}
.section-aboutus .col-12 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.section-aboutus span {
    color: #ef4850;
    font-size: 30px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2.2px;
}
.section-aboutus h2 {
    color: #333333;
    font-family: "Roboto", Sans-serif;
    font-size: 97px;
    font-weight: 400;
    line-height: 60px;
    padding-left: 90px;
    -webkit-margin-before: 0em;
    margin-block-start: 0em;
    -webkit-margin-after: 0em;
    margin-block-end: 0em;
}
.section-aboutus ul {
    -webkit-margin-before: 0;
    margin-block-start: 0;
    -webkit-padding-start: 0;
    padding-inline-start: 0;
}
.section-aboutus p {
    padding: 20px 30px 20px 90px;
    width: 60%;
}
.section-aboutus .contact-button {
    transform: skew(20deg);
    background: #000000;
    font-weight: normal;
    display: inline-block;
    font-style: italic;
    color: #ffff;
    height: 48px;
    text-transform: uppercase;
    border: none;
    margin-bottom: 2%;
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
    width: 220px;
    margin-left: 1%;
    cursor: pointer;
}
.section-aboutus .contact-button:hover {
    background-color: #222222;
}

.section-service {
    height: 100vh;
    background-image: url("/images/serwis_majoch1.png");
    height: 100vh;
    background-size: cover;
}
.section-service .lights {
    width: 42%;
    -webkit-animation: blur 4s infinite;
    animation: blur 4s infinite;
    position: absolute;
    right: -3.2%;
    top: 59%;
}
@-webkit-keyframes blur {
    0% {
        filter: blur(0);
    }
    50% {
        filter: blur(50px);
    }
    100% {
        filter: blur(0);
    }
}
@keyframes blur {
    0% {
        filter: blur(0);
    }
    50% {
        filter: blur(50px);
    }
    100% {
        filter: blur(0);
    }
}
.section-service .row {
    color: #fff;
    height: 100%;
}
.section-service .col-12 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.section-service span {
    color: #ef4850;
    font-size: 30px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2.2px;
}
.section-service h2 {
    color: #ffffff;
    font-size: 97px;
    font-weight: 400;
    line-height: 60px;
    margin-top: 16%;
    -webkit-margin-before: 0.5em;
    margin-block-start: 0.5em;
    -webkit-margin-after: 0.2em;
    margin-block-end: 0.2em;
}
.section-service p,
.section-service li {
    width: 90%;
}
.section-service .phone-button {
    transform: skew(20deg);
    background: #b71522;
    background: linear-gradient(4deg, #b71522 16%, #e71a24 58%, #e71a24 100%);
    font-weight: normal;
    display: inline-block;
    color: #ffff;
    font-style: italic;
    height: 48px;
    text-transform: uppercase;
    border: none;
    margin-bottom: 2%;
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
    width: 260px;
    margin-top: 4%;
    cursor: pointer;
}
.section-service .phone-button a {
    text-decoration: none;
    color: #fff;
}
.section-service .phone-button:hover {
    background: #d1202e;
    background: linear-gradient(4deg, #d0202f 16%, #f92832 58%, #fa2631 100%);
}
.section-service ul {
    -webkit-padding-start: 90px;
    padding-inline-start: 90px;
}

.section-offer {
    height: 80vh;
    background-image: url("/images/majoch_nowy_sacz_04.png");
    background-size: 100%;
}
.section-offer .col-12 {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}
.section-offer span {
    color: #ef4850;
    font-size: 30px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2.2px;
}
.section-offer h2 {
    color: #333333;
    font-size: 97px;
    font-weight: 400;
    line-height: 60px;
}
.section-offer .col-12 {
    padding-left: 10%;
}
.section-offer .quotation-button {
    transform: skew(20deg);
    background: #b71522;
    background: linear-gradient(4deg, #b71522 16%, #e71a24 58%, #e71a24 100%);
    font-weight: normal;
    font-style: italic;
    display: inline-block;
    color: #ffff;
    height: 48px;
    text-transform: uppercase;
    border: none;
    margin-bottom: 2%;
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
    width: 260px;
    margin-top: 4%;
    cursor: pointer;
}
.section-offer .quotation-button:hover {
    background: #d1202e;
    background: linear-gradient(4deg, #d0202f 16%, #f92832 58%, #fa2631 100%);
}

.section-contact {
    height: 100vh;
    background-image: url("/images/majoch_nowy_sacz_07.png");
    background-size: cover;
    overflow: hidden;
    position: relative;
}
.section-contact .col-12 {
    margin-top: 4.2%;
    position: relative;
}
.section-contact .col-12 .red-ring {
    position: absolute;
    bottom: -171px;
    right: -118px;
    opacity: 0.5;
    width: 30%;
    transform: rotate3d(1, 51, 1, 225deg);
    -webkit-animation: redCircle 4s infinite;
    animation: redCircle 4s infinite;
}
.section-contact .col-12 .red-ring img {
    width: 100%;
}
@-webkit-keyframes redCircle {
    0% {
        filter: blur(0);
    }
    50% {
        filter: blur(50px);
    }
    100% {
        filter: blur(0);
    }
}
@keyframes redCircle {
    0% {
        filter: blur(0);
    }
    50% {
        filter: blur(50px);
    }
    100% {
        filter: blur(0);
    }
}

.form form textarea {
    width: 80% !important;
}

.form form input {
    width: 80% !important;
}

.form {
    background-color: #000000cc;
    background: cover;
    margin-left: 20%;
    display: flex;
    border-radius: 50px;
    width: 60%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.form h4 {
    text-align: center;
    color: #ffffff;
    font-size: 70px;
    font-weight: 600;
    line-height: 40px;
    -webkit-margin-before: 1em;
    margin-block-start: 1em;
    -webkit-margin-after: 0.5em;
    margin-block-end: 0.5em;
}
.form p {
    color: #868686;
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    letter-spacing: 2px;
    -webkit-margin-before: 0px;
    margin-block-start: 0px;
}
.form .form-style {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.form form #message-content {
    height: 140px;
    width: 80% !important;
}
.form form input,
.form form textarea {
    background-color: transparent;
    color: #ffff;
    border: none;
    border: 1.4px solid #fff;
    padding: 15px;
    display: block;
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
    border-radius: 5px;
    margin-bottom: 4%;
}
.form form input::-moz-placeholder,
.form form textarea::-moz-placeholder {
    color: #7a7a7a;
    opacity: 1;
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
}
.form form input:-ms-input-placeholder,
.form form textarea:-ms-input-placeholder {
    color: #7a7a7a;
    opacity: 1;
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
}
.form form input::placeholder,
.form form textarea::placeholder {
    color: #7a7a7a;
    opacity: 1;
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
}
.form form input:-ms-input-placeholder,
.form form textarea:-ms-input-placeholder {
    color: #7a7a7a;
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
}
.form form input::-ms-input-placeholder,
.form form textarea::-ms-input-placeholder {
    color: #7a7a7a;
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
}
.form form input:hover,
.form form textarea:hover {
    background: #f0eef0;
}
.form form button {
    height: 100px;
    background: #b71522;
    background: linear-gradient(4deg, #b71522 16%, #e71a24 58%, #e71a24 100%);
    font-weight: normal;
    display: inline-block;
    color: #fff;
    height: 44px;
    text-transform: uppercase;
    width: 30%;
    border: none;
    margin-top: 2%;
    margin-bottom: 2%;
    font-family: "Roboto", Sans-serif;
    border-radius: 5px;
    font-weight: bold;
    margin-bottom: 2%;
    font-size: 16px;
    cursor: pointer;
}
.form form button:hover {
    background: #d1202e;
    background: linear-gradient(4deg, #d0202f 16%, #f92832 58%, #fa2631 100%);
}

.form {
    height: 100%;
    margin-left: 40%;
}

.mail-sended {
    background-color: #c0e3bb;
    padding: 10px;
    margin-top: -10px;
}

.posts-slider {
    width: 100%;
}
.posts-slider .tile {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.posts-slider .tile img {
    width: 100%;
}
.posts-slider .tile span {
    font-size: 24px;
    position: absolute;
    left: 0%;
    text-align: center;
    top: 20%;
    width: 100%;
    color: #ffff;
    z-index: 500000;
}
.posts-slider .tile .content {
    width: 99.99%;
    height: 60px;
    display: flex;
    flex-flow: row wrap;
    position: absolute;
    top: 0px;
    background: #bd081c;
    opacity: 0;
    z-index: 50000000000000000;
    justify-content: center;
    align-items: flex-start;
}
.posts-slider .tile h3 {
    text-align: center;
    width: 90%;
    color: #ffff;
    top: 40%;
    position: absolute;
    opacity: 0;
    left: 5%;
    z-index: 500000000;
}
.posts-slider .tile:hover {
    cursor: pointer;
}
.posts-slider .tile:hover .content {
    opacity: 1;
    color: #fff;
}
.posts-slider .tile:hover h3 {
    opacity: 1;
}

.glide__slide {
    width: 25%;
}

.glide {
    position: relative;
    box-sizing: border-box;
}

.glide__slides {
    position: relative;
    width: 100%;
    list-style: none;
    transform-style: preserve-3d;
    touch-action: pan-Y;
    overflow: hidden;
    padding: 0;
    white-space: wrap;
    display: flex;
}

.posts h4 {
    text-align: center;
    font-size: 24px;
}
.posts h5 {
    text-align: center;
    font-size: 20px;
}
.posts a {
    text-decoration: none;
    color: #000;
}
.posts i {
    color: #0b84ee;
    font-size: 2rem;
    transform: translateY(4px);
}

@media screen and (max-width: 1600px) {
    .section-contact {
        height: unset;
    }

    .section-service .lights {
        width: 40%;
        right: 1.1%;
        top: 59%;
    }

    .section-offer h2 {
        -webkit-margin-before: 40px;
        margin-block-start: 40px;
        -webkit-margin-after: 0;
        margin-block-end: 0;
    }

    .section-service h2 {
        -webkit-margin-before: 0;
        margin-block-start: 0;
    }

    .section-aboutus {
        height: unset;
    }

    .section-aboutus .contact-button {
        margin-bottom: 12%;
    }

    .section-aboutus ul {
        -webkit-padding-start: 96px;
        padding-inline-start: 96px;
    }

    .section-aboutus {
        background-position-x: -200px;
    }

    .section-contact .col-12 {
        margin-bottom: 4.2%;
    }

    .homepage-hero .slide.second .check-us {
        margin-top: 10% !important;
    }

    .section-contact .col-12 .red-ring {
        bottom: -20px;
        right: 36px;
        opacity: 0.5;
        width: 26%;
        transform: rotate3d(1, 21, 1, 240deg);
    }
}
.slide.third {
    background-image: url("/images/promocja-aktywna-piana.png");
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 150px;
}
.slide.third .content {
    width: 100%;
    max-width: 600px;
}
.slide.third .promotion {
    transform: skew(20deg);
    background: #e1272e;
    background: linear-gradient(0deg, #e1272e 0%, #d62128 100%);
    font-weight: normal;
    display: inline-block;
    color: #ffff;
    font-style: italic;
    height: 60px;
    text-transform: uppercase;
    border: none;
    margin-bottom: 2%;
    font-family: "Roboto", Sans-serif;
    font-size: 16px;
    width: 360px;
    margin-top: 4%;
    text-align: center;
    font-weight: bold;
    font-size: 40px;
    line-height: 60px;
    text-shadow: 0px 0px 5px #000;
    box-shadow: 0px 2px 2px #000;
}
.slide.third .promotion span {
    transform: skew(-5deg);
    display: block;
}
.slide.third .preview {
    width: 100%;
    max-width: 450px;
}
.slide.third .provider {
    width: 75px;
    height: auto;
    margin-top: 25px;
}
.slide.third .description {
    font-size: 18px;
    color: #fff;
    position: relative;
    padding-left: 25px;
    margin-top: 25px;
}
.slide.third .description span {
    font-size: 24px;
}
.slide.third .description::before {
    content: "";
    background-color: #db1507;
    border-radius: 100%;
    width: 15px;
    height: 15px;
    position: absolute;
    left: 0px;
    top: 0px;
}

@media screen and (max-width: 992px) {
    .slide.first .slide-description h1 {
        margin-top: 8%;
    }

    .slide.second .slide-description h1 {
        position: absolute;
        bottom: 28%;
        text-align: center;
        width: 100%;
        right: 0;
    }
    .slide.second .slide-description h1 span {
        padding-right: 0px !important;
    }

    .slide.first,
    .slide-second,
    .slide-third {
        position: relative;
    }

    .map {
        display: none;
    }

    .red-ring,
    .lights {
        display: none;
    }

    .homepage-hero h1 {
        -webkit-animation: none;
        animation: none;
    }
    .homepage-hero .slider {
        position: relative;
        overflow: hidden;
    }

    .ambulance .ambulance-background {
        top: 10px;
        left: 35px;
        z-index: 5;
    }

    .slide.first .slide-description h1 {
        text-align: center;
        width: 100%;
        top: -2%;
        position: absolute;
    }

    .slide-desktop {
        display: none;
    }

    .slide-mobile {
        display: block;
    }

    .ambulance {
        width: 100%;
        right: 0px;
    }

    .desktop-ambulance {
        display: none;
    }

    .mobile-ambulance {
        position: fixed;
        top: 32px;
        left: 11px;
    }

    .row {
        overflow: hidden;
    }

    header nav li {
        margin-bottom: 8%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    header nav a {
        font-size: 18px;
    }

    .form h4 {
        font-size: 40px;
    }

    .form {
        width: 90%;
        margin-left: 10%;
        margin-top: 4%;
        transform: translateX(-5%);
    }

    .form form input,
    .form form textarea {
        padding: 5px;
        margin-bottom: 10%;
    }

    .form form button {
        margin-top: 4%;
        margin-bottom: 10%;
    }

    .form form button {
        height: 30px;
        width: 60%;
    }

    .section-car-rent .car-rent {
        width: 100%;
        flex-direction: row-reverse;
    }

    .car-rent-tile {
        flex-direction: column-reverse;
    }

    .navigate .row .all-day {
        right: 5px;
    }

    .navigate .row h3 {
        -webkit-margin-after: 0px;
        margin-block-end: 0px;
    }

    .slide-description {
        padding-left: 4%;
    }
    .slide-description h1 {
        font-size: 16px;
    }
    .slide-description span {
        font-size: 30px !important;
    }
    .slide-description .prority {
        color: #fff !important;
    }
    .slide-description p {
        width: 80%;
        color: #fff;
        display: none;
    }

    nav {
        background: #ffff;
    }

    nav ul a {
        color: #007cba;
    }

    .section-aboutus span {
        letter-spacing: 0px;
        padding-left: 0px;
    }

    .section-aboutus h2 {
        padding-left: 0px;
        text-align: center;
    }

    .section-aboutus p {
        text-align: center;
    }

    .posts-slider {
        overflow: hidden;
    }

    .mobile-display {
        display: none;
    }

    .section-aboutus ul {
        -webkit-padding-start: 50px;
        padding-inline-start: 50px;
    }

    .section-aboutus p {
        padding: 0px;
        width: 80%;
    }

    .section-service span {
        letter-spacing: 0px;
    }

    .section-service h2 {
        font-size: 67px;
    }

    .section-service .phone-button {
        margin-right: 0%;
    }

    .section-service .col-12 {
        margin-top: 10%;
    }

    .section-offer {
        height: 100vh;
        background-image: url(/images/majoch_nowy_sacz_04.png);
        background-size: cover;
        background-position-x: 60%;
    }
    .section-offer h2 {
        font-size: 67px;
        -webkit-margin-before: 0.1em;
        margin-block-start: 0.1em;
        -webkit-margin-after: 0.1em;
        margin-block-end: 0.1em;
        text-align: center;
    }
    .section-offer .col-12 {
        padding-left: 1%;
        margin-top: 4%;
    }
    .section-offer p {
        font-size: 16px !important;
        text-align: center;
    }

    .section-insurance p {
        margin-left: 10%;
    }
    .section-insurance h2 {
        margin-left: 10%;
    }
    .section-insurance .expert {
        right: unset;
        top: unset;
    }
    .section-insurance .expert img {
        width: 99%;
    }

    #car-rent-image {
        width: 99%;
        margin-top: 40%;
    }

    .homepage-hero .check-us {
        display: none;
    }

    .section-car-rent h2 {
        font-size: 37px;
    }

    .section-contact {
        background-position-x: 50%;
    }

    .navigate .row .col-8 {
        align-items: center;
    }

    .navigate .row h3 {
        font-size: 40px;
        text-align: center;
    }

    .navigate .row .all-day {
        top: 470px;
    }

    .section-service p {
        text-align: center;
    }

    .section-service h2 {
        text-align: center;
    }

    .menu-open {
        margin-right: 20px;
        margin-top: 12px;
        color: #eb1a24;
        z-index: 50000;
        position: relative;
        z-index: 50000000000000000000;
    }

    nav {
        z-index: 50000000000000000000000000000 !important;
        position: relative;
        background-color: white;
        position: fixed;
    }

    nav#mobile-menu {
        display: none;
        position: fixed;
        z-index: 999999;
        overflow-y: auto;
        overflow-x: hidden;
        top: 0;
        left: -100%;
        right: 0;
        bottom: 0;
        line-height: 2em;
        width: 100%;
        height: 100%;
        padding: 2em;
    }

    .slide.first .slide-description {
        top: 67% !important;
        padding-left: 0%;
    }

    .slide.third {
        padding-top: 50px;
    }
    .slide.third .content {
        padding: 0px 10px;
    }
    .slide.third .content .description {
        font-size: 14px;
        padding-right: 20px;
    }
    .slide.third .content .description span {
        font-size: 16px;
    }
    .slide.third .content .promotion {
        height: 40px;
        line-height: 40px;
        margin-left: 5px;
    }
    .slide.third .provider {
        display: none;
    }
}
