@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* GENERAL */

::selection {
    background-color: #e7c900;
    color: #fff;
}

::-moz-selection {
    background-color: #e7c900;
    color: #fff;
}

body {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    color: #5e696c;
    transition: 0.5s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    -webkit-font-feature-settings: "lnum" 1;
    font-feature-settings: "lnum" 1;
    font-variant-numeric: lining-nums;
    font-weight: 700;
    line-height: 1em;
    word-break: break-word;
    color: #111516;
}

h1 {
    font-size: 80px;
    margin-bottom: 0.375em;
    margin-top: 0.75em;
}

h2 {
    font-size: 60px;
    margin-bottom: 0.5em;
    margin-top: 1em;
}

h3 {
    font-size: 50px;
    margin-bottom: 0.6em;
    margin-top: 1.2em;
}

h4 {
    font-size: 40px;
    margin-bottom: 0.75em;
    margin-top: 1.5em;
}

h5 {
    font-size: 30px;
    margin-bottom: 1em;
    margin-top: 2em;
}

h6 {
    font-size: 20px;
    margin-bottom: 1.5em;
    margin-top: 3em;
}

@media only screen and (max-width: 991px) {
    h1 {
        font-size: 4.4rem;
        margin-bottom: 0.285em;
        margin-top: 0.45em;
    }
    h2 {
        font-size: 3.3rem;
        margin-bottom: 0.38em;
        margin-top: 0.6em;
    }
    h3 {
        font-size: 2.75rem;
        margin-bottom: 0.456em;
        margin-top: 0.72em;
    }
    h4 {
        font-size: 2.2rem;
        margin-bottom: 0.57em;
        margin-top: 0.9em;
    }
    h5 {
        font-size: 1.65rem;
        margin-bottom: 0.76em;
        margin-top: 1.2em;
    }
    h6 {
        font-size: 1.3rem;
        margin-bottom: 0.965em;
        margin-top: 1.52em;
    }
}

@media only screen and (max-width: 575px) {
    h1 {
        font-size: 3.4rem;
    }
    h2 {
        font-size: 2.55rem;
    }
    h3 {
        font-size: 2.125rem;
    }
    h4 {
        font-size: 1.7rem;
    }
    h5 {
        font-size: 1.5rem;
        margin-bottom: 0.65em;
        margin-top: 1em;
    }
    h6 {
        font-size: 1.2rem;
        margin-bottom: 0.8em;
        margin-top: 1.25em;
    }
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
    margin-top: 0;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0;
}

p {
    line-height: 1.5rem;
    margin-bottom: 1.5em;
}

ul:last-child,
ol:last-child,
p:last-child {
    margin-bottom: 0;
}

p:last-child:after {
    clear: both;
    content: "";
    display: block;
}

img,
figure {
    height: auto;
    max-width: 100%;
}

figcaption {
    font-size: 0.95em;
    line-height: 1.4;
    padding: 10px 0 7px;
}

figcaption p {
    margin-bottom: 0;
}

b,
strong {
    color: #031221;
    font-weight: 700;
}

label {
    color: #1f232b;
}

a:hover {
    text-decoration: none;
    transition: all 0.15s linear 0s;
}

blockquote {
    border-left: 2px solid var(--maincolor);
    margin-bottom: 38px;
    margin-left: 36px;
    margin-top: 30px;
    max-width: 765px;
    padding-left: 40px;
    padding-top: 20px;
    position: relative;
}

blockquote::before {
    background: url(/images/quote.png) no-repeat center;
    background-size: contain;
    content: "";
    height: 32px;
    left: 55px;
    position: absolute;
    top: 0;
    width: 32px;
}

blockquote>p {
    text-indent: 56px;
}

.big {
    font-size: 20px;
    line-height: 1.1em;
    margin: 0.45em 0 1em;
}

blockquote footer {
    display: flex;
}

blockquote footer span:not(:last-child) {
    margin-right: 20px;
}

blockquote footer span {
    color: #111516;
}

blockquote footer p {
    margin-bottom: 0;
}

blockquote footer span.divider {
    margin: 0 25px;
}

blockquote .media {
    margin: 15px 0;
}

blockquote .media img {
    border-radius: 50%;
    max-width: 60px;
}

blockquote h3,
blockquote h4,
blockquote .text-small {
    font-style: normal;
}

input:focus,
button:focus,
select:focus,
textarea:focus,
a:focus {
    outline: medium none;
    text-decoration: none;
}

a>img {
    transition: all 0.3s ease-in-out 0s;
}

a:hover>img {
    opacity: 1;
}

a.btn:active,
a.button:active,
button:active,
input[type="submit"]:active {
    position: relative;
    top: 1px !important;
}

hr {
    border-color: #e1e1e1;
    margin-bottom: 30px;
    margin-left: 0;
    margin-right: 0;
    margin-top: 30px;
}

iframe {
    border: none;
    max-width: 100%;
}

table {
    margin: 10px 0;
    max-width: 100%;
    width: 100%;
}

table td,
table th {
    border: 1px solid #e1e1e1;
    line-height: 1.42857143;
    padding: 18px 8px;
    text-align: center;
    vertical-align: middle;
}

table th {
    color: #111516;
    font-weight: normal;
    vertical-align: middle;
}

ul,
ol {
    padding-left: 1.15rem;
}

ul li,
ol li {
    padding: 5px 0 5px 0;
}

.list-bordered {
    list-style: none;
    overflow: hidden;
    padding: 0;
}

.list-bordered li {
    border-bottom: 1px solid #e1e1e1;
    border-top: 1px solid #e1e1e1;
    padding-bottom: 15px;
    padding-top: 14px;
}

.list-bordered li+li {
    border-top: none;
}

.list-bordered.no-top-border>li:first-child {
    border-top: none;
}

.list-bordered.no-bottom-border>li:last-child {
    border-bottom: none;
}

.list-styled ul,
ul.list-styled {
    list-style: none;
    padding: 0;
}

.list-styled ul li,
ul.list-styled li {
    padding: 5px 0;
    position: relative;
}

.list-styled ul li:before,
ul.list-styled li:before {
    color: var(--maincolor);
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 14px;
    padding-right: 15px;
    position: relative;
}

.list-num ol,
ol.list-num {
    counter-reset: li !important;
    list-style: none outside none;
    margin-bottom: 0;
    padding: 0;
}

.list-num ol li,
ol.list-num li {
    font-size: 16px;
    padding: 5px 0;
    position: relative;
}

.list-num ol li::before,
ol.list-num li::before {
    color: var(--maincolor);
    content: ".0" counter(li);
    counter-increment: li;
    left: 2px;
    padding-right: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

dt {
    font-weight: 800;
}

/* dd {
    margin: 0 1.5em 1.5em;
} */

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="number"],
textarea,
select,
.sppb-form-control {
    background-color: #efefef;
    border: 1px solid #dedfe0;
    border-radius: 5em;
    box-shadow: none;
    color: #5b5f66;
    font-size: 16px;
    font-weight: 300;
    line-height: 30px;
    padding: 9px 25px;
    width: 100%;
}

input[disabled] {
    cursor: not-allowed;
    opacity: .4;
}

input[type="submit"],
button {
    cursor: pointer;
}

