/* GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;

    a,
    a:link,
    a:visited,
    a:hover,
    a:active {
        text-decoration: none !important;
    }

    span,
    p,
    h1,
    h2 {
        text-decoration: none;
    }

    h1 {
        font-size: 50px;
        font-weight: 600;
    }

    h2 {
        font-size: 30px;
        font-weight: 500;
    }

    .logo {
        object-fit: cover;
        height: 50px;
        width: 150px;
    }

    .no-scroll {
        overflow: hidden;
    }
}

/* NAVBAR */
.navbar {
    display: flex;
    align-items: center;
    background-color: #fff;
    justify-content: space-between;
    height: 80px;
    padding: 20px 40px;
    width: 100%;

    /* NAV ITEMS */
    .items {
        flex: 1;
        display: flex;
        gap: 30px;
        justify-content: center;

        /* LINK */
        a {
            text-decoration: none;
            font-weight: 500;
            color: #000;
        }
    }

    .btn-menu {
        display: none;
    }

    .sidebar {
        display: none;
    }
}

/* MAIN */
.main {
    background-image: url("../src/assets/background.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: calc(100vh - 57px);
    display: flex;
    align-items: center;
    padding: 40px;

    /* CONTENT */
    .content {
        width: 500px;
        display: flex;
        flex-direction: column;
        gap: 25px;

        /* DESCRIPTION */
        .description {
            font-size: 20px;
            font-weight: 400;
            color: #333;
        }

        /* BUTTON */
        .btn-whatsapp {
            width: fit-content;
            padding-left: 70px;
            padding-right: 30px;
            height: 60px;
            border-radius: 50px;
            font-weight: 500;
            font-size: 16px;
            position: relative;
            background-color: transparent;
            cursor: pointer;
            border: 2px solid #212468;

            .icon {
                position: absolute;
                left: -10px;
                font-size: 30px;
                top: 50%;
                transform: translateY(-50%);
                padding: 14px;
                border-radius: 100%;
                background-color: #212468;
                color: #fff;
            }
        }
    }
}

/* ABOUT */
.about {
    height: 100vh;
    width: 100%;
    display: flex;

    /* IMAGE */
    .image {
        width: 50%;
        height: 100vh;
        object-fit: cover;
    }

    /* CONTENT */
    .content {
        width: 50%;
        height: 100vh;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        text-align: left;
        gap: 20px;
        padding: 0 60px;

        h3 {
            font-weight: 600;
            font-size: 30px;
        }

        p {
            font-size: 18px;
        }

        p,
        h3 {
            text-align: left;
        }
    }
}

/* BANNER */
.banner {
    display: flex;
    justify-content: space-around;
    background-color: #212468;
    color: #fff;
    padding: 70px 0;

    div {
        text-align: center;
        width: 120px;
        p {
            font-weight: 600;
            font-size: 28px;
        }
        span {
            font-weight: 360;
            font-size: 16px;
        }
    }
}

/* SERVICES */
.services {
    height: 100vh;
    display: flex;

    /* CONTENT */
    .content {
        width: 50%;
        height: 100%;
        display: flex;
        flex-direction: column;
        gap: 30px;
        justify-content: center;
        padding: 0 180px;

        h1 {
            font-size: 30px;
            text-align: left;
        }
        p {
            font-size: 20px;
            font-weight: 360;
        }

        /* ITEMS */
        .items {
            display: flex;
            flex-direction: column;
            gap: 10px;

            /* ITEM */
            .item {
                border-radius: 50px;
                width: 300px;
                border: 1px solid #000;
                font-weight: 600;
                font-size: 18px;
                display: flex;
                align-items: center;
                gap: 10px;
                padding: 2px;

                .icon {
                    padding: 4px;
                    border-radius: 100%;
                    background-color: #2c924c;
                    color: #fff;
                }
            }
        }
    }

    /* IMAGE */
    img {
        width: 50%;
        height: 100%;
        object-fit: cover;
    }
}

/* CONTACT */
.contact {
    height: 100vh;
    display: flex;
    h1 {
        font-size: 40px;
    }
    p {
        font-size: 20px;
    }

    /* FORMS */
    .forms {
        width: 50%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 120px;
        text-align: center;
        gap: 20px;

        form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            width: 70%;

            input {
                font-size: 20px;
                background-color: transparent;
                border: 1px solid #212468;
                border-radius: 8px;
                padding: 20px 10px;
            }

            button {
                background-color: #212468;
                color: #fff;
                border-radius: 8px;
                padding: 10px;
                font-weight: 600;
                width: 70%;
                align-self: center;
                cursor: pointer;
            }
        }
    }

    .divisor {
        width: 1px;
        background-color: #d9d9d9;
        height: 80%;
        align-self: center;
    }

    /* CONTACT ITEMS */
    .content {
        width: 50%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 120px;
        gap: 20px;

        .contact-items {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 20px;

            .contact-item {
                display: flex;
                align-items: center;
                gap: 10px;

                .icon {
                    font-size: 30px;
                }
            }
        }
    }
}

/* FOOTER */
footer {
    height: 400px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #212468;
    color: #fff;

    /* CONTNET */
    .content {
        display: flex;
        flex-direction: column;
        gap: 20px;
        h1 {
            font-size: 30px;
        }
        h2 {
            font-size: 20px;
        }
        p {
            font-size: 14px;
        }
    }

    /* SOCIAL MEDIA ITEMS */
    .social-media {
        a {
            text-decoration: none;
            color: #fff;
            font-size: 35px;
        }
    }
}

/* CREATED BY */
.created {
    width: 100%;
    background-color: #2d2e83;
    color: #fff;
    padding: 15px 0;
    text-align: center;
    a {
        text-decoration: none;
        color: #6c6edb;
    }
}
