#welcomeSec {
    position: relative;
    margin-bottom: var(--space-between-sections);
    padding-block: var(--space-between-sections);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    overflow: hidden;
    text-align: center;
}

#welcomeSec:before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: #edf0f4;
    position: absolute;
    top: 0;
    left: 0;
}

#welcomeSec span.verticalTitle {
    display: none;
    font-size: var(--font-vertical-size);
    color: var(--text-color);
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    position: absolute;
    top: 50%;
    left: calc(var(--container-padding) / 2);
    z-index: 2;
    writing-mode: vertical-rl;
    transform: translateX(-50%) translateY(-50%) rotate(-180deg);
}

#welcomeSec .welcome {
    display: flex;
    justify-content: center;
}

#welcomeSec .welcome .image {
    position: relative;
    width: 100%;
}

#welcomeSec .welcome img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#welcomeSec .welcome .thumb1 {
    float: right;
    width: 70%;
}

#welcomeSec .welcome .thumb1 img {
    width: 100%;
    height: auto;
}

#welcomeSec .welcome .thumb2 {
    width: 63%;
    position: absolute;
    bottom: 0;
    left: 0;
}

#welcomeSec .welcome .thumb2 img {
    width: 100%;
    height: auto;
}

#welcomeSec .welcome .content {
    position: relative;
    width: 80%;
}

#welcomeSec .welcome .content h1 {
    margin: 0 0 20px 0;
    font-size: var(--font-title-size);
    color: var(--primary-color);
    font-weight: 500;
    line-height: 70px;
    text-transform: uppercase;
}

#welcomeSec .welcome .content h2 {
    margin: 0 0 20px 0;
    font-size: var(--font-subtitle-size);
    color: var(--primary-color);
    font-weight: 500;
    line-height: 25px;
}

#welcomeSec .welcome .content p {
    margin: 0 0 20px 0;
    font-size: var(--font-text-size);
    color: var(--primary-color);
    font-weight: 400;
    line-height: 28px;
}

#welcomeSec .welcome .content p:last-child {
    margin-bottom: 0;
}

#welcomeSec .welcome .content a.button {
    display: inline-block;
    padding: 18px 43px;
    border: 2px solid var(--secondary-color);
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 500;
    line-height: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all .3s ease-in-out;
}

#welcomeSec .welcome .content a.button:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
}

#welcomeSec .welcome .description {
    display: inline-block;
}




/* #iPad Pro - Large Screens beyond 1024px
================================================== */
@media only screen and (min-width: 959px) and (max-width: 1180px) {

    #welcomeSec span.verticalTitle {
        font-size: 13px;
        left: 4px;
        transform: translateX(0) translateY(-50%) rotate(-180deg);
    }

    #welcomeSec .welcome .content h1 {
        font-size: 50px;
        line-height: 60px;
    }

    #welcomeSec .welcome .content h2 {
        font-size: 18px;
        line-height: 23px;
    }

    #welcomeSec .welcome .content p {
        font-size: 16px;
        line-height: 26px;
    }

}



/* #Tablet (Portrait)
================================================== */
/* Note: Design for a width of 768px */
@media only screen and (min-width: 768px) and (max-width: 959px) {

    #welcomeSec span.verticalTitle {
        display: none;
    }

    #welcomeSec .welcome {
        align-items: flex-start;
    }

    #welcomeSec .welcome .content {
        padding: 70px 0;
        padding-right: 30px;
    }

    #welcomeSec .welcome .content h1 {
        font-size: 40px;
        line-height: 50px;
    }

    #welcomeSec .welcome .content h2 {
        font-size: 17px;
        line-height: 22px;
    }

    #welcomeSec .welcome .content p {
        font-size: 16px;
        line-height: 26px;
    }

    #welcomeSec .welcome .content a.button {
        padding: 10px 15px;
    }

}


/*  #Mobile (Portrait)
================================================== */
/* Note: Design for a width of 320px */
@media only screen and (max-width: 767px) {

    #welcomeSec span.verticalTitle {
        display: none;
    }

    #welcomeSec .welcome {
        flex-direction: column;
    }

    #welcomeSec .welcome .image {
        width: 100%;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    #welcomeSec .welcome .content {
        width: 100%;
        padding: 30px 0 50px 0;
        padding-right: 0;
    }

    #welcomeSec .welcome .content h1 {
        line-height: 40px;
    }

    #welcomeSec .welcome .content h2 {
        line-height: 22px;
    }

    #welcomeSec .welcome .content p {
        line-height: 26px;
    }

    #welcomeSec .welcome .content a.button {
        padding: 10px 15px;
    }

}

@media (max-width: 992px) {
    #welcomeSec {
        padding-block: unset;
    }

    #welcomeSec .welcome .content {
        padding-bottom: 30px;
    }
}