input[type="submit"],
button {
    background: #e7c900;
    border: 1px solid #e7c900;
    color: #111516;
    cursor: pointer;
    padding: 12px 36px;
    transition: all 0.2s ease-in-out;
}

input[type="submit"]:hover,
button:hover {
    background-color: transparent;
}

textarea,
textarea.sppb-form-control {
    height: auto;
    padding-top: 14px;
}

.ls-wrapper .slider-btn i {
    margin-left: .5rem !important;
    font-size: 12px;
}

#sp-header .sppb-btn,
#sp-component .sppb-btn,
#sp-footer .sppb-btn,
#sp-left .sppb-btn,
#sp-right .sppb-btn,
.btn,
.sppb-btn,
.ls-wrapper .slider-btn {
    border-radius: 5em;
    border: 2px solid transparent;
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
    min-width: 170px;
    padding: 15px 35px;
    text-align: center;
    text-transform: capitalize;
    cursor: pointer;
}

#sp-header .sppb-btn.sppb-btn-primary,
#sp-component .sppb-btn.sppb-btn-primary,
#sp-footer .sppb-btn.sppb-btn-primary,
.btn.btn-primary,
.sppb-btn.sppb-btn-primary,
.ls-wrapper .slider-btn {
    color: #fff;
    background-color: var(--maincolor);
}

#sp-header .sppb-btn.sppb-btn-primary:hover,
#sp-component .sppb-btn.sppb-btn-primary:hover,
#sp-footer .sppb-btn.sppb-btn-primary:hover,
.btn.btn-primary:hover,
.sppb-btn.sppb-btn-primary:hover {
    background-color: transparent;
    border-color: var(--maincolor);
    color: #1f232b;
}

#sp-header .sppb-btn.sppb-btn-secondary,
#sp-component .sppb-btn.sppb-btn-secondary,
#sp-footer .sppb-btn.sppb-btn-secondary,
.sppb-btn.sppb-btn-secondary {
    color: #111516;
    border-color: var(--maincolor);
    background-color: transparent;
    position: relative;
    overflow: hidden;
}

#sp-header .sppb-btn.sppb-btn-secondary:before,
#sp-component .sppb-btn.sppb-btn-secondary:before,
#sp-footer .sppb-btn.sppb-btn-secondary:before,
.sppb-btn.sppb-btn-secondary:before {
    content: "";
    height: 120%;
    left: -10%;
    position: absolute;
    top: 0;
    -webkit-transform: skewX(15deg);
    transform: skewX(15deg);
    transition: all 0.3s ease-in-out;
    width: 120%;
    z-index: -1;
    background-color: var(--maincolor);
}

#sp-header .sppb-btn.sppb-btn-secondary:hover:before,
#sp-component .sppb-btn.sppb-btn-secondary:hover:before,
#sp-footer .sppb-btn.sppb-btn-secondary:hover:before,
.sppb-btn.sppb-btn-secondary:hover:before {
    width: 0;
}

#sp-header .sppb-btn.sppb-btn-secondary:hover,
#sp-component .sppb-btn.sppb-btn-secondary:hover,
#sp-footer .sppb-btn.sppb-btn-secondary:hover,
.sppb-btn.sppb-btn-secondary:hover {
    color: #fff;
}

#sp-header .sppb-btn.sppb-btn-default,
#sp-component .sppb-btn.sppb-btn-default,
#sp-footer .sppb-btn.sppb-btn-default,
.btn.btn-default,
.sppb-btn.sppb-btn-default {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

#sp-header .sppb-btn.sppb-btn-success,
#sp-component .sppb-btn.sppb-btn-success,
#sp-footer .sppb-btn.sppb-btn-success,
.btn.btn-success,
.sppb-btn.sppb-btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

#sp-header .sppb-btn.sppb-btn-info,
#sp-component .sppb-btn.sppb-btn-info,
#sp-footer .sppb-btn.sppb-btn-info,
.btn.btn-info,
.sppb-btn.sppb-btn-info {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8;
}

#sp-header .sppb-btn.sppb-btn-warning,
#sp-component .sppb-btn.sppb-btn-warning,
#sp-footer .sppb-btn.sppb-btn-warning,
.btn.btn-warning,
.sppb-btn.sppb-btn-warning {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107;
}

#sp-header .sppb-btn.sppb-btn-danger,
#sp-component .sppb-btn.sppb-btn-danger,
#sp-footer .sppb-btn.sppb-btn-danger,
.btn.btn-danger,
.sppb-btn.sppb-btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

#sp-header .sppb-btn.sppb-btn-dark,
#sp-component .sppb-btn.sppb-btn-dark,
#sp-footer .sppb-btn.sppb-btn-dark,
.btn.btn-dark,
.sppb-btn.sppb-btn-dark {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d;
}

#sp-header .sppb-btn.sppb-btn-link,
#sp-component .sppb-btn.sppb-btn-link,
#sp-footer .sppb-btn.sppb-btn-link,
.btn.btn-link,
.sppb-btn.sppb-btn-link {
    color: #111516;
    text-decoration: underline;
}

.sppb-btn.sppb-btn-link {
    padding: 0 !important;
    min-width: auto !important;
}

.sppb-addon-optin-forms {
    padding: 0px;
}

#sp-footer {
    font-size: inherit;
}

/* text helpers */

.fs-12 {
    font-size: 12px;
}

.fs-14 {
    font-size: 14px;
}

.fs-16 {
    font-size: 16px;
}

.fs-18 {
    font-size: 18px;
}

.fs-20 {
    font-size: 20px;
}

.fs-24 {
    font-size: 24px;
}

.fs-28 {
    font-size: 28px;
}

.fs-32 {
    font-size: 32px;
}

.fs-36 {
    font-size: 36px;
}

.fs-40 {
    font-size: 40px;
}

.fs-46 {
    font-size: 46px;
}

.fs-52 {
    font-size: 52px;
}

.fs-56 {
    font-size: 56px;
}

.fs-60 {
    font-size: 60px;
}

.fs-70 {
    font-size: 70px;
}

.fw-100 {
    font-weight: 100;
}

