@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

body {
    background-color: #FFF;
    color: #31343c;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.display-none-l {
    display: none;
}

.blue-color {
    color: #0090da !important;
}

.grey-color {
    color: #31343c !important;
}

.white-color {
    color: #FFF !important;
}

.brand-logo > img {
    height: 50px;
}

.lighter {
    font-weight: 300;
}

.normal {
    font-weight: 400;
}

.bold {
    font-weight: 600;
}

.margin-none {
    margin: 0 !important;
}

.flex-align-center {
    display: flex;
    align-items: center;
}

.btn-primary {
    width: 100%;
    text-align: center;
    color: #FFF;
    background-color: #0090da;
    border-radius: 7px;
    box-shadow: 0 4px 14px 0 rgba(0, 144, 218, .39);
    padding: 15px 30px;
    border: 0;
    cursor: pointer;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: rgba(0, 144, 218, .9);
    box-shadow: 0 4px 14px 0 rgba(0, 144, 218, .2);
}

.btn-secundary {
    width: 100%;
    text-align: center;
    color: #31343c;
    background-color: #FFF;
    border-radius: 7px;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
    padding: 15px 30px;
    border: 0;
    cursor: pointer;
}

.btn-secundary:hover,
.btn-secundary:focus {
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 6px 20px rgba(93, 93, 93, .23);
}

nav {
    background-color: #FFF !important;
    box-shadow: none !important;
    height: 90px !important;
    line-height: 50px !important;
    position: fixed;
    z-index: 9997;
    border-bottom: 1px solid #eaeaea;
    padding: 20px 0;
}

#nav-mobile > li > a {
    padding: 0 20px;
} 

#nav-mobile > li > a:hover {
    background-color: transparent !important;
    color: #0090da !important;
}

#nav-mobile > li > a.btn-store {
    background-color: #0090da;
    border-radius: 7px;
    box-shadow: 0 4px 14px 0 rgba(0, 144, 218, .39);
    padding: 0 30px;
}

#nav-mobile > li > a.btn-store:hover {
    color: #FFF !important;
    background-color: rgba(0, 144, 218, .9) !important;
    box-shadow: 0 4px 14px 0 rgba(0, 144, 218, .2) !important;
}

nav .sidenav-trigger {
    float: right !important;
}

.sidenav {
    z-index: 9998 !important;
}

.sidenav-overlay {
    z-index: 9997 !important;
}

nav .sidenav-trigger i {
    height: 50px !important;
    line-height: 50px !important;
}

footer {
    width: 100%;
    padding: 80px 0;
    background-color: #fafafa;
    border-top: 1px solid #eaeaea;
}

#home {
    padding: 210px 0 120px 0;
}

.smarti-home {
    width: 50%;
}

#services {
    padding: 100px 0;
    background-color: #fafafa;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.each-services {
    margin-bottom: 80px !important;
}

#team  {
    padding: 100px 0;
}

.each-team {
    width: 100%;
    min-height: 320px;
    padding: 50px 15px 15px 15px;
    background-color: #FFF;
    border-radius: 7px;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
    cursor: pointer;
    position: relative;
    margin-top: 120px;
}

.icon-team {
    position: absolute;
    width: 50%;
    top: -100px;
    left: 25%;
}

.icon-team > img {
    width: 100%;
}

.each-team:hover {
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 6px 20px rgba(93, 93, 93, .23);
}

#contact {
    width: 100%;
    height: 500px;
    position: relative;
}

.container-form {
    width: 40%;
    height: 100%;
    background-color: #FFF;
    position: absolute;
    z-index: 100;
    right: 5%;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.3);
    padding: 50px 0;
}

#form input,
#form-mobile input {
    width: 90%;
    height: 40px;
    padding: 0 5%;
    background-color: transparent;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
    border: none;
    outline: 0;
    color: #31343c;
    font-size: 12px;
    border-radius: 7px;
}

#form input::placeholder,
#form-mobile input::placeholder {
    color: #31343c;
}

#form input#email,
#form-mobile input#email {
    padding: 0 7.5% 0 2.5%;
}

#form textarea,
#form-mobile textarea {
    width: 100%;
    height: 100px;
    background-color: transparent;
    box-shadow: 0 4px 14px 0 rgba(0, 0, 0, 0.1);
    border: none;
    padding: 5% 5% 5% 2.5%;
    outline: 0;
    resize: none;
    color: #31343c;
    font-size: 12px;
    border-radius: 7px;
}

#form input::placeholder,
#form textarea::placeholder,
#form-mobile input::placeholder,
#form-mobile textarea::placeholder  {
    color: #80848c;
}

#form input:focus,
#form textarea:focus,
#form-mobile input:focus,
#form-mobile textarea:focus {
    box-shadow: 0 6px 20px rgba(93, 93, 93, .35);
}

#form button,
#form-mobile button {
    width: 100%;
    float: right;
}

#form input:disabled,
#form textarea:disabled,
#form button:disabled,
#form-mobile input:disabled,
#form-mobile textarea:disabled,
#form-mobile button:disabled {
    opacity: .5;
    cursor: no-drop;
}

.success-email {
    color: green;
    display: none;
}

.error-email,
.error-send-email {
    color: red;
    display: none;
}

#marker {
    width: 50px;
    height: 57px;
    background-image: url('../images/pin.svg');
    cursor: pointer;
    background-size: cover;
}

#contact-form-mobile {
    display: none;
}

.logo-footer {
    width: 150px;
}

.owl-nav {
    text-align: center !important;
}

.owl-nav > button {
    margin: 0 15px !important;
}

.owl-nav > button > span {
    font-size: 30px !important;
}

@media only screen and (max-device-width : 992px) {
    .flex-align-center {
        flex-direction: column;
    }
    .center-s {
        text-align: center;
    }
    .display-none-s {
        display: none;
    }
    #home {
        padding: 140px 0 20px 0;
    }
    .btn-primary {
        margin-bottom: 20px;
    }
    #services {
        padding: 40px 0;
    }
    #team {
        padding: 40px 0;
    }
    .each-team {
        min-height: 200px;
        margin-top: 180px;
    }
    .icon-team {
        top: -150px;
    }
    #contact-form-mobile {
        display: block;
        padding: 30px 0;
    }
    footer {
        padding-left: 50px;
        padding-right: 50px;
    }
    #form > .row > .s12 {
        margin-bottom: 10px !important;
    }
    #form-mobile input#email {
        padding: 0 5%;
    }
    #form-mobile textarea {
        padding: 5%;
    }

    #form-mobile button {
        margin-top: 20px;
    }

    .sidenav > li > a {
        height: 60px !important;
        line-height: 60px !important;
    }

    .sidenav li > a:hover {
        background-color: transparent !important;
    }

    .sidenav li > a.btn-store {
        color: #0090da !important;
    }
    .display-none-l {
        display: block;
    }
}