@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
    box-sizing: border-box;
    color: #292929;
    font-family: 'Poppins', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    padding: 0px 10rem;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

.element {
    width: 100px;
    height: 6px;
    background-color: #edf0f4;
    margin-top: 44px;
    border-radius: 7px;
}

/* HEADER */
.header {
    border-bottom: 1px solid #E2E8F0;
    padding: 12px 24px 12px 0px;
    border-radius: 0px 0px 7px 7px;
    position: sticky;
    top: 0;
    z-index: 9999;
    background-color: #ffff;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hamburger {
    display: none;
}

.container-bar {
    background-color: #0064FF;
    padding: 6px 9px;
    border-radius: 9px;
}

.bar {
    opacity: 1;
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #ffffff;   
}

.navbar img {
    width: 180px;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px;
}

.nav-item {
    margin-left: 20px;
}

.nav-link {
    position: relative;
    font-size: 1rem;
    font-weight: 400;
    color: #7c7c7c !important;
    transition: all 2s;
}

.nav-link:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: '.';
    color: transparent;
    background: #0064FF;
    height: 1px;
}

.nav-link:hover:after {
    width: 100%;
}

.nav-link,
.nav-link:after,
.nav-link:before {
    transition: all .5s;
}

.nav-link:hover {
    color: #0064FF !important;
}

.nav-logo {
    font-size: 2.1rem;
    font-weight: 500;
    color: #0064FF;
}

/* MAIN - HOME */
.home {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.title {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    flex: 100%;
    width: 100%;
}

.title h1 {
    text-align: center;
    font-size: 36px;
    line-height: 48px;
    font-weight: 700;
    color: #0064FF;
    margin: 64px 0px 16px 0px;
}

.title p {
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: #7C7C7C;
    margin: 0px 0px 32px 0px;
}

figure {
    flex: 50%;
    margin: 0px 56px 0px 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 40px;
    padding-right: 50px;
}

.carousel-item img {
    width: 700px;
    border-radius: 10px;
}

figure q {
    font-style: italic;
    color: #c6d1db;
    font-weight: 300;
    font-size: 16px;
    width: 100%;
    /* text-align: center; */
    margin: 24px 24px 56px 60px;
    padding: 0px 0px 0px 60px;
}

figure .profile {
    display: flex;
    flex-wrap: wrap;
    padding: 0px 0px 0px 50px;
}

figure .profile img {
    border-radius: 50%;
    width: 8%;
    aspect-ratio: 1/1;
    object-fit: contain;
    margin: 0px 15px 0px 0px;
}

figure .profile div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

figure h2 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
}

figure p {
    margin: 0;
    font-size: 14px;
    font-style: italic;
}

aside {
    flex: 25%;
    padding: 48px;
    border-radius: 7px;
    background-color: #edf0f4;
}

aside h2 {
    font-size: 28px;
    font-weight: 700;
}

aside p {
    font-size: 14px;
    color: #7C7C7C;
    font-weight: 400;
    margin-bottom: 56px;
}

aside form label {
    font-size: 14px;
    font-weight: 700;
}

aside form input {
    margin-bottom: 16px;
    border: 2px solid #c6d1db;
    padding: 10px;
    width: 100%;
    border-radius: 4px;
    font-size: 16px;
}

aside form input::placeholder {
    color: #c6d1db;
}

aside form select {
    margin-bottom: 32px;
    border: 2px solid #c6d1db;
    font-size: 1rem;
    padding: 10px;
    width: 100%;
    border-radius: 4px;
}

.button {
    font-weight: 500;
    font-size: 20px;
    background-color: #29323d;
    padding: 10px;
    color: #edf0f4;
}

