@import url('https://fonts.googleapis.com/css?family=Lato:400,700|Varela+Round&display=swap');

/*font-family: 'Varela Round', sans-serif;
font-family: 'Lato', sans-serif;*/

body {
    margin: 0;
    padding: 0;
    padding-top: 64px;
    height: 100vh;
    background-image: url(images/background.jpg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: auto;
    background-attachment: fixed;
}


/*html {
    height: 100%;
    background-image: url(images/background.jpg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: 100%;
}*/

h2 {
    font-size: 19px;
    font-family: 'Varela Round', sans-serif;
    color: #20386a;
}

h4 {
    font-size: 16px;
    font-family: 'Varela Round', sans-serif;
    color: #20386a;
}

h5 {
    font-size: 16px;
    font-family: 'Varela Round', sans-serif;
    color: #20386a;
}

a,
.pinktext {
    color: #ee4c9b;
}

p {
    font-size: 13px;
     font-family: 'open sans', sans-serif;
    color: #20386a;
}

ul,
li {
    font-size: 13px;
       font-family: 'open sans', sans-serif;
    color: #20386a;
}

.container {
    margin: 0 auto;
    width: 50%;
    display: block;
}

.title {
    text-align: center;
}

.main-content {
    display: flex;
}

.main-content-left-column {
    flex: 0 38%;
    padding-right: 12%;
}

.main-content-right-column {
    flex: 0 50%;
}

h5 {
    font-size: 16px;
    font-family: 'Varela Round', sans-serif;
    color: #20386a;
    margin-bottom: -10px;
}

ul {
    margin-bottom: 50px;
}

a.email {
    text-decoration: none;
    font-size: 16px;
    color: #ee4c9b;
    transition: 0.4s;
    margin-bottom: -8px;
    display: block;
    font-family: 'Varela Round', sans-serif;
}

a.email:hover {
    color: #20386a;
}

a.phone {
    text-decoration: none;
    font-size: 18px;
    color: #20386a;
    transition: 0.4s;
    font-family: 'Varela Round', sans-serif;
}

a.phone:hover {
    color: #ee4c9b;
}

.title {
    margin-bottom: 87px;
    -webkit-animation: fadein 2s;
    /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 2s;
    /* Firefox < 16 */
    -ms-animation: fadein 2s;
    /* Internet Explorer */
    -o-animation: fadein 2s;
    /* Opera < 12.1 */
    animation: fadein 2s;
}

.bottom-content {
    margin-top: 40px;
}

.bottom-social {
    text-align: center;
    margin-top: 40px;
}

.bottom-social a {
    margin: 0 10px;
    transition: 0.4s;
}

.bottom-social a:hover {
    opacity: 0.6;
}


/* animation */

@keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* Firefox < 16 */

@-moz-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* Safari, Chrome and Opera > 12.1 */

@-webkit-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* Internet Explorer */

@-ms-keyframes fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* responsive */

@media only screen and (max-width: 959px) {
    .container {
        margin: 0 auto;
        width: 50%;
        width: 90%;
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .main-content {
        display: flex;
        display: block;
    }
    .main-content-right-column {
        text-align: center;
    }
    .main-content-left-column {
        text-align: center;
        margin-bottom: 34px;
    }
    .main-content-left-column {
        flex: 0 42%;
        padding-right: 0%;
    }
    ul {
        list-style-type: none;
        margin-left: -29px;
    }
    .bottom-social {
        text-align: center;
        margin-top: 40px;
        margin-bottom: 100px;
    }
}