@font-face {
    font-family: poppins;
    src: url(fonts/Poppins.ttf);
}

@font-face {
    font-family: pro;
    src: url(fonts/pro.ttf);
}


@font-face {
    font-family:heading;
    src: url(fonts/Rejouice-Headline.ttf);
}

:root {
    --background: #FFFFFF;
    --background2: #003366;
    --text: #051145;
    --text2: #000;
    --btn: #2a786b;
    --btnhover: #1c5f54;
    --citybtn: rgba(34, 70, 249, 0.914);
    --citybtnHover: rgba(4, 45, 250, 0.914);
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: pro;
}

html,
body {
    height: 100%;
    width: 100%;
}

#page1 {
    min-height: 100vh;
    width: 100%;
    position: absolute;
    z-index: 3;
    padding-bottom: 10vh;
}

.navbar {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
margin-top: -10vh;
}

.navbar a {
    text-decoration: none;
}


.nav-left img{
    height: 35vh;
    width: 15vw;
    position: relative;
    top: 2vh;
    
}

.nav-left a {
    font-size: 2vw;
    font-family: poppins;
    color: var(--text);
    text-transform: capitalize;
    font-weight: 600;
    margin-left: 5vw;
}

.nav-center {
    display: flex;
    gap: 2vw;
    font-size: 1.3vw;
    text-transform: capitalize;
margin-left: 18vw;
}

.nav-center a {
    color: var(--text2);

}



.nav-right {
    font-size: 1.2vw;
    text-transform: uppercase;
    font-weight: 600;
    background-color: var(--btn);
    padding: 1vw 2.5vw;
    border-radius: 2vw;
margin-left: 15vw;
}

.nav-right a {
    font-family: poppins;
    color: var(--background);
}

.nav-right:hover {
    background-color: var(--btnhover);
}


.nav-right2 {
    font-size: 1.2vw;
    text-transform: uppercase;
    font-weight: 600;
    background-color: var(--citybtn);
    padding: 1vw 2.5vw;
    border-radius: 2vw;
margin-left: 0vw;
}

.nav-right2 a {
    font-family: poppins;   
    color: var(--background);
}

.nav-right2:hover {
    background-color:var(--citybtnHover);
}


.hamburger {
    margin-left: 93vw;
    margin-top: -7vh;
    display: none;
}

.hamburger i {
    font-size: 2.2vw;
    cursor: pointer;
}

.page1-content {
    position: relative;
    margin-top: 0vh;
    padding-top: 10vh;
    padding-bottom: 10vh;
    

}

.page1-content a {
    font-size: 1.2vw;
    text-transform: uppercase;
    font-weight: 600;
    background-color: var(--btn);
    padding: 1vw 2.5vw;
    border-radius: 0.2rem;
    font-family: poppins;
    color: var(--background);
    text-decoration: none;
    margin-left: 27vw;
    
}

.page1-content a:hover {
    background-color: var(--btnhover);
}

.page1-content a:nth-child(2) {
    background-color: var(--background2);
    border: 1px solid #676060;
    color: var(--background);
    font-family: poppins;
    font-weight: bolder;
margin-left: 3vw;
}

.page1-content a:nth-child(2):hover {
    background-color: var(--text);
    transition: all linear 0.4s;
    color: var(--background);
}

/* navbar for mobile */

.navbar-mobile {
    background-color: var(--background2);
    position: absolute;
    z-index: 9;
    margin-top: -85.5vh;
    height: 100vh;
    width: 100%;

    display: none;
}

.navbar-mobile i {
    font-size: 3vw;
    color: var(--background);
    margin-left: 75vw;

}

.close-icon {
    margin-top: 5vh;
    margin-left: 6vw;
    cursor: pointer;


}

.navbar-mobile a {
    text-decoration: none;
    color: #FFFFFF;
    text-transform: capitalize;
    font-size: 3vw;
    font-family: poppins;
    display: flex;
    justify-content: center;
    margin-top: 4vh;
    margin-bottom: 1vw;

}


#page1 h1{
    text-align: center;
    margin-top: -30vh;
    font-size: 4vw;
    font-family:poppins;
    font-weight: 500;
    margin-bottom: 3vh;
}

