.welcome {
    position: relative;
}

.welcome section.container {
    align-items: center;
    margin: auto;
    position: relative;
    overflow: visible;
}

.welcome section.container > .welcome-column:first-child {
    width: 60%;
}

.welcome section.container > .welcome-column:nth-child(2) {
    width: 40%;
    overflow: visible;
}

.welcome section.container > .welcome-column:nth-child(2) > picture {
    width: calc(100% + 10vw);
    margin-left: -5vw;
    max-width: calc(100vw * 0.4);
}

.welcome section.container > .welcome-column:nth-child(2) > picture > img {
    width: 100%;
}


.welcome .welcome-column {
    height: 100%;
    width: 50%;
    justify-content: center;
    font-style: normal;
    color: #333333;
}

.welcome .welcome-column h1 {
    font-family: Grifter;
    font-weight: 700;
    font-size: 40px;
    line-height: 130%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-align: center;
}

.welcome .welcome-column h2 {
    font-family: Avenir;
    font-weight: 450;
    font-size: 18px;
    line-height: 160%;
    display: flex;
    align-items: center;
    text-align: justify;
}

.welcome .welcome-column .icons-group {
    display: flex;
    column-gap: calc((100% - (4 * 115px))/3);
    margin-top: 25px;
    width: 100%;
}

/*115px - width of the icon card*/
.welcome .welcome-column .icons-group .icons-row {
    display: flex;
    column-gap: calc((100% - (2 * 115px)));
    width: 100%;
}

.welcome .welcome-column .icons-group .icons-row .icon {
    width: 110px;
    height: 110px;
    background-color: var(--main-blue);
    border-radius: 20px;
    box-sizing: border-box;
    justify-content: center;
    transition: box-shadow 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}

.welcome .welcome-column .icons-group .icons-row .icon:hover {
    box-shadow: inset 12em 0 0 0 var(--main-white);
    border: 1px solid var(--main-blue);
    color: var(--main-blue);
}


.welcome .welcome-column .icons-group .icons-row .icon > picture {
    max-height: 70px;
    align-self: center;
    padding-right: 10px;
    display: flex;
}

.welcome .welcome-column .icons-group .icons-row .icon > picture:hover {
    transform: scale(1.03);
    transition: transform .4s ease-in-out;
}

.welcome .welcome-column .icons-group .icons-row .icon > picture img {
    object-fit: contain;
}

.welcome .welcome-column .icons-group .icons-row .icon p {
    font-family: Grifter;
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 22px;
    text-align: center;
    text-transform: uppercase;
    color: var(--main-white);
}

.welcome .welcome-column .icons-group .icons-row .icon:hover p {
    color: var(--black-1);
}

@media only screen and (max-width: 1200px) {

    .welcome section.container {
        justify-content: center;
    }

    .welcome .welcome-column {
        width: 80% !important;
        padding: 20px;
        margin-left: 0;
    }

    .welcome section.container > .welcome-column:nth-child(2) {
        display: none !important;
        visibility: hidden !important;
    }

    .welcome .welcome-column h1 {
        font-size: 1.5em;
    }

    .welcome .welcome-column h2 {
        font-size: 1em;
        margin: 1rem 0;
    }
}

@media only screen and (max-width: 700px) {
    /*icon card height = 115px - hardcoded*/
    .welcome .welcome-column .icons-group {
        height: 250px;
        flex-direction: column;
        justify-content: space-between;
        margin-top: 0 !important;
    }

    .welcome .welcome-column .icons-group .icons-row {
        justify-content: center;
        column-gap: 0;
    }

    .welcome .welcome-column .icons-group .icons-row > .icon:first-child {
        margin-right: 10px;
    }
    .welcome .welcome-column .icons-group .icons-row > .icon:nth-child(2) {
        margin-left: 10px;
    }

}


@media only screen and (max-height: 550px) {
    article.welcome {
        height: 500px !important;
    }
}





    