.fw-300,
.thin {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-700,
.bolder {
    font-weight: 700;
}

.fw-900,
.bold {
    font-weight: 900;
}

.divider-0 {
    margin-top: 0;
}

.divider-10 {
    margin-top: 10px;
}

.divider-15 {
    margin-top: 15px;
}

.divider-20 {
    margin-top: 20px;
}

.divider-25 {
    margin-top: 25px;
}

.divider-30 {
    margin-top: 30px;
}

.divider-35 {
    margin-top: 35px;
}

.divider-40 {
    margin-top: 40px;
}

.divider-45 {
    margin-top: 45px;
}

.divider-50 {
    margin-top: 50px;
}

.divider-55 {
    margin-top: 55px;
}

.divider-60 {
    margin-top: 60px;
}

.divider-70 {
    margin-top: 70px;
}

.divider-80 {
    margin-top: 80px;
}

.divider-90 {
    margin-top: 90px;
}

.divider-100 {
    margin-top: 100px;
}

.divider-120 {
    margin-top: 120px;
}

.divider-150 {
    margin-top: 150px;
}

.divider-170 {
    margin-top: 170px;
}

.divider-180 {
    margin-top: 180px;
}

.divider-200 {
    margin-top: 200px;
}

.divider-270 {
    margin-top: 270px;
}

@media (min-width: 576px) {
    .divider-sm-0 {
        margin-top: 0;
    }
    .divider-sm-10 {
        margin-top: 10px;
    }
    .divider-sm-15 {
        margin-top: 15px;
    }
    .divider-sm-20 {
        margin-top: 20px;
    }
    .divider-sm-25 {
        margin-top: 25px;
    }
    .divider-sm-30 {
        margin-top: 30px;
    }
    .divider-sm-35 {
        margin-top: 35px;
    }
    .divider-sm-40 {
        margin-top: 40px;
    }
    .divider-sm-45 {
        margin-top: 45px;
    }
    .divider-sm-50 {
        margin-top: 50px;
    }
    .divider-sm-55 {
        margin-top: 55px;
    }
    .divider-sm-60 {
        margin-top: 60px;
    }
    .divider-sm-70 {
        margin-top: 70px;
    }
    .divider-sm-80 {
        margin-top: 80px;
    }
    .divider-sm-90 {
        margin-top: 90px;
    }
    .divider-sm-100 {
        margin-top: 100px;
    }
    .divider-sm-120 {
        margin-top: 120px;
    }
    .divider-sm-150 {
        margin-top: 150px;
    }
    .divider-sm-170 {
        margin-top: 170px;
    }
    .divider-sm-180 {
        margin-top: 180px;
    }
    .divider-sm-200 {
        margin-top: 200px;
    }
    .divider-sm-270 {
        margin-top: 270px;
    }
}

@media (min-width: 768px) {
    .divider-md-0 {
        margin-top: 0;
    }
    .divider-md-10 {
        margin-top: 10px;
    }
    .divider-md-15 {
        margin-top: 15px;
    }
    .divider-md-20 {
        margin-top: 20px;
    }
    .divider-md-25 {
        margin-top: 25px;
    }
    .divider-md-30 {
        margin-top: 30px;
    }
    .divider-md-35 {
        margin-top: 35px;
    }
    .divider-md-40 {
        margin-top: 40px;
    }
    .divider-md-45 {
        margin-top: 45px;
    }
    .divider-md-50 {
        margin-top: 50px;
    }
    .divider-md-55 {
        margin-top: 55px;
    }
    .divider-md-60 {
        margin-top: 60px;
    }
    .divider-md-70 {
        margin-top: 70px;
    }
    .divider-md-80 {
        margin-top: 80px;
    }
    .divider-md-90 {
        margin-top: 90px;
    }
    .divider-md-100 {
        margin-top: 100px;
    }
    .divider-md-120 {
        margin-top: 120px;
    }
    .divider-md-150 {
        margin-top: 150px;
    }
    .divider-md-170 {
        margin-top: 170px;
    }
    .divider-md-180 {
        margin-top: 180px;
    }
    .divider-md-200 {
        margin-top: 200px;
    }
    .divider-md-270 {
        margin-top: 270px;
    }
}

@media (min-width: 992px) {
    .divider-lg-0 {
        margin-top: 0;
    }
    .divider-lg-10 {
        margin-top: 10px;
    }
    .divider-lg-15 {
        margin-top: 15px;
    }
    .divider-lg-20 {
        margin-top: 20px;
    }
    .divider-lg-25 {
        margin-top: 25px;
    }
    .divider-lg-30 {
        margin-top: 30px;
    }
    .divider-lg-35 {
        margin-top: 35px;
    }
    .divider-lg-40 {
        margin-top: 40px;
    }
    .divider-lg-45 {
        margin-top: 45px;
    }
    .divider-lg-50 {
        margin-top: 50px;
    }
    .divider-lg-55 {
        margin-top: 55px;
    }
    .divider-lg-60 {
        margin-top: 60px;
    }
    .divider-lg-70 {
        margin-top: 70px;
    }
    .divider-lg-80 {
        margin-top: 80px;
    }
    .divider-lg-90 {
        margin-top: 90px;
    }
    .divider-lg-100 {
        margin-top: 100px;
    }
    .divider-lg-120 {
        margin-top: 120px;
    }
    .divider-lg-150 {
        margin-top: 150px;
    }
    .divider-lg-170 {
        margin-top: 170px;
    }
    .divider-lg-180 {
        margin-top: 180px;
    }
    .divider-lg-200 {
        margin-top: 200px;
    }
    .divider-lg-270 {
        margin-top: 270px;
    }
}

@media (min-width: 1200px) {
    .divider-xl-0 {
        margin-top: 0;
    }
    .divider-xl-10 {
        margin-top: 10px;
    }
    .divider-xl-15 {
        margin-top: 15px;
    }
    .divider-xl-20 {
        margin-top: 20px;
    }
    .divider-xl-25 {
        margin-top: 25px;
    }
    .divider-xl-30 {
        margin-top: 30px;
    }
    .divider-xl-35 {
        margin-top: 35px;
    }
    .divider-xl-40 {
        margin-top: 40px;
    }
    .divider-xl-45 {
        margin-top: 45px;
    }
    .divider-xl-50 {
        margin-top: 50px;
    }
    .divider-xl-55 {
        margin-top: 55px;
    }
    .divider-xl-60 {
        margin-top: 60px;
    }
    .divider-xl-70 {
        margin-top: 70px;
    }
    .divider-xl-80 {
        margin-top: 80px;
    }
    .divider-xl-90 {
        margin-top: 90px;
    }
    .divider-xl-100 {
        margin-top: 100px;
    }
    .divider-xl-120 {
        margin-top: 120px;
    }
    .divider-xl-150 {
        margin-top: 150px;
    }
    .divider-xl-170 {
        margin-top: 170px;
    }
    .divider-xl-180 {
        margin-top: 180px;
    }
    .divider-xl-200 {
        margin-top: 200px;
    }
    .divider-xl-270 {
        margin-top: 270px;
    }
}

.sp-scroll-up {
    background: var(--maincolor);
}

.color-darkgrey {
    color: #111516;
}

.z-index0 {
    z-index: 0 !important;
}

.z-index2 {
    z-index: 2 !important;
}

.excerpt {
    color: #111516;
    font-size: 20px;
}

.bold {
    font-weight: 700;
    text-transform: capitalize;
}

.special-column-center .sppb-container-inner>.sppb-row {
    margin-left: auto !important;
    margin-right: auto !important;
    flex-wrap: nowrap;
}

.special-column-center .sppb-container-inner>.sppb-row>[class^="sppb-col"]:first-child {
    flex-shrink: 1;
    min-width: 200px;
    text-align: center;
}

#particles-js canvas {
    position: absolute;
    left: 0;
    top: 0;
}

#particles-js2 canvas {
    position: absolute;
    left: 0;
    top: 0;
}

#particles-js3 canvas {
    position: absolute;
    left: 0;
    top: 0;
}

.border-bottom {
    border-bottom: 1px solid rgba(255, 255, 255, 0.102) !important;
}

.border-right {
    border-right: 1px solid rgba(255, 255, 255, 0.102) !important;
}

@media (max-width: 991px) {
    .border-bottom {
        border-bottom: 0px solid rgba(255, 255, 255, 0.102) !important;
    }
    .border-right {
        border-right: 0px solid rgba(255, 255, 255, 0.102) !important;
    }
}

