@charset "UTF-8";
@font-face {
    font-family: "FiraSans";
    src: url("../fonts/FiraSansCondensed-Regular.ttf");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: "FiraSans";
    src: url("../fonts/FiraSansCondensed-Light.ttf");
    font-weight: 300;
}
@font-face {
    font-family: "FiraSans";
    src: url("../fonts/FiraSansCondensed-Thin.ttf");
    font-weight: 200;
}
@font-face {
    font-family: "FiraSans";
    src: url("../fonts/FiraSansCondensed-SemiBold.ttf");
    font-weight: 500;
}
@font-face {
    font-family: "FiraSans";
    src: url("../fonts/FiraSansCondensed-Bold.ttf");
    font-weight: 600;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    max-height: 100%;
}

body {
    font-size: 18px;
    font-family: "FiraSans";
    background-color: white;
}

i {
    font-family: "FontAwesome";
}

p {
    font-weight: 300;
    font-size: 18px;
    line-height: 150%;
}

a {
    text-decoration: none;
}

h2 {
    text-align: center;
    text-transform: uppercase;
    font-size: 32px;
    font-weight: 400;
    position: relative;
    padding-bottom: 10px;
    color: #525252;
}
h2:after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    width: 5%;
    margin: 0 auto;
    height: 4px;
    background-color: #525252;
    min-width: 80px;
}

h3 {
    font-size: 24px;
    font-weight: 400;
    text-transform: uppercase;
    color: #525252;
}

input,
select,
textarea {
    padding: 8px;
    outline: none;
    font-size: 16px;
    border: none;
    border-radius: 3px;
    border: 1px solid transparent;
    appearance: none;
    -moz-appearance: none; /* Firefox */
    -webkit-appearance: none; /* Safari and Chrome */
    background: white;
}

textarea {
    resize: none;
    min-height: 81px;
}

table {
    border-collapse: collapse;
    width: 100%;
    color: #868686;
    font-size: 18px;
}

table tr {
    border-bottom: 2px solid #0a9346;
}

table tr:last-child {
    border-bottom: none;
}

table tr td:first-child {
    text-align: left;
}

table tr td:last-child {
    text-align: right;
}

.checkbox label,
.radio label {
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: 400;
}

.checkbox + .checkbox,
.radio + .radio {
    margin-top: -5px;
}

.checkbox {
    padding-left: 20px;
    position: relative;
    display: inline-block;
    margin-bottom: 5px;
}

.radio {
    position: relative;
    display: inline-block;
}

.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"],
.radio input[type="radio"],
.radio-inline input[type="radio"] {
    position: absolute;
    margin-top: 4px\9;
    margin-left: -20px;
}

input[type="checkbox"],
input[type="radio"] {
    margin: 4px 0 0;
    margin-top: 1px\9;
    line-height: normal;
    height: 17px;
    transform: translateY(-3px);
    width: 20px;
}

.checkbox label {
    display: inline-block;
    padding-left: 5px;
    position: relative;
}
.checkbox label::before {
    -o-transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    background-color: #ffffff;
    border-radius: 1px;
    border: 1px solid #dedede;
    content: "";
    display: inline-block;
    height: 17px;
    left: 0;
    margin-left: -20px;
    position: absolute;
    transition: 0.3s ease-in-out;
    width: 17px;
    outline: none !important;
}
.checkbox-red::before {
    border: 2px solid red !important;
}
.checkbox label::after {
    color: #2b2b2b;
    display: inline-block;
    font-size: 11px;
    height: 16px;
    left: 0;
    margin-left: -20px;
    padding-left: 3px;
    padding-top: 1px;
    position: absolute;
    top: 0;
    width: 16px;
}
.checkbox input[type="checkbox"] {
    cursor: pointer;
    opacity: 0;
    z-index: 1;
    outline: none !important;
}
.checkbox input[type="checkbox"]:disabled + label {
    opacity: 0.65;
}
.checkbox input[type="checkbox"]:focus + label::before {
    outline-offset: -2px;
    outline: none;
    outline: thin dotted;
}
.checkbox input[type="checkbox"]:checked + label::after {
    content: "";
    background-image: url("../images/check.png");
    background-repeat: no-repeat;
    background-size: 16px;
    background-position: center;
}
.checkbox input[type="checkbox"]:disabled + label::before {
    background-color: #e4e7ea;
    cursor: not-allowed;
}

.checkbox-success input[type="checkbox"]:checked + label::before {
    background-color: #0a9346;
    border-color: #0a9346;
}

.checkbox input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.container-full {
    width: 100%;
}

.container {
    margin: 0 auto;
    max-width: 1140px;
    width: 100%;
}
@media screen and (max-width: 1119px) {
    .container {
        max-width: 960px;
    }
}
@media screen and (max-width: 991px) {
    .container {
        max-width: 720px;
    }
}
@media screen and (max-width: 767px) {
    .container {
        max-width: 540px;
    }
}
@media screen and (max-width: 565px) {
    .container {
        max-width: 95%;
    }
}

.container-padding {
    padding: 40px 0px;
}

.row:after,
.row:before {
    clear: both;
    content: "";
    display: block;
}

div[class^="col-"] {
    float: left;
    padding: 8px;
    position: relative;
}

.col-1 {
    width: 100%;
}

.col-2 {
    width: 50%;
}
@media screen and (max-width: 565px) {
    .col-2 {
        width: 100%;
    }
}

.col-3 {
    width: 33.33333%;
}
@media screen and (max-width: 767px) {
    .col-3 {
        width: 100%;
    }
}

.col-4 {
    width: 25%;
}
@media screen and (max-width: 991px) {
    .col-4 {
        width: 50%;
    }
}
@media screen and (max-width: 565px) {
    .col-4 {
        width: 100%;
    }
}

.opacity {
    opacity: 0.3;
}

header {
    background-color: #f7f7f7;
    position: relative;
}
header.fixed-header {
    animation: slideTop 300ms ease-in-out forwards;
    position: fixed;
    z-index: 2;
    width: 100%;
    box-shadow: 0px 0px 3px #676767;
}
header #header-mobile-btn {
    display: none;
}
header #header-content {
    height: 60px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
}
header #header-content #header-socials {
    margin-left: auto;
}
header #header-content #header-socials .social-icon {
    margin-right: 10px;
    font-size: 20px;
    color: #909090;
    transition: 500ms color;
}
header #header-content #header-socials .social-icon:last-child {
    margin-right: 0px;
}
header #header-content #header-socials .social-icon:hover {
    color: #0a9346;
}
header #header-content #header-navigation {
    margin-left: auto;
    margin-right: auto;
    flex: 1;
    text-align: center;
    height: 100%;
}
header #header-content #header-navigation .menu {
    display: inline-block;
    height: 100%;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 20px;
    padding: 0px 10px;
    line-height: 60px;
    color: #1f1f26;
    position: relative;
}
header #header-content #header-navigation .menu:after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    transform: scale(0);
    background-color: #0a9346;
    content: "";
    transition: 500ms transform;
}
header #header-content #header-navigation .menu:hover:after {
    transform: scale(1);
}
header #header-content #header-navigation .active-menu {
    color: #0a9346;
}
header #header-content #header-navigation .active-menu:after {
    transform: scale(1);
}
@media screen and (max-width: 767px) {
    header #header-content #header-mobile-btn {
        display: block;
        font-size: 30px;
        cursor: pointer;
    }
    header #header-content #header-navigation {
        display: none;
    }
    header #header-content #header-socials {
        margin-right: auto;
    }
    header #header-content #header-navigation {
        position: absolute;
        top: 60px;
        left: 0px;
        width: 100%;
        z-index: 2;
        display: none;
        background: #f3f3f3;
        height: auto;
        box-shadow: 0px 0px 3px #dadada;
    }
    header #header-content #header-navigation .menu {
        width: 100%;
    }
}

