@import url('https://fonts.googleapis.com/css2?family=Poppins: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');

:root {
    --primary-clr: #ef404a
}

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

h2 {
    color: var(--primary-clr);
    margin-bottom: 15px !important;
}

h4 {
    font-size: 20px !important;
    margin-top: 20px !important;
}

p {
    font-size: 14px;
}

.banner {
    background-image: url(/assets/bannerbg.jpg);
    background-size: cover;
    width: 100%;
    height: 700px;
    background-position: center;
}

header {
    padding: 5px 25px;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 999;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    /* border-bottom: 1px solid #c3c3c3; */
}

.header {
    max-width: 1200px;
    margin: auto;
}

a {
    margin: 0;
    font-weight: 500;
    color: #000 !important;
    text-decoration: none;
}

.nav a {
    line-height: 35px;
    padding: 0;
    border: none;position: relative;
    cursor: pointer;
}

.nav a:active {
    transform: scale(0.95);
}

.nav a:hover {
    color: #f0094a !important;
    text-decoration: none !important;
    background: transparent;
    box-shadow: none;
}

.nav a:before,
.nav a:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 2px;
    width: 0;
    background: #f0094a;
    box-shadow:
        -1px -1px 5px 0px #fff,
        7px 7px 20px 0px #0003,
        4px 4px 5px 0px #0002;
    transition: 400ms ease all;
}

.nav a:after {
    right: inherit;
    top: inherit;
    left: 0;
    bottom: 0;
}

.nav a:hover:before,
.nav a:hover:after {
    width: 100%;
    transition: 800ms ease all;
}

.about {
    padding: 85px 20px;
    max-width: 900px;
    margin: auto;
}
.about span {
    color: var(--primary-clr);
    font-weight: 500;
}

.advantages {
    background-color: var(--primary-clr);
    padding: 50px 40px;
    max-width: 900px;
    margin: auto;
    border-radius: 10px;
    position: relative;
    
    /* transform: rotate(1.5deg); */
    z-index: 1;
}

.advantages::before {
    content: '';
    position: absolute;
    top: 0;
    background: #012842;
    left: 0;
    transform: rotate(1.5deg);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    z-index: -1;
}

.cards {
    border: 2px solid  transparent !important;
    color: #fff;
    transition: 0.3s ease;
    border-radius: 10px;
    padding: 10px;
}
.cards:hover {
    border: 1px solid #fff !important;
    transform: scale(1.02);
}


.cards img {
    height: 45px;
    width: 45px;
    padding: 10px;
    border-radius: 45px;
    background-color: #fff;
}

.cards-list {
    display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(2, 1fr);
grid-column-gap: 20px;
grid-row-gap: 20px;
}

h3 {
    color: var(--primary-clr);
    font-weight: 600;
}

.network{
    max-width: 900px;
    margin: auto;
    padding: 70px 20px;
}

.network ul li {
    font-size: 22px;
    color: #ef404a;
    font-weight: 500;
    margin: 10px 0;
}
.network ul li::marker {
    color: #012842;
}

.fleet {
    background-color: #012842;
    padding: 60px 45px;
    max-width: 900px;
    margin: auto;
    border-radius: 10px;
    position: relative;
}

.fleet::before {
    content: '';
    position: absolute;
    top: 0;
    background: #ef404a;
    left: 0;
    transform: rotate(1.5deg);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    z-index: -1;
}

.fleet h4 {
    color: var(--primary-clr);
}

.fleet p {
    color: #fff;
}

.fleet img {
    width: 250px;
    border-radius: 10px;
    border: 2px solid #ffffff;
    transition: .3s ease;
}

.fleet img:hover {
    transform: scale(1.05);
}

.services {
    max-width: 900px;
    margin: auto;
    padding: 50px 40px;
    text-align: center;
}

#contact {
    padding: 30px;
    background-color: #001220;
}

.content {
    color: #fff;
    max-width: 900px;
    margin: auto;
}

.header-mobile {display: none;}
.mobile-menu {display: none;}

@media screen and (max-width: 900px){
    .advantages, .fleet, .about, .services {
        margin: auto 20px;
    }
}

@media screen and (max-width: 720px){
    .network .d-flex {
        justify-content: center !important;
    }
}

@media screen and (max-width: 500px){
    .cards-list {
        display: flex;
        flex-direction: column;
    }

    h2, h3 {
        font-size: 24px !important;
    }

    li {
        font-size: 18px !important;
    }
}
@media screen and (max-width: 575px){
    .nav {
        display: none !important;
    }

    .header-mobile {
        display: block !important;

    }
}