/*_________________________________________________________FONTES______________________________________________________________*/
@font-face {
    font-family: 'Charlie Display';
    src: url(assets/fonts/CharlieDisplay-Light.ttf) format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Charlie Text';
    src: url(assets/fonts/CharlieText-Light.ttf) format('truetype');
    font-style: normal;
}
/*_________________________________________________________GERAL______________________________________________________________*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #0052CC;;
}
/*_________________________________________________________HEADER______________________________________________________________*/
header {    
    font-family: 'Charlie Text', Times, sans-serif;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 67px;
    box-shadow: 0 2px 10px rgb(0 0 0 / 25%);
}

.navbar {
}

.div-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 8vh;
}

.logo {
    border-top: 10px solid #FFF;
}

.nav-list {
    width: 52vw;
    display: inline;
    margin: 0 15px;
}

.nav-list li {
    float: left;
    padding: 26px 0 15px;
    list-style: none;
    margin-left: 32px;
    font-weight: 600;
}

.nav-list li:last-child {
    float: right;
}

.nav-list li a:hover {
    color: #0065ff;
}

.getit {
    padding: 26px 0 15px;
    margin-left: 10px;
}

.getit a {
    display: inline-flex;
    padding: 2px 10px;
    border: 1px solid blue;
    border-radius: 3px;
    font-weight: 900;
    transition: 0.5s;
}

.getit a:hover {
    background: #ebecf0;
}
/*__________________________________________________________MAIN_______________________________________________________________*/
main {
    display: block;
}

.container {
    padding-top: 64px;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    font-family: 'Charlie Display', Times, sans-serif;
}

.txt1 {
    text-align: center;

    padding: 16px;
    width: 29%;
}

.txt1 h1 {
    color: #253858;
    font-size: 3rem;
    line-height: 3.5rem;
}

.txt2 {
    text-align: center;

    padding: 16px 16px 0 16px;
    width: 41.48%;
    margin-bottom: 24px;

}

.txt2 p {
    color: #42526e;
    font-size: 1.25rem;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.bt {
    text-align: center;
}

.bt a {
    color: #FFF;
    font-family: 'Charlie Text', Times, sans-serif;
    font-weight: bold;
    border: 3px solid #0052CC;
    background-color: #0052CC;
    padding: 7px 16px;
    border-radius: 5px;
    transition: 250ms;
}

.bt a:hover {
    background-color: #0047b3;
    border-color: #0047b3;
} 

.img {
    display: flex;
    justify-content: center;
    justify-items: center;
    padding: 32px 16px 16px;
}

.img img {
    width: 61vw;
} 
/*__________________________________________________________RESPONSIVIDADE_______________________________________________________________*/
@media screen and (max-width: 1070px) {
    .nav-list {
        display: none;
    }
}