@keyframes slideTop {
    0% {
        opacity: 0;
        top: -100px;
    }
    100% {
        opacity: 1;
        top: 0px;
    }
}
.bxsliderDiv {
    position: relative;
}
.bx-wrapper {
    background: black;
    margin-top: 60px;
    max-height: calc(100% - 60px);
    overflow: hidden;
}
.bx-wrapper li img {
    opacity: 0.8;
    max-width: 100%;
    height: auto;
    display: block;
}
.bxsliderDiv .slider-content {
    position: absolute;
    left: 0;
    top: 8%;
    width: 100%;
    color: white;
    text-align: center;
}
@media screen and (max-width: 840px) {
    .bxsliderDiv .slider-content {
        position: static;
        margin: 15px auto;
        width: 90%;
        box-shadow: 0px 0px 10px #a7a7a7;
    }
}

.button {
    padding: 12px 10px;
    color: white;
    text-align: center;
    font-size: 24px;
    background-color: #0a9346;
    min-width: 140px;
    opacity: 0.8;
    display: inline-block;
    transition: 500ms opacity;
}
.button:hover {
    opacity: 1;
}

.book-btn {
    padding: 10px 0px;
    border: 2px solid #0a9346;
    display: inline-block;
    text-transform: uppercase;
    min-width: 70%;
    border-color: #e2e2e2;
    color: #525252;
    text-align: center;
    cursor: pointer; /* SASS */
    transition: 500ms background-color;
}
.book-btn:hover {
    background: #525252;
    border-color: transparent;
    color: white;
}

footer {
    background-color: #1f1f26;
    clear: both;
}
footer .row:first-child {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: row;
}
footer p,
footer a {
    color: grey;
}
footer i {
    color: white;
    margin-right: 8px;
}
footer h3 {
    color: white;
    margin-bottom: 15px;
}
footer ul {
    padding: 0px 25px;
}
footer ul li {
    color: white;
    margin-bottom: 6px;
}
footer ul li a {
    transition: 500ms color;
}
footer ul li a:hover {
    color: white;
}
footer .col-4 .contact-info {
    display: flex;
    flex-wrap: nowrap;
    align-items: baseline;
    justify-content: flex-start;
    flex-direction: row;
}
footer .row:nth-child(2) .col-2:first-child h1 {
    color: white;
}
footer .row:nth-child(2) .col-2:nth-child(2) {
    padding-top: 25px;
    text-align: right;
}
@media screen and (max-width: 767px) {
    footer .row:nth-child(2) .col-2:nth-child(2) {
        padding-top: 40px;
    }
}
@media screen and (max-width: 565px) {
    footer .row:nth-child(2) .col-2:nth-child(2) {
        text-align: left;
        padding-top: 0px;
    }
}
footer .row:nth-child(2) .col-2:nth-child(2) a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #0a9346;
    color: white;
    display: inline-block;
    text-align: center;
    margin-right: 8px;
    opacity: 0.8;
    transition: 500ms opacity;
}
footer .row:nth-child(2) .col-2:nth-child(2) a:hover {
    opacity: 1;
}
footer .row:nth-child(2) .col-2:nth-child(2) a i {
    padding-top: 14px;
    font-size: 22px;
    margin-right: 0px;
}
@media screen and (max-width: 767px) {
    footer .row:nth-child(2) .col-2:nth-child(2) a {
        width: 30px;
        height: 30px;
    }
    footer .row:nth-child(2) .col-2:nth-child(2) a i {
        padding-top: 7px;
        font-size: 18px;
    }
}

#modalStep11 {
    float: left;
    width: 50%;
    font-size: 1.2rem;
}

#vehicleInfo {
    float: left;
    width: 50%;
}

@media screen and (max-width: 767px) {
    #modalStep11,
    #vehicleInfo {
        width: 100%;
    }
}

#modalBox {
    width: 100%;
    z-index: 999999999999;
    position: fixed;
    top: 6px;
    left: 0;
    right: 0;
    margin: 0 auto;
    border-radius: 6px;
    animation-name: showModal;
    animation-duration: 400ms;
    animation-timing-function: cubic-bezier(0.18, 0.89, 0.32, 1.28);
    display: none;
}
@media screen and (max-width: 767px) {
    #modalBox {
        width: 100%;
        top: 0;
        left: 0;
        height: 100%;
        overflow-y: auto;
    }
}
#modalBox #modalSteps {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ececec;
    background: white;
}
#modalBox #modalSteps .dot-active {
    color: #0a9346;
}
#modalBox #modalSteps i {
    margin-right: 8px;
    position: relative;
    font-size: 14px;
    color: #e6e6e6;
    transition: 500ms color;
}
#modalBox #modalSteps i:after {
    position: absolute;
    right: -15px;
    top: calc(50% - 2px);
    height: 3px;
    background: #e6e6e6;
    content: "";
    width: 15px;
}
#modalBox #modalSteps i:last-child:after {
    content: none;
}
#modalBox #modalHeader {
    background: #0a9346;
    color: white;
    padding: 15px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
}
#modalBox #modalHeader h3 {
    color: white;
    display: inline-block;
}
#modalBox #modalHeader i {
    margin-left: auto;
    cursor: pointer;
    opacity: 0.6;
    transition: 500ms opacity;
    font-size: 22px;
}
#modalBox #modalHeader i:hover {
    opacity: 1;
}
#modalBox #modalBody {
    position: relative;
    perspective: 1000px;
}
#modalBox #modalBody h3 {
    color: #0a9346;
    text-align: center;
    padding-bottom: 10px;
    font-size: 30px;
}
#modalBox #modalBody .modal-content {
    padding: 15px;
    background: white;
    position: relative;
    top: 0px;
    width: 100%;
    left: 0px;
    float: left;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
    width: 33.333%;
    filter: blur(2px);
    height: calc(100vh - 82px);
    pointer-events: none;
    overflow: auto;
    box-shadow: 0px 8px 10px #dcdcdc;
}
#modalBox #modalBody .modal-content:after {
    clear: both;
    display: block;
    content: "";
}
#modalBox #modalBody .modal-content.is-showing {
    display: block;
    pointer-events: auto;
    filter: blur(0px);
}
#modalBox #modalBody .input-half {
    width: calc(50% - 5px);
    float: left;
    margin-right: 10px;
}
#modalBox #modalBody .input-half:nth-child(2n) {
    margin-right: 0px;
}
@media screen and (max-width: 565px) {
    #modalBox #modalBody .input-half {
        width: 100%;
        margin-right: 0px;
    }
}
#modalBox #modalBody .input-full {
    width: 100%;
    float: left;
}
#modalBox #modalBody .row {
    max-height: 100%;
    overflow-y: auto;
    margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
    #modalBox #modalBody .modal-content {
        width: 100%;
        display: block;
        height: auto;
    }
}
#modalBox #modalBody #modalStep4 h4 {
    font-weight: 400;
    font-size: 24px;
    margin-bottom: 10px;
}
#modalBox #modalBody #modalStep4 .checkbox {
    display: block;
}
#modalBox #modalBody #modalStep4 .small-price {
    border-top: 1px solid #ececec;
    margin-bottom: 2px;
}
#modalBox #modalBody #modalStep4 .small-price:first-child {
    border-top: none;
}
#modalBox #modalBody #modalStep4 .small-price span:last-child {
    float: right;
}
#modalBox #modalBody #modalStep4 .big-price {
    border-top: 3px solid #0a9346;
    margin-bottom: 10px;
    margin-top: 5px;
}
#modalBox #modalBody #modalStep4 .big-price span {
    font-size: 22px;
    color: #0a9346;
}
#modalBox #modalBody #modalStep4 .big-price span:last-child {
    float: right;
}
#modalBox #modalBody label:not([for="return_location_check"]),
#modalBox #modalBody input,
#modalBox #modalBody select {
    margin-bottom: 8px;
}
#modalBox #modalBody label:not([for="return_location_check"]) {
    display: block;
}
#modalBox #modalBody select,
#modalBox #modalBody input:not([type="checkbox"]),
#modalBox #modalBody textarea {
    width: 100%;
    background: #f7f7f7;
    display: block;
}
#modalBox #modalBody .button {
    cursor: pointer;
    font-size: 20px;
    float: right;
}
#modalBox #modalBody #return_location_div {
    display: none;
}
#modalBox #modalBody .err,
#modalBox #modalBody .important {
    color: red;
    font-weight: 300;
    font-style: italic;
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
}
#modalBox #modalBody .important {
    font-weight: 400;
    margin-top: 8px;
}
#modalBox #modalBody .animate-out {
    animation: out 300ms ease-in-out forwards;
}
#modalBox #modalBody .animate-in {
    animation: in 300ms ease-in-out forwards;
    display: block;
    transform-origin: top left;
}
#modalBox #modalBody .animate-up {
    animation: up 300ms ease-in-out forwards;
}
#modalBox #modalBody label:not([for="return_location_check"]) {
    margin-bottom: 5px;
}

