body{
    margin: 0;
    padding: 0;
    font-family: "Outfit", sans-serif
}

/* FIRST PAGE */

.header{
    background-image: url(IMAGES/background\ 9.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 0.5rem;
}

.image{
    display: flex;
    align-items: center;
}
.image a{
    text-decoration: none;
    font-size: 2em;
    font-weight: bolder;
    color: white;
    margin-left: 10px;
    letter-spacing: 1.5px;
}
.head{
    width: 95%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.one{
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 3rem;
}
.two{
    display: flex;
    gap: 5rem;
    align-items: center;
}
.sidebar li{
    display: inline;
    margin-right: 25px;
}
.sidebar a{
    text-decoration: none;
    color: white;
    font-weight: 200;
    letter-spacing: 1.5px;
}
.sidebar a:hover{
    color: white;
    font-size: 18px;
    font-weight: bold;
    border-bottom: 2px solid orangered;
    transition: 0.3s ease;
    border-radius: 10px;
    padding-left: 5px;
    padding-right: 5px; 
}
.two input{
    padding: 12px 16px;
    font-size: 16px;
    color: #070707;
    background-color: white;
    border: none;
    border-radius: 10px;
    background-origin: border-box;

}


.svg{
    letter-spacing: 15px;
}
.header hr{
    border: 0.3px solid white;
}

.first{
    width: 70%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding-top: 15rem;
    padding-bottom: 15rem;
    align-items: center;
}
.first h1{
    font-size: 70px;
    font-weight: 700;
    color: white;
    letter-spacing: 1.5px;
}
.first p{
    font-size: 1em;
    color: white;
    font-weight: 400;
    letter-spacing: 1px;
}

/* SECOND PAGE */

.second{
    width: 70%;
    margin: auto;
    padding-top: 3rem;
}
.story{
    display: flex;
    justify-content: space-between;
}
.second h5{
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
}
.second h3{
    font-size: 30px;
    letter-spacing: 1.5px;
}
.second p{
    font-size: 14px;
    color: gray;
    line-height: 1.5rem;
}

/* THIRD PAGE */

.third iframe{
   width: 70%;
   margin: auto;
   display: block;
   margin-top: 4rem;
   margin-bottom: 6rem;
}

/* FORTH PAGE */

.forth{
    text-align: center;
}
.ben span{
    font-size: 60px;
    color: rgb(255, 187, 0);
}
.forth p{
    font-size: 20px;
    font-weight: 500;
    color: gray;
    letter-spacing: 1px;
}
.profile #img{
    width: 40px;
    border-radius: 100%;
    height: auto;
    margin-top: -20px;
}
.profile{
    justify-content: center;
    display: flex;
    align-items: center;
}
.profile h6{
    margin-left: 10px;
    font-size: 15px;
    letter-spacing: 1px;
    color: black;
}
.profile span{
    font-size: 12px;
    color: gray;
}

/* FIFTH PAGE */

.fifth{
    padding-top: 8rem;
    padding-bottom: 8rem;
    background-image: url(IMAGES/background4.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}
.fifth h1{
    font-size: 70px;
    font-weight: 700;
    color: white;
    letter-spacing: 1.5px;
}
.fifth a{
    text-decoration: none;
    padding: 10px 50px 10px 50px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    background-color: rgb(255, 179, 0);
    border-radius: 5px;
    color: black;
    transition: 0.3s ease;
}
.fifth a:hover{
    background-color: rgb(255, 219, 102);
    transition: 0.3s ease;
}
/* LAST PAGE */


.foot{
    display: flex;
    align-items: center;
}
.foot #img{
    width: 25px;
}
.foot h2{
    margin-left: 10px;
    letter-spacing: 1.5px;
}
.eight .don{
    letter-spacing: 1rem;
}
.eight{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.last{
    width: 70%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.last h3{
    font-weight: 600;
    letter-spacing: 1.5px;
}
.last p{
    color: gray;
    letter-spacing: 1.5px;
}
.footer hr{
    border: 0.3px thin black;
}
.copy{
    text-align: center;
    color: gray;
    font-size: 15px;
    font-weight: 500;
    padding-top: 2rem;
    padding-bottom: 2rem;
    letter-spacing: 1px;
}


/* RESPONSIVENESS */
@media (max-width: 992px){
    .sidebar{
        display: none;
    }
    .two{
        display: none;
    }
    .three{
        display: none;
    }
    .svg{
        display: none;
    }
    .header hr{
        border: 0.2px solid white;
    }
    .sidebar a{
        font-size: 2em;
        font-weight: 600;
    }
    .image a{
        font-size: 2.5em;
        font-weight: 900;
    }
    
    /* FIRTS PAGE */

    .first{
        width: 90%;
        margin: auto;
        display: grid;
        grid-template-columns: auto;
    }
    

    /* SECOND PAGE */

    .second{
        width: 90%;
        margin: auto;
    }
    .story{
        display: inline;
    }

    /* THIRD PAGE */

    .forth{
        width: 90%;
        margin: auto;
        text-align: center;
    }
    
   .fifth{
        padding-top: 5rem;
    }
    
    /* LAST PAGE */

    .last{
        width: 90%;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* HAMBURGER MENU */
    .hamburger{
        display: block;

    }

    .header .sidebar{
        display: none;
        flex-direction: column;
        position: absolute;
        top: 85px;
        right: 0;
        left: 0;
        height: auto;
        width: 100%;
        background-color: rgb(55, 54, 54);
        text-align: justify;
        overflow: hidden;
        box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    }
    .sidebar li{
        display: flex;
        line-height: 6rem;
    }
    
    .header.active .hamburger:nth-child(1) {
        transform: rotate(360deg) translateY(5px);
    }
    
    .header.active .hamburger:nth-child(3) {
        transform: rotate(-360deg) translateY(-5px);
    }

}



@media(min-width: 993px) and (max-width: 4000px) {
    .hamburger{
        display: none;
    }
    
}
