* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', sans-serif;
    color: black;
    overflow: hidden;
}

body {
    overflow: hidden;
}

main {
    margin: 0;
    width: 100%;
    height: 100%;
}

/* custom scroll bar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::selection {
    background: rgb(0, 123, 255, 0.3);
}

.content {
    max-width: 1250px;
    margin: auto;
    padding: 0 30px;
}

.navbar {
    position: fixed;
    width: 100%;
    z-index: 2;
    padding: 10px;
    height: 110px;
    background: #00a6c8;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
}

.navbar .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar .content .logo img {
    position: relative;
    width: 290px;
}


#logoId {
    visibility: visible;
}

.navbar .menu-list {
    display: inline-flex;
}

.menu-list li {
    list-style: none;
    padding: 8px 12px;
}

.menu-list li a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;

    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.menu-list .fa-linkedin-square {
    color: #ffffff;
    font-size: 20px;
}

.menu-list li a::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #ffffff;
    display: block;
    margin: 0;
    transition: 0.5s;
}

.menu-list li a:hover::after {
    width: 100%;
}

/* Home */
#home {
    padding-top: 110px;
    height: 100vh;
    text-align: center;
    background-color: #00515e;
    overflow: auto;
}

#home img {
    float: right;
    filter: opacity(0.8);
    width: 550px;
    padding: 50px 25px 25px;
}

#subtitle {
    margin-top: 150px;
    background-color: #0093b1;
}

#home h2 {
    border-bottom: 1px solid rgb(255, 255, 255, 0.5);
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 30px;
    color: #ffffff;
}

#home h3 {
    padding-top: 10px;
    font-size: 30px;
    padding-bottom: 10px;
    font-weight: normal;
    color: rgb(255, 255, 255, 0.8)
}

#home h4, h5 {
    font-size: 20px;
    color: #ffffff;
}

/* About */
#about .content {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
}

#about >.content> h3 {
    font-size: 20px;
    font-weight: 600;
    padding: 0;
}

#about {
    padding: 110px 0;
    height: 100vh;
    overflow: auto;
    text-align: center;
    margin: auto;
}

.about-row {
    margin-top: 2%;
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
}

.card {
    background-color: rgb(232, 232, 232);
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 10px;
    transition: 0.5s;
    width: 580px;
}

.card:hover {
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
    
}

.card em {
    font-style: normal;
    font-weight: 600;
}

.card p {
    padding: 25px;
}

.card div img {
    width: 450px;
}

#about .title {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 50px;
    background-image: linear-gradient(rgba(0, 81, 94, 0.5), rgba(0, 81, 94, 0.5)), url("../images/services.jpg");
    padding-top: 50px;
}

#about span {
    color: #ffffff;
    border: 2px solid #ffffff;
    box-sizing: border-box;
    padding: 20px;
}

#about p {
    padding-top: 20px;
    text-align: justify;
}

/* Services */
#services {
    padding: 110px 0;
    height: 100vh;
    overflow: auto;
}

#services .title {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 50px;
    background-image: linear-gradient(rgba(0, 81, 94, 0.5), rgba(0, 81, 94, 0.5)), url("../images/services.jpg");
    padding-top: 50px;
}

#services span {
    color: #ffffff;
    border: 2px solid #ffffff;
    box-sizing: border-box;
    padding: 20px;
}

#services h4 {
    padding: 20px 0 0 0;
}

#services p {
    padding-top: 20px;
    text-align: justify;
}

#private-relocation {
    font-weight: 600;
}

.container-services {
    display: flex;
    justify-content: center;
}

.column {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-basis: 45%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    background-color: #007e97;
    margin-top: 20px;
    padding: 25px 30px;
    border-radius: 15px;
    height: 570px;
}

.column h4 {
    text-align: center;
    text-transform: uppercase;
    width: 100%;
    font-weight: 600;
    color: #fff;
    font-size: 26px;
}

