@charset "UTF-8";

/* ----------------------------------

Table of contents
        
    01. Google font
    02. Reset
    03. Typography
    04. Background color
    05. Custom
    06. Button
    07. Border
    08. Aside style
    09. Video
    10. Background image
    11. Margin
    12. Padding
    13. Display and float
    14. Position
    15. Width
    16. Height
    17. Icon
    18. Magnific popup
    19. Header
    20. Page title
    21. Swiper carousel
    22. Grid
    23. Portfolio
    24. Elements
    25. Blog
    26. Footer
    27. Home page
    28. Others
*/

/* ===================================
    01. Custom Fonts
====================================== */
@font-face {
    font-family: 'AgencyFB RegularExtended';
    src: url('../fonts/AgencyFB-RegularExtended.woff2') format('woff2'),
        url('../fonts/AgencyFB-RegularExtended.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'AgencyFB';
    src: url('../fonts/AgencyFB-Black.woff2') format('woff2'),
        url('../fonts/AgencyFB-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir LT Std';
    src: url('../fonts/AvenirLTStd-Roman.woff2') format('woff2'),
        url('../fonts/AvenirLTStd-Roman.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ===================================
    02. Reset
====================================== */
html {
    font-size: 15px;
}

body {
    font-family: 'Avenir LT Std', 'Open Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    font-size: 14px;
    color: #6f6f6f;
    font-weight: 400;
    line-height: 24px;
}

body,
html {
    height: 100%;
    -moz-osx-font-smoothing: grayscale;
}

a,
a:active,
a:focus {
    color: #e3e3e3;
    text-decoration: none;
}

a:hover,
a:active {
    color: var(--brand-primary);
    text-decoration: none;
}

a:focus,
a:active,
button:focus,
button:active,
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
    outline: none;
    box-shadow: none;
}

img {
    max-width: 100%;
    height: auto;
}

video {
    background-size: cover;
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}

input,
textarea,
select {
    border: 1px solid #d1d1d1;
    font-size: 14px;
    padding: 8px 15px;
    width: 100%;
    margin: 0 0 20px 0;
    max-width: 100%;
    resize: none;
    color: inherit;
}

input[type="submit"] {
    width: auto
}

input[type="button"],
input[type="text"],
input[type="email"],
input[type="search"],
input[type="password"],
textarea,
input[type="submit"] {
    -webkit-appearance: none;
    outline: none;
}

input:focus,
textarea:focus {
    border-color: #585858 !important;
    outline: none;
}

input[type="button"]:focus,
input:focus,
textarea:focus,
select:focus,
.form-control:focus,
.btn.focus,
.btn:focus {
    outline: none;
    box-shadow: none;
}

select::-ms-expand {
    display: none;
}

iframe {
    border: 0;
}

p {
    margin: 0 0 25px
}

b,
strong {
    font-weight: 600;
}

.last-paragraph-no-margin p:last-of-type {
    margin-bottom: 0
}

.alt-font strong {
    font-weight: 700
}

ul,
ol,
dl {
    list-style-position: outside;
    margin-bottom: 25px
}

* {
    transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-duration: .2s;
    -ms-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
}

*:hover {
    transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-duration: .2s;
    -ms-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
}

.no-transition *,
.swiper-container *,
.mfp-container *,
.portfolio-wrapper *,
.parallax,
.rev-slider *,
.header-searchbar *,
.header-social-icon *,
.dropdropdown-menu * {
    transition-timing-function: none;
    -moz-transition-timing-function: none;
    -webkit-transition-timing-function: none;
    -o-transition-timing-function: none;
    -ms-transition-timing-function: none;
    transition-duration: 0s;
    -moz-transition-duration: 0s;
    -webkit-transition-duration: 0s;
    -o-transition-duration: 0s;
    -ms-transition-duration: 0s;
}

::selection {
    color: #000;
    background: #dbdbdb;
}

::-moz-selection {
    color: #000;
    background: #dbdbdb;
}

::-webkit-input-placeholder {
    color: #6f6f6f;
    text-overflow: ellipsis;
}

::-moz-placeholder {
    color: #6f6f6f;
    text-overflow: ellipsis;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #6f6f6f;
    text-overflow: ellipsis;
    opacity: 1;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 15px;
    padding-left: 15px;
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.row>* {
    padding-right: 15px;
    padding-left: 15px;
}

.row.g-0 {
    margin-right: 0;
    margin-left: 0;
}

.row.g-0>* {
    padding-right: 0;
    padding-left: 0;
}

header [class^="container-"] [class^="col-"],
header [class^="container-"] [class*=" col-"] {
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
}

.swiper-container {
    z-index: 1;
}

@media (prefers-reduced-motion:no-preference) {
    :root {
        scroll-behavior: auto
    }
}

/* base color variable*/
:root {
    --base-color: #ff214f;
    --brand-primary: #8dc442;
}

/* ===================================
    03. Typography
====================================== */

/* font family */
.alt-font {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500
}

.main-font {
    font-family: 'Open Sans', sans-serif;
}

/* heading */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 25px;
    padding: 0;
    letter-spacing: 0;
    font-weight: 400;
}

h1 {
    font-size: 70px;
    line-height: 70px;
}

h2 {
    font-size: 55px;
    line-height: 60px
}

h3 {
    font-size: 48px;
}

h4 {
    font-size: 40px;
    line-height: 46px
}

h5 {
    font-size: 32px;
    line-height: 40px
}

h6 {
    font-size: 25px;
    line-height: 30px
}

.section-title,
.title-font {
    font-family: 'AgencyFB', 'Open Sans', sans-serif;
}

.word-breakAll{
    word-break: break-all !important
}

/* ===================================
    05. Custom 
====================================== */
section#home {
    padding-bottom: 32px !important;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
}

.container.position-relative.full-screen.homecon {
    height: auto !important;
    display: flex;
    flex-direction: column;
}

.container.position-relative.full-screen.homecon > * + * {
    margin-top: 24px; /* Mimics `gap: 24px;` in a column layout */
}

div#socials {
    background-image: url(img/pattern.jpg);
}

div#socials img {
    width: 50px;
    margin-bottom: 35px;
}

@media (min-width:768px){
    div#socials img {
        width: 20%;
        width: 48px;
        margin-bottom: 0px;
    }
}

div#socials img:hover {
    -webkit-filter: grayscale(100%) brightness(300%);
}

footer.footer-center-logo.padding-five-tb.sm-padding-30px-tb {
    background: #111111;
    padding-top: 3%;
    padding-bottom: 3%;
}

.signup button:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.25s;
    box-shadow: 0 0 15px 60px #ffffff;
    -webkit-transform: skewX(357deg);
    transform: skewX(357deg);
}

.signup button:active:after {
    box-shadow: 0 0 0 0 white;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 1;
    transition: 0s;
}

.signup button:active {
    top: 1px;
}

#grand {
    color: white;
}

#grand .prize-info__heading {
    font-size: 48px;
    font-weight: 800;
    line-height: 56px; /* 116.667% */
    text-transform: uppercase;
}
#grand .prize-info__sub-heading {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px; /* 133.333% */
    text-transform: uppercase;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
#grand .prize-info__details {
    margin-bottom: 0;
}

#grand .prize-info__details-list {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
    color: var(--brand-primary);
    font-size: 20px;
    font-weight: bold;
    line-height: 32px;
}

#merch p {
}

@media (min-width:992px){
    .w-md-50 {
        width: 50%;
    }
}

#how p {
    font-size: 19px;
    line-height: 24px;
    margin-bottom: 60px;
}
@media (max-width:767px) {
    #how p {
        margin-bottom: 30px;
    }
}

#how .inline-highlight-txt {
    color: var(--brand-primary, #8DC442);
    font-weight: 700;
    text-decoration: underline;
}

#how .one-col hr {
    border: 1px solid #8DC442;
    width: 100%;
    opacity: 1;
    margin: 40px 0px;
}

@media (max-width:767px){
    #how .one-col hr {
        margin: 20px 0px;
    }
}

/*HOW - How To Play*/
#how .table-cell h3 {
    color: var(--text-title, #8dc63f);
    font-family: 'AgencyFB RegularExtended','AgencyFB', 'Avenir LT Std', 'Open Sans';
    font-size: 32px;
}
#how .table-cell p {
    color: #fff;
}

#how .how-to-play .table-group {
    max-width: 1024px;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 16px;
    display: grid;
    margin: 0 auto;
}

#how .table-cell {
    background: #1a1a1a;
    padding: 16px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#how .table-cell img {
    width: 100px;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    #how .how-to-play .table-group {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 8px;
    }

    #how .table-cell {
        padding: 16px 8px;
    }
}
/*HOW - How To Play*/

#follow {
    background-image: url(../img/bg-followus.png);
    background-size: 100% 100%;
    padding: 60px 0px 40px !Important;
    background-position: initial;
    margin-top: 50px;
}

@media (max-width: 1600px) {
 #follow .container {
    max-width: 825px;
  }
}

#follow .divider .outer-line {
    width: 50%;
}

.trescols img {
    border-radius: 15px;
    box-shadow: 0px 0px 11px 5px white;
    border: 1px solid white;
    max-width: 75%;
}

.trescols p {
    max-width: 400px !important;
}

.doscol p {
    max-width: 400px;
    margin-top: 15px;
}

.doscol p,
.trescols p {
    text-align: center;
    max-width: 530px;
    color: white;
    font-size: 16px;
    font-weight: 600;

}

.grand {
    display: flex;
    margin-bottom: 80px;
}

.grand img {
    margin: 0 auto;
    width: 55%;
    border-radius: 15px;
}

.der img.deslogmob,
.grand img.prizemob {
    display: none;
}

.mySwiper {
    width: 100%;
    height: 410px;
}

.swiper-slide {
    flex-shrink: 0;
    position: relative;
    transition-property: transform;
    background-repeat: no-repeat;
    width: 350px !important;
    height: 350px !important;
    background-size: 100%;
    border-radius: 10px;
}

/*
.swiper-slide p {
    font-family: 'myfont';
    font-size: 20   px;
    text-transform: uppercase;
    color: white;
    letter-spacing: 2px;
    text-align: center;
    margin-top: 5px;
}
*/
.swiper-slide img {
    border-radius: 10px;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: -5px !important;
}

.swiper-pagination-bullet-active {
    opacity: var(--swiper-pagination-bullet-opacity, 1) !important;
    background: #8dc442 !important;
    width: 11px !important;
    height: 11px !important;
}

.swiper-pagination-bullet {
    opacity: var(--swiper-pagination-bullet-inactive-opacity, .3);
    width: 11px !important;
    height: 11px !important;
    background: #8dc442 !important;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
    content: 'prev';
    color: #8dc442;
}

a.sign-up-link {
    color: #bdf124;
    font-weight: 700;
    text-decoration: underline;
}

video.backvid:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 0) 50%);
    z-index: 1;
}

.trescols p {
    margin-bottom: 15px;
    margin-top: 15px;
}

.doscol {
    display: flex;
    justify-content: space-evenly;
}

.trescols h3 {
    margin-bottom: 12px;
}

.doscol h3,
.trescols h3,
.swiper-slide p {
    color: #8dc442;
    font-weight: 700;
    font-style: italic;
    margin-top: 10px;
    text-align: center;
    font-size: 21px;
}

img.desktopimg {
    width: 100% !important;
}

.colu1,
.colu2 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.colu1 h3,
.colu2 h3,
.colu1 p,
.colu2 p {
    max-width: 420px;
}

.colu1 img,
.colu2 img {
    width: 55%;
    display: flex;
    box-shadow: 0px 0px 15px 3px #8dc442;
    border: 2px solid #caff2f;
    border-radius: 15px;
}

.three-cols p {
    color: white;
    font-size: 1.2em;
    text-align: center;
}

.two-col {
    display: flex;
    margin-top: 105px;
    flex-direction: column;
}

@media (max-width:767px){
    .two-col {
        margin-top: 88px
    }
}

