/* ---MAIN STYLES--- */

.main_section {
    padding: 10vw 6vw 7vw 12vw;
    background: var(--black);
}

.main_section .title_box {
    align-items: center;
}

.main_section .title_box * {
    text-align: center;
}

@media (max-width: 996px) {
    .main_section {
        padding: 30vw 10vw 15vw 10vw;
        background: var(--black);
    }

    .main_section .title_box {
        align-items: center;
    }

    .main_section .title_box * {
        text-align: center;
    }
}



/* ---ABOUT STYLES--- */

.about_section {
    padding: 7vw 6vw 7vw 12vw;
}

.about_section .about_box {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3vw;
}

.about_section .info_box {
    justify-content: center;
}

.about_section .media_box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about_section .media_item {
    position: relative;
    width: 100%;
    height: 40vw;
}

@media (max-width: 996px) {
    .about_section {
        padding: 15vw 10vw
    }
    .about_section .about_box {
        grid-template-columns: 1fr;
        gap: 10vw;
    }
    .about_section .media_item {
        height: 100vw;
    }
}




/* ---FORM STYLES--- */

.form_section {
    padding: 7vw 6vw 3.5vw 12vw;
    background: var(--black);
}

.form_section .form_box {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 3vw;
    padding: 5vw;
    background: var(--dark);
}

.form_section .form_box>svg {
    position: absolute;
    top: 0;
    right: 0;
    width: 15vw;
    transform: scale(-1);
}

.form_section .form_content {
    display: flex;
    gap: 2vw;
    flex-wrap: wrap;
}

.form_section .half_box {
    width: calc(50% - 1vw);
}

.form_section .full_box {
    width: 100%;
}

.form_section label {
    color: var(--gray);
    font-size: .8vw;
}

.form_section input {
    color: var(--white);
    font-weight: lighter;
    width: 100%;
    font-size: 1vw;
    border: none;
    background: none;
}

.form_section textarea {
    color: var(--white);
    font-weight: lighter;
    width: 100%;
    font-size: 1vw;
    border: none;
    background: none;
    resize: vertical;
    min-height: 5vw;
    max-height: 15vw;
}

.form_section :focus-visible {
    outline: none;
}

.form_section ::placeholder {
    color: #ffffff20;
    font-weight: lighter;
    transition: .25s;
}

.form_section :focus-visible::placeholder {
    color: #ffffff50;
}

.form_section .input_item {
    display: flex;
    padding: 1.25vw 0;
    border-bottom: .025vw solid #ffffff20;
}

.form_section .input_item i {
    color: var(--gray);
    font-size: 1.2vw;
}

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

.form_section .actions_box p {
    width: 40%;
    font-size: .8vw;
}

.form_section .message_box {
    display: none;
    padding: 1vw;
    background: var(--white);
    transition: .25s;
}

.form_section .message_box p {
    color: var(--white);
    text-align: center;
}

@media (max-width: 996px) {
    .form_section {
        padding: 15vw 10vw;
    }

    .form_section .form_box {
        gap: 10vw;
        padding: 5vw;
    }

    .form_section .form_box>svg {
        width: 22vw;
    }

    .form_section .form_content {
        gap: 5vw;
    }

    .form_section .half_box,
    .form_section .full_box {
        width: 100%;
    }

    .form_section label {
        font-size: 2.5vw;
    }

    .form_section input {
        font-size: 3.5vw;
    }

    .form_section textarea {
        font-size: 3.5vw;
        min-height: 20vw;
        max-height: 100vw;
    }

    .form_section .input_item {
        padding: 3vw 0;
        border-bottom: .3vw solid var(--gray);
    }

    .form_section .input_item i {
        font-size: 4vw;
    }

    .form_section .actions_box p {
        width: 100%;
        font-size: 2.5vw;
    }

    .form_section .actions_box {
        flex-direction: column;
        align-items: flex-start;
        gap: 5vw;
    }

    .form_section .message_box {
        padding: 5vw;
    }

    .form_section .message_box p {
        font-size: 3vw;
        text-align: left;
    }
}