/* Avenir Book */
@font-face {
  font-family: 'AvenirBook';
  src: url('fonts/Avenir_45_Book.ttf') format('opentype');
}

/* Avenir Roman */
@font-face {
  font-family: 'AvenirRoman';
  src: url('fonts/Avenir_55_Roman.ttf') format('opentype');
}

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

* {
    padding: 0;
    margin: 0;
}

body {
    background-color: #ede6d3;
}

.logo {
    position: absolute;
    background-color: blue;
    height: 100%;
    top: 0;
}

.container {
    width: 100vw;
    height: 100vh;
    max-width: 1366px;
    max-height: auto;
    margin: 0 auto;

    -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;
}

.bg-logo {
    padding-left: 50px;
    padding-top: 100px;
    box-sizing: border-box;
    position: absolute;
    z-index: -99;
    width: 1020px;
    height: 100vh;
    background: url(images/djepati-logo.png);
    background-repeat: no-repeat;
    background-position: center left;
    background-origin: content-box;
    background-size: 100%;
}

.content {
    width: 100vw;
    height: 100vh;
    display: table-cell;
    vertical-align: middle;
    text-align: right;
    padding-left: 50px;
    padding-right: 50px;
}

.content h1 {
    font-family: 'Arial';
    font-size: 37px;
    font-weight: 900;
    color: #25346e;
    margin-bottom: 28px;
    letter-spacing: 1px;
    line-height: 45px;
}

.content p {
    font-family: 'AvenirRoman';
    font-size: 20px;
    margin-bottom: 32px;
    letter-spacing: 1px;
    color: #4c3d1c;
}

.footer{
    box-sizing: border-box;
    padding-right: 52px;
    padding-left: 52px;
    position: absolute;
    bottom: 0;
    max-width: 1366px;
    width: 100%;
}

.footer .copyright {
    float: left;
    padding-top: 42px;
    padding-bottom: 42px;
}

.footer .copyright p {
    font-family: 'AvenirBook';
    color: #4c3d1c;
    font-size: 14.5px;
    letter-spacing: 1.9px;
}

.footer .social-media {
    float: right;
}

.social-media:after {
    content:"";
    display: table;
    clear: both;
}

.social-media-item {
    width: 45px;
    float: left;
}

.social-media-item:nth-child(2),
.social-media-item:nth-child(3),
.social-media-item:nth-child(4) {
    margin-left: 20px;
}

.social-media-item img {
    width: 100%;
}

@media only screen and (max-width: 1240px) {
    .bg-logo {
        width: 100%;
        padding-right: 50px;
        padding-bottom: 100px;
    }

    .content, .footer .copyright {
        text-align: center;
    }

    .footer .copyright, .footer .social-media {
        float: none;
    }

    .footer .social-media {
        display: table;
        margin: 0 auto;
        margin-bottom: 20px;
    }

    .footer .social-media .social-media-item {
        width: 25px;
    }
}

@media only screen and (max-height: 500px) {
    .container {
        width: 100%;
    }
    .footer {
        position: relative;
    }
}

#ifrm {
    display: none;
}