*{
    padding: 0;
    margin: 0;
}

.i{
color: transparent;
}
@font-face {
    font-family: poppins;
    src: url(/Fonts/poppins/Poppins-Light.ttf);
}

@font-face {
    font-family: alata;
    src: url(/Fonts/alata/Alata-Regular.ttf);
}

@font-face {
    font-family: poppinsdark;
    src: url(/Fonts/poppins/Poppins-Black.ttf);
}

/*NAVBAR */

.navbar{
    width: 100%;
    height: 6rem;
    background-color: #fff;
    display: flex;
    position: fixed;
    box-shadow: 0 1rem 5rem #a9a9a9;
}

.leftnav{
    width: 20%;
    height: 6rem;
}

.leftnav img{
        margin-top: 0.75rem
}

.midnav{
    width: 60%;
    height: 6rem;
}

.midnav ul{
    display: flex;
    list-style: none;
    text-decoration: none;
    margin-top: 2rem;
    margin-left: 6rem;
}

.midnav ul li a{    
    text-decoration: none;
    margin-left: 3rem;
    font-size: 1.3rem;
    font-family: poppins;
    font-weight: bolder;
    color: #454545;
    transition: all .15s
}

.midnav ul li a:hover{
    color: #2dc7c0;
}

.rightnav{
    width: 20%;
    display: flex;
}
.contactbtn{
    height: 3.5rem;
    margin-top: 1.5rem;
    width: 11rem;
    margin-left: 1rem;
    text-align: center;
    font-size: 1.5rem;
        border-radius: 2rem;
    border: none;
    background: #3e949a;
    color: #fff;
    font-size: 1.5rem;
    letter-spacing: .2rem;
    text-transform: uppercase;
    font-family: alata;
    cursor: pointer;
    transition: all .15s
}

.contactbtn a{
    text-decoration: none;
    color: #fff;
}
.contactbtn:hover{
    background-color: #2dc7c0;
}

/* SECTION 1 */

.sec1{
    height: 90rem;
    width: 100%;
    text-align: center;
}

.sec1 h1{
        margin-top: 8rem;
font-size: 4rem;
color: #000;
font-family: alata;
margin-left: 1.5rem;
}

.container{
    display: grid;
    grid-template-columns: repeat(3,3fr);
    gap: 2rem;
    column-gap: 3rem;
    place-items: center;
    margin-top: 6rem;
}

.box{
    height: 20rem;
    border: none;
    background: #104a4e;
    color: #fff;
    width: 19rem;
    border-radius: 1.5rem;
    transition: all 0.25s;
}

.box:hover{
    background: #3e949a;
}

.box h2{
margin-top: 1rem;
font-size: 1.8rem;
font-family: alata;
}

.box ul {
margin-top: 2rem;
    text-align: left;
    margin-left: 5rem;
}

.box ul li{
    font-size: 1.3rem;
    font-family: 'poppins';
    font-weight: bolder;
}

/* FOOTER */

.footer{
    height: 70vh;
    width: 100%;
    background: #000;
}

.subcontainer3{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    place-items: left;
    column-gap: 0.1rem;
}

.box2{
    color: #fff;
    margin-left: 4rem;
}

.box2 h2{
margin-top: 2rem;
    font-family: 'poppins';
    font-weight: bolder;
}

.box2 ul{
margin-top: 1rem;
list-style: circle;
}

.box2 ul li{
color: lightgrey;
    text-decoration: none;
    font-family: 'alata';
}

.box2 ul li a{
    color: lightgrey;
    text-decoration: none;
    font-family: 'alata';
}

.contactinfo{
    margin-top: 0rem;
}