@import url('https://fonts.googleapis.com/css2?family=Hind+Vadodara:wght@300;400;500;600;700&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    max-width: 375px;
    font-family: 'Hind Vadodara', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    overflow-x: hidden;
}

h1,h2,h3,ul,ol,li,a,label,form,button,textarea,select,option,span,small,em,input{
    font-family: 'Hind Vadodara', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    list-style: none;
    text-decoration: none;
}

main,main section, section div,footer, footer div,header, header nav, header aside, header div{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    cursor: pointer;
}

button{
    width: 13rem;
    height: 3rem;
    border-radius: 1.5rem;
    border: none;
    background-color: #fea000;
    color: #fff;
}

section{
    padding: 1rem;
}

footer{
    padding: 1rem;
    background-color: #111;
    align-items: center;
    justify-content: center;
}

footer div{
    align-items: center;
    justify-content: center;
}

footer .foot-paragraph{
    color: #999;
    text-align: center;
    font-size: .9rem;
}

.contact,.contact .wrapper,.contact .box{
    align-items: center;
    justify-content: center;
}

.contact .box{
    margin-bottom: 1rem;
}

.contact .box img{
    width: 100px;
    margin-bottom: .5rem;
}

.contact .box .colored{
    color: #fea000;
    font-weight: 500;
    font-size: 1.3rem;
}

.contact .box .paragraph{
    text-align: center;
}

.track{
    height: 50vh;
}

.track,.track .wrapper,.track .box{
    align-items: center;
    justify-content: center;
}

.track .box .heading{
    margin-bottom: .5rem;
    font-weight: 500;
    font-size: 1.5rem;
}

.about{
    background-color: #dcdcdc;
    align-items: center;
    justify-content: center;
    padding-top: 5rem;
}

.about .box{
    background-color: #fff;
    padding: 1rem;
    border-radius: .5rem;
    box-shadow: 0px 0px 10px grey;
    align-items: flex-start;
    justify-content: center;
}

.about .box:nth-of-type(2){
    background-image: url(images/g3.jpg);
    background-position: center;
    background-size: cover;
    border-radius: .5rem;
    height: 350px;
    display: none
}

.about .box .heading{
    font-weight: 500;
    font-size: 2rem;
}

.about .box .paragraph{
    line-height: 1.5rem;
    font-size: .9rem;
}

.control{
    height: 70vh;
    align-items: center;
    justify-content: center;
}

.control .box .heading{
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: .5rem;
}

.control .box .greendot{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #fea000;
    display: inline-block;
}

.control .box .paragraph{
    color: grey;
    line-height: 1.5rem;
}

.service{
    padding-top: 5rem;
}

.service,.service .wrapper,.service .box{
    align-items: center;
    justify-content: center
}

.service .heading{
    font-size: 2rem;
    font-weight: 500;
    color: #fea000;
    margin-bottom: .5rem;
    text-align: center;
}

.service .paragraph{
    text-align: center;
    font-weight: 400;
    font-size: 1rem;
    color: #999;
    margin-bottom: 1rem;
    max-width: 700px;
}

.service .box{
    height: 350px;
    margin-bottom: 1rem;
    border-radius: .5rem;
    cursor: pointer;
    transition: transform .4s ease-in-out;
}