@keyframes showModal {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}
@keyframes out {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(800px);
    }
}
@keyframes in {
    0% {
        opacity: 0;
        transform: rotateX(-90deg);
    }
    100% {
        opacity: 1;
        transform: rotateX(0deg);
    }
}
#topRatedCars {
    margin-top: 20px;
    min-height: 400px;
}
#topRatedCars .col-4 {
    text-align: center;
    margin-top: 10px;
    transition: 500ms box-shadow;
}
#topRatedCars .col-4 h3 {
    margin-top: 10px;
    color: #757575;
    margin-bottom: 10px;
}
#topRatedCars .col-4 img {
    width: 100%;
}
#topRatedCars .col-4 p {
    margin-bottom: 10px;
    margin-top: 10px;
    color: #0a9346;
}
#topRatedCars .col-4 .book-btn {
    margin-top: 40px;
}
#topRatedCars .col-4 .book-hover {
    height: 0px;
    overflow: hidden;
    transition: 500ms height;
}
#topRatedCars .col-4:hover {
    box-shadow: 0px 0px 10px #dadada;
}
#topRatedCars .col-4:hover .book-hover {
    height: 120px;
}
@media screen and (max-width: 991px) {
    #topRatedCars .col-4 .book-hover {
        height: auto;
    }
    #topRatedCars .col-4:hover .book-hover {
        height: auto;
    }
}
#topRatedCars .col-4 .top-rated {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #0a9346;
    padding: 12px;
    border-radius: 50%;
    color: white;
    transform: rotate(-15deg);
}

#aboutContainer {
    background: #f7f7f7;
}
#aboutContainer .row {
    margin: 50px 0px;
}
#aboutContainer .row .col-3 {
    text-align: center;
}
#aboutContainer .row .col-3 .about-img {
    background: #0a9346;
    border-radius: 50%;
    margin-bottom: 25px;
    display: inline-block;
    width: 70px;
    height: 70px;
    padding-top: 15px;
}
#aboutContainer .row .col-3 .about-img img {
    width: 40px;
}
#aboutContainer .row .col-3 h3 {
    margin-bottom: 15px;
}

#testimonialContainer {
    text-align: center;
}
#testimonialContainer h2 {
    margin-bottom: 20px;
}
#testimonialContainer .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: row;
}
#testimonialContainer .row .col-4 i {
    font-size: 45px;
    color: #0a9346;
    margin-bottom: 15px;
}
#testimonialContainer .row .col-4 h3 {
    margin-bottom: 15px;
}
#testimonialContainer .row .col-4 p {
    color: #868686;
}

#boxesContainer .row {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: row;
}
@media screen and (max-width: 565px) {
    #boxesContainer .row {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
        justify-content: flex-start;
        flex-direction: row;
    }
}
#boxesContainer .row .col-2 {
    width: calc(50% - 7.5px);
}
@media screen and (max-width: 565px) {
    #boxesContainer .row .col-2 {
        width: 100%;
        margin-right: 0px;
    }
}
#boxesContainer .row .col-2:first-child {
    padding: 80px 0px;
    margin-right: 15px;
    background: #3a3839;
    color: white;
    text-align: center;
}
#boxesContainer .row .col-2:first-child h3 {
    font-size: 30px;
    color: white;
    margin-bottom: 15px;
}
#boxesContainer .row .col-2:first-child i {
    margin-bottom: 15px;
    font-size: 40px;
    color: #0a9346;
}
#boxesContainer .row .col-2:first-child p {
    margin-bottom: 15px;
}
#boxesContainer .row .col-2:first-child input {
    width: 60%;
}
#boxesContainer .row .col-2:first-child button {
    background: white;
    outline: none;
    border: none;
    padding: 11px;
    border-radius: 3px;
    margin-left: -9px;
    cursor: pointer;
}
#boxesContainer .row .col-2:first-child button i {
    font-size: 18px;
    margin-bottom: 0px;
}
@media screen and (max-width: 565px) {
    #boxesContainer .row .col-2:first-child {
        margin-right: 0px;
        margin-bottom: 15px;
    }
}
#boxesContainer .row .col-2:nth-child(2) {
    padding: 80px 0px;
    background: url("../images/car_small1.jpg") no-repeat;
    background-size: cover;
    text-align: center;
}
#boxesContainer .row .col-2:nth-child(2) h3 {
    font-size: 30px;
    color: white;
    margin-bottom: 15px;
}
#boxesContainer .row .col-2:nth-child(2) i {
    font-size: 40px;
    color: white;
    margin-bottom: 15px;
    display: block;
}
#boxesContainer .row .col-2:nth-child(2) p {
    margin-bottom: 15px;
    color: white;
}

