:root{
    --Text-color: rgb(11, 88, 230);
    --Text-main: rgb(11, 15, 230);
    --paragraph-colol: rgb(100, 100, 100);
    --nav-load: 0.4s;
}

*{
    margin: 0;
    padding: 0;
}

html{
    scroll-behavior: smooth;
}

body{
  font-family:'Poppins' sans-serif;
  box-sizing: border-box;
  overflow-x: hidden;
  background: white;
  
}

h1, h2{
    font-size: 4rem;
    font-weight: 700;
    color: var(--Text-color);
}

.container{
    margin: 0 8vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: container-load var(--nav-load) ease-in ;
}

.burner{
    margin: 0 0vw;
}

li{
    list-style: none;
}

a{
    text-decoration: none;
    cursor: pointer;
}

p{
    font-size: 18px;
}

img{
    display: block;
}

/*==============================
=========NAVIGATION=============
=============================== */

header{
    border-bottom: .5px solid var(--paragraph-colol);
    z-index: 10;
}

nav{
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 1rem 8vw;
    
}

nav img{
    width: 80px;
}

nav .nav-menu ul{
    display: flex;
    align-items: center;
    gap: 2rem;
    
}

nav .nav-menu ul li a{
    color: var(--paragraph-colol);
    font-size: 18px;
}

nav .nav-menu ul li a:hover{
    color: var(--Text-color);
}

nav .hamburger-button{
    position: relative;
    display: block;
    width: 38px;
    height: 38x;
    background: transparent;
    appearance: none;
    outline: none;
    border: none;
    cursor: pointer;
    display: flex;
    display: none;
}

.hamburger_btn{
    position: relative;
    width: 25px;
    height: 20px;
    display: flex;
    align-items: center;
    margin: auto;
    transform: rotate(0);
    transition: 1s;
    display: none;
    
}
.hamburger_btn span{
    position: absolute;
    display: block;
    width: 100%;
    height: 4px;
    background: var(--paragraph-colol);
    border-radius: 13%;
    margin: auto;
    
}

.hamburger-button.active .hamburger_btn{
    transform: rotate(315deg);
}

.hamburger-button.active span:nth-child(1) {
    
    width: 100%;
    transform: translateY(15px);
}
.hamburger-button.active span:nth-child(3) {
    bottom: 1px;
    width: 100%;
    transform: rotate(90deg);
}

.hamburger_btn span:nth-child(1) {
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(0);
}
.hamburger_btn span:nth-child(2) {
    
    width: 100%;
    transform: scaleX(1);
    opacity: 1;
}
.hamburger-button.active span:nth-child(2) {
    
    transform: scaleX(0);
    opacity: 0;
}
.hamburger_btn span:nth-child(3) {
    bottom: 0;
    left: 0;
    width: 100%;
   
}

.home-container{
    position: fixed;
    width: 100vw;
    height: 100%;
    background: rgba(43, 43, 43, 0.966);
    bottom: 100%;
    transition: 500ms ease-in-out;
    z-index: 10;
}

.home-container.active{
    bottom: 0;
}



.home-container ul{
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    
}

.home-container ul .first{
    margin-top: -10rem;

}




.home-container ul:nth-child(){
    animation: nav load (var(--nav-load));
}



.home-container ul li a {
    color: rgb(255, 255, 255);
    font-size: 25px;
    font-weight: 700;
}



.home-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
   
}

.home-container .home_btns a{
    background: rgb(4, 100, 255);
    padding: 1rem 3rem;
   
}


/*==============================
=============Home===============
=============================== */

.hero{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: linear-gradient(rgba(91, 147, 250, 0.116), rgba(0, 0, 0, 0.192)), url(images/gigabess001010.jpg) ;
    display: block;
    background-position: center;
    background-size: cover; 
    width: 100%;
    height: 100%;
    margin-top: 0rem;
}




.hero h1{
   
    padding: 10rem 0 10rem 0;
}
.burner .hero h1{
   
    padding: 20rem 0 20rem 0;
    
}

/* ---------home welcome---------- */

h2{
    font-size: 2rem;
    margin-top: 3rem;

}

.content{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 4rem ;
   

}

.content p{
    color: var(--paragraph-colol);
    text-align: center;
    margin-bottom: 2rem;
    line-height: 1.4rem;
}

.content .small{
    font-size: 14px;
    font-style: italic;
}

.founder-borders{
    border-top: 1px solid var(--paragraph-colol);
    border-bottom: 1px solid var(--paragraph-colol);
    
    
}
.founder-border{
    
    border-bottom: 1px solid var(--paragraph-colol);
    
    
}





/*==============================
=============gallery===============
=============================== */

.gallery{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 5rem 0;
}

.gallery-rows{
    margin-bottom: 5rem;
}

.gallery .gallery-rows ul{
    display: flex;
    align-items: center;
    gap: 3rem;
    width: 100%;
}

.gallery__card{
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--Text-color);
    height: 250PX;
    border-radius: 5px 5px 5px 5px;
    padding: 0.5rem;
}

.bottom{
    height: 270PX;
}

.gallery__card img{
    border-radius: 5px 5px 0 0;
    margin-bottom: 1.5rem;
}

.gallery__card a{
    color: white;
    border: 2px solid white;
    padding: 0.5rem 2rem;
    border-radius: 5px;
    cursor: pointer;
}


