@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,700;1,400;1,700&family=Oswald:wght@400;700&display=swap');

* {
    font-family: 'Montserrat', sans-serif;
}

#header {
    background: #0b2154;
    padding: 24px 0;
}
#header_logo img {
    width: 100%;
    max-width: 214px;
}

#header_nav ul {
    padding: 0;
}

#header_nav li {
    list-style: none;
    display: inline-block;
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    margin-left: 32px;
}

#header_nav li a {
    color: #fff;
    text-decoration: none;
}

#banners {
    background-color: #0b2154;
}

.banner {
    width: 100%;
    height: 700px;
    background-repeat: no-repeat;
    background-position: center bottom;
    display: flex;
    align-items: center;
}

.banner h1 {
    color: #fff;
    font-weight: bold;
    font-size: 56px;
    text-transform: uppercase;
}

.banner h1::after {
    display: block;
    content: '';
    width: 360px;
    height: 3px;
    background: #0099db;
    margin-top: 16px;
}

.section {
    padding: 100px 0;
}

.section_title {
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    font-size: 64px;
    color: #0099db;
}

.section .text {
    font-size: 24px;
    line-height: 160%;
}

.service_box-content {
    background: #0099db;
    display: flex;
    padding: 32px;
    color: #fff;
    font-size: 18px;
    min-height: 230px;
}

.service_box-ico {
    background: #0b2154;
    padding: 16px;
    border-radius: 16px;
    height: fit-content;
    margin-right: 16px;
}

.service_box-title {
    font-size: 24px;
    line-height: 100%;
    font-weight: bold;
}

.service_box-title span {
    color: rgba(255,255,255,.5);
    display: block;
}

#especial_services {
    background-color: #303030;
}

#especial_services .section_title, #especial_services .text {
    color: #fff;
}

.especial_services-card {
    background-color: #44c8f5;
    border-radius: 24px;
    padding: 80px 50px;
    margin-top: 32px;
    text-align: center;
}

.especial_services-card p {
    color: #0b2154;
}

.especial_services-card img {
    max-width: 100%;
}

#windfydev {
    padding: 0;
}

#windfydev .content {
    padding: 200px 50px;
    text-align: center;
    background-color: #44c8f5;
}

#windfydev .content p {
    font-size: 24px;
}

#windfydev .content .btn {
    margin-top: 60px;
}

#windfydev img {
    max-width: 100%;
}

.btn {
    text-transform: uppercase;
    border-radius: 4px;
    border: none;
}

.btn:hover {
    background: #2480b8;
    color: #fff;
}

.btn-dark {
    background: #0b2154;
    color: #fff;
}

.btn-light {
    background: #44c8f5;
    color: #fff;
}

#windfyacademy {
    padding: 0;
}

#windfyacademy .content {
    background-color: #0b2154;
    padding: 200px 50px;
    text-align: center;
}

#windfyacademy .content p {
    font-size: 24px;
    color: #fff;
}

#windfyacademy img {
    max-width: 100%;
}

#windfyacademy .content .btn {
    margin-top: 60px;
}

#contact {
    background: #0099db;
}

#contact .section_title {
    color: #fff;
}

#contact p {
    color: #fff;
}

#contact .form-group {
    display: flex;
    flex-direction: row;
    align-items: center;
}

#contact label {
    text-transform: uppercase;
    font-weight: bold;
    text-align: right;
    min-width: 100px;
    margin-right: 16px;
}

#contact input[type=text], #contact input[type=tel], #contact input[type=email] {
    height: 52px;
    border-radius: 4px;
}

#footer {
    background-color: #303030;
    color: #fff;
}

.footer_redes img {
    margin-right: 8px;
}

.footer_address {
    line-height: 180%;
}

@media(max-width:991px){
    .service_box {
        margin-bottom: 32px;
    }
}

@media(max-width:767px){
    #footer {
        text-align: center;
    }
    .footer_redes {
        margin-top: 32px;
    }
}