* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--main-font), sans-serif;
    font-size: var(--main-font-size);
    font-weight: 400;
    color: var(--main-font-color);
    background: var(--main-bg);
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}
textarea:focus,
input:focus{
    outline: none;
}

strong,
b {
    font-weight: 700;
}
.green{
    color:#00D287;
}
em {
    font-style: italic;
}

h1 {
    font-size: var(--titleH1-size);
    line-height: 1.2em;
    font-weight: 700;
    color: var(--titleH1-color);
}

h2 {
    font-size: var(--titleH2-size);
    line-height: 1.2em;
    font-weight: 700;
    color: var(--titleH2-color);
}

h3 {
    font-size: var(--titleH3-size);
    line-height: 1.2em;
    font-weight: 700;
    color: var(--titleH3-color);
}

@media screen and (max-width: 1038px) {
    h1 {
        font-size: var(--titleH1-size-mob);
    }

    h2 {
        font-size: var(--titleH2-size-mob);
    }

    h3 {
        font-size: var(--titleH3-size-mob);
    }
}

a {
    text-decoration: underline;
    color: var(--linck-color);
    ;
}

a:hover {
    text-decoration: none;
}

.btn {
    background: #00D287;
    color: #fff;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    padding: 12px 26px 12px;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
}

.btn-border {
    cursor: pointer;
    background: none;
    color: #00D287;
    border: #00D287 solid 1px;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    padding: 11px 26px 11px;
    border-radius: 50px;
    text-decoration: none;
}

#main {
    overflow: hidden;
}

.holder-content {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
}

.d-sm {
    display: none;
}

.d-none {
    display: none;
}

#header .nav-btn .btn-border {
    display: none;
}

/* @media screen and (max-width: 1136px) {
    #header nav+.btn-border {
        margin: 0 40px 0 auto;
        font-size: 13px;
        padding: 6px 15px;
    }

    #header .holder-content {
        justify-content: center;
    }

    #header .mob-btn {
        display: block;
        position: absolute;
        right: 15px;
        top: 50%;
        width: 25px;
        height: 20px;
        transform: translate(0, -50%);
    }

    #header .nav {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        padding: 50px 15px;
        background: #fff;
        flex-direction: column;
        display: none;
        overflow: auto;
        margin: 0;
        align-items: normal;
        padding: 50px 30px;
        transition: .5s;
        transform: translateY(-100%);
    }

    #header ul {
        padding: 0;
        flex-direction: column;
        order: 2;
        margin: auto 0 0;
        display: block;
    }

    #header .nav-btn {
        order: 1;
        margin: 0 0 20px;
    }

    #header .nav img {
        margin: 50px 0 20px;
    }

    #header ul li a {
        font-size: 18px;
    }

    #header ul li {
        margin: 0;
        border-bottom: 1px solid #00D287;
        padding: 17px 0;
    }

    #header ul li:last-child {
        border: none;
    }

    #header .nav.active {
        display: flex;
        animation: .5s mobileNavActive ease-out;
        transform: translateY(0);
    }

    @keyframes mobileNavActive {
        0% {
            transform: translateY(100%);
        }

        100% {
            transform: translateY(0);
        }
    }

    #header .logo {
        z-index: 1;
    }
} */

@media screen and (max-width: 1038px) {
    .d-sm {
        display: block;
    }

    .d-lg {
        display: none;
    }

    #header .nav-btn .btn-border {
        display: inline-block;
        margin-right: 10px;
        padding: 6px 15px;
        font-size: 13px;
    }

    #header .nav-btn .btn {
        font-size: 13px;
        padding: 7px 31px;
    }
}