.offset-big-right {
    overflow: visible;
    position: relative;
    margin-right: 70px;
    margin-bottom: 70px;
    transform: translateX(100px);
}

@media (max-width: 992px) {
    .offset-big-right {
        transform: none;
    }
}

.offset-big-right .sppb-addon-wrapper:nth-child(1) {
    animation: image-animation2 1s linear;
    bottom: 0;
    left: 70px;
    position: absolute;
    right: -70px;
    top: 70px;
    transition: all 0.6s ease-in-out;
    z-index: 5;
}

.offset-big-right .sppb-addon-wrapper:nth-child(1):hover {
    animation: image-animation 1s linear;
    z-index: 7;
}

.offset-big-right .sppb-addon-wrapper:nth-child(2) {
    animation: image-animation 1s linear;
    position: relative;
    transition: all 0.6s ease-in-out;
    z-index: 6;
}

.offset-big-right .sppb-addon-wrapper:nth-child(1):hover+.sppb-addon-wrapper {
    animation: image-animation2 1s linear;
    z-index: 5;
}

.sppb-divider {
    display: block;
}

/* HEADER */

#sp-header {
    background-color: rgba(3, 18, 33, 0.7);
    height: auto;
    box-shadow: none;
    transition: all 0.5s ease-in-out;
    padding-left: 100px;
    padding-right: 100px;
    padding-bottom: 10px;
    padding-top: 10px;
    position: absolute;
}

#sp-header.header-sticky {
    box-shadow: 0 2px 15px 0 rgba(100, 100, 100, 0.05);
    opacity: 0.98;
    transition: all 0.5s ease-in-out;
}

#sp-header>.row {
    -ms-flex-align: center !important;
    align-items: center !important;
}

.logo-image,
.logo-image-phone {
    height: auto !important;
}

#sp-header .logo a .logo-image,
#sp-header .logo a .logo-image-phone {
    display: inline-block;
    max-height: 80px;
    transition: all 0.3s ease-in-out 0s;
}

#sp-header .logo a:hover>img {
    transform: scale(1.05);
}

.sp-megamenu-parent {
    float: none;
    text-align: center;
}

.sp-megamenu-parent>li {
    text-align: left;
}

.sp-megamenu-parent>li.dot-menu::after {
    content: "";
    display: inline-block;
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    border-radius: 100%;
    width: 4px;
    height: 4px;
}

.sp-megamenu-parent>li>a,
.sp-megamenu-parent>li>span {
    display: inline-block;
    font-size: 16px;
    font-weight: 300;
    line-height: 14px;
    padding-bottom: 33px;
    padding-top: 33px;
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
    transition: all 0.2s ease-in-out 0s;
}

#sp-header.header-sticky .sp-megamenu-parent>li>a,
#sp-header.header-sticky .sp-megamenu-parent>li>span {
    padding-bottom: 13px;
    padding-top: 13px;
}

.sp-megamenu-parent>li:first-child>a {
    padding-left: 0;
}

.sp-megamenu-parent>li:last-child>a {
    padding-right: 0;
}

.sp-megamenu-parent>li.active>a {
    font-weight: 300;
}

body.ltr .sp-megamenu-parent>li.sp-has-child>a::after,
body.ltr .sp-megamenu-parent>li.sp-has-child>span::after {
    content: "\f078";
    display: inline-block;
    font-family: Font Awesome 5 Free;
    font-size: 10px;
    font-weight: 900;
    margin-left: 8px;
    position: relative;
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
    float: none;
}

@media (max-width: 1440px) {
    .sp-megamenu-parent>li>a,
    .sp-megamenu-parent>li>span {
        padding-left: 14px;
        padding-right: 14px;
    }
    .sp-megamenu-parent>li.dot-menu::after {
        display: none;
    }
}

@media (max-width: 1200px) {
    .sp-megamenu-parent>li>a,
    .sp-megamenu-parent>li>span {
        padding-left: 9px;
        padding-right: 9px;
    }
    .sp-megamenu-parent>li.sp-has-child>a::after {
        display: none !important;
    }
}

#offcanvas-toggler {
    display: block;
    height: auto;
    line-height: 69px;
    font-size: 20px;
    padding: 10px 0 10px 0;
}

.sp-megamenu-parent .sp-dropdown .sp-dropdown-inner {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    padding: 28px 0;
    border-top: 4px solid var(--maincolor);
}

.sp-megamenu-parent .sp-dropdown li.sp-menu-item>a,
.sp-megamenu-parent .sp-dropdown li.sp-menu-item span:not(.sp-menu-badge) {
    line-height: 1.1em;
    display: block;
    cursor: pointer;
    padding: 15px 1.1em;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 16px;
    font-weight: 300;
}

.sp-megamenu-parent .sp-dropdown li.sp-menu-item:last-child>a {
    border: none;
}

.sp-megamenu-parent .sp-dropdown.sp-dropdown-mega .sp-dropdown-inner {
    padding: 40px;
}

.sp-megamenu-parent .sp-mega-group>li>a {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0 30px !important;
    text-transform: uppercase;
}

/* */

/* PAGE TITLE */

.sp-page-title {
    padding: 150px 0 50px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
    background-attachment: scroll;
    text-align: center;
}

.sp-page-title:before {
    opacity: 0.9 !important;
    background-color: #031221;
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.sp-page-title .container {
    position: relative;
    z-index: 2;
}

.sp-page-title .sp-page-title-heading {
    font-size: 40px;
    letter-spacing: -0.6px;
    line-height: 1;
    margin-bottom: 0.45em;
    text-transform: capitalize;
}

.sp-page-title .breadcrumb {
    margin: 0;
    line-height: 1;
    font-size: 16px;
    padding-bottom: 13px;
    position: relative;
    justify-content: center;
}

.breadcrumb li {
    padding: 0;
    margin-right: 20px;
    line-height: 1.5;
    min-height: auto;
}

.breadcrumb li.float-left {
    margin-right: 0 !important;
}

.breadcrumb-item+.breadcrumb-item {
    padding-left: 0;
}

.breadcrumb-item+.breadcrumb-item:before {
    content: "\f054";
    font-family: "Font Awesome 5 Free", sans-serif;
    font-weight: 900;
    padding-right: 20px;
    font-size: 11px;
}

.sp-page-title .breadcrumb>.active {
    color: var(--maincolor);
    font-weight: 500;
    opacity: 0.9;
}

.breadcrumb li a:hover {
    color: var(--maincolor);
}

/* */

#sp-header.header-sticky~section#sp-main-body {
    padding-top: 0;
}

.com-spsimpleportfolio #sp-main-body,
.com-content #sp-main-body,
.com-j2store #sp-main-body {
    padding: 150px 0;
}

.com-spsimpleportfolio #sp-header.header-sticky~section#sp-main-body,
.com-content #sp-header.header-sticky~section#sp-main-body,
.com-j2store #sp-header.header-sticky~section#sp-main-body {
    padding-top: 150px;
}

.presentation-btn span {
    display: inline-block;
    font-family: "Roboto", sans-serif;
    padding-left: 25px;
    text-decoration: underline;
    transition: all .3s ease-in-out;
    color: #fff;
}

.presentation-btn.style2 span {
    display: inline-block;
    padding-left: 15px;
    text-decoration: none;
    transition: all .3s ease-in-out;
    color: #fff;
}

