* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: #F5F5FA;
    background-image: url(images/background.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: calc(100vh-60px);
}

p, h3 {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

h1, h2 {
    font-family: 'Rubik', sans-serif;
    text-align: center;
}

h1 {
    font-size: 84px;
    line-height: 70px;
    text-align: center;
    color: #0B083C;
    margin-top: 24px;
    margin-bottom: 24px;
    max-width: 700px;
}

#logo-container {
    display: flex;
    justify-content: center;
    margin-top: 64px;
    margin-bottom: 116px;
}

#headline-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 100%;
    margin-bottom: 110px;
}
#headline-container p {
    font-size: 20px;
    color: #424345;
    font-weight: 500;
}

.contact-info {
    background: white;
    box-shadow: 0px 4px 8px rgba(11, 8, 59, .08);
    width: 305px;
    height: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
}

.contact-info-container {
    max-width: 629px;
    display: flex;
    justify-content: space-between;
    margin: auto;
}

.contact-info img {
    margin-top: 36px;
}

.contact-info h3{
    color: #1F1E2C;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: .64px;
    margin-top: 24px;
}

.contact-info p {
    color: #1D1B30;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    margin-top: 12px;
    max-width: 212px;
}

.contact-info.phone p {
    max-width: 130px;
}

#contact-info-container h2 {
    font-size: 18px;
    font-weight: 500;
    color: #9B9B9D;
}

#contact-us {
    display: flex;
    width: 100%;
    max-width: 629px;
    margin: auto;
    align-items: center;
    align-content: center;
    margin-bottom: 16px;
}

#contact-us h2 {
    min-width: 118px;
    margin: 0 24px;
}

#contact-us span {
    display: block;
    width: 100%;
    height: 1px;
    background: #9A9A9C;
    opacity: .3;
}


/*RESPONSIVENESS*/

@media screen and (max-width: 800px){
    h1 {
        font-size: 72px;
        line-height: 60px;
    }
}

@media screen and (max-width: 700px){
    #logo-container {
        margin-bottom: 48px;
    }
    h1 {
        font-size: 36px;
        max-width: 298px;
        line-height: 32px;
        margin-top: 16px;
        margin-bottom: 20px;
    }
    #headline-container p {
        font-size: 15px;
    }
    
    #headline-container {
        margin-bottom: 44px;
        
    }
    
    #contact-info-container {
        max-width: 304px;
        margin: auto;
        margin-bottom: 40px;
    }
    
    .contact-info-container {
        flex-direction: column;
    }
    #contact-us {
        margin-bottom: 12px;
    }
    .contact-info.phone {
        margin-top: 12px;
    }
    
    .contact-info {
        
    }
}


