@charset "UTF-8";

@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap');

html {
    font-size: 14px;
}

*,
*::after,
*::before {
    box-sizing: border-box;
}

body {
    font-size: 15px;
    line-height: 30px;
    font-weight: 400;
    color: #828282;
    font-family: 'Roboto', sans-serif;
    padding: 0;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    word-break: break-word;
}

body,
html {
    -moz-osx-font-smoothing: grayscale;
}

a:hover,
a:focus {
    text-decoration: none;
    outline: none;
    outline-offset: 0;
    color: #0038e3;
}

a,
a:active,
a:focus {
    color: #828282;
}

a {
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

img {
    max-width: 100%;
    height: auto;
}

p {
    margin: 0 0 25px;
}

.last-paragraph-no-margin p:last-of-type {
    margin-bottom: 0;
}

ul {
    list-style-position: outside;
    margin-bottom: 25px;
}

ul {
    margin: 0;
    padding: 0;
}

button,
button:focus,
button:hover {
    outline: none;
}

::selection {
    color: #000;
    background: #dbdbdb;
}

::-moz-selection {
    color: #a6a6a6;
    background: #dbdbdb;
}

::-webkit-input-placeholder {
    color: #a6a6a6;
    text-overflow: ellipsis;
}

::-moz-placeholder {
    color: #a6a6a6;
    text-overflow: ellipsis;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #a6a6a6;
    text-overflow: ellipsis;
    opacity: 1;
}

/* ===================================
    03. Typography
====================================== */
/* font family */
.alt-font {
    font-family: 'Poppins', sans-serif;
}

/* heading size */
h1,
h2,
h3,
h4 {
    margin: 0 0 25px 0;
    padding: 0;
    letter-spacing: -0.5px;
    font-weight: inherit;
}

h1 {
    font-size: 5rem;
    line-height: 5rem;
}

h2 {
    font-size: 3.9rem;
    line-height: 4.2rem;
}

h3 {
    font-size: 3.4rem;
    line-height: 3.9rem;
}

h4 {
    font-size: 2.85rem;
    line-height: 3.4rem;
}

/* text size */

.text-medium {
    font-size: 14px;
    line-height: 20px;
}

.text-extra-large {
    font-size: 20px;
    line-height: 28px;
}

/* text color, link color and link hover color */
.text-white {
    color: #fff;
}

.text-extra-dark-gray {
    color: #232323;
}

.text-chocolate {
    color: #553D3B;
}

.text-dark-red {
    color: #d23134;
}

.text-dark-red {
    color: #e12837;
}

.letter-spacing-minus-1px {
    letter-spacing: -1px;
}

.letter-spacing-minus-2px {
    letter-spacing: -2px;
}

/* font weight */

.font-weight-300 {
    font-weight: 300 !important;
}

.font-weight-500 {
    font-weight: 500 !important;
}

.font-weight-600 {
    font-weight: 600 !important;
}

/* text property */

/* dropcap */
.first-letter {
    float: left;
    font-size: 50px;
    line-height: normal;
    margin: 0 20px 0 0;
    text-align: center;
    padding: 10px 0;
    font-weight: 600;
}

.first-letter-block {
    font-size: 30px;
    height: 55px;
    line-height: 25px;
    padding: 15px 0;
    width: 55px;
    font-weight: 500;
    margin-top: 5px;
}

/* lineheight */

.line-height-20px {
    line-height: 20px;
}

.line-height-22px {
    line-height: 22px;
}

.line-height-65px {
    line-height: 65px;
}

/* ===================================
    04. Background color
====================================== */

.bg-extra-dark-gray {
    background-color: #232323;
}

.bg-dark-red {
    background-color: #e12837;
}

.bg-dark-red {
    background-color: #d23134;
}

.bg-dark-slate-blue {
    background-color: #1f232c;
}

.bg-oce-tan {
    background-color: #BFA670;
}

.bg-oce-tan-superlight {
    background-color: #E5DBC6;
}

.bg-transparent-chocolate {
    background-color: rgba(85, 61, 59, 0.9);
}


/* ===================================
    05. Custom
====================================== */
section {
    padding: 130px 0;
    overflow: hidden;
}

section.half-section {
    padding: 80px 0;
}

.opacity-extra-medium {
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0.5;
    top: 0;
    left: 0;
}

.opacity-light {
    position: absolute;
    height: 100%;
    width: 100%;
    opacity: 0.35;
    top: 0;
    left: 0;
}

.opacity-6 {
    opacity: 0.6;
}

/* box shadow */

.box-shadow-large-hover:hover {
    box-shadow: 0 0 30px rgba(0,0,0,.08);
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.box-shadow-small {
    box-shadow: 0 0 15px rgba(0,0,0,.08);
    transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.box-shadow-large-hover:hover {
    -moz-transform: translate3d(0, -3px, 0);
    -o-transform: translate3d(0, -3px, 0);
    -ms-transform: translate3d(0, -3px, 0);
    -webkit-transform: translate3d(0, -3px, 0);
    transform: translate3d(0, -3px, 0);
}

/* ===================================
    07. Border
====================================== */

.border-top {
    border-top: 1px solid !important;
}

.border-color-white-transparent {
    border-color: rgba(255,255,255,.1) !important;
}

.border-radius-6px {
    border-radius: 6px;
}

/* background parallax */
.parallax {
    position: relative !important;
    background-size: cover !important;
    overflow: hidden;
    background-attachment: fixed !important;
    transition-duration: 0s;
    -moz-transition-duration: 0s;
    -webkit-transition-duration: 0s;
    -o-transition-duration: 0s;
}

/* ===================================
    10. Margin
====================================== */

.margin-25px-top {
    margin-top: 25px;
}

.margin-10px-bottom {
    margin-bottom: 10px;
}

.margin-25px-bottom {
    margin-bottom: 25px;
}

.margin-65px-bottom {
    margin-bottom: 65px;
}

.margin-4-half-rem-bottom {
    margin-bottom: 4.5rem;
}

.margin-6-rem-bottom {
    margin-bottom: 6rem;
}

.margin-20px-right {
    margin-right: 20px;
}

.margin-3-rem-tb {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

/* ===================================
    11. Padding
====================================== */

.padding-3-half-rem-all {
    padding: 3.5rem;
}

.padding-4-rem-all {
    padding: 4rem;
}

.padding-1-rem-bottom {
    padding-bottom: 1rem;
}

.padding-1-half-rem-bottom {
    padding-bottom: 1.5rem;
}

.padding-40px-tb {
    padding-top: 40px;
    padding-bottom: 40px;
}

.padding-2-rem-tb {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.padding-8-rem-tb {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.padding-four-lr {
    padding-left: 4%;
    padding-right: 4%;
}

.padding-2-rem-lr {
    padding-left: 2rem;
    padding-right: 2rem;
}

/* ===================================
    12. Display and overflow
====================================== */

.overflow-hidden {
    overflow: hidden !important;
}

/* ===================================
    13. Position
====================================== */

.bottom-minus-20px {
    bottom: -20px;
}

/* right */

.right-50px {
    right: 50px;
}

/* ===================================
    14. Width
====================================== */

.w-350px {
    width: 350px;
}

.w-85 {
    width: 85%;
}

.w-100 {
    width: 100%;
}

/* ===================================
    15. Height
====================================== */

.h-1px {
    height: 1px;
}

.h-100 {
    height: 100% !important;
}

.full-screen {
    height: 980px;
}

/* ===================================
    16. Icon
====================================== */
[class^="line-icon"] {
    display: inline-block;
}

.icon-medium {
    font-size: 40px;
}

/* social media icon */
.extra-small-icon {
    list-style: none;
    padding: 0;
}

.extra-small-icon li {
    display: inline-block;
}

.extra-small-icon li:first-child {
    margin-left: 0;
}

.extra-small-icon li:last-child {
    margin-right: 0;
}

.extra-small-icon li {
    margin: 0 2px;
}

.extra-small-icon a {
    font-size: 14px;
    width: 30px;
    height: 30px;
    line-height: 30px;
}

[class^="social-icon-"] ul {
    list-style: none;
}

/* social icon style 12 */
.social-icon-style-12 li a {
    color: #232323;
    display: inline-block;
}

.social-icon-style-12 .light li a {
    color: #fff;
    display: inline-block;
}

.social-icon-style-12 li a:hover {
    opacity: .5;
}

/* ===================================
    18. Header
====================================== */
.navbar {
    padding: 0;
}

.navbar-brand {
    margin-right: 0;
    font-size: 0;
}

/* header static overlay */

/* center logo */
.menu-logo-center .menu-logo {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
}

.navbar-left,
.navbar-right {
    width: 40%;
}

.menu-logo-center .navbar-brand {
    position: relative;
    z-index: 1;
    padding: 22px 0;
}

/* header toggle button */
.navbar-toggler {
    font-size: 24px;
    width: 22px;
    height: 14px;
    display: inline-block;
    position: relative;
    padding: 0;
    border: none;
    vertical-align: middle;
    border-radius: 0;
}

.navbar-toggler-line {
    background: #232323;
    height: 2px;
    width: 22px;
    content: "";
    display: block;
    border-radius: 0;
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

.navbar-toggler-line:nth-child(1) {
    top: 0px;
    width: 14px;
}

.navbar-toggler-line:nth-child(2),
.navbar-toggler-line:nth-child(3) {
    top: 6px;
}

.navbar-toggler-line:nth-child(4) {
    top: 12px;
    width: 14px;
}


/* header navigation dark */
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
    color: rgba(0,0,0,.6) !important;
    cursor: pointer;
}

.navbar.navbar-light .navbar-nav .nav-link {
    color: #232323;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
    color: rgba(0,0,0,.5);
    cursor: pointer;
}

/* header navigation active color */

/* header logo */
header .navbar .navbar-brand img {
    max-height: 54px;
}

header .navbar .navbar-brand .default-logo {
    visibility: visible;
    opacity: 1;
    width: auto;
    transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    -ms-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
}

header .navbar-brand .alt-logo,
header .navbar .navbar-brand .mobile-logo {
    visibility: hidden;
    opacity: 0;
    width: 0;
    transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    -ms-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
}

header .navbar.always-fixed .navbar-brand .default-logo,
header .always-fixed .navbar-brand .alt-logo,
header .navbar.always-fixed .navbar-brand .mobile-logo {
    transition-duration: 0s;
    -webkit-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -ms-transition-duration: 0s;
    -o-transition-duration: 0s;
}

/* header navigation spacing */
.navbar .navbar-nav .nav-link {
    padding: 25px 0;
    font-weight: 500;
    font-size: 14px;
    margin: 0 18px;
    word-break: normal;
}


/* ===================================
    19. Page title
====================================== */

.page-title-large h1 {
    font-size: 42px;
    line-height: 49px;
}


/* ===================================
    21. Grid
====================================== */
.blog-post-image img {
    width: 100%;
}

.grid {
    list-style: none;
}

.grid-sizer {
    padding: 0 !important;
    margin: 0 !important;
}

/* gutter size */

.grid.gutter-large li {
    padding: 10px 10px;
}

/* grid 4 column */
.grid.grid-4col li {
    width: 25%;
    list-style: none;
}

.grid.grid-4col li.grid-item-double {
    width: 50%;
}

/* ===================================
    23. Blog
====================================== */
.blog-post {
    position: relative;
    overflow: hidden;
}

.blog-post .blog-post-image img {
    -webkit-transition: all 1s cubic-bezier(0,0,.2,1);
    -moz-transition: all 1s cubic-bezier(0,0,.2,1);
    -ms-transition: all 1s cubic-bezier(0,0,.2,1);
    transition: all 1s cubic-bezier(0,0,.2,1);
}

.blog-post .blog-post-image {
    overflow: hidden;
    position: relative;
}

.blog-post:hover .blog-post-image img {
    opacity: 0.6;
    -webkit-transform: scale3d(1.1,1.1,1.1);
    -moz-transform: scale3d(1.1,1.1,1.1);
    -ms-transform: scale3d(1.1,1.1,1.1);
    transform: scale3d(1.1,1.1,1.1);
}


/* blog metro */
.blog-metro .blog-post:hover {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.blog-metro .blog-post:hover .blog-post-image img {
    opacity: .6;
}

.blog-metro .blog-post .blog-post-image .blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgb(31,35,44);
    background: linear-gradient(0deg, rgba(23,23,23,0.95) 0%, rgba(23,23,23,0) 88%);
    transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
}

.blog-metro .blog-post .post-details {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.blog-metro .post-details .blog-category {
    font-size: 12px;
    line-height: 20px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
    padding: 6px 13px;
    background: rgba(20,21,22,.7);
    border-radius: 2px;
}

.blog-metro .post-details:hover .blog-category {
    background: #fff;
    color: #232323;
    box-shadow: 0 0 20px rgba(23,23,23,.2);
}


/* feature box */
.feature-box * {
    transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -ms-transition-duration: 0.4s;
}

.feature-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    z-index: 1;
    position: relative;
    transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -ms-transition-duration: 0.4s;
}

.feature-box .feature-box-content {
    max-width: 100%;
}

.feature-box-left-icon-middle {
    flex-flow: row wrap;
    -webkit-flex-flow: row wrap;
    -ms-flex-flow: row wrap;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: left;
}

.feature-box-left-icon-middle .feature-box-content {
    overflow: hidden;
    -webkit-box-flex: 1;
    flex: 1;
}

/* ===================================
    26. Footer
====================================== */
footer .footer-logo img {
    max-height: 36px;
}

footer ul {
    padding-left: 0;
    list-style: none;
}

footer ul li {
    margin-bottom: 7px;
}

footer ul li:last-child {
    margin-bottom: 0;
}

/* footer dark */
.footer-dark,
.footer-dark a {
    color: #8890A4;
}

.footer-dark a:hover {
    color: #fff;
}


/* scroll to top */
.scroll-top-arrow,
.scroll-top-arrow:focus {
    background: #fff;
    font-size: 17px;
    line-height: 34px;
    box-shadow: 0 0 25px rgba(23,23,23,.25);
    display: none;
    height: 34px;
    width: 34px;
    padding: 0;
    position: fixed;
    right: 45px;
    text-align: center;
    text-decoration: none;
    bottom: 45px;
    z-index: 1029;
    border-radius: 100%;
}

.scroll-top-arrow:hover {
    background: #fff;
    color: #828282;
    box-shadow: 0 0 30px rgba(23,23,23,.4);
    -webkit-transform: translateY(-2px);
    -ms-transform: translateY(-2px);
    transform: translateY(-2px);
}

/* page loading */
@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.grid-loading {
    overflow: hidden;
    position: relative;
    opacity: 1 !important;
    transition: all 0s ease-in-out !important;
    -moz-transition: all 0s ease-in-out !important;
    -webkit-transition: all 0s ease-in-out !important;
    -ms-transition: all 0s ease-in-out !important;
    -o-transition: all 0s ease-in-out !important;
    z-index: 99;
}

.grid-loading::after {
    background: none;
    content: "" !important;
    position: absolute;
    top: 100px !important;
    left: calc(50% - 25px) !important;
    width: 50px !important;
    height: 50px !important;
    opacity: 1 !important;
    right: inherit !important;
    z-index: 9;
    text-align: center;
    border: 3px solid rgba(23, 23, 23, 0.2);
    border-top-color: rgba(23, 23, 23, 0.7);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    -webkit-animation: spin 1s linear infinite;
}

.grid-loading:before {
    content: "";
    position: absolute;
    right: 2px;
    top: 1px;
    width: calc(100% - 4px);
    height: calc(100% - 2px);
    border-radius: inherit;
    z-index: 1;
}

.grid-loading .grid-item {
    visibility: hidden;
}

.grid-loading li.grid-item {
    overflow: hidden;
    opacity: 0;
}

/* for internet explorer 11 */
@media screen\0 {
    .menu-logo-center .menu-logo {
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
    }

    .blog-post .blog-post-image img {
        transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
    }

    .box-shadow-large-hover:hover {
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }

    .parallax {
        background-position: top center !important;
        background-attachment: inherit !important;
    }
}

