html, body, .container {
    width: 100dvw;
    height: 100dvh;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container {
    display: grid;
    grid-template-columns: 3fr 5fr;
}

.container-info {
    width: 100%;
    height: 100%;
    padding-top: 63px;
    padding-left: 100px;
}

.container-info .icons {
    width: 519px;
    height: 110px;
}

.container-info .icons img:nth-child(1) {
    width: 268px;
    height: 104px;
}

.container-info .icons img:nth-child(2) {
    width: 221px;
    height: 110px;
    margin-left: 24px;
}

.text {
    text-align: left;
    font-family: 'Jost';
    font-style: normal;
    font-weight: bold;
    font-size: 60px;
    color: rgba(59,164,255,1);
    margin-top: 10vh;
}

.text-2 {
    color: rgba(0,0,0,1);
    margin-top: -5px;
}

.decorative-line {
    position: absolute;
    left: 0;
    bottom: 40px;
}


.container-image {
    overflow: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.container-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}