.service .box:nth-of-type(1){
    background: linear-gradient(#fea000, rgba(0,0,0,0.5)),url(images/local.jpg);
    background-repeat: no-repeat;
    background-blend-mode: multiply;
}

.service .box:nth-of-type(2){
    background: linear-gradient(#fea000, rgba(0,0,0,0.5)),url(images/air.jpg);
    background-repeat: no-repeat;
    background-blend-mode: multiply;
}

.service .box:nth-of-type(3){
    background: linear-gradient(#fea000, rgba(0,0,0,0.5)),url(images/international.jpg);
    background-repeat: no-repeat;
    background-blend-mode: multiply;
}

.service .box .paragraph{
    font-size: 1.3rem;
    font-weight: 500;
    color: #fff;
}

.service .box:hover{
    transform: translateY(-10px);
}

.service .box:hover:nth-of-type(1){
    background: linear-gradient(#f1f1f1, rgba(255, 255, 255, 0.5)),url(images/local.jpg);
    background-repeat: no-repeat;
}

.service .box:hover:nth-of-type(2){
    background: linear-gradient(#f1f1f1, rgba(255, 255, 255, 0.5)),url(images/air.jpg);
    background-repeat: no-repeat;
}

.service .box:hover:nth-of-type(3){
    background: linear-gradient(#f1f1f1, rgba(255, 255, 255, 0.5)),url(images/international.jpg);
    background-repeat: no-repeat;
}

.hero{
    height: 100vh;
    align-items: flex-start;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.473), rgba(0,0,0,0.75)),url(images/banner.png);
    background-position: center;
    background-size: cover;
}

.hero .box .mainHeading{
    color: #fff;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.hero .box .paragraph{
    color: #fff;
    line-height: 1.5rem;
    font-weight: 400;
    max-width: 600px;
}

.logo{
    width: 100px;
}

.header{
    position: absolute;
    padding: 1rem;
}

.mobile{
    width: 100%;
    height: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    overflow-y: hidden;
    transition: height .4s ease-in-out;
}

.show{
    height: 30rem;
}

.mobile-top{
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.mobile-bottom{
    background-color: #111;
    padding: 1rem;
    border-radius: .3rem;
}

.mobile-bottom ul{
    width: 100%;
}

.mobile-bottom li{
    margin-bottom: 1rem;
    width: 100%;
    height: 3rem;
    border-radius: .3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile li a{
    color: #fff;
    text-transform: uppercase;
}

.mobile-bottom li:hover{
    background-color: #fea000;
    color: #fff;
    
}

.menu{
    width: 60px;
    height: 40px;
    border-radius: .3rem;
    background-color: #fff;
    align-items: center;
    justify-content: center;
}

.menu img{
    width: 30px;
}

.desktop{
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.desktop ul{
    width: 600px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

/* tracking section */
form{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

label{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 1rem;
}

.tracking{
    padding: 0;
    justify-content: center;
}

.tracking .wrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 3rem 1rem;
}

.tracking .wrapper:nth-of-type(1){
    padding: 1rem;
}

.tracking .wrapper:nth-of-type(1) .colored{
    color: #fea000;
    font-size: 2rem;
    font-weight: 600;
}

.tracking .wrapper:nth-of-type(2){
    background-color: #f5efe0;
}

.tracking .box{
    align-items: center;
    justify-content: center;
    border: 1px solid grey;
}

.tracking .titlebox{
    background-color: #cccccc;
    padding: 1rem;
}

.tracking .titlebox .heading{
    font-weight: 600;
    font-size: 1.5rem;
}

.tracking input{
    width: 100%;
    height: 3rem;
    padding: .3rem;
    border-radius: 0;
    border: 1px solid #ccc;
}

.tracking button{
    width: 100%;
    border-radius: 0;
    text-transform: uppercase;
    font-weight: 600;
    background-color: #fea000;
    cursor: pointer;
}

.trackmobile{
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.menu small{
    color: #999;
    font-size: .9rem;
}

.trackdesktop{
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    display: none;
}

.trackdesktop ul{
    width: 250px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.trackdesktop li a{
    color: #fea000;
    font-weight: 600;
    text-transform: uppercase;
}

.trackdesktop li:nth-of-type(2) a{
    text-decoration: underline;
}

.asideMenu{
    position: absolute;
    right: -50rem;
    top: 0;
    background-color: #fff;
    padding: 1rem;
    height: 100vh;
    width: 80%;
    transition: right .4s ease-in-out;
}

.slide{
    right: 0;
}

.asideMenu .aside-top{
    margin-bottom: 1rem;
    justify-content: flex-end;
    align-items: flex-end;
}

.asideMenu ul{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    align-self: flex-end;
    cursor: pointer;
}

.asideMenu li{
    margin-right: 1rem;
    font-weight: 500;
    font-size: 1.5rem;
}

.aside-bottom ul{
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    cursor: pointer;
}

.aside-bottom li{
    width: 100%;
    border-block:1px solid #ccc;
    margin: 0;
    padding: 1rem;
}

.aside-bottom li:nth-of-type(2){
    border-top: none;
}

.aside-bottom li a{
    color: #fea000;
    font-weight: 600;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.aside-bottom li:nth-of-type(2) a{
    text-decoration: underline;
}

.login, .login .wrapper{
    align-items: center;
    justify-content: center;
}

.login .box{
    padding: 1rem;
    width: 350px;
}

.login form{
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 1rem;
    margin-bottom: 1rem;
}

.login-body{
    background-color: #f0f0f1;
}

.login .box a{
    font-size: .9rem;
    color: #7d8287;
    margin-bottom: 1rem;
}

.login form input{
    width: 100%;
    height: 2.8rem;
    border-radius: .3rem;
    border: 1px solid #ccc;
    margin-top: .3rem;
    padding: .3rem;
}

.login form label{
    font-size: .9rem;
    color: #7d8287;
}

.login form label:nth-of-type(3){
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.login button{
    border-radius: 0;
    width: 100%;
}

.login form label:nth-of-type(3) input{
    height: auto;
    width: auto;
}

.login form label:nth-of-type(3) button{
    width: 4rem;
    height: 2rem;
    border-radius: .3rem;
}

.login-body main,.login-body section{
    height: 100vh;
}

.login-body .logo{
    margin-bottom: 2rem;
}

.check{
    width: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
}

.check input{
    margin-right: .5rem;
}

.banner{
    background-color: #fff;
    padding: 1rem;
    margin-bottom: 1rem;
    border-left: 5px solid #72aee6;
}

.banner .paragraph{
    color: #7d8287;
    font-size: .85rem;
}

.details{
    background-color: #f5efe0;
}

.track-header{
    position: relative;
}

.details .box{
    margin-bottom: 1rem;
}

.details .inner{
    margin-bottom: 1rem;
    flex-direction: row;
    align-items: center;
}

.details .inner .heading{
    font-weight: 600;
    font-size: 1.2rem;
}

.details .inner .paragraph{
    font-size: 1rem;
    font-weight: 400;
    color: #222;
    margin-left: .5rem;
}

.details .box .head,.history-section .box .head{
    width:100%;
    border-bottom: 2px solid #333;
    padding-bottom: .3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: .9rem;
}

.details .box .paragraph,.history-section .box .paragraph{
    font-size: .9rem;
    color: #222;
}

.details .status{
    background-color: #ababab;
    padding: 1rem;
    align-items: center;
    justify-content: center;
}

.details .status h3{
    font-weight: 600;
    font-size: 1.3rem;
    color: #fff;
}

.history-section{
    background-color: #f5efe0;
}

.history .titleHead{
    background-color: #fea000;
    padding: .5rem;
}

.history .titleHead h3{
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
}

.history{
    border: 1px solid #ccc;
}

.history .paragraph{
    width: 100%;
    border: 1px solid #ccc;
    padding: .5rem;
}

.history-table{
    display: grid;
    grid-template-columns: repeat(2,1fr);
}

.history-section .box{
    margin-bottom: 2rem;
}

@media screen and (min-width:376px){
    body{
        max-width: 100%;
    }
}

@media screen and (min-width:500px){
    section .wrapper{
        max-width: 80%;
        margin: 1rem auto 0 auto;
        padding-inline: 2rem;
    }

    .tracking .wrapper{
        max-width: 100%;
    }
}

@media screen and (min-width:900px){
    .service .wrapper{
        flex-direction: row;
        justify-content: space-between;
    }

    .service .box{
        width: 33%;
        margin-bottom: 0;
    }

    .contact .wrapper,.track .box,.control .box{
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }

    .contact .box{
        width: auto;
    }

    .control{
        height: auto;
    }

    .control .heading,.control .paragraph{
        width: 49%;
    }

    section .wrapper{
        max-width: 1200px;
        margin: 1rem auto 0 auto;
    }

    .hero{
        justify-content: flex-end;
        padding-bottom: 2rem;
    }

    .hero .box .mainHeading{
        font-size: 3rem;
        max-width: 400px;
        font-weight: 500;
    }

    .about .wrapper{
        flex-direction: row;
    }

    .about .box:nth-of-type(1){
        padding-right: 4rem;
    }

    .about .box:nth-of-type(2){
        display: block;
        margin-left: -20px;
        margin-top: 40px;
    }

    .mobile{
        display: none;
    }

    .desktop{
        display: flex;
    }

    .desktop li a{
        color: #fff;
        text-transform: uppercase;
    }

    .tracking .wrapper{
        max-width: 100%;
    }

    .tracking .content-box form{
        flex-direction: row;
    }

    .tracking form{
        padding: 1rem;
    }

    .tracking label{
        padding: 1rem;
        border: 1px solid #ccc;
        margin: 0;
    }

    .tracking button{
        width: 10rem;
    }

    .trackmobile{
        display: none;
    }

    .trackdesktop{
        display: flex;
    }

    .asideMenu{
        display: none;
    }

    .tracking .titlebox{
        background: transparent;
    }

    .inner-wrapper{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 1rem;
    }

    .history-table{
        grid-template-columns: repeat(5,1fr);
    }

    .historyTable{
        grid-template-columns: repeat(7,1fr);
    }

    .historyTable .history:nth-of-type(3){
        grid-column-start: 3;
        grid-column-end: 5;
    }
}

@media screen and (min-width:1200px) {
    .history-table{
        grid-template-columns: repeat(7,1fr);
    }

    .historyTable{
        grid-template-columns: repeat(7,1fr);
    }
}