*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --bg-color: #0295c3;
    --secondary-color: #f4f4f4;
    --third-color:#1a2529;
}

html, body{
    height: 100%;
    width: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

}

#page-one{
    height: 100%;
    width: 100%;
    background-color: var(--bg-color);
    display: flex;
    padding: 90px 90px;
}

#page-one-left{
    height: 100%;
    width: 40%;
    /* background-color: red; */
}

#page-one-left h4{
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2vw;
    margin-bottom: 5vw;
    border-left: 4px solid white;
    padding-left: 15px;
}

#page-one-left h1{
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 6vw;
    line-height: 6vw;
    margin-bottom: 3.5vw;
}

#page-one-left h2{
    color: white;
    font-size: 2.3vw;
    margin-bottom: 2.6vw;
}

#page-one-left button{
    height: 4vw;
    width: 15vw;
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    background-color: black;
    color: white;
    font-weight: 600;
    font-size: 1.8vw;
    transition: all 0.5s ease-in-out;
}

#page-one-left button:hover{
    background-color: #f4f4f4;
    color: #000;
    border: 3px solid #1a2529;
    font-weight: 600;
    cursor: pointer;
}


#page-one-right{
    height: 100%;
    width: 60%;
}

#page-one-right img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

#page-two{
    height: 100%;
    width: 100%;
    background-color: var(--secondary-color);
    /* background-color: rgb(22, 6, 6); */
    /* display: flex; */
    /* flex-direction: column; */
   

}

#page-two-left{
    height: 30%;
    width: 100%;
    /* background-color: red; */
    padding: 3vw 15vw;
}

#page-two-left h2{
    font-size: 3vw;
    text-align: center;
}

#page-two-right{
    height: 70%;
    width: 100%;
}

#page-two-right img{
    height: 100%;
    width: 100%;
    padding: 0vw 30vw;
}

#page-three{
    height: 100%;
    width: 100%;
    background-color: var(--third-color);
}


#page-three-up{
    height: 40%;
    width: 100%;
    /* background-color: red; */
    padding: 5vw 5vw;
}

#page-three-up h1{
    font-size: 4vw;
    font-weight: 700;
    color: #1db8cd;
}

#page-three-up p{
    font-size: 1.5vw;
    font-weight: 400;
    color: #fff;
}

#page-three-down{
    height: 60%;
    width: 100%;
    /* background-color: greenyellow; */
    display: flex;
    padding-left:5vw;
}


.business-box{
    width: 33.3%;
    height: 90%;
    background-color: #263237;
    padding-top: 20px;
    padding-left: 20px;
    margin-right: 20px;
    border-radius: 30px;
    transition: all 0.4s ease-in-out ;
}

.business-box:hover{
    background-color: #3a494f;
    border: 3px solid #00e1ff;
    cursor: pointer;
}

.business-box i{
    font-size: 6vw;
    line-height: 10vw;
    color: #1db8cd;
    
}

.business-box h2{
    font-size: 2vw;
    margin-top: 20px;
    text-transform: uppercase;
    color: #1db8cd;
}

.business-box p{
    font-size: 1.5vw;
    line-height: 30px;
    padding-top: 40px;
    color: #fff;
}

#page-four{
    height: 100%;
    width: 100%;
    background-color: #cdf3e5;
    display: flex;
    padding: 80px 50px;
}

#page-four-left{
    height: 100%;
    width: 50%;
    background-color: #fff;
    padding-left: 25px;
    padding-top: 60px;
    border-radius: 40px;
}

#page-four-left i{
    font-size: 7vw;
    color: #1db8cd;
}

#page-four-left h1{
    font-size: 4vw;
    color: #000;
    margin: 30px 0;
    line-height: 62px;
}

#page-four-left p{
    font-size: 1.5vw;
    color: #000;
    margin-top: 20px;
}

#page-four-right{
    height: 100%;
    width: 50%;
    /* background-color: green; */
    padding: 50px;
}

#page-four-right img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

#page-five{
    height: 100%;
    width: 100%;
    background-color: #fff;
}

#page-five-up{
    height: 30%;
    width: 100%;
    /* background-color: red; */
    padding: 3vw 0vw;
}

#page-five-up h1{
    font-size: 4vw;
    font-weight: 700;
    color: #1db8cd;
    text-align: center;
    margin-bottom: 12px;
}

#page-five-up p{
    font-size: 1.5vw;
    font-weight: 500;
    color: #000;
    text-align: center;
}

#page-five-down{
    height: 70%;
    width: 100%;
    /* background-color: yellow; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-box{
    width: 33.3%;
    height: 90%;
    background-color: #cacaca;
    border: 2px solid white;
    margin: 0px 30px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 22px;
    transition: all 0.2s ease-in-out ;
}

.client-box:hover{
    background-color: #f4f4f4;
    border: 2px solid #1db8cd;
    cursor: pointer;
}

.client-box img{
    height: 150px;
    width: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px ;
}


.client-box p{
    text-align: center;
    margin: 25px 0;
}

.client-box h3{
    color: #1db8cd;
    text-align: end;
    font-weight: 700;
    font-style: italic;
}

#page-six{
    height: 100%;
    width: 100%;
    background-color: var(--third-color);
    display: flex;
    /* align-items: center;
    justify-content: center; */
}

#page-six-left{
    height: 100%;
    width: 50%;
    
}

#page-six-left img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

#page-six-right{
    height: 100%;
    width: 50%;
    /* background-color: red; */
    padding: 80px 70px;
}

#page-six-right h1{
    font-size: 4vw;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6vw;
}

#page-six-right h3{
    font-size: 3vw;
    font-weight: 700;
    color: #0295c3;
    margin-top: 55px;
    
}


#page-six-right h4{
    font-size: 2vw;
    font-weight: 700;
    color: #fff;
    
}

#social-media{
    display: flex;
    color: #fff;;
}

#social-media i{    
    font-size: 3vw;
    margin-right: 20px;
}

#social-media i:hover{
    color: #0295c3 ;
    cursor: pointer;

}



