@charset "utf-8";

@font-face {
  font-family:"Quasimoda Regular";
  font-weight: normal; 
  font-style: normal;
  font-display:swap;
  unicode-range: U+000-5FF;
  src: local('Quasimoda Regular'),
    url('../fonts/Quasimoda-Regular.woff') format('woff'),
    url('../fonts/Quasimoda-Regular.woff2') format('woff2');
}

@font-face {
  font-family:"Quasimoda Semibold";
  font-weight: normal; 
  font-style: normal;
  font-display:swap;
  unicode-range: U+000-5FF;
  src: local('Quasimoda Semibold'),
    url('../fonts/Quasimoda-Semibold.woff') format('woff'),
    url('../fonts/Quasimoda-Semibold.woff2') format('woff2');
}

/* ==============================
   Variables
   ============================== */
  
:root{
    --font-global: 'Quasimoda Regular', sans-serif;
    --font-alt: 'Quasimoda Semibold', sans-serif;
    --font-serif: Georgia, 'Times New Roman', Times, serif;
    --main-margin-top: 85px;
    --full-wrapper-margin-x: 30px;
        --container-width: 1350px;
        --section-padding-y: 120px;
        --menu-bar-height: 85px;
        --menu-bar-height-scrolled: 65px;
        --color-primary: #3e4042;   
        --color-hover: #78797a;
        --color-green: #94b7b6;
        --color-red: #ee3f60;
        --color-blue: #abafd4;
        --color-yellow: #ebc453;
        --border-radius-default: 4px;
        --border-radius-large: 30px;
        --box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05),0px 1px 1px 0px rgba(0, 0, 0, 0.03),0px 3px 5px 0px rgba(0, 0, 0, 0.03);
        --box-shadow-strong: 0px 5px 10px 0px rgba(0, 0, 0, 0.08),0px 1px 1px 0px rgba(0, 0, 0, 0.06),0px 3px 5px 0px rgba(0, 0, 0, 0.06);
        --box-shadow-block: 0px 3px 50px 0px rgba(0, 0, 0, 0.05);
        --box-shadow-block-strong: 0px 3px 50px 0px rgba(0, 0, 0, 0.15);  
        --transition-default: all 0.27s cubic-bezier(0, 0, 0.58, 1);
        --ease-default: cubic-bezier(0, 0, 0.58, 1);
        --ease-out-long: cubic-bezier(0,.5,0,1);
        --ease-out-medium: cubic-bezier(0,.57,.55,1);
        --ease-out-short: cubic-bezier(.15,.7,.78,1);
        --ease-elastic-1: cubic-bezier(0.68,-0.55,0.27,1.55);
        --ease-elastic-2: cubic-bezier(0.68,-3,0.27,5);
    }
    .outside-box-right {
      margin-right: -30vw;
    }
    .outside-box-left {
      margin-left: -30vw;
    }
    @media (min-width: 992px) {
      .position-lg-absolute {
          position: absolute !important;
      }
    }
    
    /* ==============================
       Common styles
       ============================== */
      
    :root{
        scroll-behavior: auto;
    }
    html{
        -ms-overflow-style: scrollbar;
    }
    body{
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;    
    }
    main{
        overflow: clip;
        padding-top: var(--main-margin-top);
    }
    iframe{
        border: none;
    }
    a, b, div, ul, li{
        -webkit-tap-highlight-color: rgba(0,0,0,0); 
        -webkit-tap-highlight-color: transparent; 
        -moz-outline-: none;
    }
    a:focus:not(.focus-visible),
    a:active,
    section:focus,
    div:active,
    div:focus{
        -moz-outline: none;
        outline: none;
    }
    a:focus.focus-visible,
    button:focus.focus-visible,
    div:focus.focus-visible{
        -moz-outline: 3px dotted #36a367 !important;
        outline: 3px dotted #36a367 !important;
        outline-offset: 0 !important;
    }
    img:not([draggable]), embed, object, video{
        max-width: 100%;
        height: auto;
    }
    .image-fullwidth img{
        width: 100%;
        height: auto;
    }
    .min-height-80vh{
        min-height: 80vh;
    }
    .min-height-90vh{
        min-height: 90vh;
    }
    .min-height-100vh{
        min-height: 100vh !important;
        min-height: 100svh !important;
    }
    .align-center{ text-align:center !important; }
    .left{ float:left !important; }
    .right{ float:right !important; }
    .hidden{ display:none !important;}
    .relative{ position: relative !important;}
    .z-index-1{ z-index: 1 !important;}
    .z-index-n1{ z-index: -1 !important;}
    .no-hover{ cursor: default !important;}
    .wch-unset{ will-change: unset !important; }
    .color-white{ color: #fff !important; }
    .color-primary{ color: var(--color-primary) !important; }
    .color-green{ color: var(--color-green) !important; }
    .color-red{ color: var(--color-red) !important; }
    .color-blue{ color: var(--color-blue) !important; }
    .color-yellow{ color: var(--color-yellow) !important; }
    .color-fade {
      animation: changeTextColor 40s infinite;
    }
    @keyframes changeTextColor {
      0% {
        color: var(--color-green);
      }
      25% {
        color: var(--color-red);
      }
      50% {
        color: var(--color-blue);
      }
      75% {
        color: var(--color-yellow);
      }
      100% {
        color: var(--color-green);
      }
    }
    .opacity-003{ opacity: .03 !important; }
    .opacity-004{ opacity: .04 !important; }
    .opacity-005{ opacity: .05 !important; }
    .opacity-006{ opacity: .06 !important; }
    .opacity-007{ opacity: .07 !important; }
    .opacity-008{ opacity: .08 !important; }
    .opacity-009{ opacity: .09 !important; }
    .opacity-01{ opacity: .1 !important; }
    .opacity-015{ opacity: .15 !important; }
    .opacity-02{ opacity: .2 !important; }
    .opacity-025{ opacity: .25 !important; }
    .opacity-03{ opacity: .3 !important; }
    .opacity-035{ opacity: .35 !important; }
    .opacity-04{ opacity: .4 !important; }
    .opacity-045{ opacity: .45 !important; }
    .opacity-05{ opacity: .5 !important; }
    .opacity-055{ opacity: .55 !important; }
    .opacity-06{ opacity: .6 !important; }
    .opacity-065{ opacity: .65 !important; }
    .opacity-07{ opacity: .7 !important; }
    .opacity-075{ opacity: .75 !important; }
    .opacity-08{ opacity: .8 !important; }
    .opacity-085{ opacity: .85 !important; }
    .opacity-09{ opacity: .9 !important; }
    .opacity-095{ opacity: .95 !important; }
    .opacity-1{ opacity: 1 !important; }
    .size-13 { font-size: 13.5px !important; }
    .size-14{ font-size: 14px !important; }
    .size-15{ font-size: 15px !important; }
    .size-16{ font-size: 16px !important; }
    .size-17{ font-size: 17px !important; }
    .size-18{ font-size: 18px !important; }
    .size-19{ font-size: 19px !important; }
    .size-20{ font-size: 20px !important; }
    .size-22{ font-size: 22px !important; }
    .size-24{ font-size: 24px !important; }
    .size-32{ font-size: 32px !important; }
    .size-36{ font-size: 36px !important; }
    .size-44{ font-size: 44px !important; }
    .box-shadow{ box-shadow: var(--box-shadow-block) !important;}
    .box-shadow-strong{ box-shadow: var(--box-shadow-block-strong) !important;}
    .border-color-primary{
        border: 1px solid var(--color-primary);
    }
    .border-color-red{
        border: 1px solid var(--color-red);
    }
    .border-color-green{
        border: 1px solid var(--color-green);
    }
    .border-color-blue{
        border: 1px solid var(--color-blue);
    }
    .border-color-primary-light{
        border: 1px solid #e5e5e5;
    }
    .stick-fixed{
        position: fixed !important;
        top: 0;
        left: 0;
    }
    .block-sticky{
        position: sticky;
        top: calc(var(--menu-bar-height-scrolled) + 40px);
        left: 0;
    }
    .round{
        border-radius: var(--border-radius-default) !important;
    }
    .round-large{
        border-radius: var(--border-radius-large) !important;
    }
    .circle{
        border-radius: 100px !important;
    }
    .circle-large{
        border-radius: 700px !important;
    }
    .round.overflow-hidden,
    .round-large.overflow-hidden,
    .circle.overflow-hidden,
    .circle-large.overflow-hidden{
        isolation: isolate;
        transform: translateZ(0);
    }
    ::selection{
        color: #fff;
        background: var(--color-primary);
    }
    .animate, .animate *{
        transition: var(--transition-default);
    }
    .parallax-mousemove{
       transition: var(--transition-default);
       -moz-transition: none !important;
       will-change: transform;
    }
    .parallax-mousemove-follow{
        -moz-transition: none !important;
    }
    @media not all and (min-resolution:.001dpcm) { @media {
        .parallax-mousemove,
        .parallax-mousemove-follow{
           transition: none !important;
        }
    }}
    [data-rellax-x]{
        transition: transform 0.25s var(--ease-out-short);
        transition-delay: 0.0025s;
        will-change: transform;
    }
    [data-rellax-y]{
        transition: transform 0.25s cubic-bezier(0, 0, 0.58, 1);
        transition-delay: 0.0025s;
        will-change: transform;
    }
    .no-animate{    
        -webkit-transition-property: none !important;
        -moz-transition-property: none !important;
        -o-transition-property: none !important;
        transition-property: none !important; 
    }
    .clearlist, .clearlist li{
        list-style: none;
        padding: 0;
        margin: 0;
        background: none;
    }
    .clearlinks a{
        text-decoration: none;
        color: unset;
    }
    .clearlinks a:hover{
        color: unset !important;
    }
    .full-wrapper{
        margin: 0 var(--full-wrapper-margin-x);
    }
    .container{
        max-width: var(--container-width);
        padding: 0 30px;
    }
    .row:not(
    .g-0, .g-1, .g-2, .g-3, .g-4, .g-5,
    .gx-0, .gx-1, .gx-2, .gx-3, .gx-4, .gx-5,
    .gy-0, .gy-1, .gy-2, .gy-3, .gy-4, .gy-5){
        --bs-gutter-x: 30px;
    }
    .row.gx-huge{
        --bs-gutter-x: 276px;
    }
    .icon-ellipse{
        position: relative;
        top: -0.085em;
        display: inline-block;
        width: 12px;
        height: 12px;
        vertical-align: middle;
        background: currentColor;
        border-radius: 50%;
    }
    
    /* ==============================
       Page loader
       ============================== */
    
    .page-loader{
        display:block;
        width: 100%;
        height: 100%;
        position: fixed;
        top: 0;
        left: 0;
        background: #fefefe;
        z-index: 100000; 
    }
    .loader{
        width: 50px;
        height: 50px;
        position: absolute;
        top: 50%;
        left: 50%;
        margin: -25px 0 0 -25px;
        font-size: 10px;
        text-indent: -12345px;
        border-top: 1px solid rgba(0,0,0, 0.15);
        border-right: 1px solid rgba(0,0,0, 0.15);
        border-bottom: 1px solid rgba(0,0,0, 0.15);
        border-left: 1px solid rgba(0,0,0, .55);
        border-radius: 50%;
        animation: spinner 700ms infinite linear;
        will-change: transform;  
        z-index: 100001;
    }
    .page-loader.color .loader{
        border-color: var(--color-primary);
        border-left-color: var(--color-green);
    }
    @keyframes spinner {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    
    /* ==============================
     Video Plyr
     ============================== */
     
    .plyr__poster {
      background-size: cover;
    }
    .plyr__video-wrapper{ z-index: 0; }
    html {
        --plyr-color-main: var(--color-primary);
    }
    .plyr__control--overlaid {
        padding: 2rem;
    }
    .plyr__control svg {
        width: 20px;
        height: 20px;
    }
    .plyr__control--overlaid::before, .plyr__control--overlaid::after {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        border-radius: 50%;
        background: var(--color-primary);
        opacity: 0.8;
        animation: ripple-1 2s infinite ease-in-out;
        z-index: -1;
    }
    .plyr__control--overlaid::after, .btn-circle.ripple::after {
        opacity: 0.6;
        animation: ripple-2 2s infinite ease-in-out;
        animation-delay: 0.5s;
    }
    @keyframes ripple-1 {
        0% {
            transform: scale(1);
            opacity: 1;
        }
        100% {
            transform: scale(1.5);
            opacity: 0;
        }
    }
    @keyframes ripple-2 {
        0% {
            transform: scale(1);
            opacity: 1;
        }
        100% {
            transform: scale(1.7);
            opacity: 0;
        }
    }
    
    /* ==============================
       Typography
       ============================== */
      
    body{
        color: var(--color-primary);
        font-family: var(--font-global);
        font-size: 20px;
        letter-spacing: normal;
        line-height: 1.8; 
    }
    a{
        color: var(--color-primary);
        text-decoration: underline;
        transition: color 0.1s var(--ease-default);
    }
    a:hover{
        color: var(--color-primary);
        text-decoration: underline;
    }
    b, strong{
        font-family: var(--font-alt);
        font-weight: normal;
    }
    mark{
        position: relative;
        padding: 0;
        color: inherit;
        background-color: transparent;
        background-image: linear-gradient(90deg,rgba(17,17,17,.1) 0,rgba(17,17,17,.1) 100%);
        background-repeat: no-repeat;
        background-size: 100% .3em;
        background-position: 0 110%;
    }
    
    h1,h2,h3,h4,h5,h6,
    .h1,.h2,.h3,.h4,.h5,.h6,
    .superhead-sm, .superhead-md, .superhead-lg, .superhead-xl{
        font-family: var(--font-alt);
        line-height: 1.25;   
    }
    .superhead-sm { font-size: 50px; margin-bottom: 25px; }
    .superhead-md { font-size: 60px; margin-bottom: 30px; }
    .superhead-lg { font-size: 80px; margin-bottom: 40px; }
    .superhead-xl { font-size: 140px; margin-bottom: 70px; }
    h1, .h1 { font-size: 42px; }
    .h1 { margin-bottom: 0.7em; }
    h2, .h2 { font-size: 36px; }
    .h2 { margin-bottom: 0.7em; }
    h3, .h3 { font-size: 28px; }
    .h3 { margin-bottom: 0.5em; }
    h4, .h4 { font-size: 24px; }
    .h4 { margin-bottom: 0.4em; }
    h5, .h5 { font-size: 20px; }
    .h5 { margin-bottom: 0.3em; }
    h6, .h6{ font-size: 16px; }
    .h6 { margin-bottom: 0.2em; }
    p { margin: 0 0 0.75em 0; }
    .p-small-margin p, p.p-small-margin { margin: 0 0 0.5em 0; }
    .p-extra-small-margin p, p.p-extra-small-margin { margin: 0 0 0.25em 0; }
    .p-no-margin p, p.p-no-margin { margin: 0; }
    ul, ol{
        margin: 0 0 1.5em 0;
    }
    blockquote{
        margin: 0 0 2em 0;
        padding: 0;
        border: none;
        background: none;
        font-style: normal;
        line-height: 1.47;
    }
    blockquote p{
        position: relative;
        margin-bottom: 0.7em;
        font-style: normal;
    }
    blockquote footer{
        font-size: 15px;
    }
    .testimonial{
        position: relative;
        margin: 0 0 1.5em 0;
        padding-left: 1.9778em;
        border: none;
        background: none;
        font-size: 46px;    
        border: none;
    }
    .testimonial p{
        position: relative;
        margin-bottom: .85em;
        font-style: normal;
        line-height: 1.7;
    }
    .testimonial .blockquote-icon{
        position: absolute;
        top: 0.15em;
        left: 0;
        width: .88em;
        height: .88em;
        background: #fff;
        border-radius: 50%;
        font-family: Georgia, serif;
        font-size: 1.5em;
        line-height: 1.45em;
        text-align: center;
    }
    dl dt{
        margin-bottom: .5em;
        font-size: 20px;
        line-height: 1.4;
        letter-spacing: -0.0039em;
    }
    dl dd{
        margin-bottom: 1.9em;
        color: var(--color-primary);
    }
    pre{
        background-color: #f9f9f9;
        border-color: #ddd;
    }
    hr{
        background-color: #000;
        opacity: .1;
    }
    hr.white{
        background-color: #fff;
        opacity: 1;
    }
    .dark-mode hr.white{
        background-color: #fff;
        opacity: .15;
    }
    hr.black{
        background-color: var(--color-primary);
        opacity: 1;
    }
    hr.thick{
        height: 2px;
    }
    
    .uppercase{
        text-transform: uppercase;
        letter-spacing: 0.025em;
    }
    .font-alt{
       font-family: var(--font-alt); 
    }
    .normal{
        font-weight: normal;
    }
    .lead{
        margin: 0 0 1em 0;
        font-size: 140%;
        line-height: 1.5;
    }
    .lead-alt{
        font-size: 46px;
        line-height: 1.196;
        letter-spacing: -0.04em;
    }
    .dropcap{
        float: left;
        font-size: 3em;
        line-height: 1;
        padding: 2px 8px 2px 0;    
    }
    
    .highlight pre{
        border: 1px solid var(--color-secondary);
        background: var(--color-secondary);
        color: var(--color-primary);
        border-radius: var(--border-radius-default);
    }
    /* ==============================
       Links
       ============================== */
    
    .link-hover-anim{    
        position: relative;
        display: inline-block;
        padding: 6px 0;
        overflow: hidden;    
        font-size: 16px;    
        letter-spacing: normal;
        line-height: 1;
        text-decoration: none;
        vertical-align: middle;
        color: currentColor;
        background: none;
        border: none;
        cursor: pointer;
        text-transform: uppercase;
        font-family: var(--font-alt);
    }
    .link-hover-anim:hover{
        text-decoration: none !important;
    }
    .main-nav .link-hover-anim{
        top: 1px;
    }
    .link-strong{
        position: relative;
        display: inline-block;
        overflow: hidden;
        padding: 7px 0;
        transition: transform 0.5s var(--ease-elastic-1), opacity 0.5s var(--ease-elastic-1), color 0.2s var(--ease-default);
    }
    .underline .link-strong{
        border-bottom: 2px solid currentColor;
    }
    .underline .link-strong i{
        position: relative;
        top: 0.075em;
    }
    .link-hover-anim:not(.underline) .link-strong i:not([class^="icon-"]){
        position: relative;
        top: -0.05em;
        vertical-align: middle;
    }
    .link-strong svg{
        position: relative;
        top: -0.1em;
        margin-right: 0.2em;
    }
    .link-strong-hovered{
        display: block;
        position: absolute;
        top: 6px;
        left: 0;
        opacity: 0;
        transform: translateY(150%) translateZ(0.001px) skewY(10deg);
    }
    .link-hover-anim:hover{
        color: inherit;
    }
    .link-strong-unhovered{
        display: block;
    }
    .link-hover-anim:hover .link-strong-unhovered{ 
        opacity: 0;
        transform: translateY(-150%) translateZ(0.001px) skewY(-10deg);
    }
    
    .link-hover-anim:hover .link-strong-hovered{;
        opacity: 1;
        transform: translateY(0) translateZ(0.001px) skewY(0);
    }
      
    /* ==============================
       Buttons
       ============================== */
    .btn-mod.btn-small{
        padding: 10px 22px;
        font-size: 16px;
        text-transform: none;
        letter-spacing: 0;
    }
    .btn-mod.btn-medium{
        padding: 12px 22px;
        font-size: 18px;
        text-transform: none;
        letter-spacing: 0;
    }
    .btn-mod.btn-large{
        padding: 14px 36px;
        font-size: 20px;
        text-transform: none;
        letter-spacing: 0;
    } 
    .btn-animate-y{
        position: relative;
        display: block;
        overflow: hidden;
    }
    .btn-animate-y-1{
        display: block;
        transition: all .37s var(--ease-out-short), opacity .37s linear;
    }
    .btn-animate-y-2{
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0;
        transform: translate(0,100%);
        transition: all .37s var(--ease-out-short), opacity .37s linear;
    }
    .btn-mod:hover .btn-animate-y-1,
    a:not(.no-hover):hover .btn-animate-y-1{
        opacity: 0;
        transform: translate(0,-100%);
    }
    .btn-mod:hover .btn-animate-y-2,
    a:not(.no-hover):hover .btn-animate-y-2{
        opacity: 1;
        transform: translate(0,0);
    }
    .mobile-on .link-hover-anim{
        top: 0;
    }
    .mobile-on .btn-border,
    .mobile-on .btn-border:hover{
        color: #fff !important;
        border-color: #fff !important;
    }
    .btn-mod.btn-circle{
        border-radius: 30px;
    }
    
    /* ==============================
       Forms fields
       ============================== */
    
    .form input[type="text"],
    .form input[type="email"],
    .form input[type="number"],
    .form input[type="url"],
    .form input[type="search"],
    .form input[type="tel"],
    .form input[type="password"],
    .form input[type="date"],
    .form input[type="color"],
    .form select{
        display: inline-block;
        height: 27px;
        vertical-align: middle;
        font-size: 13px;
        color: var(--color-primary);
        border: 1px solid rgba(0,0,0, .183);
        padding-top: 0;
        padding-bottom: 2px;
        padding-left: 7px;
        padding-right: 7px;
        border-radius: 0;
        box-shadow: none;    
        transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    }
    .form select:not([multiple]){
        padding-right: 24px !important;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="9px" height="5px"><path fill-rule="evenodd" fill="rgb(17, 17, 17)" d="M8.886,0.631 L8.336,0.117 C8.263,0.049 8.178,0.015 8.083,0.015 C7.988,0.015 7.903,0.049 7.830,0.117 L4.506,3.155 L1.183,0.117 C1.109,0.049 1.025,0.015 0.930,0.015 C0.834,0.015 0.750,0.049 0.677,0.117 L0.127,0.631 C0.053,0.699 0.017,0.778 0.017,0.867 C0.017,0.956 0.053,1.035 0.127,1.103 L4.253,4.892 C4.327,4.960 4.411,4.994 4.506,4.994 C4.602,4.994 4.686,4.960 4.759,4.892 L8.886,1.103 C8.959,1.035 8.996,0.956 8.996,0.867 C8.996,0.778 8.959,0.699 8.886,0.631 L8.886,0.631 Z"/></svg>');
        background-repeat: no-repeat;
        background-position: right 8px center;
        background-size: 9px 5px;    
    }
    .form select[multiple]{
        height: auto;
    }
    .form input[type="text"]::placeholder,
    .form input[type="email"]::placeholder,
    .form input[type="number"]::placeholder,
    .form input[type="url"]::placeholder,
    .form input[type="search"]::placeholder,
    .form input[type="tel"]::placeholder,
    .form input[type="password"]::placeholder,
    .form input[type="date"]::placeholder,
    .form input[type="color"]::placeholder,
    .form select::placeholder{
        color: var(--color-primary);
        transition: var(--transition-default), font-size 0s;
    }
    .form input[type="text"]:hover::placeholder,
    .form input[type="email"]:hover::placeholder,
    .form input[type="number"]:hover::placeholder,
    .form input[type="url"]:hover::placeholder,
    .form input[type="search"]:hover::placeholder,
    .form input[type="tel"]:hover::placeholder,
    .form input[type="password"]:hover::placeholder,
    .form input[type="date"]:hover::placeholder,
    .form input[type="color"]:hover::placeholder,
    .form select::placeholder{
        color: var(--color-primary);
    }
    .form input[type="text"]:hover,
    .form input[type="email"]:hover,
    .form input[type="number"]:hover,
    .form input[type="url"]:hover,
    .form input[type="search"]:hover,
    .form input[type="tel"]:hover,
    .form input[type="password"]:hover,
    .form input[type="date"]:hover,
    .form input[type="color"]:hover,
    .form select:hover{
        border-color: rgba(0,0,0, .38);
    }
    .form input[type="text"]:focus,
    .form input[type="email"]:focus,
    .form input[type="number"]:focus,
    .form input[type="url"]:focus,
    .form input[type="search"]:focus,
    .form input[type="tel"]:focus,
    .form input[type="password"]:focus,
    .form input[type="date"]:focus,
    .form input[type="color"]:focus,
    .form select:focus{
        color: var(--color-primary);
        border-color: rgba(0,0,0, .7);
        box-shadow: 0 0 3px rgba(0,0,0, .3);
        outline: none;
    }
    input[type="text"]:-webkit-autofill,
    input[type="email"]:-webkit-autofill,
    input[type="number"]:-webkit-autofill,
    input[type="url"]:-webkit-autofill,
    input[type="search"]:-webkit-autofill,
    input[type="tel"]:-webkit-autofill,
    input[type="password"]:-webkit-autofill,
    input[type="date"]:-webkit-autofill,
    input[type="color"]:-webkit-autofill,
    textarea:-webkit-autofill,
    input[type="text"]:-webkit-autofill:hover,
    input[type="email"]:-webkit-autofill:hover,
    input[type="number"]:-webkit-autofill:hover,
    input[type="url"]:-webkit-autofill:hover,
    input[type="search"]:-webkit-autofill:hover,
    input[type="tel"]:-webkit-autofill:hover,
    input[type="password"]:-webkit-autofill:hover,
    input[type="date"]:-webkit-autofill:hover,
    input[type="color"]:-webkit-autofill:hover,
    textarea:-webkit-autofill:hover,
    input[type="text"]:-webkit-autofill:focus,
    input[type="email"]:-webkit-autofill:focus,
    input[type="number"]:-webkit-autofill:focus,
    input[type="url"]:-webkit-autofill:focus,
    input[type="search"]:-webkit-autofill:focus,
    input[type="tel"]:-webkit-autofill:focus,
    input[type="password"]:-webkit-autofill:focus,
    input[type="date"]:-webkit-autofill:focus,
    input[type="color"]:-webkit-autofill:focus,
    textarea:-webkit-autofill:focus{
        transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000), background-color 1s 900000s ease;
        -webkit-text-fill-color: var(--color-primary);
    }
    .form input[type="text"].input-lg,
    .form input[type="email"].input-lg,
    .form input[type="number"].input-lg,
    .form input[type="url"].input-lg,
    .form input[type="search"].input-lg,
    .form input[type="tel"].input-lg,
    .form input[type="password"].input-lg,
    .form input[type="date"].input-lg,
    .form input[type="color"].input-lg,
    .form select.input-lg{
        height: 52.5px;
        padding-left: 20px;
        padding-right: 20px;
        font-size: 16px;
    }
    .form input[type=color]{
        padding: 3px !important;
    }
    .form input.form-check-input{
        border: 1px solid var(--color-primary);
    }
    .form textarea{
        font-size: 13px;
        color: var(--color-primary);
        border-color: rgba(0,0,0, .183);
        padding: 0 7px;
        outline: none;
        
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        
        -webkit-appearance: none;
    }
    .form textarea::placeholder{
        color: var(--color-primary);
        transition: var(--transition-default);
    }
    .form textarea:hover::placeholder{
        color: var(--color-primary);
    }
    .form textarea:hover{
        border-color: rgba(0,0,0, .38);
    }
    .form textarea:focus{
        color: var(--color-primary);
        border-color: rgba(0,0,0, .7);
        box-shadow: 0 0 3px rgba(0,0,0, .3);
    }
    .form textarea.input-lg{
        padding: 12px 20px;
        font-size: 16px;
    }
    .form textarea.input-md{
        padding: 8px 15px;
        font-size: 15px;
        
    }
    .form textarea.input-sm{
        padding: 5px 10px;
        font-size: 14px;
    }
    .form input.input-circle,
    .form select.input-circle,
    .form textarea.input-circle{
        border-radius: 27px;
    }
    .form label:not(.checkbox label){
        display: inline-block;
        margin-bottom: 7px;
        font-size: 15px;
        line-height: 1.3;
        font-family: var(--font-alt);
    }
    .form .form-group{
        margin-bottom: 10px;
    }
    .form-tip,
    .form-tip a{
        font-size: 14px;
        line-height: 1.43;
        color: var(--color-primary);
    }
    .form-tip a:hover{
        color: var(--color-primary);
    }
    .form-tip .fa{
        font-size: 12px;
    }
    
    .form-control{
        border-radius: 0;
    }
    
    /*
     * Contact
     */
    
    .contact-item{
        position: relative;
        padding: 0 0 0 74px;
        color: var(--color-primary);
    }
    .contact-item a{    
        color: currentColor;
        text-decoration: none;
        transition: var(--transition-default);  
    }
    .contact-item a:hover{
        color: var(--color-primary);
        text-decoration: none;
    }
    
    .ci-icon{
        position: absolute;
        top: 4px;
        left: 3px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 56px;
        height: 56px;    
        font-size: 24px;
        color: #fff;
        text-align: center;
    }
    .ci-icon:before{
        content: "";
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        background: var(--color-primary);
        border-radius: 50%;    
    }
    .ci-icon svg,
    .ci-icon img,
    .ci-icon i{
        position: relative;
        vertical-align: middle;
    }
    .ci-title{
        margin-bottom: 7px;
        line-height: 1.3;
    }
    .ci-text{
        font-size: 18px;
        line-height: 1.625;
    }
    .ci-text.large{
        font-size: 21px;
        line-height: 1.467;
    }
    .ci-link{
        margin-top: 11px;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }
    .ci-link a{
        position: relative;
        text-decoration: none;
        -webkit-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
        transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000); 
    }
    .ci-link a:after{
        content: "";
        display: block;
        position: absolute;
        left: 0;
        bottom: -1px;
        width: 100%;
        height: 1px;
        background-color: currentColor;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: left center;
        transform-origin: left center;
        -webkit-transition: transform .25s ease-out;
        transition: transform .25s ease-out;
        opacity: .9;
    }
    .ci-link a:hover{
        text-decoration: none;
        opacity: .9;
    }
    .ci-link a:hover:after{
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: right center;
        transform-origin: right center;
    }
    
    /*
     * Section BG svg shape
     */
    
    .bg-shape-1{
        position: absolute;
        top: 0;
        right: 0;
        width: 90.1875%;
    }
    .bg-shape-1 img{
        width: 100%;
    }
    .bg-shape-2{
        position: absolute;
        top: 0;
        left: 0;
        width: 53.625%;
    }
    .bg-shape-2 img{
        width: 100%;
    }
    .bg-shape-3{
        position: absolute;
        top: 0;
        left: 0;
        width: 90.1875%;
    }
    .bg-shape-3 img{
        width: 100%;
    }
    .bg-shape-4{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }
    .bg-shape-4 img{
        width: 100%;
    }
    .bg-shape-7{
        position: absolute;
        top: -10%;
        left: 0;
        width: 187%;
    }
    .bg-shape-7 img{
        width: 100%;
    }
    .bg-line-1{
        position: absolute;
        bottom: 45px;
        left: 0;
        width: 100%;   
    }
    .bg-line-1 img{
        width: 100%;
    }
    .bg-line-2 img{
        width: 100%;
    }
    .bg-line-3 img{
        width: 100%;
    }
    
    /*
     * Fullwidth gallery
     */
    .home-section{
         width: 100%;
         display: block;    
         position: relative;
         background-repeat: no-repeat;
         background-attachment: fixed;
         background-position: center center;
         -webkit-background-size: cover;
         -moz-background-size: cover;
         -o-background-size: cover;
         background-size: cover;    
     }
    .home-content{
         width: 100%;
         position: relative;
    }
    
    .fullwidth-gallery-wrapper{
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        align-items: stretch;
        width: 100%;
        height: 100%;
    }
    .fullwidth-galley-content{
        position: relative;
        z-index: 25;
    }
    .fullwidth-gallery{
        display: flex !important;
        align-items: stretch;
    }
    .fullwidth-gallery .owl-wrapper-outer{
        display: flex;
        align-items: stretch;
        height: auto !important;
    }
    .fullwidth-gallery .owl-wrapper{
        display: flex !important;
        align-items: stretch;
    }
    .fullwidth-gallery .owl-item{
        display: flex !important;
        align-items: stretch;
        height: 100% !important;
    }
    
    /* 
     * Stack Images
     */
    
    .stack-images{
        position: relative;
        margin: 0 auto;
        padding: 19.2307% 0;
    }
    .stack-images-1{
        max-width: 57.692%;
        position: absolute;
        top: 0;
        right: 0;
    }
    .stack-images-2{
        position: relative;
        max-width: 57.692%;
        margin: 0 auto;
    }
    .stack-images-3{
        max-width: 57.692%;
        position: absolute;
        bottom: 0;
        left: 0;
    }
    
    /* 
     * Marquee text line 
     */
     
     .marquee-wrap {
       width: 100%;
       overflow: hidden;
       white-space: nowrap;
       position: relative;
     }
     .marquee {
       display: inline-block;
       animation: marquee 50s linear infinite;
     }
     .marquee-item-1 {
       position: relative;
       left: 0%;
       animation: swap 50s linear infinite;
     }
     
     .item {
       display: inline-block;
     }
     
     /* Transition */
     @keyframes marquee {
       0% {
         -webkit-transform: translateX(0);
         transform: translateX(0);
       }
       100% {
         -webkit-transform: translateX(-100%);
         transform: translateX(-100%);
       }
     }
     
     @keyframes swap {
       0%, 50% {
         left: 0%;
       }
       50.01%,
       100% {
         left: 100%;
       }
     }
     
    .marquee-style-1{
        font-size: 30px;
        box-shadow: var(--box-shadow-block);
        height: 70px;
        line-height: 70px;
    }
    .marquee-style-1 span{
       padding-right: 2.75em;
    }
    .marquee-style-2{
        width: 120%;
        margin-left: -10%;
        font-size: 30px;
        text-transform: uppercase;
        transform: rotate(-3deg);
        height: 70px;
        line-height: 70px;
    }
    .marquee-style-2 span{
       padding-right: 2.75em; 
    }
    .marquee-style-3{
        width: 120%;
        margin-left: -10%;
        padding: 20px 0;
        font-size: 100px;
        text-transform: uppercase;
        transform: rotate(-3deg);
        height: 130px;
        line-height: 130px;
    }
    .marquee-style-3 span{
       padding-right: 2.75em; 
    }
    
    /*
     * Appearing animation styles
     */
    
    :root {
      --animate-duration: 1s;
      --animate-delay: 1s;
      --animate-repeat: 1
    }
    .animated {
      -webkit-animation-duration: 1s;
      animation-duration: 1s;
      -webkit-animation-duration: var(--animate-duration);
      animation-duration: var(--animate-duration);
      -webkit-animation-fill-mode: both;
      animation-fill-mode: both
    }
    
    .wow,
    .wow-menubar,
    .wow-p{
        opacity: 0.001;  
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;    
        -webkit-transform: translateZ(0);
        transform: translateZ(0);  
    }
    html:not(.mobile) .wow, 
    html:not(.mobile) .wow-menubar, 
    html:not(.mobile) .wow-p{
        /*will-change: opacity, transform;*/
    }
    .appear-animate .wow.scaleOutIn{
        opacity: 1;
        transform: scale(1.2);
    }
    .appear-animate .wow.animated,
    .appear-animate .wow.scaleOutIn.animated,
    .appear-animate .wow-p.amimated,
    .appear-animate .wow-menubar.animated,
    .mobile .appear-animate .wow,
    .mobile .appear-animate .wow-menubar,
    .mobile .appear-animate .wow-p{
        opacity: 1;
        transform: scale(1.0);
    }
    @media print{
        .wow,
        .wow.scaleOutIn,
        .wow-menubar,
        .wow-p{
            opacity: 1 !important;
            transform: none !important;
            animation: none !important;
        }
    }
    @keyframes fadeIn {
      0% {
        opacity: 0
      }
    
      to {
        opacity: 1
      }
    }
    .fadeIn {
      animation-name: fadeIn
    }
    @keyframes fadeInDown{
        0%{
            opacity: 0;
            transform: translate3d(0,-37px,0)
        }
        to{
            opacity: 1;
            transform: translate3d(0,0,0);
        }
    }
    .fadeInDown{
        animation-name: fadeInDown
    }
    @keyframes fadeInUp{
        0%{
            opacity: 0;
            transform: translate3d(0,37px,0);
        }
        to{
            opacity: 1;
            transform: translate3d(0,0,0);
        }
    }
    .fadeInUp{
        animation-name: fadeInUp;
    }
    @keyframes fadeInLeft{
        0%{
            opacity: 0;
            transform: translate3d(37px,0,0);
        }
        to{
            opacity: 1;
            transform: translate3d(0,0,0);
        }
    }
    .fadeInLeft{
        animation-name: fadeInLeft;
    }
    @keyframes fadeInRight{
        0%{
            opacity: 0;
            transform: translate3d(-37px,0,0);
        }
        to{
            opacity: 1;
            transform: translate3d(0,0,0);
        }
    }
    .fadeInRight{
        animation-name: fadeInRight;
    }
    @keyframes fadeInDownShort{
        0%{
            opacity: 0;
            transform: translate3d(0,-12px,0)
        }
        to{
            opacity: 1;
            transform: translate3d(0,0,0);
        }
    }
    .fadeInDownShort{
        animation-name: fadeInDownShort
    }
    @keyframes fadeInUpShort{
        0%{
            opacity: 0;
            transform: translate3d(0,12px,0);
        }
        to{
            opacity: 1;
            transform: translate3d(0,0,0);
        }
    }
    .fadeInUpShort{
        animation-name: fadeInUpShort;
    }
    @keyframes fadeInLeftShort{
        0%{
            opacity: 0;
            transform: translate3d(12px,0,0);
        }
        to{
            opacity: 1;
            transform: translate3d(0,0,0);
        }
    }
    .fadeInLeftShort{
        animation-name: fadeInLeftShort;
    }
    @keyframes fadeInRightShort{
        0%{
            opacity: 0;
            transform: translate3d(-12px,0,0);
        }
        to{
            opacity: 1;
            transform: translate3d(0,0,0);
        }
    }
    .fadeInRightShort{
        animation-name: fadeInRightShort;
    }
    @keyframes scalexIn{
        0%{
            opacity: 0;
            transform: scaleX(0);
            transform-origin: left center;        
        }
        to{
            opacity: 1;
            transform: scaleX(1);
            transform-origin: left center;
        }
    }
    .scalexIn{
        animation-name: scalexIn;
    }
    @keyframes fadeScaleIn{
        0%{
            opacity: 0;
            transform: scale(.95) translateZ(0.1px);
        }
        to{
            opacity: 1;
            transform: scale(1.00);
        }
    }
    .fadeScaleIn{
        animation-name: fadeScaleIn;
    }
    @keyframes scaleOutIn{
        0%{
            transform: scale(1.2) translateZ(0.1px);      
        }
        to{
            transform: scale(1.0);
        }
    }
    .scaleOutIn{
        animation-name: scaleOutIn;
        animation-timing-function: var(--ease-out-short);
    }
    @keyframes fadeScaleOutIn{
        0%{
            opacity: 0;
            transform: translateY(10px) translateZ(0.1px) scale(1.1);      
        }
        to{
            opacity: 1;
            transform: scale(1);
        }
    }
    .fadeScaleOutIn{
        animation-name: fadeScaleOutIn;
    }
    @keyframes clipRightIn{
      0% {
        clip-path: inset(0 100% 0 0);
      }
    
      to {
        clip-path: inset(0);
      }
    }
    .clipRightIn{
      animation-name: clipRightIn;
        animation-timing-function: var(--ease-out-medium);
    }
    @keyframes fadeRotateIn{
        0%{
            opacity: 0;
            transform: rotateX(60deg) rotateY(10deg) rotateZ(-10deg);
            transform-origin: top;
            animation-timing-function: var(--ease-out-short);        
        }
        to{
            opacity: 1;
            transform: none;
        }
    }
    .fadeRotateIn{
        animation-name: fadeRotateIn;  
    }
    
    /* ==============================
       Classic menu bar
       ============================== */
    
    /*
     * Logo (in navigation panel)
     */
    
    .nav-logo-wrap{
        position: absolute;
        top: 0;
        left: 0;
        flex-shrink: 0;
        z-index: 1;
    }
    .nav-logo-wrap .logo{
        display: flex;
        align-items: center;
        max-width: 250px;
        height: var(--menu-bar-height);
        width: 250px;
        transition: all 0.2s var(--ease-default);
    }
    .nav-logo-wrap .logo:before,
    .nav-logo-wrap .logo:after{
        display: none;
    }
    .small-height .nav-logo-wrap .logo{
        transform:scale(0.95);
    }
    
    /*
     * Desktop nav
     */
    
    .main-nav{
        display: flex;
        flex-direction: column;
        flex-wrap: nowrap;
        align-items: stretch;
        width: 100%;
        height: var(--menu-bar-height) !important;
        position: relative;
        top: 0;
        left: 0;
        text-align: left;
        background: rgba(255,255,255, .98);
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.025),0px 1px 1px 0px rgba(0, 0, 0, 0.01),0px 0px 50px 0px rgba(0, 0, 0, 0.07);
        z-index: 1030;
        transition: all 0.2s var(--ease-default);
    }
    .main-nav.sticky{
        position: -webkit-sticky;
        position: sticky;
        top: 0;
    }
    .small-height{
        height: var(--menu-bar-height-scrolled) !important;
    }
    .main-nav-sub{
        flex-grow: 1;
        display: flex;
        position: relative;
    }
    .inner-nav{
        flex-grow: 1;
        position: relative;
    }
    .inner-nav ul{
        margin: auto;
        font-size: 17px;
        text-align: center;
        letter-spacing: 0;
        line-height: 1.3;    
    }
    .inner-nav ul i.align-center:before{
        display: block;
        margin-top: -0.15em;
        transform: translateY(13.5%);
    }
    .inner-nav ul i.mi-mobile:before{
        margin-left: -0.25em;
        margin-right: -0.25em;
    }
    .inner-nav > ul{
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
    }
    .inner-nav ul li{
        margin: 0 18px;
        position: relative;
    }
    .inner-nav ul li:first-child{
        margin-left: 0;
    }
    .inner-nav ul li:last-child{
        margin-right: 0;
    }
    .inner-nav > ul.items-end{
        position: absolute;
        top: 0;
        right: 0;
    }
    .inner-nav ul li a{
        display: inline-block;
        text-decoration: none;  
        transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
        text-transform: uppercase;
    }
    .inner-nav > ul > li > a{
        display: table-cell;
        vertical-align: middle;
        height: var(--menu-bar-height);      
    }
    .main-nav:not(.mobile-on).small-height .inner-nav > ul > li > a{
        height: var(--menu-bar-height-scrolled) !important;
    }
    .inner-nav ul li a.active{
        animation: changeTextColor 40s infinite;
        opacity: 1;
        text-decoration: none;
        font-family: var(--font-alt);
    }
    .inner-nav ul li a:hover {
        opacity: 1;
        text-decoration: none;
        color: var(--color-hover);
    }
    .body-scrolled .scrolled-hidden{
        display: none;
    }
    .scrolled-visible{
        display: none;
    }
    .body-scrolled .scrolled-visible{
        display: block;
    }
    .mobile-on .scrolled-hidden,
    .mobile-on .body-scrolled .scrolled-hidden{
        display: block;
    }
    .mobile-on .scrolled-visible{
        display: none;
    }
    
    /* Menu sub */
    .inner-nav .mi-chevron-down{
        margin-left: -0.19em;
        font-size: 16px;
        transition: all 0.2s var(--ease-default), color 0 var(--ease-default);
    }
    .mi-chevron-right{
        transition: var(--transition-default);
    }
    .mn-sub{
        display: none;
        width: 220px;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 0;
        background: rgba(35,35,35, .9927);
        border-radius: 0 0 3px 3px;
    }
    .transparent .mn-sub,
    .inner-nav .mn-sub .mn-sub,
    .mn-has-multi a{
        border-radius: 3px;  
    }
    .transparent .mn-sub > li:first-child > a,
    .transparent .mn-sub > li:first-child > a{
        border-top-left-radius: 3px;
        border-top-right-radius: 3px;
    }
    .mn-sub > li:last-child > a{
        border-bottom-left-radius: 3px;
        border-bottom-right-radius: 3px;
    }
    .main-nav.mobile-on.transparent .mn-sub > li:first-child > a,
    .main-nav.mobile-on.transparent .mn-sub > li:first-child > a,
    .main-nav.mobile-on .mn-sub > li:last-child > a{
        border-radius: 0;
    }
    .mn-sub li{
        display: block;
        width: 100%;
        margin: 0 !important;
    }
    .inner-nav ul li .mn-sub li a,
    .mn-group-title{
        display: block;
        width: 100%;
        height: auto !important;
        line-height: 1.3 !important;
        position: relative;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        margin: 0;
        padding: 12px 15px;
        font-size: 15px;
        text-align: left;
        text-transform: none;    
        border-left: none;
        border-right: none;
        letter-spacing: 0;
        color: var(--color-secondary) !important;
        outline-offset: -2px !important;
        transition: var(--transition-default);
    }
    .mobile-on .mn-has-multi > li:last-child > a{
        border-bottom: 1px solid rgba(255,255,255, .065) !important;
    }
    .mn-sub li a:hover,
    .inner-nav ul li .mn-sub li a:hover,
    .mn-sub li a.active{
        background: rgba(255,255,255, .09);
        color: var(--color-secondary) !important;
    }
    .mn-sub:not(.mn-has-multi) li ul{
        left: 100%;
        right: auto;
        top: 0;
        border-left: 1px solid rgba(255,255,255, .07);
    }
    .inner-nav li .mn-sub.to-left{
        left: auto;
        right: 0;
    }
    .inner-nav > ul > li:last-child .mn-sub li ul,
    .inner-nav > li:last-child .mn-sub li ul,
    .inner-nav li .mn-sub li ul.to-left{
        left: auto;
        right: 100%;
        top: 0;
        border-left: none;
        border-right: 1px solid rgba(255,255,255, .07);
    }
    .mobile-on .inner-nav li:last-child .mn-sub li ul{
        left: auto;
        right: auto;
        top: 0;
    }
    .mn-wrap{
        padding: 8px;
    }
    
    /* Menu sub multi */
    
    .mn-has-multi{
        width: auto !important;
        padding: 15px;
        text-align: left;
        white-space: nowrap;
    }
    .mn-sub-multi{
        width: 200px !important;
        overflow: hidden;
        white-space: normal;
        float: none !important;
        display: inline-block !important;
        vertical-align: top;
    }
    .mn-sub-multi > ul{
        width: auto;
        margin: 0;
        padding: 0;
        float: none;
    }
    .mn-group-title{
        font-size: 18px !important;
    }
    .mn-group-title:hover{
        background: none !important;
    }
    .mobile-on .mn-sub-multi > ul{
        left: auto;
        right: auto;
        border: none;
    }
    .mobile-on .mn-sub-multi{
        display: block;
        width: 100% !important;
    }
    .mobile-on .mn-sub-multi > ul > li:last-child > a{
        border: none !important;
    }
    .mobile-on .mn-sub:not(.mn-has-multi) > li:last-child > a{
        border: none !important;
    }
    .mobile-on .mn-sub-multi:last-child > ul{
        border-bottom: none !important;
    }
    
    /*
     * Mobile nav
     */
    
    .mobile-on .desktop-nav{
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 0 15px;
        z-index: 100;    
    }
    .mobile-on .full-wrapper .desktop-nav{
        padding: 0;
    }
    .mobile-on .desktop-nav ul{
        position: relative;
        width: 100%;
        float: none;
        overflow-x: hidden;
        background: #ffffff;
    }
    .mobile-on .desktop-nav > ul{
        overflow-y: auto;
        display: block;
    }
    .mobile-on .desktop-nav ul li{
        display: block;
        float: none !important;
        overflow: hidden;
    }
    .mobile-on .desktop-nav ul li ul{
        padding: 0;
        border-bottom: 1px solid rgba(0,0,0, .1);
    }
    .mobile-on .desktop-nav ul li a{
        display: block;
        width: 100%;
        height: auto !important;
        line-height: 1.3 !important;
        position: relative;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        padding: 15px 20px;
        text-align: left;
        border-left: none;
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0, .1);
        color: var(--color-secondary);
        opacity: 1;
        cursor: pointer;
    }
    .mobile-on .desktop-nav ul li a:hover,
    .mobile-on .desktop-nav ul li a.active{
        background: rgba(255,255,255, .025);
        color: #eee;
    }
    .mobile-on .desktop-nav ul li a:focus{
        outline-offset: -2px !important; 
    }
    
    .mobile-nav-display{
        display: none;
    }
    .mobile-on .mobile-nav-display{
        display: block !important;
    }
    .mobile-nav-display-i{
        display: none;
    }
    .mobile-on .mobile-nav-display-i{
        display: inline-block !important;
    }
    .desktop-nav-display{
        display: block;
    }
    .mobile-on .desktop-nav-display{
        display: none !important;
    }
    
    /* Mobile nav menu sub */
    
    .mobile-on .mn-has-sub > .mi-chevron-down{
        display: block;
        width: 24px;
        height: 24px;
        font-size: 14px;
        line-height: 22px;
        position: absolute;
        top: 50%;
        right: 10px;
        margin-top: -12px;
        text-align: center;
        border: 1px solid rgba(255,255,255, .1);
        border-radius: 50%;
    }
    .mobile-on .mn-has-sub > .mi-chevron-right{
        display: block;
        width: 24px;
        height: 24px;
        font-size: 14px;
        line-height: 22px;
        position: absolute;
        top: 50%;
        right: 10px;
        margin-top: -12px;
        text-align: center;
        border: 1px solid rgba(255,255,255, .1);
        transform: rotate(90deg);
        border-radius: 50%;
    }
    .mobile-on .js-opened > .mn-has-sub > .mi-chevron-down{
        border-color: rgba(255,255,255, .4);
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    .mobile-on .js-opened > .mn-has-sub > .mi-chevron-right{
        border-color: rgba(255,255,255, .4);
        -webkit-transform: rotate(270deg);
        -moz-transform: rotate(270deg);
        transform: rotate(270deg);
    }
    .mobile-on .inner-nav li{
        margin: 0 !important;
    }
    .mobile-on .mn-sub{
        display: none;
        opacity: 0;
        position: relative;
        left: 0 !important;
        right: 0;
        top: 0;
        bottom: 0;
        border-left: none !important;
        border-right: none !important;
        border-top: none;
        z-index: 10;
    }
    .mobile-on .mn-sub li{
        padding-left: 10px;
    }
    .inner-nav li.js-opened .mn-sub{
        opacity: 1;
    }
    .mobile-nav{
        display: none;
        margin-left: auto;
        margin-right: -15px;
        padding-left: 15px;
        padding-right: 15px;
        font-size: 16px;
        cursor: pointer;
        height: var(--menu-bar-height);    
        transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
        transition-property:  background, color, height;
    }
    .main-nav.small-height .mobile-nav{
        height: var(--menu-bar-height-scrolled);
    }
    .mobile-nav:active{
        box-shadow: 0 0 35px rgba(0,0,0,.05) inset;
    }
    .mobile-on .mobile-nav{
        display: flex;
    }
    .mobile-nav-icon{
        position: relative;
        display: block;
        width: 1.8em;
        height: 2px;
        margin: auto;
        background: var(--color-primary);     
    }
    .mobile-nav-icon:before,
    .mobile-nav-icon:after{
        content: "";
        position: absolute;
        top: -0.5em; 
        display: block;
        width: 100%;
        height: 100%;
        background: var(--color-primary);
        transition: var(--transition-default);
        will-change: top, transform;
    }
    .mobile-nav-icon:after{
        top: 0.5em;
    }
    .mobile-nav.active .mobile-nav-icon{
        background: transparent;
    }
    .mobile-nav.active .mobile-nav-icon:before{
        top: 0;
        transform: rotate(45deg);
    }
    .mobile-nav.active .mobile-nav-icon:after{
        top: 0;
        transform: rotate(-45deg);
    }
    
    /* Mobile nav menu sub multi */
    
    .mobile-on .mn-has-multi{
        width: auto;
        padding: 0;
        text-align: left;
        white-space: normal;
        
    }
    .mobile-on .mn-sub{
        width: 100%;
        float: none;
        position: relative;
        overflow-x: hidden;
    }
    .mobile-on .mn-group-title{
        font-size: 15px !important;
    }
    /*
     * Transparent panel style
     */
    
    .main-nav.transparent{
        background: transparent !important;
        box-shadow: none;
    }
    .main-nav.js-transparent{
        transition: all 0.2s var(--ease-default);
    }
    
    /* ==============================
       Sections styles
       ============================== */
    
    /*
     * Common section styles
     */
    section,
    .section,
    .page-section,
    .small-section,
    .bg-image{
        width: 100%;
        z-index: 0;
        display: block;    
        position: relative;
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        overflow:hidden;
    }
    .fixed-height-large{
        min-height: 800px;
    }
    .fixed-height-medium{
        min-height: 700px;
    }
    .fixed-height-small{
        min-height: 600px;
    }
    .bg-overlay{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
    .bg-scroll{
        background-attachment: scroll !important;
        background-position: center center !important;
    }
    .parallax{
        background-position-y: 0;
    }
    .bg-overlap:after, .bg-overlap-before:before {
        content: "";
        display: block;
        height: 100px;
        width: 100%;
        position: absolute;
        bottom: 0;
        z-index: -2;
    }
    .bg-overlap:after { bottom: 0; }
    .bg-overlap-before:before { top: 0; }
    .bg-white, .bg-overlap-white:after, .bg-overlap-white:before {
        background-color: #fff;
    }
    .bg-primary, .bg-overlap-primary:after, .bg-overlap-primary:before {
        background-color: var(--color-primary) !important;
    }
    .bg-red, .bg-overlap-red:after, .bg-overlap-red:before {
        background-color: var(--color-red) !important;
    }
    .bg-green, .bg-overlap-green:after, .bg-overlap-green:before {
        background-color: var(--color-green) !important;
    }
    .bg-blue, .bg-overlap-blue:after, .bg-overlap-blue:before {
        background-color: var(--color-blue) !important;
    }
    .bg-yellow, .bg-overlap-yellow:after, .bg-overlap-yellow:before {
        background-color: var(--color-yellow) !important;
    }
    .bg-fade, .bg-overlap-color-fade:after, .bg-overlap-color-fade:before {
        animation: changeBackgroundColor 40s infinite;
    }
    @keyframes changeBackgroundColor {
      0% {
        background-color: var(--color-green);
      }
      25% {
        background-color: var(--color-red);
      }
      50% {
        background-color: var(--color-blue);
      }
      75% {
        background-color: var(--color-yellow);
      }
      100% {
        background-color: var(--color-green);
      }
    }
    .bg-blur{
        position: relative;
        margin: 0 auto;  
        overflow: hidden;     
        border: 1px solid rgba(255,255,255, .1);
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
    }
    .bg-blur:before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--color-primary);
        opacity: 0.17;
    }
    .bg-dark-alpha:before,
    .bg-dark-alpha .YTPOverlay:before,
    .bg-dark-alpha-30:before,
    .bg-dark-alpha-30 .YTPOverlay:before,
    .bg-dark-alpha-50:before,
    .bg-dark-alpha-50 .YTPOverlay:before,
    .bg-dark-alpha-70:before,
    .bg-dark-alpha-70 .YTPOverlay:before,
    .bg-dark-alpha-60:before,
    .bg-dark-alpha-60 .YTPOverlay:before,
    .bg-dark-alpha-80:before,
    .bg-dark-alpha-80 .YTPOverlay:before,
    .bg-dark-alpha-90:before,
    .bg-dark-alpha-90 .YTPOverlay:before,
    .bg-light-alpha:before,
    .bg-light-alpha .YTPOverlay:before,
    .bg-light-alpha-30:before,
    .bg-light-alpha-30 .YTPOverlay:before,
    .bg-light-alpha-50:before,
    .bg-light-alpha-50 .YTPOverlay:before,
    .bg-light-alpha-60:before,
    .bg-light-alpha-60 .YTPOverlay:before,
    .bg-light-alpha-70:before,
    .bg-light-alpha-70 .YTPOverlay:before,
    .bg-light-alpha-80:before,
    .bg-light-alpha-80 .YTPOverlay:before,
    .bg-light-alpha-90:before,
    .bg-light-alpha-90 .YTPOverlay:before{
        content: " ";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }
    .bg-dark-alpha:before,
    .bg-dark-alpha .YTPOverlay:before{
        background: #111;
        opacity: .97;
    }
    .bg-dark-alpha-30:before,
    .bg-dark-alpha-30 .YTPOverlay:before{
        background: #111;
        opacity: .3;
    }
    .bg-dark-alpha-50:before,
    .bg-dark-alpha-50 .YTPOverlay:before{
        background: #111;
        opacity: .5;
    }
    .bg-dark-alpha-60:before,
    .bg-dark-alpha-60 .YTPOverlay:before{
        background: #111;
        opacity: .6;
    }
    .bg-dark-alpha-70:before,
    .bg-dark-alpha-70 .YTPOverlay:before{
        background: #111;
        opacity: .7;
    }
    .bg-dark-alpha-80:before,
    .bg-dark-alpha-80 .YTPOverlay:before{
        background: #111;
        opacity: .8;
    }
    .bg-dark-alpha-90:before,
    .bg-dark-alpha-90 .YTPOverlay:before{
        background: #111;
        opacity: .9;
    }
    .bg-light-alpha:before,
    .bg-light-alpha .YTPOverlay:before{
        background: rgba(252,252,252, .97);
    }
    .bg-light-alpha-30:before,
    .bg-light-alpha-30 .YTPOverlay:before{
        background: rgba(252,252,252, .30);
    }
    .bg-light-alpha-50:before,
    .bg-light-alpha-50 .YTPOverlay:before{
        background: rgba(252,252,252, .50);
    }
    .bg-light-alpha-60:before,
    .bg-light-alpha-60 .YTPOverlay:before{
        background: rgba(252,252,252, .60);
    }
    .bg-light-alpha-70:before,
    .bg-light-alpha-70 .YTPOverlay:before{
        background: rgba(252,252,252, .7);
    }
    .bg-light-alpha-80:before,
    .bg-light-alpha-80 .YTPOverlay:before{
        background: rgba(252,252,252, .8);
    }
    .bg-light-alpha-90:before,
    .bg-light-alpha-90 .YTPOverlay:before{
        background: rgba(252,252,252, .9);
    }
    .features-list{
        color: var(--color-primary);
    }
    .features-list-icon{
        position: relative;
        top: 0.45em;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 10px;
        width: 22px;
        height: 22px;
        font-size: 15px;
        color: #fff;
        background: var(--color-primary);
        border-radius: 50%;
    }
    .features-list-icon svg{
        display: block;
        width: 1em;
        height: 1em;
    }
    .features-list-icon i{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        vertical-align: middle;
    }
    .features-list-icon.features-list-color-1{
        color: #fff;
        background: var(--color-primary-1);
    }
    .features-list-icon.features-list-color-2{
        color: #fff;
        background: var(--color-primary-2);
    }
    .styled-list ul {
      list-style: none;
      margin: 0;
      padding-left: 12px;
    }
    .styled-list li {
      margin-bottom: 5px;
    }
    .styled-list li::before {
      content: "•";
      color: var(--color-primary);
      display: inline-block;
      width: 0.75em;
      margin-left: -0.75em;
    }
    .section-text .lead-alt{
        margin-top: -0.2em;;
    }
    .section-line{
        width: 80px;
        height: 1px;
        margin: 0 auto 0 0;
        background: var(--color-primary);
    }
    .text-link{
        display: inline-block;
        padding-bottom: 2px;
        position: relative;
        color: #171717;
        font-size: 12px;
        font-weight: 500;
        text-transform: uppercase;
        text-decoration: none;
        letter-spacing: 1px;
        opacity: .72;
        transition: all 0.17s var(ease-default);
    }
    .text-link:after{
        content: "";
        display: block;
        position: absolute;
        left: 0;
        bottom: -1px;
        width: 100%;
        height: 1px;
        background-color: #171717;
        transform: scaleX(0);
        transform-origin: right center;
        transition: transform .25s ease-out;
    }
    .text-link:hover{
        text-decoration: none;
        color: #171717;
        opacity: 1;
    }
    .text-link:hover:after{
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
        -webkit-transform-origin: left center;
        transform-origin: left center;
    }
    
    /*
     * Decorative elements
     */
    
    .decoration-1{
        position: absolute;
        bottom: -50px;
        left: -73px;
        color: var(-color-dark-1);
        pointer-events: none;
    }
    .decoration-2{
        position: absolute;
        top: -50px;
        right: 150px;
        color: #e0e0e0;
        pointer-events: none;
    }
    .decoration-3{
        position: absolute;
        bottom: -150px;
        right: 100px;
        color: var(-color-dark-1);
        pointer-events: none;
    }
    .decoration-4{
        position: absolute;
        bottom: -30px;
        left: -35px;
        color: #e0e0e0;
        pointer-events: none;
    }
    .decoration-5{
        position: absolute;
        bottom: 50px;
        right: -55px;
        color: var(-color-dark-1);
        pointer-events: none;
    }
    .decoration-6{
        position: absolute;
        top: -43px;
        right: -82px;
        color: var(-color-dark-1);
        pointer-events: none;
    }
    .decoration-7{
        position: absolute;
        top: -25px;
        left: -60px;
        color: var(-color-dark-1);
        pointer-events: none;
    }
    .decoration-8{
        position: absolute;
        top: -40px;
        left: -80px;
        color: var(-color-dark-1);
        pointer-events: none;
    }
    .decoration-9{
        position: absolute;
        top: -75px;
        left: -60px;
        color: var(-color-dark-1);
        pointer-events: none;
    }
    .decoration-10{
        position: absolute;
        bottom: -50px;
        right: -82px;
        color: var(-color-dark-1);
        pointer-events: none;
    }
    .decoration-11{
        position: absolute;
        bottom: 0;
        left: 0;
        transform: translateX(-100%);
        color: var(-color-dark-1);
        pointer-events: none;
    }
    .decoration-12{
        position: absolute;
        top: 100%;
        left: 0;
        margin-top: -8.217%;
        margin-left: -10.4651%;
        width: 27.7519%;
        padding-top: 27.7519%;
        background: var(--color-primary);
        border-radius: 100%;
        opacity: .037;
        pointer-events: none;
    }
    .decoration-14{
        position: absolute;
        top: 100%;
        left: 0;
        margin-top: -16%;
        margin-left: -23.4375%;
        width: 51.1875%;
        padding-top: 51.1875%;
        background: var(--color-primary);
        border-radius: 100%;
        opacity: .037;
        pointer-events: none;
    }
    .decoration-15{
        position: absolute;
        bottom: 100%;
        right: 0;
        margin-bottom: -16%;
        margin-right: -23.4375%;
        width: 51.1875%;
        padding-top: 51.1875%;
        background: var(--color-primary);
        border-radius: 100%;
        opacity: .037;
        pointer-events: none;
    }
    .decoration-16{
        position: absolute;
        top: 10px;
        left: 10px;
        color: var(-color-dark-1);
        pointer-events: none;
    }
    .decoration-17{
        position: absolute;
        bottom: 10px;
        right: 10px;
        color: var(-color-dark-1);
        pointer-events: none;
    }
    .decoration-20{
        position: absolute;
        bottom: -50px;
        right: -73px;
        color: var(-color-dark-1);
        pointer-events: none;
    }
    .decoration-21{
        position: absolute;
        top: -190px;
        left: 0;
        color: var(--color-primary);
        pointer-events: none;
    }
    .decoration-image-1{
        position: absolute;
        top: -30px;
        left: 30px;
        width: 14.8837%;
        overflow: hidden;
        border-radius: var(--border-radius-default);
        pointer-events: none;
        isolation: isolate;
        transform: translateZ(0);
    }
    .decoration-image-1 img{
        width: 100%;
    }
    .decoration-image-2{
        position: absolute;
        bottom: -30px;
        right: 30px;
        width: 19.3798%;
        overflow: hidden;
        border-radius: var(--border-radius-default);
        pointer-events: none;
        isolation: isolate;
        transform: translateZ(0);
    }
    .decoration-image-2 img{
        width: 100%;
    }
    
    /* ==============================
       Split section
       ============================== */
    
    .split-column-left{
        min-height: 60vh;
        overflow: hidden;
        padding-top: var(--section-padding-y);
        padding-bottom: var(--section-padding-y);
        padding-right: 70px;
        border-bottom-right-radius: var(--border-radius-default);
        isolation: isolate;
        transform: translateZ(0);
    }
    .split-column-right{
        min-height: 60vh;
        overflow: hidden;
        padding-left: 70px;
        border-top-left-radius: var(--border-radius-default);
        isolation: isolate;
        transform: translateZ(0);
    }
    .split-image-left{
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
        border-bottom-right-radius: var(--border-radius-default);    
        isolation: isolate;
        transform: translateZ(0);
    }
    .split-image-left > img{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .split-image-right{
        position: relative;
        width: 100%;
        height: 100%;
        overflow: hidden;
        border-top-left-radius: var(--border-radius-default); 
        isolation: isolate;
        transform: translateZ(0);
    }
    
    /* ==============================
       Team
       ============================== */
    
    .team-item-image{
        position: relative;
        overflow: hidden;
    }
    .team-item-image img{
        width: 100%;
        transition: all 0.4s ease;
    }
    .team-item-detail{ 
        display: inline-block;
        max-width: 90%;
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translate(-50%,10px) scale(.85);
        font-size: 16px;
        color: var(--color-primary);
        text-align: center;
        opacity: 0;
        z-index: 2;
        transition: all 0.4s var(--ease-elastic-1);
        will-change: transform;
    }
    .team-item-detail:before{
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        border-radius: var(--border-radius-default);
        box-shadow: var(--box-shadow);
    }
    .team-item-descr{
        position: relative;
        line-height: 1.3;
        text-align: center;
        transition: var(--transition-default);
    }
    .team-item-name{
        margin-top: 15px;
        font-size: 18px;
        font-weight: 500;
    }
    .team-item-role{
        margin-top: 5px;
        font-size: 15px;
        color: var(--color-primary);
    }
    .team-social-links{
        display: inline-flex;
        flex-direction: row;
        position: relative;
        font-size: 14px;
    }
    .team-social-links a{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        color: var(--color-primary);
        text-decoration: none;
        transition: var(--transition-default);
    }
    .team-social-links a:not(.team-social-links a:last-child){
        border-right: 1px solid rgba(0,0,0, .15);
    }
    .team-social-links a:hover{
        opacity: .65;
    }
    .team-social-links svg,
    .team-social-links img{
        width: 1em;
        height: 1em;
        fill: currentColor;
    }
    
    /* Hover state */
    .no-mobile .team-item:hover .team-item-detail,
    .team-item.js-active .team-item-detail{
        opacity: 1;
        transform: translate(-50%,0) scale(1);
    }
    
    .hs-status{
        position: absolute;
        bottom: 30px;
        left: var(--full-wrapper-margin-x);
        width: 180px;
        font-size: 16px;
        line-height: 1.375;
        padding-left: 10px;
        border-left: 2px solid currentColor;
    }
    
    .fullheight {
      min-height: calc(100vh - var(--main-margin-top));
    }
    
    /* ==============================
       Team 1
       ============================== */
    
    .team-1-column-sticky{    
        position: sticky;
        top: 0;
        left: 0;
        height: 100vh;
    }
    .team-1-item{
        text-align: center;
        padding: 36px 32px;
        background: #fff;
        box-shadow: var(--box-shadow-block);
        letter-spacing: 0;
    }
    .team-1-title{
        margin-top: 0;
        font-size: 24px;
        font-weight: 500;
        line-height: 1.1667;
        text-transform: uppercase;
        letter-spacing: 0.02em;
    }
    .team-1-image{
        margin: 0 auto 26px;
        max-width: 160px;
        overflow: hidden;
        border-radius: 80px;
        isolation: isolate;
        transform: translateZ(0);
    }
    .team-1-role{
        font-size: 17px;
        font-weight: 500;
        letter-spacing: 0.008em;
    }
    .team-1-descr{
        line-height: 1.4117;
        letter-spacing: -0.008em;
    }
    .team-1-social-links > a{
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        font-size: 16px;
        text-decoration: none;
        transition: color .27s var(--ease-default);
    }
    .team-1-social-links > a:before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        background: var(--color-primary);
        border-radius: 50%;
        opacity: 0;
        transform: scale(.3);
        transition: all .27s var(--ease-out-medium);
    }
    .team-1-social-links > a:hover{
        color: #fff;
    }
    .team-1-social-links > a:hover:before{
        opacity: 1;
        transform: none;
    }
    .team-1-social-links > a > *{
        position: relative;
        z-index: 1;
    }
    .team-1-social-links svg{
        display: block;
        width: 16px;
        height: 16px;
        fill: currentColor;
    }
    
    /* ==============================
       Services
       ============================== */
    
    .services-tabs{
        display: block;
        margin: 0;
        padding: 0 calc(40px + var(--services-text-overlap)) 0 0;
        border: none;
        font-size: 40px;
        font-weight: 500;
        line-height: 1.1;
        letter-spacing: -0.037em;
    }
    .services-tabs > li{
        display: block;
        margin-bottom: 0.175em;
    }
    .services-tabs > li > a{
        position: relative;
        display: inline-block;
        padding-bottom: .06em;
        text-decoration: none;
        opacity: .27;
        transition: var(--transition-default);
    }
    .services-tabs > li > a:before{
        content: "";
        display: block;
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 2px;
        background: currentColor;
        transform-origin: left center;
        transform: scaleX(0);
        transition: all 0.5s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    }
    .services-tabs > li a:hover{
        color: unset;
        opacity: .5;
    }
    .services-tabs > li a.active:before{
        transform: scaleX(1);
    }
    .services-tabs > li > a > .number{
        position: absolute;
        top: .8em;
        left: calc(100% + 0.5em);
        display: inline-block;
        font-size: 16px;
        font-weight: 700;
        letter-spacing: 0;
        opacity: 0;
        transform: translateX(5px);
        transition: var(--transition-default);
    }
    .services-tabs > li a.active{
        opacity: 1;
    }
    .services-tabs > li a.active > .number{
        opacity: 1;
        transform: translateX(0);
    }
    .services-content{
        display: flex;
        width: 100%;
    }
    .services-content-item{
        position: relative;
        width: 100%;
        min-height: 600px;
        transition: var(--transition-default);
    }
    img.services-image{
        position: relative;
    }
    @keyframes services-tabs-animation-1 {
        0% {
            opacity: 0;
            transform: translate(0, 40px);
        }
        100% {
            opacity: 1; 
            transform: translate(0, 0) scale(1);
        }
    }
    .services-content-item.active img.services-image{
        animation: services-tabs-animation-1 .7s var(--ease-out-long);
    }
    :root{
        --services-text-overlap: 220px;
    }
    .services-text{
        position: absolute;
        bottom: 60px;
        left: calc(-1 * var(--services-text-overlap));
        max-width: 410px;    
        z-index: 1;
    }
    .services-text-container{
        padding: 50px;
    }
    @keyframes services-tabs-animation-2 {
        0% {
            transform: translate(0, 20px) scale(.93);
        }
        100% { 
            transform: translate(0, 0) scale(1);
        }
    }
    .services-content-item.active .services-text{
        animation: services-tabs-animation-2 .7s var(--ease-out-long);
        will-change: transform;
    }
    .services-title{
        margin-bottom: 0.575em;
        letter-spacing: -0.01em;
    }
    .services-text .text-gray{
        color: var(--color-dark-4);
    }
    
    /* ==============================
       Features
       ============================== */
    
    .features-item{
        padding: 0 15px;
        text-align: center;
    }
    .features-icon{
        font-size: 72px;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    .features-icon svg{
        width: 1em;
        height: 1em;
    }
    .features-title{
        margin-bottom: 5px;
        font-size: 22px;
        font-weight: 400; 
    }
    .features-descr{
        font-size: 16px;
        font-weight: 400;
        opacity: .75;
    }
    
    /* ==============================
       Features 1
       ============================== */
    
    .features-1-number{
        position: absolute;
        top: 7px;
        left: -40px;
        font-size: 20px;
        font-weight: 500;
        text-align: right;
    }
    .features-1-icon{
        font-size: 64px;
        margin-bottom: 5px;
        line-height: 1;
    }
    .features-1-icon svg{
        width: 1em;
        height: 1em;
        fill: currentColor;
    }
    .features-1-title{
        font-size: 56px;
        font-weight: 500; 
        line-height: 1.1;
        letter-spacing: -0.05em;
    }
    .features-1-descr{
        font-size: 17px;
        line-height: 1.6470;
        letter-spacing: 0;
    }
    
    /* ==============================
       Features 2
       ============================== */
    
    .features-2-item{
        position: relative;
        padding: 60px 40px 50px 40px;
        text-align: center;
    }
    .features-2-item:before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 1px solid transparent;
        background:	#fff; 
      -webkit-background-clip: padding-box, border-box;
        background-origin: padding-box, border-box;
        transition: opacity .27s var(--ease-default);
        z-index: -1;
    }
    .features-2-label{
        position: absolute;
        top: 18px;
        left: 20px;
        font-size: 13px;
        line-height: 1.3;
        background: var(--color-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .features-2-icon{
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        width: 94px;
        height: 94px;
        margin: 0 auto 30px;
        overflow: hidden;
        font-size: 48px;
        line-height: 1;
        border-radius: 100%;
        isolation: isolate;
        transform: translateZ(0);
    }
    .features-2-icon:before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--color-primary);
        z-index: -1;
    }
    .features-2-icon i:before{
        background: var(--color-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .features-2-icon svg{
        width: 1em;
        height: 1em;
        fill: url(#gradient-horizontal) var(--color-primary);   
    }
    .features-2-title{
        margin-bottom: 15px;
        font-size: 19px;
        font-weight: 500; 
    }
    
    /* ==============================
       Numbers
       ============================== */
    
    .number-title{
        font-size: 80px;
        font-weight: 500;
        line-height: 1;
    }
    .number-descr{
        color: var(--color-primary);
    }
    
    /*
     * Numbers 1
     */
    
    .number-1-item{
        display: flex;
    }
    .number-1-title{
        display: flex;
        align-items: center;
        margin-right: 15px;
        color: var(--color-primary-1);
        font-size: 60px;
        font-weight: 500;
        line-height: 1;
        letter-spacing: -0.05em;
    }
    .number-1-descr{
        display: flex;
        align-items: center;
        font-size: 18px;
        line-height: 1.37;
        color: var(--color-primary);
    }
    
    /*
     * Numbers 2
     */
    
    .number-2-item{
        width: 100%;
        padding: 50px 30px;
        text-align: center;
        background: #fff;
        border-radius: var(--border-radius-default);
        box-shadow: var(--box-shadow-block);
    }
    .number-2-title{
        margin-bottom: 15px;
        font-size: 60px;
        font-weight: 500;
        line-height: 1;
        letter-spacing: -0.05em;
    }
    .number-2-descr{
        font-size: 16px;
        color: var(--color-primary);
    }
        
    /*
     * Numbers 3
     */
    
    .number-3-title{
        margin-bottom: 10px;
        color: var(--color-primary-1);
        font-size: 44px;
        font-weight: 500;
        line-height: 1;
        letter-spacing: -0.05em;
    }
    .number-3-descr{
        font-size: 16px;
        line-height: 1.37;
        color: var(--color-primary);
    }
    
    
    /* ==============================
       Steps
       ============================== */
    
    /*
     * Steps 1
     */
    
    .steps-1-title{
        position: relative;
        margin-bottom: 12px;
        padding-left: 40px;
        font-size: 28px;
        font-weight: 500;
        line-height: 1.3;
        
    }
    .steps-1-number{
        position: absolute;
        top: 0.15em;
        left: 0;
        display: inline-block;
        width: 30px;
        height: 30px;
        line-height: 30px;
        color: #fff;
        font-size: .642em;
        text-align: center;
        background: var(--color-primary);
        border-radius: 50%;
    }
    .steps-1-text{
        font-size: 18px;
        line-height: 1.667;
    }
    
    /*
     * Steps 2
     */
    
    .steps-2-item{
        position: relative;
        padding: 30px;
        color: var(--color-primary);
        border-radius: var(--border-radius-default);
        background: rgba(255,255,255, .92);
        box-shadow: var(--box-shadow-block);
        transition: all .2s var(--ease-default); 
    }
    .steps-2-item:hover{
        background: #fff;
        box-shadow: var(--box-shadow-block-strong);
    }
    .steps-2-icon{
        margin-top: 2px;
        margin-bottom: 30px;
        margin-right: 30px;
        font-size: 48px;
    }
    .steps-2-icon svg{
        display: block;
        width: 1em;
        height: 1em;
        fill: var(--color-primary-1);
    }
    .steps-2-intro{
        margin-top: -2px;
    }
    .steps-2-title{
        margin-bottom: 9px;
        font-size: 21px;
        font-weight: 500;
    }
    .steps-2-text{
        font-size: 18px;
        line-height: 1.5;
    }
    .steps-2-number{
        position: absolute;
        bottom: 10px;
        left: 10px;
        padding: 2px 10px;
        font-size: 14px;
        font-weight: 500;
        color: #fff;
        background: var(--color-primary-2);
        border-radius: 100px;
    }
    
    /* ==============================
       Call action 1 section
       ============================== */
    
    .call-action-1-images{
        position: relative;
        overflow: hidden;
    }
    .call-action-1-images img{
        width: 100%;
    }
    .call-action-1-image-1{
        width: 78.7234%;
        overflow: hidden;    
    }
    .call-action-1-image-2{
        position: absolute;
        top: 0;
        right: 0;
        display: flex;
        align-items: center;
        width: 36.2%;
        height: 100%;
    }
    .call-action-1-image-2-inner{    
        overflow: hidden;
        border-radius: 120px;
        isolation: isolate;
        transform: translateZ(0);
    }
    
    /* ==============================
       Call action 2 section
       ============================== */
    
    .call-action-2-images{
        position: relative;
        border: 1px solid transparent;
    }
    .call-action-2-image-1{
        position: absolute;
        top: 0;
        left: 0;
        width: 40%;
        overflow: hidden;
        transform: translateZ(0) rotate(0.0001deg);
    }
    .call-action-2-image-2{
        position: relative;
        width: 80%;
        margin: 120px auto;
        overflow: hidden;
        transform: translateZ(0) rotate(0.0001deg);
    }
    .call-action-2-image-3{
        position: absolute;
        bottom: 0;
        right: 0;
        width: 40%;
        overflow: hidden;
        transform: translateZ(0) rotate(0.0001deg);
    }
    .call-action-2-text dt{
        margin-bottom: 0.5em;
        font-size: 20px;
        font-weight: 500;
    }
    .call-action-2-text dd{
        margin-bottom: 2em;
        font-size: 17px;
        line-height: 1.625;
        color: var(--color-primary);
    }
    
    /* ==============================
       Call action 3 section
       ============================== */
    
    .call-action-3-images{
        position: relative;
        width: 100%;
        margin-top: 15px;
    }
    .call-action-3-image-1{
        width: 67.38%;
        margin-left: auto;
        overflow: hidden;
        -webkit-transform: translateZ(0) rotate(0.0001deg);
        transform: translateZ(0) rotate(0.0001deg);
    }
    .call-action-3-image-2-wrap{
        position: absolute;
        top: 0;
        left: 54px;
        width: 41.5%;
        height: 100%;
        -webkit-transform: translateZ(0) rotate(0.0001deg);
        transform: translateZ(0) rotate(0.0001deg);
    }
    .call-action-3-image-2{ 
        overflow: hidden;
        -webkit-transform: translateZ(0) rotate(0.0001deg);
        transform: translateZ(0) rotate(0.0001deg);
    }
    
    /* ==============================
       Call action 4 section
       ============================== */
    
    .call-action-4-images{
        position: relative;
        padding-bottom: 24.390%;
    }
    .call-action-4-images img{
        width: 100%;
    }
    .call-action-4-image-1{
        width: 73.170%;    
        overflow: hidden;
        border-radius: var(--border-radius-default);
        isolation: isolate;
        transform: translateZ(0);
    }
    .call-action-4-image-2{
        position: absolute;
        bottom: 0;
        right: 0;
        width: 73.170%;
        overflow: hidden;
        border-radius: var(--border-radius-default);
        isolation: isolate;
        transform: translateZ(0);
    }
    
    /* ==============================
       Images compositions
       ============================== */
    
    /*
     * Images composition 1
     */
    
    .composition-1{
        position: relative;
        isolation: isolate;
    }
    .composition-1 img{
        width: 100%;
    }
    .composition-1-image-1{
        position: relative;
        width: 65.6915%;
        overflow: hidden;
        border-radius: var(--border-radius-default);
        isolation: isolate;
        transform: translateZ(0);
        z-index: 1;
    }
    .composition-1-image-2{
        position: relative;
        width: 59.3085%;
        margin-top: -18.6170%;
        margin-left: auto;
        overflow: hidden;
        border-radius: var(--border-radius-default);
        isolation: isolate;
        transform: translateZ(0);
    }
    .composition-1-decoration-1{
        position: absolute;
        top: 0;
        left: 0;
        margin-top: -13.2978%;
        margin-left: -17.2872%;
        width: 42.0212%;
        opacity: .5;  
        z-index: -1;
    }
    .composition-1-decoration-2{
        position: absolute;
        top: 0;
        left: 0;
        margin-top: 45.2127%;
        margin-left: 24.734%;
        width: 26.8617%;
        opacity: .95;
        z-index: 1;
    }
    
    /*
     * Images composition 2
     */
    
    .composition-2{
        position: relative;
        overflow: hidden;
        isolation: isolate;
    }
    .composition-2 img{
        width: 100%;
    }
    .composition-2-image-1{
        position: relative;
        width: 58.5987%;
        margin-top: 29.2993%;
        overflow: hidden;
        border-radius: var(--border-radius-default);
        isolation: isolate;
        transform: translateZ(0);
    }
    .composition-2-image-2{
        position: relative;
        width: 71.0191%;
        margin-top: -40.1273%;
        margin-left: auto;
        overflow: hidden;
        border-radius: var(--border-radius-default);
        isolation: isolate;
        transform: translateZ(0);
    }
    .composition-2-decoration{
        position: absolute;
        bottom: 0;
        left: 0;
        margin-bottom: 10.9%;
        margin-left: 14.0127%;
        width: 32.1656%;
        opacity: .95;  
        z-index: 1;
    }
    
    /*
     * Images composition 3
     */
    
    .composition-3{
        position: relative;
        isolation: isolate;
    }
    .composition-3 img{
        width: 100%;
    }
    .composition-3-image-1{
        position: relative;
        width: 65.6915%;
        margin-left: auto;
        overflow: hidden;
        border-radius: var(--border-radius-default);
        isolation: isolate;
        transform: translateZ(0);
    }
    .composition-3-image-2{
        position: relative;
        width: 59.3085%;
        margin-top: -18.6170%;
        overflow: hidden;
        border-radius: var(--border-radius-default);
        isolation: isolate;
        transform: translateZ(0);
    }
    .composition-3-decoration-1{
        position: absolute;
        top: 0;
        left: 0;
        margin-top: 9.3085%;
        margin-left: 22%;
        width: 28.4574%;
        opacity: .95;
        z-index: 1;
    }
    .composition-3-decoration-2{
        position: absolute;
        top: 0;
        right: 0;
        margin-top: 26.0638%;
        margin-right: -19.1489%;
        width: 39.3617%;
        opacity: .7;  
        z-index: -1;
    }
    
    /*
     * Images composition 4
     */
    
    .composition-4{
        position: relative;
    }
    .composition-4 img{
        width: 100%;
    }
    .composition-4-image-1{
        position: relative;
        width: 86.0084%;
        margin-left: auto;
        overflow: hidden;
        border: 1px solid rgba(0,0,0, .15);
        border-top-left-radius: 100%;
        border-top-right-radius: 100%;
    }
    .composition-4-image-1-inner{
        overflow: hidden;
        border: 10px solid #fff;
        border-top-left-radius: 100%;
        border-top-right-radius: 100%;
    }
    .composition-4-image-2{
        position: relative;
        width: 59.7738%;
        margin-top: -36.6720%;
        overflow: hidden;
        background: #fff;
        border: 1px solid rgba(0,0,0, .15);
        border-bottom-left-radius: 75%;
    }
    .composition-4-image-2-inner{
        border: 10px solid #fff;
        overflow: hidden;
        border-bottom-left-radius: 75%;
    }
    .composition-4-decoration{
        position: absolute;
        bottom: 7%;
        right: 15.6704%;
        width: 36.8336%;
        opacity: .95;
        z-index: -1;
    }
    .composition-4-decoration-1{
        position: absolute;
        bottom: 6.025%;
        right: 7.97%;
        width: 25.1042%;
        opacity: .95;
        z-index: -1;
    }
    
    /*
     * Images composition 5
     */
    
    .composition-5{
        position: relative;
    }
    .composition-5 img{
        width: 100%;
    }
    .composition-5-image-1{
        position: relative;
        width: 91.0683%;
        overflow: hidden;
        background: #fff;
        border: 1px solid var(--color-secondary);
        border-top-left-radius: 100%;
        border-top-right-radius: 100%;
        isolation: isolate;
        transform: translateZ(0);
    }
    .composition-5-image-1-inner{
        overflow: hidden;
        border: 10px solid #fff;
        border-top-left-radius: 100%;
        border-top-right-radius: 100%;
        isolation: isolate;
        transform: translateZ(0);
    }
    .composition-5-image-2{
        position: relative;
        width: 49.387%;
        margin-top: -24.3432%;
        margin-left: auto;       
        overflow: hidden;
        border: 1px solid var(--color-secondary);
        border-bottom-right-radius: 75%;
        isolation: isolate;
        transform: translateZ(0);
    }
    .composition-5-image-2-inner{
        overflow: hidden;
        border: 10px solid #fff;
        border-bottom-right-radius: 75%;
        isolation: isolate;
        transform: translateZ(0);
    }
    .composition-5-decoration{
        position: absolute;
        bottom: 9.25%;
        left: -6.8%;
        width: 39.9299%;
        opacity: .95;
        z-index: -1;
    }
    
    /*
     * Images composition 6
     */
    
    .composition-6{
        position: relative;
    }
    .composition-6 img{
        width: 100%;
    }
    .composition-6-image{
        position: relative;
        overflow: hidden;
        -webkit-mask: url(data:image/svg+xml;base64,PHN2ZyAKIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCA2MzAgNjI2Ij4KICAgIDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTUxNC41MjUsNDkwLjEwNyBDNDE1LjI0Niw1MzEuODk2IDM0OC43NDcsNDE0Ljk1MCAyODkuMDQzLDQ5Ny43NjAgQzI0NC43NjEsNTU5LjE3NyAxNjcuOTM2LDY1OS40OTUgOTYuMDY3LDYxNC4yMjcgQy0zLjIyOCw1NTEuNjg0IC04OC4yMDUsMTE0Ljg5MSAxODMuMDg4LDE0LjQ5NiBDMjg2Ljg5MSwtMjMuOTE3IDQ5MS4zMjEsMTUuMjMxIDU4MS44ODEsMTY3LjAwMSBDNjgxLjcxNCwzMzQuMzEwIDYwNi44MTMsNDUxLjI2MCA1MTQuNTI1LDQ5MC4xMDcgWiIvPgo8L3N2Zz4=);
        -webkit-mask-type: alpha;
        -webkit-mask-size: 100% 100%;
        mask: url(data:image/svg+xml;base64,PHN2ZyAKIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIHZpZXdCb3g9IjAgMCA2MzAgNjI2Ij4KICAgIDxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgZD0iTTUxNC41MjUsNDkwLjEwNyBDNDE1LjI0Niw1MzEuODk2IDM0OC43NDcsNDE0Ljk1MCAyODkuMDQzLDQ5Ny43NjAgQzI0NC43NjEsNTU5LjE3NyAxNjcuOTM2LDY1OS40OTUgOTYuMDY3LDYxNC4yMjcgQy0zLjIyOCw1NTEuNjg0IC04OC4yMDUsMTE0Ljg5MSAxODMuMDg4LDE0LjQ5NiBDMjg2Ljg5MSwtMjMuOTE3IDQ5MS4zMjEsMTUuMjMxIDU4MS44ODEsMTY3LjAwMSBDNjgxLjcxNCwzMzQuMzEwIDYwNi44MTMsNDUxLjI2MCA1MTQuNTI1LDQ5MC4xMDcgWiIvPgo8L3N2Zz4=);
        mask-type: alpha;
        mask-size: 100% 100%;
    }
    .composition-6-decoration-1{
        position: absolute;
        top: 0.5%;
        right: 8.887%;
        width: 23.9682%;
    }
    .composition-6-decoration-2{
        position: absolute;
        bottom: -3.5%;
        left: 25.3968%;
        width: 23.9682%;
    }
    
    /*
     * Images composition 8
     */
    
    .composition-8{
        position: relative;
    }
    .composition-8-image{
        position: relative;
        width: 90.7936%;
        margin-left: auto;
        overflow: hidden;
        border-radius: 75px;
        isolation: isolate;
        transform: translateZ(0);
    }
    .composition-8-image img{
        width: 100%;
    }
    .composition-8-decoration-1{
        position: absolute;
        top: 0;
        left: 0;
    }
    .composition-8-decoration-2{
        position: absolute;
        bottom: 17%;
        left: 0;
    }
    
    /*
     * Images composition 9
     */
    
    .composition-9{
        position: relative;
    }
    .composition-9-image{
        position: relative;
        overflow: hidden;
        border: 1px solid var(--color-primary);
    }
    .composition-9-image img{
        width: 100%;
    }
    .composition-9-decoration-1{
        position: absolute;
        top: -20px;
        left: -40px;
        width: 100%;
        height: 100%;
        border: 1px solid currentColor;
    }
    
    /* ==============================
       Logotypes
       ============================== */
    
    /*
     * Logo carousel
     */
    
    .logo-item{
        height: 120px;
        text-align: center;
        opacity: .75;
        -webkit-transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
        transition: all 0.27s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    }
    .logo-item:hover{
        opacity: 1;
    }
    .logo-item img{
        position: relative;
        top: 50%;
        
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    
    /*
     * Logo grid
     */
    
    .client-list-wrap {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }
    .client-list-wrap li a,
    .client-list-wrap li span {
      height: 148px;
      line-height: 148px;
      width: 212px;
      display: inline-block;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: auto;
    }
    @media (max-width: 1399px) {
      .client-list-wrap li a,
      .client-list-wrap li span {
        width: 182px;
      }
    }
    @media (max-width: 991px) {
      .client-list-wrap li a,
      .client-list-wrap li span {
        width: 160px;
      }
    }
    @media (max-width: 767px) {
      .client-list-wrap {
        grid-template-columns: repeat(2, 1fr);
      }
      .client-list-wrap li a,
      .client-list-wrap li span {
        height: 100px;
        line-height: 100px;
      }
    }
    @media (max-width: 575px) {
      .client-list-wrap li a,
      .client-list-wrap li span {
        height: 80px;
        line-height: 80px;
      }
    }
    @media (max-width: 375px) {
      .client-list-wrap li a,
      .client-list-wrap li span {
        height: 70px;
        line-height: 70px;
        width: 130px;
      }
    }
    
    /* ==============================
       Post previews
       ============================== */
    
    .post-prev{
       display: flex;
       align-items: stretch;
    }
    .post-prev-container{
        position: relative;
        display: flex;
        flex-direction: column; 
    }
    .post-prev-container > *{
        position: relative;
    }
    .post-prev-container:before{
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        border: 1px solid var(--color-primary);
        border-radius: var(--border-radius-default);
        transition: var(--transition-default);
    }
    .post-prev-img{
        position: relative;
        overflow: hidden;
        border-top-left-radius: var(--border-radius-default);
        border-top-right-radius: var(--border-radius-default);
        isolation: isolate;
        transform: translateZ(0);
    }
    .post-prev-img a{
        -webkit-transition: all 0.2s cubic-bezier(0.300, 0.100, 0.580, 1.000);   
        transition: all 0.2s cubic-bezier(0.300, 0.100, 0.580, 1.000);
    }
    .post-prev-img img{
        width: 100%;
        transform: translateZ(0.1px);
        transition: all .5s var(--ease-out-short);
    }
    .post-prev-img a:hover img{
        transform: scale(1.05) translateZ(0.1px);
    }
    .post-prev-title{
        margin-bottom: 12px;
    }
    .post-prev-title a{
        color: var(--color-primary);
        text-decoration: none;  
        transition: all 0.27s var(--ease-default);
    }
    .post-prev-title a:hover{
        opacity: .65;
    }
    .post-prev-info{
        margin-top: auto;
    }
    .post-prev-info,
    .post-prev-info a{
        font-size: 15px;
        text-decoration: none;
        color: var(--color-primary);    
        transition: all 0.27s var(--ease-default);
    }
    .post-prev-info a:hover{
        text-decoration: underline;
    }
    .post-prev-info .icon-author{
        display: inline-flex;
        align-items: center;
        justify-content: center;
        vertical-align: middle;
        width: 22px;
        height: 22px;
        background: var(--color-secondary);
        border-radius: 50%;
    }
    .post-prev-info .icon-author:hover{
        text-decoration: none;
    }
    .post-prev-author-img{
        margin-top: -2px;
        margin-right: 5px;
        border-radius: 50%;
    }
    .post-prev-text{
        margin-bottom: 30px;
        font-size: 16px;
        line-height: 1.5;
        letter-spacing: normal;
        color: var(--color-primary);
    }
    
    /* ==============================
       Footer
       ============================== */
    
    .footer a{
        transition: all 0.17s var(--ease-default);
        text-decoration: none;
    }
    .footer a:hover{
        text-decoration: none;
        color: var(--color-hover) !important;
    }
    .footer-text a{
        text-decoration: none;
    }
    .footer-social-links{
        font-size: 16px;
    }
    .footer-social-links a{
        position: relative;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;    
        margin: 3px 10px;
        overflow: hidden; 
        font-size: 20px;
        text-align: center;
        text-decoration: none;
        color: #fff;
        transition: all .27s var(--ease-out-medium);
    }
    .footer-social-links a:before{
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        background: #fff;
        border-radius: 50%;
        opacity: 0;
        transform: scale(.3);
        transition: all .27s var(--ease-out-medium);
    }
    .footer-social-links a svg{
        position: relative;
        display: block;
        width: 1em;
        height: 1em;
        fill: currentColor;
    }
    .footer-social-links a i{
        position: relative;
    }
    .footer-social-links a:hover{
        color: var(--color-primary) !important;
    }
    .footer-social-links a:hover:before{
        opacity: 1;
        transform: none;
    }
    .footer-logo{
        max-width: 240px;
        width: 240px;
    }
    
    /* Link to top */
    a.link-to-top,
    footer .text-gray a.link-to-top{
        position: relative;
        display: flex;
      justify-content: center;
      align-items: center;    
        width: 48px;
        height: 48px;
        color: var(--color-primary);
        font-size: 24px;   
        text-decoration: none;
        transition: all 500ms cubic-bezier(0.250, 0.460, 0.450, 0.940);    
    }
    .link-to-top:before{
        display: block;
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        border-radius: 50%;
        background: #fff;
        box-shadow: var(--box-shadow); 
        z-index: 1;
        transition: all 0.4s var(--ease-elastic-2);
    }
    .link-to-top svg{
        position: relative;
        width: 1em;
        height: 1em;
        z-index: 1;
    }
    .link-to-top i,
    .link-to-top span{
        position: relative;
        transform: rotate(0.001deg) translateZ(0);
        z-index: 1;
    }
    .link-to-top:hover{
        text-decoration: none;
    }
    .link-to-top:hover:before{
        transform: scale(1.25);
    }
    
    a.link-to-top.color-light,
    a.link-to-top.color-light:hover{
        color: var(--color-primary-1) !important;
    }
    a.link-to-top.color-light:before{
        background: var(--color-primary-light-1);
        box-shadow: none;  
    }
    
    a.link-to-top.color,
    a.link-to-top.color:hover{
        color: #fff !important;
    }
    a.link-to-top.color:before{
        background: var(--color-primary-1);
        box-shadow: none;  
    }
    
    /* ==============================
       Blog
       ============================== */
    
    .blog-item{
        position: relative;
        margin-bottom: 80px; 
    }
    .blog-item .lead,
    .blog-item blockquote p{
        font-size: 130%;
    }
    .blog-item .lead{
        margin-bottom: 1.2em;
    }
    .blog-item blockquote{
        margin-bottom: 1.75em;
    }
    .blog-media{
        margin-bottom: 30px;
    }
    .blog-media img,
    .blog-media .video,
    .blog-media iframe{
        width: 100%;
    }
    .blog-item-title{
        margin: 0 0 .35em 0;
        padding: 0;
        line-height: 1.2;
    }
    .blog-item-title a{
        color: var(--color-primary);
        text-decoration: none;
    }
    .blog-item-title a:hover{
        color: var(--color-primary);
        text-decoration: none;
    }
    .blog-item-data{
        margin-bottom: 30px;
        font-size: 15px;
        color: var(--color-primary);
    }
    .blog-item-data a{
        color: var(--color-primary);
        text-decoration: none;
        white-space: nowrap;
        -webkit-transition: var(--transition-default);
        transition: var(--transition-default);
    }
    .blog-item-data a:hover{
        color: var(--color-primary);
        text-decoration: none;
    }
    .blog-item-data i{
        position: relative;
        top: -2px;
        vertical-align: middle;
    }
    .blog-item-body{
        margin-bottom: 37px;
        font-size: 20px;
    }
    .blog-item-body h1,
    .blog-item-body h2,
    .blog-item-body h3,
    .blog-item-body h4,
    .blog-item-body h5,
    .blog-item-body h6{
        margin: 1.3em 0 0.5em 0;
        line-height: 1.3;
    }
    .blog-item-body blockquote p:before{
        content: '“';
        position: absolute;
        top: -0.23em;
        left: -0.5em;
        font-family: Georgia, "Times New Roman", Serif;
        font-size: 2.38em;
        opacity: .25;
    }
    .blog-item-more{
        border: 1px solid var(--color-secondary);
        padding: 7px 15px 8px 15px;
        font-size: 18px;
        font-weight: 500;
        color: var(--color-primary);
        border-radius: var(--border-radius-default);
        transition: var(--transition-default);
    }
    .blog-item-more:hover{
        text-decoration: none;
        border-color: var(--color-primary);
    }
    .blog-item-more i{
        position: relative;
        top: -2px;
        vertical-align: middle;
    }
    a.blog-item-more{
        color: var(--color-primary);
        text-decoration: none;
    }
    a.blog-item-more:hover{
        color: var(--color-primary);
    }
    .blog-item-q{
        margin: 1em 0;
        padding: 0;
        letter-spacing: -0.02em;
        background: none;        
    }
    .blog-item-q p{
        position: relative;
        background: var(--color-secondary);
        padding: 17px 20px;
        font-size: 26px;
        font-style: normal;
        line-height: 1.6;
        border-radius: var(--border-radius-default);
    }
    .blog-item-q p a{
        color: var(--color-primary);
        text-decoration: none;
        transition: var(--transition-default);
    }
    .blog-item-q:hover a,
    .blog-item-q p a:hover{    
        color: var(--color-primary);
        text-decoration: none;
    }
    .blog-item-q p:before,
    .blog-item-q p:after{
        transition: var(--transition-default);
    }
    .blog-item-q p:before{
        content: '“';
        position: absolute;
        top: 10px;
        left: 10px;
    }
    .blog-item-q p:after{
        content: '”';
    }
    .blog-item-q p:hover:before,
    .blog-item-q p:hover:after{
        color: #777;
    }
    .blog-page-title{
        margin-bottom: 30px;
        letter-spacing: -0.02em;
        padding-bottom: 10px;
        border-bottom: 1px solid var(--color-secondary);
    }
    
    /*
     * Pagination
     */
    
    .pagination{
        font-size: 13px;
    }
    .pagination a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-width: 46px;
        margin-right: 5px;
        padding: 9px 16px;
        border: 1px solid var(--color-primary);
        color: var(--color-primary);
        font-size: 18px;
        text-align: center;
        text-decoration: none;
        border-radius: var(--border-radius-default);
        transition: var(--transition-default);
    }
    .pagination a:hover{
        text-decoration: none;
        border-color: var(--color-primary);
        color: var(--color-primary);
    }
    .pagination .page-item.active a,
    .pagination .page-item.active a:hover{
        border-color: var(--color-primary);
        color: var(--color-primary);
        cursor: default;
    }
    
    /* ==============================
       Pricing
       ============================== */
    
    .pricing-item{
        position: relative;
        display: flex;
        align-items: stretch;
        width: 100%;
        text-align: center;
    }
    .pricing-item-inner{
        display: flex;
        align-items: stretch;
        width: 100%;
        background: #fff;
        box-shadow: var(--box-shadow-block);
        transition: var(--transition-default);
    }
    .pricing-item-inner:hover{
        box-shadow: var(--box-shadow-block-strong);
        transform: translateY(-5px);
    }
    .pricing-item-marked-red{
        border: 2px solid var(--color-red);
    }
    .pricing-item-marked-blue{
        border: 2px solid var(--color-blue);
    }
    .pricing-item-marked-green{
        border: 2px solid var(--color-green);
    }
    .pricing-item-marked-yellow{
        border: 2px solid var(--color-yellow);
    }
    .pricing-item-highlight {
      position: absolute;
      right: 20px;
      top: -45px;
      width: 90px;
      height: 90px;
      border-radius: 100%;
      text-align: center;
    }
    .pricing-item-highlight img {
      width: 60px;
      height: 60px;
      margin: auto;
      display: block;
      transform: translateY(25%);
    }
    .pricing-wrap{
        position: relative;
        display: flex;
        flex-direction: column; 
        width: 100%;
        padding: 50px;
    }
    .pricing-icon{
        position: relative;
        margin-bottom: 17px;
        font-size: 72px;
        line-height: 1;
        z-index: 1;
    }
    .pricing-icon svg{
        width: 1em;
        height: 1em;
        fill: currentColor;
    }
    .pricing-title{
        position: relative;
        margin-bottom: 25px;
        font-size: 28px;
        font-weight: 500;
        letter-spacing: -0.02em;
        z-index: 1;
    }
    .pricing-features{
        max-width: 180px;
        margin: 0 auto 40px;    
        text-align: left;
        letter-spacing: 0;
    }
    .pr-list{
        margin: 0;
        padding: 0;
        color: var(--color-primary);
        font-size: 17px;
    }
    .pr-list li{
        margin-bottom: 12px;
        padding: 0;
        list-style: none;
    }
    .pr-list li:last-child{
        margin-bottom: 0;
    }
    .pricing-num{
        position: relative;
        display: inline-block;
        align-self: center;
        font-size: 60px;
        font-weight: 500;
        letter-spacing: -0.057em;
        line-height: 1;
    }
    .pricing-num sup{    
        position: absolute;
        top: 0.8em;
        left: -0.8em;
        font-size: 20px;
        font-weight: 400;
    }
    .pr-per{
        margin-bottom: 30px;
        color: var(--color-primary);
        font-size: 16px;
    }
    
    /* ==============================
       Shortcodes
       ============================== */
    
    /*
     * Lightbox modal
     */
    
    .mfp-inline-holder .mfp-content{
        max-width: 800px;
        margin: 0 auto;
        padding: 30px;
        background: #fff;
    }
    
    /*
     * Owl carousel
     */
    
    .owl-buttons{
        position: static;
    }
    .owl-prev,
    .owl-next{
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 27px;
        height: 57px;
        padding: 11px;
        box-sizing: content-box;
        font-size: 57px;
        text-align: center;
        color: var(--color-primary);
        opacity: .8;
        z-index: 6;  
        transition: var(--transition-default);
    }
    .owl-prev:hover,
    .owl-next:hover{
        opacity: 1;
    }
    .dark-content .owl-prev,
    .dark-content .owl-next{
        color: var(--color-primary);
    }
    .owl-prev{
        left: 20px;
    }
    .owl-next{
        right: 20px;
    }
    .owl-prev svg,
    .owl-next svg{
        display: block;
        height: 1em;
        filter: drop-shadow(0 1px 0 rgba(255,255,255, .35));
    }
    .light-content .owl-prev svg,
    .light-content .owl-next svg{
        color: #fff;
        filter: drop-shadow(0 1px 0 rgba(0,0,0, .35));
    }
    .dark-content .owl-prev svg,
    .dark-content .owl-next svg{
        color: var(--color-primary);
        filter: drop-shadow(0 1px 0 rgba(255,255,255, .35));
    }
    .dark-content .owl-prev svg,
    .dark-content .owl-next svg{
        color: var(--color-primary);
        filter: drop-shadow(0 1px 0 rgba(255,255,255, .35));
    }
    .owl-pagination{
        display: block;
        width: 100%;
        position: absolute;
        bottom: 30px;
        left: 0;
        text-align: center;
        line-height: 1;
    }
    .owl-page{
        display: inline-block;
        padding: 7px;
        position: relative;
        z-index: 1000 !important;
    }
    .owl-page span{
        width: 8px;
        height: 8px;
        display: block;
        background: none;
        border: 1px solid var(--color-primary);
        position: relative;    
        border-radius: 50%;   
        transition: var(--transition-default);
    }
    .owl-page.active span{    
        background: var(--color-primary);
        border: 1px solid var(--color-primary);
    }
    .light-content .owl-page span{
        border: 1px solid #fff;
        box-shadow: 1px 1px 0px rgba(0, 0, 0, .1);    
    }
    .light-content .owl-page.active span{    
        background: #fff;
        border: 1px solid #fff;
    }
    .dark-content .owl-page span{
        border: 1px solid var(--color-primary);
        box-shadow: none;    
    }
    .dark-content .owl-page.active span{    
        background: var(--color-primary);
        border: 1px solid var(--color-primary);
    }
    
    /* Features slider */
    .item-carousel .owl-prev{
        left: -30px;
    }
    .item-carousel .owl-next{
        right: -30px;
    }
    
    .item-carousel{
        padding-bottom: 70px;
    }
    .item-carousel .owl-pagination{
        bottom: 0;
    }
    .item-carousel .owl-item{
        padding: 0 50px;
    }
    
    /* Work slider & sontent slider */
    .work-full-slider .owl-pagination,
    .content-slider .owl-pagination{
        bottom: 15px;
    }
    .work-full-slider img{
        width: 100%;
    }
    
    /* Testimonials slider 1 */
    .testimonials-slider-1 .owl-item{
        transition: all 1s var(--ease-out-long);
    }
    .testimonials-slider-1 .owl-item:not(.active){
        opacity: 0;
        transform: scale(0.75);
    }
    .testimonials-slider-1 .owl-buttons{
        position: absolute;
        right: 0;
        bottom: 0;
        z-index: 10;
    }
    .testimonials-slider-1 .owl-prev,
    .testimonials-slider-1 .owl-next{
        display: inline-flex;
        justify-content: center;
        align-items: center;
        position: static;
        width: 48px;
        height: 48px;
        padding: 0;
        font-size: 24px;
        text-align: center;
        color: var(--color-primary);
        opacity: 1;
        transform: translate(0,0);
    }
    .testimonials-slider-1 .owl-next{
        margin-left: 10px;
    }
    .testimonials-slider-1 .owl-prev svg,
    .testimonials-slider-1 .owl-next svg{
        position: relative;
        width: 1em;
        height: 1em;
    }
    .testimonials-slider-1 .owl-prev:before,
    .testimonials-slider-1 .owl-next:before{
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        border-radius: 50%;
        box-shadow: var(--box-shadow);
        transition: all 0.4s var(--ease-elastic-2);
    }
    .testimonials-slider-1 .owl-prev:hover:before,
    .testimonials-slider-1 .owl-next:hover:before{
        box-shadow: var(--box-shadow-strong);
        transform: scale(1.07);
    }
    .testimonials-slider-1 blockquote{
        position: relative;
        margin: 0 0 1.5em 0;
        padding-left: 1.9778em;
        font-size: 46px;
        border: none;
        background: none;    
    }
    .testimonials-slider-1 .blockquote-icon{
        position: absolute;
        top: 0.15em;
        left: 0;
        width: .88em;
        height: .88em;
        background: #fff;
        border-radius: 50%;
        font-family: Georgia, serif;
        font-size: 1.5em;
        line-height: 1.45em;
        text-align: center;
    }
    
    /* Owl Carousel Animation */
    
    html:not(.mobile) .owl-animate-fadeInUp{
        opacity: 0;
        transform: translateY(37px) translateZ(0);
        transition: all 1s;
    }
    .owl-item.active .owl-animate-fadeInUp{
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    
    html:not(.mobile) .owl-animate-fadeInDown{
        opacity: 0;
        transform: translateY(-37px) translateZ(0);
        transition: all 1s;
    }
    .owl-item.active .owl-animate-fadeInDown{
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    
    @media print{
        .owl-animate-fadeInUp,
        .owl-animate-fadeInDown{
            -webkit-transition: none !important;
            transition: none !important;
        }
    }
    
    .owl-delay-200{
        transition-delay: .20s !important;
    }
    .owl-delay-250{    
        transition-delay: .25s !important;
    }
    .owl-delay-300{    
        transition-delay: .3s !important;
    }
    .owl-delay-350{    
        transition-delay: .35s !important;
    }
    .owl-delay-400{    
        transition-delay: .4s !important;
    }
    .owl-delay-450{    
        transition-delay: .45s !important;
    }
    .owl-delay-500{    
        transition-delay: .5s !important;
    }
    .owl-delay-550{    
        transition-delay: .55s !important;
    }
    .owl-delay-600{    
        transition-delay: .6s !important;
    }
    .owl-delay-650{    
        transition-delay: .65s !important;
    }
    .owl-delay-700{    
        transition-delay: .7s !important;
    }
    .owl-delay-750{    
        transition-delay: .75s !important;
    }
    .owl-delay-800{    
        transition-delay: .8s !important;
    }
    .owl-delay-850{    
        transition-delay: .85s !important;
    }
    .owl-delay-900{    
        transition-delay: .9s !important;
    }
    .owl-delay-950{    
        transition-delay: .95s !important;
    }
    .owl-delay-1000{    
        transition-delay: 1s !important;
    }
    
    /*
     * Testimonials 4
     */
    
    .testimonials-4-item{
        position: relative;
        padding: 30px;
        background: #fff;
        border-radius: var(--border-radius-default);
        box-shadow: var(--box-shadow-block);
    }
    .testimonials-4-text{
        margin-bottom: 0;
    }
    .testimonials-4-text p{
        color: var(--color-primary);
        font-size: 17px;
        line-height: 1.529;
        letter-spacing: 0;
    }
    .testimonials-4-author{
        color: var(--color-primary);
        font-size: 16px;
        font-weight: 500;
        line-height: 1.45;
        letter-spacing: 0;
    }
    .testimonials-4-author .small{
        font-size: 16px;
        font-weight: 400;
    }
    .testimonials-4-author-img{
        margin-top: 1px;
        margin-right: 10px;
        overflow: hidden;
        border-radius: 50%;
        isolation: isolate;
        transform: translateZ(0);
    }
    .testimonials-4-icon{
        position: absolute;
        top: 10px;
        left: 10px;
        font-size: 30px;
        line-height: 1;
        opacity: .075;
    }
    
    /*
     * Testimonials 5
     */
    
    .testimonials-5-stars{
        display: flex;
        justify-content: center;
        margin-bottom: 22px;
        color: var(--color-primary-1);
        font-size: 22px;
    }
    .testimonials-5-text{
        margin-bottom: 20px;
        font-size: 24px;
        line-height: 1.5;
    }
    .testimonials-5-caption{
        font-size: 18px;
    }
    
    /*
     * Testimonials 6
     */
    
    .testimonials-6-item{
        position: relative;
        margin-bottom: 0;
    }
    .testimonials-6-icon{
        position: absolute;
        top: -0.21em;
        left: -0.3em;
        font-family: Georgia, Times, Serif;
        font-size: 11em;
        font-weight: 700;
        line-height: 1;
        color: var(--color-primary-light-1);
    }
    .testimonials-6-text{
        margin-bottom: 0;
        line-height: 1.75em;
    }
    
    /*
     * Tabs
     */
    
    .tpl-tabs{
        border-color: var(--color-secondary);
    }
    .tpl-tabs > li > a,
    .tpl-tabs > li > a:hover{
        color: var(--color-primary) !important;
        text-decoration: none;
    }
    .tpl-tabs > li > .nav-link.active{
        color: var(--color-primary) !important;
        border-color: var(--color-secondary) var(--color-secondary) #fff;
    }
    .tpl-tabs-cont{
        padding: 0;
        line-height: 1.8;
    }
    
    /*
     * Tabs minimal
     */
    
    .tpl-minimal-tabs{
        display: inline-block;
        font-size: 15px;
        font-weight: 500;
        text-transform: uppercase;
        text-align: center;
        letter-spacing: 1px;    
        border: none;
    }
    .tpl-minimal-tabs > li{
        display: inline-block;
        padding: 0 5px;
        background: none !important;
    }
    .tpl-minimal-tabs > li > a,
    .tpl-minimal-tabs > li > a:focus{
        padding: 5px 20px 5px;
        text-decoration: none;
        color: var(--color-primary);
        background: none;
        border: 1px solid transparent;
        border-radius: 100px !important;
    }
    .tpl-minimal-tabs > li > a:hover{
        background: none;
        border-color: var(--color-secondary) !important;
        color: var(--color-primary);
    }
    .tpl-minimal-tabs li a.active,
    .tpl-minimal-tabs li a.active:hover{
        border: 1px solid var(--color-primary) !important;
        background: none !important;
        color: var(--color-primary) !important;
        cursor: default;
    }
    
    /*
     * Tabs alternative
     */
    
    .tpl-alt-tabs{
        display: flex;
        justify-content: center;
        padding-bottom: 10px;
        text-align: center;  
        border: none;
    }
    .tpl-alt-tabs > li{
        width: 220px;
        display: inline-flex;
        align-items: stretch;
        margin-bottom: 30px;
        vertical-align: top;
        float: none;    
        padding: 0;    
        background: none !important;
        font-size: 20px;
        font-weight: 500;
        letter-spacing: -0.005em;
    }
    .tpl-alt-tabs > li > a{
        position: relative;
        width: 100%;
        padding-top: 0;
        padding-bottom: 30px;
        text-decoration: none;
        color: var(--color-primary);
        background: none !important;
        border: none !important;
        border-radius: 0 !important;
    }
    .tpl-alt-tabs > li > a:before{
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        display: block;
        width: 100%;
        height: 1px;
        background: currentColor;
        opacity: .15;
        transition: all .27s var(--ease-default);
    }
    .tpl-alt-tabs > li > a:after{
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        display: block;
        width: 100%;
        height: 1px;
        background: currentColor;
        transform: scale(0);
        transform-origin: 0 50%;
        transition: all .37s var(--ease-out-medium);
    }
    .tpl-alt-tabs > li > a:hover,
    .tpl-alt-tabs > li > a:focus{
        background: none;
        color: var(--color-primary);
    }
    .tpl-alt-tabs > li > a .alt-tabs-icon{
        transition: all .27s var(--ease-out-medium);
    }
    .tpl-alt-tabs > li > a:not(.active):hover .alt-tabs-icon{
        transform: translateY(-8px);
    }
    .tpl-alt-tabs > li > a.active,
    .tpl-alt-tabs > li > a.active:hover,
    .tpl-alt-tabs > li > a.active:focus{
        color: var(--color-primary) !important;
        cursor: default;
    }
    .tpl-alt-tabs > li > a.active:after,
    .tpl-alt-tabs > li > a.active:hover:after,
    .tpl-alt-tabs > li > a.active:focus:after{
        transform: none;
    }
    .alt-tabs-icon{
        display: block;
        margin: 0 auto 5px auto;
        width: 1em;
        height: 1em;
        font-size: 64px;
        text-align: center;
        line-height: 1.3;
        transition: all .17s var(--ease-default);
    }
    .alt-tabs-icon svg{
        display: block;
        width: 1em;
        height: 1em;
        fill: currentColor;
    }
    .alt-tabs-icon img{
        width: 100%;
    }
    .accordion{
         border-bottom: 1px solid var(--color-primary);
     }
     .accordion > dt{
         margin-bottom: 0;
         font-size: 20px;
         font-weight: 500;
     }
     .accordion > dt > a{
         display: block;
         position: relative;
         color: var(--color-dark-1);
         text-decoration: none;
         padding: 20px 30px 20px 0;
         border-top: 1px solid var(--color-primary);   
         transition: var(--transition-default);
     }
     .accordion > dt > a:hover{
         text-decoration: none;
     }
     .accordion > dt > a.active{
         cursor: default;
     }
     .accordion > dt > a:after{
         content: "\e91f"; 
         display: block;
         width: 1em;
         height: 1em;
         line-height: 1em;
         position: absolute;
         top: 50%;
         right: 3px;
         transform: translateY(-50%);
         color: var(--color-primary);
         font-family: 'icons' !important;
         font-size: 22px;
         text-align: center;
         transition: var(--transition-default);
     }
     .accordion > dt > a.active:after,
     .accordion > dt > a.active:hover:after{
         transform: translateY(-50%) rotate(-180deg);
     }
     .accordion > dd{
         margin-bottom: 1.55em;
         font-size: 18px;
         line-height: 1.625;
     }
    .toggle{
         border-bottom: 1px solid var(--color-primary);
     }
     .toggle > dt{
         margin-bottom: 0;
         font-size: 20px;
         font-weight: 500;
     }
     .toggle > dt > a{
         display: block;
         position: relative;
         color: var(--color-dark-1);
         text-decoration: none;
         padding: 20px 30px 20px 0;
         border-top: 1px solid var(--color-primary);   
         transition: var(--transition-default);
     }
     .toggle > dt > a:hover{
         text-decoration: none;
     }
     .toggle > dt > a:after{
         content: "\e91f"; 
         display: block;
         width: 1em;
         height: 1em;
         line-height: 1em;
         position: absolute;
         top: 50%;
         right: 3px;
         transform: translateY(-50%);
         color: var(--color-primary);
         font-family: 'icons' !important;
         font-size: 22px;
         text-align: center;
         transition: var(--transition-default);
     }
     .toggle > dt > a.active:after,
     .toggle > dt > a.active:hover:after{
         transform: translateY(-50%) rotate(-180deg);
     }
     .toggle > dd{
         margin-bottom: 1.55em;
         font-size: 18px;
         line-height: 1.625;
         opacity: 1;
     }
    .skip-to-content{
        position: absolute;
        top: 3px;
        left: 3px;
        padding: 20px 40px;
        color: #ffffff;
        background: var(--color-primary);
        -webkit-transform: translateY(-150%);
        -moz-transform: translateY(-150%);
        transform: translateY(-150%);
        z-index:100000;
    }
    .skip-to-content:hover,
    .skip-to-content:focus,
    .skip-to-content.focus-visible{
        color: #ffffff;
        opacity: 1;
        background: #000;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
    
    /* ==============================
       Small desktop
       ============================== */
    @media only screen and (max-width: 1440px) {
        .decoration-1{
            left: -30px;
        }
    }
    @media only screen and (max-width: 1366px) {	
        
        root{
            --full-wrapper-margin-x: 30px;
        }
        .container{
            max-width: 1260px;
        }
        .row.gx-huge{
            --bs-gutter-x: calc(-6.527rem + 27.85vw);
        }
        .inner-nav ul li{
            margin: 0 16px;
        }
        .mn-has-multi{
            padding: 7px;
        }
        .mn-sub-multi {
            width: 196px !important;
        }
        .inner-nav ul li .mn-sub li a{
            padding: 10px 14px;
        }
        .stack-images{
            position: relative;
            padding: 12.5% 0;
        }
        .lead-alt{
            font-size: calc(1.896rem + 1.15vw);
        }
        .hs-line{
            height: 87vh;
        }
        .hs-line-14{
            font-size: calc(1.297rem + 7.27vw);
        }
        .hs-paragraph-1{
            top: 11.713vw;
        }
        .hs-paragraph-2{
            top: 11.7130vw;
            right: 3.66vw;
        }
        .hs-descr{
            font-size:  calc(1.227rem + 1.05vw);
        }
        
        .services-2-button{
            padding: 4.2459vw;
        }
        .services-2-title{
            font-size: 6.0029vw;
        }
        .services-2-number{
            font-size: 1.9vw;
        }
        .services-2-image{
            max-width: 15.959vw;
        }
        .services-2-descr{
            max-height: 2.1962vw;
            margin-top: -2.1962vw;
            margin-left: 7.3206vw;
            padding: 0 2.9282vw;
            font-size: calc(0.83rem + 0.2vw);
        }
        .services-2-button-close{
            width: 4.39238vw;
            height: 4.39238vw;
        }
        .services-3-item{
            padding: 40px calc(0.868rem + 1.91vw);
        }
        .services-4-title > b{
            font-size: calc(0.521rem + 1.15vw);
        }
        .services-tabs{
            font-size: calc(1.194rem + 1.53vw);
        }
        .services-tabs > li{
            margin-bottom: 0.1em;
        }
        .services-text{
            bottom: 30px;
        }
        .post-prev-container > *:last-child{
            padding-bottom: calc(0.459rem + 2.39vw);
        }
        .post-prev-1-title{
            font-size: calc(0.684rem + 0.96vw);
        }
        .post-prev-1-title.large{
            font-size: calc(0.789rem + 1.27vw);
        }
        .post-prev-2-title{
            font-size: calc(0.98rem + 1.2vw);
        }
        .contact-1-text{
            font-size: calc(0.692rem + 1.39vw);
        }
        .accordion-1 > dt{
            font-size: calc(0.632rem + 1.53vw);
        }
        .portfolio-2-title{
            font-size: calc(1.463rem + 1.43vw);
        }
        .portfolio-3-title{
            font-size: calc(0.975rem + 3.25vw);
        }
        .testimonials-slider-1 blockquote {
            font-size: calc(1.079rem + 2.1vw);
        }
        .testimonials-slider-2 blockquote{
            padding-left: 16.1054vw;
        }
        .testimonials-slider-2 .blockquote-icon{
            width: 13.9092vw;
            height: 7.3206vw;
            font-size: 20.4978vw;
        }
        .testimonial .blockquote-icon {
          width: .66em;
          height: .66em;
          font-size: 1.5em;
          line-height: 1.25em;
        }
        .testimonial {
          padding-left: 1.45em;
        }
        .testimonials-slider-2 blockquote p{
            font-size: calc(0.81rem + 2.2vw);
        }
        .testimonials-3-text p{
            font-size: calc(1.214rem + 0.33vw);
        }
        .services-5-title{
            font-size: calc(1.26rem + 0.57vw);
        }
        .big-icon-link,
        .big-icon-link-gradient{
            font-size: calc(1.653rem + 1.58vw);
        }
        .testimonials-6-item,
        .testimonials-6-text{
            font-size: calc(0.915rem + 1.05vw);
        }    
        .ci-text.large{
            font-size: calc(0.904rem + 0.48vw);
        }
        .fw-menu-large{
            font-size: calc(0.915rem + 1.05vw);
        }    
        .features-1-title{
            font-size: calc(1.541rem + 2.29vw);
        }
        .testimonials-5-text{
            font-size: calc(1.174rem + 0.38vw);
        }
    }
    @media only screen and (max-width: 1200px) {
        
        .inner-nav ul{
            font-size: 16px;
        }	
        .inner-nav ul li{
            margin: 0 11px;
        }
        .inner-nav ul li .mn-sub li a{
            padding: 8px 10px;
            font-size: 14px;
        }
        .mn-sub-multi {
            width: 180px !important;
        }
        .team-social-links a{
            width: 30px;
            height: 30px;
        }    
        .number-title{
            font-size: calc(2.273rem + 3.64vw);
        }
        .item-carousel .owl-item{
            padding: 0 3vw;
        }
    }
    @media only screen and (max-width: 1199px) {
        
        main{
            overflow: hidden;
        }    
        .team-1-column-sticky{    
            position: static;
            height: auto;
        }
        
    }
    /* ==============================
       Tablet landskape
       ============================== */
    @media only screen and (max-width: 1024px) {
      
        .testimonials-slider-1 blockquote p{
            font-size: 18px;
        }
        .split-column-left,
        .split-column-right{
            padding-top: 120px; 
            padding-bottom: 120px;       
        }
        .owl-pagination{
            bottom: 25px;
        }  
    }
    @media only screen and (max-width: 991px) {
         
        .owl-prev,
        .owl-next{
            height: 37px;
            font-size: 37px;
        }
        .marquee-style-2{
            font-size: 22px;
            height: 60px;
            line-height: 60px;
        }
        :root{
            --services-text-overlap: 0;
        }
        .services-content-item{
            min-height: 200px;
        }
        .services-text{
            padding: 0;
        }
        img.services-image{
            align-self: flex-end;
            width: 60%;
            max-width: 520px;
            margin: 0 0 0 35%;
        }
        .tpl-alt-tabs > li{
            width: 200px;
        } 
        .team-item-name{
            font-size: 18px;
        }
        .features-icon{
            font-size: 64px;
        } 
        .features-title{
            font-size: 20px;
        }
        .features-descr{
            font-size: 16px;
        }
        .alt-features-grid{
            margin-top: -30px;
        } 
        .alt-features-item{
            margin-top: 30px;
        }
        .contact-1-left,
        .contact-1-right{
            border-radius: 20px;
        }
        .split-column-left{
            padding-right: 30px;
            border-radius: 0;
        }
        .split-column-right{
            padding-left: 30px;
            border-radius: 0;
        }
        .split-image-left,
        .split-image-right{
            overflow: visible;
            border-radius: 0;
        }
        .split-image-left img,
        .split-image-right img{
            position: relative;
            height: auto;
        }    
        .call-action-2-images {
            margin: 0;
        }
        .call-action-3-image-2-wrap{
            left: 0;
        }
    
    }
    /* ==============================
       Tablet Portrait
       ============================== */  
    @media only screen and (max-width: 768px) {
        .superhead-sm { font-size: 30px; margin-bottom: 15px; }
        .superhead-md { font-size: 40px; margin-bottom: 20px; }
        .superhead-lg { font-size: 50px; margin-bottom: 25px; }
        .superhead-xl { font-size: 60px; margin-bottom: 30px; }
        h1, .h1 { font-size: 32px; }
        h2, .h2 { font-size: 28px; }
        h3, .h3 { font-size: 24px; }
        h4, .h4 { font-size: 22px; }
        h5, .h5 { font-size: 19px; }
        h6, .h6{ font-size: 15px; }
        .size-18{ font-size: 16px !important; }
        .size-20{ font-size: 18px !important; }
        .size-32{ font-size: 26px !important; }
        .size-36{ font-size: 30px !important; }
        .size-44{ font-size: 34px !important; }
        .section-features li{
            font-size: 11px;
            padding: 8px 8px 6px 8px;
         }
        .owl-pagination{
            bottom: 17px;
        }  
        .alt-service-grid{
            margin-top: -30px;
        }
        .alt-service-item{
            margin-top: 30px;
        }   
        .blog-item{
            margin-bottom: 50px;
        }
        .blog-item-title{
            font-size: 28px;
        }
        .blog-item-title .small{
            font-size: 15px;
        }
        .blog-media{
            margin-bottom: 15px;
        }
        .blog-item-body .small{
            font-size: 13px;
        }
        .decoration-3{
            bottom: -125px;
            right: -35px;
        }    
    }
    @media only screen and (max-width: 767px) {
        .fixed-height-small{
            height: 300px;
            min-height: 300px;
        }
        .fixed-height-medium{
            height: 350px;
            min-height: 350px;
        }
        .fixed-height-large{
            height: 400px;
            min-height: 400px;
        }
        .mark-decoration-1 > svg{
            bottom: -0.55em;
        }
        .services-text{
            position: relative;
            bottom: 0;
            left: 0;
            max-width: 100%;
            margin-bottom: 10px;
        }
        .services-text-container{
            padding: 30px;
        }
        img.services-image{
            max-width: unset;
            width: 100%;
            margin: 0;
        }          
        .text-mobile{
            font-size: 110%;
            line-height: 1.2;
        }
        .fw-social-inline-item{
            display: block;
        }
        .testimonials-3-item{
            padding: 24px;
        }
        .testimonials-3-text p{
            font-size: 18px;
        }
        .pricing-wrap{
            padding: 25px;
        }
        .composition-7{
            margin-top: -30px;
        }
        .composition-7-image-1,
        .composition-7-image-2,
        .composition-7-image-3,
        .composition-7-image-4{
            width: 46.5%;
            margin-top: 30px;
        }
        .testimonials-6-icon{
            font-size: 7em;
        }
        .services-8-icon{
            margin-bottom: 25px;
        }
        
    }
    /* ==============================
       Phone
       ============================== */  
    @media only screen and (max-width: 575px) { 
    
        .form input.newsletter-field,
        .form .newsletter-field-wrap{
            display: block;
            width: 100%;
            margin-right: 0;
            margin-bottom: 10px;
        }
        .form .newsletter-button{
            display: block;
            width: 100%;
        }
        .contact-2-icon{
            width: 36px;
        }
        .contat-2-intro{
            padding: 15px 10px;
        }
        .contact-2-text{
            font-size: 16px;
        }
         
    }   
    @media only screen and (max-width: 480px) {
        .full-wrapper{
            --full-wrapper-margin-x: 20px;
        }
        .container{
            padding-left: 20px;
            padding-right: 20px;
        }
        .lead{
            font-size: 120%;
        }
        .form textarea{
            min-height: 200px !important; 
        }
        .tpl-tabs {
            border: none;
        }
        .tpl-tabs li .nav-link.active{
            border-color: var(--color-secondary);
            border-radius: var(--border-radius-default);
        }
        .blog-item-body blockquote p:before{
            display: block;
            margin-top: 1em;
            position: static;
            top: 0;
            left: 0;
            font-size: 2.58em;
            line-height: 0;
            opacity: 1;
        }  
        .owl-pagination{
            bottom: 5px !important;
        }    
        .owl-page{
            padding-left: 8px;
            padding-right: 8px;
        }
        .owl-prev{
            left: 0;
        }
        .owl-next{
            right: 0;
        }
        .tpl-minimal-tabs > li{
            padding: 0;
        }
        .tpl-minimal-tabs > li > a{
            padding: 6px 10px 5px;
        }
        .tpl-alt-tabs{
            font-size: 12px;
            letter-spacing: 0.1em;
        }
        .tpl-alt-tabs > li{
            width: 120px;
            font-size: 16px;
        }
        .alt-tabs-icon{
            font-size: 32px;
        }
        .call-action-2-image-2{
            margin: 60px auto;
        }
        .post-prev-3-intro{
            padding: 25px 20px;
        }
        .composition-8-image{
            margin-bottom: 60px;
            border-radius: 50px;        
        }
        .composition-8-decoration-2{
            bottom: -60px;
        }
        .blog-container{
            margin-top: 30px;
            margin-bottom: 30px;
        }    
        .blog-item-q p{
            font-size: 20px;
        }
        .pagination a{
            min-width: 32px;
            margin-right: 3px;
            padding: 6px 8px;
            font-size: 16px;
        }  
        .separ-space{
            display: block;
            height: 10px;
        }
        .tpl-tabs > li{
            display: block;
            float: none;
            width: 100%;
        }
        .tpl-tabs > li.active a{
            background: #f5f5f5 !important;
        }
        .mark-decoration-1:before{
            bottom: -0.27em;
        }
        .blog-item-title{
            font-size: 22px;
        }
        .blog-item-body{
            margin-bottom: 37px;
            font-size: 18px;
        }
    }
    /* ==============================
       Max Height 768
       ============================== */
    @media only screen and (max-height: 768px) {
        .stack-images{
            padding: 16% 0;
        }
    }
    /* ==============================
       Max Height 374
       ============================== */
    @media only screen and (max-height: 374px) {    
        .min-height-80vh,
        .min-height-90vh,
        .min-height-100vh{
            min-height: 374px;
        }
        
    }
    /* ==============================
       IOS Background Fix
       ============================== */ 
    .mobile .page-section, .mobile .home-section, .mobile .small-section{
        background-attachment: scroll !important;
    }
    /*
     * iPad Pro
     */
    @media only screen and (max-height: 1366px) and (-webkit-min-device-pixel-ratio: 1.5) {
        html:not(.no-touch) .page-section, html:not(.no-touch) .home-section, html:not(.no-touch) .small-section{
            background-attachment: scroll !important;
        }
    }
    /* ==============================
       Internet Explorer Fix
       ============================== */ 
    @media all and (-ms-high-contrast:none){
         
        .min-height-80vh{
            height: 80vh;
        } 
        .min-height-90vh{
            height: 90vh;
        } 
        .min-height-100vh{
            height: 100vh;
        }
        .fixed-height-large{
            height: 800px;
        } 
        .fixed-height-medium{
            height: 700px;
        } 
        .fixed-height-small{
            height: 600px;
        }
         
    }
    /* ==============================
       Print Styles Fix
       ============================== */
    @media print {
        
        *{
            color: #000 !important;
            background: #fff !important;
        }
        .main-nav{
            display: none;
        }
        img{
            display: block;
        }    
        
    }
    
    /* ==============================
     Icons
     ============================== */
    
    @font-face{font-family:icons;src:url('../fonts/icons.ttf') format('truetype'),url('../fonts/icons.woff') format('woff'),url('../fonts/icons.svg#icons') format('svg');font-weight:400;font-style:normal;font-display:block}[class*=" mi-"],[class^=mi-]{font-family:icons!important;speak:never;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;letter-spacing:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;display:inline-block;transform:rotate(.003deg)}.mi-add:before{content:"\e900"}.mi-archive:before{content:"\e901"}.mi-arrow-down:before{content:"\e902"}.mi-arrow-left:before{content:"\e903"}.mi-arrow-left-down:before{content:"\e904"}.mi-arrow-left-up:before{content:"\e905"}.mi-arrow-right:before{content:"\e906"}.mi-arrow-right-down:before{content:"\e907"}.mi-arrow-right-up:before{content:"\e908"}.mi-arrow-up:before{content:"\e909"}.mi-attachment:before{content:"\e90a"}.mi-backspace:before{content:"\e90b"}.mi-ban:before{content:"\e90c"}.mi-bar-chart:before{content:"\e90d"}.mi-bar-chart-alt:before{content:"\e90e"}.mi-board:before{content:"\e90f"}.mi-bold:before{content:"\e910"}.mi-book:before{content:"\e911"}.mi-bookmark:before{content:"\e912"}.mi-calendar:before{content:"\e913"}.mi-call:before{content:"\e914"}.mi-camera:before{content:"\e915"}.mi-caret-down:before{content:"\e916"}.mi-caret-left:before{content:"\e917"}.mi-caret-right:before{content:"\e918"}.mi-caret-up:before{content:"\e919"}.mi-check:before{content:"\e91a"}.mi-chevron-double-down:before{content:"\e91b"}.mi-chevron-double-left:before{content:"\e91c"}.mi-chevron-double-right:before{content:"\e91d"}.mi-chevron-double-up:before{content:"\e91e"}.mi-chevron-down:before{content:"\e91f"}.mi-chevron-left:before{content:"\e920"}.mi-chevron-right:before{content:"\e921"}.mi-chevron-up:before{content:"\e922"}.mi-circle:before{content:"\e923"}.mi-circle-add:before{content:"\e924"}.mi-circle-arrow-down:before{content:"\e925"}.mi-circle-arrow-left:before{content:"\e926"}.mi-circle-arrow-right:before{content:"\e927"}.mi-circle-arrow-up:before{content:"\e928"}.mi-circle-check:before{content:"\e929"}.mi-circle-error:before{content:"\e92a"}.mi-circle-help:before{content:"\e92b"}.mi-circle-information:before{content:"\e92c"}.mi-circle-remove:before{content:"\e92d"}.mi-circle-warning:before{content:"\e92e"}.mi-clipboard:before{content:"\e92f"}.mi-clipboard-check:before{content:"\e930"}.mi-clipboard-list:before{content:"\e931"}.mi-clock:before{content:"\e932"}.mi-close:before{content:"\e933"}.mi-cloud:before{content:"\e934"}.mi-cloud-download:before{content:"\e935"}.mi-cloud-upload:before{content:"\e936"}.mi-cloudy:before{content:"\e937"}.mi-comment:before{content:"\e938"}.mi-compass:before{content:"\e939"}.mi-computer:before{content:"\e93a"}.mi-copy:before{content:"\e93b"}.mi-credit-card:before{content:"\e93c"}.mi-database:before{content:"\e93d"}.mi-delete:before{content:"\e93e"}.mi-delete-alt:before{content:"\e93f"}.mi-document:before{content:"\e940"}.mi-document-add:before{content:"\e941"}.mi-document-check:before{content:"\e942"}.mi-document-download:before{content:"\e943"}.mi-document-empty:before{content:"\e944"}.mi-document-remove:before{content:"\e945"}.mi-download:before{content:"\e946"}.mi-drag:before{content:"\e947"}.mi-drop:before{content:"\e948"}.mi-edit:before{content:"\e949"}.mi-edit-alt:before{content:"\e94a"}.mi-email:before{content:"\e94b"}.mi-enter:before{content:"\e94c"}.mi-expand:before{content:"\e94d"}.mi-export:before{content:"\e94e"}.mi-external-link:before{content:"\e94f"}.mi-eye:before{content:"\e950"}.mi-eye-off:before{content:"\e951"}.mi-favorite:before{content:"\e952"}.mi-filter:before{content:"\e953"}.mi-filter-1:before{content:"\e954"}.mi-filter-alt:before{content:"\e955"}.mi-flag:before{content:"\e956"}.mi-fog:before{content:"\e957"}.mi-folder:before{content:"\e958"}.mi-folder-add:before{content:"\e959"}.mi-folder-check:before{content:"\e95a"}.mi-folder-download:before{content:"\e95b"}.mi-folder-remove:before{content:"\e95c"}.mi-grid:before{content:"\e95d"}.mi-heart:before{content:"\e95e"}.mi-home:before{content:"\e95f"}.mi-image:before{content:"\e960"}.mi-inbox:before{content:"\e961"}.mi-italic:before{content:"\e962"}.mi-laptop:before{content:"\e963"}.mi-layers:before{content:"\e964"}.mi-layout:before{content:"\e965"}.mi-link:before{content:"\e966"}.mi-link-alt:before{content:"\e967"}.mi-list:before{content:"\e968"}.mi-location:before{content:"\e969"}.mi-lock:before{content:"\e96a"}.mi-log-in:before{content:"\e96b"}.mi-log-out:before{content:"\e96c"}.mi-map:before{content:"\e96d"}.mi-megaphone:before{content:"\e96e"}.mi-menu:before{content:"\e96f"}.mi-message:before{content:"\e970"}.mi-message-alt:before{content:"\e971"}.mi-minimize:before{content:"\e972"}.mi-mobile:before{content:"\e973"}.mi-moon:before{content:"\e974"}.mi-next:before{content:"\e975"}.mi-notification:before{content:"\e976"}.mi-notification-off:before{content:"\e977"}.mi-options-horizontal:before{content:"\e978"}.mi-options-vertical:before{content:"\e979"}.mi-pause:before{content:"\e97a"}.mi-pen:before{content:"\e97b"}.mi-percentage:before{content:"\e97c"}.mi-pin:before{content:"\e97d"}.mi-play:before{content:"\e97e"}.mi-previous:before{content:"\e97f"}.mi-print:before{content:"\e980"}.mi-rain:before{content:"\e981"}.mi-refresh:before{content:"\e982"}.mi-remove:before{content:"\e983"}.mi-reorder:before{content:"\e984"}.mi-reorder-alt:before{content:"\e985"}.mi-repeat:before{content:"\e986"}.mi-save:before{content:"\e987"}.mi-search:before{content:"\e988"}.mi-select:before{content:"\e989"}.mi-send:before{content:"\e98a"}.mi-settings:before{content:"\e98b"}.mi-share:before{content:"\e98c"}.mi-shopping-cart:before{content:"\e98d"}.mi-shopping-cart-add:before{content:"\e98e"}.mi-shuffle:before{content:"\e98f"}.mi-snow:before{content:"\e990"}.mi-snowflake:before{content:"\e991"}.mi-sort:before{content:"\e992"}.mi-speakers:before{content:"\e993"}.mi-stop:before{content:"\e994"}.mi-storm:before{content:"\e995"}.mi-strikethrough:before{content:"\e996"}.mi-sun:before{content:"\e997"}.mi-sunrise:before{content:"\e998"}.mi-sunrise-alt:before{content:"\e999"}.mi-sunset:before{content:"\e99a"}.mi-switch:before{content:"\e99b"}.mi-table:before{content:"\e99c"}.mi-tablet:before{content:"\e99d"}.mi-tag:before{content:"\e99e"}.mi-temperature:before{content:"\e99f"}.mi-text:before{content:"\e9a0"}.mi-three-rows:before{content:"\e9a1"}.mi-two-columns:before{content:"\e9a2"}.mi-two-rows:before{content:"\e9a3"}.mi-underline:before{content:"\e9a4"}.mi-undo:before{content:"\e9a5"}.mi-unlock:before{content:"\e9a6"}.mi-user:before{content:"\e9a7"}.mi-user-add:before{content:"\e9a8"}.mi-user-check:before{content:"\e9a9"}.mi-user-remove:before{content:"\e9aa"}.mi-users:before{content:"\e9ab"}.mi-volume-off:before{content:"\e9ac"}.mi-volume-up:before{content:"\e9ad"}.mi-warning:before{content:"\e9ae"}.mi-webcam:before{content:"\e9af"}.mi-wind:before{content:"\e9b0"}.mi-window:before{content:"\e9b1"}.mi-zoom-in:before{content:"\e9b2"}.mi-zoom-out:before{content:"\e9b3"}
    
    /* ==============================
     Margins & Paddings
     ============================== */
    
    .mt-n10{margin-top:-10px!important}.mt-n20{margin-top:-20px!important}.mt-n30{margin-top:-30px!important}.mt-n40{margin-top:-40px!important}.mt-n50{margin-top:-50px!important}.mt-n60{margin-top:-60px!important}.mt-n70{margin-top:-70px!important}.mt-n80{margin-top:-80px!important}.mt-n90{margin-top:-90px!important}.mt-n100{margin-top:-100px!important}.mt-n110{margin-top:-110px!important}.mt-n120{margin-top:-120px!important}.mt-n130{margin-top:-130px!important}.mt-n140{margin-top:-140px!important}.mt-0{margin-top:0!important}.mt-10{margin-top:10px!important}.mt-20{margin-top:20px!important}.mt-30{margin-top:30px!important}.mt-40{margin-top:40px!important}.mt-50{margin-top:50px!important}.mt-60{margin-top:60px!important}.mt-70{margin-top:70px!important}.mt-80{margin-top:80px!important}.mt-90{margin-top:90px!important}.mt-100{margin-top:100px!important}.mt-110{margin-top:110px!important}.mt-120{margin-top:120px!important}.mt-130{margin-top:130px!important}.mt-140{margin-top:140px!important}.mb-n10{margin-bottom:-10px!important}.mb-n20{margin-bottom:-20px!important}.mb-n30{margin-bottom:-30px!important}.mb-n40{margin-bottom:-40px!important}.mb-n50{margin-bottom:-50px!important}.mb-n60{margin-bottom:-60px!important}.mb-n70{margin-bottom:-70px!important}.mb-n80{margin-bottom:-80px!important}.mb-n90{margin-bottom:-90px!important}.mb-n100{margin-bottom:-100px!important}.mb-n110{margin-bottom:-110px!important}.mb-n120{margin-bottom:-120px!important}.mb-n130{margin-bottom:-130px!important}.mb-n140{margin-bottom:-140px!important}.mb-0{margin-bottom:0!important}.mb-10{margin-bottom:10px!important}.mb-20{margin-bottom:20px!important}.mb-30{margin-bottom:30px!important}.mb-40{margin-bottom:40px!important}.mb-50{margin-bottom:50px!important}.mb-60{margin-bottom:60px!important}.mb-70{margin-bottom:70px!important}.mb-80{margin-bottom:80px!important}.mb-90{margin-bottom:90px!important}.mb-100{margin-bottom:100px!important}.mb-110{margin-bottom:110px!important}.mb-120{margin-bottom:120px!important}.mb-130{margin-bottom:130px!important}.mb-140{margin-bottom:140px!important}.pt-0{padding-top:0!important}.pt-10{padding-top:10px!important}.pt-20{padding-top:20px!important}.pt-30{padding-top:30px!important}.pt-40{padding-top:40px!important}.pt-50{padding-top:50px!important}.pt-60{padding-top:60px!important}.pt-70{padding-top:70px!important}.pt-80{padding-top:80px!important}.pt-90{padding-top:90px!important}.pt-100{padding-top:100px!important}.pt-110{padding-top:110px!important}.pt-120{padding-top:120px!important}.pt-130{padding-top:130px!important}.pt-140{padding-top:140px!important}.pt-180{padding-top:180px!important}.pt-250{padding-top:250px!important}.pt-300{padding-top:300px!important}.pt-400{padding-top:400px!important}.pt-500{padding-top:500px!important}.pb-0{padding-bottom:0!important}.pb-10{padding-bottom:10px!important}.pb-20{padding-bottom:20px!important}.pb-30{padding-bottom:30px!important}.pb-40{padding-bottom:40px!important}.pb-50{padding-bottom:50px!important}.pb-60{padding-bottom:60px!important}.pb-70{padding-bottom:70px!important}.pb-80{padding-bottom:80px!important}.pb-90{padding-bottom:90px!important}.pb-100{padding-bottom:100px!important}.pb-110{padding-bottom:110px!important}.pb-120{padding-bottom:120px!important}.pb-130{padding-bottom:130px!important}.pb-140{padding-bottom:140px!important}.pb-180{padding-bottom:180px!important}.pb-250{padding-bottom:250px!important}.pb-300{padding-bottom:300px!important}.pb-400{padding-bottom:400px!important}.pb-500{padding-bottom:500px!important}@media only screen and (max-width:1199px){.mt-lg-n10{margin-top:-10px!important}.mt-lg-n20{margin-top:-20px!important}.mt-lg-n30{margin-top:-30px!important}.mt-lg-n40{margin-top:-40px!important}.mt-lg-n50{margin-top:-50px!important}.mt-lg-n60{margin-top:-60px!important}.mt-lg-n70{margin-top:-70px!important}.mt-lg-n80{margin-top:-80px!important}.mt-lg-n90{margin-top:-90px!important}.mt-lg-n100{margin-top:-100px!important}.mt-lg-n110{margin-top:-110px!important}.mt-lg-n120{margin-top:-120px!important}.mt-lg-n130{margin-top:-130px!important}.mt-lg-n140{margin-top:-140px!important}.mt-lg-0{margin-top:0!important}.mt-lg-10{margin-top:10px!important}.mt-lg-20{margin-top:20px!important}.mt-lg-30{margin-top:30px!important}.mt-lg-40{margin-top:40px!important}.mt-lg-50{margin-top:50px!important}.mt-lg-60{margin-top:60px!important}.mt-lg-70{margin-top:70px!important}.mt-lg-80{margin-top:80px!important}.mt-lg-90{margin-top:90px!important}.mt-lg-100{margin-top:100px!important}.mt-lg-110{margin-top:110px!important}.mt-lg-120{margin-top:120px!important}.mt-lg-130{margin-top:130px!important}.mt-lg-140{margin-top:140px!important}.mb-lg-n10{margin-bottom:-10px!important}.mb-lg-n20{margin-bottom:-20px!important}.mb-lg-n30{margin-bottom:-30px!important}.mb-lg-n40{margin-bottom:-40px!important}.mb-lg-n50{margin-bottom:-50px!important}.mb-lg-n60{margin-bottom:-60px!important}.mb-lg-n70{margin-bottom:-70px!important}.mb-lg-n80{margin-bottom:-80px!important}.mb-lg-n90{margin-bottom:-90px!important}.mb-lg-n100{margin-bottom:-100px!important}.mb-lg-n110{margin-bottom:-110px!important}.mb-lg-n120{margin-bottom:-120px!important}.mb-lg-n130{margin-bottom:-130px!important}.mb-lg-n140{margin-bottom:-140px!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-10{margin-bottom:10px!important}.mb-lg-20{margin-bottom:20px!important}.mb-lg-30{margin-bottom:30px!important}.mb-lg-40{margin-bottom:40px!important}.mb-lg-50{margin-bottom:50px!important}.mb-lg-60{margin-bottom:60px!important}.mb-lg-70{margin-bottom:70px!important}.mb-lg-80{margin-bottom:80px!important}.mb-lg-90{margin-bottom:90px!important}.mb-lg-100{margin-bottom:100px!important}.mb-lg-110{margin-bottom:110px!important}.mb-lg-120{margin-bottom:120px!important}.mb-lg-130{margin-bottom:130px!important}.mb-lg-140{margin-bottom:140px!important}.pt-lg-0{padding-top:0!important}.pt-lg-10{padding-top:10px!important}.pt-lg-20{padding-top:20px!important}.pt-lg-30{padding-top:30px!important}.pt-lg-40{padding-top:40px!important}.pt-lg-50{padding-top:50px!important}.pt-lg-60{padding-top:60px!important}.pt-lg-70{padding-top:70px!important}.pt-lg-80{padding-top:80px!important}.pt-lg-90{padding-top:90px!important}.pt-lg-100{padding-top:100px!important}.pt-lg-110{padding-top:110px!important}.pt-lg-120{padding-top:120px!important}.pt-lg-130{padding-top:130px!important}.pt-lg-140{padding-top:140px!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-10{padding-bottom:10px!important}.pb-lg-20{padding-bottom:20px!important}.pb-lg-30{padding-bottom:30px!important}.pb-lg-40{padding-bottom:40px!important}.pb-lg-50{padding-bottom:50px!important}.pb-lg-60{padding-bottom:60px!important}.pb-lg-70{padding-bottom:70px!important}.pb-lg-80{padding-bottom:80px!important}.pb-lg-90{padding-bottom:90px!important}.pb-lg-100{padding-bottom:100px!important}.pb-lg-110{padding-bottom:110px!important}.pb-lg-120{padding-bottom:120px!important}.pb-lg-130{padding-bottom:130px!important}.pb-lg-140{padding-bottom:140px!important}}@media only screen and (max-width:991px){.mt-md-n10{margin-top:-10px!important}.mt-md-n20{margin-top:-20px!important}.mt-md-n30{margin-top:-30px!important}.mt-md-n40{margin-top:-40px!important}.mt-md-n50{margin-top:-50px!important}.mt-md-n60{margin-top:-60px!important}.mt-md-n70{margin-top:-70px!important}.mt-md-n80{margin-top:-80px!important}.mt-md-n90{margin-top:-90px!important}.mt-md-n100{margin-top:-100px!important}.mt-md-n110{margin-top:-110px!important}.mt-md-n120{margin-top:-120px!important}.mt-md-n130{margin-top:-130px!important}.mt-md-n140{margin-top:-140px!important}.mt-md-0{margin-top:0!important}.mt-md-10{margin-top:10px!important}.mt-md-20{margin-top:20px!important}.mt-md-30{margin-top:30px!important}.mt-md-40{margin-top:40px!important}.mt-md-50{margin-top:50px!important}.mt-md-60{margin-top:60px!important}.mt-md-70{margin-top:70px!important}.mt-md-80{margin-top:80px!important}.mt-md-90{margin-top:90px!important}.mt-md-100{margin-top:100px!important}.mt-md-110{margin-top:110px!important}.mt-md-120{margin-top:120px!important}.mt-md-130{margin-top:130px!important}.mt-md-140{margin-top:140px!important}.mb-md-n10{margin-bottom:-10px!important}.mb-md-n20{margin-bottom:-20px!important}.mb-md-n30{margin-bottom:-30px!important}.mb-md-n40{margin-bottom:-40px!important}.mb-md-n50{margin-bottom:-50px!important}.mb-md-n60{margin-bottom:-60px!important}.mb-md-n70{margin-bottom:-70px!important}.mb-md-n80{margin-bottom:-80px!important}.mb-md-n90{margin-bottom:-90px!important}.mb-md-n100{margin-bottom:-100px!important}.mb-md-n110{margin-bottom:-110px!important}.mb-md-n120{margin-bottom:-120px!important}.mb-md-n130{margin-bottom:-130px!important}.mb-md-n140{margin-bottom:-140px!important}.mb-md-0{margin-bottom:0!important}.mb-md-10{margin-bottom:10px!important}.mb-md-20{margin-bottom:20px!important}.mb-md-30{margin-bottom:30px!important}.mb-md-40{margin-bottom:40px!important}.mb-md-50{margin-bottom:50px!important}.mb-md-60{margin-bottom:60px!important}.mb-md-70{margin-bottom:70px!important}.mb-md-80{margin-bottom:80px!important}.mb-md-90{margin-bottom:90px!important}.mb-md-100{margin-bottom:100px!important}.mb-md-110{margin-bottom:110px!important}.mb-md-120{margin-bottom:120px!important}.mb-md-130{margin-bottom:130px!important}.mb-md-140{margin-bottom:140px!important}.pt-md-0{padding-top:0!important}.pt-md-10{padding-top:10px!important}.pt-md-20{padding-top:20px!important}.pt-md-30{padding-top:30px!important}.pt-md-40{padding-top:40px!important}.pt-md-50{padding-top:50px!important}.pt-md-60{padding-top:60px!important}.pt-md-70{padding-top:70px!important}.pt-md-80{padding-top:80px!important}.pt-md-90{padding-top:90px!important}.pt-md-100{padding-top:100px!important}.pt-md-110{padding-top:110px!important}.pt-md-120{padding-top:120px!important}.pt-md-130{padding-top:130px!important}.pt-md-140{padding-top:140px!important}.pt-md-180{padding-top:180px!important}.pt-md-250{padding-top:250px!important}.pt-md-300{padding-top:300px!important}.pt-md-400{padding-top:400px!important}.pb-md-0{padding-bottom:0!important}.pb-md-10{padding-bottom:10px!important}.pb-md-20{padding-bottom:20px!important}.pb-md-30{padding-bottom:30px!important}.pb-md-40{padding-bottom:40px!important}.pb-md-50{padding-bottom:50px!important}.pb-md-60{padding-bottom:60px!important}.pb-md-70{padding-bottom:70px!important}.pb-md-80{padding-bottom:80px!important}.pb-md-90{padding-bottom:90px!important}.pb-md-100{padding-bottom:100px!important}.pb-md-110{padding-bottom:110px!important}.pb-md-120{padding-bottom:120px!important}.pb-md-130{padding-bottom:130px!important}.pb-md-140{padding-bottom:140px!important}.pb-md-180{padding-bottom:180px!important}.pb-md-250{padding-bottom:250px!important}.pb-md-300{padding-bottom:300px!important}.pb-md-400{padding-bottom:400px!important}}@media only screen and (max-width:767px){.mt-sm-n10{margin-top:-10px!important}.mt-sm-n20{margin-top:-20px!important}.mt-sm-n30{margin-top:-30px!important}.mt-sm-n40{margin-top:-40px!important}.mt-sm-n50{margin-top:-50px!important}.mt-sm-n60{margin-top:-60px!important}.mt-sm-n70{margin-top:-70px!important}.mt-sm-n80{margin-top:-80px!important}.mt-sm-n90{margin-top:-90px!important}.mt-sm-n100{margin-top:-100px!important}.mt-sm-n110{margin-top:-110px!important}.mt-sm-n120{margin-top:-120px!important}.mt-sm-n130{margin-top:-130px!important}.mt-sm-n140{margin-top:-140px!important}.mt-sm-0{margin-top:0!important}.mt-sm-10{margin-top:10px!important}.mt-sm-20{margin-top:20px!important}.mt-sm-30{margin-top:30px!important}.mt-sm-40{margin-top:40px!important}.mt-sm-50{margin-top:50px!important}.mt-sm-60{margin-top:60px!important}.mt-sm-70{margin-top:70px!important}.mt-sm-80{margin-top:80px!important}.mt-sm-90{margin-top:90px!important}.mt-sm-100{margin-top:100px!important}.mt-sm-110{margin-top:110px!important}.mt-sm-120{margin-top:120px!important}.mt-sm-130{margin-top:130px!important}.mt-sm-140{margin-top:140px!important}.mb-sm-n10{margin-bottom:-10px!important}.mb-sm-n20{margin-bottom:-20px!important}.mb-sm-n30{margin-bottom:-30px!important}.mb-sm-n40{margin-bottom:-40px!important}.mb-sm-n50{margin-bottom:-50px!important}.mb-sm-n60{margin-bottom:-60px!important}.mb-sm-n70{margin-bottom:-70px!important}.mb-sm-n80{margin-bottom:-80px!important}.mb-sm-n90{margin-bottom:-90px!important}.mb-sm-n100{margin-bottom:-100px!important}.mb-sm-n110{margin-bottom:-110px!important}.mb-sm-n120{margin-bottom:-120px!important}.mb-sm-n130{margin-bottom:-130px!important}.mb-sm-n140{margin-bottom:-140px!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-10{margin-bottom:10px!important}.mb-sm-20{margin-bottom:20px!important}.mb-sm-30{margin-bottom:30px!important}.mb-sm-40{margin-bottom:40px!important}.mb-sm-50{margin-bottom:50px!important}.mb-sm-60{margin-bottom:60px!important}.mb-sm-70{margin-bottom:70px!important}.mb-sm-80{margin-bottom:80px!important}.mb-sm-90{margin-bottom:90px!important}.mb-sm-100{margin-bottom:100px!important}.mb-sm-110{margin-bottom:110px!important}.mb-sm-120{margin-bottom:120px!important}.mb-sm-130{margin-bottom:130px!important}.mb-sm-140{margin-bottom:140px!important}.pt-sm-0{padding-top:0!important}.pt-sm-10{padding-top:10px!important}.pt-sm-20{padding-top:20px!important}.pt-sm-30{padding-top:30px!important}.pt-sm-40{padding-top:40px!important}.pt-sm-50{padding-top:50px!important}.pt-sm-60{padding-top:60px!important}.pt-sm-70{padding-top:70px!important}.pt-sm-80{padding-top:80px!important}.pt-sm-90{padding-top:90px!important}.pt-sm-100{padding-top:100px!important}.pt-sm-110{padding-top:110px!important}.pt-sm-120{padding-top:120px!important}.pt-sm-130{padding-top:130px!important}.pt-sm-140{padding-top:140px!important}.pt-sm-180{padding-top:180px!important}.pt-sm-250{padding-top:250px!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-10{padding-bottom:10px!important}.pb-sm-20{padding-bottom:20px!important}.pb-sm-30{padding-bottom:30px!important}.pb-sm-40{padding-bottom:40px!important}.pb-sm-50{padding-bottom:50px!important}.pb-sm-60{padding-bottom:60px!important}.pb-sm-70{padding-bottom:70px!important}.pb-sm-80{padding-bottom:80px!important}.pb-sm-90{padding-bottom:90px!important}.pb-sm-100{padding-bottom:100px!important}.pb-sm-110{padding-bottom:110px!important}.pb-sm-120{padding-bottom:120px!important}.pb-sm-130{padding-bottom:130px!important}.pb-sm-140{padding-bottom:140px!important}.pb-sm-180{padding-bottom:180px!important}.pb-sm-250{padding-bottom:250px!important}}@media only screen and (max-width:575px){.mt-xs-n10{margin-top:-10px!important}.mt-xs-n20{margin-top:-20px!important}.mt-xs-n30{margin-top:-30px!important}.mt-xs-n40{margin-top:-40px!important}.mt-xs-n50{margin-top:-50px!important}.mt-xs-n60{margin-top:-60px!important}.mt-xs-n70{margin-top:-70px!important}.mt-xs-n80{margin-top:-80px!important}.mt-xs-n90{margin-top:-90px!important}.mt-xs-n100{margin-top:-100px!important}n .mt-xs-n110{margin-top:-110px!important}.mt-xs-n120{margin-top:-120px!important}.mt-xs-n130{margin-top:-130px!important}.mt-xs-n140{margin-top:-140px!important}.mt-xs-0{margin-top:0!important}.mt-xs-10{margin-top:10px!important}.mt-xs-20{margin-top:20px!important}.mt-xs-30{margin-top:30px!important}.mt-xs-40{margin-top:40px!important}.mt-xs-50{margin-top:50px!important}.mt-xs-60{margin-top:60px!important}.mt-xs-70{margin-top:70px!important}.mt-xs-80{margin-top:80px!important}.mt-xs-90{margin-top:90px!important}.mt-xs-100{margin-top:100px!important}.mt-xs-110{margin-top:110px!important}.mt-xs-120{margin-top:120px!important}.mt-xs-130{margin-top:130px!important}.mt-xs-140{margin-top:140px!important}.mb-xs-n10{margin-bottom:-10px!important}.mb-xs-n20{margin-bottom:-20px!important}.mb-xs-n30{margin-bottom:-30px!important}.mb-xs-n40{margin-bottom:-40px!important}.mb-xs-n50{margin-bottom:-50px!important}.mb-xs-n60{margin-bottom:-60px!important}.mb-xs-n70{margin-bottom:-70px!important}.mb-xs-n80{margin-bottom:-80px!important}.mb-xs-n90{margin-bottom:-90px!important}.mb-xs-n100{margin-bottom:-100px!important}.mb-xs-n110{margin-bottom:-110px!important}.mb-xs-n120{margin-bottom:-120px!important}.mb-xs-n130{margin-bottom:-130px!important}.mb-xs-n140{margin-bottom:-140px!important}.mb-xs-0{margin-bottom:0!important}.mb-xs-10{margin-bottom:10px!important}.mb-xs-20{margin-bottom:20px!important}.mb-xs-30{margin-bottom:30px!important}.mb-xs-40{margin-bottom:40px!important}.mb-xs-50{margin-bottom:50px!important}.mb-xs-60{margin-bottom:60px!important}.mb-xs-70{margin-bottom:70px!important}.mb-xs-80{margin-bottom:80px!important}.mb-xs-90{margin-bottom:90px!important}.mb-xs-100{margin-bottom:100px!important}.mb-xs-110{margin-bottom:110px!important}.mb-xs-120{margin-bottom:120px!important}.mb-xs-130{margin-bottom:130px!important}.mb-xs-140{margin-bottom:140px!important}.pt-xs-0{padding-top:0!important}.pt-xs-10{padding-top:10px!important}.pt-xs-20{padding-top:20px!important}.pt-xs-30{padding-top:30px!important}.pt-xs-40{padding-top:40px!important}.pt-xs-50{padding-top:50px!important}.pt-xs-60{padding-top:60px!important}.pt-xs-70{padding-top:70px!important}.pt-xs-80{padding-top:80px!important}.pt-xs-90{padding-top:90px!important}.pt-xs-100{padding-top:100px!important}.pt-xs-110{padding-top:110px!important}.pt-xs-120{padding-top:120px!important}.pt-xs-130{padding-top:130px!important}.pt-xs-140{padding-top:140px!important}.pb-xs-0{padding-bottom:0!important}.pb-xs-10{padding-bottom:10px!important}.pb-xs-20{padding-bottom:20px!important}.pb-xs-30{padding-bottom:30px!important}.pb-xs-40{padding-bottom:40px!important}.pb-xs-50{padding-bottom:50px!important}.pb-xs-60{padding-bottom:60px!important}.pb-xs-70{padding-bottom:70px!important}.pb-xs-80{padding-bottom:80px!important}.pb-xs-90{padding-bottom:90px!important}.pb-xs-100{padding-bottom:100px!important}.pb-xs-110{padding-bottom:110px!important}.pb-xs-120{padding-bottom:120px!important}.pb-xs-130{padding-bottom:130px!important}.pb-xs-140{padding-bottom:140px!important}}