.izq {
}

.izq img {
    margin: 0 auto;
    width: 100%;
}

img.logdesk {
    margin-bottom: 10px;
}

.der {
    width: 100%;
}


ul#accordion li a:hover {
    color: #93d500 !important;
}

img.mobileimg {
    display: none;
}

.three-cols {
    display: flex;
    justify-content: center;
    justify-content: space-between;
}

.one-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.three-cols h3,
.one-col h3 {
    font-family: 'AgencyFB RegularExtended', 'Avenir LT Std', 'Open Sans';
    font-size: 32px;
    line-height: 1;
    color: var(--brand-primary);
    text-align: center;
    margin: 16px 0;
}

@media (max-width:767px) {
    .three-cols img {
        max-width: 65%;
    }
}

.first,
.second,
.third {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 380px;
}

@media (min-width:992px) and (max-width:1199px) {
    .first,
    .second,
    .third {
        max-width: 33.33%;
    }
}

h2.section-title {
    color: #fff;
    font-size: 4.5em;
    font-size: 64px;
    line-height: 1;
    letter-spacing: 1px;
    margin-bottom: 0;
}

@media (min-width:768px){
    h2.section-title {
        font-size: 5em;
        font-size: 64px;
    }
}

@media (min-width:992px){
    h2.section-title {
        font-size: 6em;
        font-size: 96px;
    }
}

.mgreen {
    color: #8dc442;
}

.color-platinum {
    color: #E3E3E3 !important
}



span.outer-line {
    border-bottom: 1px solid var(--brand-primary);
    width: 30%;
    max-width: 200px;
    display: inline-block;
}

.divider span.fa {
    font-size: 30px !important;
    margin: 0px 20px;
    color: #8dc442;
}

.divider span {
    vertical-align: middle;
}

.divider {
    font-size: 0;
    margin-bottom: 30px;
}

.signup button,
.signup .button {
    position: relative;
    padding: 15px 50px;
    border: none;
    color: black;
    font-size: 35px;
    font-family: 'AgencyFB', 'Open Sans', sans-serif;
    font-style: italic;
    text-align: center;
    text-transform: uppercase;
    background: #8dc442;
}

.signup {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.signup.contest-closed button[disabled], 
.signup.contest-closed .btn-disabled {
    background: grey !important;
    border: none !important;
    box-shadow: none;
    color: #000;
}

.signup > * + * {
    margin-top: 24px; /* Mimics `gap: 24px;` in a column layout */
}

.signup .fa.fa-user {
    font-size: 15px;
    vertical-align: 2px;
    padding-left: 2px;
}

.signup p {
    color: white;
    font-size: 24px;
}

.signup .disclaimer {
    margin-bottom: 0;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 12px;
    text-align: center;
    line-height: normal;
}

.signup a {
    font-weight: 700;
    color: #92d40a;
    text-shadow: 2px 2px 2px black;
}

.signup a:hover {
    color: white !Important;
}

.trescols {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.columna1,
.columna2,
.columna3 {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}


#background-video {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}


/*FRENCH CSS*/

.two-col.fr {
    padding-top: 16%;
}


.izq.fr img {
    width: 45%;
}

.container.position-relative.full-screen.french {
    max-width: 950px;
}

.doscol.fr h3 {
    font-size: 28px;
}

h3.section-title.rama {
    font-size: 5em;
}

.izq.fr {
    margin-bottom: 15px;
    padding-bottom: 25px;
}

/*accordion*/
a.accordion-title.accordionTitle.js-accordionTrigger {
    font-size: 18px;
    color: black;
    text-transform: uppercase;
    font-style: italic;
}

.accordion dl,
.accordion-list {
/*    border: 1px solid #ddd;*/
}

.accordion dl:after,
.accordion-list:after {
    content: "";
    display: block;
    width: 100%;
    background-color: #2ba659;
}

.accordion dd,
.accordion__panel {
    background-color: #000;
    font-size: 1em;
    line-height: 1.5em;
}

.accordion p {
    padding: 2em 3em 2em 3em;
    padding: 2em;
}

.accordion {
    position: relative;
    margin-top: 15px !important;
    max-width: 800px;
    margin: 0 auto;
}

.accordion-content p,
dd#accordion1 ul li {
    color: #fff !important;
    margin-bottom: 0px;
}

dd#accordion1 ul {
    margin: 2em;
}

.runtime {
    margin: 0 auto;
    background: black;
    margin-top: 20px;
    padding: 7px 14px;
    border-radius: 10px;
}

.runtime p {
    margin-bottom: 0;
    color: white;
    font-size: 16px;
    text-align: center;
}

a.supportlink {
    color: #06a428;
    font-weight: bold;
    text-decoration: underline;
}

.accordionTitle,
.accordion__Heading {
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(222, 222, 222, 1) 50%, rgba(182, 182, 182, 1) 100%);
    background: var(--brand-primary, #8DC442);
    text-align: center;
    font-weight: 700;
    padding: 1em;
    display: block;
    text-decoration: none;
    color: #fff;
    transition: background-color 0.5s ease-in-out;
}

.accordionTitle:before,
.accordion__Heading:before {
    content: url(../img/close.svg);
    line-height: 0.5em;
    height: 30px;
    float: right;
    position: relative;
    transition: transform 0.3s ease-in-out;
    font-style: normal;
    color: black;
    font-weight: 800;
    width: 30px;
}

.accordionTitle:hover,
.accordion__Heading:hover {
/*    background-color: #2ba659;*/
}

.accordionTitleActive,
.accordionTitle.is-expanded {
/*    background-color: #2ba659;*/
}

.accordionTitleActive:before,
.accordionTitle.is-expanded:before {
    transform: rotate(-225deg);
}

.accordionItem {
    height: auto;
    overflow: hidden;
    transition: max-height 1s;
}

dd {
    margin-bottom: 0 !important;
}

@media screen and (min-width: 48em) {
    .accordionItem {
        transition: max-height 0.5s;
    }
}

.accordionItem.is-collapsed {
    max-height: 0;
}

.no-js .accordionItem.is-collapsed {
    max-height: auto;
}

.animateIn {
    animation: accordionIn 0.45s normal ease-in-out both 1;
}

.animateOut {
    animation: accordionOut 0.45s alternate ease-in-out both 1;
}

@keyframes accordionIn {
    0% {
        opacity: 0;
        transform: scale(0.9) rotateX(-60deg);
        transform-origin: 50% 0;
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes accordionOut {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(0.9) rotateX(-60deg);
    }
}

section {
    padding: 32px 0;
    overflow: hidden;
}
.section-body {
    color: white;
}

.section-body p {
    margin-bottom: 37px;
}

section.big-section {
    padding: 160px 0;
}

section.extra-big-section {
    padding: 200px 0;
}

section.half-section {
    padding: 80px 0;
}

label {
    margin-bottom: 5px;
    font-weight: 700;
}

.overlap-section {
    margin-top: -14%;
    position: relative
}

.d-inherit {
    display: inherit !important;
}


/* verticle align */
.vertical-middle {
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 0;
    right: 0
}

.clear-both {
    clear: both
}

.line-break {
    display: block;
}

.absolute-middle-center {
    left: 50%;
    top: 50%;
    position: absolute;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
}

.absolute-bottom-center {
    left: 50%;
    top: 80%;
    position: absolute;
    -ms-transform: translateX(-50%) translateY(-80%);
    -moz-transform: translateX(-50%) translateY(-80%);
    -webkit-transform: translateX(-50%) translateY(-80%);
    transform: translateX(-50%) translateY(-80%);
    -o-transform: translateX(-50%) translateY(-80%);
}



/* ===================================
    Background image
====================================== */

.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;
}

.fix-background {
    background-attachment: fixed !important;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover !important;
    overflow: hidden;
    position: relative;
    transition-duration: 0.2s;
    transition-timing-function: ease-in;
}

.cover-background {
    position: relative !important;
    background-size: cover !important;
    overflow: hidden !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.background-size-inherit {
    background-size: inherit
}

.background-attachment-inherit {
    background-attachment: inherit
}

.background-position-left {
    background-position: left center;
}

.background-position-left-bottom {
    background-position: left bottom;
}

.background-position-right {
    background-position: right center;
}

.background-position-top {
    background-position: center top !important;
}

.up-down-ani {
    display: table;
    position: relative;
    -webkit-animation-name: up-down-animation;
    -webkit-animation-duration: .7s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-delay: .7s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    -moz-animation-name: up-down-animation;
    -moz-animation-duration: .7s;
    -moz-animation-timing-function: linear;
    -moz-animation-delay: .7s;
    -moz-animation-iteration-count: infinite;
    -ms-animation-name: up-down-animation;
    -ms-animation-duration: .7s;
    -ms-animation-timing-function: linear;
    -ms-animation-delay: .7s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-direction: alternate;
    -o-animation-direction: alternate;
    -o-animation-name: up-down-animation;
    -o-animation-duration: .7s;
    -o-animation-timing-function: linear;
    -o-animation-delay: .7s;
    -o-animation-iteration-count: infinite;
    -o-animation-direction: alternate;
    animation-direction: alternate;
    animation-name: up-down-animation;
    animation-duration: .7s;
    animation-timing-function: linear;
    animation-delay: .7s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    margin: 0 auto;
}

.background-position-x-50 {
    background-position-x: 50% !important;
}




/* ===================================
    19. Header
====================================== */
.side-left-menu-close {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
}

/* header icon */
.header-searchbar {
    border-left: 1px solid rgba(0, 0, 0, .15);
    padding-left: 15px;
    display: inline-block;
    line-height: 15px;
    position: relative;
}

.header-social-icon {
    border-left: 1px solid rgba(0, 0, 0, 0.15);
    padding-left: 15px;
    margin-left: 12px;
    display: inline-block;
    line-height: 15px;
    position: relative;
}

.heder-menu-button {
    display: inline-block;
    line-height: 14px;
    padding-left: 5px;
    position: relative;
}

nav.navbar.bootsnav .heder-menu-button .navbar-toggler {
    float: none;
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
    top: 4px
}

.navbar-nav>li.dropdown .dropdown-toggle::after {
    display: none;
}

.navbar-toggler .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
}