.presentation-btn:after {
    align-items: center;
    -webkit-animation: pulse-icon-color-main 1.5s infinite;
    background-color: #e7c900;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(156, 187, 45, 0.4), 0 0 0 0 rgba(156, 187, 45, 0.6);
    color: #fff;
    content: "\e900";
    display: flex;
    font-family: "icomoon";
    font-size: 20px;
    height: 50px;
    justify-content: center;
    left: -25px;
    line-height: 1;
    padding-left: 3px;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: all 0.3s ease-in-out;
    width: 50px;
    z-index: 4;
}

.presentation-btn {
    align-items: center;
    display: flex;
    flex-direction: row-reverse;
}

.presentation-btn:hover span {
    color: #e7d618;
}

.presentation-btn:hover::after {
    background-color: #e7d618;
    box-shadow: 0 0 0 0 rgba(231, 214, 24, 0.4), 0 0 0 0 rgba(231, 214, 24, 0.6);
}

.sppb-addon-single-image-container {
    color: transparent;
    font-size: 0;
}

.step:hover .sppb-addon-content:before,
.step:hover .sppb-addon-title {
    opacity: 1 !important;
}

.s-overlay {
    overflow: hidden;
}

.s-overlay:before {
    background-color: #111516;
    opacity: 0.9;
    height: 3000px;
    left: 0;
    right: auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 46%;
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

@media (max-width: 992px) {
    .s-overlay:before {
        -webkit-transform: none;
        transform: none;
        width: 100%;
    }
}

/* SIDEBAR */

.sidebar-class .sppb-row-container {
    width: 100% !important;
}

.sidebar-class.com-sppagebuilder #sp-main-body {
    margin: 0 auto;
}

@media (min-width: 768px) {
    .sidebar-class.com-sppagebuilder #sp-main-body {
        max-width: 750px;
    }
}

@media (min-width: 992px) {
    .sidebar-class.com-sppagebuilder #sp-main-body {
        max-width: 970px;
    }
}

@media (min-width: 1200px) {
    .sidebar-class.com-sppagebuilder #sp-main-body {
        max-width: 1170px;
    }
}

.com-sppagebuilder #sp-right,
.com-sppagebuilder #sp-left {
    
    padding-bottom: 150px;
    position: relative;
}

#sp-left .sp-module,
#sp-right .sp-module {
    margin-top: 70px;
    border: 0px solid #f3f3f3;
    padding: 0;
    border-radius: 0px;
}

#sp-left .sp-module ul>li,
#sp-right .sp-module ul>li {
    display: block;
    border-bottom: 0px solid #f3f3f3;
}

/* */

/* PORTFOLIO */

.sp-simpleportfolio .sp-simpleportfolio-filter {
    text-align: center;
    margin-bottom: 0;
}

.sp-simpleportfolio .sp-simpleportfolio-filter>ul {
    padding-top: 0;
    padding-bottom: 45px;
}

.sp-simpleportfolio .sp-simpleportfolio-filter>ul>li {
    float: left;
    display: block;
    margin: 0;
}

.sp-simpleportfolio .sp-simpleportfolio-filter>ul>li>a {
    display: block;
    font-weight: 400;
    padding: 0 15px;
    color: #111516;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    background: none;
}

.sp-simpleportfolio .sp-simpleportfolio-filter>ul>li.active>a {
    background: none;
    color: var(--maincolor);
}

.sp-simpleportfolio .sp-simpleportfolio-filter>ul>li:hover>a {
    background: none;
    color: var(--maincolor);
}

#parent {
    overflow: hidden;
    position: relative;
}

#propertyThumbnails {
    margin-bottom: -65px;
    margin-top: -40px;
    max-height: 1010px;
    overflow: hidden;
}

.sp-simpleportfolio .item-media {
    overflow: hidden;
    position: relative;
}

.sp-simpleportfolio .item-media img {
    width: 100%;
}

.sp-simpleportfolio .item-content {
    align-items: center;
    background: rgba(231, 201, 0, 0.8);
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
    transition: all 0.3s ease;
    z-index: 2;
    text-align: center;
}

.sp-simpleportfolio .item-content .icons-link {
    z-index: 2;
}

.sp-simpleportfolio .sp-simpleportfolio-item:hover .item-content {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.sp-simpleportfolio .portfolio-title {
    position: relative;
    z-index: 3;
}

.sp-simpleportfolio .portfolio-title a {
    font-size: 20px;
    font-weight: 700;
    text-transform: capitalize;
}

.sp-simpleportfolio .portfolio-title a:hover {
    color: #fff;
}

.com-spsimpleportfolio.gallery-full #sp-main-body .container {
    max-width: 100%;
}

.bordered {
    border: 1px solid #e4ebe8;
}

.bordered .item-media,
.bordered .entry-thumbnail {
    margin: -1px -1px -1px -1px;
    z-index: 1;
}

.sp-simpleportfolio .media-links {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
}

.sp-simpleportfolio .media-links::before {
    background-color: rgba(255, 255, 255, 0.5);
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all 0.2s linear;
}

.sp-simpleportfolio .media-links div {
    margin-top: -30px;
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: 4;
}

.sp-simpleportfolio .icons-link a {
    border: 2px solid transparent;
    display: inline-block;
    font-size: 16px;
    height: 60px;
    line-height: 58px;
    opacity: 0;
    position: relative;
    text-align: center;
    top: -100px;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0s;
    width: 60px;
    z-index: 5;
}

.sp-simpleportfolio .icons-link a.link-zoom {
    background-color: #1f232b;
    border-color: #1f232b;
    color: #fff;
}

.sp-simpleportfolio .icons-link a.link-view {
    background-color: #fff;
    border-color: #fff;
    color: #1f232b;
    transition-delay: 0.1s;
}

.sp-simpleportfolio .icons-link a:hover {
    background-color: var(--maincolor);
    border-color: var(--maincolor);
    color: #fff;
    opacity: 1;
}

.sp-simpleportfolio .sp-simpleportfolio-overlay-wrapper:hover .media-links div {
    filter: alpha(opacity=100);
    opacity: 1;
}

.sp-simpleportfolio .sp-simpleportfolio-overlay-wrapper:hover .icons-link a {
    filter: alpha(opacity=100);
    opacity: 1;
    top: 0;
}

.sp-simpleportfolio .item-content2 {
    padding: 55px 50px;
    text-align: center;
    border-color: transparent;
    box-shadow: 0 3px 7px 0px rgba(0, 0, 0, 0.35);
}

.sppb-image-carousel-layout1 .sppb-carousel-extended-content-wrap,
.sppb-image-carousel-layout1 .sppb-carousel-extended-item img,
.sppb-image-carousel-layout1 .sppb-carousel-extended-item-overlay {
    border-radius: 0;
}

/* */

/* BLOG */

.article-list .article {
    padding: 0;
    border: 0px solid #f5f5f5;
    border-radius: 0;
    position: relative;
    border-color: transparent;
    box-shadow: 0 3px 7px 0px rgba(0, 0, 0, 0.35);
}

.article-list .col-md-12 .article {
    margin-bottom: 0px;
}

.article-list .row>.col-md-12+.col-md-12 {
    margin-top: 100px;
}

