/*Load google font*/
@import url('https://fonts.googleapis.com/css?family=Nunito:200,600');

/* Reset Styles */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

a {
    text-decoration: none;
    text-transform: none;
    color: #4A90E2;
}

body {
    line-height: 1;
    font-family: 'Nunito', ubuntu, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Open Sans, Helvetica Neue, sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    font-size: 19px;
    background-color: #FEFEFE;
    color: #04143A;
}

ol, ul {
    list-style: none;
}

strong {
    font-weight: 600;
}

div, footer {
    box-sizing: border-box;
}

/* Reset ends */

.container {
    max-width: 1100px;
    height: auto;
    margin: 60px auto;
}

h1.name {
    font-size: 70px;
    font-weight: 300;
    display: inline-block;
}

.telegram {
    display: block;
    font-size: 24px;
    font-weight: 300;
    color: #81899C;
    margin-top: 10px;
}

.intro {
    font-size: 44px;
    font-weight: 300;
    margin-top: 60px;
    line-height: 55px;
}

.sections {
    vertical-align: top;
    display: inline-block;
    width: 49.7%;
    height: 450px;
}

.section-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.content div {
    width: 70%;
}

.content div p, footer p {
    font-size: 16px;
    color: #81899C;
    line-height: 22px;
    margin: 0 0 15px 0;
}

.content div ul li {
    font-size: 16px;
    color: #81899C;
    line-height: 22px;
    margin: 0 0 10px 0;
}

/* Media queries*/

@media (max-width: 1024px) {
    .container {
        padding: 15px;
        margin: 0px auto;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
        margin: 0px auto;
    }

    .content, .sections {
        width: 100%;
        height: auto;
        margin: 10px 0;
        float: left;
    }

}


@media (max-width: 425px) {
    h1.name {
        padding-top: 20px;
        font-size: 40px;
    }

    .content, .sections {
        width: 100%;
        height: auto;
        margin: 10px 0;
        float: left;
    }

    .content div {
        width: 100%;
    }


    .section-title {
        margin-bottom: 0;
    }

    .intro {
        margin-top: 15px;
        font-size: 20px;
        line-height: 28px;
    }

    .container {
        margin: 0px;
        padding: 0 15px;
    }

    footer {
        margin-top: 2050px;
    }
}