/*
Theme Name: Volve
Theme URI: https://rascalsthemes.com/volve
Author: Rascals Themes
Author URI: https://rascalsthemes.com
Description: Music WordPress Theme
License: GNU General Public License
License URI: https://www.gnu.org/copyleft/gpl.html
Version: 1.0.3
Text Domain: volve
Tags:custom-menu, threaded-comments
Tested up to: 6.3
Requires PHP: 8
*/
/*------------------------------------------------------------------

          _______  _               _______ 
|\     /|(  ___  )( \    |\     /|(  ____ \
| )   ( || (   ) || (    | )   ( || (    \/
| |   | || |   | || |    | |   | || (__    
( (   ) )| |   | || |    ( (   ) )|  __)   
 \ \_/ / | |   | || |     \ \_/ / | (      
  \   /  | (___) || (____/\\   /  | (____/\
   \_/   (_______)(_______/ \_/   (_______/
                                                    

~ Volve by Rascals Themes 2021 ~
mod-album-simple
--------------------------------------------------------------------

[Table of contents]

1. Reset & Clearfix
2. Global Styling
3. Basic Elements & Classes
4. Forms
5. Helper Classes
6. WordPress Core Styles
7. Pagination
8. Loader 
9. Layout
10. Grid
11. Header
12. Navigation
13. Content
14. Page Header
15. Blog
16. Category / Tags / Archives / Search
17. Comments
18. Footer
19. Widgets 
20. Modules 
21. Elements
22. FX
22. Animations 
*/

/* -------------------------------------------
   1. Reset & Clearfix
= ----------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, and, address, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, input, textarea, select {
    background: transparent;
    border: 0;
    margin: 0;
    outline: 0;
    padding: 0
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block
}
body {
    line-height: 1
}
abbr[title], dfn[title] {
    border-bottom: 1px dotted;
    cursor: help
}
blockquote, q {
    quotes: none
}
blockquote:before, blockquote:after, q:before, q:after {
    content: none
}
del {
    text-decoration: line-through
}
hr {
    background: var(--gray_4);
    border: 0;
    clear: both;
    color: transparent;
    height: 1px;
    margin: 0;
    padding: 0;
    margin-bottom:20px
}
mark {
    background-color: #ffffb3;
    font-style: italic
}
input, select {
    vertical-align: middle
}
ins {
    font-weight:700;
    text-decoration: none
}
ol, ul {
    list-style: none
}
table {
    border-collapse: collapse;
    border-spacing: 0
}
/* Set box sizing for all elements */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    margin: 0;
    padding: 0;
}

/* -------------------------------------------
   2. Global Styling
= ----------------------------------------- */

/* Globals Variables
= -------------------------------- */
:root {
    --base_color: #141414;
    --base_color2: #555;
    --base_color3: #333;
    --dark_color:#141414;
    --brand_color: #5cfcc9;
    --brand_color2: #42dbb5;
    --brand_color3: #a4fee4;
    
    --btn_color:#141414;
    --btn_bg_color:#5cfcc9;
    --btn_hov_color:#fff;
    --btn_hov_bg_color:#141414;

    --btn_alt_color:#fff;
    --btn_alt_bg_color:#141414;
    --btn_alt_hov_color:#141414;
    --btn_alt_hov_bg_color:#5cfcc9;

    --background_color: #ffffff;
    --footer_bg: #141414;

    --gray_1: #f9f9f9;
    --gray_2: #f3f3f3;
    --gray_3: #f0f0f0;
    --gray_4: #e9e9e9;
    --input_bg: #f7f7f7;
    --logo_height: 40px;
}

/* Fonts
= -------------------------------- */
body, input, textarea, select {
    font-family:  "Inter", -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
input[type="submit"],
button,
.btn {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
}

/* Colors
= -------------------------------- */
.site .color,
.site .brand-color {
    color: var(--brand_color2);
}
.brand-bg-color {
    background-color: var(--brand_color2);
}

/* Scrollbars
= -------------------------------- */
body ::-webkit-scrollbar {
    background: rgba(0, 0, 0, .2);
    width: 8px;
    -webkit-border-radius: 4px;
    border-radius: 4px
}
body ::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .2);
    -webkit-border-radius: 4px;
    border-radius: 4px
}
body.is-hidden-scrollbars ::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, .6)
}
/* Hide scrollbar for Chrome, Safari and Opera */
body.is-hidden-scrollbars::-webkit-scrollbar {
    display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
body.is-hidden-scrollbars {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}
body::-webkit-scrollbar {
    background-color: rgba(0, 0, 0, 0.1);
    width: 10px;
    -webkit-border-radius: 4px;
    border-radius: 4px
}
body::-webkit-scrollbar-track {
    background-color: transparent;
}
body::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 4px;
    border-radius: 4px
}

/* Selection
= -------------------------------- */
::-moz-selection {
    background: var(--brand_color2);
    color: #fff;
    text-shadow: none;
}
::selection {
    background: var(--brand_color2);
    color: #fff;
    text-shadow: none;
}

/* -------------------------------------------
   3. Basic Elements & Classes
= ----------------------------------------- */

/* HTML and Body
= -------------------------------- */
html.is-fullscreen {
    height: 100%;
}
body {
    color: var(--base_color);
    background-color: var(--background_color);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
body.is-fullscreen {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

/* Headings
= -------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--base_color);
}
h1 {
	font-size: 3.19em;
	line-height: 1.06em;
	margin-bottom: 0.333em;
}

h2 {
	font-size: 2.38em;
	line-height: 1.42em;
	margin-bottom: 0.342em;
}

h3 {
	font-size: 1.75em;
	line-height: 1.93em;
	margin-bottom: 0.357em;
}

h4 {
	font-size: 1.31em;
	line-height: 1.29em;
	margin-bottom: 1.00em;
}
h5,h6 {
	font-size: 1.2em;
	line-height: 1.24em;
	margin-bottom: 1.00em;
}
@media (max-width: 575.98px) {
    h1, h2, h3, h4, h5, h6 {
        margin-bottom: 20px;
    }
}
.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6 {
    color: #fff;
    font-weight: 700;
}

/* P
= -------------------------------- */ 
p {
	font-size: 1.00em;
	line-height: 1.69em;
	padding-top: 0.500em;
	margin-bottom: 1.19em;
}

/* Links
= -------------------------------- */
a {
    color: var(--base_color);
    text-decoration: none;
}
.bg-dark a {
    color:rgba(255,255,255,.7);
}
.bg-dark a:hover {
    color:rgba(255,255,255,1);
}

/* Lists
= -------------------------------- */
ol {
    list-style: decimal;
}
ul {
    list-style: circle;
}
ul ul, ul ul ul, ol ol, ol ol ol, ul ol, ol ul {
    margin-bottom: 0
}
body:not(.elementor-page) article.main-content ul,
body:not(.elementor-page) article.main-content ol,
.comment-body ul,
.comment-body ol {
     margin-left:25px;
    margin-bottom:25px;
}
dt {
    font-weight: bold;
    font-size: 16px;
}
dd {
    padding: 0 0 20px 0;
}
ul ul, ul ul ul, ol ol, ol ol ol, ul ol, ol ul {
    margin-bottom: 0 !important
}

/* Table
= -------------------------------- */
table {
    width: 100%;
    background: #f3f3f3;
}
.comments table,
body:not(.elementor-page) article.main-content table {
    margin-bottom:25px;
}

table td, table th {
    padding: 15px;
    border: 1px solid var(--gray_2);
    text-align: left;
    color: var(--base_color);
}
table th {
    background: var(--gray_1);
    font-weight: bold;
    color: var(--base_color);
}
table caption {
    padding: 1em 0;
    text-align: center;
}

/* HTML Various small tags
= -------------------------------- */
cite {
    text-align: right;
    font-style: normal;
    font-weight: 600;
    width: 100%;
    font-size: 14px;
    display: inline-block;
}
cite a {
    font-weight: bold;
}
small {
    font-size: 12px;
}
del {
    text-decoration: line-through;
}
em, i {
    font-style: italic;
}
strong, b {
    font-weight: 700;
}
.bg-dark strong, .bg-dark b {
    font-weight:600;
}
sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sup {
    top: -0.5em;
    bottom: -0.25em;
}
abbr, acronym {
    border-bottom: 1px dotted;
}
address {
    margin: 0 0 1.5em;
    font-style: italic;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    display: inline-block;
    margin: 0px;
}


/* Code
= -------------------------------- */
code, kbd, pre, samp, tt {
    font: 0.8em 'Andale Mono', 'Lucida Console', monospace;
}
pre, code {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    border-radius: 3px;
    background: #1a1a1a;
    color: #FFF;
    padding: 2px 4px;
    font-size: 14px;
}
pre {
    white-space: pre;
    word-wrap: normal;
    overflow-x: scroll;
    line-height: 1.3;
    padding: 15px;
}
    .main-content pre,
    .comment-body pre {
        margin-bottom:30px;
    }

/* Blockquote
= -------------------------------- */
blockquote {
    font-size: 16px;
    font-style: italic;
    padding: 0 0 0 30px;
    background: transparent url(assets/images/wave-line.svg) left top no-repeat;
    border: 0;
}

body:not(.elementor-page) article.main-content blockquote {
    margin-bottom:30px;
}
blockquote.single {
    padding: 30px 0 0 0;
    margin: 0 0 30px 30px;
}
blockquote .author {
    padding-top: 20px;
    display: block;
    width: 100%;
    font-size: 14px;
    font-weight: 800;
    font-style: italic;
    text-align: right;
    text-transform: uppercase;
}
blockquote .author:before {
    content: "- "
}
blockquote p:last-of-type {
    margin-bottom: 0;
}
blockquote small {
    font-size: 12px;
}
@media (max-width: 575.98px) {
    .wp-block-pullquote p {
        font-size: 23px;
        line-height: 1.2;
    }
}

/* -------------------------------------------
   4. Forms
= ----------------------------------------- */
label {
    cursor: pointer;
    display: block;
    margin: 0 0 5px;
    font-size: 16px;
    color: var(--base_color);
}
input, textarea {
    -webkit-appearance: none;
    color: var(--base_color);
    padding: 16px 20px;
    font-weight: 400;
    border-radius: 3px;
    background-color: var(--input_bg);
    font-size: 16px;
}
select {
    color: var(--base_color);
    font-size: 14px;
    border-radius: 3px;
    background-color: var(--input_bg);
}
option {
    color: #111
}
input, select {
    min-height: 30px;
}
textarea {
    padding: 20px;
    resize: vertical;
    width: 100%;
    line-height: 1.5em;
}
select, option {
    cursor: pointer;
    padding: 16px 10px;
}
/* Placeholders */
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    color: var(--base_color);
    font-weight: 500;
    font-size: 16px
}
input:-moz-placeholder, textarea:-moz-placeholder {
    color: var(--base_color);
    font-weight: 500;
    font-size: 16px
}
input[type="checkbox"], input[type="radio"] {
    -webkit-appearance: checkbox !important;
    -moz-appearance: checkbox !important;
    -ms-appearance: checkbox !important;
    -o-appearance: checkbox !important;
    appearance: checkbox !important;
}
/* Select styled */
.select-styled {
    position: relative;
    display: inline-block;
}
.select-styled select {
    border: none !important;
    border-radius: 3px;
    height: 40px;
    font-size: 14px;
    padding: 0 38px 0 16px !important;
    color: var(--base_color);
    background-color: var(--gray_2);
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
}
.select-styled:after {
    font-family: "Ionicons";
    content: "";
    font-size: 16px;
    top: 50%;
    position: absolute;
    line-height: 1;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 10px;
    z-index: 10;
    -webkit-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
    -o-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
    transition: all cubic-bezier(.4, 0, .2, 1) .4s;
}
.contact-form-holder {

}
.contact-form-holder textarea,
.contact-form-holder input {
    background-color:rgb(255 255 255 / 42%);
    transition:0.6s ease;
}
.contact-form-holder textarea:focus,
.contact-form-holder input:focus {
    background-color:#fff
}
.contact-form-holder input[type="submit"]{
    background-color:var(--btn_alt_bg_color);
    color:var(--btn_alt_color);
}
.contact-form-holder input[type="submit"]:hover {
    background-color:var(--btn_alt_hov_bg_color);
    color:var(--btn_alt_hov_color);
}

/* -------------------------------------------
   Helper Classes
= ----------------------------------------- */
.hidden {
    display: none;
}
.invisible {
    visibility: hidden;
}
.clear {
    clear: both;
    display: block;
    height: 1px;
    margin-top: -1px;
    overflow: hidden;
    visibility: hidden;
    width: 0
}
.clearfix:after {
    clear: both;
    content: ' ';
    display: block;
    font-size: 0;
    height: 0;
    line-height: 0;
    visibility: hidden;
    width: 0
}
* html .clearfix, :first-child+html .clearfix {
    zoom: 1
}
.opacity-01 {
    opacity: 0.1
}
.opacity-02 {
    opacity: 0.2
}
.opacity-03 {
    opacity: 0.3
}
.opacity-04 {
    opacity: 0.4
}
.opacity-05 {
    opacity: 0.5
}
.opacity-06 {
    opacity: 0.6
}
.opacity-07 {
    opacity: 0.7
}
.opacity-08 {
    opacity: 0.8
}
.opacity-09 {
    opacity: 0.9
}

/* -------------------------------------------
   6. WordPress Core Styles
= ----------------------------------------- */
article iframe, article object, .post-content__article embed {
    max-width: 100%;
    min-width: 100%;
}
.alignfull, .alignwide {
    margin-bottom: 32px;
    margin-top: 32px;
}
article .alignfull {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    max-width: 1000%;
    width: 100vw;
     padding-left: -webkit-calc(2*1rem);
    padding-left: calc(2*1rem);
    padding-right: -webkit-calc(2*1rem);
    padding-right: calc(2*1rem);
}
article .alignwide {
    margin-left: calc(25% - 25vw);
    margin-right: calc(25% - 25vw);
    width: auto;
    max-width: 1000%;
}
.alignwide video {
    min-width: 100%;
}
.alignnone {
    margin: 5px 20px 20px 0;
}
.aligncenter, div.aligncenter {
    display: block;
    margin: 5px auto;
}
.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}
.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}
.aligncenter {
    display: block;
    margin: 5px auto;
}
a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}
a img.alignnone {
    margin: 5px 20px 20px 0;
}
a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}
a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
@media screen and (max-width: 768px) {
    article .alignfull,
    article .alignwide {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        width: auto;
        padding-left:0;
        padding-right:0;  
    }
}

/* Wp caption */
.wp-caption .wp-caption-text, .gallery-caption, .entry-caption {
    font-size: 12px;
    font-size: 0.857142857rem;
    line-height: 2;
}
.caption-txt {
    font-size: 14px;
}
.wp-caption .wp-caption-text {
    font-size: 14px;
    position: absolute;
    left: 10px;
    margin-right: 10px;
    bottom: 10px;
    line-height: 1.6em;
    background-color: #121212;
    text-align: left;
    padding: 5px 10px;
    color: #fff;
    border-radius: 3px;
}
.wp-caption {
    margin-bottom: 30px;
    max-width: 100%;
    position: relative;
    color: #aaa;
}
.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}
.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0 0 0px 0;
    max-width: 100%;
    padding: 0;
    width: auto;
    vertical-align: middle;
}
.wp-caption p.wp-caption-text {
    font-size: 12px;
    line-height: 17px;
    margin: 0;
    padding: 2px 8px;
    color: #fff;
}
.sticky.post {}
.gallery-item {
    float: left;
}
.gallery-item .thumb {
    margin: 0.05em;
}
.gallery-item {
    padding: 2px;
}
.gallery-item img {
    border: none;
    vertical-align: middle;
}
.bypostauthor {
    width: 100%;
}
.gallery {
    clear: both;
    position: relative;
    margin-bottom: 32px;
}
.main.thin .gallery {
    margin-left: -80px;
    margin-right: -80px;
}
.gallery:after {
    clear: both;
    content: ' ';
    display: block;
    font-size: 0;
    height: 0;
    line-height: 0;
    visibility: hidden;
    width: 0
}
.gallery-item {
    float: left;
    overflow: hidden;
    position: relative;
    max-width: 100%;
}
.gallery-item img {
    max-height: 100%;
    max-width: 100%;
    width: 100%;
}
.gallery-columns-1 .gallery-item {
    width: 100%;
}
.gallery-columns-2 .gallery-item {
    width: 50%;
}
.gallery-columns-3 .gallery-item {
    width: 33.33%;
}
.gallery-columns-4 .gallery-item {
    width: 25%;
}
.gallery-columns-5 .gallery-item {
    width: 20%;
}
.gallery-columns-6 .gallery-item {
    width: 16.66%;
}
.gallery-columns-7 .gallery-item {
    width: 14.285%;
}
.gallery-columns-8 .gallery-item {
    width: 12.5%;
}
.gallery-columns-9 .gallery-item {
    width: 11.111%;
}
.gallery-columns-1.gallery-size-medium figure.gallery-item:nth-of-type(1n+1), .gallery-columns-1.gallery-size-thumbnail figure.gallery-item:nth-of-type(1n+1), .gallery-columns-2.gallery-size-thumbnail figure.gallery-item:nth-of-type(2n+1), .gallery-columns-3.gallery-size-thumbnail figure.gallery-item:nth-of-type(3n+1) {
    clear: left;
}
.gallery-caption {
    background-color: rgba(33, 34, 37, 0.8);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #fff;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    opacity: 0;
    padding: 8px 12px;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: left;
    width: 100%;
}
.gallery-caption:before {
    content: "";
    height: 100%;
    min-height: 49px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}
