* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #e9e9e9;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background-color: #27a1e2;
    z-index: 3;
}

.active a {
    border-bottom: 2px solid white;
}

/* Main */
main {
    max-width: 1280px;
    margin: 50px auto;
    padding: 30px;
    box-shadow: 0 10px 30px 0px rgba(0, 0, 0, 0.4);
    background-color: white;
}

.col-md-4 i {
    font-size: 20px;
}

.form-field {
    margin: 32px 0;
}

.input-text {
    display: block;
    width: 100%;
    height: 36px;
    border-width: 0 0 2px 0;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
}

.input-text:focus+.label,
.input-text.not-empty+.label {
    transform: translateY(-14px);
}

.input-text:focus {
    outline: none;
}

.label {
    position: absolute;
    left: 20px;
    bottom: 1px;
    font-size: 18px;
    line-height: 26px;
    font-weight: 400;
    cursor: text;
    transition: transform 0.2s ease-in-out;
}

.map-container-section {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.map-container-section iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

.row .btn {
    background-color: #2c91c9;
    color: white;
    outline: none;
    border: none;
    text-decoration: none;
}

.row .btn:hover {
    background-color: white;
    color: #2c91c9;
    border: 1px solid #2c91c9;
    transition: 0.5s;
}

.fade-in {
    opacity: 0;
    transition: opacity 500ms ease-in;
}

.fade-in.appear {
    opacity: 1;
}

/* Footer */
footer {
    color: white;
    width: 100%;
}

footer p,
footer a {
    color: #a9a9a9;
}

footer a:hover,
.fab:hover {
    text-decoration: none;
    color: #2c91c9;
    transition: 0.3s;
}

/* Media Queries */
@media (min-width: 1134px) {}

@media (max-width: 1133px) {
    footer img {
        width: 250px;
    }
}

@media (max-width: 1107px) {
    footer img {
        width: 230px;
    }
}

@media (max-width: 1024px) {
    footer img {
        width: 200px;
    }
}

@media (max-width: 1000px) {
    footer img {
        width: 150px;
    }
}

@media (max-width: 800px) {
    main p {
        max-width: 80%;
    }
}

@media (max-width: 430px) {
    #welcome img {
        width: 250px;
    }
}