* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;  
    font-style: normal;      
    font-size: 18px;
    background: #E5193F;
    background: linear-gradient(90deg, rgba(229, 25, 63, 1) 0%, rgba(201, 34, 113, 1) 50%, rgba(151, 63, 140, 1) 100%);
    padding: 2.5vw;
    overflow-x: hidden;
}

.wrapper {    
    background-color: #fff;
    border-radius: 20px;
    padding: 2.5vw;
    flex: 1;    
}

#header {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #E5193F;
    padding-bottom: 30px;
}

#content {
    margin-top: 30px;
    width: 100%;
    gap: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}



.social  ul{
    list-style: none;
    padding-left: 0;
}

.social  ul li img {
    height: 35px;
}

#content .col-left {
    display: flex;
    flex-direction: column;
    gap: 50px;
}
#content .col-left p.lead{
    font-size: clamp(20px, 2vw, 900px);
    
}

#content .col-left p{
    line-height: 1.4;
    font-size: clamp(17px, 1.3vw, 900px);
}

#content .col-left a {
    color: rgba(229, 25, 63, 1);
    text-decoration: underline;
}

#content .col-right {
    text-align: center;
}
#content .col-right img{
    width: auto;
    height: 60vh;    
}

@media (max-width: 767px) {
    #header {
        padding-bottom: 15px;
    }
    #logo_wrapper img{
        max-width: 210px;
    }
    .wrapper {            
        padding: 4.5vw;
    }
    #content .col-left {
        gap: 25px;
    }
    #content {
        margin-top: 15px;
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .social  ul li img {
        height: 28px;
    }


    #content .col-right img {
        height: 50vh;
    }

}