/* CUSTOM STYLES */

@import url('https://fonts.googleapis.com/css?family=Ubuntu:300,300i,400,400i,500,500i,700,700i');
@import url('https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i');
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Ubuntu', serif;
    margin: 0px;
}
/* elements */

p {
    margin: 0px;
}
body {
    font-family: 'Lato', sans-serif, Arial, Verdana, 'Trebuchet MS';
}
.header-head-fs {
    color: #ffffff;
    font-size: 28px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.sub-heading-fs-1 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 1px;
}
.sub-heading-fs {
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 1px;
}
.h2-bottom {
    margin-bottom: 20px;
}
.copy-right {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 1px;
    margin: 30px 0 30px 0;
}
a {
    color: inherit;
    outline: none !important;
    text-decoration: none !important;
}
a:hover {
    color: inherit;
    text-decoration: none;
}
a:visited {
    color: #ffffff;
}
.image-center {
    margin: 0 auto;
}
.center {
    text-align: center;
}
.left {
    text-align: left;
}
.right {
    text-align: right;
}
.btn {
    background-color: #FF6765;
    padding: 6px 15px 6px 15px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    border: 0;
    border-radius: 0;
}
.btn-tb {
    margin: 30px 0;
}
.btn:hover,
.btn:focus {
    color: #ffffff;
}
.image-bottom {
    margin: 0 15px 30px 15px;
}
.logo-bottom {
    margin: 0 0 20px 0;
}
.column-center {
    float: none;
    margin: 0 auto;
}
.no-padding {
    padding: 0;
}
.no-margin {
    margin: 0;
}
.image-hoverable {
    box-shadow: 0;
    transition: box-shadow .55s;
}
.image-hoverable:hover {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.9);
    transition: box-shadow .45s;
}
/*========================================== HEADER START ===========================================*/

.header-bgimage {
    background-image: url("../../preview-images/bgimage.jpg");
    background-attachment: fixed;
    background-size: cover;
    height: 100%;
}
.header-space {
    padding: 30px 0 30px 0;
}
/*========================================== HEADER END ===========================================*/

.arrow {
    -webkit-animation: mover 0.7s infinite alternate;
    animation: mover 0.7s infinite alternate;
}
@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
    0% {
        -webkit-transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-10px);
    }
    0% {
        -ms-transform: translateY(0);
    }
    100% {
        -ms-transform: translateY(-10px);
    }
}
@keyframes mover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
    0% {
        -webkit-transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(-10px);
    }
    0% {
        -ms-transform: translateY(0);
    }
    100% {
        -ms-transform: translateY(-10px);
    }
}
@media only screen and (min-width: 250px) and (max-width: 479px) {
    .res-width {
        width: 100% !important;
        margin: 0 auto;
    }
}