/* header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: none;
    padding: 15px 0;
    z-index: 1000;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

#header nav+.btn-border {
    margin: 0 0 0 30px;
}

#header.active {
    background: #fff;
    box-shadow: 0px 5px 10px -5px rgb(0 0 0 / 5%);
}

#header .holder-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#header .nav {
    display: flex;
    align-items: center;
    margin-left: auto;
}

#header ul {
    list-style: none;
    display: flex;
    align-items: center;
    padding: 0 79px 0 0;
}

#header ul li {
    margin-left: 40px;
}

#header ul li a {
    color: #222222;
    font-size: 16px;
    line-height: 1.25em;
    letter-spacing: 0.04em;
    text-decoration: none;
}

#header .mob-btn {
    display: none;
}
#header .mob-btn.mob-btn-plus { 
    width: 30px;
    height: 30px;
}
#header .mob-btn.mob-btn-plus span:first-child {
    transform: rotate(90deg);
    margin-top: -1px;
    top: 50%;
}

#header .mob-btn.mob-btn-plus span:last-child {
    opacity: 0;
}
#header .mob-btn.mob-btn-plus.active span:last-child {
    opacity: 1;
}

#header .mob-btn span {
    height: 3px;
    width: 100%;
    background: #00D287;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -2px;
    border-radius: 3px;
}

#header .mob-btn span:first-child {
    top: 0;
    margin-top: 0;
}

#header .mob-btn span:last-child {
    top: 100%;
    margin-top: -4px;
}

#header .mob-btn.active span {
    opacity: 0;
    left: 50%;
}

#header .mob-btn.active span:first-child {
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 1;
    top: 50%;
    margin-top: 0;
}

#header .mob-btn.active span:last-child {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
    opacity: 1;
    top: 50%;
    margin-top: 0;
}

#header .logo {
    width: 85px;
}

@media screen and (max-width: 1038px) {
    #header nav+.btn-border {
        margin: 0 40px 0 auto;
        font-size: 13px;
        padding: 6px 15px;
    }

    #header .holder-content {
        justify-content: center;
    }

    #header .mob-btn {
        display: block;
        position: absolute;
        right: 15px;
        top: 50%;
        width: 25px;
        height: 20px;
        transform: translate(0, -50%);
    }

    #header .nav {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        padding: 50px 15px;
        background: #fff;
        flex-direction: column;
        display: none;
        overflow-x: hidden;
        overflow-y: scroll;
        margin: 0;
        align-items: normal;
        padding: 50px 30px;
        transition: .5s;
        transform: translateY(-100%);
    }

    #header ul {
        padding: 0;
        flex-direction: column;
        order: 2;
        margin: auto 0 0;
        display: block;
    }

    #header .nav-btn {
        order: 1;
        margin: 0 0 20px;
    }

    #header .nav img {
        /* margin: 50px 0 20px; */
        margin:0 auto;
        margin-top:20px;
        width:100%;
        /* margin:0 auto; */
        max-width:400px;
    }

    #header ul li a {
        font-size: 18px;
    }

    #header ul li {
        margin: 0;
        border-bottom: 1px solid #00D287;
        padding: 17px 0;
    }

    #header ul li:last-child {
        border: none;
    }

    #header .nav.active {
        display: flex;
        animation: .5s mobileNavActive ease-out;
        transform: translateY(0);
    }

    @keyframes mobileNavActive {
        0% {
            transform: translateY(100%);
        }

        100% {
            transform: translateY(0);
        }
    }

    #header .logo {
        z-index: 1;
    }
}

/* end header */

/* footer */
#footer {
    font-size: 12px;
    line-height: 2em;
    padding: 0 0 100px;
}

#footer .logo {
    margin: 0 0 30px;
    display: inline-block;
    vertical-align: top;
}

#footer ul {
    list-style: none;
    font-size: 14px;
    line-height: 1.7em;
}

#footer ul li a {
    color: #222222;
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
}

#footer ul li a svg {
    display: inline-block;
    vertical-align: middle;
}

#footer ul li a:hover {
    text-decoration: underline;
}

#footer .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 90px;
}

#footer .row>.col {
    width: 40%;
}

#footer .wrap-col {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

#footer .col {
    width: 25%;
}

#footer .social {
    display: flex;
    align-items: center;
    margin: 0 -5px;
}

#footer ul li {
    margin: 0 0 12px;
}

#footer .social li {
    margin: 0 5px;
}

#footer p {
    margin: 0;
}

#footer .col p {
    font-size: 14px;
    line-height: 1.7em;
    font-weight: 700;
    color: #00D287;
    margin: 0 0 10px;
}

@media screen and (max-width: 960px) {
    #footer {
        padding: 0 0 50px;
    }

    #footer .row {
        margin: 0;
    }

    #footer .row>.col {
        width: 100%;
    }

    #footer .col {
        width: 100%;
        display: flex;
        justify-content: space-between;
        padding: 0;
        margin: 0 0 50px;
        align-items: flex-start;
    }

    #footer ul {
        width: 50%;
    }

    #footer .wrap-col {
        width: 100%;
        justify-content: flex-start;
    }

    #footer .wrap-col.col-2-mob .col {
        width: 50%;
        display: block;
    }

    #footer .wrap-col.col-2-mob .col h3 {
        margin: 0 0 20px;
    }

    #footer .wrap-col.col-2-mob .col ul {
        width: auto;
    }
    #footer .social{
        margin-top:8px;
    }
    #footer .social li:first-child{
        margin-left:-10px;
    }

}

/* end footer */

