@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: Raleway, sans-serif;
    color: #222;
    /*height: 100%;*/
    /*width: 100%;*/
}

.mr {
    margin-right: 55px;
}

header {
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 25px 50px 25px;
}

.main-banner {
    width: 100%;
    position: relative;
}

.main-banner .background-image .bg_img {
    width: 100%;
    min-height: 500px;
    height: 800px;
    object-fit: cover;
    object-position: bottom;
}

.main-banner .background-image .groupWithLogo {
    width: auto;
    height: 300px;
    position: absolute;
    right: 100px;
    top: 330px;
}

.main-banner .background-image .groupWithLogo img {
    margin-top: -200px;
    width: 300px;
    height: auto;
    position: absolute;
    right: 0;
}
.main-banner .background-image .type {
    color: #fff;
    height:50px;
    font-weight: 600;
    font-size: 60px;
    margin-top: 100px;
    direction: rtl;
}
.main-banner .background-image .title {
    color: #fff;
    font-weight: 600;
    font-size: 40px;
    margin-top: 10px;
    direction: rtl;
}
.lang {
    font-display: none;
    position: absolute;
    right: 0;

}

/*BANNER STYLE*/
.banner {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    background: #2fc3c3;
    margin-top: -5px;
    color: #fff;
}

.banner h1 {
    font-size: 36px;
}


/*VEHICLE SELECTION*/
.choose-dropbox {
    background: #2fc3c3;
    padding: 30px 50px;
    text-align: center;
    color: #fff;
}

.choose-dropbox .dropdown {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.choose-dropbox .dropdown h3 {
    margin-right: 10px;
}

.choose-dropbox .dropdown .drop_down {
    width: 150px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    outline: none;
    border: none;
}

/*CAR SELECTION STYLE*/
.vehicle-selection {
    width: 100%;
    box-sizing: border-box;
}

.vehicle-box {
    width: 100%;
    display: flex;
    box-sizing: border-box;
    justify-content: center;

}

.vehicle-box .vehicles {
    flex-direction: row;
    width: 25%;
    overflow: hidden;
    margin: 20px;
    padding: 20px;
    border: 1px solid #2fc3c3;
    border-radius: 10px;
    box-shadow: 0 0 3px 0 #ddd;
    text-align: center;
}

.vehicle-box .vehicles .car-header h3 {
    font-size: 24px;
}

.vehicle-box .vehicles .car-header p {
    font-family: arial;
    padding-top: 5px;
}

.vehicle-box .vehicles img {
    width: 100%;
    margin-top: 30px;
}

.vehicle-box .vehicles .car-price {
    font-size: 36px;
    font-weight: 600;
    padding-top: 20px;
}

.vehicle-box .vehicles .choose {
    font-size: 16px;
    font-weight: bold;
    width: 100%;
    padding: 10px 0;
    border-radius: 5px;
    border: 1px solid #2fc3c3;
    background: transparent;
    margin-top: 30px;

}

.estimate {
    margin: 50px 0;
    font-size: 18px;
    padding: 10px 50px;
    border: none;
    outline: none;
    font-weight: 600;
    background: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: all linear .3s;
}

.estimate:hover {
    background: #ddd;
}

.estimateShow {
    padding: 20px 0;
    text-align: center;
    background: #2fc3c3;
    color: #fff;
    font-weight: bold;
    font-size: 48px;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;

}

/*SPACE*/
.space {
    margin: 0;
    padding: 20px;
}

/*FOOTER*/
.footer-back {
    width: 100%;
    padding: 20px;
    height: auto;
    background-color: #000;
    /* position: sticky;
    bottom: 0; */
}

.footer-text {
    height: 80px;
    margin: 0;
    padding: 20px;
    text-align: center;
    color: white;
    line-height: 35px;
}
a {
    font-style: normal;
    color: #fff;
}

/*OPTIONAL CLASS FOR JS HANDLER*/
.bgbtn {
    background: #2fc3c3 !important;
    color: #fff !important;
}

/*RESPONSIVE DESIGN*/
@media only screen and (max-width: 600px) {
    .main-banner .background-image .groupWithLogo {
        right: 50px;
    }

    .main-banner .background-image .htitle {
        font-size: 24px;
        margin-top: 90px;
    }

    .choose-dropbox .dropdown h3 {
        flex-basis: 100%;
    }

    .vehicle-box {
        flex-direction: column;
        flex-basis: auto;
        align-items: center;
    }

    .vehicle-box .vehicles {
        width: 90%;
    }

    .vehicle-box .vehicles img {
        margin-top: 0px;
    }

    .estimateShow {
        font-size: 32px;
    }
}

@media only screen and (max-width: 400px) {
    .main-banner .background-image .groupWithLogo {
        right: 10px;
    }

    .choose-dropbox .dropdown {
        flex-direction: column;
        align-items: center;
    }

    .choose-dropbox .dropdown .drop_down {
        width: 100%;
        margin: 5px 0 20px 0;
    }

    .main-banner .background-image .htitle {
        font-size: 18px;
    }
}