#rentContainer #filter {
    width: 300px;
    float: left;
    margin-right: 40px;
}
@media screen and (max-width: 991px) {
    #rentContainer #filter {
        width: 250px;
    }
}
@media screen and (max-width: 767px) {
    #rentContainer #filter {
        width: 100%;
        margin-right: 0px;
    }
}
#rentContainer #filter h3 {
    padding-bottom: 3px;
    margin-bottom: 10px;
}
#rentContainer #filter input:not([type="checkbox"]),
#rentContainer #filter select {
    width: 100%;
    display: block;
    margin-bottom: 10px;
    background: #dedede;
}
#rentContainer #filter label {
    display: block;
    margin-bottom: 10px;
}
#rentContainer #filter .checkbox {
    margin-right: 15px;
}
#rentContainer #filter .noUi-horizontal .noUi-handle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}
#rentContainer #filter .noUi-horizontal .noUi-handle:before {
    content: none;
}
#rentContainer #filter .noUi-horizontal .noUi-handle:after {
    width: 10px;
    height: 10px;
    background-color: #0a9346;
    border-radius: 50%;
    left: 9px;
    top: 9px;
}
#rentContainer #filter .noUi-connect {
    background-color: #0a9346;
}
#rentContainer #filter .noUi-target {
    margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
    #rentContainer #filter .noUi-target {
        width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
}

#vehicles {
    padding: 15px;
    float: left;
    width: calc(100% - 340px);
}
@media screen and (max-width: 991px) {
    #vehicles {
        width: calc(100% - 290px);
    }
}
@media screen and (max-width: 767px) {
    #vehicles {
        width: 100%;
    }
}
#vehicles:after {
    display: block;
    content: "";
    clear: both;
}
#vehicles #vehiclesHeader {
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 15px;
    padding-bottom: 15px;
}
#vehicles #vehiclesHeader span {
    float: right;
}
.vehicle {
    float: left;
    width: 33.33333%;
    text-align: center;
    border-right: 1px solid #eaeaea;
    padding: 12px;
    margin-bottom: 40px;
    transition: 500ms box-shadow;
    /*SASS*/
    min-height: 600px;
}
.vehicle:hover {
    box-shadow: 0px 0px 10px #dadada;
}
.vehicle img {
    width: 100%;
}
.vehicle h3 {
    margin-bottom: 10px;
}
.vehicle p {
    color: #0a9346;
    margin-top: 5px;
    font-size: 20px;
}
.vehicle .vehicle-info {
    width: 50%;
    float: left;
    text-align: left;
    color: #868686;
    font-weight: 300;
    margin-bottom: 10px;
}
.vehicle .vehicle-info img {
    width: 18px;
    margin-right: 8px;
}
.vehicle .vehicle-info-full {
    width: 100%;
}
.vehicle .book-btn {
    margin-top: 20px;
}
.vehicle:nth-child(3n) {
    border-right: none;
}
@media screen and (max-width: 1119px) {
    .vehicle {
        width: 50%;
    }
    .vehicle:nth-child(3n) {
        border-right: 1px solid #eaeaea;
    }
    .vehicle:nth-child(even) {
        border-right: none;
    }
}
@media screen and (max-width: 991px) {
    .vehicle {
        width: 100%;
        border-right: none;
    }
    .vehicle:nth-child(3n) {
        border-right: none;
    }
}