/* Slider */
.slick-slider {
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;

    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;

    height: auto;

    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/* end Slider */

[fadeIn] {
    opacity: 0;
    transform-style: preserve-3d;
}

.fade-in--bottom {
    animation: fade-in--bottom 1s forwards;
}

@keyframes fade-in--bottom {
    0% {
        opacity: 0;
        transform: translateY(50%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in--top {
    animation: fade-in--top 1s forwards;
}

@keyframes fade-in--top {
    0% {
        opacity: 0;
        transform: translateY(-50%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in--center {
    animation: fade-in--center 1s forwards;
}

@keyframes fade-in--center {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fade-in--left {
    animation: fade-in--left 1s forwards;
}

@keyframes fade-in--left {
    0% {
        opacity: 0;
        transform: translateX(-25%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

[fadeInDelay] {
    animation-delay: 1s;
    -webkit-animation-delay: .5s;
}


/* 180622 */

.zilch-pop-up {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 98;
    /* background: rgba(230, 251, 243, 0.5); */
    background: rgba(0, 0, 0, 0.5);
}
.zilch-pop-up.active {
    display: flex;
}
.zilch-pop-up .zilch-pop-up-content {
    max-width: 824px;
    width: 100%;
    background: #fff;
    display: flex;
    padding: 60px 40px 8px;
    gap: 40px;
    margin: 0 30px;
    position: relative;
}
.zilch-pop-up h2 {
    font-size: 32px;
    margin: 0 0 58px;
    text-align: center;
}
.zilch-pop-up.zilch-pop-up-tv .zilch-pop-up-desc {
    width: 50%;
}
.zilch-pop-up.zilch-pop-up-tv figure.d-lg {
    margin: -60px 0 -8px -40px;
    width: 50%;
    position: relative;
}
.zilch-pop-up.zilch-pop-up-tv figure.d-lg img {
    object-fit: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
#footer .zilch-pop-up.zilch-pop-up-tv ul li {
    margin: 0 0 22px;
}
#footer .zilch-pop-up.zilch-pop-up-tv ul li a {
    color: #00D287;
    display: block;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    background: #E6FBF3;
    padding: 18px 0 16px;
}
.zilch-pop-up-get-app {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 99;
    background: rgba(0,0,0,0.3);
}

.zilch-pop-up-get-app.active {
    display: flex;
}
.zilch-pop-up-get-app.active .zilch-box-pop-up-get-app{
    animation: .5s zilch-pop-up-fadeIn ease-out;
}
@keyframes zilch-pop-up-fadeIn {
   from{
    opacity:0;
    transform:translateY(-10%);
   }to{
    opacity:1;
    transform:translateY(0);
   }
}
.zilch-pop-up-get-app .zilch-box-pop-up-get-app {
    max-width: 932px;
    width: 100%;
    background-color: white;
    display: flex;
    padding: 70px 40px;
    gap: 30px;
    margin: 0 30px;
    position: relative;

}

.zilch-pop-up-get-app .zilch-box-pop-up-get-app .zilch-close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}


.zilch-pop-up-get-app .zilch-box-pop-up-get-app .zilch-content {
    width: 100%;
}

.zilch-pop-up-get-app .zilch-box-pop-up-get-app .zilch-content h2 {
    margin-bottom: 20px;
}

.zilch-pop-up-get-app .zilch-box-pop-up-get-app .zilch-content p {
    max-width: 303px;
    margin-bottom: 20px !important;
    color: #000;
    font-size: 16px;
    line-height: 20px;
}

.zilch-apr-text{
    font-size:16px !important;
}

.zilch-pop-up-get-app .zilch-box-pop-up-get-app .zilch-content .zilch-apr-text {
    color: #00D287;
}

.zilch-pop-up-get-app .zilch-box-pop-up-get-app .zilch-img {
    width: 100%;
    margin-top: -20px;
}

.zilch-pop-up-get-app .zilch-box-pop-up-get-app .zilch-content>img,
.zilch-pop-up-get-app .zilch-box-pop-up-get-app .zilch-content>.btn {
    display: none;
    font-size: 15px;
}

.zilch-pop-up-get-app .zilch-box-pop-up-get-app .zilch-content .zilch-qr-code {
    width: 116px;
    height: 116px;
}

.zilch-pop-up-get-app .zilch-box-pop-up-get-app.geo {
    max-width: 560px;
    flex-direction: column;
    align-items: center;
    padding: 80px;
}

.zilch-pop-up-get-app .zilch-box-pop-up-get-app.geo .zilch-box-btn {

    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;

}

.zilch-pop-up-get-app .zilch-box-pop-up-get-app.geo .zilch-box-btn a {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 20px;
    font-style: normal;
    font-weight: 700;
    font-size: 22px;
    color: #00D287;
    text-decoration: none;
    background: #E6FBF3;
    justify-content: center;
    line-height: 108px;
}


.zilch-pop-up-get-app .zilch-box-pop-up-get-app.geo{
    margin-bottom: 60px;
}

@media screen and (max-width: 767px) {

    .zilch-pop-up-get-app .zilch-box-pop-up-get-app.geo{
        margin-bottom: 40px;
    }

    .zilch-pop-up-get-app .zilch-box-pop-up-get-app.geo{
        padding: 50px 38px;
    }

    .zilch-pop-up-get-app .zilch-box-pop-up-get-app.geo .zilch-box-btn a {
        font-size: 15px;
        line-height: 67px;
        gap: 14px;
    }

    .zilch-pop-up-get-app .zilch-box-pop-up-get-app {
        padding: 30px 20px 20px 20px;
        text-align: center;
    }

    .zilch-pop-up-get-app .zilch-box-pop-up-get-app .zilch-img,
    .zilch-pop-up-get-app .zilch-box-pop-up-get-app .zilch-content .zilch-qr-code {
        display: none;
    }

    .zilch-pop-up-get-app .zilch-box-pop-up-get-app .zilch-content>img {
        display: initial;
        max-width: 250px;
        margin-bottom: 20px;
    }

    .zilch-pop-up-get-app .zilch-box-pop-up-get-app .zilch-content>.btn {
        display: inherit;
        max-width: 215px;
        margin: auto;
        margin-bottom: 10px;
    }
    .zilch-pop-up-get-app .zilch-box-pop-up-get-app .zilch-content p{
        margin:0 auto !important;
        margin-bottom:20px !important;
    }
}
/*grid-post*/
.grid-post {
    display: flex;
    margin: 0 -10px;
    flex-wrap: wrap;
}
.grid-post a {
    padding: 0 10px;
    margin: 0 0 80px;
    display: block;
    width: 33.3%;
    text-decoration: none;
}
.grid-post figure {
    margin: 0 0 15px;
    position: relative;
    padding-top: 65%;
}
.grid-post figure img {
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%,-50%);
    object-fit: cover;
    position: absolute;
}
.grid-post .posts-category {
    font-size: 16px;
    line-height: 1.25em;
    color: #F0A9A0;
}
.grid-post .posts-title {
    font-size: 32px;
    line-height: 1.25em;
    color: #222;
    font-weight: 400;
}
.grid-post .posts-date {
    letter-spacing: 0.04em;
    font-size: 16px;
    line-height: 2.1875em;
    color: #222222;
    opacity: 0.4;
}
.grid-post .posts-read-more {
    text-decoration: underline;
    color: #00D287;
    display: block;
    font-size: 16px;
    line-height: 1.25em;
}
@media screen and (max-width: 1038px) {
    .grid-post .posts-category,
    .grid-post .posts-date,
    .grid-post .posts-read-more {
        font-size: 15px;
    }
    .grid-post .posts-title {
        font-size: 28px;
    }
    .grid-post a {
        margin: 0 0 50px;
    }
    .zilch-pop-up .zilch-pop-up-content {
        gap: 0;
        flex-direction: column;
        padding: 0 30px 10px;
    }
    .zilch-pop-up .zilch-pop-up-content figure {
        margin: 0 -30px 30px;
    }
    .zilch-pop-up .zilch-pop-up-content figure img {
        width: 100%;
    }
    .zilch-pop-up.zilch-pop-up-tv .zilch-pop-up-desc {
        width: auto;
    }
    #footer .zilch-pop-up.zilch-pop-up-tv ul {
        width: auto;
    }
    .zilch-pop-up h2 {
        font-size: 24px;
        margin: 0 0 30px;
    }
    #footer .zilch-pop-up.zilch-pop-up-tv ul li a {
        font-size: 15px;
        padding: 11px 0 9px;
    }
    #footer .zilch-pop-up.zilch-pop-up-tv ul li {
        margin: 0 0 20px;
    }
}
@media screen and (max-width: 767px) {
    .grid-post {
        margin: 0;
    }
    .grid-post a {
        width: 100%;
        padding: 0;
    }
}
/*end grid-post*/




/* zilch-icons */
    i.zilch-icon{
        display:inline-block;
        content:'';
        height:15px;
        width:15px;
        vertical-align: middle;
        margin-right:5px;
    }

    i.zilch-icon.zilch-bullet-arrow{
        background:url('https://zilch.ams3.digitaloceanspaces.com/wp-content/uploads/sites/3/2022/06/22132207/zilch-arrow.svg');
        background-size:contain;
        background-repeat: no-repeat;
    }
/* end zilch-icons */

.zilch_loadmore{
    margin: auto;
    display: block;
    width: fit-content;
}

#header.white-text:not(.active)  ul li a{
    color: white;
}