@import url("https://use.typekit.net/ifb2ato.css");

* {
    margin: 0;
    border: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html{
    margin: 0 0 0 0 0;
    padding: 0 0 0 0;
    font-family: europa, sans-serif;
    color: #1f1f1f;
    word-wrap: normal;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
::-webkit-scrollbar{width: 8px;}
::-webkit-scrollbar-track{background: #d6d6d6;}
::-webkit-scrollbar-thumb {background: rgba(0, 0, 0, 0.3);}
::-webkit-scrollbar-thumb:hover {background: #3f3f3f;}

.navbar {
    z-index: 99999;
}

/* BASIC CONTENT */
a{
    color: #1f1f1f;
    text-decoration: none;
}
a:hover{
    color: #1f1f1f;
}
.hr {
    border: 3px;
    border-top: 3px solid #003479;
}
h1{
    color: #1f1f1f;
    padding: 50px 0;
    font-weight: 700;
}
h2 {
    font-size: 2rem;
    color: #1f1f1f;
    font-weight: 700;
    text-align: left;
    position: relative;
    margin-bottom: 1rem;
}
h2::before {
    content: '';
    position: absolute;
    height: 4px;
    width: 70px;
    bottom: 0px;
    left: 0;
    border-radius: 8px;
    background: #003479;
}
h3 {
    font-size: 2.5rem;
    color: #1f1f1f;
    font-weight: 500;
    text-align: center;
    position: relative;
}

/* - */

/* FUNDO HEADER */
.bg-header object {
    overflow: hidden;
    position: absolute;
    bottom: -180px;
    left: 50%;
    width: 200%;
    transform: translateX(-50%);
}
/* - */

/* BOX HEADER */
.box-header {
    max-width: 700px;
    height: 600px;
    position: relative;
}
.box-title {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.box-title h1 {
    font-size: 3.4rem;
    color: #fff;
    font-weight: 900;
}
/* - */

/* BOTÃO HEADER */
.btn-call {
    background: #fff;
    padding: 10px 50px;
    border-radius: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #003479;
    display: inline-block;
}
.btn-call:hover {
    background-color: #fff;
    color: #003479;
}
/* - */

/* BOTÃO WHATSAPP */
.btn-wpp {
    background: #56b000;
    padding: 10px 50px;
    border-radius: 3px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0;
    color: #fff;
    display: inline-block;
    margin-top: 20px;
    transition: all .35s;
}
.btn-wpp:hover {
    background-color: #abda28;
    color: #fff;
    transition: all 0.35s;
}
.btn-wpp i{
    font-size: 1.2rem;
    margin-right: 0.3rem;}
/* - */

/* SECTIONS */
section{
    padding: 0 0;
}

#cursos{
    font-size: 1.4rem;
    margin-top: 1rem;
    text-align: center;
}
#cursos p{
    margin-top: 1.8rem;
    color: #1f1f1f;
}
#cursos img{
    margin-top: 1.5rem;
    max-width: 250px;
    border: 3px solid transparent;
    transition: all .35s;
}
#cursos img:hover{
    border: 3px solid #00204b;
    transition: all .35s;
    border-radius: 50%;
}
#cursos h1{
    text-align: left;
}

#inscricao {
    text-align: center;
}
#inscricao p{
    font-size: 1.3rem;
    margin-top: 1rem;
}

/* HEADER */
header {
    height: 100vh;
    background: url(./img/image-header.png);
    background-position: bottom right;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #fff;
    margin-bottom: -3rem;
}

header .container {
    max-width: 1240px;
}

/* FOOTER */
footer {
    background: #003479;
    color: #fff;
    text-align: center;
}
footer a {
    color: #fff;
    transition: 0.3s;
}
footer a:hover{
    color: #fff;
}
/* - */

/* MENU */
.navbar-brand img {
    max-width: 100%;
    margin-right: 1rem;
    margin-top: 2rem;
}
/* - */

/* FORMULARIOS */
form {
    display: flex;
    flex-direction: column;
    text-align: left;
    font-size: 1.2rem;
    color:#971e2f;
}
.input-field {
    position: relative;
}
form .input-field {
    margin-bottom: 1rem;
}


.input-field label{
    color: #003479;
}
.input-field input {
    border-bottom: 1px solid #003883;
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.7);
    width: 100%;
    outline:none;
}
.input-field input:focus{
    border-bottom: 1px solid #003479;
    color: rgba(0, 0, 0, 0.7);
}
.input-field select {
    border: 1px solid #003883;
    color: rgba(0, 0, 0, 0.7);
}
.input-field select:focus {
    border: 1px solid #003479;
    color: rgba(0, 0, 0, 0.7);
}
.input-field textarea {
    border: 1px solid #003883;
    color: rgba(0, 0, 0, 0.7);
}
.input-field textarea:focus {
    border: 1px solid #003479;
    color: rgba(0, 0, 0, 0.7);
}


.checkradio label{
    color: #494949;
    font-weight: normal;
    font-size: medium;
}
.checkradio input, .checkradio span{
  width: auto;
  margin-right: .5rem;
}


button {
    padding: 0.4rem;
    width: 100%;
    background: linear-gradient(to left, #00204b, #002b63);
    cursor: pointer;
    color: white;
    font-size: 0.9rem;
    font-weight: 300;
    border-radius: 4px;
}
/* - */
@media (max-width: 768px) {
    .box-content-srvc h3 {
        font-size: 1.5rem;
    }
    header {
        height: auto;
        background-position: center center;
        background-size: auto 100%;
        background-repeat: no-repeat;
    }
    .box-title h1 {
        font-size: 2rem;
        color: #fff;
        font-weight: 400;
        text-align: left;
        margin-top: -5rem;
    }
    .box-header {
        max-width: 600px;
        height: 45vh;
        position: relative;
        text-align: center;
    }
    .box-title {
        padding: 30px;
    }
    h3{
        text-align: center;
    }
    .inf img{
        margin-top: 1rem;
    }
    footer br {
        display: none;
    }
}
@media (max-width: 575px) {
    header {
        height: auto;
        background-position: center left;
        background-size: auto 100%;
        background-repeat: no-repeat;
    }
}