.article-list .article .article-intro-image,
.article-list .article .article-featured-video,
.article-list .article .article-featured-audio,
.article-list .article .article-feature-gallery {
    margin: 0;
    border-radius: 0;
    border-bottom: 0px solid #f5f5f5;
    overflow: hidden;
    position: relative;
}

.article-list .article .article-intro-image img,
.article-list .article .article-featured-video img,
.article-list .article .article-featured-audio img,
.article-list .article .article-feature-gallery img {
    border-radius: 0;
    width: 100%;
}

.article-body {
    padding: 55px 50px;
}

.article-list .article .article-header h1,
.article-list .article .article-header h2 {
    margin: 0 0 1rem !important;
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
    text-transform: capitalize;
}

.article-list .article .article-header h1 a,
.article-list .article .article-header h2 a {
    color: #1f232b;
}

.article-list .article .article-header h1 a:hover,
.article-list .article .article-header h2 a:hover,
.article-list .article .article-header h1 a:active,
.article-list .article .article-header h2 a:active,
.article-list .article .article-header h1 a:focus,
.article-list .article .article-header h2 a:focus {
    color: var(--maincolor);
}

.article-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    line-height: 1;
    left: 0px;
    position: absolute;
    top: 30px;
    z-index: 4;
    display: block;
    margin-bottom: 12px;
}

.article-info>span {
    background-color: var(--maincolor);
    display: inline-block;
    font-size: 16px;
    font-weight: 300;
    padding: 5px 18px;
    color: #1f232b;
    transition: all 0.15s linear 0s;
    border-radius: 5em;
    line-height: 1;
    margin: 0 4px 4px 0;
    padding: 7px 20px;
}

.article-info>span:first-child {
    border-radius: 0 5em 5em 0;
}

.article-info>span a {
    color: #1f232b;
}

.article-info>span:hover a {
    color: var(--maincolor);
}

.article-info>span:hover {
    background-color: #031221;
    color: var(--maincolor);
}

.article-info>span:not(:last-child),
.article-info>span:not(:last-child) {
    margin-right: 10px;
}

.article-info>span+span::before {
    display: none;
}

.article-info>span i {
    font-size: 16px;
    margin-right: 5px;
    position: relative;
}

