@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

*,*::after,*::before{
    box-sizing: border-box;
}

body{
    padding: 0;
    margin: 0;
    background-color: #2F303A;
    font-family: poppins,sans-serif;
    font-size: 1.2rem;
    color: #ffff;
    min-height: 100vh;
}
.full-height-grow{
    display: flex;
    flex-direction: column;
    
    
}

.brand-logo{
    display: flex;
    align-items: center;
    font-size: 1.25rem;
    color: inherit;
    text-decoration: none;

}
.brand-logo-name{
    margin-left: 1rem;
}
.main-nav ul, .footer-nav ul{
    display: flex;
    justify-content: space-between;
    padding: 0;
    list-style: none;

}
.main-nav a, .footer-nav a{
    color: inherit;
    text-decoration: none;
    padding: 1rem;
}
.main-nav a:hover,
.footer-nav a:hover{
    color: #adadad;
}

.mobile-menu {
    cursor: pointer;
}
.main-nav .mobile-exit{
    cursor: pointer;
}

.main-header, .main-footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-header{
    height: 140px;
    
}

.container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.main-footer .container{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}
.main-footer{
    height: 70px;
    background-color: #202027;
    font-weight: bold;
    
}
.social-link img{
    width: 1em;
    margin-right: .25em;
}


.title{
    font-weight: 500;
    font-size: 3rem;
    margin-bottom: 1rem;
    margin-top:0 ;

}
.subtitle{
    font-weight: 500;
    font-size: 1.2em;
    margin-bottom: 2rem;

}

.btn{
    color: #ffff;
    background-color: #1762A7;
    padding: .75rem 1.5rem;
    border-radius: .5rem;
    text-decoration: none;
    font-size: .9rem;
    outline: none;
    border: none;
    cursor: pointer;
}
.btn:hover{
    background-color: #2180d8;
}
.btn:focus{
    background-color: #2796ff;
}
.btn-nav{
    color: #ffff;
    background-color: #1762A7;
    padding: .75rem 1rem;
    border-radius: .5rem;
    text-decoration: none;
}

nav.menu-btn {
    display: block;
}



@media only screen and (min-width: 768px) {

    .mobile-menu, .mobile-menu-exit {
        display: none;
    }
    
}
@media (max-width:768px) {
    nav {
        display: none;
    }
    nav {
    position: fixed;
    z-index: 999;
    width: 66%;
    right: 0;
    top: 0;
    background: #20272E;
    height: 100vh;
    padding: 1em;
    }
    nav ul.primary-nav {
            margin-top: 5em;
    }
    .main-nav ul {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        margin-top: 2rem;
        align-items: center;
    }
    .mobile-menu-exit{
        cursor: pointer;
    }
    

}