@import url('https://fonts.googleapis.com/css2?family=Oswald&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Oswald', sans-serif;
}

body {
    background: #15161b;
}

header {
    display: flex;
    justify-content: center;
}

#logo>h2 {
    margin-top: 10px;
    color: #fff;
    font-size: 30px;
}

#logo span {
    color: #1a7993;
}

.section-1 {
    display: flex;
    justify-content: center;
    margin-top: 100px;
}

.area-title h3 {
    color: #fff;
    font-weight: normal;
}

.area-title h2 {
    color: #fff;
    font-size: 45px;
    line-height: 50px;
    margin: 16px 0;
}

.area-title a {
    display: inline-block;
    background-color: #1a7993;
    padding: 15px 60px;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    text-decoration: none;
    border-radius: 15px;
    transition: all .3s ease-in-out;
}

.area-title a:hover {
    background-color: #2198b9;
}

.image1 img {
    width: 460px;
    height: auto;
    margin-top: 20px;
    margin-left: 55px;
    border: 1px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color.5s ease-in-out;
}

.image1 img:hover {
    border: 1px solid white;
    border-radius: 10px;
}

.section-cards {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 100px;
    margin-bottom: 100px;
    height: 400px;
}

.section-cards>h2 {
    color: #fff;
    text-transform: uppercase;
    font-size: 22px;
}

.cards {
    display: flex;
    flex-direction: row;
    margin-top: 50px;
}

.card {
    background-color: #2c2f37;
    width: 200px;
    height: 180px;
    margin-left: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    cursor: pointer;
    border-radius: 15px;
    transition: .3s background-color;
}

.card:hover {
    background-color: #1a7993;
}

.card img {
    width: 65px;
}

.section-3 {
    background-color: #1a7993;
    height: 342px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
}

.area-title-2>h1 {
    color: #fff;
    font-size: 35px;
}

.area-title-2>h3 {
    color: #fff;
    font-size: 20px;
    font-weight: normal;
    margin-top: 26px;
}

.area-title-2 a {
    display: inline-block;
    background-color: #fff;
    padding: 20px 80px;
    color: black;
    font-size: 19px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    margin-top: 20px;
    border-radius: 15px;
    box-shadow: 0px 0px 1px black;
    transition: box-shadow .3s ease-in-out, text-shadow .3s ease-in-out, transform.3s ease-in-out;
}

.area-title-2 a:hover {
    box-shadow: 0px 1px 5px #fff;
    text-shadow: 1px 2px 2px rgb(231, 214, 214);
    transform: scale(1.02);
}

.image2>img {
    width: 280px;
    height: auto;
    margin-top: 5px;
    margin-left: 150px;
}

.area-form {
    display: flex;
    justify-content: center;
    margin-bottom: 100px;
    flex-direction: column;
    align-items: center;
}

.area-form>h2 {
    color: #fff;
    text-align: center;
}

.formulario>form {
    display: flex;
    flex-direction: column;
    width: 400px;
    height: 300px;
}

.formulario input {
    border-radius: 15px;
    margin-top: 20px;
    height: 40px;
    border: none;
    outline: none;
    padding-left: 10px;
}

input::placeholder {
    color: #000;
    text-transform: uppercase;
}

input[type="submit"] {
    background-color: #1a7993;
    color: white;
    text-transform: uppercase;
    font-size: 20px;
    height: 55px;
    cursor: pointer;
    transition: background-color .3s ease-in-out;
}

input[type="submit"]:hover {
    background-color: #2198b9;
}


footer {
    margin-top: 20px;
    margin-bottom: 25px;
    align-items: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

footer>h3 {
    color: #fff;
    font-weight: normal;
}

.social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
    cursor: pointer;
}

.social>img {
    width: 30px;
    padding-bottom: 10px;
    transition: border-bottom .5s;
    border-bottom: 1px solid transparent;
}

.social>img:hover {
    border-bottom: 1px solid #fff;
}