footer {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

footer h2 {
    width: 600px;
    font-size: 14px;
    font-weight: 700;
    flex: 50%;
    line-height: 20px;
}

footer div {
    flex: 50%;
}

footer ol {
    max-width: 370px;
    counter-reset: my-awesome-counter;
    list-style: none;
}

footer ol li {
    line-height: 20px;
    margin: 0 0 0.5rem 0;
    counter-increment: my-awesome-counter;
    position: relative;
    font-size: 14px;
    padding-left: 35px;
    margin: 20px 0px 30px 0px;
    color: #7C7C7C;
}

footer ol li::before {
    content: counter(my-awesome-counter);
    color: #292929;
    font-size: 1.5rem;
    font-weight: 700;
    position: absolute;
    --size: 50px;
    left: calc(-1 * var(--size) + 10px);
    line-height: var(--size);
    width: var(--size);
    height: var(--size);
    top: 0;
    background: #c6d1db;
    border-radius: 50%;
    text-align: center;
}

/* MAIN - OUR PACKAGE */
.our-package {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-bottom: 90px;
    border-bottom: 1px solid #E2E8F0;
    padding-top: 80px;
}

.our-package h1 {
    background-color: #edf0f4;
    width: 100%;
    color: #0064FF;
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    padding: 60px 0px 80px 0px;
    margin-bottom: 36px;
}

.our-package ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0px;
}

.our-package ul li {
    display: flex;
    flex-direction: row;
    align-items: start;
    flex: 25%;
    margin-left: 20px;
}

.our-package ul li i {
    margin-right: 20px;
}

.our-package ul li div h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 0px 0px 10px 0px;
}

.our-package ul li div p {
    font-size: 14px;
    margin: 0px 0px 10px 0px;
    width: 300px;
    color: #656565;
}

/* MAIN - CALL US */
.call-us {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-bottom: 1px solid #E2E8F0;
    padding-bottom: 56px;
}

.call-us h1 {
    font-size: 36px;
    color: #0064FF;
    font-weight: 700;
    margin: 56px 0px 24px 0px;
    text-align: center;
}

.call-us p {
    text-align: center;
    margin: 0px 0px 56px 0px;
    width: 60%;
    color: #656565;
}

.call-us .button {
    width: 30%;
}

.call-us .button a {
    color: #edf0f4;
}

/* FOOTER */
.footer {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.footer .terms {
    display: flex;
    flex-direction: row;
}

.footer .terms p,
.footer p {
    margin: 10px;
    font-size: 14px;
    padding: 0;
}

/* RESPONSIVE */
@media only screen and (max-width: 1319px) {
    body {
        padding: 0px 40px;
    }

    .home {
        flex-direction: column;
    }

    figure {
        order: 1;
        display: flex;
        padding: 0;
    }

    figure q {
        text-align: center;
        padding: 0;
    }

    figure .profile {
        justify-content: center;
        padding: 0;
    }

    aside {
        order: 3;
        margin-bottom: 40px;
    }

    footer {
        order: 2;
        flex-direction: column;
        align-items: center;
    }

    footer h2 {
        text-align: center;
    }

    footer div {
        display: none;
    }
}

@media only screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 5rem;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        border-radius: 10px;
        text-align: center;
        transition: 0.3s;
        box-shadow:
            0 10px 27px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        left: 0;
        padding-bottom: 30px;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        -webkit-transform: translateY(8px) rotate(45deg);
        transform: translateY(8px) rotate(45deg);
        opacity: 1;
    }

    .hamburger.active .bar:nth-child(3) {
        -webkit-transform: translateY(-8px) rotate(-45deg);
        transform: translateY(-8px) rotate(-45deg);
        opacity: 1;
    }

    .call-us p {
        width: 80%;
    }

    body {
        padding: 0px 20px;
    }

    .home {
        align-items: center;
    }

    figure {
        width: 90%;
    }

    footer h2 {
        width: 400px;
    }

    figure q {
        margin: 24px 24px 56px 24px;
    }

    .call-us .button {
        width: 80%;
    }

    .our-package ul {
        display: flex;
        flex-direction: column;
    }

    .our-package ul li {
        align-items: center;
        justify-content: center;
    }
}

@media only screen and (max-width: 416px) {
    .home {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .home {
        flex-wrap: nowrap;
    }

    .home .title h1 {
        font-size: 32px;
    }

    footer h2,
    footer ol {
        width: 300px;
    }

    .our-package ul li div p {
        width: 250px;
    }
}