.brand-links{
    margin-top: 7vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.brand-links a{
    text-decoration: none;
    font-size: 1.8vw;
    color: var(--text);
    font-family: poppins;
    
    
}

/* brand cards start  */

.brand-cards{
    display: flex;
    flex-wrap: wrap;
    gap: 2vw;
    margin-left: 8vw;
    margin-top: 3vh;
}

.brand-cards a{
    text-decoration: none;
}

.card{
    height: 20vh;
    width: 10vw;
    background-color: var(--background);
    border-radius: 1vw;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    cursor: pointer;
}

.card:hover{
    box-shadow: rgba(249, 0, 0, 0.24) 0px 3px 8px;
}

.card img{
    position: absolute;
    height: 3.5%;
    width: 5.5%;
    margin-top: 4vh;
    margin-left: 2.4vw;
}


.card p{
    font-family: pro;
    font-size: 1.3vw;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    text-align: center;
    position: relative;
    top: 14vh;
}

#card34>p{
    font-size: 1vw;
}



/* brand cards end */



/* end page1 */



/* end page1 */
/* responsive part */ 



 
@media (max-width:440px){

   
    #page1{
        width: 100%;
     }
 
     .nav-left{
         margin-left: -20vw;
     }
 
     .nav-left img{
         width: 45vw;
         
     }
 
     
 
     .nav-center{
         display: none;
         
     }
 
     
     .nav-right{
         display: none;
     }
 
     
 .nav-right2 {
     font-size: 2.2vw;
     text-transform: uppercase;
     font-weight: 600;
     background-color: var(--citybtn);
     padding: 1.3vh 2.7vw;
 margin-right: 18vw;
 display: none;
 }
 
 .nav-right2 a {
     font-family: poppins;
     color: var(--background);
     text-wrap: nowrap;
 }
 
 .nav-right2:hover {
     background-color:var(--citybtnHover);
 }
 
     
     .hamburger i{
         font-size: 10vw;
     margin-left: -8vw;
     }
     
     .hamburger{
         margin-top: -22vh;
         display: block;
 
     }
     
     .nav-left a{
         font-size: 5vw;
         margin-left: -10vw;
     }
 
  
     .navbar-mobile i{
         font-size: 11vw;
         margin-left: 5vw;
     }
 
 .navbar-mobile a:hover{
     background-color: orange;    
 }
 
     .close-icon{
         bottom: 7vh;
         margin-left: 80vw;
         position: relative;
         z-index: 3;
     }
     
     .navbar-mobile{
         height: 100vh;
         padding-top: 8vh;
         bottom: 0vh;
         position: fixed;
     }
     
     .navbar-mobile a{
         font-size: 8vw;
         position: relative;
         bottom: 10vh;
     }
 
 
     .page1-btns{
         margin-top: 26vh;
         
     
     }
     .page1-content a{
         font-size: 3.5vw;
         text-transform: uppercase;
         font-weight: 600;
         background-color: var(--btn);
         padding: 2vw 4vw;
         border-radius: 0.2rem;
         font-family: poppins;
         color: var(--background);
         text-decoration: none;
         margin-left: 10vw;
         border: 1px solid #ffffff8d;
     }
     
     
     .page1-content a:nth-child(2) {
         background-color: var(--background2);
         border: 1px solid #676060;
         color: var(--background);
         font-family: poppins;
         font-weight: bolder;
         margin-left: 3vw;
         border: 1px solid #ffffff8d;
     }
     
     
     
     /* end media for page1 */
     

    #page1 h1 {
        font-size: 6vw;
        margin-top: -10vh;
        margin-bottom: 5vh;
    }

    
.brand-cards{
    display: flex;
    flex-wrap: wrap;
    gap: 2vw;
    margin-left: 5vw;
    margin-top: 3vh;
}


.card{
    height: 12vh;
    width: 21vw;
    background-color: var(--background);
    border-radius: 1vw;
    
}


.card img{
    position: absolute;
    height: 2%;
    width: 14%;
    margin-top: 3vh;
    margin-left: 3.5vw;
}

.card p{
    font-size: 3vw;
    top: 9vh;
}


}


@media (min-width:1300px){
    
    .navbar{
        padding: 0vw 1vw;
    }

    .nav-left img{
        width: 20vw;
    }

    .nav-left a {
        font-size: 3vw;
        margin-left: 1vw;
    }

    .nav-center{
        margin-left: 12vw;
    }

    .nav-center a{
        font-size: 1.7vw;
    }

    #page1 h1 {
        font-size: 5vw;
    }

    .brand-cards {
        margin-left: 4.3vw;
        gap: 2.7vw;
    }

    .card{
        height: 20vh;
        width: 13vw;
        border-radius: 1vw;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 5px 12px;
    }

    .card img{
        position: absolute;
        height: 3%;
        width: 8%;
        margin-top: 4vh;
        margin-left: 2vw;
    }

    .card p{
        font-size: 1.8vw;
        top: 15vh;
    }
}