/* HERO SECTION */
#hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 95vh;
    background-color: var(--secondary-color);
    color: var(--text-white);
}

.hero-video video {
    width: 30vw;
}

@media only screen and (max-width: 768px) {
    .hero-video video {
        width: 65vw;
    }

    #hero-section svg {
        height: 70px;
    }

    .hero-text {
        padding: 0 30px;
    }
}

/* DIVIDER */
#divider-1-section p {
    font-size: 30px;
    color: var(--text-white);
    font-weight: lighter;
}

@media only screen and (max-width: 768px) {
    #divider-1-section p {
        font-size: 18px;
        color: var(--text-white);
        font-weight: lighter;
    }
}

#ppl-working {
    width: 90%;
}

.divider-multiple-img {
    width: 80%;
}

@media only screen and (max-width: 768px) {
    .divider-multiple-img {
        width: 90%;
    }
}

.divider-single-img {
    width: 90%;
}

/* PROCESS SECTION */
#process-section {
    background-color: var(--secondary-color);
    padding-top: 30vh;
}

@media only screen and (max-width: 768px) {
    #process-section {
        padding-top: 7vh;
    }

    #process-section svg {
        height: 70px;
    }
}

#process-section h2 {
    text-align: left;
    font-size: 75px;
    color: var(--text-white);
    margin-left: 10vw;
}

#process-section > .title + .container-fluid {
    margin-top: 18vh;
}

@media only screen and (max-width: 768px) {
    #process-section > .title + .container-fluid {
        margin-top: 5vh;
    }
}

.process-step {
    margin-bottom: 15vh;
}

.process-number {
    font-size: 100px;
    font-weight: 600;
    color: var(--primary-color);
}

.process-title {
    font-size: 60px;
    font-weight: bold;
    color: var(--text-white);
}

.process-text {
    font-size: 20px;
    font-weight: lighter;
    color: var(--text-white);
}

@media only screen and (max-width: 768px) {
    .process-number {
        font-size: 60px;
    }

    .process-title {
        font-size: 30px;
    }

    .process-text {
        font-size: 16px;
    }

    .process-step {
        margin-bottom: 3vh;
    }
}

.triple-office-bg {
    background-image: url(../img/triple-office.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.arrow-bg {
    /* background-image: url(../shape/arrow.svg);
    background-repeat: no-repeat;
    background-position-x: 32.5vh; */
    padding-top: 5vh;
    margin-top: 3vh !important;
    padding-left: 120px !important;
    padding-right: 250px !important;
}

@media only screen and (max-width: 768px) {
    .arrow-bg {
        background-position-x: 5vh;
        background-size: contain; 
        padding-left: 40px !important;
        padding-right: 20px !important;
    }
}

/* CONTACT SECTION */
#contact-section {
    background-color: var(--fifth-color);
}

#contact-section img {
    width: 35vw;
}

#contact-section .subtitle {
    font-size: 50px;
    font-weight: bold;
}

@media only screen and (max-width: 768px) {
    #contact-section .subtitle {
        font-size: 25px;
    }
}

.contact-text {
    padding-top: 50px;
    font-size: 22px;
    font-weight: 400;
    max-width: 23ch;
    word-wrap: break-word;
}

.contact-text + .btn-orange {
    border-radius: 25px;
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 8px 20px;
}

@media only screen and (max-width: 768px) {
    .contact-text {
        font-size: 16px;
        padding-top: 25px;
    }

    .contact-text + .btn-orange {
        font-size: 16px;
    }
}

#contact-img {
    max-height: 60vh;
    height: auto;
    width: auto;
    max-width: 100%;
    object-fit: contain; 
}