.gallery-item:hover .gallery-caption {
    opacity: 1;
}
.gallery-columns-7 .gallery-caption, .gallery-columns-8 .gallery-caption, .gallery-columns-9 .gallery-caption {
    display: none;
}
.blocks-gallery-grid .blocks-gallery-image figcaption, .blocks-gallery-grid .blocks-gallery-item figcaption, .wp-block-gallery .blocks-gallery-image figcaption, .wp-block-gallery .blocks-gallery-item figcaption {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right:10px;
    max-height:50px;
    display: inline-block;
    width: auto;
    padding: 5px 13px;
    color: #fff;
    background: rgb(20 20 20 / 82%);
    border-radius: 3px;
    text-align: left;
    font-size: 13px;
    line-height: 1.6;
}
/* Paragraph color fix  */
.has-text-color[style="color:#1e0566"] {
    color: inherit !important;
}
/* Gallery block */
#app article .blocks-gallery-grid {
    margin-left:0px;
    margin-bottom:0;
    list-style:none;
}
.blocks-gallery-caption {
    font-size: 14px;
    margin-bottom: 20px;
    text-align: left;
    text-align:center;
    padding:0 20px;
}
.editor-styles-wrapper .has-large-font-size, .has-large-font-size {
    /* line-height: 1.3; */
}
/* Image block */
.wp-block-image {
    margin-bottom: 30px
}
/* Audio Block */
.wp-block-audio figcaption {
    font-size: 14px;
    margin-bottom: 20px;
    text-align: left;
}
/* Videos Block */
.wp-block-video figcaption {
    font-size: 14px;
    margin-bottom: 20px;
    text-align: left;
}
/* Embed */
.wp-block-embed figcaption {
    font-size: 14px;
    margin-bottom: 20px;
    text-align: left;
}
/* Sticky */
.mod__inner .sticky .mod__title {
}
.mod__inner .sticky .mod__title h2:before {
	content: "";
    border-radius: 100%;
    display:inline-block;
    width: 34px;
    height: 34px;
    text-align: center;
    font-size: 26px;
    margin-right: 15px;
    position: relative;
    top:7px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Ctitle%3EMagnet%3C/title%3E%3Cpath d='M421.83 293.82A144 144 0 00218.18 90.17M353.94 225.94a48 48 0 00-67.88-67.88' fill='none' stroke='currentColor' stroke-miterlimit='10' stroke-width='32'/%3E%3Cpath stroke='currentColor' stroke-linecap='round' stroke-miterlimit='10' stroke-width='32' d='M192 464v-48M90.18 421.82l33.94-33.94M48 320h48'/%3E%3Cpath d='M286.06 158.06L172.92 271.19a32 32 0 01-45.25 0L105 248.57a32 32 0 010-45.26L218.18 90.17M421.83 293.82L308.69 407a32 32 0 01-45.26 0l-22.62-22.63a32 32 0 010-45.26l113.13-113.17M139.6 169.98l67.88 67.89M275.36 305.75l67.89 67.88' fill='none' stroke='currentColor' stroke-linejoin='round' stroke-width='32'/%3E%3C/svg%3E");
}
@media (max-width: 575.98px) {
    .mod__inner.sticky .mod__title:before {
        width: 28px;
        height: 28px;
        line-height: 24px;
        font-size: 16px;
        top: -4px
    }
}
/* Password Post */
.post-password-form label:first-child input {
    display: block;
    width: 100%;
}
.post-password-form p>input {
    margin-top: 15px;
    display: block;
}
/* Separator */
.wp-block-separator {
    height: 1px;
    background-color: #FFFFFF;
    border: 0px;
    opacity: .2;
    margin: 30px auto;
    clear: both;
}
.wp-block-separator.is-style-dots {
    background: none;
    border: none;
    text-align: center;
    max-width: none;
    line-height: 1;
    height: auto;
    opacity: .5;
}
.wp-block-separator.is-style-dots:before {
    content: "\00b7 \00b7 \00b7";
    color: var(--base_color);
    font-size: 20px;
    letter-spacing: 2em;
    padding-left: 2em;
    font-family: serif;
}
/* Widgets */
.wp-block-search {
    margin-bottom: 30px;
}
.wp-block-search .wp-block-search__input {
    border:0;
}
@media (max-width: 575.98px) {
    .wp-block-search .wp-block-search__button {
        margin-left: 0px;
    }
}
.wp-block-categories {
    margin-bottom: 30px;
}
.wp-block-group__inner-container {
    padding: 30px;
    margin-bottom: 32px;
    color: #000000
}
.wp-block-archives li {
    list-style: square;
    margin: 0;
    color: #000000;
    margin-left: 0px;
    padding: 5px 0;
}
.wp-block-calendar {
    margin-bottom: 20px;
}
.wp-block-calendar table {
    background-color: transparent;
    margin-bottom: 5px;
}
.wp-block-calendar table td {
    background: #fafafa;
}
.wp-block-calendar table th {
    background: #fafafa;
    font-weight: 700;
    text-align: center;
}
.wp-block-calendar table td {
    font-weight: 400;
    text-align: center;
}
.wp-block-calendar a {
    text-decoration: underline
}
.wp-block-calendar tfoot a {
    color: #ffffff
}
.wp-block-calendar tfoot td {
    border-color: transparent;
    background-color: transparent;
}
.wp-block-calendar tfoot td#prev {
    text-align: left;
}
.wp-block-calendar tfoot td#next {
    text-align: right;
}
.wp-block-calendar table caption, .wp-block-calendar table tbody {
    color: var(--base_color);
    text-align: center;
}
.wp-block-calendar tbody td {
     border: 1px solid #dfdfdf
}
.wp-block-calendar th {
    padding: 4px;
    font-weight: 800;
    border: 1px solid #dfdfdf
}
/* Latest Comments */
.wp-block-latest-comments {}
.wp-block-latest-comments__comment-date {
    color: var(--base_color2);
}
/* Tags */
.wp-block-tag-cloud a {
    display: inline-block;
    margin: 2px;
    padding: 2px 12px;
     color: var(--base_color);
    font-weight: 500;
    background-color: #e9e9e9;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    line-height:1.6
}
.wp-block-tag-cloud a:hover {
    background-color:var(--brand_color)
}

/* Latest post */
.wp-block-latest-posts__post-date {
    color: var(--base_color2);
}
.wp-block-latest-posts {
    list-style: none;
    padding: 0px;
    margin: 0px;
    margin-left:0 !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}
.wp-block-latest-posts li {
    margin-bottom: 5px;
    font-weight: 300;
}
.wp-block-latest-posts li a {
    font-weight:500;
}
/* Blockquote */
.wp-block-quote {
    padding: 10px 30px;
    margin: 35px 0px;
}
.wp-block-quote p {
    font-style: italic;
    margin-bottom: 0px;
}
.wp-block-quote.is-large {
    margin: 35px 0px;
}
.wp-block-button__link {
    background-color: var(--btn_bg_color);
    color: var(--btn_color) !important;
    border: none;
    transition: all 0.3s ease;
    line-height: 1.4;
    font-weight: 700;
    font-size: 15px;
}
.wp-block-button.is-style-squared .wp-block-button__link,
.wp-block-button__link.wp-block-button.is-style-squared {
    border-radius: 0
}
.wp-block-file .wp-block-file__button {
    background-color: var(--brand_color);
    transition: all 0.3s ease;
    font-weight: 700;
}
.wp-block-file .wp-block-file__button:hover {
    background-color: var(--base_color);
    color: #fff !important
}
.wp-block-button {
    margin-bottom: 20px !important;
}
.wp-block-button__link:hover {
    background-color: var(--base_color);
    color: #fff !important;
    opacity: 1;
    border: none;
}
.is-style-outline .wp-block-button__link,
.wp-block-button__link.is-style-outline {
    color: var(--base_color) !important;
    border: 2px solid var(--brand_color2);
}
.is-style-outline .wp-block-button__link:hover,
.wp-block-button__link.is-style-outline:hover {
    border: 2px solid var(--base_color);
    background-color: transparent;
    color: var(--base_color) !important;
}
/* Cover */
.wp-block-cover .wp-block-cover-text p {
    color: #fff;
}
.wp-block-cover-image .wp-block-cover-image-text, .wp-block-cover .wp-block-cover-text, section.wp-block-cover-image>h2 {
    font-size: 2em;
    line-height: 1.5;
    z-index: 1;
    margin-bottom: 0;
    max-width: 610px;
    padding: 14px;
    text-align: center;
    color: #fff !important;
}
.wp-block-categories-list {
    list-style: none;
    font-size: 16px;
}
.wp-block-image figcaption {
    color: var(--base_color);
    text-align: left;
    font-size: 14px;
}
.wp-caption p, .wp-caption-text {
    font-size: 13px;
}
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}
/* Audio */
.wp-block-audio {
    margin-bottom: 32px;
}
/* Pullquotes */
.wp-block-pullquote {
    border: 4px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.15);
    color: inherit;
    padding: 40px 0;
    border-left: 0;
    border-right: 0;
    margin-bottom: 32px;
}
.wp-block-pullquote.is-style-solid-color blockquote {
    text-align: center
}
.wp-block-pullquote blockquote {
    border: 0;
    text-align: center;
    padding: 0;
    margin-bottom: 0;
    background:none;
}
.wp-block-pullquote blockquote cite {
    text-align: center;
}
.wp-block-pullquote>p {
    font-family: inherit;
}
.wp-block-pullquote cite {
    color: inherit;
    opacity: 0.8;
}
/* Table */
.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
    background-color: #e9e9e9;
}
.wp-block-table.is-style-stripes {
    border-bottom: 0;
}
.wp-block-file a.wp-block-file__button {
    color: var(--btn_color);
}
.wp-block-file a.wp-block-file__button:active, .wp-block-file a.wp-block-file__button:focus, .wp-block-file a.wp-block-file__button:hover, .wp-block-file a.wp-block-file__button:visited {
    color: #fff
}

/* -------------------------------------------
   7. Pagination/Post Navigation
= ----------------------------------------- */
.paging-navigation {
    margin: 40px 0 0 0;
}
.paging-navigation .loop-pagination {
    text-align: left;
}
.paging-navigation .page-numbers {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    margin-right: 0;
    line-height: normal;
    vertical-align: middle;
    color: var(--base_color);
    min-width: 35px;
    min-height: 35px;
    line-height: 30px;
    text-align: center;
}
.paging-navigation .page-numbers:first-child:before {
    display: none;
}
.paging-navigation .page-numbers.current {
    border: 2px solid var(--base_color);
    border-radius: 100%;
    top:-2px;
    position:relative;
}
.paging-navigation a {
    transition: color 0.5s ease;
}
.paging-navigation a:hover {
    color: var(--brand_color2);
}
@media only screen and (max-width: 479.98px) {
    .paging-navigation .page-numbers {
        min-width: 35px;
        min-height: 35px;
        line-height: 30px;
        font-size: 16px;
    }
    .paging-navigation .prev,
    .paging-navigation .next {
        display: none;
    }
}
/* Page links */
.page-links {
    display: block;
    margin-bottom: 20px;
    font-weight:500;
    color: var(--base_color)
}
.page-links a {
    display: inline-block;
    margin: 0 4px;
    color: var(--base_color)
}
/* Post Navigation */
.post-navigation {
    clear: both;
    margin-top: 40px;
    margin-left: -5px;
    margin-right: -5px;
    overflow: hidden;
}
.nav-links {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}
.nav-link {
    width: 100px;
    flex: auto;
    background-color: var(--gray_1);
    border-radius: 5px;
    padding: 0 30px;
    margin: 5px;
}
@media (max-width: 575.98px) {
    .nav-link {
        width: 100%;
        min-width: 100px;
    }
}
.nav-link__top {
    padding-top: 30px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.nav-link__title {
    padding-bottom: 30px;
    font-weight: 700;
    max-width: 70%;
    transition: 0.3s color ease;
}
.nav-link__title:hover {
    color: var(--brand_color2);
}
.nav-link__btn.btn-circle .ion {
    font-size: 35px;
}
/* Next */
.nav-link--next .nav-link__btn {
    margin-left: auto;
}
.nav-link--next .nav-link__title {
    margin-top: 10px;
    float: left;
    word-break:break-word
}
/* Prev */
.nav-link--prev .nav-link__caption {
    margin-left: auto;
}
.nav-link--prev .nav-link__title {
    text-align: right;
    margin-top: 10px;
    float: right;
    word-break:break-word
}
/* Empty */
.nav-link--empty {
    visibility: hidden;
    min-width: 0;
    padding: 10px;
}

/* -------------------------------------------
   8. Loader
= ----------------------------------------- */
/* Custom loading */
.loader {
    position: fixed;
    top: 0;
    z-index: 2010;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #fff;
    opacity: 1;
}
.loader__content {
    display: block;
    position: absolute;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.loader__inner {}
/* First Load */
/* Show progress */
.loader__progress-wrap {
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(100px);
}
.loader.start .loader__progress-wrap {
    opacity: 1;
    transform: translateY(0);
}
.loader.end .loader__progress-wrap {
    opacity: 0;
    transform: translateY(0);
}
.loader__progress {
    -webkit-transition: width .4s linear 0s;
    transition: width .4s linear 0s;
    position: absolute;
    bottom: -30px;
    left: 0;
    z-index: 20001;
    width: 10%;
    height: 20px;
    overflow: hidden;
    white-space: nowrap;
}
.loader__progress-bg {
    position: absolute;
    bottom: -30px;
    left: 0;
    z-index: 20000;
    width: 100%;
    min-width: 100%;
    height: 20px;
    overflow: hidden;
}
.loader__progress:before,
.loader__progress-bg:before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0px;
    left: 0;
    height: 20px;
    width: 200px;
    min-width: 100%;
    opacity: 1;
    z-index: 1;
    white-space: nowrap;
    background-repeat: repeat-x;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 20 8'%3E%3Cstyle type='text/css'%3E.squiggle{animation:shift .3s linear infinite;}@keyframes shift {from {transform:translateX(0);}to {transform:translateX(-20px);}}%3C/style%3E%3Cpath fill='none' stroke='%23161519' stroke-width='1' class='squiggle' d='M0,3.5 c 5,0,5,-3,10,-3 s 5,3,10,3 c 5,0,5,-3,10,-3 s 5,3,10,3'/%3E%3C/svg%3E");
    background-position: bottom;
}
.loader__progress-bg:before {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 20 8'%3E%3Cstyle type='text/css'%3E.squiggle{animation:shift .3s linear infinite;}@keyframes shift {from {transform:translateX(0);}to {transform:translateX(-20px);}}%3C/style%3E%3Cpath fill='none' stroke='%23f3f3f3' stroke-width='1' class='squiggle' d='M0,3.5 c 5,0,5,-3,10,-3 s 5,3,10,3 c 5,0,5,-3,10,-3 s 5,3,10,3'/%3E%3C/svg%3E");
    background-position: bottom;
}
.loader__bytes {
    position: absolute;
    top: -30px;
    font-size: 14px;
    right: -20px;
    color: var(--brand_color2)
}
/* Loader Image */
.loader__image {
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.5);
}
.loader.start .loader__image {
    opacity: 1;
    transform: scale(1);
}
.loader.end .loader__image {
    opacity: 0;
    transform: scale(0.5);
}
.loader__image img {
    width: 150px;
}
.loader__image .loader__custom-image {
    width: auto;
}
.ax--firstload .loader__image img {
    display: block
}

/* Page Transition
= -------------------------------- */
.page-trans {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    background-color: #fff;
    pointer-events: none;
    opacity: 1;
}
.page-trans.disappear {
    -webkit-animation: disappear 0.4s ease-out forwards;
    animation: disappear 0.4s ease-out forwards
}
.page-trans.appear {
    -webkit-animation: appear 0.4s ease-out forwards;
    animation: appear 0.4s ease-out forwards
}

body.is-page-transitions:not(.AXloader) .page-trans {
     -webkit-animation: disappear 0.6s ease-out forwards;
    animation: disappear 0.6s ease-out forwards
}

/* -------------------------------------------
   9. Layout
= ----------------------------------------- */

/* Site and Smooth Scroll
= -------------------------------- */
#app {
    z-index: 1;
    position: relative;
    height: 100%;
    -webkit-overflow-scrolling: touch;
    background-size: cover;
    background-position: center;
}

/* Content
= -------------------------------- */
.content {
    padding: 0px 0 80px 0;
    clear: both;
    width: 100%;
    position: relative;
    z-index: 2;
    /* overflow: hidden; */
}
.is-fullscreen .content {
    padding: 0;
}
.content-full {
    position: relative;
    z-index: 2;
    display: block;
}
/* Post Content */
.post-content {
    position: relative;
}
/*= Animations
 */
.content-container.is-animations {
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
    -webkit-transition: opacity 1.5s ease-out, -webkit-transform 1.5s cubic-bezier(.17, .96, .33, .99);
    transition: opacity 1.5s ease-out, -webkit-transform 1.5s cubic-bezier(.17, .96, .33, .99);
    -o-transition: transform 1.5s cubic-bezier(.17, .96, .33, .99), opacity 1.5s ease-out;
    transition: transform 1.5s cubic-bezier(.17, .96, .33, .99), opacity 1.5s ease-out;
    transition-delay: 0.5s;
}
.is-visible .content-container.is-animations {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1
}

/* Sticky Content
= -------------------------------- */
.sticky-scroll {
    position: relative;
}
.sticky-wrap {
    position: relative;
}
.sticky-scroll:after,
.sticky-wrap:after {
    visibility: hidden;
    display: block;
    content: "";
    clear: both;
    height: 0;
}

/* Sidebar
= -------------------------------- */
.main-content {
    width: 100%;
    float: left;
}
.main-content:after {
    content: "";
    display: table;
    clear: both;
}
.main-content.sidebar-on-left {
    width: 72%;
    padding-left: 45px;
    float: right;
}
.main-content.sidebar-on-right {
    width: 72%;
    padding-right: 45px;
    float: left;
}
.sidebar {
    position: relative;
}
.sidebar__block {
    background: #f7f7f7;
    width: 28%;
    float: right;
    padding: 60px 55px;
    position: relative;
    z-index: 10;
}
.sidebar__block:before {
    content: '';
    background: inherit;
    width: 500%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
}
.sidebar.sidebar-on-right .sidebar__block:before {
    left: 100%;
}
.sidebar.sidebar-on-left .sidebar__block:before {
    right: 100%;
}
.sidebar.sidebar-on-right .sidebar__block {
    padding-right: 15px;
    float: right;
}
.sidebar.sidebar-on-left .sidebar__block {
    padding-left: 15px;
    float: left;
}

@media (max-width: 1199.98px) {
    .sidebar__block {
        margin-top: 60px;
        padding: 40px !important;
        width: 100%;
        float: none;
    }
    .main-content.sidebar-on-left {
        padding: 0;
        width: 100%;
    }
    .main-content.sidebar-on-right {
        padding: 0;
        width: 100%;
    }
    .sidebar__block:before {
        display: none
    }
}
@media (max-width: 575.98px) {
    .sidebar__block {
        padding: 20px !important;
    }
}

