* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    text-align: left;
    direction: ltr;
}

.title {
    font-weight: 900;
    font-size: 50px;
    line-height: normal;
    margin-bottom: 0;
    padding-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.text {
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    padding-bottom: 20px;
    margin-bottom: 0;
}

.hero {
    box-sizing: border-box;
    width: 100%;
    height: 100vh;
    background: radial-gradient(86.48% 86.48% at 50% 13.52%, #FF5454 22.78%, #C02921 100%);
    position: relative;
    z-index: 1;
}

.hero header .navbar {
    padding-top: 0 !important;
}

.hero header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
}

header.is-sticky {
    background: radial-gradient(86.48% 86.48% at 50% 13.52%, #FF5454 22.78%, #C02921 100%);
    padding-bottom: 10px;
    border-radius: 0 0 20px 20px;
    animation: slideDown 1s ease-in-out;
    transition: all 1s ease;
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

.nav-link {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 29px;
    color: #FFFFFF !important;
}

.nav-box img {
    width: 200px;
    height: 80px;
    background: #FFFFFF;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 15px;
}
.navbar .navbar-nav .nav-item .nav-link {
    position: relative;
}

.navbar .navbar-nav .nav-item .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    width: 0;
    margin: auto;
    height: 2px;
    background-color: #fff;
    border-radius: 10px;
    bottom: 5px;
    transition: all .5s ease;
}
.navbar .navbar-nav .nav-item .nav-link:hover:after, .navbar .navbar-nav .nav-item .nav-link:focus:after, .navbar .navbar-nav .nav-item .nav-link.active:after{
    width: 90%;
}
.sidenav .closebtn {
    display: none;
}

.navbar-expand-lg .navbar-nav .nav-link span img {
    display: none;
}

.lang-btn span img {
    display: none;
}

.hero-car {
    height: 100vh;
    position: relative;
}

.banner-content {
    height: 100vh;
    position: relative;
}

.hero-car-text {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.hero-car-text h4 {
    font-size: 64px;
    font-weight: 400;
    color: #fff;
    font-family: 'Montserrat';
}

.hero-car-text h3 {
    font-size: 150px;
    font-weight: 900;
    color: #fff;
    font-family: 'Montserrat';
    margin-top: -20px;
}

.hero-car-img {
    position: absolute;
    right: 0;
    bottom: 85px;
    text-align: right;
    right: -25%;
    transition: all .5s ease;
}

.hero-car-img:hover {
    right: 0;
}

.hero-car-img img {
    width: 75%;
}

.carousel-indicators {
    bottom: 20px !important;
}

.carousel-indicators button {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
}

/*====about=====*/
.about-us {
    padding: 100px 0 0px;
    background-color: #000;
    overflow: hidden;
}

.about-content {
    width: 85%;
}

.about-content .title {
    color: #fff;
}

.about-content .text {
    color: #fff;
}

.about-left {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.about-left-img {
    position: absolute;
    right: 0;
    bottom: 0;
    text-align: right;
}

.about-left-img img {
    border-radius: 20px;
    width: 85%;
}

.about-img-content .row {
    align-items: center;
}

.about-right-img {
    padding-bottom: 100px;
}

.about-right-img img {
    width: 100%;
    border-radius: 20px;
}

/*=======our service=======*/
.our-services {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 0px 0 100px;
    margin: 100px 0 0;
    overflow: hidden;
}

.our-services-head .title {
    color: #0F0F0F;
}

.our-services-head .text {
    color: #0F0F0F;
}

.service-head-content {
    padding: 70px 0 50px;
    align-items: center;
}

.card {
    border-radius: 20px !important;
    border: none !important;
    overflow: hidden;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px !important;
}

.card img {
    min-height: 300px;
    object-fit: cover;
}

.card-content {
    min-height: 140px;
    padding: 20px;
    border-radius: 0 0 20px 20px;
}

.card-title {
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
}

.card-text {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 22px;
    color: #0F0F0F;
}



/*=======contact us ======*/
.contact-us {
    padding: 100px 0;
}

.contact-us-text .title {
    color: #0F0F0F;
}

.contact-us-text .text {
    color: #0F0F0F;
    width: 76%;
}

.contact-form {
    padding-right: 50px !important;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group textarea {
    border-radius: 20px;
    background-color: #D9D9D980;
    height: 200px;
    font-size: 16px;
    font-weight: 400;
    color: #0F0F0F;
    padding: 20px;
    border: 0px !important;
    width: 100% !important;
    resize: none;
}

.contact-form .form-group input {
    border-radius: 50px;
    background-color: #D9D9D980;
    height: 50px;
    font-size: 16px;
    font-weight: 400;
    color: #0F0F0F;
    padding: 20px;
    border: 0px !important;
    width: 100% !important;
}

.contact-form .form-group input::placeholder {
    color: #aaa;
}

.contact-form .form-group textarea::placeholder {
    color: #aaa;
}

input:focus-visible {
    outline: none;
}

textarea:focus-visible {
    outline: none;
}

.contact-us-button button {
    width: 160px;
    height: 50px;
    background-color: #E84441;
    border: none;
    text-align: center;
    color: white;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}

/*=======footer======*/
.footer {
    background: #0F0F0F;
    padding: 60px 0;
}

.footer-title {
    font-size: 28px;
    font-weight: 600;
    padding-bottom: 20px;
    line-height: normal;
    color: #fff;
    margin-bottom: 0;
    font-family: 'Montserrat', sans-serif;
}

.footer-right .title {
    font-weight: 800;
    font-size: 30px;
    line-height: normal;
    padding-bottom: 20px;
    color: #FFFFFF;
}

.footer-right .text {
    font-weight: 400;
    font-size: 17px;
    line-height: 26px;
    color: #FFFFFF;
}

.contact-details {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.contact-details p {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
    margin-bottom: 0;
}

.social-icon ul {
    padding-left: 0;
}

.social-icon ul li {
    list-style: none;
    display: inline-block;
    margin-right: 20px;
}

.social-icon ul li a {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

span.list-icon {
    font-size: 18px;
    color: #fff;
    margin-right: 10px;
    margin-top: -2px;
}

/*======warranty css======*/
.warranty {
    padding: 100px 0;
    background: radial-gradient(86.48% 86.48% at 50% 13.52%, #FF5454 22.78%, #C02921 100%);
    overflow: hidden;
}

.warranty .container .row {
    align-items: center;
}

.warranty-content .title {
    color: #fff;
}

.warranty-content .text {
    color: #fff;
    width: 80%;
}

.warranty-img {
    height: 500px;
    width: 100%;
}

.warranty-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 40px;
}

.warranty-content {
    padding-left: 50px;
}

.warranty .slick-dots {
    left: 20%;
    width: auto !important;
    bottom: -45px;
}

.warranty .slick-dots li button:before {
    font-size: 12px;
    color: #fff !important;
    opacity: .6 !important;
}

.warranty .slick-dots li.slick-active button:before {
    color: #fff;
    opacity: 1 !important;
}

.contact-details a.list-item.text-light {
    text-decoration: none;
}