.article-list .article .readmore .entry-footer {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.article-list .article .readmore .entry-footer .createdby {
    color: #5b5f66;
    font-size: 16px;
    font-weight: 300;
}

.article-list .article .readmore .entry-footer .createdby i {
    margin-right: 5px;
}

.article-list .article .readmore a {
    border-width: 2px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 4px;
    min-width: 170px;
    padding: 10px 35px;
    text-align: center;
    text-transform: capitalize;
    line-height: 2.5;
    min-width: 50px;
    padding: 3px 2px;
    text-transform: lowercase;
    background-color: #1f232b;
    color: #fff;
    border-radius: 50%;
    flex-shrink: 1;
    margin-bottom: 0;
    border: 1px solid transparent;
}

.article-list .article .readmore a:hover,
.article-list .article .readmore a:active,
.article-list .article .readmore a:focus {
    background-color: transparent;
    border-color: #1f232b;
    color: #1f232b;
}

.article-list .article .article-intro-image a:after {
    background-color: #111516;
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all 0.2s linear;
}

.article-list .article .article-intro-image:hover a:after {
    opacity: 0.6;
}

.article-list .article .article-intro-image a:hover>img {
    opacity: 1;
}

/* SINGLE POST */

.article-details {
    border-color: transparent;
    box-shadow: 0 3px 7px 0px rgba(0, 0, 0, 0.35);
    position: relative;
}

.article-details .article-full-image {
    text-align: center;
    margin-bottom: 0;
}

.article-details .article-full-image img {
    display: block;
    border-radius: 0;
    width: 100%;
}

.article-details .article-header {
    display: none;
}

.single-article-content {
    padding: 55px 50px;
}

.article-details .article-info {
    display: block;
}

.article-details .article-info {
    margin-bottom: 1.2em;
}

.article-info>span.createdby {
    display: block;
    color: #111516;
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
    margin-bottom: 12px;
}

.article-info>span.createdby:before {
    background-color: #111516;
    content: "";
    display: inline-block;
    height: 1px;
    margin-right: 20px;
    -webkit-transform: translateY(-0.3em);
    transform: translateY(-0.3em);
    width: 40px;
}

.article-details .article-author-information {
    padding-top: 0;
    margin-top: 60px;
    border-top: 0px solid #f5f5f5;
    background-color: #eef3f5;
}

.article-details .article-author-information img {
    width: 100%;
}

.article-details .article-author-information .author-bio {
    padding: 35px;
}

.article-details .article-featured-video,
.article-details .article-featured-audio,
.article-details .article-feature-gallery {
    margin-bottom: 0;
}

/* */

/* SHOP */

.j2store-single-product {
    margin-bottom: 30px;
    overflow: hidden;
    padding: 0;
    position: relative;
    text-align: center;
    width: 100%;
    border-color: transparent;
    box-shadow: 0 3px 7px 0px rgba(0, 0, 0, 0.35);
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
}

.j2store-product-images .j2store-thumbnail-image a img {
    width: 100%;
}

.j2store-product-images .j2store-thumbnail-image a:after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.j2store-single-product:hover .j2store-product-images .j2store-thumbnail-image a:after {
    background-color: rgba(231, 201, 0, 0.7);
}

.product-title {
    font-size: 20px;
    letter-spacing: 0;
    line-height: 1;
    margin: 1em 0 1em;
    padding: 0 10px;
    text-transform: none;
    font-weight: 600;
}

.product-description-short p {
    margin-bottom: 0;
    color: #7a998c;
    min-width: 55px;
}

.product-description-short p strong {
    margin-left: 15px;
}

.product-description-short ul li,
.product-description-short ul.list-styled li {
    padding: 5px 0 4px;
}

.product-price-container {
    margin: 1.1em 0 1.4em;
    opacity: 1;
    font-weight: 500;
}

.base-price,
.sale-price {
    line-height: 1.5;
}

.product-price-container .strike {
    text-decoration: line-through;
    font-size: 16px;
    display: inline-block;
    color: #5b5f66;
    font-weight: 300;
    opacity: 0.7;
    padding-right: 1em;
}

.product-price-container .sale-price {
    font-size: 16px;
    font-weight: 500;
    color: #1f232b;
    display: inline-block;
}

.j2store-addtocart-form {
    left: 50%;
    margin-top: 0 !important;
    position: absolute;
    top: -52px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    transition: all 0.3s ease-out;
    z-index: 555;
}

.j2store-addtocart-form .btn {
    background-color: #fff !important;
    border: 2px solid #fff !important;
    border-radius: 5em;
    color: #1f232b !important;
    display: inline-block;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    padding: 12px 20px;
    text-align: center;
    text-transform: capitalize;
}

.j2store-addtocart-form .btn:hover {
    background-color: transparent !important;
    color: #1f232b !important;
}

.j2store-single-product:hover .j2store-addtocart-form {
    top: 25%;
}

/* Single Product */

.product .images {
    margin-bottom: 2em;
    position: relative;
}

.product .images {
    float: left;
    width: 50%;
}

.product .summary {
    margin-bottom: 4em;
    position: relative;
}

.product .summary {
    float: right;
    width: 47%;
}

.product .j2store-mainimage {
    overflow: hidden;
    position: relative;
}

.j2store-product-main-image {
    margin-bottom: 1px;
    width: 100%;
    transition: all 0.3s ease-in-out 0s;
}

.product .j2store-mainimage:hover .j2store-product-main-image {
    transform: scale(1.05);
}

.summary.entry-summary .product-price-container .sale-price {
    font-size: 20px;
    font-weight: 500;
}

.woocommerce-tabs {
    clear: both;
    margin: 4em 0;
}

.j2store-product-additional-images {
    bottom: 20px;
    color: transparent;
    font-size: 0;
    line-height: 0;
    position: absolute;
    text-align: center;
    width: 100%;
    z-index: 10;
    margin: 1px -1px;
    overflow: hidden;
    position: static;
    margin-bottom: 0;
}

.j2store-product-additional-images .additional-image-list {
    margin: 0;
    padding: 0;
}

.additional-image-list li {
    list-style-type: none;
    display: inline-block;
    float: left;
    margin: 0 0 1px;
    padding: 0 0 0 1px;
    width: 20%;
}

.product-title-simple {
    font-size: 24px;
    letter-spacing: -0.3px;
    line-height: 1;
}

.product-simple-short {
    margin-bottom: 30px;
    margin-top: 30px;
}

.product-simple-short .product-description-short {
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    max-width: auto;
    text-align: left;
}

.product-sku {
    display: none;
}

.product-qty,
.j2store-add-to-cart {
    display: block;
}

.product-qty input[type="text"],
.product-qty input[type="number"] {
    display: inline;
    height: 100%;
    padding: 0 !important;
    width: auto !important;
    text-align: center;
    margin: 0px;
    -moz-appearance: textfield;
    background-color: #f1f5f3;
    border: none;
    color: #1f232b;
    line-height: 60px;
    max-width: 5em;
    padding-left: 20px !important;
    padding-right: 20px !important;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
}

.form-control:focus {
    box-shadow: none;
}

.fade:not(.show) {
    opacity: 1;
}

.j2store-addtocart-form-simple .sppb-btn {
    position: relative;
    top: -1px;
    width: auto;
    margin-top: 40px;
}

.woocommerce-tabs ul.nav-tabs {
    border-bottom: 1px solid var(--maincolor);
    list-style: none;
    margin-bottom: 0;
    padding: 0;
}

.woocommerce-tabs ul.nav-tabs li {
    display: block;
    padding: 0;
    padding-bottom: 0;
    position: relative;
}

.woocommerce-tabs ul.nav-tabs li+li {
    border-top: none;
}

.woocommerce-tabs ul.nav-tabs li a {
    background: #fff;
    border: 1px solid #e4ebe8;
    border-bottom: none;
    border-radius: 0;
    color: #7a998c;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    margin-right: 4px;
    padding: 22px 42px;
    text-align: center;
    text-transform: capitalize;
}

.woocommerce-tabs ul.nav-tabs li.active a,
.woocommerce-tabs ul.nav-tabs li a:hover {
    background-color: var(--maincolor);
    border-color: var(--maincolor);
    color: #fff;
}

.woocommerce-tabs .tab-content {
    border: 1px solid #e4ebe8;
    padding: 40px;
}

.woocommerce-tabs .tab-content h2 {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1;
    margin-bottom: 0.6em;
    text-transform: capitalize;
}

.woocommerce-tabs .tab-content .product-description-short {
    margin-left: 0;
    margin-right: 0;
    margin-top: 10px;
    max-width: auto;
    text-align: left;
    margin-bottom: 10px;
}

.sppb-btn-primary.focus,
.sppb-btn-primary:focus {
    color: #fff;
    box-shadow: none !important;
}

.related,
.upsells,
.cross-sells {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 5em;
    text-align: center;
}

.related p.above,
.upsells p.above,
.cross-sells p.above {
    text-align: center;
    letter-spacing: 0.48em;
    margin: -1px 0 0;
}

.related>h2,
.upsells>h2,
.cross-sells>h2 {
    font-weight: 900;
    line-height: 1;
    word-wrap: break-word;
    margin: 11px 0px 0;
    margin-bottom: 60px;
}

.related .j2store-addtocart-form,
.upsells .j2store-addtocart-form,
.cross-sells .j2store-addtocart-form {
    width: 100%;
}

.related .j2store-addtocart-form a,
.upsells .j2store-addtocart-form a,
.cross-sells .j2store-addtocart-form a {
    background-color: #fff !important;
    border: 2px solid #fff !important;
    border-radius: 5em;
    color: #1f232b !important;
    display: inline-block;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.5;
    padding: 12px 20px;
    text-align: center;
    text-transform: capitalize;
}

.related .j2store-addtocart-form a:hover,
.upsells .j2store-addtocart-form a:hover,
.cross-sells .j2store-addtocart-form a:hover {
    background-color: transparent !important;
    color: #1f232b !important;
}

/* CART */

.view-carts .product-qty {
    display: inline-block;
}

.j2store-cart-table .remove-icon {
    white-space: normal !important;
    min-width: auto;
}

.j2store-single-product-view input.j2store-cart-button,
.view-carts .j2store-cart-buttons .buttons-left input,
.view-carts .buttons-right a,
#button-account,
#button-login,
#button-guest,
#button-payment-method,
#bank_form input,
.view-carts .buttons-right a:hover,
.view-carts .buttons-right a:active,
.view-carts .buttons-right a:focus,
.view-checkout input.btn {
    border-radius: 5em;
    border: 2px solid transparent;
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
    min-width: 170px;
    padding: 15px 35px;
    text-align: center;
    text-transform: capitalize;
    cursor: pointer;
    color: #1f232b;
    background-color: var(--maincolor);
}

.view-carts .buttons-right a,
.j2store-single-product-view input.j2store-cart-button:hover,
.j2store-single-product-view input.j2store-cart-button:focus,
.j2store-single-product-view input.j2store-cart-button:active,
.view-carts .j2store-cart-buttons .buttons-left input:hover,
.view-carts .j2store-cart-buttons .buttons-left input:active,
.view-carts .j2store-cart-buttons .buttons-left input:focus,
#button-account:hover,
#button-account:active,
#button-account:focus,
#button-login:hover,
#button-login:active,
#button-login:focus,
#button-guest:hover,
#button-guest:active,
#button-guest:focus,
#button-payment-method:hover,
#button-payment-method:active,
#button-payment-method:focus,
#bank_form input:hover,
#bank_form input:active,
#bank_form input:focus,
.payment input:hover,
.payment input:active,
.payment input:focus,
.buttons input:hover,
.buttons input:active,
.buttons input:focus,
.view-checkout input.btn:hover,
.view-checkout input.btn:active,
.view-checkout input.btn:focus {
    background-color: transparent;
    border-color: var(--maincolor);
    color: #1f232b;
}

.view-carts .j2store-cart-buttons .buttons-left .cart-continue-shopping-button input,
#button-login,
#button-login:hover,
#button-guest,
#button-guest:hover,
#button-payment-method,
#button-payment-method:hover,
#bank_form input,
#bank_form input:hover,
#button-account,
#button-account:hover {
    margin-left: 0;
}

#onCheckoutPayment_wrapper .payment-plugin-image-label {
    padding-right: 5px;
}

