.header-text {
    line-height: 1.5em;
    font-weight: 700;
    letter-spacing: 3px;
    text-shadow: 2px 2px 2px rgba(0,0,0,0.75);
    font-size: 3.5em;
    color: #fff;
    margin-bottom: 150px;
}

.logo {
    margin: 25px 0 150px;
    max-width: 400px;
    height: auto;
}

.header {
    text-align: center;
}

.bg-holder {
    background-size: cover;
    padding-bottom: 500px;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-image: url('assets/nakama_pic.jpg');
}

body {
    margin: 0;
    font-family: 'Yantramanav', sans-serif;
    color: #303030;
    font-weight: 400;
    font-size: 19px;
}

* {
    box-sizing: border-box;
}

.contacts {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1070px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 100px;
}

.contacts .name, .number {
    display: block;
    font-size: 1.5em;
}

.contacts .name {
    margin-bottom: 15px;
}

.contacts .number {
    font-size: 1.2em;
    font-weight: 300;
}

.email {
    text-align: center;
    display: block;
    margin: 75px auto;
    font-size: 1.5em;
}

.footer {
    margin-left: auto;
    margin-right: auto;
    max-width: 1070px;
    text-align: center;
}

.footer-logo {
    height: 205px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 75px;
}

.footer-logo-holder {
    display: flex;
    align-items: center;
    justify-content: center;
    align-content: center;
}

.content {
    line-height: 2.2em;
    text-align: justify;
    font-weight: 300;
}

.content .column-heading {
    font-weight: 300;
}

.content strong {
    font-weight: normal;
}

.columns {
    display: grid;
    grid-template-columns: 1fr 50px 1fr;
    grid-auto-flow: column;
}

@media(max-width: 980px) {
    .columns {
        grid-template-columns: 100%;
        grid-auto-flow: row;
    }

    .contacts {
        grid-template-columns: 100%;
    }

    .contacts .contact {
        margin-bottom: 50px;
    }

    .header-text {
        margin-bottom: 50px;
    }

    .logo {
        margin-bottom: 50px;
    }

    .bg-holder {
        padding-bottom: 250px;
    }

    .column-content {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
    }

    .column.left {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .column.right {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    body {
        font-size: 24px;
    }
}

.column-heading {
    font-weight: 300;
    font-size: 3em;
    letter-spacing: 2px;
}

.copyright {
    text-align: center;
    margin-bottom: 75px;
    font-weight: 300;
}

.column {
    background: #fafafa;
    padding: 90px 25px 115px 25px;
}

.columns .separator {
    background: #fafafa;
    clip-path: polygon(0 0, calc(100% - 50px) 0%, 100% 50px, 100% calc(100% - 10px),
        100% 100%, 50px 100%, 0% calc(100% - 50px));
}

.column.right {
    margin-top: 50px;
    /* Fix clipping issue on some browsers */
    margin-left: -1px;
}

.column.left {
    margin-bottom: 50px;
}

.column-content {
    max-width: 515px;
}

.left .column-content {
    margin-left: auto;
    margin-right: 70px;
}

.right .column-content {
    margin-right: auto;
    margin-left: 70px;
}