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


/* FIRST PAGE */

.header{
    background-image: url(IMAGES/contact.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: 10rem;
    align-items: center;
}
.first h1{
    font-size: 70px;
    font-weight: 700;
    color: white;
    letter-spacing: 1.5px;
}
.first p{
    font-size: 1.2em;
    color: white;
    font-weight: 400;
    letter-spacing: 1px;
}


/* SECOND PAGE */

.second{
    width: 70%;
    margin: auto;
    margin-top: 6rem;
    margin-bottom: 6rem;
}
.get{
    display: grid;
    grid-template-columns: auto auto;
}


.info{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
form span{
    color: red;
}
input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #525252;
    box-sizing: border-box;
    font-size: 16px;
    margin-top: 4px;
    margin-bottom: 16px;
    background: none;
}

  button {
    background-color: rgb(255, 179, 0);
    color: rgb(0, 0, 0);
    padding: 10px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color:rgb(255, 219, 102);
}




.second h3{
    font-size: 35px;
    letter-spacing: 1.8px;
}
.who{
    margin-left: 8px;
}
.address{
    display: flex;
    align-items: baseline;
}


.get p{
    font-size: 1.1em;
    color: gray;
    letter-spacing: 1px;
}
.get h5{
    font-size: 1.8em;
    letter-spacing: 1.5px;
}
.go{
    display: flex;
    align-items: center;
}
.go a{
    text-decoration: none;
    color: gray;
    margin-left: 8px;
    letter-spacing: 1.5px;
    font-size: 1em;
}
.go a:hover{
    color: black;
    font-size: 18px;
    font-weight: bold;
    border-bottom: 2px solid orangered;
    transition: 0.3s ease; 
}



/* THIRD PAGE */

.third{
    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;
}
.third h1{
    font-size: 70px;
    font-weight: 700;
    color: white;
    letter-spacing: 1.5px;
}
.third 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;
}
.third 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;
    }
    .sidebar a{
        font-size: 2em;
        font-weight: 600;
    }
    .image a{
        font-size: 2.5em;
        font-weight: 900;
    }
    .header hr{
        border: 0.2px solid gray;
    }

    /* FIRST PAGE */

    .first{
        width: 90%;
        margin: auto;
        display: grid;
        grid-template-columns: auto;
    }
    
    .address{
        display: inline;
    }
    .who{
        margin-top: -10px;
    }
    .get{
        display: flex;
        flex-direction: column;
        padding-bottom: 55px;
        gap: 50px;
    }

    /* SECOND PAGE */

    .second{
        width: 90%;
        margin: auto;
    }
    .third{
        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;
    }
    
}