.customer-note {
    margin-bottom: 20px;
}

.customer-note textarea {
    height: auto !important;
    width: auto !important;
}

.view-checkout .checkout-content .left label input,
.view-checkout .checkout-content .shipping-make-same input {
    width: inherit;
    height: inherit;
    margin-right: 7px;
    display: inline-block;
}

.view-checkout .checkout-content .shipping-make-same input {
    width: auto !important;
}

.view-checkout #sp-main-body h2,
.view-checkout #sp-main-body h3 {
    font-size: 24px;
    padding: 10px 0 15px 0;
}

.view-myprofile #sp-main-body ul>li>a {
    margin: 5px 20px 15px 0;
    display: inline-block;
}

.view-myprofile #sp-main-body label {
    display: block;
}

.view-checkout input.btn {
    width: unset !important;
    margin-top: 5px;
}

.view-checkout textarea {
    height: auto !important;
}

.btn:active,
.btn:focus {
    box-shadow: none !important;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
    display: inline-block;
}

#bank_form input {
    margin-top: 20px;
}

.view-checkout .j2store.checkout h1 {
    display: none;
}

.j2store-cart .row-fluid .span6 {
    padding-top: 60px;
}

/* */

/* PAGINATION */

.pagination {
    display: block;
    padding-left: 0;
    list-style: none;
    border-radius: 0;
    margin-top: 35px;
    text-align: center;
}

.page-link {
    position: relative;
    display: block;
    background-color: #fff;
    border: 1px solid #e4ebe8;
    border-radius: 100% !important;
    color: #7a998c;
    display: inline-block;
    height: 2.5em;
    letter-spacing: 0;
    line-height: 1;
    margin-left: 0;
    margin-right: 4px;
    min-width: 2.5em;
    padding: 0.6em 0.4em 0.3em;
    text-align: center;
}

.page-item {
    display: inline-block;
}

.page-item.active .page-link {
    z-index: 1;
    background-color: var(--maincolor);
    border-color: var(--maincolor);
    color: #fff;
}

.page-link:hover {
    z-index: 2;
    text-decoration: none;
    background-color: var(--maincolor);
    border-color: var(--maincolor);
    color: #fff;
}

.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.page-item:last-child .page-link {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

/* J2Store Module */

.j2store-module-product {
    margin-bottom: 30px;
    padding: 0 15px;
    position: relative;
    text-align: center;
}

.product-inner {
    border: 1px solid #e1e1e1;
    position: relative;
}

.j2store-module-product h2 {
    font-size: 21px;
    margin-bottom: 0;
}

.j2store-module-product .sppb-btn.sppb-btn-primary:before {
    background-color: #fff !important;
}

.j2store-module-product .sppb-btn.sppb-btn-primary {
    background-color: var(--maincolor) !important;
}

/* */

/* IMPORT ICOMOON */

@font-face {
    font-family: 'icomoon';
    src: url('../fonts/icomoon/icomoon.eot?l0ftvp');
    src: url('../fonts/icomoon/icomoon.eot?l0ftvp#iefix') format('embedded-opentype'), url('../fonts/icomoon/icomoon.ttf?l0ftvp') format('truetype'), url('../fonts/icomoon/icomoon.woff?l0ftvp') format('woff'), url('../fonts/icomoon/icomoon.svg?l0ftvp#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="ico-"],
[class*=" ico-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ico-email:before {
    content: "\e912";
}

.ico-placeholder:before {
    content: "\e913";
}

.ico-smartphone:before {
    content: "\e914";
}

.ico-board-games-set:before {
    content: "\e900";
}

.ico-chess:before {
    content: "\e901";
}

.ico-chess-1:before {
    content: "\e902";
}

.ico-chess-2:before {
    content: "\e903";
}

.ico-crown:before {
    content: "\e904";
}

.ico-right-arrow:before {
    content: "\e905";
}

.ico-shield:before {
    content: "\e906";
}

.ico-strategy:before {
    content: "\e907";
}

.ico-strategy-1:before {
    content: "\e908";
}

.ico-strategy-2:before {
    content: "\e909";
}

.ico-strategy-3:before {
    content: "\e90a";
}

.ico-strategy-4:before {
    content: "\e90b";
}

.ico-strategy-5:before {
    content: "\e90c";
}

.ico-strategy-6:before {
    content: "\e90d";
}

.ico-strategy-7:before {
    content: "\e90e";
}

.ico-strategy-8:before {
    content: "\e90f";
}

.ico-strategy-9:before {
    content: "\e910";
}

.ico-support:before {
    content: "\e911";
}

@media (min-width: 320px) {
    #sp-footer .sppb-container-inner {
        max-width: 400px;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (min-width: 576px) {
    #sp-footer .sppb-container-inner {
        max-width: 540px;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (min-width: 768px) {
    #sp-footer .sppb-container-inner {
        max-width: 720px;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (min-width: 992px) {
    #sp-footer .sppb-container-inner {
        max-width: 960px;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (min-width: 1200px) {
    #sp-footer .sppb-container-inner {
        max-width: 1140px;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (min-width: 320px) {
    #sp-top1 .sppb-container-inner {
        max-width: 400px;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (min-width: 576px) {
    #sp-top1 .sppb-container-inner {
        max-width: 540px;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (min-width: 768px) {
    #sp-top1 .sppb-container-inner {
        max-width: 100%;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (min-width: 992px) {
    #sp-top1 .sppb-container-inner {
        max-width: 960px;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (min-width: 1200px) {
    #sp-top1 .sppb-container-inner {
        max-width: 1140px;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px;
        margin-right: auto;
        margin-left: auto;
    }
}

.pulse {
    animation-name: pulse;
    -webkit-animation-name: pulse;
    animation-duration: 1.5s;
    -webkit-animation-duration: 1.5s;
    animation-iteration-count: infinite;
    -webkit-animation-iteration-count: infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }
    50% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(0.95);
        opacity: 0.7;
    }
    50% {
        -webkit-transform: scale(1);
        opacity: 1;
    }
    100% {
        -webkit-transform: scale(0.95);
        opacity: 0.7;
    }
}

@-webkit-keyframes pulse-icon-color-main {
    0% {}
    70% {
        box-shadow: 0 0 0 30px rgba(156, 187, 45, 0), 0 0 0 15px rgba(156, 187, 45, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(156, 187, 45, 0), 0 0 0 0 rgba(156, 187, 45, 0);
    }
}

@keyframes image-animation {
    0%,
    100% {
        opacity: 1;
        transform: translateX(0);
    }
    25% {
        opacity: 0.5;
        transform: translateX(calc(25% - 70px));
    }
    50% {
        opacity: 0.25;
        transform: translateX(calc(50% - 35px));
        z-index: 7;
    }
    75% {
        opacity: 0.5;
        transform: translateX(calc(25% - 35px));
        z-index: 7;
    }
}

@keyframes image-animation2 {
    0%,
    100% {
        opacity: 1;
        transform: translateX(0);
    }
    25% {
        opacity: 0.5;
        transform: translateX(-25%);
    }
    50% {
        opacity: 0.25;
        transform: translateX(-50%);
        z-index: 5;
    }
    75% {
        opacity: 0.5;
        transform: translateX(-25%);
        z-index: 5;
    }
}