.column .saiba-mais {
    color: #ffffff;
    border: 2px solid #ffffff;
    box-sizing: border-box;
    margin-top: 25px;
    text-transform: uppercase;
    padding: 20px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.layer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.layer:hover {
    background: #f1f1f1;
}

.layer ul {
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.layer ul li {
    display: flex;
    flex-wrap: nowrap;
    flex-shrink: 0;
    align-items: center;
    margin-bottom: 20px;
    padding: 0 30px;
    opacity: 0;
    transition: 0.5s;
}

.layer:hover ul li {
    bottom: 49%;
    opacity: 1;
}

.layer ul li::before {
    content: "";
    width: 10px;
    height: 10px;
    background-color: #007e97;
    flex-shrink: 0;
    margin-right: 15px;
}

.column:nth-last-of-type(1) {
    margin-left: 25px;
}


.title-column {
    text-align: center;
    font-size: 20px;
    text-transform: uppercase;
}

/* Cases */
#cases {
    padding: 150px 0;
    height: 100vh;
    overflow: auto;
}

#cases .title {
    font-size: 38px;
    font-weight: 700;
}

#cases p {
    padding-top: 20px;
    text-align: justify;
}

/* Contact */
#contact {
    padding: 110px 0;
    height: 100vh;
    text-align: center;
    overflow: auto;
}

#contact {
    padding: 110px 0;
    height: 100vh;
    overflow: auto;
}

#contact .title {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 50px;
    background-image: linear-gradient(rgba(0, 81, 94, 0.5), rgba(0, 81, 94, 0.5)), url("../images/contact.jpg");
    padding-top: 50px;
}

#contact span {
    color: #ffffff;
    border: 2px solid #ffffff;
    box-sizing: border-box;
    padding: 20px;
}

#contact p {
    padding-top: 20px;
    text-align: justify;
}

.fa-bars {
    color: #003c47;
}

.fa-times {
    color: #ffffff;
}

.icon {
    font-size: 25px;
    cursor: pointer;
    display: none;
}

.menu-list .cancel-btn {
    position: absolute;
    right: 30px;
    top: 20px;
}

/* Media */
@media (max-width: 1230px) {
    #about .content {
        margin: 0;
        padding: 0;
    }
    #about >.content> h3 {
        align-content: center;
        margin: 30px 10px 5px;
        padding: 0;
    }

    .about-row {
        display: inline-block;
        margin: 20px 10px;
        padding: 0;
    }

    .about-row img {
        width: 90%;
    }

    .card {
     width: 100%;
    }

    .content h3 {
        display: inline;
        text-align: center;
        margin: 50px;
    }

    #home img {
        display: none;
    }

    #home #subtitle {
        margin-top: 80px;
    }

    .container-services {
        display: inline-block;
    }

    .container-services .column {
        margin: 25px 0;
        height: 100vh;
    }

    .layer ul {
        margin: 25px 0;
    }

    .container-services .column:nth-child(1) {
        height: 450px;
    }

    .container-services .column:nth-child(2) {
        height: 650px;
    }
}

@media (max-width: 1230px) {
    .content {
        padding: 0 60px;
    }
}

@media (max-width: 1100px) {
    .content {
        padding: 0 40px;
    }
}

@media (max-width: 900px) {
    .content {
        padding: 0 30px;
    }
}

@media (max-width: 868px) {
    body.disabled {
        overflow: hidden;
    }

    .icon {
        display: block;
    }

    .icon.hide {
        display: none;
    }

    .navbar .menu-list {
        position: fixed;
        height: 100vh;
        width: 100%;
        max-width: 400px;
        left: -100%;
        top: 0px;
        display: block;
        padding: 40px 0;
        text-align: center;
        background: #5297a5;
        transition: all 0.3s ease;
    }

    .navbar.show .menu-list {
        left: 0%;
    }

    .navbar .menu-list li {
        margin-top: 45px;
    }

    .navbar .menu-list li a {
        font-size: 23px;
        margin-left: -100%;
        transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .navbar.show .menu-list li a {
        margin-left: 0px;
    }
}

@media (max-width: 380px) {
    .navbar .logo a {
        font-size: 27px;
    }
}

/* Formulário */
* {
    box-sizing: border-box;
}

input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

input[type=tel], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

input[type=email], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

label {
    padding: 12px 12px 12px 0;
    display: inline-block;
}

input[type=submit] {
    background-color: #005b6d;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
}

input[type=submit]:hover {
    background-color: #007e97;
}

.container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
    margin-top: 25px;
}

.col-25 {
    float: left;
    width: 25%;
    margin-top: 6px;
}

.col-75 {
    float: left;
    width: 75%;
    margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .col-25, .col-75, input[type=submit] {
        width: 100%;
        margin-top: 0;
    }
    
    .row>input {
        margin-top: 25px;
    }
}