*{
    padding: 0;
    margin: 0;
    font-family: 'Ubuntu', sans-serif; 
    box-sizing: border-box;  
    letter-spacing: normal;
     
} 

  
/* ......NAV-BAR......... */


nav{
    display: flex;
    padding: 0.5% 8%; 
    justify-content: space-between;
    align-items: center;
    min-height: 13vh;
    font-family: 'Trebuchet MS', sans-serif;
    position: fixed;
    z-index: 1040;
    width: 100%;
    background-color: white;
    animation: nav-load 400ms ease-in;
    padding-top: 20px;

}

.logo img{
    height: 50px;
    transition: 0.5s ease;
    cursor: pointer;
}
.logo img:hover{
    scale: 102%;
}

.nav-links{
    display: flex;
    width: 40%;
    justify-content: space-between;
}

.nav-links li{
    list-style: none;
}

.nav-links a{
    color: rgb(68, 68, 68);
    text-decoration: none;
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.5s ease; 
}

.nav-links a:hover{

    color:rgb(2, 149, 212);

}

.burger{
    display: none;
    cursor: pointer;
}


.burger div{
    width: 25px;
    height: 3px;
    background-color:black;
    margin: 5px;
}

@media screen and (max-width:1024px){
    .nav-links{
        width: 60%;
    }
}

@media screen and (max-width:768px){
    body{
        overflow-x: hidden;
    }
    .nav-links{
        padding: 40px 0px;
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: rgb(12, 66, 165);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }

    .nav-links li{
        opacity: 0;

    }

    .nav-links li a{
        color: white;
    }
    
    .burger{
        display: block;
    }
    .nav-active{
        transform: translateX(0%);
    }
    .logo img{
        height: 35px;
    }
}