/* Container
= -------------------------------- */
.container {
    margin: 0 auto;
    position: relative;
    max-width: 1300px;
}
.container-fluid {
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
}
.container-narrow {
    margin: 0 auto;
    position: relative;
    max-width: 1140px;
}
.container:after, .container-narrow:after, .container-fluid:after {
    content: "";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
@media only screen and (max-width: 1580px) {
    .container {
        max-width: 1080px;
    }
}
@media only screen and (max-width: 1380px) {
    .container, .container-narrow {
        max-width: 1040px;
    }
}
@media only screen and (max-width:1260px) {
    .container, .container-narrow {
        max-width: 100%;
        width: 100%;
        padding-left: 100px;
        padding-right: 100px;
    }
}
/* Mobile portrait and landscape modes */
@media only screen and (max-width: 767.98px) {
    .container, .container-narrow, .container-fluid {
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }
}
/* Mobile portrait mode */
@media only screen and (max-width: 479.98px) {
    .container, .container-narrow, .container-fluid {
        padding-left: 24px;
        padding-right: 24px;
    }
}

/* -------------------------------------------
   10. Grid 
= ----------------------------------------- */
/* Gutter */
.flex-col-1-1, .flex-col-1-2, .flex-col-1-3, .flex-col-1-4, .flex-col-1-5 {
    float: left;
}
.flex-col-1-1 {
    width: 100%;
}
.flex-col-1-2 {
    width: 50%;
}
.flex-col-1-3 {
    width: 33.33%;
}
.flex-col-1-4 {
    width: 25%
}
.flex-col-1-5 {
    width: 20%
}

/* -------------------------------------------
   11. Header
= ----------------------------------------- */

/* Header
 = -------------------------------- */
#header {
    width: 100%;
    z-index: 2002;
    backface-visibility: hidden;
    top: 0;
    background-color: transparent;
    position: absolute;
}
.elementor-editor-active #header {
    pointer-events: none
}
/* First run */
.ax--firstload .header__container {
    transition: all 0.6s ease;
    opacity: 0;
    transform: translateY(-100px);
}
.ax--firstload .is-visible .header__container {
    opacity: 1;
    transform: translateY(0);
}
#header.no-transtion {
    -webkit-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}
#header.is-sticky.is-scrolled {
    position: fixed;
    opacity: 0;
    background-color: #fff;
    transform: translateY(-20px);
    opacity: 0 !important;
    visibility: hidden !important;
}
#header.is-sticky.appear {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0px);
    transition: all 0.3s ease 0.4s;
}
.header__container {
    transition: height 0.5s ease;
    height: 128px;
}
#header.is-empty-offset .header__container {
    transition: all 0.3s ease;
}
#header.is-sticky.is-scrolled .header__container {
    height: 70px;
}
@media (max-width: 1118px) {
    .header__container {
        height: 100px;
    }
}
.header__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    height: 100%;
}
.header__left,
.header__right {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.header__right {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
/* Disable sticky on mobiles */
@media (max-width: 767.98px) {
    #header.is-scrolled.no-sticky-mobile {
        position: absolute
    }
}
/* Admin bar space */
.is-admin-bar #header {
    top: 32px;
}
@media screen and (max-width: 782px) {
    .is-admin-bar #header {
        top: 46px;
    }
}
/* Header Container */
.header__container {
    position: relative;
}
/*= Tones
 */
.bg-dark-global #header:not(.is-scrolled) .btn-circle:after {
    background-color: #fff;
}
.bg-dark-global #header:not(.is-scrolled) .btn-circle i,
.bg-dark-global #header:not(.is-scrolled) .btn-circle .ion {
    color: #fff;
}
.bg-dark-global #header:not(.is-scrolled) .btn-circle svg path {
    fill:#fff;
}
.bg-dark-global #header:not(.is-scrolled) .btn-circle:hover svg path {
    fill:var(--base_color)
}

/* Logo
= -------------------------------- */
.site-logo {
    z-index: 4;
    flex: 1;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.header-center-logo .site-logo {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    padding: 0 30px;
}
@media (max-width: 1300px) {
    .header-center-logo .site-logo {
        padding: 0 10px;
    }
}
@media (max-width: 575.98px) {
    .header-standard .site-logo {
        margin-right: 10px;
    }
    .header-center-logo .site-logo {
        position: relative;
        padding: 0;
        left: 0;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}
.site-logo a {
    position: relative;
    z-index: 2;
    display: flex;
}
.site-logo a img {
    max-height: var(--logo_height);
}
#header .logo-light {
    display: none;
}
.bg-dark-global #header:not(.is-scrolled) .logo-light {
    display: block
}
.bg-dark-global #header:not(.is-scrolled) .logo-dark {
    display: none
}

/* -------------------------------------------
   12. Navigation
= ----------------------------------------- */

/* Primary navigation
= -------------------------------- */
.header-center .primary-navigation,
.header-center-logo .primary-navigation {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 20;
}
.header-standard .primary-navigation {
    margin-right: 20px;
}
.primary-navigation div>ul {
    margin-bottom: 0;
    text-align: center;
    position: relative;
}
.primary-navigation li {
    list-style: none;
    display: block;
    margin: 0;
    position: relative;
    z-index: 2;
}
.primary-navigation div>ul>li {
    float: left;
    margin: 0px;
    position: relative;
}
.primary-navigation a {
    font-size: 15px;
    display: block;
    margin: 0 20px;
    position: relative;
    text-align: center;
    font-weight: 600;
    transition: color .6s ease;
    -webkit-transition: color .6s ease;
}
@media (max-width: 1300px) {
    .primary-navigation a {
        margin: 0 15px;
    }
}
.primary-navigation div>ul>li>a {
    font-weight: 700;
    color: var(--base_color);
}
.bg-dark-global #header:not(.is-scrolled) .primary-navigation div>ul>li>a {
    color: #fff;
    font-weight:500;
}
.primary-navigation div>ul>li>a:hover,
.bg-dark-global #header:not(.is-scrolled) .primary-navigation div>ul>li>a:hover {
/*     color: var(--brand_color2); */
}
/* Current */
.primary-navigation div>ul>li.current-menu-item>a,
.bg-dark-global #header:not(.is-scrolled) .primary-navigation div>ul>li.current_page_item>a,
.bg-dark-global #header:not(.is-scrolled) .primary-navigation div>ul>li.current-menu-item>a {
/*     color: var(--brand_color2); */
}
.primary-navigation>div>ul>li.current-menu-ancestor:before,
.primary-navigation>div>ul>li.current-page-ancestor:before,
.primary-navigation>div>ul>li.current-menu-parent:before, 
.primary-navigation>div>ul>li.current-menu-item:before {
    content: "";
    position: absolute;
    top: -7px;
    bottom: 0;
    left: 0px;
    z-index: 0;
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--brand_color);
    transform: scale(1);
    transition: transform .5s cubic-bezier(.4,.8,.6,1.2);
}
.bg-dark-global #header:not(.is-scrolled) .primary-navigation>div>ul>li.current-menu-ancestor:before,
.bg-dark-global #header:not(.is-scrolled) .primary-navigation>div>ul>li.current-page-ancestor:before,
.bg-dark-global #header:not(.is-scrolled) .primary-navigation>div>ul>li.current-menu-parent:before, 
.bg-dark-global #header:not(.is-scrolled) .primary-navigation>div>ul>li.current-menu-item:before {
    opacity: 0.5;
}
.ax--loading .primary-navigation>div>ul>li.current-menu-ancestor:before,
.ax--loading .primary-navigation>div>ul>li.current-page-ancestor:before,
.ax--loading .primary-navigation>div>ul>li.current-menu-parent:before, 
.ax--loading .primary-navigation>div>ul>li.current-menu-item:before {
    transform: scale(0);
}
.primary-navigation .active>a, .primary-navigation .current-menu-item>a {
/*     color: var(--brand_color2); */
}
.primary-navigation li.hot>a:after {
    content: "hot";
    font-size: 10px;
    font-weight: 500;
    display: inline-block;
    background-color: #ff0000;
    color: #fff;
    padding: 2px 6px;
    margin-left: 5px;
    border-radius: 2px;
    text-transform: uppercase;
}
/*= Dropdown
 */