#contactContainer .row {
    margin: 15px 0px;
}
#contactContainer .row label,
#contactContainer .row textarea,
#contactContainer .row input {
    display: block;
    width: 100%;
}
#contactContainer .row input,
#contactContainer .row textarea {
    background: #f7f7f7;
}
#contactContainer .row label {
    margin-bottom: 8px;
}
#contactContainer .row .button {
    float: right;
    margin-top: 10px;
    margin-right: 8px;
}
#contactContainer #map h3 {
    text-align: center;
}
#loading {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgba(204, 204, 204, 0.8);
    z-index: 1001;
    visibility: hidden;
}
.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #0a9346;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
.reserve-box {
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0px 0px 10px #464646;
}
.reserve-box-header {
    background: #0a9346;
    text-transform: uppercase;
    font-size: 28px;
    width: 100%;
    padding: 14px 0px;
}
.reserve-box-header h3 {
    color: white;
}
.reserve-box-body {
    padding: 10px;
    background: rgba(20, 61, 82, 0.24);
    font-size: 18px;
}
.reserve-box-body label {
    display: block;
    text-align: left;
    margin-bottom: 8px;
}
.reserve-box-body input,
.reserve-box-body select {
    width: 100%;
    margin-bottom: 10px;
}
.reserve-box .button {
    width: 100%;
    padding: 6px;
    cursor: pointer;
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.cookies-policy-div {
    position: fixed;
    bottom: 30px;
    left: 35px;
    max-width: 600px;
    background: white;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    box-shadow: 0px 0.1px 1.4px rgb(0 0 0 / 3%), 0px 0.3px 3.3px rgb(0 0 0 / 5%), 0px 0.5px 6.1px rgb(0 0 0 / 6%),
        0px 0.9px 10.9px rgb(0 0 0 / 7%), 0px 1.7px 20.5px rgb(0 0 0 / 8%), 0px 4px 49px rgb(0 0 0 / 10%);
}
.cookies-policy-div h2 {
    font-size: 28px;
    margin-bottom: 25px;
    font-weight: 300;
}
.cookies-policy-div a.button {
    margin-bottom: 25px;
    display: block;
}
@media screen and (max-width: 768px) {
    .cookies-policy-div {
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 95%;
    }
}


.blog-inner {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
  }
  @media screen and (max-width: 780px) {
    .blog-inner {
      grid-template-columns: repeat(1, 1fr);
    }
  }
  .blog-inner .blog-post {
    font-family: "FiraSans";
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid rgba(0, 0, 0, 0.23);
    padding-bottom: 0.5rem;
    align-items: flex-start;
    color: black;
  }
  .blog-inner .blog-post .post-bottom {
    padding-top: 0.85rem;
  }
  .blog-inner .blog-post .post-desc {
    padding-top: 0.25rem;
  }
  .blog-inner .blog-post .post-read {
    margin-top: 0.5rem;
    padding-bottom: 4px;
  }
  .blog-inner .blog-post .post-read i {
    font-size: 14px;
  }
  .blog-inner .blog-post .post-title h4 {
    font-size: 2.25rem;
    text-transform: uppercase;
    font-family: "FiraSans";
  }
  .blog-inner .blog-post .post-img {
    position: relative;
    overflow: hidden;
  }
  .blog-inner .blog-post .post-img img {
    transition: 0.23s ease-in-out;
  }
  .blog-inner .blog-post .post-img:hover img {
    transform: scale(1.05);
  }
  .blog-inner .blog-post .post-img .post-hover {
    display: flex;
    transition: 0.23s ease-in-out;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px 10px;
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  .blog-inner .blog-post .post-img .post-hover p {
    font-size: 1.2rem;
    color: white;
    font-weight: 600;
  }
  .blog-inner .blog-post .post-img .post-hover span {
    font-size: 1rem;
    color: white;
    font-weight: 300;
  }
  .blog-inner .blog-post .post-img .post-hover .post-hover__right span {
    font-size: 1.1rem;
  }
  .blog-inner .blog-post .post-img:hover .post-hover {
    bottom: 0;
  }
  .blog-inner .blog-post .post-img img {
    width: 100%;
  }
  
  .styled-checkbox {
    position: absolute;
    opacity: 0;
  }
  .styled-checkbox + label {
    position: relative;
    cursor: pointer;
    padding: 0;
  }
  .styled-checkbox + label:before {
    content: "";
    margin-right: 8px;
    display: inline-block;
    vertical-align: sub;
    width: 15px;
    height: 15px;
    background: #e6e6e6;
    border: 1px solid #ddd;
    border-radius: 0.15rem;
  }
  .styled-checkbox + label {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
  }
  .styled-checkbox + label.sm-pd:before {
    margin-right: 10px;
  }
  .styled-checkbox + label.white:before {
    background-color: white;
  }
  .styled-checkbox:hover + label:before {
    background: #e6e6e6;
  }
  .styled-checkbox:checked + label:before {
    background: black;
    border-color: black;
  }
  .styled-checkbox:disabled + label {
    color: #b8b8b8;
    cursor: auto;
  }
  .styled-checkbox:disabled + label:before {
    box-shadow: none;
    background: #ddd;
  }
  .styled-checkbox:checked + label:after {
    content: "";
    position: absolute;
    left: 3px;
    top: 9px;
    background: white;
    width: 3px;
    height: 3px;
    box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
    transform: rotate(45deg);
  }
  
  @supports (-webkit-appearance: none) or (-moz-appearance: none) {
    .styled-check2 input[type=checkbox],
  .styled-check2 input[type=radio] {
      --active: #000000;
      --active-inner: #fff;
      --focus: 2px rgba(39, 94, 254, .3);
      --border: #BBC1E1;
      --border-hover: #000000;
      --background: #fff;
      --disabled: #F6F8FF;
      --disabled-inner: #E1E6F9;
      -webkit-appearance: none;
      -moz-appearance: none;
      height: 21px;
      outline: none;
      display: inline-block;
      vertical-align: top;
      position: relative;
      margin: 0;
      cursor: pointer;
      border: 1px solid var(--bc, var(--border));
      background: var(--b, var(--background));
      transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
    }
    .styled-check2 input[type=checkbox]:after,
  .styled-check2 input[type=radio]:after {
      content: "";
      display: block;
      left: 0;
      top: 0;
      position: absolute;
      transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
    }
    .styled-check2 input[type=checkbox]:checked,
  .styled-check2 input[type=radio]:checked {
      --b: var(--active);
      --bc: var(--active);
      --d-o: .3s;
      --d-t: .6s;
      --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
    }
    .styled-check2 input[type=checkbox]:disabled,
  .styled-check2 input[type=radio]:disabled {
      --b: var(--disabled);
      cursor: not-allowed;
      opacity: 0.9;
    }
    .styled-check2 input[type=checkbox]:disabled:checked,
  .styled-check2 input[type=radio]:disabled:checked {
      --b: var(--disabled-inner);
      --bc: var(--border);
    }
    .styled-check2 input[type=checkbox]:disabled + label,
  .styled-check2 input[type=radio]:disabled + label {
      cursor: not-allowed;
    }
    .styled-check2 input[type=checkbox]:hover:not(:checked):not(:disabled),
  .styled-check2 input[type=radio]:hover:not(:checked):not(:disabled) {
      --bc: var(--border-hover);
    }
    .styled-check2 input[type=checkbox]:focus,
  .styled-check2 input[type=radio]:focus {
      box-shadow: 0 0 0 var(--focus);
    }
    .styled-check2 input[type=checkbox]:not(.switch),
  .styled-check2 input[type=radio]:not(.switch) {
      width: 21px;
    }
    .styled-check2 input[type=checkbox]:not(.switch):after,
  .styled-check2 input[type=radio]:not(.switch):after {
      opacity: var(--o, 0);
    }
    .styled-check2 input[type=checkbox]:not(.switch):checked,
  .styled-check2 input[type=radio]:not(.switch):checked {
      --o: 1;
    }
    .styled-check2 input[type=checkbox] + label,
  .styled-check2 input[type=radio] + label {
      font-size: 16px;
      line-height: 21px;
      display: inline-block;
      vertical-align: top;
      cursor: pointer;
      margin-left: 4px;
    }
    .styled-check2 input[type=checkbox]:not(.switch) {
      border-radius: 7px;
    }
    .styled-check2 input[type=checkbox]:not(.switch):after {
      width: 5px;
      height: 9px;
      border: 2px solid var(--active-inner);
      border-top: 0;
      border-left: 0;
      left: 6px;
      top: 3px;
      transform: rotate(var(--r, 20deg));
    }
    .styled-check2 input[type=checkbox]:not(.switch):checked {
      --r: 43deg;
    }
    .styled-check2 input[type=checkbox].switch {
      width: 38px;
      border-radius: 11px;
    }
    .styled-check2 input[type=checkbox].switch:after {
      left: 2px;
      top: 2px;
      border-radius: 50%;
      width: 15px;
      height: 15px;
      background: var(--ab, var(--border));
      transform: translateX(var(--x, 0));
    }
    .styled-check2 input[type=checkbox].switch:checked {
      --ab: var(--active-inner);
      --x: 17px;
    }
    .styled-check2 input[type=checkbox].switch:disabled:not(:checked):after {
      opacity: 0.6;
    }
    .styled-check2 input[type=radio] {
      border-radius: 50%;
    }
    .styled-check2 input[type=radio]:after {
      width: 19px;
      height: 19px;
      border-radius: 50%;
      background: var(--active-inner);
      opacity: 0;
      transform: scale(var(--s, 0.7));
    }
    .styled-check2 input[type=radio]:checked {
      --s: .5;
    }
  }
  
  /*# sourceMappingURL=main.css.map */
  footer .powered a:hover {
    /* display: none; */
    color: white !important;
  }

  .home-ones {
    width: 96%;
    max-width: 1140px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
    margin: 0 auto;
    padding: 100px 0px;
  }

  @media screen and (max-width: 800px) {
      .home-ones {
        grid-template-columns: repeat(1, 1fr);
      }
  }

  .home-one__top {
    display: flex;
    grid-gap: 12px;
  }

  .home-one__top p {
    color: #0a9346;
    font-weight: 400;
    font-size: 24px;
  }

  .home-one__top img {
    filter: invert(39%) sepia(32%) saturate(711%) hue-rotate(67deg) brightness(93%) contrast(93%);
  }

  .home-one__bottom {
    margin-top: 8px;
  }



  html body {
    --main-bg-color: #fff;
    --lighter-bg-color: #fbfbfb;
    --bg-color-1: #f0f0f0;
    --bg-color-2: #e1e1e1;
    --high-contrast-text: #000;
    --main-txt-color: #000;
    --soft-txt-color: #3c3c3c;
    --high-contrast-color: #ffffff;
    --high-soft-color: #fcfcfc;
    --medium-color: #555;
    --softer-color: #666666;
    --color--444: #444444;
    --dark-color: #141414;
    --primary-font: "FiraSans", sans-serif;
    --secondary-font: "FiraSans", sans-serif;
    --third-font: "FiraSans", sans-serif;
    --fourth-font: "FiraSans", sans-serif;
    --position-gap-1: 20px;
    --position-gap-2: 40px;
    --position-gap-3: 60px;
    --basis-1: 20px;
    --basis-2: 40px;
    --basis-3: 60px;
    --basis-4: 80px;
    --bg-opacity: 1;
    --b-opacity: 1;
    --shadow-color: 0 0 0;
    --heading-1: 4.5rem;
    --heading-2: 3.75rem;
    --heading-3: 3rem;
    --heading-4: 2.25rem;
    --heading-5: 1.875rem;
    color: var(--main-txt-color);
    --gray-05-shadow: 249 249 249;
    --gray-1-shadow: 243 243 243;
    --gray-2-shadow: 229 229 229;
    --gray-3-shadow: 209 209 209;
    --gray-4-shadow: 156 156 156;
    --gray-5-shadow: 107 107 107;
    --gray-6-shadow: 75 75 75;
    --gray-7-shadow: 55 55 55;
    --gray-8-shadow: 31 31 31;
    --gray-9-shadow: 17 17 17;
    --blue-shadow: 31 144 237;
    --secondary-blue-shadow: 67 166 247;
    --green-shadow: 16 172 132;
    --secondary-green-shadow: 29 209 161;
    --red-shadow: 238 83 83;
    --secondary-red-shadow: 255 107 107;
    --yellow-shadow: 241 196 15;
    --orange-shadow: 255 159 67;
    --secondary-orange-shadow: 254 202 87;
    --purple-shadow: 52 31 151;
    --secondary-purple-shadow: 95 39 205;
    --pink-shadow: 243 104 224;
    --secondary-pink-shadow: 255 159 243;
    --aqua-shadow: 1 163 164;
    --secondary-aqua-shadow: 0 210 211;
    --black-rgb: 0, 0, 0;
    --white-rgb: 255, 255, 255;
    --gray-05: 249, 249, 249;
    --gray-1: 243, 243, 243;
    --gray-2: 229, 229, 229;
    --gray-3: 209, 209, 209;
    --gray-4: 156, 156, 156;
    --gray-5: 107, 107, 107;
    --gray-6: 75, 75, 75;
    --gray-7: 55, 55, 55;
    --gray-8: 31, 31, 31;
    --gray-9: 17, 17, 17;
    --gray-1-hex: #f3f3f3;
    --gray-2-hex: #e5e5e5;
    --gray-3-hex: #d1d1d1;
    --gray-4-hex: #9c9c9c;
    --gray-5-hex: #6b6b6b;
    --gray-6-hex: #4b4b4b;
    --gray-7-hex: #373737;
    --gray-8-hex: #1f1f1f;
    --gray-9-hex: #111111;
    --blue: 31, 144, 237;
    --secondary-blue: 67, 166, 247;
    --green: 16, 172, 132;
    --secondary-green: 29, 209, 161;
    --red: 238, 83, 83;
    --secondary-red: 255, 107, 107;
    --yellow: 241, 196, 15;
    --orange: 255, 159, 67;
    --secondary-orange: 254, 202, 87;
    --purple: 52, 31, 151;
    --secondary-purple: 95, 39, 205;
    --pink: 243, 104, 224;
    --secondary-pink: 255, 159, 243;
    --aqua: 1, 163, 164;
    --secondary-aqua: 0, 210, 211;
    --btn-dark-color: #333;
}
html body * {
    --selection-color: black;
    --sp: 8rem;
    --sp-md: 5rem;
    --sp-sm: 3rem;
    --shadow-sm: 0 1px 2px 0 rgb(var(--shadow-color) / 0.05);
    --shadow-default: 0 1px 3px 0 rgb(var(--shadow-color) / 0.1), 0 1px 2px -1px rgb(var(--shadow-color) / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(var(--shadow-color) / 0.1), 0 2px 4px -2px rgb(var(--shadow-color) / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(var(--shadow-color) / 0.1), 0 4px 6px -4px rgb(var(--shadow-color) / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(var(--shadow-color) / 0.1), 0 8px 10px -6px rgb(var(--shadow-color) / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(var(--shadow-color) / 0.25);
    --shadow-3xl: 0 25px 50px -12px rgb(var(--shadow-color) / 0.5);
    --shadow-inner: inset 0 2px 4px 0 rgb(var(--shadow-color) / 0.05);
    --shadow-custom: 0.9px 0.9px 2.7px rgba(0, 0, 0, 0.005), 2.3px 2.2px 6.9px rgba(0, 0, 0, 0.009),
        4.6px 4.4px 14.2px rgba(0, 0, 0, 0.013), 9.5px 9.1px 29.2px rgba(0, 0, 0, 0.016),
        26px 25px 80px rgba(0, 0, 0, 0.04);
    --drop-shadow-sm: drop-shadow(0 1px 1px rgb(var(--shadow-color) / 0.05));
    --drop-shadow: drop-shadow(0 4px 3px rgb(var(--shadow-color) / 0.07))
        drop-shadow(0 2px 2px rgb(var(--shadow-color) / 0.06));
    --drop-shadow-md: drop-shadow(0 4px 3px rgb(var(--shadow-color) / 0.07))
        drop-shadow(0 2px 2px rgb(var(--shadow-color) / 0.06));
    --drop-shadow-lg: drop-shadow(0 10px 8px rgb(var(--shadow-color) / 0.04))
        drop-shadow(0 4px 3px rgb(var(--shadow-color) / 0.1));
    --drop-shadow-xl: drop-shadow(0 20px 13px rgb(var(--shadow-color) / 0.03))
        drop-shadow(0 8px 5px rgb(var(--shadow-color) / 0.08));
    --drop-shadow-2xl: drop-shadow(0 25px 25px rgb(var(--shadow-color) / 0.15));
    --filter-blur: blur(0);
    --filter-brightness: brightness(1);
    --filter-contrast: contrast(1);
    --filter-grayscale: grayscale(0);
    --filter-invert: invert(0);
    --text-opacity: 1;
    --scroll-snap-strictness: mandatory;
    --fill-opacity: 1;
    --stroke-opacity: 1;
    --primary-border-color: #000;
    --primary-border-color-rgb: 0, 0, 0;
    --secondary-border-color-rgb: #fff;
    --secondary-border-color-rgb: 255, 255, 255;
    --third-border-color-rgb: #ff0000;
    --third-border-color-rgb: 255, 0, 0;
    --border-width-1: 1px;
    --border-width-2: 2px;
    --border-width-3: 3px;
    --border-width-4: 4px;
    --border-width-5: 5px;
}
html body:not([data-primary]) {
    --primary-color: #108ec6;
    --primary-color-dark: #0a75a2;
    --primary-color-rgb: 16, 142, 198;
    --shadow-primary: 16 142 198;
}
html body:not([data-secondary]) {
    --secondary-color: #475186;
    --secondary-color-dark: #3a4479;
    --secondary-color-rgb: 71, 81, 134;
    --shadow-secondary: 71 81 134;
}
html body:not([data-third]) {
    --third-color: #53c4f5;
    --third-color-dark: #46b7e8;
    --third-color-rgb: 83, 196, 245;
    --shadow-third: 83 196 245;
}
html body:not([data-fourth]) {
    --fourth-color: #241633;
    --fourth-color-dark: #190f25;
    --fourth-color-rgb: 36, 22, 51;
    --shadow-fourth: 36 22 51;
}
html.dark {
    background-color: #0e0f12;
}
html.dark body {
    --main-bg-color: #000;
    --lighter-bg-color: #fbfbfb;
    --bg-color-1: #2c2b2b;
    --bg-color-2: #4c4b4b;
    --high-contrast-text: #fff;
    --main-txt-color: #fff;
    --soft-txt-color: #c9c8c8;
    --high-contrast-color: #000;
    --high-soft-color: #fcfcfc;
    --medium-color: #555;
    --softer-color: #666666;
    --color--444: #444444;
    --dark-color: #141414;
    color: var(--main-txt-color);
    --gray-95-shadow: 249 249 249;
    --gray-9-shadow: 243 243 243;
    --gray-8-shadow: 229 229 229;
    --gray-7-shadow: 209 209 209;
    --gray-6-shadow: 156 156 156;
    --gray-5-shadow: 107 107 107;
    --gray-4-shadow: 75 75 75;
    --gray-3-shadow: 55 55 55;
    --gray-2-shadow: 31 31 31;
    --gray-1-shadow: 17 17 17;
    --gray-05-shadow: 9 9 9;
    --blue-shadow: 21 114 189;
    --secondary-blue-shadow: 53 132 196;
    --green-shadow: 14 138 107;
    --secondary-green-shadow: 22 168 129;
    --red-shadow: 204 71 71;
    --secondary-red-shadow: 217 91 91;
    --yellow-shadow: 186 151 11;
    --orange-shadow: 194 119 48;
    --secondary-orange-shadow: 209 167 75;
    --purple-shadow: 39 23 110;
    --secondary-purple-shadow: 66 26 145;
    --pink-shadow: 176 74 162;
    --secondary-pink-shadow: 209 128 199;
    --aqua-shadow: 2 125 125;
    --secondary-aqua-shadow: 3 173 173;
    --black-rgb: 255, 255, 255;
    --white-rgb: 0, 0, 0;
    --gray-95: 249, 249, 249;
    --gray-9: 243, 243, 243;
    --gray-8: 229, 229, 229;
    --gray-7: 209, 209, 209;
    --gray-6: 156, 156, 156;
    --gray-5: 107, 107, 107;
    --gray-4: 75, 75, 75;
    --gray-3: 55, 55, 55;
    --gray-2: 31, 31, 31;
    --gray-1: 17, 17, 17;
    --gray-05: 9, 9, 9;
    --gray-95-hex: #f9f9f9;
    --gray-9-hex: #f3f3f3;
    --gray-8-hex: #e5e5e5;
    --gray-7-hex: #d1d1d1;
    --gray-6-hex: #9c9c9c;
    --gray-5-hex: #6b6b6b;
    --gray-4-hex: #4b4b4b;
    --gray-3-hex: #373737;
    --gray-2-hex: #1f1f1f;
    --gray-1-hex: #111111;
    --gray-05-hex: #090909;
    --blue: 21, 114, 189;
    --secondary-blue: 53, 132, 196;
    --green: 14, 138, 107;
    --secondary-green: 22, 168, 129;
    --red: 204, 71, 71;
    --secondary-red: 217, 91, 91;
    --yellow: 186, 151, 11;
    --orange: 194, 119, 48;
    --secondary-orange: 209, 167, 75;
    --purple: 39, 23, 110;
    --secondary-purple: 66, 26, 145;
    --pink: 176, 74, 162;
    --secondary-pink: 209, 128, 199;
    --aqua: 2, 125, 125;
    --secondary-aqua: 3, 173, 173;
    --btn-dark-color: #fff;
}
html.dark body:not([data-primary]) {
    --primary-color: #108ec6;
    --primary-color-dark: #0a75a2;
    --primary-color-rgb: 16, 142, 198;
    --shadow-primary: 16 142 198;
}
html.dark body:not([data-secondary]) {
    --secondary-color: #475186;
    --secondary-color-dark: #3a4479;
    --secondary-color-rgb: 71, 81, 134;
    --shadow-secondary: 71 81 134;
}
html.dark body:not([data-third]) {
    --third-color: #53c4f5;
    --third-color-dark: #46b7e8;
    --third-color-rgb: 83, 196, 245;
    --shadow-third: 83 196 245;
}
html.dark body:not([data-fourth]) {
    --fourth-color: #241633;
    --fourth-color-dark: #190f25;
    --fourth-color-rgb: 36, 22, 51;
    --shadow-fourth: 36 22 51;
}
html.dark body * {
    --primary-border-color: #fff;
    --primary-border-color-rgb: 255, 255, 255;
    --secondary-border-color-rgb: #000;
    --secondary-border-color-rgb: 0, 0, 0;
    --third-border-color-rgb: #ff0000;
    --third-border-color-rgb: 255, 0, 0;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,
body {
    max-width: 100%;
    font-family: var(--primary-font);
}
a {
    text-decoration: none;
    transition: 0.6s ease-in-out;
}
input,
option,
select,
textarea,
button {
    outline: 0;
    border: none;
    transition: 0.6s ease-in-out;
    font-family: var(--primary-font);
    font-size: 16px;
    border-radius: 0;
}
.appearance-none {
    -moz-appearance: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
}
textarea {
    resize: none;
}
button {
    cursor: pointer;
}
select {
    -webkit-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    font-size: 16px;
}
ul {
    list-style-type: none;
}
.logo {
    cursor: pointer;
}
.form-box {
    transform: scaleY(0);
    transition: 0.23s ease-in-out;
    transform-origin: top;
}
.form-box.opened {
    transform: scaleY(1);
}
html {
    scroll-behavior: smooth;
}
input:invalid,
textarea:invalid {
    box-shadow: none !important;
}
::selection {
    background: var(--selection-color);
    color: #fff;
}
::-moz-selection {
    background: var(--selection-color);
    color: #fff;
}
.placeholder-opacity::-webkit-input-placeholder {
    opacity: var(--placeholder-opacity);
}
.placeholder-white::-webkit-input-placeholder {
    color: #fff !important;
}
.placeholder-black::-webkit-input-placeholder {
    color: #000 !important;
}
.placeholder-opacity::placeholder {
    opacity: var(--placeholder-opacity);
}
.placeholder-white::placeholder {
    color: #fff !important;
}
.placeholder-black::placeholder {
    color: #000 !important;
}
.placeholder-primary::-webkit-input-placeholder {
    color: var(--primary-color) !important;
}
.placeholder-primary::placeholder {
    color: var(--primary-color) !important;
}
#helloInput {
    display: none !important;
}
.no-scrollbar {
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
}
.no-scrollbar::-webkit-scrollbar {
    width: 0px !important;
    height: 0px !important;
    display: none !important;
}
.no-scrollbar::-webkit-scrollbar-track {
    background: transparent !important;
}
.no-scrollbar::-webkit-scrollbar-thumb {
    background: transparent !important;
    border-radius: 40px !important;
}
.no-scrollbar::-webkit-scrollbar-thumb:hover {
    background: transparent !important;
}
.no-scrollbar::scrollbar {
    width: 0px !important;
    height: 0px !important;
}
.no-scrollbar::scrollbar-track {
    background: transparent !important;
}
.no-scrollbar::scrollbar-thumb {
    background: transparent !important;
    border-radius: 40px !important;
}
.no-scrollbar::scrollbar-thumb:hover {
    background: transparent !important;
}
.animation {
    animation: 0.2s ease-in-out;
}
@-webkit-keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@-moz-keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@-webkit-keyframes bounce {
    0%,
    100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}
@-moz-keyframes bounce {
    0%,
    100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}
@keyframes bounce {
    0%,
    100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}
@-webkit-keyframes ping {
    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}
@-moz-keyframes ping {
    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}
@keyframes ping {
    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}
@-webkit-keyframes doubling {
    50% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1);
    }
}
@-moz-keyframes doubling {
    50% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes doubling {
    50% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(1);
    }
}
@-webkit-keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}
@-moz-keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}
.section-padding {
    padding-top: var(--sp);
}
@media screen and (max-width: 1366px) {
    .section-padding {
        padding-top: calc(var(--sp) / 1.25);
    }
}
@media screen and (max-width: 1024px) {
    .section-padding {
        padding-top: calc(var(--sp) / 1.5);
    }
}
@media screen and (max-width: 780px) {
    .section-padding {
        padding-top: calc(var(--sp) / 2);
    }
}
@media screen and (max-width: 480px) {
    .section-padding {
        padding-top: calc(var(--sp) / 2.15);
    }
}
.section-padding.with-bottom {
    padding-bottom: var(--sp);
}
@media screen and (max-width: 1366px) {
    .section-padding.with-bottom {
        padding-bottom: calc(var(--sp) / 1.25);
    }
}
@media screen and (max-width: 1024px) {
    .section-padding.with-bottom {
        padding-bottom: calc(var(--sp) / 1.5);
    }
}
@media screen and (max-width: 780px) {
    .section-padding.with-bottom {
        padding-bottom: calc(var(--sp) / 2);
    }
}
@media screen and (max-width: 480px) {
    .section-padding.with-bottom {
        padding-bottom: calc(var(--sp) / 2.15);
    }
}
.section-padding-md {
    padding-top: var(--sp-md);
}
@media screen and (max-width: 1366px) {
    .section-padding-md {
        padding-top: calc(var(--sp-md) / 1.25);
    }
}
@media screen and (max-width: 1024px) {
    .section-padding-md {
        padding-top: calc(var(--sp-md) / 1.5);
    }
}
@media screen and (max-width: 780px) {
    .section-padding-md {
        padding-top: calc(var(--sp-md) / 2);
    }
}
@media screen and (max-width: 480px) {
    .section-padding-md {
        padding-top: calc(var(--sp-md) / 2.15);
    }
}
.section-padding-md.with-bottom {
    padding-bottom: var(--sp-md);
}
@media screen and (max-width: 1366px) {
    .section-padding-md.with-bottom {
        padding-bottom: calc(var(--sp-md) / 1.25);
    }
}
@media screen and (max-width: 1024px) {
    .section-padding-md.with-bottom {
        padding-bottom: calc(var(--sp-md) / 1.5);
    }
}
@media screen and (max-width: 780px) {
    .section-padding-md.with-bottom {
        padding-bottom: calc(var(--sp-md) / 2);
    }
}
@media screen and (max-width: 480px) {
    .section-padding-md.with-bottom {
        padding-bottom: calc(var(--sp-md) / 2.15);
    }
}
.section-padding-sm {
    padding-top: var(--sp-sm);
}
@media screen and (max-width: 1366px) {
    .section-padding-sm {
        padding-top: calc(var(--sp-sm) / 1.25);
    }
}
@media screen and (max-width: 1024px) {
    .section-padding-sm {
        padding-top: calc(var(--sp-sm) / 1.5);
    }
}
@media screen and (max-width: 780px) {
    .section-padding-sm {
        padding-top: calc(var(--sp-sm) / 2);
    }
}
@media screen and (max-width: 480px) {
    .section-padding-sm {
        padding-top: calc(var(--sp-sm) / 2.15);
    }
}
.section-padding-sm.with-bottom {
    padding-bottom: var(--sp-sm);
}
@media screen and (max-width: 1366px) {
    .section-padding-sm.with-bottom {
        padding-bottom: calc(var(--sp-sm) / 1.25);
    }
}
@media screen and (max-width: 1024px) {
    .section-padding-sm.with-bottom {
        padding-bottom: calc(var(--sp-sm) / 1.5);
    }
}
@media screen and (max-width: 780px) {
    .section-padding-sm.with-bottom {
        padding-bottom: calc(var(--sp-sm) / 2);
    }
}
@media screen and (max-width: 480px) {
    .section-padding-sm.with-bottom {
        padding-bottom: calc(var(--sp-sm) / 2.15);
    }
}
.select-styled {
    background-image: url(../images/icons/arrow-down.png);
    background-position: calc(100% - 14px) center;
    background-repeat: no-repeat;
    background-size: 12px 12px;
} /*# sourceMappingURL=main.css.map */
/*# Generirano DCSS */
.w-100 {
    width: 100%;
}
.d-flex {
    display: flex;
}
.flex-column {
    flex-direction: column;
}
.flex-center {
    justify-content: center;
    align-items: center;
}
.container-md {
    width: 96%;
    max-width: 768px;
}
.text-center {
    text-align: center;
}
.f-2 {
    font-size: var(--heading-2);
}
.text-uppercase {
    text-transform: uppercase;
}
.f-weight-600 {
    font-weight: 600;
}
.family-fourth {
    font-family: var(--fourth-font);
}
.f-size-20 {
    font-size: 1.25rem;
}
.mt-14 {
    margin-top: 0.875rem;
}
.text-primary {
    color: rgba(var(--primary-color-rgb), var(--text-opacity));
}
.container-lg {
    width: 96%;
    max-width: 1140px;
}
.d-grid {
    display: grid;
}
.col-1 {
    grid-template-columns: repeat(1, 1fr);
}
.bb {
    border-bottom: 1px solid rgba(var(--primary-border-color-rgb), var(--b-opacity));
}
.faq-one.opened .faq-one__content {
    display: flex;
}
.bt {
    border-top: 1px solid rgba(var(--primary-border-color-rgb), var(--b-opacity));
}
.b-2 {
    border-width: var(--border-width-2) !important;
}
.b-black {
    border-color: rgba(var(--black-rgb), var(--b-opacity)) !important;
}
.faq-one.opened .toggle-btn {
    transform: rotate(45deg);
}
.justify-between {
    justify-content: space-between;
}
.pointer {
    cursor: pointer;
}
.align-center {
    align-items: center;
}
.f-size-28 {
    font-size: 1.75rem;
}
.px-6 {
    padding-left: 0.375rem;
    padding-right: 0.375rem;
}
.py-12 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
.f-weight-300 {
    font-weight: 300;
}
.bg-transparent {
    background-color: transparent;
}
.transition {
    transition-property:
        color,
        bottom,
        left,
        right,
        top background-color,
        border-color,
        text-decoration-color,
        fill,
        stroke,
        opacity,
        box-shadow,
        transform,
        filter,
        backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.text-black {
    color: rgba(var(--black-rgb), var(--text-opacity));
}
[class~="f-size-[50px]"] {
    font-size: 50px;
}
.d-none {
    display: none;
}
.pb-20 {
    padding-bottom: 1.25rem;
}
.text-justify {
    text-align: justify;
}
@media screen and (max-width: 1366px) {
    .mdd-f-3 {
        font-size: var(--heading-3) !important;
    }
}
@media screen and (max-width: 992px) {
    .lgt-col-1 {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}
@media screen and (max-width: 992px) {
    [class~="lgt-grid-gap-[50px]"] {
        gap: 50px !important;
    }
}
@media screen and (max-width: 780px) {
    [class~="md-f-size-[40px]"] {
        font-size: 40px !important;
    }
}
@media screen and (max-width: 480px) {
    .sm-f-4 {
        font-size: var(--heading-4) !important;
    }
}
@media screen and (max-width: 480px) {
    .sm-f-size-24 {
        font-size: 1.5rem !important;
    }
}


.faq-one {
    border-bottom: 1px solid #777;
}