@keyframes navLinkFade{
    from{
        opacity: 0;
        transform: translateX(50px);
    }
    to{
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes nav-load {
    0%{
        transform: translateY(-100%);
    }
    100%{
        transform: translateY(0);
    }
}


/* HOMEPAGE------------ */

 
.home {
    padding: 8%;
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient( rgba(0,0,0,0.6), rgba(0,0,0.06)),url(images/BACKGROUND1.jpg);
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;

}

.text-box { 
    color: white; 
    text-align: center; 
    margin: auto;
    padding-top: 8%;
}
.text-box h1{
    font-size: 55px; 
    line-height: 70px;
}
.text-box p{
    padding: 15px 0 40px 0;
    font-size: 15px;
    color: white;
    line-height: 18px;
    letter-spacing: 0.5px;
    font-weight: 300;
    width: 60%; 
    margin: auto;
    line-height: 23px;
}
.hero-btn{ 
    text-decoration: none;
    color: white;
    border-radius: 30px;
    padding: 12px 34px;
    font-size: 15px;
    background-image: linear-gradient(to right, rgb(0, 47, 112), rgb(2, 149, 212) ); 
    cursor: pointer;
    transition: 0.5s ease;

}
.hero-btn:hover{
    background-image: linear-gradient(to left, rgb(0, 47, 112), rgb(2, 149, 212) );
    
}

@media (max-width: 768px){
    .text-box h1{
        font-size: 32px;
        line-height: 40px;
    }
    .text-box p{ 
        width: 100%;
        line-height: 20px;
    }
    .text-box br{
        display: none;
    }
}

/* ==================HOME PRODUCTS====================== */

.home-products{
    padding: 2% 8% 8% 8%;
}

.explore{
    padding-top: 5%;
}
.explore a{
    text-decoration: none;
    color: black;
    display: flex;
    align-items: center;
}
.explore a img{
    width: 25px;
    margin-left: 20px;
    animation: move 2s infinite;
}

@keyframes move{
    0%{
        transform: translate(0);
    }
    50%{
        transform: translate(15px);
    }
    100%{
        transform: translate(0);
    }
}
 



/* --------PRODUCTS--------- */

.products{
    min-height: 100vh;
    padding: 8%; 
    
}

.products .products-text h1{
    width: 70%;
    font-size: 30px; 
    text-align: center;
    margin: auto;
    padding-top: 5%;
    line-height: 35px;
    letter-spacing: normal;
}

.products .products-text p{
    margin-bottom: 30px;
    text-align: center;
    margin: auto;
    width: 70%;
    padding: 2% 0 3% 0;
    line-height: 20px;
    font-size: 15px;
    color: rgb(104, 104, 104);
    font-weight: 300;
}
 

.products .howitworks{
    padding-top: 3%;
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;  
}

.products .howitworks .infor{
    width: 330px;    
    padding: 3%;
    border-radius: 15px;
    border: 1px solid rgb(233, 233, 233);
    background-color: rgb(248, 248, 248); 
} 

.products .howitworks .infor img{
    width: 60px;
    margin-bottom: 20px; 
}

.products .howitworks .infor .write h3{
    margin-bottom: 20px;
    font-weight: 500;
    margin-bottom: 30px;
    color: rgb(2, 149, 212);
}
.products .howitworks .infor .write p{
    font-size: 13px;
    line-height: 21px;
}

@media (max-width: 768px){
    .products{
        padding-top: 30%; 
    }

    .products .products-text h1{
        width: 100%;
        text-align: left;
        font-size: 20px;
        line-height: 23px;
    }
    .products .products-text p{
        width: 100%;
        text-align: left;  
        margin-top: 20px;
    }
    .products .howitworks .infor{
         padding: 8% 5%;
         width: 100%;
         margin: 18px 0;
    }
    .products .product-page { 
        justify-content: center;   
    }
    .home-products .product-page { 
        justify-content: center;    
    }
    .product-page .items{ 
        width: 100%; 
    }
    .home-products .product-page .items{ 
        width: 100%; 
    }
    .home-products  .product-page .items img{
        width: 100%;
        transition: 0.5s ease;
    }
    .product-page .items img{
        width: 100%;
        transition: 0.5s ease;
    }
    .product-page .items .text{ 
        height: unset;
    }
    .home-products .product-page .items .text{ 
        height: unset;
    }

     
}


.product-page {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 5%;
}
.product-page .items{
    overflow: hidden;
    width: 270px;
    margin: 30px 0;
    border: 1px solid rgb(228, 228, 228);
    transition: 0.5s ease;
}
.product-page .items:hover{ 
    border: 1px solid rgb(2, 149, 212);
}
.product-page .items img{
    width: 275px;
    transition: 0.5s ease;
}
.product-page .items img:hover{
    scale: 103%;
}
.product-page .items .text{
    padding: 5%;
    height: 260px;
}
.product-page .items .text h5{
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 22px;
}
.product-page .items .text p{
    font-size: 13px;
    margin-bottom: 30px;
    line-height: 20px;
}
.product-page .items .text h4{
    font-size: 20px;
    font-weight: bolder; 
    color: rgb(2, 149, 212); 
}
.product-page .items .text h4 span{
    font-size: 15px;
    font-weight: 300; 
    color: black; 
}
.product-page .items a{
    background-color: rgb(2, 149, 212);
    text-align: center;
    display:block; 
    width: 100%;  
    padding: 14px 0;
    text-decoration: none;
    color: white; 
    transition: 0.5s ease;
}
.product-page .items a:hover{
    background-color: rgb(12, 66, 165);
}
 



.delivery{
    min-height: 50vh;
    width: 100%;
    padding: 8%;
    align-items: center;
    justify-content: space-around;
    display: flex;
    background-image: linear-gradient(to right, rgb(0, 47, 112), rgb(2, 149, 212) );
    flex-wrap: wrap;
}
.delivery img{
    width: 100px;
    margin: auto;
    display: block;
}

.delivery .content{
    transition: 0.5s ease;
}
.delivery .content:hover{
    transform: translateX(10%);
}

.delivery .content h6{
    text-align: center;
    margin-top: 30px;
    font-size: 20px;
    color: white;
}

@media(max-width: 768px){
    .delivery{
        flex-direction: column;

    }
    .delivery .content{
        margin: 40px 0;
    }
}


/* --------------HOME2------------ */

.home2{
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 8%;
    justify-content: space-between; 
    background-color: rgb(245, 245, 245);
} 

.home2 .value{
    width: 600px;
} 

.home2 .value h3{
    font-size: 30px;
    font-weight: bolder;
    color: black;
    width: 400px;
}
.home2 .value p{
    margin-top: 30px;
    margin-bottom: 70px;
    width: 60%;
    color: rgb(65, 65, 65);
    font-weight: 300;
    line-height: 20px;
}
.home2 .value a{
    background-image: linear-gradient(to right, rgb(0, 47, 112), rgb(2, 149, 212) );
    text-decoration: none;
    color: white;
    border-radius: 30px;
    padding: 12px 34px;
    font-size: 15px;
    transition: 0.5s ease;
}
.home2 .value a:hover{
        background-image: linear-gradient(to left, rgb(0, 47, 112), rgb(2, 149, 212) );
}
.home2 img{ 
    width: 400px;
} 

@media(max-width: 768px){
    .home2{ 
        padding: 20% 8%;
    } 
    .home2 .value p{
        width: 100%;
    }
    .home2 .value h3{
        font-size: 32px;
        width: 100%;
    } 
    .home2 img{ 
        width: 100%;
        margin-top: 40px;
    }
}


/* .............SERVICES........... */

.services{
    min-height: 90vh;
    width: 100%;
    padding: 8%; 
}

.services .content{
    text-align: center;
}
.services .content h1{ 
    margin-bottom: 40px;
    font-size: 30px;
    color: black; 
}

.services .content p{ 
    width: 50%;
    color: rgb(65, 65, 65);
    font-weight: 300;
    line-height: 25px;
    margin: auto; 
}
 
@media (max-width:768px){
     
    .services .content p{ 
        width: 100%; 
    }
    .services{
        padding: 20% 8%;
    }
    .services .family .graphics{
        width: 100%; 
        padding: 5% !important; 
    }
}
 

.services .family{
    display: flex;
    flex-wrap: wrap;
    margin-top: 8%;
    justify-content: space-around;
}

.services .family .graphics{
    padding: 3%;
    width: 340px;
    min-height: 370px;
    margin: 30px 0;
    border: 1px solid rgb(233, 233, 233);  
    transition: 0.5s ease;
    background-color: rgb(250, 250, 250);
} 
.services .family .graphics:hover{
    border: 1px solid rgb(2, 149, 212);
} 

.services .family .graphics img{
    width: 70px;
    margin-bottom: 30px;

}

.services .family .graphics h3{
    color: rgb(2, 149, 212);
}

.services .family .graphics p{
    margin: 20px 0 50px 0;
    color: rgb(65, 65, 65);
    font-weight: 300;
    line-height: 25px;
}

.services .family .graphics a{
    text-decoration: none;
    color: white;
    background-color: rgb(2, 149, 212);
    padding: 12px 20px;
    border-radius: 8px;
    transition: 0.5s ease;
    
}

.services .family .graphics a:hover{
    background-color: rgb(0, 47, 112);
}


/* ---------BOTTOM PAGE-------- */

.bottompage{
    padding: 8%;
    min-height: 40vh;
    background-image: linear-gradient(to right, rgb(0, 47, 112), rgb(2, 149, 212) );
    text-align: center;
    color: white;
}

.bottompage h1{
    font-size: 50px;
    font-weight: 900;
}

.bottompage p{
    margin-top: 20px;
    margin-bottom: 50px;
}
.bottompage a{
    text-decoration: none;
    color: white;
    letter-spacing: 2px;
    border: 2px solid white;
    padding: 9px 16px;
    transition: 0.5s ease;
}
.bottompage a:hover{
    background: white;
    color: black;
}

@media (max-width: 768px){
    .bottompage h1 br{
        display: none;
    }

    .bottompage h1{
        font-size: 30px;
    }
}

footer{
    min-height: 20vh;
    background-color: rgb(15, 15, 17);
    align-items: center;
    justify-content: space-around;
    padding: 3% 8%;
    display: flex;
    color: white;
    width: 100%;
    flex-wrap: wrap;
}
footer a{
    text-decoration: none;
    align-items: center;
    display: flex;
    color: white;
    letter-spacing: 1px;

}
footer a img{
    width: 50px;
    margin-right: 20px;
    align-items: center;
    border: 1px solid white;
    padding: 10px;
    border-radius: 30%;
    transition: 0.5s ease;

}
footer a img:hover{
    background-color: rgb(2, 149, 212);
    border: none;
    border: 1px solid rgb(2, 149, 212);
    padding: 10px;
}
.foot p{
    font-size: 16px;
    color: rgba(138, 138, 138, 0.7);
    letter-spacing: 1px;
}
.foot p span{
    font-weight: bolder;
    color: white;
}

@media (max-width: 768px){
    footer{
        justify-content: left;
    }
}

/* -------------ABOUT US PAGE------------ */

.about-us-page{
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4% 8% 0 8%;
    justify-content: space-around;

}

.about-us-page img{
    width: 45%;
}

.about-us-page h1{
    font-size: 30px;
    font-weight: lighter;
    margin-bottom: 50px;
    color: black;
    text-transform: uppercase;

}
.about-us-page h1 span{
    font-weight: 900;
    color: rgb(2, 149, 212);
}

.about-us-page p{
    letter-spacing: 0.2px;
    font-size: 15px;
    width: 70%;
    margin-bottom: 15px;



}

@media (max-width: 768px){
    .about-us-page{
        flex-direction: column;
    }
    .about-us-page h6{
        font-size: 15px;
    }
    .about-us-page h1{
        font-size: 20px;
        margin-top: 100px;

    }

    .about-us-page img{
        width: 100%;
        margin-top: 30px;
    }

    .about-us-page p{
        width: 100%;

    }

}

.difference{
    min-height: 90vh;
    width: 100%;
    background-color: rgb(233, 233, 233);
    padding: 8%;
    justify-content: space-around;
    overflow: hidden;
}

.difference .subject1{
    text-align: center;
}
.difference .subject1 h1{
    font-weight: lighter;
    font-size: 30px;
    margin-bottom: 10px;

}
.difference .subject1 h1 span{
    font-weight: 900;
    color: rgb(2, 149, 212);
}

.difference .subject2{
    margin-top: 150px;
    display: flex;
    position: relative;
    flex-wrap: wrap;
}
.difference .subject2 .diff{
    background-color: rgb(2, 149, 212);
    width: 40%;
    padding: 120px 50px;
    position: absolute;
    left: 100px;
    bottom: 30px;
    
}
.difference .subject2 .diff .diff-file{
    display: flex;
    margin-bottom: 70px;


}
.difference .subject2 .diff #diff-file{
    margin-bottom: 0px;
}
.difference .subject2 .diff img{
    width: 30px;
    height: 32px;
    margin-right: 40px;
    
}
.difference .subject2 .diff .diff-file .text h6{
    color: white;
    margin-bottom: 20px;
    font-size: 20px;
}
.difference .subject2 .diff .diff-file .text p{
    color: white;
}


.difference .subject2 .diff-file2 img{
    width: 600px;
    margin-left: 90%;

}

@media (max-width: 768px){
    .difference{
        padding-top: 20%;
    }
    .difference .subject2 .diff{
        flex-direction: column;
        position: static;
    }
    .difference .subject2 .diff .diff-file{
        flex-wrap: wrap;
    }
    .difference .subject2 .diff{
        position: static;
        width: 100%;
        padding: 40px 40px;
    }
    .difference .subject2 .diff img{
        margin-bottom: 30px;
    }
    .difference .subject2 .diff-file2 img{
        margin-left: 0;
        width: 400px;
    }
}
/* ----------OUR SERVICES PAGE---------- */

.ourservices{
    min-height: 50vh;
    background-image: linear-gradient( rgba(0,0,0,0.5), rgba(0,0,0.05)),url(images/about_us.jpg);
    padding: 8%;
    
}
.ourservices h1{
    color: white;
    margin-top: 30px;
    text-align: center;
    text-transform: uppercase;
    font-weight: lighter;
    margin-bottom: 20px;
    font-size: 40px;
}
.ourservices h1 span{
    font-weight: 900;
}

.ourservices p{
    color: white;
    text-align: center;
}

@media (max-width: 768px){
    .ourservices{
        padding-top: 20%;
    }

    .ourservices h1{
        font-size: 30px;
    }
}

.file{
    min-height: 90vh;
    width: 100%;
    padding: 8%;
    align-items: center;
    justify-content: space-between;
    display: flex;

}

.file h1{
    margin-bottom: 40px;
}

.file h1 span{
    color: rgb(2, 149, 212);
    font-weight: lighter;
}
.file p{
    width: 70%;

}
.file .pp{
    margin-bottom: 50px;
}

.file .img{
    width: 600px;
    transition: 0.5s ease;
}
.file .img:hover{
    transform: translateY(-15px);
}

.file .graphics .list{
    display: flex;
    margin: 20px 0;
}
.file .graphics .list img{
    width: 20px;
    margin-right: 20px;
}
#list {
    margin-bottom: 50px;
}
.file a{
    text-decoration: none;
    border: 1px solid rgb(2, 149, 212);
    padding: 12px 20px;
    color: rgb(2, 149, 212);
    transition: 0.5s ease;
    border-radius: 20px;
}
.file a:hover{
    background: rgb(2, 149, 212);
    color: white;
    border: none;
}