.gallery__card a:hover{
    color: rgb(172, 170, 170);
    border: 2px solid rgb(172, 170, 170);
}

/* .galler__border{
    border-right: 5px solid var(--paragraph-colol);
    
} */


/*==============================
=============Footer===============
=============================== */

footer .footer-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: space-between;
    width: 100%;
    padding: 2rem 2rem;
    border-top: 1px solid var(--paragraph-colol);
    color: var(--paragraph-colol);
}

.footer-logo{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: -7rem;
}

.footer-logo h3{
    margin-top: 1rem;
    color: var(--Text-color);
    visibility: hidden;
}

.footer-logo .content {
    margin-top: -5rem;
    visibility: hidden;
}

.footer-menu ul{
    display: flex;
    flex-direction: column;
    align-items: end;
}
.footer-menu ul li a{
    color: var(--paragraph-colol);
    transition: 300ms ease-in;
}

.footer-menu ul li a:hover{
    color: var(--Text-color);
}

footer p{
    margin-bottom: 2rem;
    color: var(--paragraph-colol);
}

footer p span{
    color: transparent;
}

/* ======key frames======== */
@keyframes container-load {
    0% {
       
        transform: translateY(-5%);
    }
    

    100% {
        transform: translateY(0%);
    }
}

@media screen  and  (max-width: 1000px){

    .container{
        margin: 0rem 1.5rem;
        overflow-x: hidden;
    }

    h1{
        color: rgb(255, 255, 255);
        font-size: 3rem;
    }

    .hero{
        background-image: linear-gradient(rgba(91, 147, 250, 0.589), rgba(0, 0, 0, 0.425)), url(/images/gigabess001010.jpg) ;  
    }

    .burner .hero h1{
   
        padding: 10rem 0 10rem 0;
    }
    

    nav{
        position: fixed;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0;
        padding: 0.3rem 1rem;
        width: 96.5%;
        z-index: 100;
        background: white;
        border-bottom: 0.3px solid var(--paragraph-colol);
    }

    nav .nav-menu ul{
        display: flex;
        align-items: center;
        gap: 2rem;
        display: none;
        
    }

    nav .hamburger-button{
        display: block;
    }

    .hamburger_btn{
        
        position: relative;
        width: 25px;
        height: 20px;
        display: flex;
        align-items: center;
        margin: auto;
        transform: rotate(0);
        transition: 1s;
       
    }

    .content{
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 5rem 1rem  0 0;
       
    
    }

    footer .footer-wrapper{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        justify-content: space-between;
        width: 100%;
        padding: 2rem 10rem;
        border-top: 1px solid var(--paragraph-colol);
        color: var(--paragraph-colol);
    }

    footer .content{
        margin-bottom: 2rem;
    }

    .footer-contact p{
        text-align: center;
    }

    

    .footer-logo img{
        margin-bottom: 2rem;
    }

    .footer-menu ul{
        align-items: center;
    }

    footer p span{
        color: transparent;
        display: none;
    }

    .footer-menu{
        margin-top: 2rem;
     }

}



@media screen  and  (max-width: 790px){
    .gallery .gallery-rows ul{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        flex-direction: column;
        align-items: center;
        gap: 3rem;
        width: 100%;
    }

    h1{
        color: rgb(255, 255, 255);
        font-size: 3rem;
    }

    .hero{
        background-image: linear-gradient(rgba(91, 147, 250, 0.589), rgba(0, 0, 0, 0.425)), url(/images/gigabess001010.jpg) ;  
    }
}

@media screen  and  (max-width: 535px){

    h1{
        color: rgb(255, 255, 255);
    }

    h1, h2{
        font-size: 2rem;
        font-weight: 700;
        
    }

    .container{
        margin: 0rem 1rem;
        overflow-x: hidden;
    }

    

    nav{
        position: fixed;
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0;
        padding: 0.3rem 1rem;
        width: 92%;
        z-index: 100;
        background: white;
        border-bottom: 0.3px solid var(--paragraph-colol);
    }

    nav .nav-menu ul{
        display: flex;
        align-items: center;
        gap: 2rem;
        display: none;
        
    }

    nav .hamburger-button{
        display: block;
    }
     .hamburger_btn{
        
        position: relative;
        width: 25px;
        height: 20px;
        display: flex;
        align-items: center;
        margin: auto;
        transform: rotate(0);
        transition: 1s;
       
    }

    /* =======home========== */

    .hero{
        background-image: linear-gradient(rgba(91, 147, 250, 0.589), rgba(0, 0, 0, 0.425)), url(/images/gigabess001010.jpg) ;  
    }

    .content{
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1rem 1rem  0 0;
       
    
    }

    .gallery .gallery-rows ul{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3rem;
        width: 100%;
    }

    .gallery__card{
        width: 300px;
    }

    .gallery__card img{
        width: 100%;
    }

    /* ======footer=========== */

    footer .footer-wrapper{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        justify-content: space-between;
        width: 100%;
        padding: 2rem 10rem;
        border-top: 1px solid var(--paragraph-colol);
        color: var(--paragraph-colol);
    }

    footer .content{
        margin-bottom: 2rem;
    }

    .footer-contact p{
        text-align: center;
        display: none;
    }

    .footer-logo img{
        margin-bottom: 2rem;
    }

    

    .footer-menu ul{
        align-items: center;
    }

    footer p span{
        color: transparent;
        display: none;
    }

    .footer-menu{
        margin-top: 2rem;
     }

}