.primary-navigation li>ul.sub-menu {
    z-index: 10;
    opacity: 0;
    display:none;
    -webkit-transform-origin: 50% -50px;
    -ms-transform-origin: 50% -50px;
    transform-origin: 50% -50px;
    transform: translateY(40px) scale(0.8);
    -webkit-box-shadow: 0 20px 32px -8px rgba(0, 0, 0, .15), 0 0 1px rgba(0, 0, 0, .05);
    box-shadow: 0 20px 32px -8px rgba(0, 0, 0, .15), 0 0 1px rgba(0, 0, 0, .05);
}
.primary-navigation ul ul {
    top: 50px;
    background: #fff;
    left: 0;
    padding: 0;
    position: absolute;
    width: 230px;
    opacity: 0;
    display: block;
    padding: 10px 0 10px;
    border-radius: 3px;
}
.primary-navigation ul ul.show-list {}
.primary-navigation ul ul li {
    float: none;
    padding: 0 10px;
    border-radius: 3px;
}
.primary-navigation ul ul a {
    color: var(--base_color);
    display: block;
    letter-spacing: 0;
    padding: 10px 15px;
    margin: 0;
    text-align: left;
    text-transform: none;
    line-height: 1.5;
    font-weight: 400;
    margin: 0;
    border-radius:5px;
    transition: color, background 0.5s ease;
    background-color: transparent;
}
.primary-navigation ul ul>li.menu-item-has-children>a:after {
    content: "\f273";
    font-family:'Ionicons';
    font-style:normal;
    position: absolute;
    right: 10px;
    opacity: 0.4;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.primary-navigation ul ul>li.menu-item-has-children>a:hover:after {
    opacity: 1;
    transform:rotate(45deg);
}
.primary-navigation ul ul a:hover {
    background-color: var(--gray_2);
}
.primary-navigation ul ul {
    z-index: 20
}
.primary-navigation ul ul ul {
    z-index: 21
}
.primary-navigation ul ul ul ul {
    z-index: 22
}
.primary-navigation ul li.current-menu-parent ul a {}
.primary-navigation ul ul a:hover, .primary-navigation ul ul .hover>a, .primary-navigation ul ul .current>a:hover, .primary-navigation ul ul a.selected {}
.primary-navigation ul ul .active>a, .primary-navigation ul ul a:hover {}
.primary-navigation ul ul .current>a {
    color: #fff;
}
.primary-navigation ul ul li.current-menu-item a {}
.primary-navigation li:not(.super-menu) ul ul {
    left: 100% !important;
    top: 0px !important;
}
.primary-navigation li:not(.super-menu) ul li>.edge {
    right: 100% !important;
    left: -100% !important;
}
.primary-navigation li:not(.super-menu) ul .edge {
    right: 100% !important;
    left: auto !important;
}
/* Media Query */
@media (max-width: 991.98px) { 
     .primary-navigation {
        display: none;
    }
}  

/* Super Menu
= -------------------------------- */
.super-menu-wrap {
    position: absolute;
    top: 48px;
    display: none;
    opacity: 0;
    transform: translateY(40px) scale(0.8);
    width: 100vw;
    left: 0;
    right: 0px;
    -webkit-transform-origin: 50% -50px;
    -ms-transform-origin: 50% -50px;
    transform-origin: 50% -50px;
}
.primary-navigation .super-menu {}
.primary-navigation .super-menu-wrap>ul {
    background: #fff;
    padding-top: 20px;
    padding-bottom: 20px;
    border-radius: 3px;
    transform: translateY(0) scale(1) !important;
    opacity: 1 !important;
    -webkit-box-shadow: 0 20px 32px -8px rgba(0, 0, 0, .15), 0 0 1px rgba(0, 0, 0, .05);
    box-shadow: 0 20px 32px -8px rgba(0, 0, 0, .15), 0 0 1px rgba(0, 0, 0, .05);
    top: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: none;
    width: 100%;
    width: -webkit-calc(100vw - 170px) !important;
    width: calc(100vw - 170px) !important;
    right: 0px !important;
    left: 80px !important;
    position: relative;
    margin: 0;
}
.primary-navigation .super-menu-wrap>ul>li {
    padding: 0px;
    border-radius: 0;
    width: -webkit-calc(100% / 6);
    width: calc(100% / 6);
    float: left;
    margin-left: 0;
}
.primary-navigation .super-menu-wrap>ul ul li.menu-item-has-children {}
.primary-navigation .super-menu-wrap>ul ul.sub-menu {
    position: relative;
    top: 0;
    left: 0;
    background-color: transparent;
    width: 100%;
    padding: 0;
    transform: translateY(0) scale(1) !important;
    display: inline-block !important;
    opacity: 1 !important;
    display: block !important;
    box-shadow: none !important;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
}
.primary-navigation .super-menu-wrap>ul ul.sub-menu:after {
    display: none
}
.primary-navigation .super-menu-wrap ul ul li {
    padding: 0;
}
.primary-navigation .super-menu-wrap ul li a {
    line-height: normal;
    padding: 0;
    padding: 10px;
    border-radius: 3px;
}
.primary-navigation .super-menu-wrap>ul>li>a {
    color: inherit !important;
    font-weight: 600;
}
.primary-navigation .super-menu-wrap>ul>li>a:after {
    display: none
}
.primary-navigation .super-menu-wrap ul ul li:first-child>a {}
.primary-navigation .super-menu-wrap ul ul li:last-child>a {}

/* Extra Menu
= -------------------------------- */
.extra-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.extra-menu {
    list-style: none;
}
.extra-menu li {
    margin-right: 15px
}
@media (max-width: 575.98px) {
    .extra-menu li {
        margin-right: 5px
    }
}
.extra-menu li:first-child,
.extra-menu li:last-child {
    margin-right: 0;
}

/* Layer Navigation
= -------------------------------- */
/*= Hamburger button
 */
#header.menu-type-standard .l-nav-btn {
    display:none;
}
@media (max-width: 991.98px) { 
    #header.menu-type-standard .l-nav-btn {
        display:inherit;
    }
}   
#header.hamburger-position-left .l-nav-btn {
    margin-right: 20px;
}
#header.hamburger-position-right .l-nav-btn {
    margin-left: 15px;
}
@media (max-width: 575.98px) {
    #header.hamburger-position-left .l-nav-btn {
        margin-right: 10px;
    }
    #header.hamburger-position-right .l-nav-btn {
        margin-left: 5px;
    }
}
.menu-open .l-nav-btn:after {
    background-color: #fff;
}
/* Hamburger dots */
.hamburger-dots {
    display: inline-block;
    width: 30px;
    height: 8px;
    position: relative;
}
.hamburger-dot {
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: var(--base_color);
    position: absolute;
    top: 0;
    transition: all 0.3s ease;
}
.bg-dark-global #header:not(.is-scrolled) .hamburger-dot {
    background-color: #fff;
}
.bg-dark-global #header:not(.is-scrolled) .btn-circle:hover .hamburger-dot {
    background-color:var(--base_color)
}
.hamburger-dot._1 {
    left: 50%;
    margin-left: -4px;
}
.hamburger-dot._2 {
    left: 0;
}
.hamburger-dot._3 {
    right: 0;
}
.menu-open .hamburger-dot,
.btn-circle:hover .hamburger-dot {
    /* background-color: var(--brand_color2); */
}
.menu-open .hamburger-dot._2,
.btn-circle:hover .hamburger-dot._2 {
    left: 50%;
    margin-left: -4px;
}
.menu-open .hamburger-dot._3,
.btn-circle:hover .hamburger-dot._3 {
    right: 50%;
    margin-right: -4px;
}
/* Layer Header
= */
.layer-header {
    height: 128px;
    position: absolute;
    left: 0;
    top: 0;
}
.layer-header__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
}
.layer-navigation.hamburger-position-right .btn-close-layer {
    margin-left: auto;
}
.is-admin-bar .layer-header {
    top: 32px;
}
@media screen and (max-width: 782px) {
    .is-admin-bar .layer-header {
        top: 46px;
    }
}
/* Layer Navigation
=  */
.layer-navigation {
    z-index: 9999;
    visibility:hidden;
    position:fixed;
    width:100vw;
    height:100vh;
}
.l-nav {
    opacity:0;
    background-color: rgb(255 255 255);
}
.l-nav__wrap {
    -webkit-mask-image: linear-gradient(180deg, transparent 20px, #000000 20%, #000000 80%, transparent);
    mask-image: linear-gradient(180deg, transparent 20px, #000000 20%, #000000 80%, transparent);
}
.l-nav__wrap {
    position: relative;
    height: 100%;
    box-sizing: border-box;
    z-index: 4;
    overflow-y: scroll;
    width: calc(100% + 30px);
}
.l-nav__inner {
    display: flex;
    width: 100%;
    height: 100vh;
    padding: 0 80px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
@media only screen and (max-width: 767.98px) {
     .l-nav__inner {
       padding:0 36px;
    }
}  
@media (max-width: 575.98px) {
    .l-nav__inner {
       padding:0 24px;
    }
}
.l-nav-list {
    position: relative;
    width:100%;
}
.l-nav-list__layer {
    display: none;
}
.l-nav-list__layer.is-open {
    display: block;
}
/* Layer Navigation */
.l-nav ul {
    list-style: none;
    padding: 0;
    counter-reset: main-menu-counter 0;
    margin-bottom: 0;
    width: 40vw;
    position: relative;
    width: -webkit-calc(100vw / 2.5);
    width: calc(100vw / 2.5);
    padding-top: 120px;
    padding-bottom: 120px;
}
@media (max-width: 1199.98px) {
    .l-nav ul {}
}
@media (max-width: 991.98px) {
    .l-nav ul {
        width: -webkit-calc(100vw / 2);
        width: calc(100vw / 2);
    }
}
@media (max-width: 767.98px) {
    .l-nav ul {
        width: 70%;
    }
}
@media (max-width: 575.98px) {
    .l-nav ul {
        width: 100%;
    }
}
.l-nav div>ul>li {
    margin-left: 0;
    position: relative;
    margin: 0px 0;
    width: 100%;
}
.l-nav-list__layer ul li {
    opacity: 0;
    transform: translateY(-40px);
    display:flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;	
}

.l-nav li a {
    font-weight: 700;
    font-size: 40px;
    position: relative;
    z-index: 2;
    font-size: 3.7758112094vw;
    line-height: 1.3;
    transition: padding .35s cubic-bezier(.39,.575,.565,1), color .3s;
    padding-right: 35px;
}
@media (min-width: 1199.98px) { 
    .l-nav li a {
        font-size: 3.5em
    }
}
@media (max-width: 991.98px) { 
    .l-nav li a {
        font-size: 2em
    }
}   
.l-nav li a * {
    pointer-events: none;
}
/* Active */
.l-nav ul li a:hover {
    color: var(--brand_color);
    padding-left: 20px;
}
.l-nav ul li a.active {}

/* Toggle */
.l-nav-list__toggle {
   margin-left:auto;
   margin-right:40px;
   cursor:pointer;
   transition:all 0.3s ease;
}
.l-nav-list__toggle:hover {
    transform:rotate(45deg);
}
.l-nav-list__toggle > * {
    pointer-events:none;
}
.l-nav-list__toggle i {
    font-family:'Ionicons';
    font-style:normal;
    font-size: 2.5vw;
}
.l-nav-list__toggle i:after {
    content: "\f273";
}
@media (min-width: 1199.98px) { 
    .l-nav-list__toggle i {
        font-size: 2em
    }
}

@media (max-width: 575.98px) { 
    .l-nav-list__toggle {
       margin-right:20px;
    }
    .l-nav-list__toggle i {
        font-size:0.7em;
    }
} 

/* Sub Navigation
=  */
.l-nav-list .submenu {
    padding-left: 0;
}
/* Back link */
.l-nav div>ul>li.submenu__back {
    cursor: pointer;
    margin: 0;
    z-index: 6;
    overflow: hidden;
    width: auto;
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding-bottom:10px;
}
@media (max-width: 575.98px) {
    .l-nav div>ul>li.submenu__back {
        left: 0;
        position: relative
    }
}
.l-nav li.submenu__back>div {
    position: relative
}
.l-nav .submenu__back:hover .submenu__back-title,
.l-nav .submenu__back:hover .rt-arrow {
    opacity: 1;
}
@media only screen and (max-width: 767.98px) {
    .l-nav li a {
        font-size: 30px;
    }
    .l-nav-list__toggle {
        line-height: 34px;
    }
    .submenu__back span {
        font-size: 40px;
    }
    .l-nav div>ul>li {
        margin: 8px 0;
    }
}
@media only screen and (max-width: 479.98px) {
    .menu__main {
        align-items: center;
    }
    .l-nav div>ul>li {
        margin: 8px 0;
    }
    .l-nav li a {
        font-size: 22px;
        font-weight: 600;
    }
    .l-nav ul li a:hover {
        padding-left: 0
    }
    .l-nav-list__toggle {
        font-size: 20px;
        line-height: 22px;
    }
}

/* Details
= -------------------------------- */
.l-nav__details {
    position: relative;
    transition: all 0.3s ease;
    margin-left:auto;
    min-width:300px;
    font-weight: 400;
    color:rgb(20 20 20 / 86%)
}
.l-nav__details h3 {
    font-size:22px;
}
.l-nav__detail {
    transform: translateY(-40px);
    opacity: 0;
}

.l-nav__details b {
}
.l-nav__details-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    text-align: left;
}
.l-nav__detail {
    margin: 30px 0;
}

/* -------------------------------------------
   13. Content
= ----------------------------------------- */

/* -------------------------------------------
   14. Page
= ----------------------------------------- */

/* Scroll To Top
= -------------------------------- */
.scrolltop {
    position: fixed;
    left: 32px;
    bottom: 0px;
    opacity: 0;
    height: 0px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-out;
    z-index: 3;
    transform: rotate(-90deg);
    transform-origin: center left;
}
.scrolltop.bg-dark a {
    color: #fff;
}
@media (max-width: 767.98px) {
    .scrolltop {
        display: none;
    }
}
body.is-scrolled .scrolltop {
    opacity: 1;
    bottom: 100px;
}
.scrolltop__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 50px;
}
.scrolltop .btn-slide:hover {
    color: var(--brand_color2);
}

/* Social Networks
= -------------------------------- */
.networks-panel {
    position: fixed;
    right: 30px;
    top: 150px;
    width: 50px;
    text-align: center;
    cursor: pointer;
    transition: opacity, transform 0.3s ease;
    z-index: 11;
}
.networks-panel:hover .wave-line {
    background-color:transparent;
}
.networks-panel:hover .wave-line:after {
    opacity:1
}

/* First run */
.ax--firstload .networks-panel {
    transition: all 0.6s ease;
    opacity: 0;
    transform: translateX(100px);
}
.ax--firstload .is-visible .networks-panel {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.8s;
}
@media (max-width: 767.98px) {
    .networks-panel {
        top: 100px;
        position: absolute;
        display: none;
    }
}
@media (max-width: 575.98px) {
    .networks-panel {
        right: 24px;
    }
}
/* Links */
.networks-panel__list {}
.networks-panel__list a {
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
    transition: color 0.6s, transform 0.3s ease;
}
.bg-dark.networks-panel .networks-panel__list a {
    color: #fff;
}
.networks-panel__list a:hover {
    transform: scale(1.5);
    color: var(--brand_color2);
}
.networks-panel__list a img {
    max-width: 50px;
}
/* Label */
.networks-panel__label {
    position: absolute;
    bottom: -20px;
    left: -104px;
    pointer-events: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: right;
    font-weight: 500;
    transform: rotate(-90deg);
    transform-origin: center right;
    white-space: nowrap;
}
.bg-dark.networks-panel .networks-panel__label {
    color: #fff;
}
@media (max-width: 767.98px) {
    .networks-panel__label {
        display: none
    }
}
.networks-panel__label .wave-line {
    width: 40px;
    margin-left: 20px;
    display: inline-block;
}

/* Share
= -------------------------------- */
.btn-circle.share-panel {
    position: fixed;
    left: 30px;
    top: 150px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-circle.share-panel:hover .wave-line {
    background-color:transparent;
}
.btn-circle.share-panel:hover .wave-line:after {
    opacity:1
}    

/* First run */
.ax--firstload .btn-circle.share-panel {
    transition: all 0.6s ease;
    opacity: 0;
    transform: translateX(-100px);
}
.ax--firstload .is-visible .btn-circle.share-panel {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.6s;
}
@media (max-width: 767.98px) {
    .btn-circle.share-panel {
        top: 100px;
        position: absolute;
    }
}
@media (max-width: 575.98px) {
    .btn-circle.share-panel {
        left: 24px;
    }
}
.share-panel .share-panel__icon,
.share-panel .ion.share-panel__close {
    transition: opacity, transform 0.3s ease;
    position: absolute;
}
.share-panel .share-panel__icon {
    width: 24px;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    display: inline-block;
}
.share-panel .ion.share-panel__close {
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
    font-size: 36px;
}
.share-panel.is-open .share-panel__icon {
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
}
.share-panel.is-open .share-panel__close {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    transition-delay: 0.2s;
}
/* Links */
.share-panel__links {
    position: absolute;
    left: 60px;
    top: 0;
    text-align: left;
    white-space: nowrap;
    pointer-events: none
}
@media (max-width: 575.98px) {
    .share-panel__label {
        display: none;
    }
}
.share-panel__links .btn-circle {
    display: inline-block;
    margin-right: 8px;
    transform: scale(0);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.12, 0.28, 0, 0.69);
}
.share-panel.is-open .share-panel__links {
    pointer-events: all;
}
.share-panel.is-open .share-panel__links .btn-circle {
    transform: scale(1);
    opacity: 1;
}
.share-panel__links .btn-circle:after {
    background-color: #f4f4f4;
    opacity: 1;
}
.share-panel__links .btn-circle .icon {
    font-size: 18px;
    color:#fff;
}
.bg-dark.share-panel .share-panel__links .btn-circle .icon {
    color:#fff
}
.share-panel__links .share-panel-facebook {
    transition-delay: 0.1s
}
.share-panel__links .share-panel-facebook:after {
    background-color: #3b5998 !important;
    color: #fff;
}
.share-panel__links .share-panel-facebook .icon {
    color: #fff;
}
.share-panel__links .share-panel-twitter {
    transition-delay: 0.2s
}
.share-panel__links .share-panel-twitter:after {
    background-color: #1da1f2 !important;
    color: #fff;
}
.share-panel__links .share-panel-twitter .icon {
    color: #fff;
}
.share-panel__links .share-panel-linkedin {
    transition-delay: 0.3s
}
.share-panel__links .share-panel-linkedin:after {
    background-color: #0077b5 !important;
    color: #fff;
}
.share-panel__links .share-panel-linkedin .icon {
    color: #fff;
}


/* Label */
.share-panel__label {
    position: absolute;
    bottom: -30px;
    left: -77px;
    pointer-events: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: right;
    font-weight: 500;
    transform: rotate(-90deg);
    transform-origin: center right;
}
.bg-dark.btn-circle.share-panel:hover .share-panel__label {
    color:#fff
}
@media (max-width: 767.98px) {
    .share-panel__label {
        display: none
    }
}
.share-panel__label .wave-line {
    width: 40px;
    margin-left: 20px;
    display: inline-block;
}

/* Page Header
= -------------------------------- */
.ph {
    padding-top: 128px;
    /* Header */
    position: relative;
    margin-bottom: 100px;
    width: 100%;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
@media (max-width: 991.98px) { 
    .ph {
        margin-bottom: 60px;
    }
}  
@media (max-width: 575.98px) { 
    .ph {
        margin-bottom:40px;
    }

} 
.ph-container {
    padding-top: 60px;
    padding-top: 7vh;
}

 

/*= Wave
 */  
.ph .wave-holder {
    bottom:-5vw;
}
@media (max-width: 991.98px) { 
    .ph .wave-holder {
        bottom:-5vw;
    }
}  
@media (max-width: 767.98px) { 
    .ph .wave-holder {
        bottom:-5px;
    } 
}

/*= Simple
 */  
.ph-simple {
    background-color:#eee;
}
.ph-simple .ph-wrap {
    padding-bottom: 70px;
}
.ph-simple.is-wave .ph-wrap {
    padding-bottom: 20px;
}
@media (max-width: 575.98px) { 
    .ph-simple.is-wave .ph-wrap {
        padding-bottom: 30px;
    }
} 

/*= Empty
 */
.ph-empty {}
/*= Title
 */
.ph-title {
    position: relative;
    font-size: 4em;
    line-height:1.1;
    width: 80%;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    /* margin-bottom:0; */
}
.bg-dark-section .ph-title {
    color: #fff;
    font-weight:700
}
@media (max-width: 991.98px) {
    .ph-title {
        width: 100%;
        font-size: 58px;
    }
}
@media (max-width: 767.98px) {
    .ph-title {
        width: 100%;
        font-size: 58px;
    }
}
@media (max-width: 575.98px) {
    .ph-title {
        font-size: 38px;
    }
}

/*= Meta
 */
.ph-meta-bottom {
    font-size: 17px;
    opacity: 0.8;
    font-weight:600;
}
.ph-meta-bottom p {
    margin-bottom: 15px;
}
.bg-dark-section .ph-meta-bottom {
    color: #fff;
}
/*= Meta Top
 */
.ph-meta-top {
    max-width: 70%;
    position: relative;
    z-index: 2;
}
.bg-dark-section .ph-meta-top {
    color: #fff;
}
.ph-meta-top__wrap {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
}
.ph-meta-top__col {
    margin-right: 16px;
    margin-right: 3vh;
    text-align: left;
    font-size: 14px;
}
.ph-meta-top__name {
    font-weight: bold;
}
.ph-meta-top__author-avatar {
    border-radius: 100%;
    width: 50px;
    max-width: 50px;
}
@media (max-width: 991.98px) {
    .ph-meta-top {
        max-width: 100%;
    }
}
@media (max-width: 575.98px) {
    .ph-meta-top__wrap .ph-meta-top__col:first-child {
        display: none
    }
}
/*= Cats
 */
.bg-dark-section .cat {
    color: #fff;
}
.cat:hover {
    color: var(--brand_color2);
}
.cat:after {
    content: " • ";
}
.ph-meta-top__value .cat:last-child:after {
    display: none
}
@media (max-width: 575.98px) {
    .ph-meta-top__value .cat {
        display: block;
    }
    .ph-meta-top__value .cat:after {
        display: none;
    }
}
/*= Featured Image, Color
 */
.ph-fi,
.ph-color {
    min-height: 500px;
}
.ph-fi .ph-container,
.ph-color .ph-container {
    padding-top: 80px;
    padding-bottom: 100px;
    padding-top: 8vh;
    padding-bottom: 6vh;
}
/*= Fullscreen Image
 */
.ph-fs {
    height: 100vh;
}
.ph-fs .ph-container {
    padding-bottom: 20vh;
}
/*= Image
 */
.ph-img-wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}
.ph-img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.ph-imga:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: var(--brand_color2);
    opacity: 0.4;
    mix-blend-mode: overlay;
    z-index: 1
}

/*= Animations
 */
.ph.is-anim .ph-title,
.ph.is-anim .ph-meta-top,
.ph.is-anim .ph-meta-bottom {
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
    -webkit-transition: opacity 1.5s ease-out, -webkit-transform 1.5s cubic-bezier(.17, .96, .33, .99);
    transition: opacity 1.5s ease-out, -webkit-transform 1.5s cubic-bezier(.17, .96, .33, .99);
    -o-transition: transform 1.5s cubic-bezier(.17, .96, .33, .99), opacity 1.5s ease-out;
    transition: transform 1.5s cubic-bezier(.17, .96, .33, .99), opacity 1.5s ease-out;
    transition: transform 1.5s cubic-bezier(.17, .96, .33, .99), opacity 1.5s ease-out, -webkit-transform 1.5s cubic-bezier(.17, .96, .33, .99)
}
.ph.is-anim .ph-meta-top {
    transition-delay: 0.4s
}
.ph.is-anim .ph-meta-bottom {
    transition-delay: 0.3s
}
.ph.is-anim .ph-title-bg,
.ph.is-anim .ph-bg {
    opacity: 0;
    -webkit-transition: opacity 1.5s ease-out, -webkit-transform 1.5s cubic-bezier(.17, .96, .33, .99);
    transition: opacity 1.5s ease-out, -webkit-transform 1.5s cubic-bezier(.17, .96, .33, .99);
}
.is-visible .ph.is-anim .ph-title-bg,
.is-visible .ph.is-anim .ph-bg {
    opacity: 1;
}
.is-visible .ph.is-anim .ph-title,
.is-visible .ph.is-anim .ph-meta-top,
.is-visible .ph.is-anim .ph-meta-bottom {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1
}

/* Page Content
= -------------------------------- */
.page-content {}
.page-content h1, .page-content h2, .page-content h3, .page-content h4, .page-content h5, .page-content h6 {
    margin-bottom: 30px;
}
.page-content a {
    color: var(--brand_color2);
    font-weight: 500;
    transition: opacity 0.5s ease;
}
.page-content a:hover {
    opacity: 0.7
}
.page-content li {
    margin: 1px 0 1px 28px;
}

/* -------------------------------------------
   15. Blog
= ----------------------------------------- */
/* Post Footer */
.post-footer {
    clear: both;
}
/* Tags */
.meta-tags {
    width: 100%;
    padding-top: 20px;
}
.meta-tags__caption {
    display: inline-block
}
.meta-tags__wrap {
    display: inline-block
}
.meta-tags a {
    display: inline-block;
    margin-left: 4px;
    margin-bottom:4px;
    font-size: 13px;
    background-color: var(--gray_2);
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 3px;
    transition: all 0.3s ease;
}
.meta-tags a:hover {
    background-color: var(--brand_color);

}

/* Sticky Featured
= -------------------------------- */
.fc__content {
    width: 100%;
    float: left;
}
.fc__content.featured-on-left {
    width: 72%;
    padding-left: 45px;
    float: right;
}
.fc__content.featured-on-right {
    width: 72%;
    padding-right: 45px;
    float: left;
}
.fc__sidebar {
    position: relative;
}
.fc__sidebar-block {
    width: 28%;
    float: right;
    padding: 0px 0px 60px;
    position: relative;
    z-index: 10;
}
.fc__sidebar.featured-on-right .fc__sidebar-block {
    float: right;
}
.fc__sidebar.featured-on-left .fc__sidebar-block {
    float: left;
}
.fc__media img {
    border-radius: 5px;
    overflow: hidden;
}
@media (max-width: 1199.98px) {
    .fc__sidebar-block {
        /* padding:40px; */
        width: 25%;
    }
    .fc__content.featured-on-left {
        width: 75%;
        padding-left: 30px;
    }
    .fc__content.featured-on-right {
        width: 75%;
        padding-right: 30px;
    }
}
@media (max-width: 991.98px) {
    .fc__sidebar-block {
        /* margin-top: 60px; */
        /* padding:40px !important; */
        width: 100%;
        float: none;
    }
    .fc__content.featured-on-left {
        padding: 0;
        width: 100%;
    }
    .fc__content.featured-on-right {
        padding: 0;
        width: 100%;
    }
    .fc__sidebar-block:before {
        display: none
    }
}
@media (max-width: 575.98px) {
    .fc__sidebar-block {
        padding: 20px !important;
    }
}

/* Related
= -------------------------------- */
.related-posts {
    margin-top: 40px;
}
.related-posts h3 {}
.related-posts .grid-item {
    margin-bottom: 30px;
}

/* -------------------------------------------
   16. Category / Tags / Archives / Search
= ----------------------------------------- */

/* 404 Page
= -------------------------------- */
.container--404 {
    padding-top: 180px;
    padding-bottom: 0px;
    text-align: center;
}
.container--404 p {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}
.holder-404 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    /* V Center */
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    -webkit-justify-content: center;
    justify-content: center;
    align-items: center;
    align-items: center;
    margin-bottom: 30px;
}
.container--404 h4 {
    font-size: 30px;
    max-width: 500px;
    display: inline-block;
    margin-bottom: 30px;
}
@media only screen and (max-width: 479.98px) {
    .container--404 {
        padding-top: 140px;
        padding-bottom: 0px;
        text-align: center;
    }
    .container--404 h4 {
        font-size: 22px;
    }
}

/* Search
 = -------------------------------- */
.search-404 {}
.search-404 .big-text {
    margin-bottom: 0;
}
.search-404 #searchform {
    width: 100%;
}
.search-404 .search-input-wrap input {
    max-width: 600px;
    min-width: 400px;
    height: 45px;
    text-transform: uppercase;
}
@media only screen and (max-width: 767.98px) {
    .search-404 .search-input-wrap input {
        min-width: 300px
    }
}
@media only screen and (max-width: 479.98px) {
    .search-404 .search-input-wrap input {
        min-width: 0
    }
}

/* -------------------------------------------
    17. Comments
= ----------------------------------------- */
.comments {
    position: relative;
    padding-bottom: 80px;
}
.comments-inner {
    max-width:960px;
}
/* Comments */
.comments__message {
    font-size: 16px;
    font-weight: 400;
    color: #222;
}
.comments__title {
    margin-bottom: 0px;
    font-size: 24px;
    position:relative;
}

