*{
    list-style: none;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

header{
    width: 100%;
}

header nav{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header nav .logo{
    width: 20%;
    background: url(../img/Vector_1.png);
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0px 0px 20px 0px;
}

header nav .links{
    width: 55%;
}
header nav .links ul{
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0;
}

header nav .links ul li a{
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    position: relative;
    line-height: 19.36px;
    letter-spacing: 0%;
}

header nav .links ul li a:hover{
    color: #213F9B;
    transition: .3s;
}

header nav .links ul li a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background: #213F9B;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
    
}

header nav .links ul li a:hover::after{
    transform: scaleX(1);
}

header nav .lang_button{
    width: 20%;
    display: flex;
    position: relative;
}

header nav .lang_button form{
    width: 30%;
    display: flex;
    align-items: center;
}

header nav .lang_button form select{
    width: 100%;
    border: none;
    cursor: pointer;
    padding: 10px;
    background: transparent;
    outline: none;
    font-size: 16px;
}


header nav .lang_button button{
    margin-left: 50px;
    border: none;
    color: white;
    border-radius: 7px;
    padding: 14px;
    background: linear-gradient(to right, #4666C7, #213F9B);
    transition: 0.3s;
}

header nav .lang_button button a{
    color: white;
    line-height: 19.36px;
    letter-spacing: 0%;
    font-size: 16px;
    text-decoration: none;
}

header nav .lang_button button:hover{
    opacity: 0.9;
}

header .slide{
    width: 100%;
    height: calc(100vh - 94px);
}

header .slide .carousel-inner{
    width: 100%;
    height: 100%;
}

header .slide .carousel-inner .carousel-item{
    position: relative;
} 

header .slide .carousel-inner .item_1 h1{
    width: 100%;
    position: absolute;
    top: 10%;
    font-size: 64px;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    text-align: center;
}

header .slide .carousel-inner .item_1 h3{
    width: 100%;
    position: absolute;
    top: 30%;
    left: 25%;
    font-size: 36px;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
}

header .slide .carousel-inner .item_2 h2{
    width: 70%;
    position: absolute;
    top: 5%;
    left: 15%;
    font-size: 48px;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    z-index: 99;
    text-align: center;
}

header .slide .carousel-inner .item_2 p{
    width: 50%;
    position: absolute;
    top: 20%;
    left: 25%;
    font-size: 24px;
    color: white;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    z-index: 99;
    text-align: center;
}

header .slide img{
    width: 100%;    
}

header .slide .filter_5 img{
    filter: brightness(50%)
}


/* Services Start */
.services{
    width: 100%;
    padding: 140px 0px;
}

.services h2{
    font-weight: 600;
    font-size: 40px;
    line-height: 48.41px;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 85px;
}

.services .box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.services .box .left{
    width: 50%;
}

.services .box .right{
    width: 50%;
}

.services .box .left h4{
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0%;
    text-align: left;
    margin-bottom: 16px;
}

.services .box .left p{
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: left;
}

.services .box .left p span, .services .box .right p span{
    color: #213F9B;
    font-weight: 600;
}

#chartdiv {
    width: 500px!important;
    height: 300px;
    margin: 20px auto;
    cursor: pointer;
}
/* Services end */

/* why_choose_us start */
.why_choose_us{
    width: 100%;
}
.why_choose_us h2{
    font-weight: 600;
    font-size: 40px;
    line-height: 48.41px;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 60px;
}

.why_choose_us h3{
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 48px;
}

.why_choose_us h3 span{
    color: #213F9B;
    font-weight: 600;
}

.why_choose_us .items{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.why_choose_us .items .item{
    width: 24%;
    height: 200px;    
    cursor: pointer;
    text-align: center;
    perspective: 1000px;
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.6s;
}

.why_choose_us .items .item:hover {
    transform: rotateY(180deg);
    transition: all 0.6s;
}

.why_choose_us .items .item .self, .why_choose_us .items .item .back {
    width: 100%;
    height: 100%;
    position: absolute;
    backface-visibility: hidden;
    transition: transform 0.6s;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 10px;
}

.why_choose_us .items .item .self {
    background: #213F9B;
    color: white;
    font-size: 18px;
    font-weight: bold;
    transform: rotateY(0deg);
}

.why_choose_us .items .item .back {
    background: #2ecc71;
    color: white;
    transform: rotateY(180deg);
    padding: 10px;
}

.why_choose_us .items .item i{
    font-size: 85px;
    color: white;
    margin-bottom: 20px;
    margin-left: 5px;
}

.why_choose_us .items .item p{
    font-size: 22px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
}
/* why_choose_us end */

/* Car_park start */
.car_park{
    width: 100%;
    padding: 140px 0px;
}

.car_park h2{
    font-weight: 600;
    font-size: 40px;
    line-height: 48.41px;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 85px;
}

.car_park .row{
    display: flex;
    justify-content: space-between;
}

.car_park .item{
    width: 31%;
    position: relative;
    overflow: hidden;
    margin-bottom: 66px;
}

.car_park .item .item_info{
    position: absolute;
    width: 85%;
    top: 10px;
    left: 30px;
    padding: 20px;
    border-radius: 15px;
    background-color: #213F9B;
    color: white;
    opacity: 0;
    transform: translateY(-120%);
    transition: all 0.5s;
}
.car_park .item:hover .item_info{
    opacity: 0.8;
    transition: all 0.5s;
    transform: translateY(5%);
}


.car_park .item .card{
    width: 100%;
    height: 100%;
    background: #F8F9FA;
    border-radius: 20px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.car_park .item .card img {
    width: 300px;
    height: 248px;
}

.car_park .item .isuzu_1 img{
    width: 100%;
    height: 220px;
}

.car_park .item .foton img{
    width: 80%;
    height: 70%;
    margin-top: 5px;
}

.car_park .item h3{
    text-align: center;
}

.car_park .item .isuzu_1 h3{
    margin-top: 25px;
}

/* Car_park end */

/* About start */
.about{
    width: 100%;
    height: 900px;
    padding: 40px 0px;
    background: url(../img/truck_bcg2.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: scroll;
    
}

.about h2{
    font-weight: 600;
    font-size: 40px;
    line-height: 48.41px;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 30px;
    color: white;
}

.about h3{
    font-weight: 600;
    font-size: 40px;
    line-height: 48.41px;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 24px;
    color: white;
}

.about h4{
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 24px;
    color: white;
}

.about h5{
    font-weight: 600;
    font-size: 40px;
    line-height: 48.41px;
    letter-spacing: 0%;
    text-align: center;
    color: white;
    margin-top: 140px;
}


/* About end */

/* Reviews start */
/* Reviews end */

/* Order start */
.order{
    width: 100%;
    padding: 80px 0px;
}

.order h2{
    font-weight: 600;
    font-size: 40px;
    line-height: 48.41px;
    letter-spacing: 0%;
    text-align: center;
    margin-bottom: 85px;
}

.order form{
    width: 100%;
    padding: 62px;
    border-radius: 33px;
    background-color: #F8F9FA;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.order form input{
    display: block;
    width: 100%;
    padding: 27px 35px;
    border-color: #213F9B;
    margin-bottom: 20px;
    border-radius: 10px;
    background-color: #FFFFFF;
    font-size: 25px;
    letter-spacing: 0%;
}

.order form input::placeholder{
    font-weight: 500;
    font-size: 25px;
    line-height: 36.57px;
    letter-spacing: 0px;
    color: rgba(0, 0, 0, 0.5);

}

.order form button{
    display: block;
    width: 100%;
    padding: 27px 35px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    background: linear-gradient(to right, #4666C7, #213F9B);
    color: white;
    font-size: 25px;
    line-height: 36.57px;
    letter-spacing: 0px;
    cursor: pointer;
    transition: all 0.3s;
}

.order form button:hover{
    background: linear-gradient(to right, #213F9B, #4666C7 );
    transition: all 0.3s;
}
/* Order end */


/* Footer start */
footer{
    width: 100%;
    background: linear-gradient(to right, #4666C7, #213F9B);
    padding: 21px 0px 45px 0px;
    color: white;
}

footer h4{
    font-weight: 600;
    font-size: 25px;
    line-height: 36.57px;
    letter-spacing: 0%;
    margin-bottom: 20px;
}

footer .row{
    width: 100%;
    display: flex;
    justify-content: space-between;
}

footer .map{
    width: 45%;
}

footer .contact{
    width: 45%;
}

footer ul{
    list-style-type: none;
    padding: 0;
    margin: 0;
}
footer ul li {
    margin-bottom: 15px;
    display: inline-block;
    display: flex;
    align-items: center;
}

footer ul li i{
    display: inline-block;
    text-align: center;
    width: 35px;
    height: 35px;
    padding-top: 5px;
    margin-right: 10px;
    background-color: #F8F9FA;
    color: #4666C7;
    border-radius: 50%;
    transition: background-color 0.3s;
    font-size: 25px;
}

footer ul li a{
    color: white;
    font-size: 20px;
    line-height: 35px;
    letter-spacing: 0%;
}

footer .dev_logo{
    width: 100%;
    text-align: center;
    margin-top: 50px;
}

footer .dev_logo p a{
    color: white;
    text-decoration: none;
}

footer .dev_logo p a img{
    width: 5%;
}
/* Footer end */



