@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;900&display=swap');


html, body { 
    margin: 0;
    padding: 0;
    background-color:  rgb(255, 255, 255);
    font-family: 'Roboto', sans-serif;
    color: rgb(20, 20, 20);
}

h1, h2 {
    font-weight: normal;
    font-style: normal;
}

em {
    font-weight: bold;
    font-style: italic;
}

#hero {
    /* Sizes */
    height: 80vh;
    width: 100% + 2px;

    background-color: rgb(245, 245, 245);
    border-bottom: 1px solid rgb(236, 236, 236);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#hero h1 { 
    font-weight: normal;
    text-align: center;
}

#intro {
    background-color: rgb(246, 246, 246);
    padding: 10px 10%;
}

.content-wrapper {
    width: 80%;
    max-width: 1000px;
    margin: 0 auto 0 0;
    padding: 20px;
}

.hero-icon { 
    margin-top: 30px;
}

.container { 
    display: flex;
    flex-direction: row;
}


.svg-wrapper {
    margin: 0 0 0 20px;
    padding: 20px 0 20px 0;
    box-sizing: border-box;
    width: 350px;
    height: 70vh;
    background-color: rgb(255, 255, 255);
    position: relative;
    display: flex; 
    align-items: center;
    justify-content: center;
}

.svg-wrapper svg { 
    margin: 0;
    position: absolute;
    top: 50%;
    width: 100%;
    height: 100%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.icon { 
    border-radius: 50%;
    height: 60px;
    width: 60px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    z-index: 1;
}

.text-wrapper {
    width: 100%;
    margin-left: 200px;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.text-wrapper h1 {
    position: relative;
    font-weight: bolder;
    z-index: 10;
}

.text-wrapper h1:before {
    content: "";
    display: block;
    width: 200px;
    height: 5px;
    background-color: rgba(18, 126, 188, 0.843);
    z-index: -1;
}

.text-wrapper span {
    font-weight: bolder;
}

/* If device is a phone, display node .svg-wrapper */
@media only screen and (max-width: 600px) {
    .svg-wrapper {
        display: none;
    }
    .text-wrapper {
        margin-left: 0;
    }
}

#partners {
    background-color: rgb(245, 245, 245);
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

#partners img {
    margin-left: 20px;
}

footer {
    background-color: rgb(59, 59, 59);
    color: white;
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

footer div {
    margin: 0 40px 0 40px;
    display: flex;
    flex-direction: column;
}

footer div span {
    margin: 10px;
}