/* Comments list */
.comments-list {
    margin: 30px 0 60px;
    padding: 0 0 30px;
    overflow: hidden;
}
.comments__container {
    position:relative;
    overflow: hidden;
}
.comment {
    list-style: none;
    padding: 0px 0 0 0;
    margin: 0;
}
.comment:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
.comment>ul {
    margin-bottom: 30px
}
.comment:first-child {
    border-top: none;
    margin-top: 0;
    padding-top: 0;
}
.logged-in-as {
    position: relative;
    top: 0px;
    margin-bottom: 20px;
    font-size: 15px;
}
.logged-in-as a {
   
}
.logged-in-as a:hover {
   
}
.comment-field {
    overflow: hidden;
    clear: both;
    margin-bottom: 0px;
    line-height: 0;
}
.comment-field #comment {
    background-color:rgb(255 255 255 / 42%);
    transition:0.6s ease;
}
.comment-field #comment:focus {
    background-color:#fff
}
.comment>article {
    margin: 0;
    position: relative;
    padding-top: 30px;
}
.theme_comment .avatar-wrap {
    float: left;
    position: relative;
    z-index: 1;
    border-radius: 100%;
    overflow: hidden;
}
.theme_comment .avatar-wrap img {
    margin: 0;
    width: 60px;
    height: 60px;
    float: left;
    border-radius: 2px;
}
.comment .comment-body {
    margin: 0 0 30px 80px;
    font-size: 16px;
}
.comment-body>ul:first-of-type,
.comment-body>ol:first-of-type {
    margin-bottom: 20px !important;
}
.comment .comment-body p:last-child {
    margin-bottom: 0;
}
.comment .comment-meta {
    margin: 0 0 0px 80px;
    font-size: 16px;
}
.comment .comment-meta {
    margin-bottom: 0;
}
.comment .author {
    font-size: 1em;
	line-height: 1em;
}
.comment .author, .comment .author a {
    margin: 0;
}
.comment .date {
    color: var(--base_color2);
    margin: 0 0 10px;
    font-size:0.95em
}
.comment .reply a {
    font-weight: 600;
    margin-left: 5px;
}
.comment .children {
    margin: 0;
    padding: 0px 0 0;
    position: relative;
}
.comment .children .comment {
    margin: 30px 0 0;
    padding: 0px 0 0 80px;
    position: relative;
}
.comment .children .comment.depth-4, .comment .children .comment.depth-5, .comment .children .comment.depth-6, .comment .children .comment.depth-7, .comment .children .comment.depth-8, .comment .children .comment.depth-9, .comment .children .comment.depth-10 {
    padding-left: 0;
}
.comment .children .comment:first-child {
    margin-top: 0;
}
.comment .children .comment-body, .comment .children .comment-meta {}
/* Pingbacks / Trackbacks */
.comment-list {
    list-style: none;
    margin-bottom: 0px;
}
.comment-list .pingback, .comment-list .trackback {
    list-style: none;
    margin-left: 0;
    padding-top: 30px;
    padding-left: 0;
    border-top: 1px dotted #999;
}
.comment-list .pingback .avatar-wrap, .comment-list .trackback .avatar-wrap {
    display: none;
}
.comment-list .pingback:first-child, .comment-list .trackback:first-child {
    border-top: none;
    margin-top: 30px;
    padding-top: 0;
}
.comment-list .pingback .author, .comment-list .trackback .author, .comment-list .pingback .author a, .comment-list .trackback .author a, .comment-list .pingback .author a:hover, .comment-list .trackback .author a:hover {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 400;
}
.comment-list .pingback .author a:hover,
.comment-list .trackback .author a:hover {
    color:var(--brand_color2);
}
.comment-list .pingback .date, .comment-list .trackback .date {
    color: var(--base_color2);
    font-size: 13px;
    margin: 0 0 5px;
    position: relative;
    top: -5px;
}
/* Response */
#respond {
    margin-top: 80px;
    border-radius: 5px;
    padding: 60px;
    position:relative;
    background-color:#a4fee4;
}
#respond:after {
    content:"";
    position: absolute;
    display: block;
    background-size: contain;
    background: transparent url(assets/images/arrow--big.svg) 50% 50% no-repeat;
    height: 8px;
    top:-80px;
    left: -80px;
    width: 60px;
    height: 60px;
    z-index:1;
}
.comment #respond {
    margin-top:0px;
    margin-bottom:40px;
}
.comment #respond:after {
    display:none;
}
.woocommerce #review_form #respond:after {
    display:none
}
@media (max-width: 767.98px) { 
    #respond {
        padding:30px;
    }
    #respond:after {
        display:none
    }
} 
#reply-title {
    font-size:1.3em
}
#reply-title small a {
    font-size: 15px;
    font-weight:500;
    color: #fff;
    transition: color 0.3s ease;
    margin-left: 10px;
    padding:6px 12px;
    border-radius:5px;
    background-color:var(--base_color);
}
#reply-title small a:hover {
    background-color:var(--btn_alt_hov_bg_color);
    color:var(--btn_alt_hov_color)
}
.comment-form {}
#respond input, #respond textarea {
    background-color:#eee;
}
#respond input::-webkit-input-placeholder, #respond textarea::-webkit-input-placeholder {
    font-size: 16px;
}
#respond input:-moz-placeholder, #respond textarea:-moz-placeholder {
    font-size: 16px;
}
/* Submit */
#respond #submit {
    padding: 10px 20px;
}
.comment-form-cookies-consent {
    margin-top: 20px;
    display: block;
}
.comment-form-cookies-consent label {
    display: inline;
    line-height: 1em;
    margin-left: 10px;
    font-size: 14px;
}
#wp-comment-cookies-consent {
    display: inline-block;
}
#respond input[type=text] {
    width: 100%;
    background-color:transparent;
    background-color:rgb(255 255 255 / 42%);
    transition:0.6s ease;
}
#respond input[type=text]:focus {
    background-color:#fff;
}
.form-allowed-tags {
    font-size: 12px;
    display: none;
}
.form-allowed-tags span {
    font-size: 12px;
    display: block
}
.form-submit {
    clear: both;
    padding-top: 20px;
}
/* Media Query */
@media only screen and (max-width: 767.98px) {
    .theme_comment .avatar-wrap img {
        width: 54px;
        height: 54px;
    }
    .comment .comment-meta {
        padding-top: 10px;
        margin: 0px 0 0px 80px;
    }
    .comment .comment-body {
        margin-left: 0px;
        margin-top: 0px;
        clear: both;
    }
    .comment .children .comment {
        padding: 0;
        padding-left: 20px;
    }
    #respond input[type=text] {
        margin-bottom: 16px;
    }
}
@media only screen and (max-width: 479.98px) {
    .comments__title {
        font-size: 28px;
    }
}

/* -------------------------------------------
   18. Footer 
= ----------------------------------------- */
#footer {
    position: relative;
    width: 100%;
    z-index: 2;
    background-color: var(--gray_2);
}
#footer.bg-dark {
    background-color:var(--footer_bg);
}
.error404 #footer,
.no-footer #footer {
    display: none;
}
/* Footer Widgets */
.footer-widgets {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-top: 80px;
    padding-bottom: 40px;
    position: relative;
    flex-wrap: wrap;
    border-bottom:1px solid var(--gray_4);
}
#footer.bg-dark .footer-widgets {
    border-color:var(--base_color3);
}
.footer-column aside {
    padding-right: 30px;
}
.footer-widgets .footer-column:last-child aside {
    padding-right: 0
}
.footer-col-1 {
    width: 100%;
}
.footer-col-6 {
    width: 50%;
}
.footer-col-8 {
    width: 70%;
}
.footer-col-4 {
    width: 33.33%;
}
.footer-col-3 {
    width: 25%;
}
@media (max-width: 991.98px) {
    .footer-widgets .footer-column {
        width: 100%;
    }
}
@media (max-width: 767.98px) {
    .footer-widgets .footer-column {
        width: 100% !important;
    }
    .footer-column aside {
        padding-right: 00px;
    }
}
/* Footer bottom bar */
.footer-bottom {
    font-size: 14px;
    padding: 30px 0;
}
@media (max-width: 575.98px) { 
    .footer-bottom {
        font-size: 12px;
        padding: 20px 0;
    }
} 
.bg-dark .footer-bottom {
    color: rgba(255,255,255,.7);
}

.footer-bottom__right {
    text-align: right;
}
@media (max-width: 767.98px) {
    .footer-bottom__right {
        margin-top: 10px;
        text-align: left;
    }
}
.wpml-switcher {
    font-size: 14px;
    display: inline-block;
}
@media (max-width: 767.98px) {
    .wpml-switcher {
        margin-left: 0;
    }
}
.wpml-switcher .wpml-switch {
    color: var(--base_color);
}
.bg-dark .wpml-switcher .wpml-switch,
.bg-dark .wpml-switcher a.wpml-switch:hover {
    color: rgba(255,255,255,1);
}
.bg-dark .wpml-switcher a.wpml-switch {
    color: rgba(255,255,255,0.5);
}
.wpml-switcher .wpml-switch.active {
    font-weight: 600;
    position:relative;
}
.wpml-switcher .wpml-switch.active:before {
    content: "";
    position:absolute !important;
    left:-10px;
    top:-10px;;
    width: 40px;
    height: 40px;
    border-radius:100%;
    position: relative;
    display: inline-block;
    background-color: var(--base_color2);
    vertical-align: middle;
    opacity: 0.2;
    z-index:-1;
}
.wpml-switch:after {
    content: "";
    width: 20px;
    height: 1px;
    position: relative;
    display: inline-block;
    background-color: var(--base_color2);
    margin: 0 16px;
    vertical-align: middle;
    opacity: 0.5
}
.wpml-switcher .wpml-switch:last-child:after {
    display: none;
}
.footer-logo {
    width: 100px;
}

/* Big Title */
.footer-widget__big-title {
    font-size:3.7em;
    line-height:1;
    color:#fff;
    font-weight:800;
}
@media (max-width: 575.98px) { 
    .footer-widget__big-title {
        font-size:3em;
    }
} 
.footer-widget__big-title .heart {
    display: inline-block;
    vertical-align: middle;
    animation: heart-beats 8s cubic-bezier(.36,.07,.19,.97) infinite;
    transform-origin: 50% 70%;
    will-change: transform;
    color:var(--brand_color)
}
.footer-widget__big-title .heart-2 {
    animation-delay: 4s;
}
@keyframes heart-beats {
    2% {
        transform: scale(1)
    }

    3% {
        transform: scale(1.05)
    }

    4% {
        transform: scale(1)
    }

    8% {
        transform: scale(1)
    }

    9% {
        transform: scale(1.15)
    }

    10% {
        transform: scale(1)
    }

    22% {
        transform: scale(1)
    }

    23% {
        transform: scale(1.05)
    }

    24% {
        transform: scale(1)
    }

    28% {
        transform: scale(1)
    }

    29% {
        transform: scale(1.15)
    }

    30% {
        transform: scale(1)
    }
}



/* Fulllscreen footer */
.fs-footer #footer {
    background: transparent;
    position: fixed;
    bottom: 0;
    left: 0;
}
.fs-footer #footer .container {
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    padding-left: 40px;
    padding-right: 40px;
    position: relative;
}
.fs-footer #footer .footer-widgets {
    display: none;
}

@media (max-width: 767.98px) {
    .fs-footer .footer-bottom__right {
        display: none;
    }
}

/* Light FS footer */
.bg-light-global.fs-footer .footer-bottom,
.bg-light-global.fs-footer .footer-bottom a {
    color:var(--base_color);
}

.bg-light-global.fs-footer .wpml-switcher .wpml-switch,
.bg-light-global.fs-footer .wpml-switcher a.wpml-switch:hover {
    color:var(--base_color);
}
.bg-light-global.fs-footer .wpml-switcher a.wpml-switch {
    color:var(--base_color)
}


/* -------------------------------------------
   19. Widgets 
= ----------------------------------------- */

/* Basics styles
= -------------------------------- */
.widget {
    margin-bottom: 40px;
    clear: both;
    overflow: hidden;
    font-size: 16px;
    font-size:0.95em;
}
.bg-dark .widget {
    color: rgba(255,255,255,0.6);
}
.widget-title {
    color: var(--base_color);
    font-size: 1.2em;
    padding-top:0;
    margin-bottom: 0.6em;
    line-height: 1.3;
}
#footer .widget-title {
    font-size: 1.6em;
}
.widget a {
    color: var(--base_color);
    transition: color 0.3s ease;
}
.bg-dark .widget a {
    color: rgba(255,255,255,.7);
}
.widget a:hover {
    color: var(--base_color);
}
.bg-dark .widget a:hover  {
    color: rgba(255,255,255,1);
}
.widget .textwidget a {}
.widget .textwidget a:hover {}
.widget address {
    margin-bottom: 18px;
}
.widget abbr[title] {
    border-color: rgba(255, 255, 255, 0.1);
}
.widget mark, .widget ins {
    color: var(--base_color);
}
.widget pre, .widget fieldset {
    border-color: rgba(255, 255, 255, 0.1);
}
.widget code, .widget kbd, .widget tt, .widget var, .widget samp, .widget pre {
    font-size: 16px;
}
.widget blockquote {
    color: var(--gray_2);
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 18px;
}
.widget blockquote cite {
    color: #444;
}
.widget dl, .widget dd {
    margin-bottom: 18px;
}
.widget ul, .widget ol {
    list-style: none;
    margin: 0;
}
.widget li>ol, .widget li>ul {
    margin-left: 10px;
}
.widget table, .widget th, .widget td {
    border-color: rgba(255, 255, 255, 0.1);
    padding: 0;
    border: none;
}
.widget table {
    margin-bottom: 18px;
}
.widget del {
    color: rgba(255, 255, 255, 0.4);
}
.widget hr {
    background-color: rgba(255, 255, 255, 0.1);
}
.widget p {
    margin-bottom: 30px;
}
.widget p strong {
    font-weight: 500;
}
.widget p:last-child {
    margin-bottom: 0;
}
.widget select {
    font-weight: 400;
    padding: 10px;
    padding-right: 30px;
    min-width: 200px;
    max-width: 100%;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
     background-color:#eee;
    background-image: url("data:image/svg+xml;utf8,<svg fill='%23999' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
    background-repeat: no-repeat;
    background-position: calc(100%) 50%;
    -webkit-appearance: none;
    -moz-appearance: none;
}
.bg-dark .widget select {
    background-color:var(--base_color);
}
.widget select:hover {}
.widget select option {
    color: #222;
    font-size: 14px;
    text-transform: none;
}
.widget input, .widget textarea {
    border: none;
    font-size: 16px;
    margin-bottom: 18px;
    background-color:#eee
}
.widget input:focus, .widget textarea:focus {
    border-color: rgba(255, 255, 255, 0.5);
}
.widget button,
.widget .button,
.widget input[type="button"],
.widget input[type="reset"],
.widget input[type="submit"] {
    border: 0;
    font-size: 14px;
    padding: 13px 16px;
}
.widget input[type="button"]:hover, .widget input[type="button"]:focus, .widget input[type="reset"]:hover, .widget input[type="reset"]:focus, .widget input[type="submit"]:hover, .widget input[type="submit"]:focus {
}
.widget input[type="button"]:active, .widget input[type="reset"]:active, .widget input[type="submit"]:active {
}
.widget .wp-caption {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 18px;
}
/* Categories / archives / recent posts / meta / menu / pages / links */
.widget_categories ul, .widget_archive ul, .widget_recent_entries ul, .widget_meta ul, .widget_nav_menu ul, .widget_pages ul, .widget_links ul {
    margin: 0;
}
.widget_categories li, .widget_archive li, .widget_recent_entries li, .widget_meta li, .widget_nav_menu li, .widget_pages li, .widget_links li {
    list-style: none;
    margin: 0;
    margin-left: 0px;
    padding: 4px 0;
    margin-bottom:5px;
}
.widget_categories ul ul li, .widget_archive ul ul li, .widget_recent_entries ul ul li, .widget_meta ul ul li, .widget_nav_menu ul ul li, .widget_pages ul ul li, .widget_links ul ul li {
    margin-left: 5px;
    padding-left: 0;
    margin-bottom: 0;
}
.widget_categories a, .widget_archive a, .widget_recent_entries a, .widget_meta a, .widget_nav_menu a, .widget_pages a, .widget_links a {
    position: relative;
    color: var(--base_color);
    transition:all 0.3s ease;
    box-shadow: 0 -1px 0 0 rgb(255 255 255 / 0%) inset, 0 -2px 0 0 transparent inset;
    transition: all 0.3s ease;
}
.widget_recent_entries .post-date {
    color: #666;
    display: block;
    font-size: 11px;
}

.widget.widget_categories a:hover, 
.widget.widget_archive a:hover, 
.widget.widget_recent_entries a:hover, 
.widget.widget_meta a:hover, 
.widget.widget_nav_menu a:hover, 
.widget.widget_pages a:hover, 
.widget.widget_links a:hover,
.widget_recent_comments ul li a:hover {
    box-shadow: 0 0px 0 0 white inset, 0 -6px 0 0 var(--brand_color) inset;
}
.bg-dark .widget.widget_categories a:hover,
.bg-dark .widget.widget_archive a:hover, 
.bg-dark .widget.widget_recent_entries a:hover, 
.bg-dark .widget.widget_meta a:hover, 
.bg-dark .widget.widget_nav_menu a:hover, 
.bg-dark .widget.widget_pages a:hover, 
.bg-dark .widget.widget_links a:hover {
    color: rgba(255,255,255,1);
}
.recentcomments a:after {
    display: none
}
/* Nav menu */
.widget_nav_menu ul ul {
    margin-bottom: 0
}
.widget_nav_menu ul ul ul {
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 0;
}
.widget_nav_menu ul ul ul li {
    margin-left: 0;
    padding-left: 10px;
}
.widget_nav_menu ul ul ul li:last-child {
    margin-bottom: 0;
    padding-bottom: 0
}
.widget_nav_menu div > ul > li > a {
    font-weight: 700;
}

/* Search */
#searchform fieldset {
    position: relative;
    margin-bottom: 0;
}
#search, .woocommerce-product-search {
    position: relative;
}
input#s, input.search-field {
    border: 0;
    width: 100%;
    overflow: hidden;
    padding-right: 36px;
    font-size: 14px;
    font-weight: 700;
    padding: 16px 16px;
    background-color:#fff
}
input.search-field::placeholder {
    opacity:0;
}
input.search-field:-ms-input-placeholder {
  opacity:0;
}
input.search-field::-ms-input-placeholder {
   opacity:0;
}


#s::placeholder {
    color: var(--base_color);
    font-size:14px;
}
#s:-ms-input-placeholder {
    color: var(--base_color);
     font-size:14px;
}
#s::-ms-input-placeholder {
    color: var(--base_color);
     font-size:14px;
}
#searchsubmit {
    position: absolute;
    right: 0px;
    margin-bottom: 0;
    top: 8px;
    padding: 0;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    margin-right: 0;
}
.widget_product_search button {
    position: absolute;
    right: 0px;
    margin-bottom: 0;
    top: 0px;
    border: none;
    padding-top:16px;
    padding-bottom:16px;
}
.searchform fieldset .icon {
    opacity: 0.7;
    font-size: 22px;
    color: #000000;
    transition: opacity 0.3s ease;
}
.searchform:hover .icon-search {
    opacity: 1;
}
/* Text Widget */
.widget_text p {
    margin-bottom: 10px;
}
.bg-dark .widget_text p {
    line-height: 1.9em;
}
.bg-dark .widget_text a strong {
    color:#fff;
}

