/* GERAL */
* {
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
}
:root {
    --blue: #4285f4;
    --yellow: #fbbc07;
    --green: #34a852;
    --red: #ea4335;
}
body {
    color: #000;
    background-color: #efefef;
    font-size: 18px;
    font-family: "Poppins", sans-serif;
}
li {
    list-style: none;
}
a:hover {
    text-decoration: none;
}
.container {
    max-width: 1600px;
}
body {
    overflow-x: hidden;
}

/* HEADER */
header {
    width: 100%;
    position: fixed !important;
    top: 0;
    left: 0;
    z-index: 10000;
    background: transparent;
    transition: all ease 0.5s;
    background: transparent;
    filter: none;
}
header.header-appear {
    background: #fff;
    border-bottom: 3px solid var(--blue);
}
header .mobile-menu {
    display: none;
}
header .mobile-menu .navigation {
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 0 30px;
    border-bottom: 2px solid var(--blue);
}
header .mobile-menu .navigation .logo {
    width: 100%;
    max-width: 184px;
}
header .mobile-menu .navigation .logo img {
    width: 100%;
}
header .mobile-menu .navigation button {
    background: none;
    color: #000;
    border: none;
    font-size: 40px;
}
header .mobile-menu .navigation button .icon-button {
    transition: all ease 0.5s;
}
header .mobile-menu .navigation button .off {
    display: none;
}

header .mobile-menu nav {
    position: fixed;
    top: 0;
    left: -80%;
    width: 80%;
    height: 100vh;
    background: var(--blue);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: ease 0.5s;
}
header .mobile-menu .open {
    left: 0;
}
header .mobile-menu nav ul li {
    margin-bottom: 15px;
}
header .mobile-menu nav ul li a {
    font-size: 30px;
    color: #000;
    position: relative;
}
header .mobile-menu nav ul li .active {
    font-weight: bold;
}
header .mobile-menu nav ul li .active::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    left: 0;
    bottom: -3px;
    border-radius: 2px;
    /* background: var(--blue); */
    background: #041a3f;
    transform: scale3d(1, 1, 1);
}
header .mobile-menu nav ul li .active::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 3px;
    left: 25%;
    bottom: -8px;
    border-radius: 2px;
    /* background: var(--blue); */
    background: #041a3f;
    transform: scale3d(1, 1, 1);
}
header .desktop-menu {
    width: 100%;
    max-width: 1500px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .desktop-menu .logo {
    width: 100%;
    max-width: 184px;
}
header .desktop-menu .logo img {
    width: 100%;
}
header .desktop-menu nav ul {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
header .desktop-menu nav ul li {
    margin: 0 10px;
}
header .desktop-menu nav ul li a {
    font-size: 20px;
    position: relative;
    /* color: #000; */
    color: #041a3f;
}
header .desktop-menu nav ul li a:hover {
    font-weight: bold;
    /* color: var(--blue); */
    color: #041a3f;
}
header .desktop-menu nav ul li a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    left: 0;
    bottom: -3px;
    border-radius: 2px;
    /* background: var(--blue); */
    background: #041a3f;
    transform: scale3d(0, 1, 1);
    transform-origin: center;
    transition: all ease 0.5s;
}
header .desktop-menu nav ul li a::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 3px;
    left: 25%;
    bottom: -8px;
    border-radius: 2px;
    /* background: var(--blue); */
    background: #041a3f;
    transform: scale3d(0, 1, 1);
    transform-origin: center;
    transition: all ease 0.5s;
}
header .desktop-menu nav ul li a:hover::before {
    transform: scale3d(1, 1, 1);
}
header .desktop-menu nav ul li a:hover::after {
    transform: scale3d(1, 1, 1);
}
header .desktop-menu nav ul li .active {
    font-weight: bold;
}
header .desktop-menu nav ul li .active::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    left: 0;
    bottom: -3px;
    border-radius: 2px;
    /* background: var(--blue); */
    background: #041a3f;
    transform: scale3d(1, 1, 1);
}
header .desktop-menu nav ul li .active::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 3px;
    left: 25%;
    bottom: -8px;
    border-radius: 2px;
    /* background: var(--blue); */
    background: #041a3f;
    transform: scale3d(1, 1, 1);
}
@media (max-width: 760px) {
    header .desktop-menu {
        display: none;
    }
    header .mobile-menu {
        display: flex;
    }
}
/* END HEADER */

/* INTRO */
.intro {
    width: 100%;
    height: 70vh;
    background: url("../img/banner-home2.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    background-color: #fff;
    padding-top: 80px;
}
.intro .center {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 150px;
}
.intro .center h1 {
    max-width: 1000px;
    text-align: center;
    font-weight: bold;
    color: #041a3f;
    font-size: 40px;
}
@media (max-width: 500px) {
    .intro {
        height: 50vh;
        background-size: 200%;
    }
    .intro .center {
        padding-bottom: 0;
    }
    .intro .center h1 {
        padding: 0 15px 50px 15px;
        font-size: 20px;
    }
}
/* FOOTER */
footer {
    width: 100%;
    min-height: 215px;
    /* background: var(--blue); */
    background: #041a3f;
}
footer .title {
    text-align: center;
    padding-top: 23px;
}
footer .title .text h5 {
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
}
footer .title ul {
    padding: 0;
    margin: 0;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
}
footer .title ul li a {
    color: #ffffff;
    font-size: 25px;
    margin: 0 10px;
}
footer .links {
    padding-top: 20px;
    width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media (max-width: 760px) {
    footer .links {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
    }
    footer .links ul {
        width: 100%;
        display: flex;
        align-items: center;
        flex-direction: column;
    }
}
footer .links ul {
    padding: 0;
    margin: 0;
}
footer .links ul li {
    color: #ffffff;
    margin-bottom: 10px;
}
footer .links ul li a {
    color: #ffffff;
}
footer .links ul li a i {
    margin-right: 10px;
}
footer .copy-area {
    width: 100%;
    padding: 5px 0;
    margin-top: 10px;
    text-align: center;
    background: #fffffd;
}
footer .copy-area p {
    margin: 0;
    padding: 0;
    color: #000000;
}
footer .copy-area span {
    margin-left: 40px;
}
@media (max-width: 760px) {
    footer .copy-area span {
        margin-left: 0;
    }
}
footer .copy-area span a {
    color: var(--blue);
    font-weight: bold;
}
/* FOOTER */