@media (max-width: 768px){
    .file{
        flex-direction: column;
    }
    .file .img{
        width: 300px;
        margin-top: 50px;
    }
    .file p{
        width: 90%;
    }

}
.branding{
    min-height: 90vh;
    width: 100%;
    padding: 8%;
    align-items: center;
    justify-content: space-between;
    display: flex;
    background-image: linear-gradient(to right, rgb(0, 47, 112), rgb(2, 149, 212) );

}

.branding .img{
    width: 500px;
    transition: 0.5s ease;
}
.branding .img:hover{
    transform: translateY(-15px);
}

.branding .brand{
    color: white;
    margin-left: 100px;

}

.branding .brand p{
    width: 70%;
}

.branding .brand h1{
    margin-bottom: 40px;
}


.branding .brand .list{
    display: flex;
    margin: 20px 0;
}
.branding .brand .list img{
    width: 20px;
    margin-right: 20px;
}
#list {
    margin-bottom: 50px;
}
.branding a{
    text-decoration: none;
    border-radius: 30px;
    border: 1px solid rgb(2, 149, 212);
    padding: 12px 20px;
    color: rgb(2, 149, 212);
    transition: 0.5s ease;
}
.branding a:hover{
    background: rgb(2, 149, 212);
    color: white;
    border: none;
}
@media (max-width: 768px){
    .branding{
        flex-direction: column;
    }
    .branding .img{
        width: 250px;
        margin: 50px 0;
    }
    .branding  .brand p{
        width: 100%;
    }
    .branding .brand{
        margin-left: 0;
    
    }
    .file .graphics .list .buletpoint{
        height: 20px;
    }

}










.whatsapp{
    width: 50px;
    position: fixed;
    right: 8%;
    bottom: 50px;
    transition: 0.5s ease;
}
.whatsapp:hover{
    transform: translateY(-15px);
}