/* Recent Comments Widgets */
.widget_recent_comments ul {
    list-style: none;
    margin: 0;
}
.widget_recent_comments ul li {
    padding: 5px 0;
    margin: 0;
    color:var(--base_color2);
}
.widget_recent_comments ul li a {
    color:var(--base_color);
    transition: all 0.3s ease;
/*     text-decoration:underline */
}
/* Tag Cloud Widget */
.widget_tag_cloud a {
    padding: 10px 14px;
    margin: 2px 2px 4px 2px;
    display: inline-block;
    line-height: normal;
    color: var(--base_color);
    font-weight: 600;
    background-color: #e9e9e9;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    transition: all 0.4s ease;
    
}
.widget.widget_tag_cloud a:hover {
    text-decoration: none;
    line-height: normal;
    background-color: var(--brand_color)
}
/* RSS Widget */
.widget_rss ul {
    list-style: none;
    margin: 0;
}
.widget_rss li {
    padding: 0 0 20px 0;
    margin: 0;
    font-size: 14px;
    color: var(--base_color2);
}
a.rsswidget {
    color: var(--base_color);
    font-size: 16px
}
.widget_rss li:last-child {
    padding: 0;
}
.widget_rss li .rss-date {
    display: block;
    opacity: 0.8;
}
.widget_rss li .rssSummary {
    padding-top: 10px;
}
.widget_rss li cite {
    display: block;
    padding: 4px 0;
    color: var(--base_color2);
}
a.rsswidget img {
   top:-2px;
   position:relative;
}

/* Calendar Widget
= -------------------------------- */
.widget table#wp-calendar {
    border-radius: 5px;
    overflow: hidden
}
.widget table#wp-calendar thead {
    border-radius: 5px;
    overflow: hidden
}
.widget table#wp-calendar a {
    display: block;
    color: var(--base_color);
    line-height: 31px;
    text-decoration: none;
    font-weight: 500;
}
.widget table#wp-calendar a:hover {
    background: #fff;
    color: var(--base_color);
    line-height: 31px;
    text-decoration: none;
}
.widget table td, .widget table th {
    border: none;
    background: #dcdcdc;
}
.widget table#wp-calendar {
    width: 99%;
    margin-bottom: 0;
    background-color: transparent;
}
.widget table#wp-calendar tbody td {
    text-align: center;
    border: none;
    background: #ebebeb;
    color: #4a4949;
    font-size: 12px;
    line-height: 25px;
    padding: 5px;
}
.widget table#wp-calendar caption {
    font-size: 13px;
    width: 100%;
    padding: 0;
    padding-bottom: 5px;
    text-align: center;
    font-weight: 500;
    letter-spacing: 1px;
    background-color: #ebebeb;
}
.widget table#wp-calendar th {
    font-weight: normal;
    color: var(--base_color);
    text-align: center;
    padding: 0;
    font-weight: 600
}
.widget table#wp-calendar #next a {
    text-align: right;
    color: #444;
    line-height: 10px;
    background: none;
}
.widget table#wp-calendar #prev a {
    text-align: left;
    color: #999;
    line-height: 15px;
    background: none;
}
.widget table#wp-calendar #next a:hover,
.widget table#wp-calendar #prev a:hover {
    color: var(--brand_color2);
}
/* Subscribe */
.subscribe-form {
    width: 100%;
    position: relative;
    margin-bottom: 5px;
}
.subscribe-form .subscribe-form__email {
    width: 100%;
    padding: 12px 12px;
    margin-bottom: 0;
    background-color: #fff;
}
.bg-dark .subscribe-form .subscribe-form__email {
    background-color: rgb(136 136 136 / 13%);
    color:#fff;
}
/* Placeholders */
.subscribe-form .subscribe-form__email::-webkit-input-placeholder {
    color: var(--base_color);
    font-weight: 400;
    font-size:0.95em
}
.bg-dark .subscribe-form .subscribe-form__email::-webkit-input-placeholder {
    color: #666;
}
.subscribe-form .subscribe-form__email:-moz-placeholder {
    color: var(--base_color);
    font-weight: 400;
    font-size:0.95em
}
.bg-dark .subscribe-form .subscribe-form__email:-moz-placeholder {
    color: var(--base_color2);
}
.widget .subscribe-form .subscribe-form__submit {
    white-space: nowrap;
    position: absolute;
    left: 100%;
    top: 50%;
    -webkit-transform: translate(-100%, -50%);
    -ms-transform: translate(-100%, -50%);
    transform: translate(-100%, -50%);
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding:14px 14px;
}
.widget .subscribe-form .subscribe-form__submit:hover {
}
.subscribe-note {
    font-size: 0.95em;
    opacity:0.7;
}
/* ==================================================
  20. Modules
================================================== */
.mod,
.mod__inner {
    position: relative;
}
/*= Image
 */
.mod__image {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}
.mod__image-holder {
    display: block;
    position: relative;
}
/*= Categories
 */
.mod__cats {
    margin-bottom: 6px;
}
.mod__cats a:last-child:after {
    display: none;
}
.mod__cats a {
    font-size: 14px;
    transition: all 0.5s ease;
}
/*= Title
 */
.mod__title h2 {
    font-size: 22px;
    margin-bottom: 16px;
    word-break: break-word;
}
.mod__image .mod__title h2 {
    margin-bottom:0;
}
.mod__title h2 a {
    transition: color 0.5s ease;
}
.mod__title h2 a:hover {
    color: var(--brand_color2);
}
/*= Title with Thumbnails
 */
.mod__thumb {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.mod__thumb .mod__col--image {
    padding-right: 20px;
}
.mod__thumb img {
    min-width: 80px;
    overflow: hidden;
    border-radius: 3px;
    display: inline-block;
}
/*= Read More
 */
.mod__readmore a {
    font-weight: 700;
    transition: all 0.5s ease;
    position: relative;
    display: inline-block;
}
/*= Meta Top
    Above Title
 */
.mod__meta-top {
    font-size: 14px;
    transition: all 0.5s ease;
}
/*= Caption
 */
.mod__caption { opacity:0.8 }
.mod__caption p {
    padding-top:0;
}
/*= Overlay Layer
 */
.mod__overlay {
    position: absolute;
    left: 0%;
    right: 0%;
    top: 0%;
    bottom: 0%;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(28, 27, 33, 0) 0%, rgba(28, 27, 33, 0.5) 100%);
    transition: opacity 0.5s ease;
    opacity: 0;
    z-index: 2;
}
.mod:hover .mod__overlay {
    opacity: 1;
}
/*= Split Content
 */
.mod-split-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
.mod-split-col__details {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}
@media (max-width: 767.98px) {
    .mod-split-content {
        display: block;
    }
}
/*= List
 */
.mod-list {
    osition: relative;
    z-index: 10;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}
