.welcome_section {
    width: 100%;
    position: relative;
    margin-top: -48px;
}

.welcome_section .background_image {
    width: 100%;
    height: 100vh;
    /* clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 85% 90%, 0% 70%); */
    /* clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 8rem), 0% calc(100% - 16rem)); */
    display: flex;
    overflow: hidden;
    justify-content: center;
    align-items: flex-end;
    position: relative;
}

.welcome_section .background_image img {
    min-height: 100%;
    transform: rotateZ(180deg);
    position: absolute;
    bottom: -1px;
}

.welcome_section .content {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    color: var(--white);
}

.welcome_section .content .image {
    height: 100%;
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.welcome_section .content .image img {
    height: 80%;
}

.welcome_section .content .text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem
}

.welcome_section h1 {
    font-size: 4rem;
    text-shadow: 0px 3px 3px var(--black);
    margin-bottom: 1rem;
}

.welcome_section h5 {
    font-weight: 300;
    font-size: 1.5rem;
    color: var(--white);
    text-shadow: 0px 3px 3px var(--black);
    margin-bottom: 1rem;
}
.welcome_section p {
    line-height: 1.75rem;
}

.welcome_section .content .text .actions {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
}

.part_of_Welcome_section {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    padding: 8rem 0rem;
    flex-wrap: wrap;
}

.part_of_Welcome_section .item {
    width: 20%;
    padding: 1rem;
}

.part_of_Welcome_section .item .details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: .5rem;
    color: var(--blue);
}

.details div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.details svg {
    width: 28px;
    height: 28px;
}

.details .icon_light {
    width: 48px;
    height: 48px;
    padding: .75rem;
    border-radius: 50%;
    margin-bottom: 1rem;
    background-color: var(--light_blue);
    fill: var(--dark_blue);
    box-shadow: 0px 3px 6px #00000066;
}

.details .icon_dark {
    width: 48px;
    height: 48px;
    padding: .75rem;
    border-radius: 50%;
    margin-bottom: 1rem;
    background-color: var(--dark_blue);
    fill: var(--light_blue);
    box-shadow: 0px 3px 6px #00000066;
}

.part_of_Welcome_section p {
    margin: 0;
    text-align: center;
    font-size: .875rem;
}

@media only screen and (max-width: 1140px) {
    .welcome_section .background_image img {
        width: auto;
        height: 100%;
    }

    .welcome_section .content .image {
        height: 80%;
    }

    .welcome_section h5 {
        font-weight: 300;
        font-size: 1.25rem;
    }

    .part_of_Welcome_section .item {
        width: 45%;
    }
}

@media only screen and (max-width: 960px) {

    .welcome_section {
        margin-bottom: 12rem;
    }

    .welcome_section .content {
        flex-direction: column;
        justify-content: flex-start;
        margin-top: 5rem;
    }

    .welcome_section .content .text {
        align-items: center;
    }

    .welcome_section .content .image {
        height: 70%;
        width: 100%;
    }

    .welcome_section .content .image img {
        max-height: 90%;
        max-width: 100%;
    }

    .welcome_section .content .image img {
        height: 90%;
    }

    .welcome_section .content .text .actions {
        justify-content: center;
    }
}

@media only screen and (max-width: 720px) {

    .welcome_section {
        margin-bottom: 14rem;
    }
    .welcome_section .content .image {
        margin-top: -3rem;
    }
    .welcome_section .content .text h5 {
        font-weight: 300;
        text-align: center;
    }

    .welcome_section h5 {
        padding: 0rem 2rem;
    }

    .welcome_section p {
        text-align: center;
        padding: .25rem 1rem;
    }

    .part_of_Welcome_section {
        padding-top: 10rem;
    }

    .part_of_Welcome_section .item {
        width: 90%;
    }
}


@media only screen and (max-width: 448px) {

    .welcome_section {
        margin-bottom: 17rem;
    }
}
@media only screen and (max-width: 360px) {

    .welcome_section {
        margin-bottom: 20rem;
    }
}