.navbar-toggler .icon-bar+.icon-bar {
    margin-top: 4px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.white-link .header-searchbar,
.white-link .header-social-icon {
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.header-social-icon a {
    color: #232323
}

.header-social-icon a i,
.header-searchbar a i {
    margin: 0 11px;
}

.header-searchbar a i {
    position: relative;
}

.search-icon {
    padding-right: 10px;
}

.header-social-icon a:last-child i {
    margin-right: 0;
}

/* menu center */
.menu-center .header-right {
    flex: 1 2 auto;
}

.navbar-collapse {
    padding-left: 0;
    padding-right: 0;
    min-height: 0px;
}

/* menu center logo */
.menu-logo-center .navbar-left>li {
    float: none;
    display: inline-block;
    vertical-align: middle;
}

header nav.menu-logo-center .navbar-nav>li>a {
    margin: 0 20px;
}

header nav.menu-logo-center .navbar-nav>li:last-child a {
    margin-right: 20px
}

/* default pionter cursor */
header nav.navbar a:not([href]):not([tabindex]):focus,
header nav.navbar a:not([href]):not([tabindex]):hover {
    cursor: pointer;
}

/* header navigation color and logo */
header nav.navbar .navbar-nav>li>a,
nav.navbar.bootsnav ul.nav>li>a {
    color: white;
    cursor: pointer;
}

header nav.navbar.white-link .navbar-nav>li>a,
nav.navbar.bootsnav.white-link ul.nav>li>a,
header nav.navbar.white-link .header-social-icon a,
nav.navbar.bootsnav.white-link .header-social-icon a,
header nav.navbar.white-link .header-searchbar a,
nav.navbar.bootsnav.white-link .header-searchbar a,
header nav.navbar.bootsnav ul.nav.white-link>li>a,
nav.navbar.white-link .heder-menu-button a {
    color: #fff
}

header.sticky nav.navbar-fixed-top.header-light-transparent.white-link .navbar-nav>li>a,
header.sticky nav.navbar-fixed-top.header-light-transparent.white-link .header-searchbar a,
header.sticky nav.navbar-fixed-top.header-light-transparent.white-link .header-social-icon a,
header.sticky nav.navbar-fixed-top.header-light.white-link .navbar-nav>li>a,
header.sticky nav.navbar-fixed-top.header-light.white-link .header-searchbar a,
header.sticky nav.navbar-fixed-top.header-light.white-link .header-social-icon a,
header.sticky nav.navbar-fixed-top.header-light.white-link .header-menu-button a,
header.sticky nav.navbar-fixed-top.header-light.white-link .header-menu-button a {
    color: #232323
}

header .logo .logo-dark,
header .logo .logo-light {
    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 .logo .logo-dark.default,
header .logo .logo-light.default {
    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.sticky nav.header-dark-transparent .logo .logo-light,
header.sticky nav.header-dark .logo .logo-light {
    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.sticky nav.header-dark-transparent .logo .logo-dark,
header.sticky nav.header-dark .logo .logo-dark {
    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.sticky nav.header-light-transparent .logo .logo-dark,
header.sticky nav.header-light .logo .logo-dark {
    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.sticky nav.header-light-transparent .logo .logo-light,
header.sticky nav.header-light .logo .logo-light {
    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;
}

.navbar-top-scroll {
    position: absolute;
    top: 0;
    z-index: 5;
}

header.sticky nav.navbar-top-scroll {
    background-color: inherit;
}

header a.logo {
    display: inline-block;
    vertical-align: middle;
}

header a.logo img {
    max-height: 48px;
}

header .left-nav .sidebar-part1 a.logo img {
    max-height: inherit;
}

.logo-holder img {
    max-height: 75px;
}

/* header animation */
.navbar-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
}

.sticky .navbar-top {
    top: -160px;
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
}

.sticky.header-appear .navbar-top.navbar-transparent-no-sticky,
.sticky.header-appear .navbar-fixed-top.navbar-transparent-no-sticky {
    top: -160px;
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
}

.sticky.header-appear .navbar-top {
    top: 0;
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
}

header .bootsnav .dropdown .animated {
    -webkit-animation-duration: 0.3s;
    -moz-animation-duration: 0.3s;
    -ms-animation-duration: 0.3s;
    -o-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

nav.navbar.bootsnav .simple-dropdown .dropdown-menu>li.dropdown>ul:before {
    position: absolute;
    height: calc(100% + 20px);
    width: 100%;
    display: block;
    content: "";
}

header.sticky .navbar-scroll-fixed-top {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
}

header.sticky .navbar-scroll-top {
    position: fixed;
    top: -120px;
    width: 100%;
    left: 0;
    transition-duration: 0s;
    -webkit-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -ms-transition-duration: 0s;
    -o-transition-duration: 0s;
}

header.sticky.header-appear .navbar-scroll-top {
    top: 0;
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
}

/* navigation */
header.header-appear nav.bootsnav.header-light-transparent .navbar-nav>li>a:hover,
header.header-appear nav.bootsnav.header-light .navbar-nav>li>a:hover,
header.header-appear nav.header-light-transparent .header-social-icon a:hover,
header.header-appear nav.header-light .header-social-icon a:hover,
header.header-appear nav.header-light.white-link .header-social-icon a:hover,
header.header-appear nav.header-light-transparent.white-link .header-social-icon a:hover,
header.header-appear nav.header-light-transparent.white-link .heder-menu-button a:hover,
header.header-appear nav.header-light-transparent .header-searchbar a:hover,
header.header-appear nav.header-light .header-searchbar a:hover,
header.header-appear nav.header-light.white-link .header-searchbar a:hover,
header.header-appear nav.header-light-transparent.white-link .header-searchbar a:hover,
header nav.navbar .navbar-nav>li>a:hover,
nav.navbar.bootsnav ul.nav>li>a:hover,
.header-search-form:hover,
.header-social-icon a:hover {
    color: #93d500;
}

header nav.navbar.white-link .navbar-nav>li>a:hover,
nav.navbar.bootsnav.white-link ul.nav>li>a:hover,
header nav.navbar.white-link .header-social-icon a:hover,
nav.navbar.bootsnav.white-link .header-social-icon a:hover,
header nav.navbar.white-link .header-searchbar a:hover,
nav.navbar.bootsnav.white-link .header-searchbar a:hover,
header nav.navbar.bootsnav ul.nav.white-link>li>a:hover,
header.header-appear nav.header-dark-transparent .navbar-nav>li>a:hover,
header.header-appear nav.header-dark .navbar-nav>li>a:hover,
header.sticky nav.header-dark .navbar-nav>li>a:hover,
header.sticky nav.header-dark-transparent .navbar-nav>li>a:hover,
header.header-appear nav.header-dark-transparent .search-button:hover,
header.header-appear nav.header-dark .search-button:hover,
header.sticky nav.header-dark .search-button:hover,
header.sticky nav.header-dark-transparent .search-button:hover {
    color: #93d500;
}

header.sticky nav.navbar-fixed-top.header-light-transparent.white-link .navbar-nav>li>a:hover,
header.sticky nav.navbar-fixed-top.header-light-transparent.white-link .header-searchbar a:hover,
header.sticky nav.navbar-fixed-top.header-light-transparent.white-link .header-social-icon a:hover,
header.sticky nav.navbar-fixed-top.header-light.white-link .navbar-nav>li>a:hover,
header.sticky nav.navbar-fixed-top.header-light.white-link .header-searchbar a:hover,
header.sticky nav.navbar-fixed-top.header-light.white-link .header-social-icon a:hover,
header.sticky nav.navbar-fixed-top.header-light.white-link .header-menu-button a:hover,
header.sticky nav.navbar-fixed-top.header-light.white-link .header-menu-button a:hover {
    color: rgba(0, 0, 0, 0.6)
}

.navbar-nav>li>a {
    line-height: 20px;
}

header.sticky nav.navbar.white-link .navbar-nav>li>a:hover,
header.sticky nav.navbar.bootsnav.white-link ul.nav>li>a:hover {
    color: rgba(0, 0, 0, 0.6);
}

header.sticky nav.navbar.header-dark.white-link .navbar-nav>li>a:hover,
header.sticky nav.navbar.bootsnav.header-dark.white-link ul.nav>li>a:hover,
header.sticky nav.header-dark .header-social-icon a:hover {
    color: rgba(255, 255, 255, 0.6);
}

header.header-appear nav.bootsnav.header-light-transparent .navbar-nav>li.active>a,
header.header-appear nav.bootsnav.header-light .navbar-nav>li.active>a,
header nav.navbar .navbar-nav>li.active>a,
nav.navbar.bootsnav ul.nav>li.active>a {
    color: rgba(0, 0, 0, 0.6)
}

header nav.navbar.white-link .navbar-nav>li.active>a,
nav.navbar.bootsnav.white-link ul.nav>li.active>a,
header nav.navbar.bootsnav ul.nav.white-link>li.active>a,
header.header-appear nav.header-dark-transparent .navbar-nav>li.active>a,
header.header-appear nav.header-dark .navbar-nav>li.active>a,
header.sticky nav.header-dark .navbar-nav>li.active>a,
header.sticky nav.header-dark-transparent .navbar-nav>li.active>a,
header.sticky nav.navbar.bootsnav.header-dark-transparent.white-link .navbar-nav>li.active>a {
    color: rgba(255, 255, 255, 0.6)
}

header.sticky nav.navbar-fixed-top.header-light-transparent.white-link .navbar-nav>li.active>a,
header.sticky nav.navbar-fixed-top.header-light.white-link .navbar-nav>li.active>a {
    color: rgba(0, 0, 0, 0.6)
}

header.sticky nav.navbar.white-link .navbar-nav>li.active>a,
header.sticky nav.navbar.bootsnav.white-link ul.nav>li.active>a {
    color: rgba(0, 0, 0, 0.6);
}

header.sticky nav.navbar.header-dark.white-link .navbar-nav>li.active>a,
header.sticky nav.navbar.bootsnav.header-dark.white-link ul.nav>li.active>a {
    color: rgba(255, 255, 255, 0.6);
}

header.header-appear nav.bootsnav.header-light-transparent .navbar-nav>li>a.active,
header.header-appear nav.bootsnav.header-light .navbar-nav>li>a.active,
header nav.navbar .navbar-nav>li>a.active,
nav.navbar.bootsnav ul.nav>li>a.active {
    color: rgb(188 241 36)
}

header nav.navbar.white-link .navbar-nav>li>a.active,
nav.navbar.bootsnav.white-link ul.nav>li>a.active,
header nav.navbar.bootsnav ul.nav.white-link>li>a.active,
header.header-appear nav.header-dark-transparent .navbar-nav>li>a.active,
header.header-appear nav.header-dark .navbar-nav>li>a.active,
header.sticky nav.header-dark .navbar-nav>li>a.active,
header.sticky nav.header-dark-transparent .navbar-nav>li>a.active {
    color: rgba(255, 255, 255, 0.6)
}

header.sticky nav.navbar-fixed-top.header-light-transparent.white-link .navbar-nav>li>a.active,
header.sticky nav.navbar-fixed-top.header-light.white-link .navbar-nav>li>a.active {
    color: rgba(0, 0, 0, 0.6)
}

header.sticky nav.navbar.white-link .navbar-nav>li>a.active,
header.sticky nav.navbar.bootsnav.white-link ul.nav>li>a.active {
    color: rgba(0, 0, 0, 0.6);
}

header.sticky nav.navbar.header-dark.white-link .navbar-nav>li>a.active,
header.sticky nav.navbar.bootsnav.header-dark.white-link ul.nav>li>a.active {
    color: rgba(255, 255, 255, 0.6);
}

header.header-appear nav.bootsnav.header-light-transparent .navbar-nav>li.dropdown.on>a,
header.header-appear nav.bootsnav.header-light .navbar-nav>li.dropdown.on>a,
header nav.navbar .navbar-nav>li.dropdown.on>a,
nav.navbar.bootsnav ul.nav>li.dropdown.on>a {
    color: rgba(0, 0, 0, 0.6)
}

header nav.navbar.white-link .navbar-nav>li.dropdown.on>a,
nav.navbar.bootsnav.white-link ul.nav>li.dropdown.on>a,
header nav.navbar.bootsnav ul.nav.white-link>li.dropdown.on>a,
header.header-appear nav.header-dark-transparent .navbar-nav>li.dropdown.on>a,
header.header-appear nav.header-dark .navbar-nav>li.dropdown.on>a,
header.sticky nav.header-dark .navbar-nav>li.dropdown.on>a,
header.sticky nav.header-dark-transparent .navbar-nav>li.dropdown.on>a {
    color: rgba(255, 255, 255, 0.6)
}

header.sticky nav.navbar-fixed-top.header-light-transparent.white-link .navbar-nav>li.dropdown.on>a,
header.sticky nav.navbar-fixed-top.header-light.white-link .navbar-nav>li.dropdown.on>a {
    color: rgba(0, 0, 0, 0.6)
}

header.sticky nav.navbar.white-link .navbar-nav>li.dropdown.on>a,
header.sticky nav.navbar.bootsnav.white-link ul.nav>li.dropdown.on>a {
    color: rgba(0, 0, 0, 0.6);
}

header.sticky nav.navbar.header-dark.white-link .navbar-nav>li.dropdown.on>a,
header.sticky nav.navbar.bootsnav.header-dark.white-link ul.nav>li.dropdown.on>a {
    color: rgba(255, 255, 255, 0.6);
}

header {
    width: 100%;
    z-index: 99;
}

.header-with-topbar .top-header-area {
    font-size: 11px;
    position: fixed;
    top: 0;
    z-index: 10005;
    width: 100%;
    transition: ease-in-out 0.3s;
    -webkit-transition: ease-in-out 0.3s;
    -moz-transition: ease-in-out 0.3s;
    -ms-transition: ease-in-out 0.3s;
    -o-transition: ease-in-out 0.3s;
}

.sticky.header-with-topbar .top-header-area {
    top: -45px
}

.sticky.header-with-topbar.fixed-topbar .top-header-area {
    top: 0
}

.navbar-fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.navbar-form.search-box {
    display: inline-block;
    margin-top: 8px;
    margin-bottom: 8px;
}

header .top-header-area .icon-social-very-small a:last-child i {
    margin-right: 0;
}

header nav .row {
    height: auto;
    padding: 0;
}

header nav.navbar [class*="col-"],
header nav.navbar [class^=" col-"] {
    padding-left: 15px;
    padding-right: 15px;
}

header nav.navbar {
    border-radius: 0;
}

header nav.navbar-default,
nav.navbar.bootsnav {
    border-bottom: 0;
}

header nav {
    width: 100%;
    top: 0px;
    z-index: 99;
    margin-bottom: 0;
}

header nav .nav-header-container {
    position: relative;
}

header nav .navbar-nav>li>a {
    color: #232323;
    font-size: 12px;
    font-weight: 800;
    margin: 0 40px 0 0;
    padding: 5px 0px 5px;
    text-transform: uppercase;
    letter-spacing: 0.015em;
}

header nav .navbar-nav>li>a:hover,
header nav .navbar-nav>li>a:focus,
header nav .navbar-nav>li.active>a {
    background: transparent;
}

header nav .navbar-nav>li:last-child a {
    margin-right: 0;
}

.navbar-fixed-bottom,
.navbar-fixed-top {
    z-index: 9999
}

header nav.navbar-default .navbar-nav>li>a:hover,
header nav.navbar-default .navbar-nav>li>a:focus,
header nav.navbar-default .navbar-nav>li.active>a {
    border-bottom-color: #232323
}

header nav .navbar-nav.text-normal>li>a {
    font-weight: normal;
    font-size: 12px
}

.navbar-nav>li {
    position: inherit;
}

.navbar-nav>li.dropdown>.fas {
    display: none
}

.navbar-nav>li ul {
    margin: 0;
    padding: 0;
}

.navbar-toggler {
    border-radius: 0;
    margin-right: 0;
    float: right;
    border: none;
}

.mobile-toggle {
    display: block
}

nav.navbar.bootsnav .navbar-toggle {
    top: 2px;
}

.sidebar-nav .mobile-toggle {
    display: none
}

.mobile-toggle span {
    display: block;
    width: 16px;
    height: 2px;
    background: #232323;
    content: "";
}

.mobile-toggle span:nth-child(2) {
    margin: 3px 0px;
}

.mobile-toggle:hover span,
.white-link .mobile-toggle:hover span {
    background-color: red
}

.white-link .mobile-toggle span {
    background: #fff;
}

header nav .brand-logo {
    padding-top: 20px;
    padding-bottom: 20px;
}

header.sticky nav .brand-logo {
    padding-top: 15px;
    padding-bottom: 15px;
}

header.sticky nav.navbar.navbar-default.navbar-fixed-top ul.nav>li>a,
header.sticky nav.navbar.navbar-default.navbar-top ul.nav>li>a {
    padding: 20px 0 20px;
}

/* top logo */
.navbar.navbar-brand-top>.container .navbar-brand,
.navbar>.container-fluid .navbar-brand {
    margin-left: 0;
}

.navbar-brand-top .navbar-brand {
    height: auto;
}

nav.navbar-brand-top.navbar.navbar-default ul.nav>li>a {
    padding: 20px 0;
}

.navbar-brand-top .navbar-collapse.collapse {
    flex-grow: inherit;
}

/* center navigation */
.center-nav {
    float: none;
    text-align: center
}

.center-nav>li {
    float: none;
    display: inline-block;
}

nav.navbar.bootsnav.menu-center ul.nav.navbar-center {
    display: table;
    float: none;
    margin: 0 auto;
    table-layout: fixed;
}


/* light transparent navigation */
header.header-appear nav.header-light-transparent,
header.sticky nav.navbar-fixed-top.header-light-transparent,
header.sticky nav.navbar-scroll-fixed-top.header-light-transparent {
    background: black;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
}

header.header-appear nav.header-light-transparent .separator-line-verticle-small,
header.header-appear nav.header-light .separator-line-verticle-small {
    background: rgba(0, 0, 0, 0.4)
}

header.header-appear nav.header-light-transparent .header-social-icon a,
header.header-appear nav.header-light .header-social-icon a,
header.header-appear nav.header-light.white-link .header-social-icon a,
header.header-appear nav.header-light-transparent.white-link .header-social-icon a,
header.header-appear nav.header-light-transparent.white-link .heder-menu-button a,
header.header-appear nav.header-light-transparent .header-searchbar a,
header.header-appear nav.header-light .header-searchbar a,
header.header-appear nav.header-light.white-link .header-searchbar a,
header.header-appear nav.header-light-transparent.white-link .header-searchbar a {
    color: #232323
}

header.header-appear nav.bootsnav.header-light-transparent .navbar-nav>li>a,
header.header-appear nav.bootsnav.header-light .navbar-nav>li>a {
    color: white;
}

header.header-appear nav.header-light-transparent .header-searchbar,
header.header-appear.header-light-transparent .header-social-icon,
header.header-appear nav.header-light .header-searchbar,
header.header-appear nav.header-light-transparent.white-link .header-social-icon,
header.sticky nav.header-light-transparent .header-searchbar,
header.sticky nav.header-light-transparent .header-social-icon,
header.sticky nav.header-light .header-searchbar,
header.sticky nav.header-light .header-social-icon {
    border-left: 1px solid rgba(0, 0, 0, 0.25);
}

header.header-appear nav.nav-fixed-top.header-light-transparent.white-link .navbar-nav>li>a,
header.header-appear nav.nav-fixed-top.header-light-transparent.white-link .header-social-icon a,
header.header-appear nav.nav-fixed-top.header-light-transparent.white-link .header-searchbar a,
header.header-appear nav.nav-scroll-fixed-top.header-light-transparent.white-link .navbar-nav>li>a,
header.header-appear nav.nav-scroll-fixed-top.header-light-transparent.white-link .header-social-icon a,
header.header-appear nav.nav-scroll-fixed-top.header-light-transparent.white-link .header-searchbar a {
    color: #232323
}

header.sticky nav.header-light-transparent .heder-menu-button .mobile-toggle span,
header.sticky nav.header-light .heder-menu-button .mobile-toggle span {
    background: #232323;
}

/* dark transparent navigation */
header.header-appear nav.header-dark-transparent,
header.sticky nav.navbar-fixed-top.header-dark-transparent,
header.sticky nav.navbar-scroll-fixed-top.header-dark-transparent {
    background: rgba(23, 23, 23, 0.85);
}

header.header-appear nav.header-dark-transparent .separator-line-verticle-small,
header.header-appear nav.header-dark .separator-line-verticle-small {
    background: #ffffff
}

header.header-appear nav.header-dark-transparent .navbar-nav>li>a,
header.header-appear nav.header-dark .navbar-nav>li>a,
header.sticky nav.header-dark .navbar-nav>li>a,
header.sticky nav.header-dark-transparent .navbar-nav>li>a {
    color: #ffffff
}

header.header-appear nav.header-dark-transparent .header-social-icon a,
header.header-appear nav.header-dark .header-social-icon a,
header.sticky nav.header-dark .header-social-icon a,
header.sticky nav.header-dark-transparent .header-social-icon a {
    color: #ffffff
}

header.header-appear nav.header-dark-transparent .search-button,
header.header-appear nav.header-dark-transparent .right-menu-button,
header.header-appear nav.header-dark .search-button,
header.header-appear nav.header-dark .right-menu-button,
header.sticky nav.header-dark .search-button,
header.sticky nav.header-dark .right-menu-button,
header.sticky nav.header-dark-transparent .search-button,
header.sticky nav.header-dark-transparent .right-menu-button {
    color: #ffffff
}

header.sticky nav.header-dark-transparent .header-social-icon,
header.sticky nav.header-dark .header-social-icon,
header.sticky nav.header-dark-transparent .header-searchbar,
header.sticky nav.header-dark .header-searchbar {
    border-left: 1px solid rgba(255, 255, 255, 0.4);
}

header.sticky nav.header-dark-transparent .mobile-toggle span,
header.sticky .header-dark .mobile-toggle span {
    background: #fff;
}

header.sticky nav.header-dark-transparent .mobile-toggle:hover span,
header.sticky .header-dark .mobile-toggle:hover span {
    background: red;
}

/* light navigation */
header.header-appear nav.header-light,
header.sticky nav.navbar-fixed-top.header-light,
header.sticky nav.navbar-scroll-fixed-top.header-light {
    background-color: #ffffff;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
}

/* dark navigation */
header.header-appear nav.header-dark,
header.sticky nav.navbar-fixed-top.header-dark,
header.sticky nav.navbar-scroll-fixed-top.header-dark {
    background-color: #000000;
}

/* collepsed menu icon */
.navbar-default .navbar-toggler .icon-bar,
header.sticky .navbar-default.header-light .navbar-toggler .icon-bar,
header.sticky .navbar-default.header-light-transparent .navbar-toggler .icon-bar {
    background: #93d500;
}

.navbar-default.white-link .navbar-toggler .icon-bar,
header.sticky .navbar-default.header-dark .navbar-toggler .icon-bar,
header.sticky .navbar-default.header-dark-transparent .navbar-toggler .icon-bar {
    background: #fff;
}

/* hamburger menu */
nav.navbar.bootsnav .btn-hamburger {
    padding: 0;
}

nav.navbar.bootsnav .btn-hamburger .navbar-toggler {
    margin: 0;
    top: -2px;
    padding: 10px 0 10px 10px;
}

.hamburger-menu-wrepper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -10005;
    padding: 55px 80px;
    display: table;
    opacity: 0;
    visibility: collapse;
}

.menu-middle {
    height: 100%;
    width: 65%;
    margin: 0 auto;
    opacity: 0;
}

.hamburger-menu-links {
    float: left;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    font-size: 52px;
    line-height: 55px;
    opacity: 0;
}

.hamburger-menu-links li {
    float: left;
    margin-bottom: 36px;
    width: 50%;
}

.hamburger-menu-links li a {
    color: #fff;
    position: relative;
}

.hamburger-menu-links li.show>a {
    color: #ff2149
}

.hamburger-menu-links li a:hover,
.follow-box a:hover {
    color: #ff2149
}

.animation-box {
    position: absolute;
    top: 5%;
    height: 100%;
    width: 100%;
    left: 0;
    transform: perspective(600px) rotateX(-20deg);
    -weblit-transform: perspective(600px) rotateX(-20deg);
    -moz-transform: perspective(600px) rotateX(-20deg);
    -ms-transform: perspective(600px) rotateX(-20deg);
    -o-transform: perspective(600px) rotateX(-20deg);
}

.hamburger-menu.show-menu .hamburger-menu-wrepper {
    z-index: 10004;
    opacity: 1;
    visibility: visible;
}

.hamburger-menu.show-menu .animation-box {
    top: 0;
    transform: perspective(600px) rotateX(0deg);
    -webkit-transform: perspective(600px) rotateX(0deg);
    -moz-transform: perspective(600px) rotateX(0deg);
    -o-transform: perspective(600px) rotateX(0deg);
    -ms-transform: perspective(600px) rotateX(0deg);
    opacity: 1;
}

.hamburger-menu.show-menu .hamburger-menu-links,
.hamburger-menu.show-menu .menu-middle {
    opacity: 1;
}

.hamburger-menu.show-menu .btn-hamburger .mobile-toggle,
.hamburger-menu .btn-hamburger .close-menu {
    transform: scale(0);
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -o-transform: scale(0);
    -ms-transform: scale(0);
}

.hamburger-menu.show-menu .btn-hamburger .close-menu,
.hamburger-menu .btn-hamburger .mobile-toggle {
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
}

.hamburger-menu .hamburger-menu-wrepper .btn-hamburger {
    border-color: #fff;
    height: 18px;
    position: absolute;
    width: 18px;
    z-index: 99;
    padding: 0;
    margin: -27px 0 0 -15px;
    opacity: 0;
}

.hamburger-menu.show-menu .hamburger-menu-wrepper .btn-hamburger {
    opacity: 1;
    right: 40px;
    transition-delay: 0.2s;
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    -ms-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    padding: 15px;
}

.hamburger-menu .close-button-menu {
    float: none;
    height: auto;
    margin: 0;
    padding: 0;
    position: inherit;
    right: -26px;
    top: 44px;
    width: auto;
}

.hamburger-menu .close-button-menu:after,
.hamburger-menu .close-button-menu:before {
    background: #fff;
    width: 22px;
    right: 26px;
    top: -34px;
}

.hamburger-menu-links li.dropdown>a:after {
    content: "\f107";
    display: inline-block;
    position: absolute;
    right: -60px;
    top: 15px;
    font-family: Font Awesome\ 5 Free;
    font-weight: 900;
    font-size: 42px
}

/* header style two */
.header-with-topbar .navbar-top,
.header-with-topbar .navbar-fixed-top {
    top: 34px;
    background: #fff;
    box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
}

.header-with-topbar.sticky .navbar-top {
    top: -160px;
}

.header-with-topbar.sticky.header-appear .navbar-top {
    top: 0;
}

/* full width light transparent navigation */
header nav.nav-full-width {
    width: 100%
}

.close-button-menu {
    float: right;
    padding: 10px;
    background-color: transparent;
    color: #232323;
    border: 0;
    position: absolute;
    height: 40px;
    width: 40px;
    outline: none;
    top: 20px;
    right: 20px
}

.full-width-pull-menu .dropdown-toggle {
    position: relative;
}

.full-width-pull-menu span.dropdown-toggle {
    position: absolute;
    right: 0;
    width: 40px;
    height: 40px;
    text-align: center;
    top: 43px;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.full-width-pull-menu .dropdown .dropdown-toggle:before {
    content: "";
    display: block;
    position: absolute;
    right: 20px;
    top: 15px;
    height: 11px;
    width: 1px;
    background: #232323;
}

.full-width-pull-menu .dropdown.show .dropdown-toggle:before {
    height: 0;
}

.full-width-pull-menu .dropdown .dropdown-toggle:after {
    content: "";
    display: block;
    position: absolute;
    right: 15px;
    top: 20px;
    height: 1px;
    width: 11px;
    background: #232323;
    border: none;
}

.full-width-pull-menu .dropdown ul {
    background-color: inherit;
}

/* full width navigation style 1 */
.full-width-pull-menu .link-style-1 .link-style-1 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.full-width-pull-menu .link-style-1 ul li {
    margin: 20px 0;
    display: table
}

.full-width-pull-menu .link-style-1 ul li a {
    background: inherit;
    color: #232323;
    font-size: 22px;
    line-height: 26px;
    position: relative;
    padding-left: 35px;
}

.full-width-pull-menu .link-style-1 ul li:hover>a,
.full-width-pull-menu .link-style-1 ul li.show>a {
    color: var(--base-color)
}

.full-width-pull-menu .link-style-1 ul li:hover>a:after,
.full-width-pull-menu .link-style-1 ul li.show>a:after {
    background: var(--base-color)
}

.full-width-pull-menu .link-style-1 ul li a:after {
    background: #dbdbdb;
    content: "";
    display: inline-block;
    height: 4px;
    left: 0;
    position: absolute;
    top: 14px;
    width: 18px;
}

.full-width-pull-menu .link-style-1 .dropdown.show ul {
    display: block;
}

.full-width-pull-menu .link-style-1 .dropdown ul {
    position: inherit;
    left: 0;
    right: 0;
    padding: 10px 30px 0;
    background-color: inherit;
    border: 0;
    float: none;
    box-shadow: none;
    margin: 0;
}

.full-width-pull-menu .link-style-1 ul li li a {
    font-size: 18px;
    line-height: 22px;
    padding-left: 30px;
}

.full-width-pull-menu .link-style-1 .dropdown ul li a:hover,
.dropdown ul li a:focus {
    background-color: inherit
}

.full-width-pull-menu .link-style-1 .dropdown ul li {
    margin: 5px;
}

.full-width-pull-menu .link-style-1 .dropdown ul li:last-child {
    margin-bottom: 0;
}

/* full width navigation style 2 */
.full-width-pull-menu .link-style-2 .link-style-2 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.full-width-pull-menu .link-style-2 ul li {
    display: table;
    width: 100%;
}

.full-width-pull-menu .link-style-2 ul li a {
    background: inherit;
    color: #232323;
    font-size: 48px;
    line-height: 85px;
    position: relative;
}

.full-width-pull-menu .link-style-2 ul li:hover>a,
.full-width-pull-menu .link-style-2 ul li.show>a {
    color: var(--base-color)
}

.full-width-pull-menu .link-style-2 ul li.show>a:after {
    background: var(--base-color)
}

.full-width-pull-menu .link-style-2 .dropdown ul {
    display: block !important;
    height: 0;
    overflow: hidden
}

.full-width-pull-menu .link-style-2 .dropdown ul {
    position: inherit;
    left: 0;
    right: 0;
    padding: 0;
    background-color: inherit;
    border: 0;
    float: none;
    box-shadow: none;
    margin: 0;
}

.full-width-pull-menu .link-style-2 .dropdown.show ul {
    display: block;
    height: 100%;
}

.full-width-pull-menu .link-style-2 .dropdown ul li a {
    font-size: 14px;
    line-height: 18px;
    color: #757575;
    padding: 0;
    margin: 0;
    display: block;
    font-weight: 400;
}

.full-width-pull-menu .link-style-2 .dropdown ul li {
    border-bottom: 1px solid #e3e3e3;
    padding: 7px 0;
}

.full-width-pull-menu .link-style-2 .dropdown ul li:last-child {
    border-bottom: 1px solid transparent;
}

.full-width-pull-menu .link-style-2 .dropdown ul li a:hover,
.dropdown ul li a:focus {
    background-color: inherit
}

.full-width-pull-menu .link-style-2 .dropdown ul li ul.sub-menu {
    padding-left: 15px;
    padding-top: 2px;
}

.full-width-pull-menu .link-style-2 .dropdown ul li ul.sub-menu li {
    border-bottom: 0;
    padding: 5px 0 0 0;
}

.full-width-pull-menu .link-style-2 .dropdown ul li:last-child {
    margin-bottom: 0;
}

.full-width-pull-menu .link-style-2 .icon-social-medium a:first-child {
    margin-left: 0;
}

.full-width-pull-menu .link-style-2 .icon-social-medium a:last-child {
    margin-right: 0;
}

.close-button-menu:after,
.close-button-menu:before {
    content: "";
    display: block;
    background: #000;
    height: 2px;
    width: 18px;
    position: absolute;
}

.close-button-menu:after {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
}

.close-button-menu:before {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}

/* full navigation */
.show-menu .menu-wrap,
.menu-wrap {
    left: auto
}

.show-menu .menu-wrap {
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    opacity: 1;
    visibility: visible;
    z-index: 10001;
}

.menu-wrap {
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    width: 100%;
    z-index: -10001;
    position: fixed;
    top: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
}

/* container fluid navigation padding */
header nav.nav-box-width {
    padding: 0 50px;
}

/* hamburger menu right side */
.big-menu-right {
    position: fixed;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    padding: 0 5%;
    opacity: 0;
    transform: translateX(30%) scaleX(0.6);
    -webkit-transform: translateX(30%) scaleX(0.6);
    -moz-transform: translateX(30%) scaleX(0.6);
    -o-transform: translateX(30%) scaleX(0.6);
    -ms-transform: translateX(30%) scaleX(0.6);
    transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    z-index: -1;
}

.big-menu-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.big-menu-links li {
    margin-bottom: 15px;
    display: block;
    width: 100%;
    float: left
}

.big-menu-links li a {
    font-size: 50px;
    line-height: 1.5;
    color: #676767;
    float: left
}

.big-menu-links li a:after {
    width: 0;
    background: var(--base-color);
    height: 3px;
    content: "";
    display: block;
    transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    -ms-transition-duration: 0.5s;
}

.big-menu-links li a:hover {
    color: #ddd;
}

.big-menu-links li a:hover:after {
    width: 100px;
    transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    -ms-transition-duration: 0.5s;
}

.big-menu-right.show {
    transform: translateX(0) scaleX(1);
    -moz-transform: translateX(0) scaleX(1);
    -webkit-transform: translateX(0) scaleX(1);
    -o-transform: translateX(0) scaleX(1);
    -ms-transform: translateX(0) scaleX(1);
    opacity: 1;
    z-index: 9999
}

.big-menu-close {
    background: #fff;
    position: absolute;
    right: 0;
    width: 40px;
    height: 40px;
    color: #232323;
}


/* navigation left sidebar */
header .menu-wrap .widget {
    margin-bottom: 30px;
    display: inline-block;
    width: 100%
}

.nav.navbar-left-sidebar {
    display: block;
    transition: all 0s ease-in-out 0s;
    -webkit-transition: all 0s ease-in-out 0s;
    -moz-transition: all 0s ease-in-out 0s;
    -ms-transition: all 0s ease-in-out 0s;
    -o-transition: all 0s ease-in-out 0s;
    overflow-y: auto;
}

.left-nav-on .sidebar-part2 .sidebar-middle .sidebar-middle-menu .nav {
    overflow-x: hidden;
    display: block;
}

.nav.navbar-left-sidebar li {
    display: inline-block;
    width: 100%;
    padding: 0 45px;
}

.nav.navbar-left-sidebar li a,
nav.navbar.bootsnav.navbar-left-sidebar ul.nav>li>a {
    font-size: 11px;
    text-transform: uppercase;
    color: #939393;
    background: transparent !important;
    font-weight: 600;
    border-bottom: 1px solid #e5e5e5 !important;
    padding: 15px 0;
    margin: 0;
}

nav.navbar.sidebar-nav .navbar-left-sidebar li.dropdown .third-level a>[class^="ti-"],
nav.navbar.sidebar-nav .navbar-left-sidebar li.dropdown .third-level a>[class*=" ti-"] {
    margin-right: 5px;
}

nav.navbar.sidebar-nav .navbar-left-sidebar li.dropdown .third-level li:first-child a>i,
nav.navbar.sidebar-nav .navbar-left-sidebar li.dropdown .third-level li:first-child a>i {
    margin-right: 5px;
}

.nav.navbar-left-sidebar li:last-child a {
    border-bottom: none
}

.nav.navbar-left-sidebar li a:hover {
    color: #fff
}

.nav.navbar-left-sidebar li a .nav-caret {
    height: 35px;
    text-align: right;
    width: 35px;
}

.nav.navbar-left-sidebar .dropdown .second-level {
    left: 290px;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.nav.navbar-left-sidebar>li>a {
    line-height: 20px;
}

.nav.navbar-left-sidebar>li .second-level li a {
    line-height: 1.42857143;
}

.navbar-expand-lg .navbar-left-sidebar .dropdown-menu {
    position: fixed;
}

.nav.navbar-left-sidebar .dropdown.on .second-level {
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.nav.navbar-left-sidebar .second-level .dropdown .third-level {
    left: 570px;
    opacity: 0 !important;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.nav.navbar-left-sidebar .second-level .dropdown.on .third-level {
    opacity: 1 !important;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    opacity: 1 !important;
}

.nav.navbar-left-sidebar .dropdown-menu .dropdown>a:after {
    display: none
}

/* pull left sidebar */
.cbp-spmenu {
    background: #fff;
    position: fixed;
    z-index: 1;
}

.cbp-spmenu-vertical {
    width: 455px;
    height: 100%;
    top: 0;
    z-index: 10005;
}

.cbp-spmenu-right {
    right: -455px;
}

.cbp-spmenu-left {
    left: -100%;
}

.cbp-spmenu-left.cbp-spmenu-open {
    left: 0;
}

.cbp-spmenu-right.cbp-spmenu-open {
    right: 0px;
    overflow-x: auto;
    box-shadow: 0 0 4px rgba(0, 0, 0, .2);
}

.cbp-spmenu-push {
    overflow-x: hidden;
    position: relative;
    left: 0;
}

.cbp-spmenu,
.cbp-spmenu-push {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

/* custome scrollbar */
.cbp-spmenu-right::-webkit-scrollbar,
.navbar-left-sidebar::-webkit-scrollbar {
    width: 5px;
}

.cbp-spmenu-right::-webkit-scrollbar-track,
.navbar-left-sidebar::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -ms-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -o-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.cbp-spmenu-right::-webkit-scrollbar-thumb,
.navbar-left-sidebar::-webkit-scrollbar-thumb {
    background-color: darkgrey;
    outline: 1px solid slategrey;
}

/* sidebar navigation */
nav.navbar.sidebar-nav .container {
    display: table-cell;
    height: 75px;
    position: relative;
    vertical-align: top;
}

nav.navbar.bootsnav.sidebar-nav .navbar-left-sidebar>li>a {
    color: #626262;
    border-color: #ededed;
    padding: 15px 0;
    display: block;
    position: relative;
}

nav.navbar.sidebar-nav .navbar-left-sidebar li a:hover,
nav.navbar.bootsnav.sidebar-nav ul.nav.navbar-left-sidebar li.active>a {
    color: #000
}

.sidebar-nav .logo-holder {
    text-align: center;
    min-height: 107px;
}

.sidebar-nav .footer-holder {
    text-align: center
}

nav.navbar .toggle-button {
    background: #000;
    border: medium none;
    height: auto;
    margin: 0;
    padding: 0;
    width: auto;
}

.sidebar-nav .dropdown-menu {
    box-shadow: none;
    height: 100%;
    left: 270px;
    padding: 0;
    position: fixed;
    top: 0;
    width: 240px;
    padding: 80px 0;
}

nav.navbar.sidebar-nav li.dropdown ul.dropdown-menu {
    border: none;
    margin-top: 0;
    border-radius: 0;
}

nav.navbar.bootsnav.sidebar-nav li.dropdown ul.dropdown-menu {
    padding-top: 160px;
}

.sidebar-nav .dropdown-menu li>a {
    margin: 0 45px
}

nav.navbar.sidebar-nav {
    border: none;
    display: inline-table;
    width: 290px;
    border-radius: 0;
    position: fixed;
    top: 0;
    z-index: 10005;
    height: 100%;
    padding: 50px 0px 25px;
    left: 0
}

.sidebar-wrapper {
    padding-left: 290px;
}

/* sidebar navigation style 1 */
.sidebar-nav-style-1 {
    z-index: -1
}

.sidebar-nav-style-1 .dropdown .second-level {
    top: 0;
    left: 290px;
    width: 280px;
}

.sidebar-nav-style-1 .dropdown .second-level {
    background: #fbfbfb;
}

.sidebar-nav-style-1 .dropdown .third-level {
    top: 0;
    left: 570px;
    width: 280px;
    background: #f3f3f3;
}

.sidebar-nav-style-1 [class*="col-"],
.sidebar-nav-style-1 [class^=" col-"] {
    padding-left: 15px;
    padding-right: 15px;
}

/* sidebar navigation style 2 */
.left-nav-sidebar {
    padding-left: 90px;
    transition: all 0.3s ease 0s;
}

.left-nav {
    position: fixed;
    top: 0;
    width: auto;
    left: 0;
    height: 100%;
    background-color: #fff;
    z-index: 99999;
    transition: all 0.3s ease 0s
}

.sidebar-part1 {
    position: absolute;
    top: 0;
    width: 90px;
}

.sidebar-part1 .logo img {
    width: 100%
}

.sidebar-part2 {
    padding: 0 0 0 115px;
    border-right: 1px solid #dfdfdf;
    width: 410px;
    height: 100%;
    position: fixed;
    background-color: #fff;
    z-index: -1;
    left: -370px;
}

.sidebar-part3 {
    position: absolute;
    bottom: 0;
}

.left-nav-on .sidebar-part2 {
    left: 0;
}

.sidebar-part2:before {
    width: 100%;
    height: 1px;
    background-color: #dfdfdf;
    content: "";
    position: absolute;
    bottom: 75px;
    left: 0;
    display: inline-block
}

.sidebar-part2 .sidebar-middle {
    padding: 180px 0
}

.sidebar-part2 .sidebar-middle-menu {
    display: table-cell;
    height: 100%;
    width: 100%;
    vertical-align: middle
}

.bottom-menu-icon {
    width: 90px;
    padding: 22px 30px;
    text-align: center;
}

header .sidebar-part2 nav.navbar.bootsnav ul>li>a {
    font-size: 36px;
    display: block;
    padding: 0;
    color: #0f0f0f;
    text-transform: none;
    margin: 0;
    line-height: 40px;
    font-weight: 600;
    position: relative;
}

header .sidebar-part2 nav.navbar.bootsnav ul>li>a>.fas {
    font-size: 25px;
    top: 10px;
    position: absolute;
    right: 18px;
}

header .sidebar-part2 nav.navbar.bootsnav ul>li>.second-level>li>a>.fas {
    font-size: 14px;
    line-height: 30px;
}

.sidebar-part2 ul>li {
    margin: 0;
    float: none;
    padding: 15px 0;
    width: 291px;
    word-break: break-all;
    position: initial;
}

.sidebar-part2 ul li a:hover {
    background-color: inherit;
}

.sidebar-part2 nav.navbar.bootsnav {
    border-bottom: 0;
    position: inherit;
}

.sidebar-part2 .right-bg {
    position: fixed;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #fff;
    width: 90px;
}

.sidebar-part2 .right-bg:before {
    background-color: #dfdfdf;
    bottom: 75px;
    content: "";
    display: inline-block;
    height: 1px;
    left: 0;
    position: absolute;
    width: 100%;
}

.sidebar-part2 .right-bg img {
    position: absolute;
    top: 50%;
    left: 37px;
    transform: translateY(-100px);
    -webkit-transform: translateY(-100px);
    -moz-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    -o-transform: translateY(-100px);
}

header .sidebar-part2 nav.navbar.bootsnav ul li ul li a {
    font-size: 14px;
    line-height: 20px;
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #939393;
    font-weight: 500;
}

header .sidebar-part2 nav.navbar.bootsnav ul li.dropdown>a,
.sidebar-nav-style-1 .navbar-left-sidebar li.dropdown>a {
    padding-right: 40px;
}

header .sidebar-part2 nav.navbar.bootsnav li.dropdown ul.dropdown-menu>li a:hover {
    border-bottom: 1px solid var(--base-color);
    background: inherit
}

header .sidebar-part2 nav.navbar.bootsnav li.dropdown ul.dropdown-menu>li:last-child>a:hover {
    border-bottom: 0;
}

header .sidebar-part2 nav.navbar.bootsnav ul li ul li a>i {
    vertical-align: middle;
    margin-right: 5px;
}

header .sidebar-part2 nav.navbar.bootsnav ul li ul li a:hover {
    color: var(--base-color)
}

header .sidebar-part2 nav.navbar.bootsnav ul li ul li {
    margin: 0;
    padding: 0 30px;
    width: 100%;
    word-break: normal;
}

header .sidebar-part2 nav.navbar.bootsnav ul li ul li.dropdown {
    border-left: 0;
}

.sidebar-part2 .dropdown ul.second-level,
.sidebar-part2 .dropdown ul.third-level {
    border-left: 1px solid #eee !important;
}

.sidebar-part2 .dropdown ul.second-level {
    left: 405px;
    opacity: 0 !important;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.sidebar-part2 .dropdown.on ul.second-level {
    opacity: 1 !important;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.sidebar-part2 .dropdown ul.second-level .dropdown ul.third-level {
    left: 650px;
    opacity: 0 !important;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.sidebar-part2 .dropdown ul.second-level .dropdown.on ul.third-level {
    opacity: 1 !important;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
}

.sidebar-part2 nav.navbar.bootsnav li.dropdown ul.dropdown-menu {
    margin-top: 0;
    border-radius: 0;
    box-shadow: none;
    height: 100%;
    position: fixed;
    top: 0;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -ms-transition: 0.3s;
    -o-transition: 0.3s;
    width: 250px;
    padding: 180px 0;
    background: #fff;
}

.bottom-menu-icon a {
    font-size: 24px;
    width: 23px;
    height: 18px;
    display: inline-block;
    position: relative;
}

header .sidebar-part2 nav.navbar.bootsnav ul.second-level li.active>a,
header .sidebar-part2 nav.navbar.bootsnav ul.second-level li.active ul li.active>a {
    color: var(--base-color)
}

.sidebar-part2 .navbar-collapse.collapse {
    overflow-y: auto !important;
}

.nav-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 23px;
    background: #232323;
    border-radius: 0;
    opacity: 1;
    left: 0;
    -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;
}

.nav-icon:hover span,
.nav-icon.active span {
    background-color: red
}

.nav-icon span:nth-child(1) {
    top: 0px;
}

.nav-icon span:nth-child(2),
.nav-icon span:nth-child(3) {
    top: 8px;
}

.nav-icon span:nth-child(4) {
    top: 16px;
}

.nav-icon.active span:nth-child(1) {
    top: 8px;
    width: 0%;
    left: 50%;
}

.nav-icon.active span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.nav-icon.active span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.nav-icon.active span:nth-child(4) {
    top: 8px;
    width: 0%;
    left: 50%;
}

nav.navbar.brand-center ul.nav>li>a {
    padding: 26px;
    margin: 0;
}

header.sticky nav.navbar.brand-center ul.nav>li>a {
    padding: 20px;
    margin: 0 20px;
}

.sidebar-middle ::-webkit-scrollbar,
.sidebar-nav-style-1 ::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 4px;
    height: 4px;
}

.sidebar-middle ::-webkit-scrollbar-thumb,
.sidebar-nav-style-1 ::-webkit-scrollbar-thumb {
    background-color: #9e9f9f;
}

.navbar-collapse,
.sub-menu {
    -webkit-overflow-scrolling: auto;
    -moz--webkit-overflow-scrolling: auto;
    -ms--webkit-overflow-scrolling: auto;
    -o--webkit-overflow-scrolling: auto;
}

.left-menu-inner {
    overflow-y: auto;
    overflow-x: hidden;
}

.nav.navbar-left-sidebar>li>ul li a {
    display: block;
    font-weight: 500;
}

/* navigation widget */
.menu-wrap .widget {
    display: inline-block;
    width: 100%
}

/* new-menu page */
.menu-new a:after {
    background: var(--base-color) none repeat scroll 0 0;
    color: #fff;
    font-size: 9px;
    margin-left: 8px;
    padding: 1px 5px 0 5px;
    line-height: 14px;
    position: absolute;
    content: "New";
    margin-top: 5px;
    text-transform: uppercase;
}

.nav.navbar-left-sidebar .menu-new a:after {
    margin-top: 0;
}

.sidebar-part2 .menu-new a:after {
    margin-top: 3px;
}

/* ===================================
    20. Page title
====================================== */

/* page title font size */
.page-title-extra-small h1 {
    font-size: 12px;
    line-height: 20px;
    text-transform: uppercase;
}

.page-title-small h1 {
    font-size: 20px;
    line-height: 26px
}

.page-title-medium h1 {
    font-size: 32px;
    line-height: 37px
}

.page-title-large h1 {
    font-size: 46px;
    line-height: 49px
}

.page-title-extra-large h1 {
    font-size: 55px;
    line-height: 50px
}

/* breadcrumb */
.breadcrumb {
    background: transparent;
    border-radius: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
}

.breadcrumb ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb ul li {
    display: inline-block;
    line-height: normal;
}

.breadcrumb ul>li:after {
    content: "\f111";
    font-family: Font Awesome\ 5 Free;
    font-weight: 900;
    padding: 0 11px 0 14px;
    display: inline-block;
    vertical-align: middle;
    font-size: 5px;
    opacity: .6;
}

.breadcrumb ul>li:last-child:after {
    border-right: 0;
    content: "";
    padding: 0
}

/* ===================================
    21. Swiper carousel
====================================== */

.swiper-container.swiper-blog *,
.hover-option4 .swiper-container * {
    transition-timing-function: ease-in-out;
    -ms-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-duration: .2s;
    -ms-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
}

.swiper-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.swiper-pagination-bullet-active {
    background: #232323
}

.swiper-pagination {
    width: 100%
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction,
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 35px;
}

.swiper-pagination-bullet {
    height: 9px;
    width: 9px;
    outline: none;
}

.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px
}

.swiper-slider-second {
    text-align: center;
}

.swiper-pagination-bottom .swiper-wrapper {
    margin-bottom: 60px;
}

.swiper-pagination-bottom.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bottom.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bottom .swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-bottom .swiper-pagination-custom,
.swiper-pagination-bottom .swiper-pagination-fraction {
    bottom: 0px;
}

/* swiper bottom scrollbar full */
.swiper-bottom-scrollbar-full.swiper-container {
    height: 100%;
    margin: 0 auto;
    overflow: hidden;
    position: absolute;
    top: 0;
    transition: all 0.3s ease-in-out 0.7s;
    -webkit-transition: all 0.3s ease-in-out 0.7s;
    -moz-transition: all 0.3s ease-in-out 0.7s;
    -ms-transition: all 0.3s ease-in-out 0.7s;
    -o-transition: all 0.3s ease-in-out 0.7s;
    width: 100%;
}

.swiper-bottom-scrollbar-full .swiper-scrollbar {
    left: 0;
    opacity: 1;
    position: absolute;
    width: 100%;
    bottom: 0;
    border-radius: 0;
    height: 2px
}

.swiper-bottom-scrollbar-full .swiper-scrollbar-drag {
    border-radius: 0;
    background: var(--base-color)
}

.swiper-bottom-scrollbar-full .swiper-scrollbar {
    background: rgba(255, 255, 255, .2)
}

.swiper-bottom-scrollbar-full .swiper-slide img {
    max-height: 450px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    opacity: .8;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
    -moz-filter: grayscale(1);
    -ms-filter: grayscale(1);
    -o-filter: grayscale(1);
}

.swiper-bottom-scrollbar-full .swiper-slide:hover img {
    opacity: 1;
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -ms-filter: grayscale(0);
    -o-filter: grayscale(0);
    filter: grayscale(0);
    filter: contrast(130%);
    -webkit-filter: contrast(130%);
    -moz-filter: contrast(130%);
    -ms-filter: contrast(130%);
    -o-filter: contrast(130%);
    max-height: 500px;
}

.swiper-bottom-scrollbar-full .swiper-slide .hover-title-box {
    visibility: hidden;
}

.swiper-bottom-scrollbar-full .swiper-slide:hover {
    z-index: 1;
}

.swiper-bottom-scrollbar-full .swiper-slide:hover .hover-title-box {
    right: -160px;
    opacity: 1;
    visibility: visible;
}

.swiper-bottom-scrollbar-full .bottom-text {
    position: absolute;
    bottom: 50px;
    opacity: 0;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.swiper-bottom-scrollbar-full .swiper-slide:hover .bottom-text {
    opacity: .7;
    letter-spacing: 5px;
    left: 4px;
}

/* swiper vertical pagination */
.swiper-vertical-pagination {
    width: 100%;
    height: 100%;
    position: absolute;
}

.swiper-vertical-pagination .swiper-slide {
    text-align: center;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-vertical-pagination>.swiper-pagination-bullets {
    right: 60px;
}

.swiper-vertical-pagination .swiper-pagination {
    width: auto
}

.swiper-vertical-pagination .swiper-slide .swiper-bottom-content {
    opacity: 0;
    transform: translate3d(0px, 150px, 0px);
    -webkit-transform: translate3d(0px, 150px, 0px);
    -moz-transform: translate3d(0px, 150px, 0px);
    -ms-transform: translate3d(0px, 150px, 0px);
    -o-transform: translate3d(0px, 150px, 0px);
    transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
}

.swiper-vertical-pagination .swiper-slide-active .swiper-bottom-content {
    opacity: 1;
    transform: translate3d(0px, 0px, 0px);
    -webkit-transform: translate3d(0px, 0px, 0px);
    -moz-transform: translate3d(0px, 0px, 0px);
    -ms-transform: translate3d(0px, 0px, 0px);
    -o-transform: translate3d(0px, 0px, 0px);
    transition: all 0.3s ease-in-out 0.3s;
    -webkit-transition: all 0.3s ease-in-out 0.3s;
    -moz-transition: all 0.3s ease-in-out 0.3s;
    -ms-transition: all 0.3s ease-in-out 0.3s;
    -o-transition: all 0.3s ease-in-out 0.3s;
}

.swiper-vertical-pagination .box-arrow {
    position: absolute;
    right: -45px;
    width: 90px;
    height: 90px;
}

/* swiper auto width */
.swiper-auto-slide .swiper-slide {
    width: 60%;
}

.swiper-auto-slide.swiper-container {
    height: calc(100% - 200px);
    top: 100px;
    margin: 0 auto;
    overflow: visible;
    position: absolute;
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transition: all 0.3s ease-in-out 0.7s;
    -webkit-transition: all 0.3s ease-in-out 0.7s;
    -moz-transition: all 0.3s ease-in-out 0.7s;
    -ms-transition: all 0.3s ease-in-out 0.7s;
    -o-transition: all 0.3s ease-in-out 0.7s;
    width: 100%;
}

.swiper-auto-slide .swiper-scrollbar {
    left: 20%;
    opacity: 1;
    position: absolute;
    width: 60%;
    bottom: -50px;
    border-radius: 0;
    height: 1px
}

.swiper-auto-slide .swiper-scrollbar-drag {
    border-radius: 0;
    background: transparent;
}

.swiper-auto-slide .swiper-scrollbar-drag:before {
    cursor: move;
    position: absolute;
    content: "";
    background: var(--base-color);
    width: 13px;
    height: 13px;
    border-radius: 100%;
    top: -6px;
    left: calc(50% - 13px);
}

.swiper-auto-slide .swiper-slide {
    filter: contrast(130%);
    -webkit-filter: contrast(130%);
    -moz-filter: contrast(130%);
    -ms-filter: contrast(130%);
    -o-filter: contrast(130%);
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
    -moz-filter: grayscale(1);
    -ms-filter: grayscale(1);
    -o-filter: grayscale(1);
    transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
}

.swiper-auto-slide .swiper-slide.swiper-slide-active {
    filter: contrast(0);
    -webkit-filter: contrast(0);
    -moz-filter: contrast(0);
    -ms-filter: contrast(0);
    -o-filter: contrast(0);
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -ms-filter: grayscale(0);
    -o-filter: grayscale(0);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.swiper-auto-slide .swiper-slide .absolute-middle-center h2 {
    opacity: 0;
    margin-bottom: 10px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transform: translateY(-60px);
    -webkit-transform: translateY(-60px);
    -moz-transform: translateY(-60px);
    -ms-transform: translateY(-60px);
    -o-transform: translateY(-60px);
}

.swiper-auto-slide .swiper-slide.swiper-slide-active .absolute-middle-center h2 {
    opacity: 1;
    transition: all 0.3s ease-in-out 0.7s;
    -webkit-transition: all 0.3s ease-in-out 0.7s;
    -moz-transition: all 0.3s ease-in-out 0.7s;
    -ms-transition: all 0.3s ease-in-out 0.7s;
    -o-transition: all 0.3s ease-in-out 0.7s;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
}

.swiper-auto-slide .swiper-slide span {
    opacity: 0;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

.swiper-auto-slide .swiper-slide.swiper-slide-active span {
    opacity: 1;
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
}

/* slider navigation */
.swiper-next.swiper-button-disabled,
.swiper-prev.swiper-button-disabled {
    opacity: 0.6;
}

.swiper-button-next,
.swiper-button-prev {
    height: 30px;
    width: 30px;
    line-height: 30px;
    border-radius: 3px;
    margin: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    -ms-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    outline: none;
}

.swiper-button-next.large,
.swiper-button-prev.large {
    height: 62px;
    width: 62px;
    line-height: 62px;
    font-size: 18px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    -webkit-transition-duration: 0s;
    -moz-transition-duration: 0s;
    -ms-transition-duration: 0s;
    -o-transition-duration: 0s;
    transition-duration: 0s;
}

.swiper-button-next {
    right: 20px;
}

.swiper-button-prev {
    left: 20px;
}

.slider-navigation.swiper-button-next,
.slider-navigation.swiper-button-prev {
    background-color: rgba(23, 23, 23, .5);
    color: #fff;
}

.slider-navigation.swiper-button-next:hover,
.slider-navigation.swiper-button-prev:hover {
    background-color: #fff;
    color: #232323;
}

.swiper-button-next.dark,
.swiper-button-prev.dark {
    background-color: rgba(23, 23, 23, .5);
    color: #fff;
}

.swiper-button-next.light,
.swiper-button-prev.light {
    background-color: #fff;
    color: #232323;
}

.swiper-button-next.arrow-dark,
.swiper-button-prev.arrow-dark {
    background-color: transparent;
    color: rgba(23, 23, 23, 1);
}

.swiper-button-next.arrow-dark:hover,
.swiper-button-prev.arrow-dark:hover {
    background-color: transparent;
    color: rgba(23, 23, 23, .5);
}

.swiper-button-next.arrow-light,
.swiper-button-prev.arrow-light {
    background-color: transparent;
    color: rgba(255, 255, 255, 1);
}

.swiper-button-next.arrow-light:hover,
.swiper-button-prev.arrow-light:hover {
    background-color: transparent;
    color: rgba(255, 255, 255, .5);
}

.swiper-button-next.arrow-gray,
.swiper-button-prev.arrow-gray {
    background-color: transparent;
    color: rgba(255, 255, 255, .5);
}

.swiper-button-next.arrow-gray:hover,
.swiper-button-prev.arrow-gray:hover {
    background-color: transparent;
    color: rgba(255, 255, 255, 1);
}

.slider-navigation.swiper-button-next {
    right: 40px;
}

.slider-navigation.swiper-button-prev {
    left: 40px;
}

.arrow-big.swiper-button-next.swiper-button-black-highlight i,
.arrow-big.swiper-button-prev.swiper-button-black-highlight i {
    font-size: 18px;
}

.arrow-big.swiper-button-next.swiper-button-black-highlight {
    margin-right: 0
}

.arrow-big.swiper-button-prev.swiper-button-black-highlight {
    margin-left: 0;
}

.arrow-big.swiper-button-next,
.arrow-big.swiper-button-prev {
    width: 50px;
    height: 50px;
    font-size: 30px;
}

.square-arrow {
    border-radius: 0 !important;
}

/* blog swiper */
.swiper-blog .swiper-slide .slide-content {
    opacity: 0;
    padding-left: 15px;
    padding-right: 15px;
    transform: translateY(100px);
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
}

.swiper-blog .swiper-slide.swiper-slide-active .slide-content {
    opacity: 1;
    transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
    -moz-transition-delay: 0.3s;
    -ms-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}

/* next prev button style 2 */
.swiper-next-style2,
.swiper-prev-style2 {
    position: absolute;
    bottom: -60px;
    cursor: pointer;
    text-transform: uppercase;
    outline: none;
}

.swiper-next-style2 {
    right: 15%;
}

.swiper-prev-style2 {
    left: 15%;
}

/* portfolio next prev button */
.swiper-portfolio-prev,
.swiper-portfolio-next {
    position: absolute;
    top: 50%;
    z-index: 1;
    background: #8dc442;
    color: #232323;
    padding: 15px;
    font-size: 18px;
    cursor: pointer;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.swiper-portfolio-prev.swiper-button-disabled,
.swiper-portfolio-next.swiper-button-disabled {
    opacity: 0;
    visibility: hidden;
}

.swiper-portfolio-prev {
    left: 0;
}

.swiper-portfolio-next {
    right: 0;
}

.swiper-portfolio-prev,
.swiper-portfolio-next {
    width: auto;
    height: auto;
    border-radius: 0;
}

/* next prev button style 4 */
.navigation-area {
    position: absolute;
    bottom: 0;
    display: inline-block;
    width: 40px;
    height: 82px;
}

.swiper-button-prev.swiper-prev-style4,
.swiper-button-next.swiper-next-style4 {
    background-image: none;
    background: var(--base-color);
    color: #fff;
    text-align: center;
    line-height: 40px;
    height: 40px;
    width: 40px;
    display: block;
    float: left;
    position: relative;
    left: auto;
    right: auto;
    top: 0;
    margin: 0 auto;
    border-radius: 0;
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}

.swiper-button-next.swiper-next-style4 {
    margin-bottom: 1px
}

/* dot pagination white */
.swiper-pagination-white .swiper-pagination-bullet {
    background: #fff
}

.swiper-pagination-white .swiper-pagination-bullet-active {
    background: #fff
}

.swiper-pagination-square-bottom.swiper-pagination-bullets {
    bottom: -50px
}

/* square pagination */
.swiper-pagination-square .swiper-pagination-bullet {
    height: 4px;
    width: 30px;
    border-radius: 0
}

/* square pagination */
.white-move .swiper-slide {
    cursor: url("../images/icon-move-light.png"), move;
}

.black-move .swiper-slide {
    cursor: url("../images/icon-move-black.png"), move;
}

.white-move.swiper-vertical-pagination .swiper-slide {
    cursor: url("../images/icon-move-light-vertical.png"), move;
}

.black-move.swiper-vertical-pagination .swiper-slide {
    cursor: url("../images/icon-move-black-vertical.png"), move;
}

/* number pagination */
.swiper-number {
    left: auto !important;
    right: 0 !important;
    width: 35px !important;
    text-align: right !important;
    top: 38% !important;
    bottom: inherit !important;
}

.swiper-number .swiper-pagination-bullet {
    background: transparent;
    color: #939393;
    display: block;
    font-size: 20px;
    height: 45px;
    line-height: 20px;
    opacity: .7;
    padding: 14px 0 0;
    text-align: center;
    width: 23px;
    border-radius: 0;
    margin: 0 0 5px 0;
}

.swiper-number .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border-bottom: 1px solid rgba(0, 0, 0, .5);
    opacity: 1;
}

.swiper-number .swiper-pagination-bullet-active {
    color: #000;
    background: transparent;
}

/* revolution slider bullet */
.tp-bullet {
    border-radius: 100%;
    background: transparent;
    border: 1px solid #fff;
}

.tp-bullet.selected,
.tp-bullet:hover {
    background: #fff
}

.hermes .tp-bullet {
    box-shadow: 0 0 0 0 #fff;
    height: 10px;
    width: 10px;
    border: 2px solid #fff;
}

.hermes .tp-bullet::after {
    box-shadow: 0 0 0 0 #fff inset;
}

/* slider height */
.slider-half-screen {
    height: 765px
}

.slider-medium-screen {
    height: 898px
}

/* cursor */
.cursor-default {
    cursor: default
}

/* down scroll */
.down-section {
    position: absolute;
    width: 100%;
    bottom: 50px;
    left: 0;
    right: 0
}

.scroll-down-section {
    position: absolute;
    width: 100%;
    bottom: -50px;
    left: 0;
    right: 0;
    z-index: 1;
}

.scroll-down-section div {
    height: 100px;
}



/* ===================================
    26. Footer
====================================== */

/* scroll to top */
.scroll-top-arrow,
.scroll-top-arrow:focus {
    color: black;
    background: white;
    line-height: 28px;
    display: none;
    height: 30px;
    width: 30px;
    padding: 0;
    position: fixed;
    right: 45px;
    text-align: center;
    text-decoration: none;
    top: 91%;
    z-index: 10006;
    border-radius: 100%;
}

.scroll-top-arrow:hover {
    background: #000;
    opacity: .8;
    color: #fff;
    border-color: var(--base-color)
}

.scroll-top-arrow i {
    line-height: 30px;
    position: relative;
}

.bg-dark-footer {
    background-color: #141414;
}

.footer-logo {
    max-height: 90px;
    max-width: 30%;
}

/* footer input */
footer input::-webkit-input-placeholder {
    color: #6f6f6f;
    text-overflow: ellipsis;
    font-size: 11px;
    font-weight: 400;
    opacity: 1;
}

footer input::-moz-placeholder {
    color: #6f6f6f;
    text-overflow: ellipsis;
    font-size: 11px;
    font-weight: 400;
    opacity: 1;
}

footer input:-ms-input-placeholder {
    color: #6f6f6f;
    text-overflow: ellipsis;
    font-size: 11px;
    font-weight: 400;
    opacity: 1;
}

footer .newsletter input {
    color: #6f6f6f;
    letter-spacing: normal;
}


/* ===================================
   27. Home page
====================================== */


/* home - classic digital agency */
.image-block {
    box-shadow: 0 0 0 rgba(35, 35, 35, 0.6);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.8);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.8);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
    -o-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.8);
    -ms-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.8);
}

.attr-nav>ul>li>a {
    padding: 3px 15px
}

.icon-play img {
    width: 60%
}

.icon-play:hover img {
    width: 68%
}

/* play icon */
.icon-play-style-2 {
    z-index: 1;
    left: 100%;
}

.icon-play-style-2>span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-flow: row wrap;
    -ms-flex-direction: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.icon-play-style-2 .video-icon {
    width: 110px;
    height: 110px;
    margin-top: 0;
    font-size: 30px;
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
}

/* home - creative studio */
.icon-box-holder a:hover {
    color: #fff;
}


/* home - classic innovation agency */
.box-separator-line {
    height: 1px;
    content: "";
    position: absolute;
    left: -90px;
    top: 130px;
}

.right-image {
    bottom: -200px;
    position: absolute;
    right: -100px;
    width: 60%;
}

.right-image img {
    max-width: none
}

.content-right-slider .swiper-button-next {
    right: 70px;
}

.content-right-slider .swiper-button-prev {
    left: 70px;
}

/* home - creative designer */
.color-code {
    justify-content: space-around;
    align-items: center;
    z-index: 0;
}

.bg-background-fade {
    background-color: black
}

.color-1,
.color-2,
.color-3,
.color-4,
.color-5 {
    -webkit-transition: background-color 700ms linear;
    -moz-transition: background-color 700ms linear;
    -o-transition: background-color 700ms linear;
    -ms-transition: background-color 700ms linear;
    transition: background-color 700ms linear;
}

.color-1 {
    background-color: black
}

.color-2 {
    background-color: black;
}

.color-3 {
    background-color: black;
}

.color-4 {
    background-color: black;
}

.color-5 {
    background-color: black;
}

.color-6 {
    background-color: black;
}

/* home - classic web agency */
.after-before-separator:before,
.after-before-separator:after {
    width: 35px;
    margin: 0 15px;
    height: 1px;
    background: rgba(255, 255, 255, .2);
    content: "";
    display: inline-block;
    vertical-align: super;
}

.background-slide {
    height: auto;
    min-height: 700px;
}


/* ===================================
   28. Others
====================================== */

/* services modern */
.arrow-bottom {
    position: relative;
}

.arrow-bottom:after {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(245, 245, 245, 0);
    border-top-color: #f5f5f5;
    border-width: 15px;
    margin-left: -15px;
    z-index: 9;
}

.arrow-top {
    position: relative;
}

.arrow-top:after {
    top: -29px;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(245, 245, 245, 0);
    border-bottom-color: #f5f5f5;
    border-width: 15px;
    margin-left: -15px;
    z-index: 9;
}

/* our clients */
.clients-list {
    height: 190px
}

.clients-list:hover {
    box-shadow: 0 0 4px rgba(0, 0, 0, .1);
}

.clients-list:hover img {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

/* sidebar nav style 2 */
.tparrows:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
}

.tparrows.tp-leftarrow:before {
    content: '\f060';
}

.tparrows.tp-rightarrow:before {
    content: '\f061';
}

/* rev slider */
.rev_slider_wrapper {
    height: 980px;
}

/* animation */
@-webkit-keyframes up-down-animation {
    0% {
        opacity: 1;
        top: 0px;
    }

    25% {
        opacity: .4;
        top: 2px;
    }

    50% {
        opacity: .3;
        top: 4px;
    }

    75% {
        opacity: .2;
        top: 5px;
    }

    100% {
        opacity: 0;
        top: 9px;
    }
}

@keyframes up-down-animation {
    0% {
        opacity: 1;
        top: 0px;
    }

    25% {
        opacity: .4;
        top: 4px;
    }

    50% {
        opacity: .3;
        top: 8px;
    }

    75% {
        opacity: .2;
        top: 12px;
    }

    100% {
        opacity: 0;
        top: 16px;
    }
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    nav .accordion-menu {
        position: static !important;
    }

    .swiper-container,
    .blog-post-content {
        width: 100%;
    }

    .left-nav .sidebar-part2 .navbar-expand-lg .navbar-nav {
        flex-direction: column;
    }

    .sidebar-nav-style-1.navbar-expand-lg .navbar-collapse {
        display: block !important;
    }

    .signature {
        height: auto;
    }
}

/* demo page css */
.demo-heading {
    font-size: 40px;
    line-height: 46px;
}

.buy-theme {
    transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
    position: fixed;
    top: 130px;
    right: -70px;
    background: #fff;
    z-index: 1000;
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 9999
}

.buy-theme i {
    font-size: 16px;
    vertical-align: middle;
    position: relative;
    top: -1px;
    color: #6f6f6f
}

.all-demo i {
    font-size: 15px;
    vertical-align: middle;
    position: relative;
    top: -1px;
    color: #6f6f6f
}

.buy-theme:hover,
.all-demo:hover {
    transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
    right: 0px;
    background: var(--base-color)
}

.buy-theme span,
.all-demo span {
    padding: 0 9px;
    position: relative;
    top: 0;
    opacity: 0
}

.buy-theme:hover span,
.all-demo:hover span {
    opacity: 1;
    color: #fff
}

.buy-theme:hover i,
.all-demo:hover i {
    color: #fff
}

.buy-theme a,
.all-demo a {
    color: #232323;
    font-size: 10px;
    text-transform: uppercase;
    padding: 2px 10px;
    display: block;
    text-decoration: none;
    font-weight: 500
}

.all-demo {
    transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-duration: .2s;
    -moz-transition-duration: .2s;
    -webkit-transition-duration: .2s;
    -o-transition-duration: .2s;
    position: fixed;
    top: 172px;
    right: -105px;
    background: #fff;
    z-index: 1000;
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 9999
}

.media-cards-grid {
    display: flex;
    justify-content: center;
    gap: 48px;
}

@media (max-width:767px){
    .media-cards-grid {
        flex-direction: column;
    }
}
.media-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}
.media-card__image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 238px;
    margin-bottom: 12px;
}
.media-card__image figcaption {
    font-family: 'AgencyFB RegularExtended', 'Avenir LT Std', 'Open Sans';
    margin-top: 15px;
    color: #8DC63F;
    text-transform: uppercase;
    white-space: nowrap;
    text-align: center;
    font-size: 16px;
    font-style: italic;
    line-height: 28px; /* 175% */
}
.media-card__desc {
    padding: 5px;
    text-align: center;
    color: #FFF;
    font-family: "Open Sans";
    font-size: 16px;
    line-height: 24px;
}