@media (max-width: 767.98px) {
    .mod-list {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.mod-list .mod-list-cell:first-child {
    min-width: 20%;
}
.mod-list .mod-list-cell:nth-child(2) {
    margin-left: 5vh;
    margin-right: 5vh;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}
@media (max-width: 767.98px) {
    .mod-list .mod-list-cell:nth-child(2) {
        margin: 20px 0 0 0;
    }
}
.mod-list .mod-list-cell:last-child {
    white-space: nowrap;
}
/*= Meta
 */
.mod__meta {
    max-width: 100%;
    position: relative;
    z-index: 2;
    transition: opacity 0.3s, transform 0.3s ease-out;
    opacity: 0;
    transform: translateY(60px);
}
.mod:hover .mod__meta {
    opacity: 1;
    transform: translateY(0);
}
.mod__meta-inner {
    display: flex;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.mod__meta-col {
    margin-right: 16px;
    text-align: left;
    font-size: 14px;
}
.mod__meta-name {
    line-height: 1.6;
}
    .mod__meta-name strong {
        font-weight:600;
    }
.mod__meta-value {
    line-height: 1.6;
}
.mod__meta-author-avatar {
    border-radius: 100%;
    width: 46px;
    max-width: 46px;
}
/*= Appearance Animations
 */
.mod__inner,
.mod__image-holder,
.mod__image-holder:after {
    -webkit-transition: all ease-out .4s;
    -o-transition: all ease-out .4s;
    transition: all ease-out .4s;
}
.mod__image-holder:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
/* Fade */
.appear--fade .mod__inner {
    opacity: 0;
}
.is-visible .appear--fade.on .mod__inner {
    opacity: 1
}
/* Fade Up */
.appear--fade-up .mod__inner {
    -webkit-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    transform: translateY(-100px);
    opacity: 0;
}
.is-visible .appear--fade-up.on .mod__inner {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1
}
/* Fade Down */
.appear--fade-down .mod__inner {
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0;
}
.is-visible .appear--fade-down.on .mod__inner {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}
/* Fade Left */
.appear--fade-left .mod__inner {
    -webkit-transform: translateX(-100px);
    -ms-transform: translateX(-100px);
    transform: translateX(-100px);
    opacity: 0;
}
.is-visible .appear--fade-left.on .mod__inner {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1
}
/* Fade Right */
.appear--fade-right .mod__inner {
    -webkit-transform: translateX(100px);
    -ms-transform: translateX(100px);
    transform: translateX(100px);
    opacity: 0;
}
.is-visible .appear--fade-right.on .mod__inner {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1
}
/* Zoom In */
.appear--zoom-in .mod__inner {
    -webkit-transform: scale(0.6);
    -ms-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 0;
}
.is-visible .appear--zoom-in.on .mod__inner {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}
/* Zoom Out */
.appear--zoom-out .mod__inner {
    -webkit-transform: scale(1.4);
    -ms-transform: scale(1.4);
    transform: scale(1.4);
    opacity: 0;
}
.is-visible .appear--zoom-out.on .mod__inner {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}
/* Hover Animations */
/* Zoom Out */
.hover--zoom-out .mod__image-holder {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.hover--zoom-out:hover .mod__image-holder {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
/* Greyscale */
.hover--greyscale .mod__image-holder {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}
.hover--greyscale:hover .mod__image-holder {
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
/* Color Mix */
.hover--color-mix .mod__image-holder:after {
    background-color: var(--brand_color2);
    opacity: 0;
    mix-blend-mode: overlay;
    z-index: 2
}
.hover--color-mix:hover .mod__image-holder:after {
    opacity: 0.4;
}

/*  Blog - Simple Grid
= -------------------------------- */
.mod-blog-simple {
    margin-bottom: 40px;
}
.mod-blog-simple .mod__readmore {
    text-align: right;
}
.mod-blog-simple .mod__readmore a {
    opacity: 0;
    transform: translateY(20px);
}
.mod-blog-simple:hover .mod__readmore a {
    opacity: 1;
    transform: translateY(0);
}
.mod-blog-simple .mod__meta {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    z-index: 3;
    color: #fff;
    pointer-events: none;
}
/* Boxed */
.mod-blog-simple .mod__image {
    margin-bottom: 20px;
}
.mod-blog-simple--boxed .mod__image {
    margin-bottom: 0;
}
.mod-blog-simple--boxed .mod__details {
    padding: 40px;
    background-color: var(--gray_1);
    border-radius: 5px;
}
.mod-blog-simple.mod-blog-simple--boxed .mod__readmore a {
    opacity: 1;
    transform: translateY(0);
}
.mod-blog-simple--boxed.mod--is-image .mod__image {
    -webkit-border-bottom-right-radius: 0px;
    border-bottom-right-radius: 0px;
    -webkit-border-bottom-left-radius: 0px;
    border-bottom-left-radius: 0px;
}
.mod-blog-simple--boxed.mod--is-image .mod__details {
    -webkit-border-top-right-radius: 0px;
    border-top-right-radius: 0px;
    -webkit-border-top-left-radius: 0px;
    border-top-left-radius: 0px;
}

/* Blog - Search Results
 = -------------------------------- */
.mod-search {
    margin-bottom: 40px;
}
.mod-search .mod__thumb .mod__col--image img {
   max-width:100px;
}

.mod-search .mod__title {
    display:flex;
    margin-bottom:20px;
}
.mod-search img {
    max-width:100px;
    margin-right:20px;
}
.mod-search .mod__title h2 {
    margin-bottom:0;
}
.mod-search .mod__thumb .mod__col--title {
    font-size:22px;
}
.mod-search .mod__readmore {
    text-align: right;
}
.mod-search .mod__readmore a {
    opacity: 0;
    transform: translateY(20px);
}
.mod-search:hover .mod__readmore a {
    opacity: 1;
    transform: translateY(0);
}

/*  Blog - Minimal 
 = -------------------------------- */
.mod-blog-minimal {
    margin-bottom: 30px;
}
.mod-blog-minimal .mod__meta {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 40px;
    z-index: 3;
    color: #fff;
}
.mod-blog-minimal .mod__title h2 {
     font-size: 1.2em;
     font-weight: 700;
     margin-bottom:10px;
}  
 
.mod-blog-minimal .mod__title h2 a {
    color: #fff;
}
.mod-blog-minimal .cat {
    color: #fff;
    /* opacity: 0.8; */
}
.mod-blog-minimal .cat:hover {
    opacity: 1;
}
.mod-blog-minimal .mod__overlay {
    opacity: 1;
}
.mod-blog-minimal .mod__meta {
    opacity: 1;
    pointer-events: none;
}
.mod-blog-minimal .mod__meta-inner {
    -webkit-transition: all .4s cubic-bezier(.4, 0, .2, 1);
    -o-transition: all .4s cubic-bezier(.4, 0, .2, 1);
    transition: all .4s cubic-bezier(.4, 0, .2, 1);
    transform: translateY(100%);
}
.mod-blog-minimal:hover .mod__meta-inner {
    transform: translateY(0);
}
.mod-blog-minimal:hover .cat {
    opacity: 1
}
.mod-blog-minimal.mod--no-image .mod__image-holder {
    height: 300px;
    background-color: var(--gray_3);
}

/*  Blog - Split
 = -------------------------------- */
.mod-blog-split {
    margin-bottom: 60px;
}
.mod-blog-split .mod__title h2 {
    font-size:28px
}
.mod-blog-split .mod__meta {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 3;
    color: #fff;
}
.mod-blog-split .mod-split-col__image {
    max-width:50%;
    min-width: 40%;
}
@media (max-width: 767.98px) { 
    .mod-blog-split .mod-split-col__image {
        max-width:100%;
         min-width:100%;
    }
}  
@media (max-width: 575.98px) { 
    .mod-blog-split .mod-split-col__image {
        max-width:100%;
         min-width:100%;
    }
} 
.mod-blog-split .mod__details {
    padding: 0 4vh;
}
.mod-blog-split.mod--no-image .mod__details {
    padding: 0;
}
/* Sticky */
.mod-blog-split.mod--no-image .sticky .mod__caption,
.mod-blog-split.mod--no-image .sticky .mod__readmore,
.mod-blog-split.mod--no-image .sticky .mod__cats {
   padding-left:0px;
}

@media (max-width: 767.98px) {
    .mod-blog-split .mod__details {
        padding: 0;
    }
}

/*  Album - Simple Grid
 = -------------------------------- */
.mod-album-simple {
    margin-bottom: 40px;
}
.mod-album-simple .mod__readmore {
    text-align: right;
}
.mod-album-simple .mod__readmore a {
    opacity: 0;
    transform: translateY(20px);
}
.mod-album-simple:hover .mod__readmore a {
    opacity: 1;
    transform: translateY(0);
}
.mod-album-simple .mod__image {
    margin-bottom: 20px;
}
.mod-album-simple .mod__meta-top {
    font-size: 16px;
    margin-bottom: 5px;
    position: relative;
    z-index: 0;
}
.mod-album-simple .mod__title {
    z-index: 2;
    position: relative;
}
.mod-album-simple .mod__title h2 {
    margin-bottom: 0;
}
.mod-album-simple .mod__meta-top-link {
    font-size: 16px;
    font-weight: 500;
}
.mod-album-simple .mod__meta-top-link .wave-anim {
    display: inline-block;
    width: 40px;
    height: 22px;
    margin-right: 10px;
    position: relative;
}
.mod-album-simple .mod__meta-top-link .wave-anim:after {
    background-position: center;
}
.mod-album-simple .mod__meta-top-content {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
    -o-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
    transition: all cubic-bezier(.4, 0, .2, 1) .4s;
}
.mod-album-simple .mod__meta-top-link {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
    -webkit-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
    -o-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
    transition: all cubic-bezier(.4, 0, .2, 1) .4s;
}
.mod-album-simple .mod__meta-top-link a {
    display: inline-flex;
    justify-content: center
}
.mod-album-simple:hover .mod__meta-top-content {
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
}
.mod-album-simple:hover .mod__meta-top-link {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
}
/* Boxed */
.mod-album-simple--boxed .mod__image {
    margin-bottom: 0;
}
.mod-album-simple--boxed .mod__details {
    padding: 40px;
    background-color: var(--gray_1);
    border-radius: 5px;
}
.mod-album-simple--boxed.mod--is-image .mod__image {
    -webkit-border-bottom-right-radius: 0px;
    border-bottom-right-radius: 0px;
    -webkit-border-bottom-left-radius: 0px;
    border-bottom-left-radius: 0px;
}
.mod-album-simple--boxed.mod--is-image .mod__details {
    -webkit-border-top-right-radius: 0px;
    border-top-right-radius: 0px;
    -webkit-border-top-left-radius: 0px;
    border-top-left-radius: 0px;
}

/*  Album - Minimal 
 = -------------------------------- */
.mod-album-minimal {
    margin-bottom: 40px;
    transition: filter 0.5s ease;
}
.mod-album-minimal:hover {
/*     filter: drop-shadow(0px 5px 28px rgb(22 21 25 / 30%)); */
}
.mod-album-minimal .mod__meta {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    z-index: 3;
    color: #fff;
    transform: translateY(0);
    pointer-events: none
}
.mod-album-minimal .mod__meta-top {
    opacity: 0.8;
}
.mod-album-minimal .mod__title h2 {
    margin-bottom: 0;
}
.mod-album-minimal .mod__title h2 a {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}
.mod-album-minimal .mod__overlay {
    opacity: 1;
}
.mod-album-minimal:hover .mod__overlay {
    opacity: 0;
}
.mod-album-minimal .mod__meta {
    opacity: 1;
}
.mod-album-minimal:hover .mod__meta {
    transform: translateY(50px);
    opacity: 0
}
.mod-album-minimal.mod--no-image .mod__image-holder {
    height: 300px;
    background-color: var(--gray_3);
}
/* Inverted */
.mod-album-minimal--inverted .mod__meta {
    transform: translateY(100%);
    opacity: 0;
}
.mod-album-minimal--inverted:hover .mod__meta {
    transform: translateY(0);
    opacity: 1;
}
.mod-album-minimal--inverted .mod__overlay {
    opacity: 0;
}
.mod-album-minimal--inverted:hover .mod__overlay {
    opacity: 1;
}
/* Cursor Caption */
.mod-album-cc:hover {
    z-index: 11;
}
.mod-album-cc .mod__overlay {
    opacity: 0;
}
.mod-album-cc .mod__move-container {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 2px 10px;
    border-radius: 2px;
    pointer-events: none;
    z-index: 11111;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
}
.mod-album-cc .mod__image:hover .mod__move-container {
    visibility: visible;
    opacity: 1
}
.mod-album-cc .mod__move-container h2 {
    background-color: rgba(0, 0, 0, 0.3);
    background-color: rgb(0 0 0 / 65%);
    font-size: 17px;
    padding: 5px;
    float: left;
    clear: left;
    color:var(--brand_color)
}
.mod-album-cc .mod__move-container .mod__meta-top {
    background-color: rgb(0 0 0 / 65%);
    color: #fff;
    margin-bottom: 2px;
    font-size: 14px;
    padding: 2px 5px;
    float: left;
    clear: left;
    opacity: 1;
}

/* Events
= -------------------------------- */
.mod__event-date {
    font-weight: 400;
    display: inline-block;
    line-height: 150%;
    color: #fff;
    min-width: 60px;
    border: 1px solid #fff;
    border-radius: 5px;
    text-align: center;
    padding: 4px;
}
.mod__event-day {
    font-size: 38px;
    line-height: 1;
}
.mod__event-date-inner {
    display: block;
}
.mod__event-month {
    display: block;
    font-size: 16px;
}
.mod__event-year {
    display: block;
    font-size: 16px;
}
.mod-event-minimal .mod__event-date {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 3;
    -webkit-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
    -o-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
    transition: all cubic-bezier(.4, 0, .2, 1) .4s;
}
.mod-event-minimal:hover .mod__event-date {
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
}
.mod-event-minimal .mod__event-day {
    font-size: 28px
}
.mod-event-minimal .mod__event-month,
.mod-event-minimal .mod__event-year {
    font-size: 14px
}
/* List */
.mod-event-list .mod__event-date {
    border: 0;
    color: var(--base_color);
    padding: 0;
}
.mod-event-list .mod__event-date-inner {
    display: inline-block;
    margin-left: 10px;
}
.mod-event-list .mod__event-day {
    font-size: 58px;
    -webkit-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
    -o-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
    transition: all cubic-bezier(.4, 0, .2, 1) .4s;
}
.mod-event-list:hover .mod__event-day {
    color: var(--brand_color2)
}
.mod-event-list .mod__event-month,
.mod-event-list .mod__event-year {
    font-size: 14px
}
.location-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    position: relative;
    top: 2px;
    background: transparent url(assets/images/location-outline.svg) center center no-repeat;
}
.location-icon--white {
    background: transparent url(assets/images/location-outline-white.svg) center center no-repeat;
}

/*  Event - Simple Grid
 = -------------------------------- */
.mod-event-simple {
    margin-bottom: 40px;
}
.mod-event-simple .mod__meta {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
    z-index: 3;
    color: #fff;
    transform: translateY(0);
    pointer-events: none;
    opacity: 1
}
.mod-event-simple .mod__image {
    margin-bottom: 20px;
}
.mod-event-simple .mod__meta-top {
    font-size: 16px;
    margin-bottom: 5px;
    position: relative;
}
.mod-event-simple .mod__title {
    z-index: 2;
    position: relative;
}
.mod-event-simple .mod__title h2 {
    margin-bottom: 0;
}
.mod-event-simple .mod__meta-top-link {
    font-size: 16px;
    font-weight: 400;
}
.mod-event-simple .mod__meta-top-link .wave-anim {
    display: inline-block;
    width: 40px;
    height: 22px;
    margin-right: 10px;
    position: relative;
}
.mod-event-simple .mod__meta-top-link .wave-anim:after {
    background-position: center;
}
.mod-event-simple .mod__meta-top-content {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
    -o-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
    transition: all cubic-bezier(.4, 0, .2, 1) .4s;
}
.mod-event-simple .mod__meta-top-link {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
    -webkit-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
    -o-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
    transition: all cubic-bezier(.4, 0, .2, 1) .4s;
}
.mod-event-simple .mod__meta-top-link a {
    display: inline-flex;
    justify-content: center
}
.mod-event-simple:hover .mod__meta-top-content {
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
}
.mod-event-simple:hover .mod__meta-top-link {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
}
/* Boxed */
.mod-event-simple--boxed .mod__image {
    margin-bottom: 0;
}
.mod-event-simple--boxed .mod__details {
    padding: 40px;
    background-color: var(--gray_1);
    border-radius: 5px;
}
.mod-event-simple--boxed.mod--is-image .mod__image {
    -webkit-border-bottom-right-radius: 0px;
    border-bottom-right-radius: 0px;
    -webkit-border-bottom-left-radius: 0px;
    border-bottom-left-radius: 0px;
}
.mod-event-simple--boxed.mod--is-image .mod__details {
    -webkit-border-top-right-radius: 0px;
    border-top-right-radius: 0px;
    -webkit-border-top-left-radius: 0px;
    border-top-left-radius: 0px;
}

/*  Event - Minimal 
 = -------------------------------- */
.mod-event-minimal {
    margin-bottom: 40px;
    transition: filter 0.5s ease;
}
.mod-event-minimal:hover {
/*     filter: drop-shadow(0px 5px 28px rgb(22 21 25 / 30%)); */
}
.mod-event-minimal .mod__meta {
    position: absolute;
    left: 110px;
    right: 30px;
    bottom: 40px;
    z-index: 3;
    color: #fff;
    transform: translateY(0);
    pointer-events: none
}
.mod-event-minimal .mod__meta-top {
    opacity: 1;
}
.mod-event-minimal .mod__title h2 {
    margin-bottom: 0;
}
.mod-event-minimal .mod__title h2 a {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
}
.mod-event-minimal .mod__overlay {
    opacity: 1;
}
.mod-event-minimal:hover .mod__overlay {
    opacity: 0;
}
.mod-event-minimal .mod__meta {
    opacity: 1;
}
.mod-event-minimal:hover .mod__meta {
    transform: translateY(50px);
    opacity: 0
}
.mod-event-minimal.mod--no-image .mod__image-holder {
    height: 300px;
    background-color: var(--gray_3);
}

/* Event - List
= -------------------------------- */
.mod-event-list .mod__inner {
    border-bottom: 1px solid rgba(136, 136, 136, .2);
    padding-top: 40px;
    padding-bottom: 40px;
    position: relative;
    /*     background:transparent url(assets/images/wave-line-4.svg) left bottom repeat-x; */
}
.grid-row .mod-event-list:last-child .mod__inner {
    border-bottom: 0;
    margin-bottom: 40px;
}
.mod-event-list .mod__meta-top {
    position: relative
}
.mod-event-list .mod__title {
    position: relative;
    z-index: 3;
}
.mod-event-list .mod__title h2 {
    font-size: 32px;
}
@media (max-width: 575.98px) {
    .mod-event-list .mod__title h2 {
        font-size: 24px;
    }
}
.mod-event-list a.btn-tickets {
    font-weight: 500;
}
.mod-event-list a.btn-tickets .ion {
    display: none;
}
.mod-event-list .mod__meta-top-content {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
    -o-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
    transition: all cubic-bezier(.4, 0, .2, 1) .4s;
}
.mod-event-list .mod__meta-top-link {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
    -webkit-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
    -o-transition: all cubic-bezier(.4, 0, .2, 1) .4s;
    transition: all cubic-bezier(.4, 0, .2, 1) .4s;
}
.mod-event-list .mod__meta-top-link a {
    display: inline-flex;
    justify-content: center
}
.mod-event-list:hover .mod__meta-top-content {
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0;
}
.mod-event-list:hover .mod__meta-top-link {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
}
@media (max-width: 575.98px) {
    .mod-event-list .mod__meta-top-link,
    .mod-event-list:hover .mod__meta-top-content,
    .mod-event-list:hover .mod__meta-top-link {
        position: relative;
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}

/* -------------------------------------------
   Blocks
= ----------------------------------------- */

/* Loop Header
= -------------------------------- */
.loop-header {
    line-height: 1;
    display: flex;
    justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
}
@media (max-width: 575.98px) {
    .loop-header {
        display: block
    }
}

/* Heleprs
= -------------------------------- */
.load-more {
    display: inline-flex;
    /* V Center */
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}
.load-more .icon {
    transform: rotate(-45deg)
}
.load-more .caption {
    display: inline-block;
    margin-left: 16px;
    font-weight: 600;
}
.loaded>.load-more {
    display: none;
}
.loading>.load-more .icon {
    transform-origin: center;
    animation: rotating 1s linear infinite;
    -webkit-animation: rotating 1s linear infinite;
}
.ajax-options {
    display: none;
}

/* Page Status
= -------------------------------- */
.page-status {
    flex-grow: 1;
    margin-bottom: 40px;
}
@media (max-width: 575.98px) {
    .page-status {
        margin-bottom: 20px;
    }
}
.page-status span {
    position: relative;
    z-index: 1;
}
.page-status__to:after,
.page-status__total:after {
    content: "";
    position: absolute;
    left: -5px;
    width: 20px;
    height: 20px;
    top: 2px;
    border-radius: 100%;
    background-color: var(--brand_color2);
    z-index: -1;
    opacity: 0;
}
.page-status__to.updated:after,
.page-status__total.updated:after {
    opacity: 1;
    -webkit-animation: boom-2 1.2s cubic-bezier(.4, 0, .2, 1) forwards;
    animation: boom-2 1.2s cubic-bezier(.4, 0, .2, 1) forwards;
}
.page-status__to:after {}
.page-status__total:after {}

/* Filters
= -------------------------------- */
.ajax-filters {
    margin-bottom: 40px;
}
.ajax-filter {
    margin-left: 20px;
}
@media (max-width: 575.98px) {
    .ajax-filter {
        margin-left: 0;
        margin-right: 10px;
        display: block;
        margin-bottom: 10px;
    }
}

/* -------------------------------------------
   21. Components
= ----------------------------------------- */

/* Parallax
= -------------------------------- */
.parallax-img {
    transform: scale(1.2);
}
.ph-fi .parallax-img {}

/* Image Featured
= -------------------------------- */
.img-featured figcaption {
    font-size: 14px;
    color: var(--base_color2);
}

/* Responsive Iframe
= -------------------------------- */
.resp-container {
    margin-bottom: 20px;
}
.resp-container__holder {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}
.ratio-4by3 {
    padding-top: 75%;
    /* 4:3 Aspect Ratio */
}
.ratio-3by2 {
    padding-top: 66.66%;
    /* 3:2 Aspect Ratio */
}
.ratio-8by5 {
    padding-top: 62.5%;
    /* 8:5 Aspect Ratio */
}
.ratio-1by1 {
    padding-top: 100%;
    /* 1:1 Aspect Ratio */
}
.resp-container__holder>iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 5px;
}
.resp-container__caption {
    font-size: 14px;
    color: var(--base_color2);
    margin-top: 5px;
}

/* Messages
 = -------------------------------- */
.message {
    padding: 5px 30px;
    background-color: var(--brand_color2);
    color: #fff;
    display: inline-block;
    border-radius: 5px;
}

/* Mini Image
= -------------------------------- */
.mini-image {
    overflow: hidden;
}
.mini-image__filter {
    filter: blur(20px);
    z-index: 1;
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.mini-image__new {
    z-index: 2;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0;
    height: 100%;
    transition: opacity 0.5s ease;
}
.mini-image--appear .mini-image__new {
    opacity: 1;
}
.mini-image--done .mini-image__filter {
    visibility: hidden;
    filter: none;
}
.mini-image img {
    min-width:100%;
}


/* Select 
= -------------------------------- */
.dropdown-select {
    display: inline-block;
    position: relative;
    cursor: pointer;
    z-index: 20;
}
.dropdown-select .select-title {
    display: block;
    padding: 12px 16px;
    position: relative;
    z-index: 2;
    width: 160px;
    overflow: hidden;
    background-color: var(--dark_color);
/*     border-bottom: 1px solid var(--gray_2); */
    font-size: 14px;
    font-weight: 600;
    border-radius:3px;
    color: #fff;
}
.active-filter.dropdown-select .select-title {
    color:var(--base_color);
    background-color:var(--brand_color)
}
.dropdown-select.active .select-title {
     background-color: var(--dark_color);
     color:#fff;
}
.dropdown-select .select-title:hover {
    text-decoration: none;
}
.dropdown-select i.icon {
    width: auto;
    height: auto;
    padding: 0;
    margin-left: 5px;
    font-size: 16px;
    vertical-align: -2px;
    display: inline-block;
    line-height: 16px;
    position: relative;
    top: 12px;
    right: 14px;
    position: absolute;
    -webkit-transform-origin: 45% 45%;
    -ms-transform-origin: 45% 45%;
    transform-origin: 45% 45%;
    -webkit-transition: -webkit-transform .15s ease-in-out;
    transition: -webkit-transform .15s ease-in-out;
    -o-transition: transform .15s ease-in-out;
    transition: transform .15s ease-in-out;
    transition: transform .15s ease-in-out, -webkit-transform .15s ease-in-out;
}
.dropdown-select .select-menu {
    background: #ffffff;
    position: absolute;
    font-weight: normal;
    min-width: 160px;
    max-height: 304px;
    overflow-y: auto;
    left: 0px;
    top: 0px;
    opacity: 0;
    visibility: hidden;
    list-style: none;
    text-align: left;
    border-radius: 3px;
    font-size: 14px;
    -webkit-transition-property: width, opacity, visibility, top;
    -o-transition-property: width, opacity, visibility, top;
    transition-property: width, opacity, visibility, top;
    -webkit-transition-duration: 0s, .1s, .1s;
    -o-transition-duration: 0s, .1s, .1s;
    transition-duration: 0s, .1s, .1s;
    -webkit-transition-delay: .2s, 0s, 0s;
    -o-transition-delay: .2s, 0s, 0s;
    transition-delay: .2s, 0s, 0s;
    -webkit-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-box-shadow: 0 5px 29px rgba(0, 0, 0, 0.12);
    box-shadow: 0 5px 29px rgba(0, 0, 0, 0.12);
}
.dropdown-select .select-menu::-webkit-scrollbar {
    background: rgba(0, 0, 0, 0.1);
    width: 8px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}
.dropdown-select .select-menu::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    -webkit-border-radius: 4px;
    border-radius: 4px;
}
.dropdown-select .select-menu::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}
.dropdown-select .select-menu li {
    line-height: 1;
    padding: 0;
}
.dropdown-select .select-menu .icon {
    width: 20px;
    display: inline-block;
    text-align: center;
    margin-right: 4px;
}
.dropdown-select .select-menu a {
    width: 100%;
    height: 38px;
    line-height: 38px;
    padding: 0 15px;
    vertical-align: middle;
    color: var(--base_color2);
    white-space: nowrap;
    display: inline-block;
}
.dropdown-select .select-menu a:not(.filter-reset).is-active {
    font-weight:500;
    color:var(--base_color)
}
.dropdown-select .select-menu a:hover {
    background: #f3f3f3;
    cursor: pointer;
    text-decoration: none;
}
.dropdown-select.active .select-title .icon {
    -webkit-transform: rotateZ(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotateZ(-180deg);
}
.dropdown-select.active .select-menu {
    top: 40px;
    opacity: 1;
    visibility: visible;
    -webkit-transition-delay: 0s, 0s, 0s;
    -o-transition-delay: 0s, 0s, 0s;
    transition-delay: 0s, 0s, 0s;
}

/* Buttons
= -------------------------------- */
/*Holder*/
.buttons-holder {
    margin-bottom: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.buttons-holder--center {
    -webkit-justify-content: center;
    justify-content: center;
}
/* Default button */
input[type="submit"],
button,
.btn {
    background-color: var(--btn_bg_color);
    color: var(--btn_color);
    font-weight: 600;
    padding: 10px 18px;
    text-decoration: none;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid transparent;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    font-size:15px;
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
input[type="submit"]:hover,
button:hover,
.btn:hover {
    color: var(--btn_hov_color);
    background-color: var(--btn_hov_bg_color);
}

input[type="submit"].btn-alt,
button.btn-alt,
.btn-alt{
    color: var(--btn_hov_color);
    background-color: var(--btn_hov_bg_color);
}

input[type="submit"].btn-alt:hover,
button.btn-alt:hover,
.btn-alt:hover {
    background-color: var(--btn_bg_color);
    color: var(--btn_color);
}
.btn-small {
    padding: 4px 12px;
    font-size: 14px;
}


/* Circle Button
= -------------------------------- */
.btn-circle {
    color: var(--base_color);
    position: relative;
    z-index: 10;
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    /* V Center */
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    /* H Center */
    -webkit-justify-content: center;
    justify-content: center;
    border-radius:100%;
}
.btn-circle:hover {
    background-color:var(--brand_color);
}
.bg-dark .btn-circle,
.bg-dark.btn-circle {
    color: #fff;
}
.bg-dark .btn-circle:hover,
.bg-dark.btn-circle:hover {
    color: var(--base_color);
}
.btn-circle:after {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: var(--base_color);
    border-radius: 100%;
    opacity: 0.05
}
.bg-dark .btn-circle:after,
.bg-dark.btn-circle:after {
    background-color: #fff;
}
.btn-circle svg {
}
.btn-circle i, .btn-circle .ion {
    line-height: 50px;
    font-size: 28px;
    text-align: center;
    position: relative;
    color: var(--base_color);
    cursor: pointer;
    outline: 0;
}
.bg-dark .btn-circle i, .bg-dark .btn-circle .ion,
.bg-dark.btn-circle i, .bg-dark.btn-circle .ion {
    color: #fff;
}
.bg-dark .btn-circle:hover svg,
.bg-dark.btn-circle:hover i, .bg-dark.btn-circle:hover .ion {
    color: var(--base_color);
}
.btn-circle svg,
.btn-circle svg path {
/*     fill: var(--base_color); */
}
.bg-dark .btn-circle svg,
.bg-dark.btn-circle svg {
    fill: #fff;
}
.bg-dark .btn-circle:hover svg,
.bg-dark.btn-circle:hover svg {
    fill: var(--base_color);
}
.btn-circle .ion, .btn-circle i, .btn-circle:before {
    height: 50px;
    width: 50px;
    z-index: 1;
    font-size:30px;
    -webkit-transition: all cubic-bezier(.4, 0, .2, 1) .5s;
    -o-transition: all cubic-bezier(.5, 0, .2, 1) .4s;
}

/* Slide Button
= -------------------------------- */
.btn-slide {
    display: inline-block;
    display: inline-flex;
    overflow: hidden;
}
.btn-slide span {
    line-height:2;
}
.btn-slide .icon {
    font-size: 34px;
    position: relative;
}
.btn-slide.icon-on-right .icon {
    margin-left: 10px;
}
.btn-slide:hover .icon:before {
    -webkit-animation: slideIcon ease-out 0.3s;
    animation: slideIcon ease-out 0.3s;
}
@-webkit-keyframes slideIcon {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
    51% {
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
        opacity: 1;
    }
    52% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
    53% {
        opacity: 0;
    }
    54% {
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}
@keyframes slideIcon {
    0% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
    51% {
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
        opacity: 1;
    }
    52% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
    53% {
        opacity: 0;
    }
    54% {
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

/* Wave Anim
= -------------------------------- */
.wave-anim:after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 20 4'%3E%3Cstyle type='text/css'%3E.squiggle{animation:shift .3s linear infinite;}@keyframes shift {from {transform:translateX(0);}to {transform:translateX(-20px);}}%3C/style%3E%3Cpath fill='none' stroke='%23141414' stroke-width='2' class='squiggle' d='M0,3.5 c 5,0,5,-3,10,-3 s 5,3,10,3 c 5,0,5,-3,10,-3 s 5,3,10,3'/%3E%3C/svg%3E");
    background-position: bottom;
    background-repeat: repeat-x;
    background-size: 20px;
    border-bottom: 0;
    text-decoration: none;
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    height: 20px;
    width: 100%;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.wave-anim:after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 20 4'%3E%3Cstyle type='text/css'%3E.squiggle{animation:shift .3s linear infinite;}@keyframes shift {from {transform:translateX(0);}to {transform:translateX(-20px);}}%3C/style%3E%3Cpath fill='none' stroke='%23161519' stroke-width='2' class='squiggle' d='M0,3.5 c 5,0,5,-3,10,-3 s 5,3,10,3 c 5,0,5,-3,10,-3 s 5,3,10,3'/%3E%3C/svg%3E");
    background-position: center;
    opacity: 1;
}

/* Wave Line
= -------------------------------- */
.wave-line {
    background-color:#141414;
    height: 2px;
    position:relative;
    transition: background 0.3s ease;
}
.wave-line:after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 20 4'%3E%3Cstyle type='text/css'%3E.squiggle{animation:shift .3s linear infinite;}@keyframes shift {from {transform:translateX(0);}to {transform:translateX(-20px);}}%3C/style%3E%3Cpath fill='none' stroke='%23141414' stroke-width='2' class='squiggle' d='M0,3.5 c 5,0,5,-3,10,-3 s 5,3,10,3 c 5,0,5,-3,10,-3 s 5,3,10,3'/%3E%3C/svg%3E");
    background-position: bottom;
    background-repeat: repeat-x;
    background-size: 20px;
    border-bottom: 0;
    text-decoration: none;
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    height: 20px;
    width: 100%;
    opacity:0;
    transition: opacity 0.3s ease;
}
.bg-dark .wave-line {
     background-color:#fff;
}
.bg-dark .wave-line:after {
     background-image: url("data:image/svg+xml;charset=utf8,%3Csvg id='squiggle-link' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:ev='http://www.w3.org/2001/xml-events' viewBox='0 0 20 4'%3E%3Cstyle type='text/css'%3E.squiggle{animation:shift .3s linear infinite;}@keyframes shift {from {transform:translateX(0);}to {transform:translateX(-20px);}}%3C/style%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='2' class='squiggle' d='M0,3.5 c 5,0,5,-3,10,-3 s 5,3,10,3 c 5,0,5,-3,10,-3 s 5,3,10,3'/%3E%3C/svg%3E");
}

/* Curve Line
= -------------------------------- */
.c-line {
    background-repeat: repeat-x;
    background-image: url("data:image/svg+xml,%3Csvg width='48' height='3' viewBox='0 0 48 3' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M43.9378 0L48 1L48 3L43.7367 2L40.0166 3L39.5139 3L35.7938 2L32.0736 3H31.5709L27.8508 2L24.1306 3H23.6279L19.9078 2L16.1876 3H15.6849L11.9648 2L8.24466 3H7.74194L4.02181 2L7.32824e-06 3L4.91287e-05 1L3.72018 0L4.2229 0L7.94303 1L11.6632 0L12.1659 0L15.886 1L19.6061 0L20.1089 0L23.829 1L27.5491 0L28.0519 0L31.772 1L35.4921 0L35.9948 0L39.715 1L43.4351 0L43.9378 0Z' fill='%23161519'/%3E%3C/svg%3E%0A");
    width: auto;
    height: 3px;
}
.c-line--light {
    background-image: url("data:image/svg+xml,%3Csvg width='48' height='3' viewBox='0 0 48 3' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M43.9378 0L48 1L48 3L43.7367 2L40.0166 3L39.5139 3L35.7938 2L32.0736 3H31.5709L27.8508 2L24.1306 3H23.6279L19.9078 2L16.1876 3H15.6849L11.9648 2L8.24466 3H7.74194L4.02181 2L7.32824e-06 3L4.91287e-05 1L3.72018 0L4.2229 0L7.94303 1L11.6632 0L12.1659 0L15.886 1L19.6061 0L20.1089 0L23.829 1L27.5491 0L28.0519 0L31.772 1L35.4921 0L35.9948 0L39.715 1L43.4351 0L43.9378 0Z' fill='%23999999'/%3E%3C/svg%3E%0A");
}
.bg-dark .c-line {
    opacity: 0.8;
    background-image: url("data:image/svg+xml,%3Csvg width='48' height='3' viewBox='0 0 48 3' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M43.9378 0L48 1L48 3L43.7367 2L40.0166 3L39.5139 3L35.7938 2L32.0736 3H31.5709L27.8508 2L24.1306 3H23.6279L19.9078 2L16.1876 3H15.6849L11.9648 2L8.24466 3H7.74194L4.02181 2L7.32824e-06 3L4.91287e-05 1L3.72018 0L4.2229 0L7.94303 1L11.6632 0L12.1659 0L15.886 1L19.6061 0L20.1089 0L23.829 1L27.5491 0L28.0519 0L31.772 1L35.4921 0L35.9948 0L39.715 1L43.4351 0L43.9378 0Z' fill='%23ffffff'/%3E%3C/svg%3E%0A");
}
.c-line--divider {
    display: block;
    margin-bottom: 10px;
}

/* App Cursor
= -------------------------------- */
#cursor {
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.is-mobile #cursor, .is-touch #cursor {
    display: none;
}
.cursor__body {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    border: 1px solid;
    border-color: transparent;
    transition: all 0.3s ease;
}
.cursor__body:before,
.cursor__body:after {
    content: '';
    border-color: inherit;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    transition: all 0.3s ease;
}
.cursor__body:before {
    background-color: var(--brand_color);
    opacity: .8
}
@keyframes pulsar {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}
@-webkit-keyframes pulsar {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes boom {
    0% {
        -webkit-box-shadow: 0 0 0 0 var(--brand_color);
        box-shadow: 0 0 0 0 var(--brand_color2);
        opacity: 1
    }
    100% {
        -webkit-box-shadow: 0 0 0 15px var(--brand_colo2r);
        box-shadow: 0 0 0 15px var(--brand_color);
        opacity: 0
    }
}
@-webkit-keyframes boom {
    0% {
        background: var(--brand_color);
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1
    }
    100% {
        background: var(--brand_color);
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0
    }
}
@keyframes boom-dark {
    0% {
        -webkit-box-shadow: 0 0 0 0 var(--dark_color);
        box-shadow: 0 0 0 0 var(--dark_color);
        opacity: 1
    }
    100% {
        -webkit-box-shadow: 0 0 0 15px var(--dark_color);
        box-shadow: 0 0 0 15px var(--dark_color);
        opacity: 0
    }
}
@-webkit-keyframes boom-dark {
    0% {
        background: var(--dark_color);
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1
    }
    100% {
        background: var(--dark_color);
        -webkit-transform: scale(1.5);
        transform: scale(1.5);
        opacity: 0
    }
}
@keyframes boom-2 {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1
    }
    100% {
        -webkit-transform: scale(3);
        transform: scale(3);
        opacity: 0
    }
}
@-webkit-keyframes boom-2 {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1
    }
    100% {
        -webkit-transform: scale(3);
        transform: scale(3);
        opacity: 0
    }
}

/* Hover
= -------------------------------- */
#cursor.hover .cursor__body {
    transform:scale(2);
    
}
#cursor.hover {
  
}
#cursor.hover .cursor__body:before {
    opacity: 0
}

/* Click
= -------------------------------- */
#cursor.click .cursor__body {
    transform:scale(2);
    opacity:0;
}
#cursor.click {
    border:0;
}
#cursor.click .cursor__body:before {
    opacity:0;
    border:0
}

