
@import 'https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i|Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i|Playfair+Display:400,400i,700,700i,900,900i';

:root {
    --copper: #ad7b5a;
}


h1 {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    line-height: 70px;
    color: #ffffff;
    text-align: center; 
    /*BPN main title color*/
}

#main h1 {
    font-family: 'Playfair Display', serif;
    font-size: 30vw;
    line-height: 10vw;
    color: #ffffff;
    text-align: center; 
    /*BPN main title color*/
}

.maintitle {
    font-family: 'Playfair Display', serif;
    font-size: 6vw;
    line-height: 1vw;
    color: #ffffff;
    text-align: center; 
    /*BPN main title color*/
}

.mainsubtitle {
    font-family: 'Playfair Display', serif;
    font-size: 5vw;
    line-height: 4vw;
    padding: 15px;
    color: #ffffff;
    text-align: center; 
    /*BPN main title color*/
    background-color: #352f2f;
}

.mainssubtitle {
    font-family: 'Playfair Display', serif;
    font-size: 3vw;
    line-height: 4vw;
    padding: 15px;
    color: #ffffff;
    text-align: center; 
    /*BPN main title color*/
}


@media screen and (orientation: portrait) {
    .maintitle {
        font-size: 13vw;
        line-height: 2vw;
    }

    .mainsubtitle {
        font-size: 8vw;
        line-height: 9vw;
    }
    .mainssubtitle {
        font-size: 8vw;
        line-height: 9vw;
    }
}


body {
    margin: 0px;
    padding: 0px;
    border: none;

    width: 100%;
    height: 100%;

    overflow: scroll;

    color: #FFF;

    font-size: 14px;

    /*font-family: Tahoma, Verdana, Geneva;*/
    /*font-family: 'Segoe UI Local', 'Segoe UI Web (West European)';*/
    font-family: "AFont", sans-serif;

    touch-action: none;
    -webkit-user-drag: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);

    scrollbar-width: thin;
    scrollbar-color: #FFF #333;
}


#home {
    background-size: cover;
    height: 150vh;
}


@media (max-width: 500px) {
    h1 {
        font-family: 'Playfair Display', serif;
        font-size: 50px;
        line-height: 50px;
    }
    #home {
      height: 100vh;
    }

}


#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--copper);
    z-index: 10000
}

#status,
.preloader {
    top: 50%;
    left: 50%;
    position: absolute
}

#status {
    width: 100px;
    height: 100px;
    background-repeat: no-repeat;
    background-position: center;
    margin: -50px 0 0 -50px
}

.preloader {
    height: 40px;
    width: 40px;
    margin-top: -20px;
    margin-left: -20px
}

.preloader:before {
    content: "";
    display: block;
    position: absolute;
    left: -1px;
    top: -1px;
    height: 100%;
    width: 100%;
    -webkit-animation: rotation 1s linear infinite;
    animation: rotation 1s linear infinite;
    border: 2px solid #ffffff;
    border-top: 2px solid transparent;
    border-radius: 100%
}

.preloader>.icon {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 25px;
    width: 10.6px;
    margin-top: -12.5px;
    margin-left: -5.3px;
    -webkit-animation: wink 1s ease-in-out infinite alternate;
    animation: wink 1s ease-in-out infinite alternate
}

@media only screen and (min-width:768px) {
    .preloader {
        height: 60px;
        width: 60px;
        margin-top: -30px;
        margin-left: -30px
    }

    .preloader:before {
        left: -2px;
        top: -2px;
        border-width: 4px
            /*BPN loader width */
    }

    .preloader>.icon {
        height: 37.5px;
        width: 15.9px;
        margin-top: -18.75px;
        margin-left: -7.95px
    }
}

@media only screen and (min-width:1200px) {
    .preloader {
        height: 60px;
        width: 60px;
        margin-top: -30px;
        margin-left: -30px
    }

    .preloader>.icon {
        height: 50px;
        width: 21.2px;
        margin-top: -25px;
        margin-left: -10.6px
    }
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes rotation {
    from {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@-webkit-keyframes wink {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes wink {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}



