@import url(./typhography.css);

:root {
    --color-blue: #4E7289;
    --color-white: #FFFFFF;
    --color-light-blue: #283881;
    --color-light-green: #AFD900;
}

html{
    scroll-behavior: smooth;
    height: 100%;
}

body {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
}

* {
    outline: none;
}
ul {
    padding: 0;
    margin: 0;
}
li {
    list-style: none;
}
p {
    margin-bottom: 0;
}

.container {
    max-width: 1240px;
}

/* Utilities */
.color-white {
    color: var(--color-white);
}

.color-light-blue {
    color: var(--color-light-blue);
}

.color-light-green {
    color: var(--color-light-green);
}

/* Header */
.header {
    background: var(--color-blue);
    padding: 1rem 0;
    height: 7.24rem;
}
.header-logo {
    max-width: 100%;
}
li.btn a {
    text-transform: uppercase;
    border: 1px solid #fff;
    padding: 10px 20px;
    border-radius: 50px;
}
.header li a {
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 600;
}
.header li a img {
    width: 1.175rem ;
}
.header li a span {
    font-weight: 300;
}

.main {
    flex: 1 1 0;
    position: relative;
    height: 100%;
}

.subtitulo {
    font-size: 25px;
    line-height: 25px;
    color: #4E7289;
    text-transform: uppercase;
    margin: 15px 0 25px;
}
.h4 {
    display: flex;
    justify-content: flex-end;
}
.h4 h4 {
    font-size: 30px;
    line-height: 32px;
    color: #4E7289;
    text-transform: uppercase;
    margin: 0;
}

.main-section {
    padding: 75px 0 40px;
    background: #E5E5E5;
}

input.form-control,
select.form-control {
    color: #6A6A6A;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    height: 45px;
    border-radius: 10px;
    background: #FFF;
    border: none;
    padding: 0 20px;
    margin-bottom: 10px;
}
.button-primary {
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    padding: 14px 32px;
    width: 100%;
    border-radius: 10px;
    background: var(--color-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--color-blue);
    transition: ease 300ms;
}
.button-primary:hover {
    background-color: var(--color-white);
    color: var(--color-blue);
}   

.bg-img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    width: 100%;
    min-height: 100%;
    max-height: 100%;
    object-fit: cover;
}

.img-students {
    position: absolute;
    max-width: 470px;
}

footer.footer {
    background: #4E7289;
    height: 50px;
}

img.bg1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 10%;
    z-index: 0;
}

img.bg2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 15%;
    z-index: 0;
}

.big-colored-title {
    font-family: "Giorgio Sans";
        font-size: 3.9rem;
        line-height: 90%;
        font-weight: 700;
        text-transform: uppercase;
        text-wrap: nowrap;
        margin-bottom: 1rem;}

.course-list {
    margin-top: 1.75rem;
}

.course-list li {
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: .5rem;
}

.moldura-numero {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    max-width: 100%;
    height: auto;
}

@media(min-width:992px) and (max-width:1199px) {

}
@media(min-width:768px) and (max-width:991px) {

}
@media(max-width:767px) {
    .header {
        height: auto;
    }

    .footer {
        background: var(--color-blue);
        padding: 40px 30px 52px;
    }

    .footer li a {
        color: #FFF;
        font-size: 1rem;
        font-weight: 600;
    }
    .footer li a img {
        width: 1.875rem;
    height: 1.875rem;
    }
    .footer li a span {
        font-weight: 300;
    }

    .big-colored-title {
        font-size: 3.5rem;
    }
    .subtitulo {
        font-size: 23px;
        line-height: 23px;
    }
    
    .course-list li {
        font-size: 1rem;
    }

    .img-students {
        position: static;
        max-width: 100%;
        height: auto;
    }
    footer.footer {
        background: #4E7289;
        height: 100%;
    }
    footer ul.d-md-none {
        text-align: center;
    }
    .main-section {
        padding: 35px 0 100px;
    }
    img.bg2 {
        width: 35%;
    }
    .h4 {
        justify-content: center;
    }
    .h4 h4 {
        font-size: 28px;
        line-height: 30px;
    }
}