/* Magnet
= -------------------------------- */
#cursor.magnet .cursor__body {
    border-color: var(--brand_color);
}
#cursor.magnet .cursor__body:before {
    opacity: 0
}
#cursor.magnet .cursor__body:after {
    -webkit-animation: boom 1.2s 1s cubic-bezier(.4, 0, .2, 1) infinite;
    animation: boom 1.2s 1s cubic-bezier(.4, 0, .2, 1) infinite;
}

/* Loading
= -------------------------------- */
.ax--loading .cursor__body:after {
    -webkit-animation: boom 1.2s 1s cubic-bezier(.4, 0, .2, 1) infinite;
    animation: boom 1.2s 1s cubic-bezier(.4, 0, .2, 1) infinite;
}


/* Close / Click 
= -------------------------------- */

/* Close */
html:not(.ax--loading) #cursor.close .cursor__body-inner:after {
    content: "\e641";
    font-family: "icomoon";
    font-size: 18px;
    color: #fff;
    position: absolute;
    left: 5px;
    top: 0px;
}
/* Click */
html:not(.ax--loading) #cursor.click .cursor__body-inner:after {
    content: "\e641";
    font-family: "icomoon";
    font-size: 18px;
    color: #fff;
    position: absolute;
    transform: rotate(45deg);
    left: 5px;
    top: 0px;
}
html:not(.ax--loading) #cursor.close .cursor__body-inner, html:not(.ax--loading) #cursor.click .cursor__body-inner, html:not(.ax--loading) #cursor.hover-img .cursor__body-inner {
    opacity: 1;
}

/* -------------------------------------------
    22. FX
= ----------------------------------------- */


/* Wave
= -------------------------------- */ 
.footer-wave {
    -webkit-transform: scaleY(.6);
    -moz-transform: scaleY(.6);
    -ms-transform: scaleY(.6);
    -o-transform: scaleY(.6);
    transform: scaleY(.6);
    -webkit-transform-origin: 50% 100%;
    -moz-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    -o-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    margin-bottom:-20px;
    z-index:2;
    position:relative;
}
.no-footer .footer-wave,
.fs-footer .footer-wave {
    display:none;
}
.small-wave {
    overflow:visible;
    -webkit-transform: translate(0,0);
    -moz-transform: translate(0,0);
    -ms-transform: translate(0,0);
    -o-transform: translate(0,0);
    transform: translate(0,0);
}
.wave-holder {
	position: relative;
}


/* Appear
= -------------------------------- */
.is-scroll-animations .appear-from-bottom {
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
    -webkit-transition: opacity 1.5s ease-out, -webkit-transform 1.5s cubic-bezier(.17, .96, .33, .99);
    transition: opacity 1.5s ease-out, -webkit-transform 1.5s cubic-bezier(.17, .96, .33, .99);
    -o-transition: transform 1.5s cubic-bezier(.17, .96, .33, .99), opacity 1.5s ease-out;
    transition: transform 1.5s cubic-bezier(.17, .96, .33, .99), opacity 1.5s ease-out;
    transition: transform 1.5s cubic-bezier(.17, .96, .33, .99), opacity 1.5s ease-out, -webkit-transform 1.5s cubic-bezier(.17, .96, .33, .99)
}
.is-scroll-animations.is-visible .appear-from-bottom.done {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1
}

/* Appear
= -------------------------------- */
.is-scroll-animations .appear-opacity {
    opacity: 0;
    -webkit-transition: opacity 1.5s ease-out;
    transition: opacity 1.5s ease-out;
}
.is-scroll-animations.is-visible .appear-opacity.done {
    opacity: 1
}

/* Slide Text UP
= -------------------------------- */
.slide-text-up {
    overflow: hidden;
    position: relative;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}
.slide-text-up__text {
    -webkit-transition: all .8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
    transition: all .8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.2s;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    display: inline-block;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
}
.is-visible .slide-text-up.done .slide-text-up__text {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

/* Text FX
= -------------------------------- */
.fx-text .char {
    display: inline-block;
    position: relative;
    z-index: 1;
}
.fx-text-word p {
    display: inline-block;
    overflow: hidden;
    margin-right: 10px;
    margin-bottom: 0;
    line-height: 130%;
    vertical-align: top;
    word-break: break-all;
}
.fx-text-word p span {
    display: inline-block;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}

/* -------------------------------------------
   22. Animations 
= ----------------------------------------- */
@-webkit-keyframes rotating {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}
.rotating {
    -webkit-animation: rotating 2s linear infinite;
}
@-webkit-keyframes appear {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes appear {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.opacity-appear {
    animation: appear normal 0.3s ease-out forwards;
    -webkit-animation: appear normal 0.3s ease-out forwards;
}
@-webkit-keyframes disappear {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
@keyframes disappear {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
.opacity-disappear {
    animation: disappear normal 0.3s ease-out forwards;
    -webkit-animation: disappear normal 0.3s ease-out forwards;
}
@-webkit-keyframes appear_t {
    from {
        opacity: 0;
        transform: translate(40px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(0px) scale(1);
    }
}
@keyframes appear_t {
    from {
        opacity: 0;
        transform: translate(40px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(0px) scale(1);
    }
}
.opacity-appear_t {
    transform-origin: left;
    animation: appear_t normal 0.3s ease-out forwards;
    -webkit-animation: appear_t normal 0.3s ease-out forwards;
}
@-webkit-keyframes disappear_t {
    from {
        opacity: 1;
        transform: translate(0px) scale(1);
    }
    to {
        opacity: 0;
        transform: translate(40px) scale(0.9);
    }
}
@keyframes disappear_t {
    from {
        opacity: 1;
        transform: translate(0px) scale(1);
    }
    to {
        opacity: 0;
        transform: translate(40px) scale(0.9);
    }
}
.opacity-disappear_t {
    transform-origin: left;
    animation: disappear normal 0.3s ease-out forwards;
    -webkit-animation: disappear normal 0.3s ease-out forwards;
}
@-webkit-keyframes rotate {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}
@keyframes rotate {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}
/* Spin */
@keyframes anim__spin {
    0% {
        transform: rotate(0deg)
    }
    100% {
        transform: rotate(-360deg)
    }
}
@-webkit-keyframes anim__spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg)
    }
}
/* Blink */
@keyframes blink {
    0% {
        opacity: 1
    }
    50% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}
@-webkit-keyframes blink {
    0% {
        opacity: 1
    }
    50% {
        opacity: 0.5
    }
    100% {
        opacity: 1
    }
}
.blink {
    animation: blink normal 0.5s infinite ease-in-out;
    -webkit-animation: blink normal 0.5s infinite ease-in-out;
}
/* Position Up */
@-webkit-keyframes anim-pos-up {
    0% {
        -webkit-transform: matrix(1, 0, 0, 1, 0, 0) translate(0%, 0%);
        transform: matrix(1, 0, 0, 1, 0, 0) translate(0%, 0%)
    }
    30% {
        -webkit-transform: matrix(1, -0.15, 0.15, 1, 0, 0) translate(0%, -160%);
        transform: matrix(1, -0.15, 0.15, 1, 0, 0) translate(0%, -160%)
    }
    30.1% {
        -webkit-transform: matrix(1, 0.15, 0.15, 1, 0, 0) translate(0%, 100%);
        transform: matrix(1, 0.15, 0.15, 1, 0, 0) translate(0%, 100%)
    }
    100% {
        -webkit-transform: matrix(1, 0, 0, 1, 0, 0) translate(0%, 0%);
        transform: matrix(1, 0, 0, 1, 0, 0) translate(0%, 0%)
    }
}
@keyframes anim-pos-up {
    0% {
        -webkit-transform: matrix(1, 0, 0, 1, 0, 0) translate(0%, 0%);
        transform: matrix(1, 0, 0, 1, 0, 0) translate(0%, 0%)
    }
    30% {
        -webkit-transform: matrix(1, -0.15, 0.15, 1, 0, 0) translate(0%, -130%);
        transform: matrix(1, -0.15, 0.15, 1, 0, 0) translate(0%, -130%)
    }
    30.1% {
        -webkit-transform: matrix(1, 0.15, 0.15, 1, 0, 0) translate(0%, 100%);
        transform: matrix(1, 0.15, 0.15, 1, 0, 0) translate(0%, 100%)
    }
    100% {
        -webkit-transform: matrix(1, 0, 0, 1, 0, 0) translate(0%, 0%);
        transform: matrix(1, 0, 0, 1, 0, 0) translate(0%, 0%)
    }
}

/* Delay
= -------------------------------- */
.is-visible .delay,
.is-visible .delay-1 {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}
.is-visible .delay-2 {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
.is-visible .delay-3 {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}
.is-visible .delay-4 {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}
.is-visible .delay-5 {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}
.is-visible .delay-6 {
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
}
.is-visible .delay-7 {
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
}
.is-visible .delay-8 {
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
}
.is-visible .delay-9 {
    -webkit-transition-delay: 0.9s;
    transition-delay: 0.9s;
}
.is-visible .delay-10 {
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
}
.is-visible .delay-11 {
    -webkit-transition-delay: 1.1s;
    transition-delay: 1.1s;
}
.is-visible .delay-12 {
    -webkit-transition-delay: 1.2s;
    transition-delay: 1.2s;
}
.is-visible .delay-13 {
    -webkit-transition-delay: 1.3s;
    transition-delay: 1.3s;
}
.is-visible .delay-14 {
    -webkit-transition-delay: 1.4s;
    transition-delay: 1.4s;
}
.is-visible .delay-15 {
    -webkit-transition-delay: 1.5s;
    transition-delay: 1.5s;
}
.is-visible .delay-16 {
    -webkit-transition-delay: 1.6s;
    transition-delay: 1.6s;
}
.is-visible .delay-17 {
    -webkit-transition-delay: 1.7s;
    transition-delay: 1.7s;
}
.is-visible .delay-18 {
    -webkit-transition-delay: 1.8s;
    transition-delay: 1.8s;
}
.is-visible .delay-19 {
    -webkit-transition-delay: 1.9s;
    transition-delay: 1.9s;
}
.is-visible .delay-20 {
    -webkit-transition-delay: 2s;
    transition-delay: 2s;
}