﻿body {
    position: relative;
    height: 100%;
    padding: 0;
    margin: 0;
    background-color: #1b1b1b;
    font-size: 1.1rem;
}
.decorated {
    display: block;
    width: 100%;
    height: 40px;
}
.separator {
    display: block;
    border-bottom: 1px solid #ececec;
}
.img {
    position: relative;
    display: block;
    max-width: 100%;
    overflow: hidden;
}
.img > img {
    max-width: 100%;
    will-change: transform;
    -webkit-transition: -webkit-transform 0.4s ease-in-out;
    transition: -webkit-transform 0.4s ease-in-out;
    -o-transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
    transition:
        transform 0.4s ease-in-out,
        -webkit-transform 0.4s ease-in-out;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.img::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    visibility: hidden;
    background-color: rgba(32, 32, 32, 0.1);
    opacity: 0;
    will-change: opacity;
    -webkit-transition:
        visibility 0.2s ease-in-out,
        opacity 0.2s ease-in-out;
    -o-transition:
        visibility 0.2s ease-in-out,
        opacity 0.2s ease-in-out;
    transition:
        visibility 0.2s ease-in-out,
        opacity 0.2s ease-in-out;
}
.img:hover > img {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}
.img:hover::after {
    visibility: visible;
    opacity: 1;
}
.video {
    position: relative;
    display: block;
    width: 100%;
}
.video::after {
    content: "";
    display: block;
    padding-top: 56.25%;
}
.video > .video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.block-decorated {
    background-color: #fff;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.04);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.04);
    -webkit-transition: -webkit-box-shadow 0.2s ease-in-out;
    transition: -webkit-box-shadow 0.2s ease-in-out;
    -o-transition: box-shadow 0.2s ease-in-out;
    transition: box-shadow 0.2s ease-in-out;
    transition:
        box-shadow 0.2s ease-in-out,
        -webkit-box-shadow 0.2s ease-in-out;
}
.block-decorated:hover,
.block-decorated.hover {
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.08);
}
.icon {
    display: inline-block;
}
.links {
    padding: 18px 0 28px;
    margin: 0 -18px;
}
.links > li {
    display: inline-block;
    padding: 10px 0 0;
    margin: 0 18px 0 18px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1b1b1b;
    list-style: none;
    cursor: pointer;
    -webkit-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
}
.links > li:hover,
.links > li.hover,
.links > li.active {
    color: #2b72e6;
}
.links > li a {
    color: inherit;
    -webkit-transition: color 0s;
    -o-transition: color 0s;
    transition: color 0s;
}
.links > li a:hover,
.links > li a:focus {
    text-decoration: none;
}
.bg-image-parallax,
.bg-image {
    overflow: hidden;
}
.bg-image-parallax img,
.bg-image img {
    width: 100%;
    height: 100%;
    font-family: "object-fit:cover";
    -o-object-fit: cover;
    object-fit: cover;
}
.bg-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: 50% 50%;
    background-size: cover;
    z-index: -1;
}
.bg-image > * {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: 50% 50%;
    background-size: cover;
    z-index: 1;
}
.gap,
.gap-1,
.gap-2,
.gap-3,
.gap-4,
.gap-5,
.gap-6 {
    display: block;
    height: 15px;
}
.gap::after,
.gap::before,
.gap-1::after,
.gap-1::before,
.gap-2::after,
.gap-2::before,
.gap-3::after,
.gap-3::before,
.gap-4::after,
.gap-4::before,
.gap-5::after,
.gap-5::before,
.gap-6::after,
.gap-6::before {
    content: "";
    display: table;
    clear: both;
}
.gap-1 {
    height: 25px;
}
.gap-2 {
    height: 40px;
}
.gap-3 {
    height: 50px;
}
.gap-4 {
    height: 60px;
}
.gap-5 {
    height: 80px;
}
.gap-6 {
    height: 100px;
}
.body-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
}
html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent;
}
body {
    line-height: 1.5;
    color: #525252;
    font-family: "inter";
    letter-spacing: 0.005em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a {
    color: #2b72e6;
    -webkit-transition: color 0.15s;
    -o-transition: color 0.15s;
    transition: color 0.15s;
}
a:hover,
a:focus {
    color: #124599;
    text-decoration: none;
}
p {
    margin-bottom: 1.5rem;
}
p:only-child,
p:last-child {
    margin-bottom: 0 !important;
}
.blog-post-box p:only-child,
.blog-post-box p:last-child {
    margin: 0 !important;
}
b,
strong {
    font-weight: 700;
}
label {
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: #232323;
}
code:not(.gist) {
    display: inline-block;
    padding: 0 8px;
    font-family: "Nunito Sans", sans-serif;
    font-size: 1rem;
    color: #a14a4f;
    background-color: #f7f7f9;
    border-radius: 3px;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-family: "Outfit";
    margin-bottom: 1.4rem;
    font-weight: 600;
    color: #1b1b1b;
    text-transform: none;
    letter-spacing: normal;
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a {
    color: #2b72e6;
    text-decoration: none;
}
h1 a:hover,
h1 a:focus,
h2 a:hover,
h2 a:focus,
h3 a:hover,
h3 a:focus,
h4 a:hover,
h4 a:focus,
h5 a:hover,
h5 a:focus,
h6 a:hover,
h6 a:focus,
.h1 a:hover,
.h1 a:focus,
.h2 a:hover,
.h2 a:focus,
.h3 a:hover,
.h3 a:focus,
.h4 a:hover,
.h4 a:focus,
.h5 a:hover,
.h5 a:focus,
.h6 a:hover,
.h6 a:focus {
    color: #1b1b1b;
    text-decoration: none;
}
h1,
.h1 {
    margin-top: -8px;
    font-size: 2.5rem;
}
h2,
.h2 {
    margin-top: -7px;
    font-size: 2.25rem;
}
h3,
.h3 {
    margin-top: -6px;
    font-size: 1.875rem;
}
h4,
.h4 {
    margin-top: -5px;
    font-size: 1.5rem;
}
h5,
.h5 {
    margin-top: -4px;
    font-size: 1.25rem;
}
h6,
.h6 {
    margin-top: -3px;
    font-size: 1.125rem;
}
.display-1,
.display-2,
.display-3,
.display-4 {
    text-transform: none;
    letter-spacing: normal;
}
.display-1 {
    font-size: 4.2rem;
}
.display-2 {
    font-size: 3.75rem;
}
.display-3 {
    font-size: 3rem;
    line-height: 1.15;
}
.display-4 {
    font-size: 3rem;
}
.lead {
    font-size: 1.125rem;
    font-weight: 400;
}
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
    body:not(.home) .page {
        max-width: 800px;
        margin: 0 auto;
    }
}
.row.vertical-gap > [class*="col"] {
    padding-top: 30px;
}
.row.vertical-gap {
    margin-top: -30px;
}
.row.xs-gap {
    margin-right: -5px;
    margin-left: -5px;
}
.row.xs-gap > [class*="col"] {
    padding-right: 5px;
    padding-left: 5px;
}
.row.xs-gap.vertical-gap > [class*="col"] {
    padding-top: 10px;
}
.row.xs-gap.vertical-gap {
    margin-top: -10px;
}
.row.sm-gap {
    margin-right: -10px;
    margin-left: -10px;
}
.row.sm-gap > [class*="col"] {
    padding-right: 10px;
    padding-left: 10px;
}
.row.sm-gap.vertical-gap > [class*="col"] {
    padding-top: 20px;
}
.row.sm-gap.vertical-gap {
    margin-top: -20px;
}
.row.md-gap {
    margin-right: -20px;
    margin-left: -20px;
}
.row.md-gap > [class*="col"] {
    padding-right: 20px;
    padding-left: 20px;
}
.row.md-gap.vertical-gap > [class*="col"] {
    padding-top: 40px;
}
.row.md-gap.vertical-gap {
    margin-top: -40px;
}
.row.lg-gap {
    margin-right: -30px;
    margin-left: -30px;
}
.row.lg-gap > [class*="col"] {
    padding-right: 30px;
    padding-left: 30px;
}
.row.lg-gap.vertical-gap > [class*="col"] {
    padding-top: 60px;
}
.row.lg-gap.vertical-gap {
    margin-top: -60px;
}
.text-main-1 {
    color: #2b72e6;
}
.text-main-2 {
    color: #f03f3b;
}
.text-main-3 {
    color: #c9a57d;
}
.text-white {
    color: #fff;
}
.text-black {
    color: #000;
}
.text-1 {
    color: #d4d4d4;
}
.text-2 {
    color: #bcbcbc;
}
.text-3 {
    color: #525252;
}
.text-grey-1 {
    color: #7a7a7a;
}
.text-grey-2 {
    color: #3a3a3a;
}
.text-grey-3 {
    color: #bababa;
}
.text-grey-4 {
    color: #d6d6d6;
}
.text-grey-5 {
    color: #ececec;
}
.text-grey-6 {
    color: #f9f9f9;
}
.text-dark-1 {
    color: #1b1b1b;
}
.text-dark-2 {
    color: #121212;
}
.text-dark-3 {
    color: #232323;
}
.bg-main-1 {
    background-color: #2b72e6;
}
.bg-main-2 {
    background-color: #f03f3b;
}
.bg-main-3 {
    background-color: #c9a57d;
}
.bg-white {
    background-color: #fff;
}
.bg-black {
    background-color: #000;
}
.bg-1 {
    background-color: #d4d4d4;
}
.bg-2 {
    background-color: #bcbcbc;
}
.bg-3 {
    background-color: #525252;
}
.bg-grey-1 {
    background-color: #7a7a7a;
}
.bg-grey-2 {
    background-color: #3a3a3a;
}
.bg-grey-3 {
    background-color: #bababa;
}
.bg-grey-4 {
    background-color: #d6d6d6;
}
.bg-grey-5 {
    background-color: #ececec;
}
.bg-grey-6 {
    background-color: #f9f9f9;
}
.bg-dark-1 {
    background-color: #1b1b1b;
}
.bg-dark-2 {
    background-color: #121212;
}
.bg-dark-3 {
    background-color: #232323;
}
.img {
    max-width: 100%;
    height: auto;
}
.img img {
    max-width: 100%;
    height: auto;
}
.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.text-justify {
    text-align: justify;
}
.dib {
    display: inline-block;
}
.db {
    display: block;
    width: 100%;
}
.text-uppercase {
    text-transform: uppercase;
}
.wsw {
    white-space: normal;
}
.wsnw {
    white-space: nowrap;
}
.fw-100 {
    font-weight: 100;
}
.fw-200 {
    font-weight: 200;
}
.fw-300 {
    font-weight: 300;
}
.fw-400 {
    font-weight: 400;
}
.fw-500 {
    font-weight: 500;
}
.fw-600 {
    font-weight: 600;
}
.fw-700 {
    font-weight: 700;
}
.fw-800 {
    font-weight: 800;
}
.fw-900 {
    font-weight: 900;
}
.fs-4 {
    font-size: 4px;
}
.fs-5 {
    font-size: 5px;
}
.fs-6 {
    font-size: 6px;
}
.fs-7 {
    font-size: 7px;
}
.fs-8 {
    font-size: 8px;
}
.fs-9 {
    font-size: 9px;
}
.fs-10 {
    font-size: 10px;
}
.fs-11 {
    font-size: 11px;
}
.fs-12 {
    font-size: 12px;
}
.fs-13 {
    font-size: 13px;
}
.fs-14 {
    font-size: 14px;
}
.fs-15 {
    font-size: 15px;
}
.fs-16 {
    font-size: 16px;
}
.fs-17 {
    font-size: 17px;
}
.fs-18 {
    font-size: 18px;
}
.fs-19 {
    font-size: 19px;
}
.fs-20 {
    font-size: 20px;
}
.fs-22 {
    font-size: 22px;
}
.fs-24 {
    font-size: 24px;
}
.fs-26 {
    font-size: 26px;
}
.fs-28 {
    font-size: 28px;
}
.fs-30 {
    font-size: 30px;
}
.fs-35 {
    font-size: 35px;
}
.fs-40 {
    font-size: 40px;
}
.fs-45 {
    font-size: 45px;
}
.fs-50 {
    font-size: 50px;
}
.lh-0 {
    line-height: 0;
}
.lh-5 {
    line-height: 5px;
}
.lh-10 {
    line-height: 10px;
}
.lh-15 {
    line-height: 15px;
}
.lh-20 {
    line-height: 20px;
}
.lh-25 {
    line-height: 25px;
}
.lh-30 {
    line-height: 30px;
}
.lh-35 {
    line-height: 35px;
}
.lh-40 {
    line-height: 40px;
}
.lh-45 {
    line-height: 45px;
}
.lh-50 {
    line-height: 50px;
}
.br-0 {
    border-radius: 0;
}
.br-1 {
    border-radius: 1px;
}
.br-2 {
    border-radius: 2px;
}
.br-3 {
    border-radius: 3px;
}
.br-4 {
    border-radius: 4px;
}
.br-5 {
    border-radius: 5px;
}
.br-6 {
    border-radius: 6px;
}
.br-7 {
    border-radius: 7px;
}
.br-8 {
    border-radius: 8px;
}
.br-9 {
    border-radius: 9px;
}
.br-10 {
    border-radius: 10px;
}
.br-12 {
    border-radius: 12px;
}
.br-14 {
    border-radius: 14px;
}
.br-16 {
    border-radius: 16px;
}
.br-18 {
    border-radius: 18px;
}
.br-20 {
    border-radius: 20px;
}
.br-25 {
    border-radius: 25px;
}
.br-30 {
    border-radius: 30px;
}
.br-35 {
    border-radius: 35px;
}
.p-0 {
    padding: 0;
}
.p-1 {
    padding: 1px;
}
.p-2 {
    padding: 2px;
}
.p-3 {
    padding: 3px;
}
.p-4 {
    padding: 4px;
}
.p-5 {
    padding: 5px;
}
.p-6 {
    padding: 6px;
}
.p-7 {
    padding: 7px;
}
.p-8 {
    padding: 8px;
}
.p-9 {
    padding: 9px;
}
.p-10 {
    padding: 10px;
}
.p-15 {
    padding: 15px;
}
.p-20 {
    padding: 20px;
}
.p-25 {
    padding: 25px;
}
.p-30 {
    padding: 30px;
}
.p-35 {
    padding: 35px;
}
.p-40 {
    padding: 40px;
}
.p-45 {
    padding: 45px;
}
.p-50 {
    padding: 50px;
}
.p-60 {
    padding: 60px;
}
.p-70 {
    padding: 70px;
}
.p-80 {
    padding: 80px;
}
.p-85 {
    padding: 85px;
}
.p-90 {
    padding: 90px;
}
.p-100 {
    padding: 100px;
}
.pt-0 {
    padding-top: 0;
}
.pt-1 {
    padding-top: 1px;
}
.pt-2 {
    padding-top: 2px;
}
.pt-3 {
    padding-top: 3px;
}
.pt-4 {
    padding-top: 4px;
}
.pt-5 {
    padding-top: 5px;
}
.pt-6 {
    padding-top: 6px;
}
.pt-7 {
    padding-top: 7px;
}
.pt-8 {
    padding-top: 8px;
}
.pt-9 {
    padding-top: 9px;
}
.pt-10 {
    padding-top: 10px;
}
.pt-15 {
    padding-top: 15px;
}
.pt-20 {
    padding-top: 20px;
}
.pt-25 {
    padding-top: 25px;
}
.pt-30 {
    padding-top: 30px;
}
.pt-35 {
    padding-top: 35px;
}
.pt-40 {
    padding-top: 40px;
}
.pt-45 {
    padding-top: 45px;
}
.pt-50 {
    padding-top: 50px;
}
.pt-60 {
    padding-top: 60px;
}
.pt-70 {
    padding-top: 70px;
}
.pt-80 {
    padding-top: 80px;
}
.pt-85 {
    padding-top: 85px;
}
.pt-90 {
    padding-top: 90px;
}
.pt-100 {
    padding-top: 100px;
}
.pl-0 {
    padding-left: 0;
}
.pl-1 {
    padding-left: 1px;
}
.pl-2 {
    padding-left: 2px;
}
.pl-3 {
    padding-left: 3px;
}
.pl-4 {
    padding-left: 4px;
}
.pl-5 {
    padding-left: 5px;
}
.pl-6 {
    padding-left: 6px;
}
.pl-7 {
    padding-left: 7px;
}
.pl-8 {
    padding-left: 8px;
}
.pl-9 {
    padding-left: 9px;
}
.pl-10 {
    padding-left: 10px;
}
.pl-15 {
    padding-left: 15px;
}
.pl-20 {
    padding-left: 20px;
}
.pl-25 {
    padding-left: 25px;
}
.pl-30 {
    padding-left: 30px;
}
.pl-35 {
    padding-left: 35px;
}
.pl-40 {
    padding-left: 40px;
}
.pl-45 {
    padding-left: 45px;
}
.pl-50 {
    padding-left: 50px;
}
.pl-60 {
    padding-left: 60px;
}
.pl-70 {
    padding-left: 70px;
}
.pl-80 {
    padding-left: 80px;
}
.pl-85 {
    padding-left: 85px;
}
.pl-90 {
    padding-left: 90px;
}
.pl-100 {
    padding-left: 100px;
}
.pr-0 {
    padding-right: 0;
}
.pr-1 {
    padding-right: 1px;
}
.pr-2 {
    padding-right: 2px;
}
.pr-3 {
    padding-right: 3px;
}
.pr-4 {
    padding-right: 4px;
}
.pr-5 {
    padding-right: 5px;
}
.pr-6 {
    padding-right: 6px;
}
.pr-7 {
    padding-right: 7px;
}
.pr-8 {
    padding-right: 8px;
}
.pr-9 {
    padding-right: 9px;
}
.pr-10 {
    padding-right: 10px;
}
.pr-15 {
    padding-right: 15px;
}
.pr-20 {
    padding-right: 20px;
}
.pr-25 {
    padding-right: 25px;
}
.pr-30 {
    padding-right: 30px;
}
.pr-35 {
    padding-right: 35px;
}
.pr-40 {
    padding-right: 40px;
}
.pr-45 {
    padding-right: 45px;
}
.pr-50 {
    padding-right: 50px;
}
.pr-60 {
    padding-right: 60px;
}
.pr-70 {
    padding-right: 70px;
}
.pr-80 {
    padding-right: 80px;
}
.pr-85 {
    padding-right: 85px;
}
.pr-90 {
    padding-right: 90px;
}
.pr-100 {
    padding-right: 100px;
}
.pb-0 {
    padding-bottom: 0;
}
.pb-1 {
    padding-bottom: 1px;
}
.pb-2 {
    padding-bottom: 2px;
}
.pb-3 {
    padding-bottom: 3px;
}
.pb-4 {
    padding-bottom: 4px;
}
.pb-5 {
    padding-bottom: 5px;
}
.pb-6 {
    padding-bottom: 6px;
}
.pb-7 {
    padding-bottom: 7px;
}
.pb-8 {
    padding-bottom: 8px;
}
.pb-9 {
    padding-bottom: 9px;
}
.pb-10 {
    padding-bottom: 10px;
}
.pb-15 {
    padding-bottom: 15px;
}
.pb-20 {
    padding-bottom: 20px;
}
.pb-25 {
    padding-bottom: 25px;
}
.pb-30 {
    padding-bottom: 30px;
}
.pb-35 {
    padding-bottom: 35px;
}
.pb-40 {
    padding-bottom: 40px;
}
.pb-45 {
    padding-bottom: 45px;
}
.pb-50 {
    padding-bottom: 50px;
}
.pb-60 {
    padding-bottom: 60px;
}
.pb-70 {
    padding-bottom: 70px;
}
.pb-80 {
    padding-bottom: 80px;
}
.pb-85 {
    padding-bottom: 85px;
}
.pb-90 {
    padding-bottom: 90px;
}
.pb-100 {
    padding-bottom: 100px;
}
.mauto {
    margin-right: auto;
    margin-left: auto;
}
.m-0 {
    margin: 0;
}
.m-1 {
    margin: 1px;
}
.m-2 {
    margin: 2px;
}
.m-3 {
    margin: 3px;
}
.m-4 {
    margin: 4px;
}
.m-5 {
    margin: 5px;
}
.m-6 {
    margin: 6px;
}
.m-7 {
    margin: 7px;
}
.m-8 {
    margin: 8px;
}
.m-9 {
    margin: 9px;
}
.m-10 {
    margin: 10px;
}
.m-13 {
    margin: 13px;
}
.m-15 {
    margin: 15px;
}
.m-18 {
    margin: 18px;
}
.m-20 {
    margin: 20px;
}
.m-25 {
    margin: 25px;
}
.m-30 {
    margin: 30px;
}
.m-35 {
    margin: 35px;
}
.m-40 {
    margin: 40px;
}
.m-45 {
    margin: 45px;
}
.m-50 {
    margin: 50px;
}
.m-55 {
    margin: 55px;
}
.m-60 {
    margin: 60px;
}
.m-70 {
    margin: 70px;
}
.m-80 {
    margin: 80px;
}
.m-90 {
    margin: 90px;
}
.m-100 {
    margin: 100px;
}
.mt-0 {
    margin-top: 0;
}
.mt-1 {
    margin-top: 1px;
}
.mt-2 {
    margin-top: 2px;
}
.mt-3 {
    margin-top: 3px;
}
.mt-4 {
    margin-top: 4px;
}
.mt-5 {
    margin-top: 5px;
}
.mt-6 {
    margin-top: 6px;
}
.mt-7 {
    margin-top: 7px;
}
.mt-8 {
    margin-top: 8px;
}
.mt-9 {
    margin-top: 9px;
}
.mt-10 {
    margin-top: 10px;
}
.mt-13 {
    margin-top: 13px;
}
.mt-15 {
    margin-top: 15px;
}
.mt-18 {
    margin-top: 18px;
}
.mt-20 {
    margin-top: 20px;
}
.mt-25 {
    margin-top: 25px;
}
.mt-30 {
    margin-top: 30px;
}
.mt-35 {
    margin-top: 35px;
}
.mt-40 {
    margin-top: 40px;
}
.mt-45 {
    margin-top: 45px;
}
.mt-50 {
    margin-top: 50px;
}
.mt-55 {
    margin-top: 55px;
}
.mt-60 {
    margin-top: 60px;
}
.mt-70 {
    margin-top: 70px;
}
.mt-80 {
    margin-top: 80px;
}
.mt-90 {
    margin-top: 90px;
}
.mt-100 {
    margin-top: 100px;
}
.ml-0 {
    margin-left: 0;
}
.ml-1 {
    margin-left: 1px;
}
.ml-2 {
    margin-left: 2px;
}
.ml-3 {
    margin-left: 3px;
}
.ml-4 {
    margin-left: 4px;
}
.ml-5 {
    margin-left: 5px;
}
.ml-6 {
    margin-left: 6px;
}
.ml-7 {
    margin-left: 7px;
}
.ml-8 {
    margin-left: 8px;
}
.ml-9 {
    margin-left: 9px;
}
.ml-10 {
    margin-left: 10px;
}
.ml-13 {
    margin-left: 13px;
}
.ml-15 {
    margin-left: 15px;
}
.ml-18 {
    margin-left: 18px;
}
.ml-20 {
    margin-left: 20px;
}
.ml-25 {
    margin-left: 25px;
}
.ml-30 {
    margin-left: 30px;
}
.ml-35 {
    margin-left: 35px;
}
.ml-40 {
    margin-left: 40px;
}
.ml-45 {
    margin-left: 45px;
}
.ml-50 {
    margin-left: 50px;
}
.ml-55 {
    margin-left: 55px;
}
.ml-60 {
    margin-left: 60px;
}
.ml-70 {
    margin-left: 70px;
}
.ml-80 {
    margin-left: 80px;
}
.ml-90 {
    margin-left: 90px;
}
.ml-100 {
    margin-left: 100px;
}
.mr-0 {
    margin-right: 0;
}
.mr-1 {
    margin-right: 1px;
}
.mr-2 {
    margin-right: 2px;
}
.mr-3 {
    margin-right: 3px;
}
.mr-4 {
    margin-right: 4px;
}
.mr-5 {
    margin-right: 5px;
}
.mr-6 {
    margin-right: 6px;
}
.mr-7 {
    margin-right: 7px;
}
.mr-8 {
    margin-right: 8px;
}
.mr-9 {
    margin-right: 9px;
}
.mr-10 {
    margin-right: 10px;
}
.mr-13 {
    margin-right: 13px;
}
.mr-15 {
    margin-right: 15px;
}
.mr-18 {
    margin-right: 18px;
}
.mr-20 {
    margin-right: 20px;
}
.mr-25 {
    margin-right: 25px;
}
.mr-30 {
    margin-right: 30px;
}
.mr-35 {
    margin-right: 35px;
}
.mr-40 {
    margin-right: 40px;
}
.mr-45 {
    margin-right: 45px;
}
.mr-50 {
    margin-right: 50px;
}
.mr-55 {
    margin-right: 55px;
}
.mr-60 {
    margin-right: 60px;
}
.mr-70 {
    margin-right: 70px;
}
.mr-80 {
    margin-right: 80px;
}
.mr-90 {
    margin-right: 90px;
}
.mr-100 {
    margin-right: 100px;
}
.mb-0 {
    margin-bottom: 0;
}
.mb-1 {
    margin-bottom: 1px;
}
.mb-2 {
    margin-bottom: 2px;
}
.mb-3 {
    margin-bottom: 3px;
}
.mb-4 {
    margin-bottom: 4px;
}
.mb-5 {
    margin-bottom: 5px;
}
.mb-6 {
    margin-bottom: 6px;
}
.mb-7 {
    margin-bottom: 7px;
}
.mb-8 {
    margin-bottom: 8px;
}
.mb-9 {
    margin-bottom: 9px;
}
.mb-10 {
    margin-bottom: 10px;
}
.mb-13 {
    margin-bottom: 13px;
}
.mb-15 {
    margin-bottom: 15px;
}
.mb-18 {
    margin-bottom: 18px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-25 {
    margin-bottom: 25px;
}
.mb-30 {
    margin-bottom: 30px;
}
.mb-35 {
    margin-bottom: 35px;
}
.mb-40 {
    margin-bottom: 40px;
}
.mb-45 {
    margin-bottom: 45px;
}
.mb-50 {
    margin-bottom: 50px;
}
.mb-55 {
    margin-bottom: 55px;
}
.mb-60 {
    margin-bottom: 60px;
}
.mb-70 {
    margin-bottom: 70px;
}
.mb-80 {
    margin-bottom: 80px;
}
.mb-90 {
    margin-bottom: 90px;
}
.mb-100 {
    margin-bottom: 100px;
}
.mn-0 {
    margin: 0;
}
.mn-1 {
    margin: -1px;
}
.mn-2 {
    margin: -2px;
}
.mn-3 {
    margin: -3px;
}
.mn-4 {
    margin: -4px;
}
.mn-5 {
    margin: -5px;
}
.mn-6 {
    margin: -6px;
}
.mn-7 {
    margin: -7px;
}
.mn-8 {
    margin: -8px;
}
.mn-9 {
    margin: -9px;
}
.mn-10 {
    margin: -10px;
}
.mn-13 {
    margin: -13px;
}
.mn-15 {
    margin: -15px;
}
.mn-18 {
    margin: -18px;
}
.mn-20 {
    margin: -20px;
}
.mn-25 {
    margin: -25px;
}
.mn-30 {
    margin: -30px;
}
.mn-35 {
    margin: -35px;
}
.mn-40 {
    margin: -40px;
}
.mn-45 {
    margin: -45px;
}
.mn-50 {
    margin: -50px;
}
.mn-55 {
    margin: -55px;
}
.mn-60 {
    margin: -60px;
}
.mn-70 {
    margin: -70px;
}
.mn-80 {
    margin: -80px;
}
.mn-90 {
    margin: -90px;
}
.mn-100 {
    margin: -100px;
}
.mnt-0 {
    margin-top: 0;
}
.mnt-1 {
    margin-top: -1px;
}
.mnt-2 {
    margin-top: -2px;
}
.mnt-3 {
    margin-top: -3px;
}
.mnt-4 {
    margin-top: -4px;
}
.mnt-5 {
    margin-top: -5px;
}
.mnt-6 {
    margin-top: -6px;
}
.mnt-7 {
    margin-top: -7px;
}
.mnt-8 {
    margin-top: -8px;
}
.mnt-9 {
    margin-top: -9px;
}
.mnt-10 {
    margin-top: -10px;
}
.mnt-13 {
    margin-top: -13px;
}
.mnt-15 {
    margin-top: -15px;
}
.mnt-18 {
    margin-top: -18px;
}
.mnt-20 {
    margin-top: -20px;
}
.mnt-25 {
    margin-top: -25px;
}
.mnt-30 {
    margin-top: -30px;
}
.mnt-35 {
    margin-top: -35px;
}
.mnt-40 {
    margin-top: -40px;
}
.mnt-45 {
    margin-top: -45px;
}
.mnt-50 {
    margin-top: -50px;
}
.mnt-55 {
    margin-top: -55px;
}
.mnt-60 {
    margin-top: -60px;
}
.mnt-70 {
    margin-top: -70px;
}
.mnt-80 {
    margin-top: -80px;
}
.mnt-90 {
    margin-top: -90px;
}
.mnt-100 {
    margin-top: -100px;
}
.mnl-0 {
    margin-left: 0;
}
.mnl-1 {
    margin-left: -1px;
}
.mnl-2 {
    margin-left: -2px;
}
.mnl-3 {
    margin-left: -3px;
}
.mnl-4 {
    margin-left: -4px;
}
.mnl-5 {
    margin-left: -5px;
}
.mnl-6 {
    margin-left: -6px;
}
.mnl-7 {
    margin-left: -7px;
}
.mnl-8 {
    margin-left: -8px;
}
.mnl-9 {
    margin-left: -9px;
}
.mnl-10 {
    margin-left: -10px;
}
.mnl-13 {
    margin-left: -13px;
}
.mnl-15 {
    margin-left: -15px;
}
.mnl-18 {
    margin-left: -18px;
}
.mnl-20 {
    margin-left: -20px;
}
.mnl-25 {
    margin-left: -25px;
}
.mnl-30 {
    margin-left: -30px;
}
.mnl-35 {
    margin-left: -35px;
}
.mnl-40 {
    margin-left: -40px;
}
.mnl-45 {
    margin-left: -45px;
}
.mnl-50 {
    margin-left: -50px;
}
.mnl-55 {
    margin-left: -55px;
}
.mnl-60 {
    margin-left: -60px;
}
.mnl-70 {
    margin-left: -70px;
}
.mnl-80 {
    margin-left: -80px;
}
.mnl-90 {
    margin-left: -90px;
}
.mnl-100 {
    margin-left: -100px;
}
.mnr-0 {
    margin-right: 0;
}
.mnr-1 {
    margin-right: -1px;
}
.mnr-2 {
    margin-right: -2px;
}
.mnr-3 {
    margin-right: -3px;
}
.mnr-4 {
    margin-right: -4px;
}
.mnr-5 {
    margin-right: -5px;
}
.mnr-6 {
    margin-right: -6px;
}
.mnr-7 {
    margin-right: -7px;
}
.mnr-8 {
    margin-right: -8px;
}
.mnr-9 {
    margin-right: -9px;
}
.mnr-10 {
    margin-right: -10px;
}
.mnr-13 {
    margin-right: -13px;
}
.mnr-15 {
    margin-right: -15px;
}
.mnr-18 {
    margin-right: -18px;
}
.mnr-20 {
    margin-right: -20px;
}
.mnr-25 {
    margin-right: -25px;
}
.mnr-30 {
    margin-right: -30px;
}
.mnr-35 {
    margin-right: -35px;
}
.mnr-40 {
    margin-right: -40px;
}
.mnr-45 {
    margin-right: -45px;
}
.mnr-50 {
    margin-right: -50px;
}
.mnr-55 {
    margin-right: -55px;
}
.mnr-60 {
    margin-right: -60px;
}
.mnr-70 {
    margin-right: -70px;
}
.mnr-80 {
    margin-right: -80px;
}
.mnr-90 {
    margin-right: -90px;
}
.mnr-100 {
    margin-right: -100px;
}
.mnb-0 {
    margin-bottom: 0;
}
.mnb-1 {
    margin-bottom: -1px;
}
.mnb-2 {
    margin-bottom: -2px;
}
.mnb-3 {
    margin-bottom: -3px;
}
.mnb-4 {
    margin-bottom: -4px;
}
.mnb-5 {
    margin-bottom: -5px;
}
.mnb-6 {
    margin-bottom: -6px;
}
.mnb-7 {
    margin-bottom: -7px;
}
.mnb-8 {
    margin-bottom: -8px;
}
.mnb-9 {
    margin-bottom: -9px;
}
.mnb-10 {
    margin-bottom: -10px;
}
.mnb-13 {
    margin-bottom: -13px;
}
.mnb-15 {
    margin-bottom: -15px;
}
.mnb-18 {
    margin-bottom: -18px;
}
.mnb-20 {
    margin-bottom: -20px;
}
.mnb-25 {
    margin-bottom: -25px;
}
.mnb-30 {
    margin-bottom: -30px;
}
.mnb-35 {
    margin-bottom: -35px;
}
.mnb-40 {
    margin-bottom: -40px;
}
.mnb-45 {
    margin-bottom: -45px;
}
.mnb-50 {
    margin-bottom: -50px;
}
.mnb-55 {
    margin-bottom: -55px;
}
.mnb-60 {
    margin-bottom: -60px;
}
.mnb-70 {
    margin-bottom: -70px;
}
.mnb-80 {
    margin-bottom: -80px;
}
.mnb-90 {
    margin-bottom: -90px;
}
.mnb-100 {
    margin-bottom: -100px;
}
.op-0 {
    opacity: 0;
}
.op-1 {
    opacity: 0.1;
}
.op-2 {
    opacity: 0.2;
}
.op-3 {
    opacity: 0.3;
}
.op-4 {
    opacity: 0.4;
}
.op-5 {
    opacity: 0.5;
}
.op-6 {
    opacity: 0.6;
}
.op-7 {
    opacity: 0.7;
}
.op-8 {
    opacity: 0.8;
}
.op-9 {
    opacity: 0.9;
}
.op-10 {
    opacity: 1;
}
.navbar {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    max-width: 100vw;
    background-color: #111;
    -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0);
    -webkit-transition: background-color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
    z-index: 1000;
}
.navbar h1.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    margin-right: 25px;
    padding: 15px 0;
}
.navbar h1.nav-logo a {
    display: block;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
    white-space: nowrap;
}
.navbar .nav-logo:hover,
.navbar .nav-logo:focus,
.navbar .nav-logo:active {
    color: #fff;
    opacity: 0.5;
    text-decoration: none;
}
.navbar .nav-icon:not(.btn) {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0;
}
.navbar .nav-icon:not(.btn) > .icon {
    position: relative;
    opacity: 0.7;
    will-change: opacity;
    -webkit-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}
.navbar .nav-icon:not(.btn):hover > .icon,
.navbar .nav-icon:not(.btn):focus > .icon,
.navbar .nav-icon:not(.btn).active > .icon {
    opacity: 1;
}
.navbar .nav-icon:not(.btn):hover ~ .navbar-dropdown,
.navbar .nav-icon:not(.btn):focus ~ .navbar-dropdown,
.navbar .nav-icon:not(.btn).active ~ .navbar-dropdown {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.navbar .nav-item-drop .nav-icon:not(.btn) .nav-badge {
    top: 50%;
    margin-top: -20px;
}
.navbar .nav-badge {
    position: absolute;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: -4px;
    right: 0;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    font-size: 10px;
    line-height: 0;
    color: #fff;
    background-color: #2b72e6;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 0 2px #1b1b1b;
    box-shadow: 0 0 0 2px #1b1b1b;
    z-index: 1;
}
.navbar .nav-signin {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    margin: -3px 0;
    font-weight: 400;
    line-height: 1;
    color: #bcbcbc;
}
.navbar .nav-signin ~ .navbar-dropdown .navbar-dropdown-triangle {
    margin-left: 35px;
}
.navbar .nav-signin:hover,
.navbar .nav-signin:focus,
.navbar .nav-signin.active {
    color: #fff;
    text-decoration: none;
}
.navbar .nav-signin:hover ~ .navbar-dropdown,
.navbar .nav-signin:focus ~ .navbar-dropdown,
.navbar .nav-signin.active ~ .navbar-dropdown {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.navbar .nav-signin .nav-signin-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 100%;
}
.navbar .nav-signin .nav-signin-img + .nav-signin-name {
    margin-left: 12px;
}
.navbar .nav-signin .nav-signin-img img {
    width: 100%;
    height: 100%;
    font-family: "object-fit:cover";
    -o-object-fit: cover;
    object-fit: cover;
}
.navbar .navbar-burger {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    right: 20px;
    width: 34px;
    height: 20px;
    padding: 0;
    cursor: pointer;
    visibility: hidden;
    background: none;
    border: 0;
}
.navbar .navbar-burger > span {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 24px;
    height: 2px;
    background-color: #fff;
    will-change: transform, opacity;
    -webkit-transition:
        background-color 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        opacity 0.2s ease-in-out,
        -webkit-transform 0.2s ease-in-out;
    transition:
        background-color 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        opacity 0.2s ease-in-out,
        -webkit-transform 0.2s ease-in-out;
    -o-transition:
        background-color 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        transform 0.2s ease-in-out,
        opacity 0.2s ease-in-out;
    transition:
        background-color 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        transform 0.2s ease-in-out,
        opacity 0.2s ease-in-out;
    transition:
        background-color 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        transform 0.2s ease-in-out,
        opacity 0.2s ease-in-out,
        -webkit-transform 0.2s ease-in-out;
}
.navbar .navbar-burger > span + span {
    margin-top: 5px;
}
.navbar .navbar-burger > span:nth-child(2) {
    width: 16px;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}
.navbar .navbar-burger.active > span:nth-child(1) {
    -webkit-transform: rotate(45deg) translate(5px, 5px);
    -ms-transform: rotate(45deg) translate(5px, 5px);
    transform: rotate(45deg) translate(5px, 5px);
}
.navbar .navbar-burger.active > span:nth-child(2) {
    visibility: hidden;
    opacity: 0;
}
.navbar .navbar-burger.active > span:nth-child(3) {
    -webkit-transform: rotate(-45deg) translate(5px, -5px);
    -ms-transform: rotate(-45deg) translate(5px, -5px);
    transform: rotate(-45deg) translate(5px, -5px);
}
.navbar .navbar-burger:hover > span,
.navbar .navbar-burger:focus > span {
    background-color: #2b72e6;
}
.navbar .navbar-burger:hover > span:nth-child(2),
.navbar .navbar-burger:focus > span:nth-child(2) {
    -webkit-transform: translateX(-7px);
    -ms-transform: translateX(-7px);
    transform: translateX(-7px);
}
.navbar > .container,
.navbar > .container-fluid {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.navbar .navbar-content {
    display: flex;
    align-items: center;
    position: relative;
    right: 0;
}
.navbar .nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    margin: 0;
}
.navbar .nav > li {
    display: inline-block;
    padding: 0;
    margin: 0 19px 0 0;
    list-style: none;
}
.navbar .nav > li:last-child {
    margin-right: 0;
}
.navbar .nav-link {
    padding: 0;
    line-height: 1;
    color: #cecece;
    font-size: 15px;
    font-weight: 400 !important;
}
.navbar .nav-link > .icon {
    margin-right: 12px;
    font-size: 1.45rem;
}
.nav-search {
    margin-right: 15px;
}
.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
    color: #fff;
    text-decoration: none;
}
.navbar .nav-link:hover ~ .navbar-dropdown,
.navbar .nav-link:focus ~ .navbar-dropdown,
.navbar .nav-link.active ~ .navbar-dropdown {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.navbar .nav-item.active > .nav-link {
    color: #fff;
}
.navbar .nav-item.active > .nav-link::before {
    content: "";
    position: absolute;
    right: -15px;
    bottom: 0;
    left: -15px;
    height: 2px;
    background-color: #2b72e6;
}
.navbar .nav-item-drop {
    position: relative;
}
.navbar .nav-item-drop:hover > .navbar-dropdown {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.navbar .navbar-dropdown {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    top: 100%;
    right: auto;
    bottom: auto;
    left: -20px;
    width: auto;
    padding: 15px 0;
    margin-top: 12px;
    text-transform: none;
    visibility: hidden;
    background-color: #fff;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.05);
    opacity: 0;
    will-change: transform, opacity;
    -webkit-transition:
        visibility 0.15s ease-in-out,
        opacity 0.15s ease-in-out,
        -webkit-transform 0.15s ease-in-out;
    transition:
        visibility 0.15s ease-in-out,
        opacity 0.15s ease-in-out,
        -webkit-transform 0.15s ease-in-out;
    -o-transition:
        visibility 0.15s ease-in-out,
        opacity 0.15s ease-in-out,
        transform 0.15s ease-in-out;
    transition:
        visibility 0.15s ease-in-out,
        opacity 0.15s ease-in-out,
        transform 0.15s ease-in-out;
    transition:
        visibility 0.15s ease-in-out,
        opacity 0.15s ease-in-out,
        transform 0.15s ease-in-out,
        -webkit-transform 0.15s ease-in-out;
    -webkit-transform: translateY(3px);
    -ms-transform: translateY(3px);
    transform: translateY(3px);
}
.navbar .navbar-dropdown::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 12px;
    margin-top: -12px;
}
.navbar .navbar-dropdown.navbar-dropdown-dark > .nav-item-drop:hover > a::after,
.navbar .navbar-dropdown.navbar-dropdown-dark > .nav-item-drop.hover > a::after,
.navbar .navbar-dropdown.navbar-dropdown-dark > .nav-item-drop.active > a::after {
    background-color: #bababa;
}
.navbar .navbar-dropdown > .nav-item-drop > a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    left: auto;
    width: 2px;
    height: 2px;
    margin-top: -1px;
    background-color: rgba(186, 186, 186, 0.5);
    -webkit-transition: background-color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
}
.navbar .navbar-dropdown > .nav-item-drop:hover > a::after,
.navbar .navbar-dropdown > .nav-item-drop.hover > a::after,
.navbar .navbar-dropdown > .nav-item-drop.active > a::after {
    background-color: #7a7a7a;
}
.navbar .navbar-dropdown .navbar-dropdown-triangle {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-bottom: -1px;
    margin-left: 20px;
    border: 10px solid transparent;
    border-bottom: 8px solid #fff;
}
.navbar .navbar-dropdown.navbar-dropdown-left {
    right: -20px;
    left: auto;
}
.navbar .navbar-dropdown.navbar-dropdown-left .navbar-dropdown-triangle {
    right: 0;
    left: auto;
    margin-right: 20px;
    margin-left: 0;
}
.navbar .navbar-dropdown.navbar-dropdown-right {
    right: auto;
    left: -20px;
}
.navbar .navbar-dropdown.navbar-dropdown-right .navbar-dropdown-triangle {
    right: auto;
    left: 0;
    margin-right: auto;
    margin-left: 20px;
}
.navbar .navbar-dropdown .navbar-dropdown {
    top: 0;
    left: 100%;
    margin-top: -15px;
    margin-left: 12px;
}
.navbar .navbar-dropdown .navbar-dropdown::after {
    right: auto;
    bottom: 0;
    width: 12px;
    height: auto;
    margin-top: 0;
    margin-left: -12px;
}
.navbar .navbar-dropdown .navbar-dropdown .navbar-dropdown-triangle {
    right: 100%;
    bottom: auto;
    left: auto;
    margin-top: 8px;
    margin-right: -1px;
    margin-bottom: 0;
    margin-left: 0;
    border: 10px solid transparent;
    border-right: 8px solid #fff;
}
.navbar .navbar-dropdown .navbar-dropdown-left {
    right: 100%;
    left: auto;
    margin-right: 12px;
    margin-left: 0;
}
.navbar .navbar-dropdown .navbar-dropdown-left::after {
    bottom: 0;
    left: auto;
    width: 12px;
    height: auto;
    margin-top: 0;
    margin-right: -12px;
}
.navbar .navbar-dropdown .navbar-dropdown-left .navbar-dropdown-triangle {
    right: auto;
    bottom: auto;
    left: 100%;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: -1px;
    border: 10px solid transparent;
    border-left: 8px solid #fff;
}
.navbar .navbar-dropdown .navbar-dropdown-right {
    right: auto;
    left: 100%;
    margin-right: 0;
    margin-left: 12px;
}
.navbar .navbar-dropdown .navbar-dropdown-right::after {
    right: auto;
    bottom: 0;
    width: 12px;
    height: auto;
    margin-top: 0;
    margin-left: -12px;
}
.navbar .navbar-dropdown .navbar-dropdown-right .navbar-dropdown-triangle {
    right: 100%;
    bottom: auto;
    left: auto;
    margin-right: -1px;
    margin-bottom: 0;
    margin-left: 0;
    border: 10px solid transparent;
    border-right: 8px solid #fff;
}
.navbar .navbar-dropdown.navbar-dropdown-dark {
    background-color: #1b1b1b;
}
.navbar .navbar-dropdown.navbar-dropdown-dark .navbar-dropdown-triangle {
    border: 10px solid transparent;
    border-bottom: 8px solid #1b1b1b;
}
.navbar .navbar-dropdown.navbar-dropdown-dark.navbar-dropdown-left .navbar-dropdown-triangle {
    border: 10px solid transparent;
    border-left: 8px solid #1b1b1b;
}
.navbar .navbar-dropdown.navbar-dropdown-dark.navbar-dropdown-bot .navbar-dropdown-triangle {
    border: 10px solid transparent;
    border-bottom: 8px solid #1b1b1b;
}
.navbar .navbar-dropdown.navbar-dropdown-dark .navbar-dropdown .navbar-dropdown-triangle {
    border: 10px solid transparent;
    border-right: 8px solid #1b1b1b;
}
.navbar .navbar-dropdown.navbar-dropdown-dark > li.active > a {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.04);
}
.navbar .navbar-dropdown.navbar-dropdown-dark > li > a {
    color: #bababa;
}
.navbar .navbar-dropdown.navbar-dropdown-dark > li > a:hover,
.navbar .navbar-dropdown.navbar-dropdown-dark > li > a.hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.04);
}
.navbar .navbar-dropdown > li {
    display: block;
    width: 100%;
    padding: 0;
}
.navbar .navbar-dropdown > li.nav-item-drop > a {
    padding-right: 40px;
}
.navbar .navbar-dropdown > li + li {
    margin-top: 0;
}
.navbar .navbar-dropdown > li.active > a {
    color: #1b1b1b;
    background-color: rgba(0, 0, 0, 0.025);
}
.navbar .navbar-dropdown > li > a {
    padding: 10px 50px 10px 20px;
    font-weight: 400;
    color: #7a7a7a;
    text-transform: none;
    white-space: nowrap;
    -webkit-transition:
        color 0.2s ease-in-out,
        background-color 0.2s ease-in-out;
    -o-transition:
        color 0.2s ease-in-out,
        background-color 0.2s ease-in-out;
    transition:
        color 0.2s ease-in-out,
        background-color 0.2s ease-in-out;
}
.navbar .navbar-dropdown > li > a:hover,
.navbar .navbar-dropdown > li > a.hover {
    color: #1b1b1b;
    background-color: rgba(0, 0, 0, 0.025);
}
.navbar .navbar-dropdown > li > a:focus,
.navbar .navbar-dropdown > li > a.focus,
.navbar .navbar-dropdown > li > a.active {
    color: #1b1b1b;
}
.navbar.navbar-expand .navbar-content {
    display: none;
}
.navbar.navbar-expand .navbar-burger {
    visibility: visible;
}
@media screen and (max-width: 992px) {
    .navbar.navbar-expand-lg .navbar-content {
        display: none;
    }
    .navbar.navbar-expand-lg .navbar-burger {
        visibility: visible;
    }
}
@media screen and (max-width: 1200px) {
    .navbar.navbar-expand-xl .navbar-content {
        display: none;
    }
    .navbar.navbar-expand-xl .navbar-burger {
        visibility: visible;
    }
}
.navbar.navbar-scroll {
    -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}
.navbar.navbar-autohide {
    will-change: transform;
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    -o-transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition:
        transform 0.2s ease-in-out,
        -webkit-transform 0.2s ease-in-out;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.navbar.navbar-autohide.onscroll-hide {
    -webkit-transform: translateY(-100px);
    -ms-transform: translateY(-100px);
    transform: translateY(-100px);
}
.navbar.navbar-autohide.onscroll-show {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.navbar-top .nav:not(:last-child) {
    margin-right: auto;
}
.navbar-top .nav.nav-align-right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin-left: 30px;
}
.navbar-top .nav > li > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.navbar.navbar-fullscreen {
    position: fixed;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100vw;
    padding: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    visibility: hidden;
    opacity: 0;
    will-change: opacity;
    -webkit-transition:
        visibility 0.3s ease-in-out,
        opacity 0.3s ease-in-out;
    -o-transition:
        visibility 0.3s ease-in-out,
        opacity 0.3s ease-in-out;
    transition:
        visibility 0.3s ease-in-out,
        opacity 0.3s ease-in-out;
    z-index: -1000;
}
@media screen and (min-width: 991px) {
    .navbar.navbar-fullscreen::-webkit-scrollbar-track {
        background-color: #1b1b1b;
    }
    .navbar.navbar-fullscreen::-webkit-scrollbar {
        width: 8px;
        background-color: #1b1b1b;
    }
    .navbar.navbar-fullscreen::-webkit-scrollbar-thumb {
        background-color: #fff;
        border-radius: 4px;
    }
}
.navbar.navbar-fullscreen.navbar-fullscreen-open {
    visibility: visible;
    opacity: 1;
}
.navbar.navbar-fullscreen.navbar-fullscreen-open .navbar-burger {
    visibility: visible;
}
.navbar.navbar-fullscreen .container,
.navbar.navbar-fullscreen .container-fluid,
.navbar.navbar-fullscreen > div {
    position: static;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: auto;
    max-height: 100%;
}
.navbar.navbar-fullscreen .navbar-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: auto;
    padding: 90px 20px;
    overflow: hidden;
}
.navbar.navbar-fullscreen .navbar-content .nav:first-child {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.navbar.navbar-fullscreen .navbar-content .nav:first-child > li {
    margin: 0;
}
.navbar.navbar-fullscreen .navbar-content .nav:first-child a {
    position: relative;
    font-size: 0.875rem;
}
.navbar.navbar-fullscreen .navbar-content .nav:last-child {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.navbar.navbar-fullscreen .navbar-content .nav {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: auto;
    min-width: 240px;
}
.navbar.navbar-fullscreen .navbar-content .nav + .nav {
    margin-top: 49px;
}
.navbar.navbar-fullscreen .navbar-content > ul > li {
    display: block;
}
.navbar.navbar-fullscreen .navbar-content > ul > li.active a::before {
    display: none;
}
.navbar.navbar-fullscreen .navbar-content > ul > li.drop-item > a {
    padding-right: 20px;
}
.navbar.navbar-fullscreen .navbar-content > ul > li.drop-item > a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    left: auto;
    width: 2px;
    height: 2px;
    margin-top: -1px;
    background-color: rgba(186, 186, 186, 0.5);
    -webkit-transition: background-color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
}
.navbar.navbar-fullscreen .navbar-content > ul > li.drop-item:hover > a::after,
.navbar.navbar-fullscreen .navbar-content > ul > li.drop-item.hover > a::after,
.navbar.navbar-fullscreen .navbar-content > ul > li.drop-item.active > a::after {
    background-color: #bababa;
}
.navbar.navbar-fullscreen .navbar-content > ul > li.drop-item:hover::after,
.navbar.navbar-fullscreen .navbar-content > ul > li.drop-item:hover::before {
    display: none;
}
.navbar.navbar-fullscreen .navbar-dropdown {
    position: static;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 0 0 0 10px;
    margin: 0 -20px 0 0;
    overflow: hidden;
    visibility: visible;
    background: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.navbar.navbar-fullscreen .navbar-dropdown.collapse:not(.show) {
    display: none;
}
.navbar.navbar-fullscreen .navbar-dropdown.collapsing {
    height: 0;
    -webkit-transition: height 0.3s ease;
    -o-transition: height 0.3s ease;
    transition: height 0.3s ease;
}
.navbar.navbar-fullscreen .navbar-dropdown::before {
    display: none;
}
.navbar.navbar-fullscreen .navbar-dropdown .navbar-dropdown {
    padding: 0 0 0 10px;
    margin: 0 -20px 0 0;
}
.navbar.navbar-fullscreen .navbar-dropdown .navbar-dropdown > li.drop-item a:not(.btn) {
    padding: 13px 0 20px;
}
.navbar.navbar-fullscreen .navbar-dropdown .navbar-dropdown > li a:not(.btn) {
    padding: 13px 0;
}
.navbar.navbar-fullscreen .navbar-dropdown > li {
    max-width: 100%;
    margin: 0;
}
.navbar.navbar-fullscreen .navbar-dropdown > li:first-child {
    padding-top: 10px;
}
.navbar.navbar-fullscreen .navbar-dropdown > li:last-child {
    padding-bottom: 10px;
}
.navbar.navbar-fullscreen .navbar-dropdown > li.active > a {
    color: #fff;
    background: none;
}
.navbar.navbar-fullscreen .navbar-dropdown > li a {
    padding: 10px 0;
    font-weight: 500;
    color: #bcbcbc;
    text-transform: uppercase;
}
.navbar.navbar-fullscreen .navbar-dropdown > li a:hover,
.navbar.navbar-fullscreen .navbar-dropdown > li a:focus,
.navbar.navbar-fullscreen .navbar-dropdown > li a.active {
    color: #fff;
    background: none;
}
.header {
    position: relative;
    display: block;
    z-index: 1;
}
.signin {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 340px;
    max-width: 100%;
    padding: 60px 20px;
}
.signin a:not(.btn) {
    color: #bababa;
    -webkit-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
}
.signin a:not(.btn):hover,
.signin a:not(.btn):focus {
    color: #fff;
    text-decoration: none;
}
.signin .signin-or {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 0;
    font-size: 0.75rem;
    font-weight: 500;
    color: #bababa;
}
.signin .signin-or::before,
.signin .signin-or::after {
    content: "";
    display: block;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    height: 1px;
    background-color: #282828;
}
.signin .signin-or::before {
    margin-right: 25px;
}
.signin .signin-or::after {
    margin-left: 25px;
}
.portfolio-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    background-color: #fff;
    border-radius: 3px;
}
.portfolio-item:hover .portfolio-item-overlay {
    visibility: visible;
    opacity: 1;
}
.portfolio-item:hover .portfolio-item-image img {
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}
.portfolio-item .portfolio-item-overlay {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    will-change: opacity;
    -webkit-transition:
        visibility 0.2s ease-in-out,
        opacity 0.2s ease-in-out;
    -o-transition:
        visibility 0.2s ease-in-out,
        opacity 0.2s ease-in-out;
    transition:
        visibility 0.2s ease-in-out,
        opacity 0.2s ease-in-out;
    z-index: 1;
}
.portfolio-item .portfolio-item-image {
    position: relative;
    overflow: hidden;
}
.portfolio-item .portfolio-item-image::after {
    content: "";
    display: block;
    padding-top: calc(60% - 2px);
}
.portfolio-item .portfolio-item-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-family: "object-fit:cover";
    -o-object-fit: cover;
    object-fit: cover;
    will-change: transform;
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    -o-transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition:
        transform 0.2s ease-in-out,
        -webkit-transform 0.2s ease-in-out;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    z-index: 0;
}
.portfolio-item .portfolio-item-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 30px;
}
.portfolio-item .portfolio-item-title {
    width: 100%;
    font-weight: 600;
    font-size: 18px;
    color: #232323;
    -webkit-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
}
.portfolio-item a:hover {
    color: #2b72e6;
}
.portfolio-item .portfolio-item-price {
    font-size: 16px;
    font-weight: 300;
    color: #232323;
}
.portfolio-item-style-2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 15px;
}
.widget-information-title {
    margin: 20px 0 5px !important;
    padding: 0 !important;
}
.portfolio-item-style-2:hover,
.portfolio-item-style-2:focus {
    text-decoration: none;
}
.portfolio-item-style-2:hover .portfolio-item-title,
.portfolio-item-style-2:focus .portfolio-item-title {
    color: #2b72e6;
}
.portfolio-item-style-2 .portfolio-item-img {
    width: 80px;
    min-width: 80px;
    height: 70px;
    overflow: hidden;
    border-radius: 3px;
}
.portfolio-item-style-2 .portfolio-item-img + .portfolio-item-title {
    margin-left: 25px;
}
.portfolio-item-style-2 .portfolio-item-img img {
    max-width: 100%;
}
.portfolio-item-style-2 .portfolio-item-title {
    min-height: auto;
    padding: 0;
}
.review {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: 100%;
    padding: 50px;
    overflow: hidden;
}
@media screen and (max-width: 575px) {
    .review {
        padding: 30px;
    }
}
.review .review-title {
    margin-bottom: 5px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #121212;
    text-transform: uppercase;
    letter-spacing: normal;
}
.review .review-subtitle {
    color: #bababa;
}
.review .review-text {
    margin-top: 17px;
}
@media screen and (max-width: 575px) {
    .review .review-text {
        font-size: 1rem;
    }
}
.review .review-rating {
    margin-top: 20px;
    color: #2b72e6;
}
.article .article-list > li a {
    color: #2b72e6;
}
.article .article-list > li a:hover,
.article .article-list > li a:focus {
    color: #1550b0;
    text-decoration: none;
}
.article .article-btn {
    margin-top: 23px;
    margin-left: 25px;
}
.article .article-link {
    margin-top: 17px;
}
.article-block + .article-block {
    margin-top: 42px;
}
.article-block .article-title {
    margin-top: -3px;
    margin-bottom: 14px;
}
.footer {
    position: relative;
    background-color: #1b1b1b;
    border-top: 1px solid #2e2e2eff;
    z-index: 1;
}
.widget,
.widget-footer {
    padding: 30px;
}
@media screen and (max-width: 992px) {
    .widget,
    .widget-footer {
        padding: 30px 50px;
    }
}
@media screen and (max-width: 767px) {
    .widget,
    .widget-footer {
        padding: 30px;
    }
}
.widget ~ .widget,
.widget-footer ~ .widget {
    margin-top: 40px;
}
@media screen and (max-width: 575px) {
    .widget ~ .widget,
    .widget-footer ~ .widget {
        margin-top: 20px;
    }
}
.widget a,
.widget-footer a {
    color: #3a3a3a;
    text-decoration: none;
    letter-spacing: normal;
}
.widget a:hover,
.widget a.hover,
.widget a:focus,
.widget a.focus,
.widget-footer a:hover,
.widget-footer a.hover,
.widget-footer a:focus,
.widget-footer a.focus {
    color: #2b72e6;
    text-decoration: none;
}
.widget ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.widget .widget-title,
.widget-footer .widget-title {
    padding: 0 30px 20px;
    margin: -6px -30px 28px;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1b1b1b;
    border-bottom: 1px solid #ececec;
}
@media screen and (max-width: 992px) {
    .widget .widget-title,
    .widget-footer .widget-title {
        padding: 0 50px 20px;
        margin: -6px -50px 28px;
    }
}
@media screen and (max-width: 767px) {
    .widget .widget-title,
    .widget-footer .widget-title {
        padding: 0 30px 20px;
        margin: -6px -30px 28px;
    }
}
.widget .widget-title > *,
.widget-footer .widget-title > * {
    margin-bottom: 0;
}
.widget .widget-logo,
.widget-footer .widget-logo {
    position: relative;
    display: block;
    top: -1px;
    min-width: auto;
    font-size: 1.375rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 5px;
    color: #fff;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0.01em;
    -webkit-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
}
.widget .widget-logo:hover,
.widget .widget-logo:focus,
.widget .widget-logo:active,
.widget-footer .widget-logo:hover,
.widget-footer .widget-logo:focus,
.widget-footer .widget-logo:active {
    color: #fff;
    text-decoration: none;
}
.widget .widget-text + .widget-text,
.widget-footer .widget-text + .widget-text {
    margin-top: 20px;
}
.widget .widget-information,
.widget-footer .widget-information {
    font-size: 0.9375rem;
    letter-spacing: normal;
}
.widget .widget-information + .widget-information,
.widget-footer .widget-information + .widget-information {
    margin-top: 20px;
}
.widget .widget-information > span,
.widget-footer .widget-information > span {
    display: inline-block;
}
.widget .widget-information .widget-information-title,
.widget-footer .widget-information .widget-information-title {
    display: block;
    margin-bottom: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #1b1b1b;
    text-transform: uppercase;
}
.widget .widget-categories,
.widget-footer .widget-categories {
    padding: 0;
    margin: -4px 0 -7px;
}
.widget .widget-categories > li,
.widget-footer .widget-categories > li {
    padding: 0;
    margin: 0;
    list-style: none;
}
.widget .widget-categories > li + li,
.widget-footer .widget-categories > li + li {
    margin-top: 17px;
}
.widget .widget-categories > li .widget-categories-badge,
.widget-footer .widget-categories > li .widget-categories-badge {
    display: block;
    text-align: right;
    white-space: nowrap;
}
.widget .widget-categories > li .widget-categories-category,
.widget-footer .widget-categories > li .widget-categories-category {
    width: 100%;
}
.widget .widget-categories > li .icon,
.widget-footer .widget-categories > li .icon {
    margin-left: -6px;
    font-size: 1.125rem;
}
.widget .widget-categories > li .icon + .widget-categories-category,
.widget-footer .widget-categories > li .icon + .widget-categories-category {
    margin-left: 11px;
}
.widget .widget-categories > li a,
.widget-footer .widget-categories > li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    color: #1b1b1b;
}
.widget .widget-categories > li a:hover,
.widget .widget-categories > li a.hover,
.widget-footer .widget-categories > li a:hover,
.widget-footer .widget-categories > li a.hover {
    color: #2b72e6;
}
.widget .widget-products,
.widget-footer .widget-products {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2px 0;
}
.widget .widget-products + .widget-products,
.widget-footer .widget-products + .widget-products {
    margin-top: 26px;
}
.widget .widget-products:hover,
.widget .widget-products.hover,
.widget-footer .widget-products:hover,
.widget-footer .widget-products.hover {
    text-decoration: none;
}
.widget .widget-products:hover .widget-products-title,
.widget .widget-products.hover .widget-products-title,
.widget-footer .widget-products:hover .widget-products-title,
.widget-footer .widget-products.hover .widget-products-title {
    color: #2b72e6;
}
.widget .widget-products .widget-products-img,
.widget-footer .widget-products .widget-products-img {
    position: relative;
    display: block;
    width: 80px;
    min-width: 80px;
    height: 70px;
    overflow: hidden;
    border-radius: 3px;
}
.widget .widget-products .widget-products-img + .widget-products-text,
.widget-footer .widget-products .widget-products-img + .widget-products-text {
    margin-left: 22px;
}
.widget .widget-products .widget-products-img img,
.widget-footer .widget-products .widget-products-img img {
    max-width: 100%;
}
.widget .widget-products .widget-products-text,
.widget-footer .widget-products .widget-products-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.widget .widget-products .widget-products-title,
.widget-footer .widget-products .widget-products-title {
    display: block;
    margin-top: -5px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #1b1b1b;
    -webkit-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
}
.widget .widget-products .widget-products-price,
.widget-footer .widget-products .widget-products-price {
    display: block;
    margin-bottom: -5px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #7a7a7a;
}
.widget .widget-post,
.widget-footer .widget-post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2px 0;
}
.widget .widget-post + .widget-post,
.widget-footer .widget-post + .widget-post {
    margin-top: 26px;
}
.widget .widget-post:hover,
.widget .widget-post.hover,
.widget-footer .widget-post:hover,
.widget-footer .widget-post.hover {
    text-decoration: none;
}
.widget .widget-post:hover .widget-post-title,
.widget .widget-post.hover .widget-post-title,
.widget-footer .widget-post:hover .widget-post-title,
.widget-footer .widget-post.hover .widget-post-title {
    color: #2b72e6;
}
.widget .widget-post .widget-post-img,
.widget-footer .widget-post .widget-post-img {
    position: relative;
    display: block;
    width: 80px;
    min-width: 80px;
    height: 70px;
    overflow: hidden;
    border-radius: 3px;
}
.widget .widget-post .widget-post-img + .widget-post-text,
.widget-footer .widget-post .widget-post-img + .widget-post-text {
    margin-left: 22px;
}
.widget .widget-post .widget-post-img img,
.widget-footer .widget-post .widget-post-img img {
    max-width: 100%;
}
.widget .widget-post .widget-post-text,
.widget-footer .widget-post .widget-post-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.widget .widget-post .widget-post-title,
.widget-footer .widget-post .widget-post-title {
    display: block;
    margin-top: -5px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #1b1b1b;
    -webkit-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
}
.widget .widget-post .widget-post-date,
.widget-footer .widget-post .widget-post-date {
    display: block;
    margin-bottom: -5px;
    font-size: 0.875rem;
    color: #7a7a7a;
}
.widget .widget-tags,
.widget-footer .widget-tags {
    padding: 0;
    margin: -3px -3px;
}
.widget .widget-tags > li,
.widget-footer .widget-tags > li {
    display: inline-block;
    padding: 5px 3px;
    margin: 0;
    list-style: none;
}
.widget .widget-tags > li a,
.widget-footer .widget-tags > li a {
    display: inline-block;
    padding: 8px 25px;
    font-size: 0.9375rem;
    color: #1b1b1b;
    background-color: rgba(247, 247, 247, 0.8);
    border-radius: 3px;
    -webkit-box-shadow: inset 0 0 0 1px rgba(229, 229, 229, 0.8);
    box-shadow: inset 0 0 0 1px rgba(229, 229, 229, 0.8);
    -webkit-transition:
        background-color 0.2s ease-in-out,
        -webkit-box-shadow 0.2s ease-in-out;
    transition:
        background-color 0.2s ease-in-out,
        -webkit-box-shadow 0.2s ease-in-out;
    -o-transition:
        background-color 0.2s ease-in-out,
        box-shadow 0.2s ease-in-out;
    transition:
        background-color 0.2s ease-in-out,
        box-shadow 0.2s ease-in-out;
    transition:
        background-color 0.2s ease-in-out,
        box-shadow 0.2s ease-in-out,
        -webkit-box-shadow 0.2s ease-in-out;
}
.widget .widget-tags > li a:hover,
.widget .widget-tags > li a.hover,
.widget .widget-tags > li a:focus,
.widget-footer .widget-tags > li a:hover,
.widget-footer .widget-tags > li a.hover,
.widget-footer .widget-tags > li a:focus {
    background-color: #f2f2f2;
    -webkit-box-shadow: inset 0 0 0 1px #d4d4d4;
    box-shadow: inset 0 0 0 1px #d4d4d4;
}
.widget .widget-link,
.widget-footer .widget-link {
    display: block;
    margin-top: -3px;
    margin-bottom: -4px;
}
.widget .widget-link + .widget-link,
.widget-footer .widget-link + .widget-link {
    margin-top: 26px;
}
.widget .widget-link .widget-link-text,
.widget-footer .widget-link .widget-link-text {
    display: block;
}
.widget .widget-link .widget-link-date,
.widget-footer .widget-link .widget-link-date {
    display: block;
    margin-top: 8px;
    font-size: 0.875rem;
    color: #7a7a7a;
}
.widget .widget-link:not([href]) .widget-link-text,
.widget-footer .widget-link:not([href]) .widget-link-text {
    display: block;
    color: #1b1b1b;
}
.widget .widget-link:not([href]) .widget-link-text a,
.widget-footer .widget-link:not([href]) .widget-link-text a {
    color: #2b72e6;
}
.widget .widget-link:not([href]) .widget-link-text a:hover,
.widget .widget-link:not([href]) .widget-link-text a.hover,
.widget-footer .widget-link:not([href]) .widget-link-text a:hover,
.widget-footer .widget-link:not([href]) .widget-link-text a.hover {
    color: #1b1b1b;
    text-decoration: none;
}
.widget .widget-twitter + .widget-twitter,
.widget-footer .widget-twitter + .widget-twitter {
    margin-top: 26px;
}
.widget .widget-twitter .widget-text,
.widget-footer .widget-twitter .widget-text {
    display: block;
    color: #1b1b1b;
}
.widget .widget-twitter .widget-text a,
.widget-footer .widget-twitter .widget-text a {
    color: #2b72e6;
    text-decoration: none;
}
.widget .widget-twitter .widget-text a:hover,
.widget .widget-twitter .widget-text a.hover,
.widget-footer .widget-twitter .widget-text a:hover,
.widget-footer .widget-twitter .widget-text a.hover {
    color: #1b1b1b;
    text-decoration: none;
}
.widget .widget-twitter .widget-twitter-date,
.widget-footer .widget-twitter .widget-twitter-date {
    display: block;
    margin-top: 8px;
    font-size: 0.875rem;
    color: #7a7a7a;
}
.widget .widget-subscribe,
.widget-footer .widget-subscribe {
    margin-top: -2px;
    font-size: 0.9375rem;
    line-height: 1.6;
}
.widget .widget-list,
.widget-footer .widget-list {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 0;
    margin: 0;
    margin-right: 40px;
}
@media screen {
    .widget .widget-list,
    .widget-footer .widget-list {
        margin-right: 30px;
    }
}
.widget .widget-list:last-of-type,
.widget-footer .widget-list:last-of-type {
    margin-right: 0;
}
.widget .widget-list a,
.widget-footer .widget-list a {
    display: block;
}
.widget .widget-list > li,
.widget-footer .widget-list > li {
    display: block;
    list-style: none;
}
.widget .widget-list > li + li,
.widget-footer .widget-list > li + li {
    margin-top: 6px;
}
.widget .widget-portfolio,
.widget-footer .widget-portfolio {
    display: block;
}
.widget .widget-portfolio a,
.widget-footer .widget-portfolio a {
    display: block;
}
.widget .widget-portfolio a + a,
.widget-footer .widget-portfolio a + a {
    margin-top: 17px;
}
.widget-footer {
    padding: 0;
    margin: 0;
}
.widget-footer a {
    color: #bababa !important;
}
.widget-footer a:hover {
    color: #bababa !important;
    opacity: 0.5;
}
.widget-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.widget-footer a:hover,
.widget-footer a.hover,
.widget-footer a:focus,
.widget-footer a.focus {
    color: #fff;
}
.widget-footer .widget-title {
    padding: 0;
    margin: 0;
    margin-top: -5px;
    margin-bottom: 26px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    border: 0;
}
.widget-footer .widget-post-title {
    margin: 0 !important;
    padding: 0 !important;
}
.widget-footer .widget-title > * {
    margin-bottom: 0;
    color: inherit;
}
.widget-footer .widget-post .widget-post-title {
    color: #bababa;
}
.widget-footer .widget-post .widget-post-date {
    color: #bababa;
    opacity: 0.7;
    will-change: opacity;
    -webkit-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}
.widget-footer .widget-post:hover .widget-post-title,
.widget-footer .widget-post.hover .widget-post-title,
.widget-footer .widget-post:focus .widget-post-title,
.widget-footer .widget-post.focus .widget-post-title {
    color: #fff;
}
.widget-footer .widget-post:hover .widget-post-date,
.widget-footer .widget-post.hover .widget-post-date,
.widget-footer .widget-post:focus .widget-post-date,
.widget-footer .widget-post.focus .widget-post-date {
    opacity: 1;
}
.widget-footer .widget-categories > li a {
    color: #bababa;
}
.widget-footer .widget-categories > li a:hover,
.widget-footer .widget-categories > li a.hover {
    color: #fff;
}
.widget-footer .widget-tags > li a {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.widget-footer .widget-tags > li a:hover,
.widget-footer .widget-tags > li a.hover {
    -webkit-box-shadow: none;
    box-shadow: none;
}
.widget-footer .widget-twitter .widget-text {
    color: #bababa;
}
.widget-footer .widget-twitter .widget-text a:hover,
.widget-footer .widget-twitter .widget-text a.hover {
    color: #fff;
}
.widget-footer .widget-twitter .widget-twitter-date {
    color: #bababa;
    opacity: 0.7;
}
.widget-footer .widget-link .widget-link-date {
    color: #bababa;
    opacity: 0.7;
    will-change: opacity;
    -webkit-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}
.widget-footer .widget-link:hover .widget-link-date,
.widget-footer .widget-link.hover .widget-link-date {
    opacity: 1;
}
.widget-footer .widget-link:not([href]) .widget-link-text {
    color: #bababa;
}
.widget-footer .widget-link:not([href]) .widget-link-text a {
    color: #2b72e6;
}
.widget-footer .widget-link:not([href]) .widget-link-text a:hover,
.widget-footer .widget-link:not([href]) .widget-link-text a.hover {
    color: #fff;
}
.widget-footer .widget-information {
    color: #bababa;
}
.widget-footer .widget-information .widget-information-title {
    font-weight: 500;
    color: #fff;
}
.widget-footer .widget-text {
    color: #bababa;
}
.sidebar {
    position: relative;
    height: auto;
    z-index: 1;
}
.social-links {
    padding: 0;
    margin: -10px -5px 0;
    font-size: 0;
    list-style-type: none;
}
.social-links::after {
    content: "";
    display: table;
    clear: both;
}
.social-links > li {
    display: inline-block;
    margin: 10px 6px 0;
}
.social-links > li > * {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: auto;
    min-height: 22px;
    font-size: 1.1rem;
    text-align: center;
    cursor: pointer;
    will-change: opacity;
    -webkit-transition:
        opacity 0.2s ease-in-out,
        color 0.2s ease-in-out;
    -o-transition:
        opacity 0.2s ease-in-out,
        color 0.2s ease-in-out;
    transition:
        opacity 0.2s ease-in-out,
        color 0.2s ease-in-out;
}
.social-links > li > *,
.social-links > li > *:focus,
.social-links > li > *:active {
    color: #fff;
    opacity: 0.8;
}
.social-links > li > *:hover,
.social-links > li > *.hover {
    text-decoration: none;
    opacity: 1;
}
.social-links > li > *.social-behance {
    color: #7a7a7a;
}
.social-links > li > *.social-behance:hover,
.social-links > li > *.social-behance.hover {
    color: #487cfb;
}
.social-links > li > *.social-bitbucket {
    color: #7a7a7a;
}
.social-links > li > *.social-bitbucket:hover,
.social-links > li > *.social-bitbucket.hover {
    color: #36517e;
}
.social-links > li > *.social-dropbox {
    color: #7a7a7a;
}
.social-links > li > *.social-dropbox:hover,
.social-links > li > *.social-dropbox.hover {
    color: #4d86d9;
}
.social-links > li > *.social-dribbble {
    color: #7a7a7a;
}
.social-links > li > *.social-dribbble:hover,
.social-links > li > *.social-dribbble.hover {
    color: #cc4d86;
}
.social-links > li > *.social-deviantart {
    color: #7a7a7a;
}
.social-links > li > *.social-deviantart:hover,
.social-links > li > *.social-deviantart.hover {
    color: #bac940;
}
.social-links > li > *.social-envato {
    color: #7a7a7a;
}
.social-links > li > *.social-envato:hover,
.social-links > li > *.social-envato.hover {
    color: #91b34c;
}
.social-links > li > *.social-facebook {
    color: #7a7a7a;
}
.social-links > li > *.social-facebook:hover,
.social-links > li > *.social-facebook.hover {
    color: #475995;
}
.social-links > li > *.social-flickr {
    color: #7a7a7a;
}
.social-links > li > *.social-flickr:hover,
.social-links > li > *.social-flickr.hover {
    color: #db0180;
}
.social-links > li > *.social-foursquare {
    color: #7a7a7a;
}
.social-links > li > *.social-foursquare:hover,
.social-links > li > *.social-foursquare.hover {
    color: #d94a75;
}
.social-links > li > *.social-github {
    color: #7a7a7a;
}
.social-links > li > *.social-github:hover,
.social-links > li > *.social-github.hover {
    color: #464646;
}
.social-links > li > *.social-google {
    color: #7a7a7a;
}
.social-links > li > *.social-google:hover,
.social-links > li > *.social-google.hover {
    color: #4285f4;
}
.social-links > li > *.social-google-plus {
    color: #7a7a7a;
}
.social-links > li > *.social-google-plus:hover,
.social-links > li > *.social-google-plus.hover {
    color: #c14d3d;
}
.social-links > li > *.social-instagram {
    color: #7a7a7a;
}
.social-links > li > *.social-instagram:hover,
.social-links > li > *.social-instagram.hover {
    color: #d12054;
}
.social-links > li > *.social-linkedin {
    color: #7a7a7a;
}
.social-links > li > *.social-linkedin:hover,
.social-links > li > *.social-linkedin.hover {
    color: #457ab3;
}
.social-links > li > *.social-medium {
    color: #7a7a7a;
}
.social-links > li > *.social-medium:hover,
.social-links > li > *.social-medium.hover {
    color: #71c66d;
}
.social-links > li > *.social-odnoklassniki {
    color: #7a7a7a;
}
.social-links > li > *.social-odnoklassniki:hover,
.social-links > li > *.social-odnoklassniki.hover {
    color: #d8732a;
}
.social-links > li > *.social-paypal {
    color: #7a7a7a;
}
.social-links > li > *.social-paypal:hover,
.social-links > li > *.social-paypal.hover {
    color: #1d3283;
}
.social-links > li > *.social-pinterest {
    color: #7a7a7a;
}
.social-links > li > *.social-pinterest:hover,
.social-links > li > *.social-pinterest.hover {
    color: #ae262b;
}
.social-links > li > *.social-rss {
    color: #7a7a7a;
}
.social-links > li > *.social-rss:hover,
.social-links > li > *.social-rss.hover {
    color: #e06618;
}
.social-links > li > *.social-reddit {
    color: #7a7a7a;
}
.social-links > li > *.social-reddit:hover,
.social-links > li > *.social-reddit.hover {
    color: #de470b;
}
.social-links > li > *.social-skype {
    color: #7a7a7a;
}
.social-links > li > *.social-skype:hover,
.social-links > li > *.social-skype.hover {
    color: #62aded;
}
.social-links > li > *.social-soundcloud {
    color: #7a7a7a;
}
.social-links > li > *.social-soundcloud:hover,
.social-links > li > *.social-soundcloud.hover {
    color: #df5611;
}
.social-links > li > *.social-slack {
    color: #7a7a7a;
}
.social-links > li > *.social-slack:hover,
.social-links > li > *.social-slack.hover {
    color: #543b56;
}
.social-links > li > *.social-steam {
    color: #7a7a7a;
}
.social-links > li > *.social-steam:hover,
.social-links > li > *.social-steam.hover {
    color: #272425;
}
.social-links > li > *.social-tumblr {
    color: #7a7a7a;
}
.social-links > li > *.social-tumblr:hover,
.social-links > li > *.social-tumblr.hover {
    color: #384961;
}
.social-links > li > *.social-twitter {
    color: #7a7a7a;
}
.social-links > li > *.social-twitter:hover,
.social-links > li > *.social-twitter.hover {
    color: #6da9de;
}
.social-links > li > *.social-vimeo {
    color: #7a7a7a;
}
.social-links > li > *.social-vimeo:hover,
.social-links > li > *.social-vimeo.hover {
    color: #69b5e7;
}
.social-links > li > *.social-vk {
    color: #7a7a7a;
}
.social-links > li > *.social-vk:hover,
.social-links > li > *.social-vk.hover {
    color: #657da0;
}
.social-links > li > *.social-wordpress {
    color: #7a7a7a;
}
.social-links > li > *.social-wordpress:hover,
.social-links > li > *.social-wordpress.hover {
    color: #4072a1;
}
.social-links > li > *.social-youtube {
    color: #7a7a7a;
}
.social-links > li > *.social-youtube:hover,
.social-links > li > *.social-youtube.hover {
    color: #c6271e;
}
.social-links.social-links-style-2 > li > * {
    padding: 10px 14px;
    font-size: 0.875rem;
    background-color: rgba(247, 247, 247, 0.8);
    border-radius: 3px;
    -webkit-box-shadow: inset 0 0 0 1px rgba(229, 229, 229, 0.8);
    box-shadow: inset 0 0 0 1px rgba(229, 229, 229, 0.8);
    opacity: 1;
    -webkit-transition:
        background-color 0.2s ease-in-out,
        color 0.2s ease-in-out,
        -webkit-box-shadow 0.2s ease-in-out;
    transition:
        background-color 0.2s ease-in-out,
        color 0.2s ease-in-out,
        -webkit-box-shadow 0.2s ease-in-out;
    -o-transition:
        background-color 0.2s ease-in-out,
        box-shadow 0.2s ease-in-out,
        color 0.2s ease-in-out;
    transition:
        background-color 0.2s ease-in-out,
        box-shadow 0.2s ease-in-out,
        color 0.2s ease-in-out;
    transition:
        background-color 0.2s ease-in-out,
        box-shadow 0.2s ease-in-out,
        color 0.2s ease-in-out,
        -webkit-box-shadow 0.2s ease-in-out;
}
.social-links.social-links-style-2 > li > *:hover,
.social-links.social-links-style-2 > li > *.hover {
    background-color: #f2f2f2;
    -webkit-box-shadow: inset 0 0 0 1px #d4d4d4;
    box-shadow: inset 0 0 0 1px #d4d4d4;
}
.social-links.social-links-style-2 > li > * > .icon {
    margin-right: 8px;
    font-size: 1.1rem;
}
.social-links.social-links-style-2 > li > *.social-behance {
    color: rgba(122, 122, 122, 0.8);
}
.social-links.social-links-style-2 > li > *.social-behance:hover,
.social-links.social-links-style-2 > li > *.social-behance.hover {
    color: #616161;
}
.social-links.social-links-style-2 > li > *.social-bitbucket {
    color: rgba(122, 122, 122, 0.8);
}
.social-links.social-links-style-2 > li > *.social-bitbucket:hover,
.social-links.social-links-style-2 > li > *.social-bitbucket.hover {
    color: #616161;
}
.social-links.social-links-style-2 > li > *.social-dropbox {
    color: rgba(122, 122, 122, 0.8);
}
.social-links.social-links-style-2 > li > *.social-dropbox:hover,
.social-links.social-links-style-2 > li > *.social-dropbox.hover {
    color: #616161;
}
.social-links.social-links-style-2 > li > *.social-dribbble {
    color: rgba(122, 122, 122, 0.8);
}
.social-links.social-links-style-2 > li > *.social-dribbble:hover,
.social-links.social-links-style-2 > li > *.social-dribbble.hover {
    color: #616161;
}
.social-links.social-links-style-2 > li > *.social-deviantart {
    color: rgba(122, 122, 122, 0.8);
}
.social-links.social-links-style-2 > li > *.social-deviantart:hover,
.social-links.social-links-style-2 > li > *.social-deviantart.hover {
    color: #616161;
}
.social-links.social-links-style-2 > li > *.social-envato {
    color: rgba(122, 122, 122, 0.8);
}
.social-links.social-links-style-2 > li > *.social-envato:hover,
.social-links.social-links-style-2 > li > *.social-envato.hover {
    color: #616161;
}
.social-links.social-links-style-2 > li > *.social-facebook {
    color: rgba(122, 122, 122, 0.8);
}
.social-links.social-links-style-2 > li > *.social-facebook:hover,
.social-links.social-links-style-2 > li > *.social-facebook.hover {
    color: #616161;
}
.social-links.social-links-style-2 > li > *.social-flickr {
    color: rgba(122, 122, 122, 0.8);
}
.social-links.social-links-style-2 > li > *.social-flickr:hover,
.social-links.social-links-style-2 > li > *.social-flickr.hover {
    color: #616161;
}
.social-links.social-links-style-2 > li > *.social-foursquare {
    color: rgba(122, 122, 122, 0.8);
}
.social-links.social-links-style-2 > li > *.social-foursquare:hover,
.social-links.social-links-style-2 > li > *.social-foursquare.hover {
    color: #616161;
}
.social-links.social-links-style-2 > li > *.social-github {
    color: rgba(122, 122, 122, 0.8);
}
.social-links.social-links-style-2 > li > *.social-github:hover,
.social-links.social-links-style-2 > li > *.social-github.hover {
    color: #616161;
}
.social-links.social-links-style-2 > li > *.social-google {
    color: rgba(122, 122, 122, 0.8);
}
.social-links.social-links-style-2 > li > *.social-google:hover,
.social-links.social-links-style-2 > li > *.social-google.hover {
    color: #616161;
}
.social-links.social-links-style-2 > li > *.social-google-plus {
    color: rgba(122, 122, 122, 0.8);
}
.social-links.social-links-style-2 > li > *.social-google-plus:hover,
.social-links.social-links-style-2 > li > *.social-google-plus.hover {
    color: #616161;
}
.social-links.social-links-style-2 > li > *.social-instagram {
    color: rgba(122, 122, 122, 0.8);
}
.social-links.social-links-style-2 > li > *.social-instagram:hover,
.social-links.social-links-style-2 > li > *.social-instagram.hover {
    color: #616161;
}
.social-links.social-links-style-2 > li > *.social-linkedin {
    color: rgba(122, 122, 122, 0.8);
}
.social-links.social-links-style-2 > li > *.social-linkedin:hover,
.social-links.social-links-style-2 > li > *.social-linkedin.hover {
    color: #616161;
}
.social-links.social-links-style-2 > li > *.social-medium {
    color: rgba(122, 122, 122, 0.8);
}
.social-links.social-links-style-2 > li > *.social-medium:hover,
.social-links.social-links-style-2 > li > *.social-medium.hover {
    color: #616161;
}
.social-links.social-links-style-2 > li > *.social-odnoklassniki {
    color: rgba(122, 122, 122, 0.8);
}
.social-links.social-links-style-2 > li > *.social-odnoklassniki:hover,
.social-links.social-links-style-2 > li > *.social-odnoklassniki.hover {
    color: #616161;
}
.social-links.social-links-style-2 > li > *.social-paypal {
    color: rgba(122, 122, 122, 0.8);
}
.social-links.social-links-style-2 > li > *.social-paypal:hover,
.social-links.social-links-style-2 > li > *.social-paypal.hover {
    color: #616161;
}
.social-links.social-links-style-2 > li > *.social-pinterest {
    color: rgba(122, 122, 122, 0.8);
}
.social-links.social-links-style-2 > li > *.social-pinterest:hover,
.social-links.social-links-style-2 > li > *.social-pinterest.hover {
    color: #616161;
}
.social-links.social-links-style-2 > li > *.social-rss {
    color: rgba(122, 122, 122, 0.8);
}
.social-links.social-links-style-2 > li > *.social-rss:hover,
.social-links.social-links-style-2 > li > *.social-rss.hover {
    color: #616161;
}
.social-links.social-links-style-2 > li > *.social-reddit {
    color: rgba(122, 122, 122, 0.8);
}
.social-links.social-links-style-2 > li > *.social-reddit:hover,
.social-links.social-links-style-2 > li > *.social-reddit.hover {
    color: #616161;
}
.social-links.social-links-style-2 > li > *.social-skype {
    color: rgba(122, 122, 122, 0.8);
}
.social-links.social-links-style-2 > li > *.social-skype:hover,
.social-links.social-links-style-2 > li > *.social-skype.hover {
    color: #616161;
}
.social-links.social-links-style-2 > li > *.social-soundcloud {
    color: rgba(122, 122, 122, 0.8);
}
.social-links.social-links-style-2 > li > *.social-soundcloud:hover,
.social-links.social-links-style-2 > li > *.social-soundcloud.hover {
    color: #616161;
}
.social-links.social-links-style-2 > li > *.social-slack {
    color: rgba(122, 122, 122, 0.8);
}
.social-links.social-links-style-2 > li > *.social-slack:hover,
.social-links.social-links-style-2 > li > *.social-slack.hover {
    color: #616161;
}
.social-links.social-links-style-2 > li > *.social-steam {
    color: rgba(122, 122, 122, 0.8);
}
.social-links.social-links-style-2 > li > *.social-steam:hover,
.social-links.social-links-style-2 > li > *.social-steam.hover {
    color: #616161;
}
.social-links.social-links-style-2 > li > *.social-tumblr {
    color: rgba(122, 122, 122, 0.8);
}
.social-links.social-links-style-2 > li > *.social-tumblr:hover,
.social-links.social-links-style-2 > li > *.social-tumblr.hover {
    color: #616161;
}
.social-links.social-links-style-2 > li > *.social-twitter {
    color: rgba(122, 122, 122, 0.8);
}
.social-links.social-links-style-2 > li > *.social-twitter:hover,
.social-links.social-links-style-2 > li > *.social-twitter.hover {
    color: #616161;
}
.social-links.social-links-style-2 > li > *.social-vimeo {
    color: rgba(122, 122, 122, 0.8);
}
.social-links.social-links-style-2 > li > *.social-vimeo:hover,
.social-links.social-links-style-2 > li > *.social-vimeo.hover {
    color: #616161;
}
.social-links.social-links-style-2 > li > *.social-vk {
    color: rgba(122, 122, 122, 0.8);
}
.social-links.social-links-style-2 > li > *.social-vk:hover,
.social-links.social-links-style-2 > li > *.social-vk.hover {
    color: #616161;
}
.social-links.social-links-style-2 > li > *.social-wordpress {
    color: rgba(122, 122, 122, 0.8);
}
.social-links.social-links-style-2 > li > *.social-wordpress:hover,
.social-links.social-links-style-2 > li > *.social-wordpress.hover {
    color: #616161;
}
.social-links.social-links-style-2 > li > *.social-youtube {
    color: rgba(122, 122, 122, 0.8);
}
.social-links.social-links-style-2 > li > *.social-youtube:hover,
.social-links.social-links-style-2 > li > *.social-youtube.hover {
    color: #616161;
}
.blog-item {
    padding-top: 10px;
}
.blog-item + .blog-item {
    margin-top: 40px;
}
.blog-item .blog-item-list {
    padding-left: 18px;
    margin: 0;
}
.blog-item .blog-item-list > li {
    padding-left: 8px;
    margin: 0;
}
.blog-item .blog-item-list > li + li {
    margin-top: 6px;
}
.blog-item .blog-item-img {
    background-color: #1b1b1b;
    position: relative;
    display: block;
    margin: 0 10px;
    overflow: hidden;
}
.blog-item .blog-item-img img {
    max-width: 100%;
    height: auto;
    will-change: transform;
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    -o-transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition:
        transform 0.2s ease-in-out,
        -webkit-transform 0.2s ease-in-out;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.blog-item .blog-item-img::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(27, 27, 27, 0.5);
    opacity: 0;
    will-change: opacity;
    -webkit-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}
.blog-item .blog-item-img:hover img {
    -webkit-transform: scale(1.01);
    -ms-transform: scale(1.01);
    transform: scale(1.01);
}
.blog-item .blog-item-img:hover::after {
    opacity: 1;
}
.blog-item .blog-item-cont {
    padding: 50px;
}
@media screen and (max-width: 767px) {
    .blog-item .blog-item-cont {
        padding: 30px;
    }
}
.blog-item .blog-item-title {
    margin-top: -7px;
    margin-bottom: 0;
    color: #1b1b1b;
    -webkit-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
}
.blog-item .blog-item-title a {
    color: #1b1b1b;
}
.index-date {
    margin: 3px 0 20px;
}
.blog-item .blog-item-title a:hover,
.blog-item .blog-item-title a.hover {
    color: #2b72e6;
    text-decoration: none;
}
.blog-item .blog-item-info {
    display: block;
    padding: 0;
    margin: -8px -12px 23px;
    font-size: 0.9375rem;
    color: #7a7a7a;
}
.blog-item .blog-item-info > li {
    display: inline-block;
    padding: 8px 12px 0;
    margin: 0;
    list-style: none;
}
.blog-item .blog-item-info > li a {
    color: #7a7a7a;
}
.blog-item .blog-item-info > li a:hover,
.blog-item .blog-item-info > li a.hover {
    color: #1b1b1b;
    text-decoration: none;
}
.blog-item .blog-item-categories,
.blog-item .blog-item-tags {
    display: inline-block;
    padding: 0;
    margin: 0;
}
.blog-item .blog-item-categories > li,
.blog-item .blog-item-tags > li {
    display: inline-block;
    padding: 0;
    margin: 0;
    list-style: none;
}
.blog-item .blog-item-categories > li a,
.blog-item .blog-item-tags > li a {
    color: #7a7a7a;
}
.blog-item .blog-item-categories > li a:hover,
.blog-item .blog-item-categories > li a.hover,
.blog-item .blog-item-tags > li a:hover,
.blog-item .blog-item-tags > li a.hover {
    color: #1b1b1b;
    text-decoration: none;
}
.blog-item .blog-item-categories > li::after,
.blog-item .blog-item-tags > li::after {
    content: ",";
}
.blog-item .blog-item-categories > li:last-child::after,
.blog-item .blog-item-tags > li:last-child::after {
    content: "";
}
.blog-item .blog-item-text {
    margin-bottom: 28px;
}
.blog-item .blog-item-text p:last-child {
    margin-bottom: 0;
}
.blog-post .blog-post-title {
    margin-top: -7px;
    margin-bottom: 11px;
    color: #1b1b1b;
    -webkit-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
}
.blog-post .blog-post-title a {
    color: #1b1b1b;
}
.blog-post .blog-post-title a:hover,
.blog-post .blog-post-title a.hover {
    color: #2b72e6;
    text-decoration: none;
}
.blog-post .blog-post-box {
    padding: 50px;
}
@media screen and (max-width: 767px) {
    .blog-post .blog-post-box {
        padding: 30px;
    }
}
.blog-post .blog-post-box + .blog-post-box {
    padding-top: 0;
}
.blog-post .blog-post-info {
    display: block;
    padding: 0;
    margin: -8px -12px 23px;
    font-size: 0.9375rem;
    color: #7a7a7a;
}
.blog-post .blog-post-info > li {
    display: inline-block;
    padding: 8px 12px 0;
    margin: 0;
    list-style: none;
}
.blog-post .blog-post-info > li a {
    color: #7a7a7a;
}
.blog-post .blog-post-info > li a:hover,
.blog-post .blog-post-info > li a.hover {
    color: #1b1b1b;
    text-decoration: none;
}
.blog-post .blog-post-info.blog-post-info-style-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 50px;
    margin: 0;
    color: #525252;
}
@media screen and (max-width: 767px) {
    .blog-post .blog-post-info.blog-post-info-style-2 {
        padding: 16px 30px 11px;
    }
}
@media screen and (max-width: 575px) {
    .blog-post .blog-post-info.blog-post-info-style-2 {
        padding: 16px 21px 11px;
    }
}
.blog-post .blog-post-info.blog-post-info-style-2 > li {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 25px 0 20px;
    border-right: 1px solid #ececec;
}
.blog-post .blog-post-info.blog-post-info-style-2 > li:first-child {
    -webkit-box-flex: 0.5;
    -ms-flex-positive: 0.5;
    flex-grow: 0.5;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.blog-post .blog-post-info.blog-post-info-style-2 > li:last-child {
    border-right: 0;
}
@media screen and (max-width: 767px) {
    .blog-post .blog-post-info.blog-post-info-style-2 > li {
        padding: 9px 0;
        border: 0;
    }
}
@media screen and (max-width: 575px) {
    .blog-post .blog-post-info.blog-post-info-style-2 > li {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding: 9px;
    }
}
.blog-post .blog-post-info.blog-post-info-style-2 .blog-post-info-title {
    display: block;
    margin-top: -4px;
    margin-bottom: 7px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #1b1b1b;
    text-transform: uppercase;
}
.blog-post .blog-post-list {
    padding-left: 18px;
    margin: 0;
}
.blog-post .blog-post-list > li {
    padding-left: 8px;
    margin: 0;
}
.blog-post .blog-post-list > li + li {
    margin-top: 6px;
}
.blog-post .blog-post-categories,
.blog-post .blog-post-tags {
    display: inline-block;
    padding: 0;
    margin: 0;
}
.blog-post .blog-post-categories .blog-post-categories-title::after,
.blog-post .blog-post-categories .blog-post-tags-title::after,
.blog-post .blog-post-tags .blog-post-categories-title::after,
.blog-post .blog-post-tags .blog-post-tags-title::after {
    content: "";
}
.blog-post .blog-post-categories > li,
.blog-post .blog-post-tags > li {
    display: inline-block;
    padding: 0;
    margin: 0;
    color: #7a7a7a;
    list-style: none;
}
.blog-post .blog-post-categories > li a,
.blog-post .blog-post-tags > li a {
    color: #7a7a7a;
}
.blog-post .blog-post-categories > li a:hover,
.blog-post .blog-post-categories > li a.hover,
.blog-post .blog-post-tags > li a:hover,
.blog-post .blog-post-tags > li a.hover {
    color: #1b1b1b;
    text-decoration: none;
}
.blog-post .blog-post-categories > li::after,
.blog-post .blog-post-tags > li::after {
    content: ",";
}
.blog-post .blog-post-categories > li:last-child::after,
.blog-post .blog-post-tags > li:last-child::after {
    content: "";
}
.comment {
    position: relative;
    padding: 0;
}
.comment:last-of-type {
    border-bottom: 1px solid #ececec;
}
.comment > div:first-child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 30px;
}
.comment + .comment {
    padding: 31px 0;
    border-top: 1px solid #ececec;
}
.comment + .comment > div:first-child {
    padding-bottom: 0;
}
.comment .comment {
    padding: 31px 0;
    padding-bottom: 0;
    margin-left: 110px;
    border-top: 1px solid #ececec;
    border-bottom: 0;
}
@media screen and (max-width: 767px) {
    .comment .comment {
        margin-left: 40px;
    }
}
@media screen and (max-width: 575px) {
    .comment .comment {
        margin-left: 20px;
    }
}
.comment .comment-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 80px;
    min-width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 3px;
}
.comment .comment-img + .comment-cont {
    margin-left: 30px;
}
@media screen and (max-width: 575px) {
    .comment .comment-img + .comment-cont {
        margin-left: -80px;
    }
}
.comment .comment-img img {
    width: 100%;
    height: 100%;
    font-family: "object-fit:cover";
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 3px;
}
.comment .comment-cont .comment-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.comment .comment-cont .comment-head + .comment-date {
    margin-top: -2px;
}
@media screen and (max-width: 575px) {
    .comment .comment-cont .comment-head + .comment-date {
        margin-left: 110px;
    }
}
.comment .comment-cont .comment-name {
    position: relative;
    display: inline-block;
    top: -6px;
    font-weight: 600;
    color: #1b1b1b;
    -webkit-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
}
@media screen and (max-width: 575px) {
    .comment .comment-cont .comment-name {
        display: block;
        margin-left: 110px;
    }
}
.comment .comment-cont .comment-name:hover,
.comment .comment-cont .comment-name.hover,
.comment .comment-cont .comment-name:focus {
    color: #2b72e6;
    text-decoration: none;
}
.comment .comment-cont .comment-name + .comment-reply {
    position: relative;
    top: -8px;
    margin-left: 22px;
}
@media screen and (max-width: 575px) {
    .comment .comment-cont .comment-name + .comment-reply {
        margin-top: 15px;
        margin-left: 110px;
    }
}
.comment .comment-cont .comment-name + .comment-text {
    margin-top: 6px;
}
.comment .comment-cont .comment-name + .comment-date {
    margin-top: -2px;
}
@media screen and (max-width: 575px) {
    .comment .comment-cont .comment-name + .comment-date {
        margin-left: 110px;
    }
}
.comment .comment-cont .comment-reply {
    display: inline-block;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    background-color: #7a7a7a;
    border-radius: 3px;
    -webkit-transition: background-color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
}
.comment .comment-cont .comment-reply:hover,
.comment .comment-cont .comment-reply.hover,
.comment .comment-cont .comment-reply:focus {
    color: #fff;
    text-decoration: none;
    background-color: #545454;
}
.comment .comment-cont .comment-reply + .comment-text {
    margin-top: 6px;
}
@media screen and (max-width: 575px) {
    .comment .comment-cont .comment-reply + .comment-text {
        margin-top: 41px;
    }
}
.comment .comment-cont .comment-text + .comment-date {
    margin-top: 14px;
    margin-bottom: -6px;
}
.comment .comment-cont .comment-date {
    display: block;
    font-size: 0.875rem;
    color: #7a7a7a;
}
.comment .comment-cont .comment-date + .comment-text {
    margin-top: 18px;
    margin-bottom: -6px;
}
@media screen and (max-width: 575px) {
    .comment .comment-cont .comment-date + .comment-text {
        margin-top: 61px;
    }
}
.comment.comment-style-topic {
    padding: 50px;
}
@media screen and (max-width: 767px) {
    .comment.comment-style-topic {
        padding: 30px;
    }
}
.comment.comment-style-topic + .comment {
    margin-top: 0;
}
.ticket.ticket-open .ticket-status::before,
.ticket.ticket-closed .ticket-status::before {
    content: "";
    width: 5px;
    min-width: 5px;
    height: 5px;
    margin-top: -2px;
    margin-right: 10px;
    border-radius: 5px;
}
@media screen and (max-width: 575px) {
    .ticket.ticket-open .ticket-status::before,
    .ticket.ticket-closed .ticket-status::before {
        margin: 7px 0 0;
    }
}
.ticket.ticket-open .ticket-status::after,
.ticket.ticket-closed .ticket-status::after {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}
@media screen and (max-width: 575px) {
    .ticket.ticket-open .ticket-status::after,
    .ticket.ticket-closed .ticket-status::after {
        display: none;
    }
}
.ticket.ticket-open .ticket-status::before {
    background-color: #2b72e6;
}
.ticket.ticket-open .ticket-status::after {
    content: "Open";
    color: #2b72e6;
}
.ticket.ticket-open .ticket-title {
    padding-right: 40px;
}
@media screen and (max-width: 767px) {
    .ticket.ticket-open .ticket-title {
        padding-right: 60px;
    }
}
@media screen and (max-width: 575px) {
    .ticket.ticket-open .ticket-title {
        padding-right: 30px;
    }
}
.ticket.ticket-closed .ticket-status::before {
    background-color: #999;
}
.ticket.ticket-closed .ticket-status::after {
    content: "Closed";
    color: #999;
}
.ticket.ticket-closed .ticket-title {
    padding-right: 60px;
}
@media screen and (max-width: 767px) {
    .ticket.ticket-closed .ticket-title {
        padding-right: 70px;
    }
}
@media screen and (max-width: 575px) {
    .ticket.ticket-closed .ticket-title {
        padding-right: 30px;
    }
}
.ticket .ticket-status {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    top: 30px;
    right: 30px;
    margin-left: 30px;
}
.ticket-item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 30px;
}
@media screen and (max-width: 575px) {
    .ticket-item {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.ticket-item + .ticket-item {
    margin-top: 30px;
}
.ticket-item.ticket-new .ticket-info .ticket-new {
    display: inline-block;
    padding: 2px 8px;
    margin-top: 4px;
    font-size: 9px;
    color: #fff;
    text-transform: uppercase;
    background-color: #2b72e6;
    border-radius: 3px;
}
.ticket-item.ticket-open .ticket-status,
.ticket-item.ticket-closed .ticket-status {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}
.ticket-item.ticket-open .ticket-status::before,
.ticket-item.ticket-closed .ticket-status::before {
    content: "";
    width: 5px;
    min-width: 5px;
    height: 5px;
    margin-right: 10px;
    border-radius: 5px;
}
@media screen and (max-width: 767px) {
    .ticket-item.ticket-open .ticket-status,
    .ticket-item.ticket-closed .ticket-status {
        position: absolute;
        top: 25px;
        right: 30px;
        margin: 0;
    }
}
.ticket-item.ticket-open .ticket-status {
    color: #2b72e6;
}
.ticket-item.ticket-open .ticket-status::before {
    background-color: #2b72e6;
}
.ticket-item.ticket-closed .ticket-status {
    color: #999;
}
.ticket-item.ticket-closed .ticket-status::before {
    background-color: #999;
}
.ticket-item .ticket-status {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-left: 30px;
}
.ticket-item .ticket-cont {
    width: 100%;
}
.ticket-item .ticket-img {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 80px;
    min-width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: 3px;
}
.ticket-item .ticket-img + .ticket-cont {
    margin-left: 30px;
}
@media screen and (max-width: 575px) {
    .ticket-item .ticket-img + .ticket-cont {
        margin-top: 30px;
        margin-left: 0;
    }
}
.ticket-item .ticket-img img {
    width: 100%;
    height: 100%;
    font-family: "object-fit:cover";
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 3px;
}
.ticket-item .ticket-name {
    display: block;
    margin-top: -6px;
    font-weight: 600;
    color: #7a7a7a;
}
.ticket-item .ticket-name + .ticket-title {
    margin-top: 9px;
}
.ticket-item .ticket-title {
    display: block;
    margin-bottom: 0;
    -webkit-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
}
.ticket-item .ticket-title + .ticket-info {
    margin-top: 10px;
}
.ticket-item .ticket-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    margin: 0 0 -6px;
    font-size: 0.875rem;
    color: #7a7a7a;
}
.ticket-item .ticket-info > li {
    display: inline-block;
    padding-top: 4px;
    margin-right: 30px;
    list-style: none;
}
@media screen and (max-width: 575px) {
    .ticket-item .ticket-info > li {
        margin-right: 20px;
    }
}
.ticket-item .ticket-info > li:last-child {
    margin-right: 0;
}
.ticket-item:hover,
.ticket-item.hover {
    text-decoration: none;
}
.ticket-item:hover .ticket-title,
.ticket-item.hover .ticket-title {
    color: #2b72e6;
}
.ticket-item:focus,
.ticket-item.focus {
    text-decoration: none;
}
.ticket-comment {
    padding: 50px;
}
.ticket-comment + .ticket-comment {
    padding: 50px;
    margin-top: 0;
}
@media screen and (max-width: 767px) {
    .ticket-comment {
        padding: 30px;
    }
    .ticket-comment + .ticket-comment {
        padding: 30px;
    }
}
.ticket-comment.comment-replied {
    -webkit-box-shadow:
        inset 3px 0 0 0 #dbdbdb,
        inset 0 1px 0 0 #ececec,
        inset 0 -1px 0 0 #ececec;
    box-shadow:
        inset 3px 0 0 0 #dbdbdb,
        inset 0 1px 0 0 #ececec,
        inset 0 -1px 0 0 #ececec;
}
.ticket-comment.comment-replied .comment-name .comment-replied {
    margin-left: 3px;
    color: #7a7a7a;
}
@media screen and (max-width: 575px) {
    .ticket-comment.comment-replied .comment-name .comment-replied {
        display: none;
    }
}
.ticket-comment.comment-new .comment-name {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@media screen and (max-width: 575px) {
    .ticket-comment.comment-new .comment-name {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding-right: 40px;
    }
}
.ticket-comment.comment-new .comment-name .comment-new {
    position: relative;
    display: inline-block;
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
    padding: 2px 8px;
    margin-left: 25px;
    font-size: 9px;
    color: #fff;
    text-transform: uppercase;
    background-color: #2b72e6;
    border-radius: 3px;
}
@media screen and (max-width: 575px) {
    .ticket-comment.comment-new .comment-name .comment-new {
        position: absolute;
        right: 0;
        margin: 0;
    }
}
.ticket-comment .comment-text + .comment-file {
    margin-top: 30px;
}
.ticket-comment .comment-file {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px 20px 20px 70px;
    color: rgba(122, 122, 122, 0.8);
    background-color: rgba(247, 247, 247, 0.8);
    border-radius: 3px;
    -webkit-box-shadow: inset 0 0 0 1px rgba(229, 229, 229, 0.8);
    box-shadow: inset 0 0 0 1px rgba(229, 229, 229, 0.8);
    -webkit-transition:
        background-color 0.2s ease-in-out,
        color 0.2s ease-in-out,
        -webkit-box-shadow 0.2s ease-in-out;
    transition:
        background-color 0.2s ease-in-out,
        color 0.2s ease-in-out,
        -webkit-box-shadow 0.2s ease-in-out;
    -o-transition:
        background-color 0.2s ease-in-out,
        box-shadow 0.2s ease-in-out,
        color 0.2s ease-in-out;
    transition:
        background-color 0.2s ease-in-out,
        box-shadow 0.2s ease-in-out,
        color 0.2s ease-in-out;
    transition:
        background-color 0.2s ease-in-out,
        box-shadow 0.2s ease-in-out,
        color 0.2s ease-in-out,
        -webkit-box-shadow 0.2s ease-in-out;
}
.ticket-comment .comment-file .comment-file-img {
    position: absolute;
    top: 12px;
    left: 12px;
}
.ticket-comment .comment-file .comment-file-name {
    display: block;
    margin-top: -8px;
    font-size: 0.875rem;
}
.ticket-comment .comment-file .comment-file-size {
    display: block;
    margin-top: -1px;
    margin-bottom: -6px;
    font-size: 0.875rem;
    color: #bababa;
}
.ticket-comment .comment-file .comment-file-icon {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    top: 0;
    right: 20px;
    bottom: 0;
    font-size: 1.5rem;
}
.ticket-comment .comment-file:hover,
.ticket-comment .comment-file.hover {
    color: #616161;
    text-decoration: none;
    background-color: #f2f2f2;
    -webkit-box-shadow: inset 0 0 0 1px #d4d4d4;
    box-shadow: inset 0 0 0 1px #d4d4d4;
}
.topic-comment {
    padding: 50px;
}
.topic-comment + .topic-comment {
    padding: 50px;
    margin-top: 0;
}
@media screen and (max-width: 767px) {
    .topic-comment {
        padding: 30px;
    }
    .topic-comment + .topic-comment {
        padding: 30px;
    }
}
.fancybox-slide {
    padding: 0;
}
@media screen and (min-width: 768px) {
    .fancybox-slide::-webkit-scrollbar-track {
        background-color: #1b1b1b;
    }
    .fancybox-slide::-webkit-scrollbar {
        width: 8px;
        background-color: #1b1b1b;
    }
    .fancybox-slide::-webkit-scrollbar-thumb {
        background-color: #fff;
        border-radius: 4px;
    }
}
.popup {
    display: none;
    padding: 0;
}
.popup.popup-signin {
    position: static;
    background: none;
}
.popup.popup-signin::after {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    background-color: #1b1b1b;
    z-index: -1;
}
.popup.popup-modal {
    width: auto;
    height: auto;
    margin: 20px 0;
}
.popup.popup-modal .fancybox-close-small {
    top: 13px;
    right: 13px;
    width: 46px;
    height: 46px;
    color: #bababa;
}
.popup.popup-modal .fancybox-close-small:hover,
.popup.popup-modal .fancybox-close-small.hover {
    color: #7a7a7a;
}
.popup.popup-subscribe {
    width: 365px;
    border-radius: 3px;
}
.popup .fancybox-close-small {
    top: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    color: #bababa;
    -webkit-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
}
.popup .fancybox-close-small:hover,
.popup .fancybox-close-small.hover {
    color: #fff;
}
.popup .fancybox-close-small.fancybox-focus {
    outline: 0;
}
.list {
    padding-left: 18px;
    margin: 0;
}
.list.list-decimal {
    padding-left: 37px;
}
.list.list-decimal > li {
    padding-left: 0;
    list-style-type: decimal;
}
.list > li {
    padding-left: 8px;
    margin: 0;
    color: #7a7a7a;
}
.list > li + li {
    margin-top: 11px;
}
.list > li strong {
    color: #1b1b1b;
}
.list > li a {
    display: block;
    color: #2b72e6;
    text-decoration: none;
}
.list > li a:hover,
.list > li a:focus {
    color: #1b1b1b;
    text-decoration: none;
}
.list-documentation {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 25px;
    margin: 0 -5px;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.list-documentation .list-documentation a::after {
    display: none;
}
.list-documentation > li {
    position: relative;
    padding: 0 15px;
    list-style: none;
}
.list-documentation > li + li {
    margin-top: 16px;
}
.list-documentation > li a,
.list-documentation > li button {
    position: relative;
    display: block;
    padding: 3px 0;
    font-size: 1rem;
    font-weight: 600;
    color: #1b1b1b;
    text-decoration: none;
    -webkit-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
}
.list-documentation > li a + .accordion-btn,
.list-documentation > li button + .accordion-btn {
    position: absolute;
    top: -1px;
    right: 15px;
}
.list-documentation > li a::after,
.list-documentation > li button::after {
    content: "";
    position: absolute;
    top: 0;
    right: auto;
    bottom: 0;
    left: -35px;
    width: 2px;
    height: auto;
    background-color: #2b72e6;
    opacity: 0;
    will-change: opacity;
    -webkit-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}
.list-documentation > li a.active,
.list-documentation > li a:hover,
.list-documentation > li button.active,
.list-documentation > li button:hover {
    color: #2b72e6;
    text-decoration: none;
}
.list-documentation > li a.active::after,
.list-documentation > li button.active::after {
    opacity: 1;
}
.edd-submit,
.btn {
    position: relative;
    display: inline-block;
    padding: 11px 22px;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1;
    color: #fff;
    text-align: center;
    letter-spacing: 0.02em;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #2b72e6;
    border: 0;
    border-radius: 3px;
    will-change: transform, opacity;
    -webkit-transition: all 0.15s ease-in-out;
    -o-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    text-transform: uppercase;
}
.btn > .icon {
    line-height: 0;
}
.btn:hover,
.btn.hover,
.btn:focus,
.btn.focus,
.btn:active,
.btn.active {
    color: #fff;
    text-decoration: none;
    background-color: #175ac7;
    outline: none;
}
.btn-main-1 {
    background-color: #2b72e6;
}
.btn-main-1:hover,
.btn-main-1.hover {
    background-color: #175ac7;
}
.btn-main-2 {
    background-color: #f03f3b;
}
.btn-main-2:hover,
.btn-main-2.hover {
    background-color: #e61612;
}
.btn-main-3 {
    background-color: #c9a57d;
}
.btn-main-3:hover,
.btn-main-3.hover {
    background-color: #ba8c59;
}
.btn-white {
    background-color: #fff;
}
.btn-white:hover,
.btn-white.hover {
    background-color: #e6e6e6;
}
.btn-black {
    background-color: #000;
}
.btn-black:hover,
.btn-black.hover {
    background-color: black;
}
.btn-1 {
    background-color: #d4d4d4;
}
.btn-1:hover,
.btn-1.hover {
    background-color: #bbbbbb;
}
.btn-2 {
    background-color: #bcbcbc;
}
.btn-2:hover,
.btn-2.hover {
    background-color: #a3a3a3;
}
.btn-3 {
    background-color: #525252;
}
.btn-3:hover,
.btn-3.hover {
    background-color: #393939;
}
.btn-grey-1 {
    background-color: #7a7a7a;
}
.btn-grey-1:hover,
.btn-grey-1.hover {
    background-color: #616161;
}
.btn-grey-2 {
    background-color: #3a3a3a;
}
.btn-grey-2:hover,
.btn-grey-2.hover {
    background-color: #212121;
}
.btn-grey-3 {
    background-color: #bababa;
}
.btn-grey-3:hover,
.btn-grey-3.hover {
    background-color: #a1a1a1;
}
.btn-grey-4 {
    background-color: #d6d6d6;
}
.btn-grey-4:hover,
.btn-grey-4.hover {
    background-color: #bdbdbd;
}
.btn-grey-5 {
    background-color: #ececec;
}
.btn-grey-5:hover,
.btn-grey-5.hover {
    background-color: lightgray;
}
.btn-grey-6 {
    background-color: #f9f9f9;
}
.btn-grey-6:hover,
.btn-grey-6.hover {
    background-color: #e0e0e0;
}
.btn-dark-1 {
    background-color: #1b1b1b;
}
.btn-dark-1:hover,
.btn-dark-1.hover {
    background-color: #020202;
}
.btn-dark-2 {
    background-color: #121212;
}
.btn-dark-2:hover,
.btn-dark-2.hover {
    background-color: black;
}
.btn-dark-3 {
    background-color: #232323;
}
.btn-dark-3:hover,
.btn-dark-3.hover {
    background-color: #0a0a0a;
}
.btn-envato {
    min-width: 300px;
    background-color: #91b34c;
}
@media screen and (max-width: 575px) {
    .btn-envato {
        min-width: auto;
    }
}
.btn-envato > .icon {
    opacity: 0.9;
    will-change: opacity;
    -webkit-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}
.btn-envato:hover,
.btn-envato.hover,
.btn-envato:focus,
.btn-envato.focus {
    background-color: #748f3d;
}
.btn-envato:hover > .icon,
.btn-envato.hover > .icon,
.btn-envato:focus > .icon,
.btn-envato.focus > .icon {
    opacity: 1;
}
.btn-grey {
    color: #525252;
    background-color: #e8e8e8;
}
.btn-grey:hover,
.btn-grey.hover,
.btn-grey:focus {
    color: #1b1b1b;
    background-color: #dbdbdb;
}
.btn-grey-style-2 {
    color: rgba(122, 122, 122, 0.8);
    background-color: #fafafa;
    -webkit-box-shadow: inset 0 0 0 1px #e8e8e8;
    box-shadow: inset 0 0 0 1px #e8e8e8;
    -webkit-transition:
        background-color 0.2s ease-in-out,
        color 0.2s ease-in-out,
        -webkit-box-shadow 0.2s ease-in-out;
    transition:
        background-color 0.2s ease-in-out,
        color 0.2s ease-in-out,
        -webkit-box-shadow 0.2s ease-in-out;
    -o-transition:
        background-color 0.2s ease-in-out,
        box-shadow 0.2s ease-in-out,
        color 0.2s ease-in-out;
    transition:
        background-color 0.2s ease-in-out,
        box-shadow 0.2s ease-in-out,
        color 0.2s ease-in-out;
    transition:
        background-color 0.2s ease-in-out,
        box-shadow 0.2s ease-in-out,
        color 0.2s ease-in-out,
        -webkit-box-shadow 0.2s ease-in-out;
}
.btn-grey-style-2:hover,
.btn-grey-style-2.hover {
    color: #616161;
    background-color: #f2f2f2;
    -webkit-box-shadow: inset 0 0 0 1px #d4d4d4;
    box-shadow: inset 0 0 0 1px #d4d4d4;
}
.btn-dark {
    color: #fff;
    background-color: #3a3a3a;
}
.btn-dark:hover,
.btn-dark.hover,
.btn-dark:focus {
    color: #fff;
    background-color: #141414;
}
.btn-transparent {
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(255, 255, 255, 0);
    -webkit-box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.16);
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.16);
}
.btn-transparent:hover,
.btn-transparent.hover,
.btn-transparent:focus,
.btn-transparent.focus {
    color: #1b1b1b;
    background-color: white;
    -webkit-box-shadow: inset 0 0 0 2px #fff;
    box-shadow: inset 0 0 0 2px #fff;
}
.btn-transparent-style-2 {
    color: #fff;
    background-color: rgba(255, 255, 255, 0);
    -webkit-box-shadow: inset 0 0 0 2px #fff;
    box-shadow: inset 0 0 0 2px #fff;
}
.btn-transparent-style-2:hover,
.btn-transparent-style-2.hover,
.btn-transparent-style-2:focus,
.btn-transparent-style-2.focus {
    color: #1b1b1b;
    background-color: white;
    -webkit-box-shadow: inset 0 0 0 2px #fff;
    box-shadow: inset 0 0 0 2px #fff;
}
.btn-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    font-weight: 500;
    color: #1b1b1b;
    background: none;
}
.btn-link .icon {
    position: relative;
    top: 5px;
    height: 10px;
    margin-top: -10px;
    margin-bottom: -10px;
    font-size: 1.5rem;
}
.btn-link:hover,
.btn-link:focus {
    color: #2b72e6;
    background: none;
}
.btn-block {
    display: block;
    width: 100%;
}
.btn-xs {
    padding: 11px 20px;
    font-size: 0.7rem;
}
.btn-sm {
    padding: 12px 25px;
    font-size: 0.8rem;
}
.edd-submit,
.btn-md {
    padding: 15px 20px;
    letter-spacing: 0.03em;
}
.edd-submit {
    border: 1px solid transparent;
}
.portfolio-item-overlay .edd-submit {
    margin-left: 10px;
}
.btn-lg {
    padding: 21px 38px;
}
.btn-lg.btn-icon {
    padding: 18px 18px;
}
.btn-xl {
    padding: 21px 34px;
    font-size: 0.875rem;
    font-weight: 500;
}
.btn-popup {
    padding: 22px 34px;
    font-size: 0.75rem;
    font-weight: 500;
}
.btn-load {
    position: relative;
}
.btn-load::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 50%;
    width: 6px;
    height: 6px;
    margin-top: -15px;
    margin-right: 2px;
    border-radius: 100%;
    -webkit-box-shadow:
        0 6px 0 0 #1b1b1b,
        10px 6px 0 0 #1b1b1b,
        10px 16px 0 0 #1b1b1b,
        0 16px 0 0 #1b1b1b;
    box-shadow:
        0 6px 0 0 #1b1b1b,
        10px 6px 0 0 #1b1b1b,
        10px 16px 0 0 #1b1b1b,
        0 16px 0 0 #1b1b1b;
    opacity: 0;
    will-change: opacity;
    -webkit-transition: opacity 0.4s ease-in-out;
    -o-transition: opacity 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out;
    -webkit-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    transition-delay: 0.1s;
}
.btn-load.btn-loaded {
    color: #525252;
    cursor: default;
    background: none;
}
.btn-load.btn-loaded::before {
    display: none;
}
.btn-load.btn-loading {
    color: rgba(255, 255, 255, 0);
    cursor: default;
    background: none;
}
.btn-load.btn-loading.btn-loaded {
    color: #525252;
}
.btn-load.btn-loading::before {
    opacity: 1;
    -webkit-animation: btn 1.5s infinite;
    animation: btn 1.5s infinite;
}
@-webkit-keyframes btn {
    0% {
        -webkit-box-shadow:
            0 6px 0 0 #1b1b1b,
            10px 6px 0 0 #1b1b1b,
            10px 16px 0 0 #1b1b1b,
            0 16px 0 0 #1b1b1b;
        box-shadow:
            0 6px 0 0 #1b1b1b,
            10px 6px 0 0 #1b1b1b,
            10px 16px 0 0 #1b1b1b,
            0 16px 0 0 #1b1b1b;
    }
    3% {
        -webkit-box-shadow:
            0 6px 0 0 #1b1b1b,
            10px 6px 0 0 #1b1b1b,
            10px 16px 0 0 #1b1b1b,
            0 16px 0 0 #1b1b1b;
        box-shadow:
            0 6px 0 0 #1b1b1b,
            10px 6px 0 0 #1b1b1b,
            10px 16px 0 0 #1b1b1b,
            0 16px 0 0 #1b1b1b;
    }
    33% {
        -webkit-box-shadow:
            10px 6px 0 0 #1b1b1b,
            10px 16px 0 0 #1b1b1b,
            0 16px 0 0 #1b1b1b,
            0 6px 0 0 #1b1b1b;
        box-shadow:
            10px 6px 0 0 #1b1b1b,
            10px 16px 0 0 #1b1b1b,
            0 16px 0 0 #1b1b1b,
            0 6px 0 0 #1b1b1b;
    }
    36% {
        -webkit-box-shadow:
            10px 6px 0 0 #1b1b1b,
            10px 16px 0 0 #1b1b1b,
            0 16px 0 0 #1b1b1b,
            0 6px 0 0 #1b1b1b;
        box-shadow:
            10px 6px 0 0 #1b1b1b,
            10px 16px 0 0 #1b1b1b,
            0 16px 0 0 #1b1b1b,
            0 6px 0 0 #1b1b1b;
    }
    66% {
        -webkit-box-shadow:
            10px 16px 0 0 #1b1b1b,
            0 16px 0 0 #1b1b1b,
            0 6px 0 0 #1b1b1b,
            10px 6px 0 0 #1b1b1b;
        box-shadow:
            10px 16px 0 0 #1b1b1b,
            0 16px 0 0 #1b1b1b,
            0 6px 0 0 #1b1b1b,
            10px 6px 0 0 #1b1b1b;
    }
    69% {
        -webkit-box-shadow:
            10px 16px 0 0 #1b1b1b,
            0 16px 0 0 #1b1b1b,
            0 6px 0 0 #1b1b1b,
            10px 6px 0 0 #1b1b1b;
        box-shadow:
            10px 16px 0 0 #1b1b1b,
            0 16px 0 0 #1b1b1b,
            0 6px 0 0 #1b1b1b,
            10px 6px 0 0 #1b1b1b;
    }
    100% {
        -webkit-box-shadow:
            0 16px 0 0 #1b1b1b,
            0 6px 0 0 #1b1b1b,
            10px 6px 0 0 #1b1b1b,
            10px 16px 0 0 #1b1b1b;
        box-shadow:
            0 16px 0 0 #1b1b1b,
            0 6px 0 0 #1b1b1b,
            10px 6px 0 0 #1b1b1b,
            10px 16px 0 0 #1b1b1b;
    }
}
@keyframes btn {
    0% {
        -webkit-box-shadow:
            0 6px 0 0 #1b1b1b,
            10px 6px 0 0 #1b1b1b,
            10px 16px 0 0 #1b1b1b,
            0 16px 0 0 #1b1b1b;
        box-shadow:
            0 6px 0 0 #1b1b1b,
            10px 6px 0 0 #1b1b1b,
            10px 16px 0 0 #1b1b1b,
            0 16px 0 0 #1b1b1b;
    }
    3% {
        -webkit-box-shadow:
            0 6px 0 0 #1b1b1b,
            10px 6px 0 0 #1b1b1b,
            10px 16px 0 0 #1b1b1b,
            0 16px 0 0 #1b1b1b;
        box-shadow:
            0 6px 0 0 #1b1b1b,
            10px 6px 0 0 #1b1b1b,
            10px 16px 0 0 #1b1b1b,
            0 16px 0 0 #1b1b1b;
    }
    33% {
        -webkit-box-shadow:
            10px 6px 0 0 #1b1b1b,
            10px 16px 0 0 #1b1b1b,
            0 16px 0 0 #1b1b1b,
            0 6px 0 0 #1b1b1b;
        box-shadow:
            10px 6px 0 0 #1b1b1b,
            10px 16px 0 0 #1b1b1b,
            0 16px 0 0 #1b1b1b,
            0 6px 0 0 #1b1b1b;
    }
    36% {
        -webkit-box-shadow:
            10px 6px 0 0 #1b1b1b,
            10px 16px 0 0 #1b1b1b,
            0 16px 0 0 #1b1b1b,
            0 6px 0 0 #1b1b1b;
        box-shadow:
            10px 6px 0 0 #1b1b1b,
            10px 16px 0 0 #1b1b1b,
            0 16px 0 0 #1b1b1b,
            0 6px 0 0 #1b1b1b;
    }
    66% {
        -webkit-box-shadow:
            10px 16px 0 0 #1b1b1b,
            0 16px 0 0 #1b1b1b,
            0 6px 0 0 #1b1b1b,
            10px 6px 0 0 #1b1b1b;
        box-shadow:
            10px 16px 0 0 #1b1b1b,
            0 16px 0 0 #1b1b1b,
            0 6px 0 0 #1b1b1b,
            10px 6px 0 0 #1b1b1b;
    }
    69% {
        -webkit-box-shadow:
            10px 16px 0 0 #1b1b1b,
            0 16px 0 0 #1b1b1b,
            0 6px 0 0 #1b1b1b,
            10px 6px 0 0 #1b1b1b;
        box-shadow:
            10px 16px 0 0 #1b1b1b,
            0 16px 0 0 #1b1b1b,
            0 6px 0 0 #1b1b1b,
            10px 6px 0 0 #1b1b1b;
    }
    100% {
        -webkit-box-shadow:
            0 16px 0 0 #1b1b1b,
            0 6px 0 0 #1b1b1b,
            10px 6px 0 0 #1b1b1b,
            10px 16px 0 0 #1b1b1b;
        box-shadow:
            0 16px 0 0 #1b1b1b,
            0 6px 0 0 #1b1b1b,
            10px 6px 0 0 #1b1b1b,
            10px 16px 0 0 #1b1b1b;
    }
}
.breadcrumbs {
    display: block;
    padding: 0;
    margin: 0;
    font-size: 0.9375rem;
}
.breadcrumbs > li {
    display: inline-block;
    color: #bcbcbc;
}
.breadcrumbs > li::after {
    content: " / ";
    margin-right: 3px;
    margin-left: 3px;
}
.breadcrumbs > li:last-child::after {
    content: "";
}
.breadcrumbs > li > a {
    color: #bcbcbc;
    -webkit-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
}
.breadcrumbs > li > a:hover {
    color: #fff;
    text-decoration: none;
}
.breadcrumbs-dark > li {
    color: #1b1b1b;
}
.breadcrumbs-dark > li > a {
    color: #1b1b1b;
}
.breadcrumbs-dark > li > a:hover {
    color: #2b72e6;
}
.tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    padding: 8px 35px;
    margin-right: -5px;
    margin-left: -5px;
    -webkit-box-shadow:
        0 6px 0 -5px rgba(0, 0, 0, 0.06),
        0 -6px 0 -5px rgba(0, 0, 0, 0.06);
    box-shadow:
        0 6px 0 -5px rgba(0, 0, 0, 0.06),
        0 -6px 0 -5px rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 1200px) {
    .tab {
        padding: 8px 40px;
    }
}
@media screen and (max-width: 767px) {
    .tab {
        padding: 8px 20px;
    }
}
.tab > li {
    position: relative;
    display: inline-block;
    padding: 0 5px;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: normal;
}
.tab > li a,
.tab > li button {
    position: relative;
    display: block;
    width: 100%;
    padding: 10px 15px;
    color: rgba(27, 27, 27, 0.7);
    text-align: left;
    text-decoration: none;
    -webkit-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
}
@media screen and (max-width: 1200px) {
    .tab > li a,
    .tab > li button {
        padding: 10px 8px;
    }
}
.tab > li a > .icon,
.tab > li button > .icon {
    margin-left: 4px;
    opacity: 0.9;
}
.tab > li a::after,
.tab > li button::after {
    content: "";
    position: absolute;
    right: 5px;
    bottom: -10px;
    left: 5px;
    height: 2px;
    background-color: #2b72e6;
    opacity: 0;
    will-change: opacity;
    -webkit-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}
@media screen and (max-width: 767px) {
    .tab > li a::after,
    .tab > li button::after {
        bottom: 0;
    }
}
.tab > li a.active,
.tab > li a:hover,
.tab > li button.active,
.tab > li button:hover {
    color: #1b1b1b;
    text-decoration: none;
}
.tab > li a.active::after,
.tab > li button.active::after {
    opacity: 1;
}
.tab > li button {
    font-weight: inherit;
    cursor: pointer;
    background: none;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.tab-payment {
    padding: 0;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.tab-payment > li {
    padding: 0;
}
.tab-payment > li > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
    padding: 16px;
    border-radius: 3px;
    -webkit-box-shadow: inset 0 0 0 1px rgba(229, 229, 229, 0.8);
    box-shadow: inset 0 0 0 1px rgba(229, 229, 229, 0.8);
    -webkit-transition: -webkit-box-shadow 0.2s ease-in-out;
    transition: -webkit-box-shadow 0.2s ease-in-out;
    -o-transition: box-shadow 0.2s ease-in-out;
    transition: box-shadow 0.2s ease-in-out;
    transition:
        box-shadow 0.2s ease-in-out,
        -webkit-box-shadow 0.2s ease-in-out;
}
.tab-payment > li > a.active {
    -webkit-box-shadow: inset 0 0 0 2px #2b72e6;
    box-shadow: inset 0 0 0 2px #2b72e6;
}
.tab-payment > li > a.active img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    opacity: 1;
}
.tab-payment > li > a.active .tab-payment-method-text {
    opacity: 1;
}
.tab-payment > li > a img {
    max-width: 100%;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    opacity: 0.7;
    will-change: opacity;
    -webkit-transition:
        opacity 0.2s ease-in-out,
        -webkit-filter 0.2s ease-in-out;
    transition:
        opacity 0.2s ease-in-out,
        -webkit-filter 0.2s ease-in-out;
    -o-transition:
        opacity 0.2s ease-in-out,
        filter 0.2s ease-in-out;
    transition:
        opacity 0.2s ease-in-out,
        filter 0.2s ease-in-out;
    transition:
        opacity 0.2s ease-in-out,
        filter 0.2s ease-in-out,
        -webkit-filter 0.2s ease-in-out;
}
.tab-payment > li > a img + .tab-payment-method-text {
    margin-left: 20px;
}
.tab-payment > li > a .tab-payment-method-text {
    font-size: 12px;
    color: #1b1b1b;
    text-transform: uppercase;
    opacity: 0.7;
    will-change: opacity;
    -webkit-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}
.tab-payment > li > a::after {
    display: none;
}
.tab-pane {
    position: absolute;
}
.tab-pane.active {
    position: static;
}
.accordion .accordion-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 0;
    margin: 0;
    font-size: 1.6rem;
    font-weight: inherit;
    cursor: pointer;
    background: none;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.accordion .accordion-btn > .icon {
    -webkit-transition: -webkit-transform 0.2s ease-in-out;
    transition: -webkit-transform 0.2s ease-in-out;
    -o-transition: transform 0.2s ease-in-out;
    transition: transform 0.2s ease-in-out;
    transition:
        transform 0.2s ease-in-out,
        -webkit-transform 0.2s ease-in-out;
    -webkit-transform: scaleY(1) rotate(90deg);
    -ms-transform: scaleY(1) rotate(90deg);
    transform: scaleY(1) rotate(90deg);
}
.accordion .accordion-btn.collapsed > .icon {
    -webkit-transform: scaleY(-1);
    -ms-transform: scaleY(-1);
    transform: scaleY(-1);
}
.accordion .collapse .list-documentation {
    padding-top: 15px;
    padding-bottom: 0;
}
.features-wrap {
    padding: 80px 0 40px;
}
.features-wrap:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.feature {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}
.feature > * {
    display: table-cell;
    vertical-align: top;
}
.feature .feature-title {
    font-weight: 600;
    color: #1b1b1b;
}
.feature .feature-title a {
    color: inherit;
    text-decoration: none;
}
.feature .feature-icon {
    font-size: 3rem;
    color: #1b1b1b;
}
.feature .feature-cont {
    width: 100%;
}
.feature-1 {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    z-index: 1;
}
.feature-1 + .feature-1 {
    margin-top: 40px;
}
.feature-1 .feature-decorated {
    position: absolute;
    top: 15px;
    right: 100%;
    min-width: 5px;
    min-height: 5px;
    background-color: #121212;
    border-radius: 100%;
}
.feature-1 .feature-decorated + .feature-icon {
    margin-left: 20px;
}
.feature-1 .feature-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 50px;
    margin-top: -3px;
    color: #1b1b1b;
}
.feature-1 .feature-icon + .feature-cont {
    margin-left: 28px;
}
.feature-1 .feature-cont {
    display: block;
    padding: 0;
}
.feature-1 .feature-cont .feature-title {
    margin-top: -8px;
    font-size: 1.9rem;
    color: #1b1b1b;
    text-transform: uppercase;
}
.feature-1 .feature-cont .feature-text {
    margin-top: -5px;
}
.feature-2 {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 0 40px;
}
.feature-2 .feature-cont {
    padding: 0 30px;
}
.feature-2 .feature-cont + .decorated {
    margin-top: 45px;
}
.feature-2 .feature-cont .feature-icon {
    margin-bottom: 8px;
    font-size: 42px;
    color: #fff;
}
.feature-2 .feature-cont .feature-icon > .icon {
    position: relative;
    top: -12px;
}
.feature-2 .feature-cont .feature-title {
    margin-bottom: 8px;
    font-size: 1.125rem;
    color: #fff;
}
.feature-2 .feature-cont .feature-text {
    color: #bcbcbc;
}
.feature-3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 30px 25px;
    text-align: center;
}
.feature-3.feature-color-1 .feature-icon {
    color: #19c485;
}
.feature-3.feature-color-2 .feature-icon {
    color: #967bdc;
}
.feature-3.feature-color-3 .feature-icon {
    color: #009ddc;
}
.feature-3.feature-color-4 .feature-icon {
    color: #e66b3f;
}
.feature-3 .feature-icon {
    font-size: 3.75rem;
}
.feature-3 .feature-title {
    display: block;
    margin-top: -3px;
    margin-bottom: 9px;
    font-size: 1.125rem;
}
.feature-3 .feature-title a {
    color: #1b1b1b;
    -webkit-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
}
.feature-3 .feature-title a:hover,
.feature-3 .feature-title a:focus {
    color: #2b72e6;
}
.feature-3 .feature-link {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 19px;
}
.row-equal-height {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.col-equal {
    display: flex;
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 30px;
}
.feature-3 {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.feature-3 .feature-link {
    margin-top: auto;
    padding-top: 10px;
}
.feature-3 {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}
.feature-3:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}
.box,
.box-1,
.box-2,
.box-3,
.box-4,
.box-5,
.box-fullscreen,
.box-decorated {
    position: relative;
    display: block;
    z-index: 1;
}
.box-1 {
    padding: 60px 0;
}
.header.box-1 {
    padding: 40px 0;
}
.box-1 h1 {
    margin: 0;
}
.box-1.padding-top {
    padding: 80px 0 0;
}
.box-1.padding-bot {
    padding: 0 0 80px;
}
.box-2 {
    padding: 110px 0 110px;
}
.box-2.padding-top {
    padding: 110px 0 0;
}
.box-2.padding-bot {
    padding: 0 0 110px;
}
.box-3 {
    padding: 125px 0;
}
.box-3.padding-top {
    padding: 125px 0 0;
}
.box-3.padding-bot {
    padding: 0 0 125px;
}
.box-4 {
    padding: 190px 0;
}
.box-4.padding-top {
    padding: 235px 0 0;
}
.box-4.padding-bot {
    padding: 0 0 235px;
}
.box-5 {
    padding: 80px 0;
}
.box-5.padding-top {
    padding: 80px 0 0;
}
.box-5.padding-bot {
    padding: 0 0 80px;
}
.box-fullscreen {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100vh;
    padding: 200px 0;
}
.box-decorated {
    height: auto;
    background-color: #fff;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.05);
}
.portfolio-item-image .wp-post-image,
.box-decorated img {
    transform: scale(0.85) !important;
}
.box-content {
    padding: 30px;
}
@media screen and (max-width: 767px) {
    .box-content {
        padding: 30px 20px;
    }
}
.table {
    width: 100%;
}
.table tbody tr {
    padding: 30px;
}
.table tbody tr + tr {
    border-top: 1px solid #ececec;
}
.table tbody tr th {
    padding-right: 28px;
}
.table tbody tr td {
    padding-right: 30px;
}
.table tbody tr td:last-child {
    padding-right: 0;
}
.table a:not(.btn) {
    color: #2b72e6;
    text-decoration: none;
}
.table a:not(.btn):hover,
.table a:not(.btn).hover {
    color: #1b1b1b;
    text-decoration: none;
}
.table-checkout tbody tr {
    display: block;
}
.table-checkout tbody tr + tr {
    padding-top: 0;
    border-top: 0;
}
.table-checkout tbody tr .table-checkout-img > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 60px;
    min-width: 60px;
    height: 52px;
    overflow: hidden;
    border-radius: 3px;
}
.table-checkout tbody tr .table-checkout-img > a img {
    max-width: 100%;
}
.table-checkout tbody tr .table-checkout-title {
    min-width: 220px;
    font-weight: 600;
    color: #1b1b1b;
    letter-spacing: normal;
}
.table-checkout tbody tr .table-checkout-title a:not(.btn) {
    display: block;
    color: #1b1b1b;
}
.table-checkout tbody tr .table-checkout-title a:not(.btn):hover,
.table-checkout tbody tr .table-checkout-title a:not(.btn).hover,
.table-checkout tbody tr .table-checkout-title a:not(.btn):focus {
    color: #2b72e6;
    text-decoration: none;
}
.table-checkout tbody tr .table-checkout-price {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1b1b1b;
}
.table-checkout tbody tr .table-checkout-delete > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 14px;
    font-size: 2.3rem;
    color: #1b1b1b;
    -webkit-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
}
.table-checkout tbody tr .table-checkout-delete > a:hover,
.table-checkout tbody tr .table-checkout-delete > a.hover {
    color: #2b72e6;
    text-decoration: none;
}
.table-checkout tbody tr .table-checkout-delete > a:focus {
    text-decoration: none;
}
.table-default thead {
    background-color: #2b72e6;
}
.table-default thead tr {
    font-size: 0.75rem;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
}
.table-default thead tr th {
    padding: 20px;
    font-weight: inherit;
}
.table-default thead tr th:first-child {
    padding-left: 50px;
}
.table-default thead tr th:last-child {
    padding-right: 50px;
}
@media screen and (max-width: 767px) {
    .table-default thead tr th:first-child {
        padding-left: 30px;
    }
    .table-default thead tr th:last-child {
        padding-right: 30px;
    }
}
.table-default tbody tr {
    font-size: 0.9375rem;
    font-weight: 400;
    color: #525252;
    vertical-align: top;
    background-color: #fff;
    -webkit-transition: background-color 0.1s ease-in-out;
    -o-transition: background-color 0.1s ease-in-out;
    transition: background-color 0.1s ease-in-out;
}
.table-default tbody tr:hover,
.table-default tbody tr.hover {
    background-color: #fcfcfc;
}
.table-default tbody tr a:not(.btn) {
    color: #2b72e6;
}
.table-default tbody tr th {
    min-width: 300px;
    padding: 29px;
    padding-left: 50px;
    font-weight: inherit;
}
.table-default tbody tr td {
    padding: 29px 20px;
}
.table-default tbody tr td:last-child {
    padding-right: 50px;
}
@media screen and (max-width: 767px) {
    .table-default tbody tr th {
        padding: 24px 20px;
        padding-left: 30px;
    }
    .table-default tbody tr td {
        padding: 24px 20px;
    }
    .table-default tbody tr td:last-child {
        padding-right: 30px;
    }
}
.table-default tbody .table-lastPost {
    min-width: 220px;
}
@media screen and (max-width: 767px) {
    .table-default tbody .table-lastPost {
        min-width: 200px;
    }
}
.table-default tbody .table-topics {
    min-width: 350px;
}
.table-default tbody .table-licenseKey {
    width: 230px;
    min-width: 210px;
}
.table-default tbody .table-website {
    width: 230px;
    min-width: 180px;
}
.table-default .table-default-title {
    display: block;
    margin-bottom: 7px;
    font-weight: 600;
}
.table-default .table-default-info {
    font-size: 0.875rem;
}
.table-default .table-default-info a:not(.btn) {
    color: #993d41;
}
.table-default .table-default-product a:not(.btn) {
    color: #121212;
}
.table-default .table-default-product a:not(.btn):hover,
.table-default .table-default-product a:not(.btn).hover {
    color: #2b72e6;
    text-decoration: none;
}
.table-default .table-default-website {
    color: #bababa;
}
.pagination {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    margin: 0 -5px;
}
.pagination .pagination-space {
    margin: 0 10px;
    font-weight: 600;
}
@media screen and (max-width: 575px) {
    .pagination .pagination-space {
        display: none;
    }
}
@media screen and (max-width: 440px) {
    .pagination .pagination-icon a {
        min-width: auto;
        padding: 0;
        background: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}
.pagination .pagination-icon .icon {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 10px;
    font-size: 1.5rem;
}
@media screen and (max-width: 440px) {
    .pagination .pagination-icon .icon {
        top: 1px;
    }
}
.pagination > li {
    display: inline-block;
    padding: 0 5px;
}
.pagination > li.active a {
    color: #fff;
    background-color: #2b72e6;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.pagination > li.active a:hover,
.pagination > li.active a.hover,
.pagination > li.active a:focus,
.pagination > li.active a.focus {
    color: #fff;
    background-color: #175ac7;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.pagination > li a {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 10px;
    font-size: 0.875rem;
    color: #3a3a3a;
    background-color: #fff;
    border-radius: 3px;
    -webkit-box-shadow: inset 0 0 0 1px rgba(229, 229, 229, 0.8);
    box-shadow: inset 0 0 0 1px rgba(229, 229, 229, 0.8);
    -webkit-transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        -webkit-box-shadow 0.15s ease-in-out;
    transition:
        color 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        -webkit-box-shadow 0.15s ease-in-out;
    -o-transition:
        color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out,
        background-color 0.15s ease-in-out;
    transition:
        color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out,
        background-color 0.15s ease-in-out;
    transition:
        color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out,
        background-color 0.15s ease-in-out,
        -webkit-box-shadow 0.15s ease-in-out;
}
@media screen and (max-width: 440px) {
    .pagination > li a {
        min-width: 30px;
        height: 30px;
        font-size: 0.75rem;
    }
}
.pagination > li a:hover,
.pagination > li a.hover,
.pagination > li a:focus,
.pagination > li a.focus {
    color: #141414;
    text-decoration: none;
    -webkit-box-shadow: inset 0 0 0 1px #d4d4d4;
    box-shadow: inset 0 0 0 1px #d4d4d4;
}
.blockquote {
    margin-bottom: 1.5rem;
    font-style: italic;
    font-weight: 600;
    color: #1b1b1b;
}
.blockquote .blockquote-title {
    display: block;
    margin-bottom: 7px;
    font-weight: 600;
    color: #1b1b1b;
}
.blockquote.blockquote-style-2 {
    padding: 20px 0 20px 20px;
    font-style: normal;
    font-weight: 400;
    color: #525252;
    border-left: 3px solid #dbdbdb;
}
.gallery .gallery-item {
    position: relative;
    display: block;
    height: 100%;
    overflow: hidden;
}
.gallery .gallery-item:focus {
    outline: none;
}
.gallery .gallery-item .gallery-item-overlay {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    font-size: 5rem;
    line-height: 0;
    color: #fff;
    background-color: rgba(27, 27, 27, 0.7);
    opacity: 0;
    will-change: opacity;
    -webkit-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
    z-index: 1;
}
.gallery .gallery-item .gallery-item-overlay > .icon {
    opacity: 0;
    will-change: opacity;
    -webkit-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
    -webkit-transition-delay: 0.1s;
    -o-transition-delay: 0.1s;
    transition-delay: 0.1s;
}
.gallery .gallery-item .gallery-item-overlay.gallery-item-overlay-md {
    font-size: 3rem;
}
@media screen and (max-width: 440px) {
    .gallery .gallery-item .gallery-item-overlay.gallery-item-overlay-md {
        font-size: 2rem;
    }
}
.gallery .gallery-item .gallery-item-overlay.gallery-item-overlay-sm {
    font-size: 2rem;
}
.gallery .gallery-item > img {
    width: 100%;
    height: 100%;
    font-family: "object-fit:cover";
    -o-object-fit: cover;
    object-fit: cover;
    will-change: transform;
    -webkit-transition: -webkit-transform 0.4s ease-in-out;
    transition: -webkit-transform 0.4s ease-in-out;
    -o-transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
    transition:
        transform 0.4s ease-in-out,
        -webkit-transform 0.4s ease-in-out;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.gallery .gallery-item:hover > img {
    -webkit-transform: scale(1.02);
    -ms-transform: scale(1.02);
    transform: scale(1.02);
}
.gallery .gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}
.gallery .gallery-item:hover .gallery-item-overlay > .icon {
    opacity: 1;
}
.dropdown > a::before,
.dropdown > button::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-top: 21px;
    margin-left: -10px;
    visibility: hidden;
    border: 10px solid transparent;
    border-bottom: 8px solid #fff;
    z-index: 100;
}
.dropdown.show > a::before,
.dropdown.show > button::before {
    visibility: visible;
    z-index: 102;
}
.dropdown .dropdown-menu {
    display: block;
    padding: 15px 0;
    margin: 37px 0 0;
    visibility: hidden;
    border: 0;
    -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.05);
    z-index: 100;
}
.dropdown .dropdown-menu.show {
    visibility: visible;
    z-index: 101;
}
.dropdown .dropdown-menu li > a:not(.btn) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 13px 30px 13px 15px;
    font-size: 0.875rem;
    font-weight: 400;
    color: #7a7a7a;
    text-transform: none;
    white-space: nowrap;
    -webkit-transition:
        color 0.2s ease-in-out,
        background-color 0.2s ease-in-out;
    -o-transition:
        color 0.2s ease-in-out,
        background-color 0.2s ease-in-out;
    transition:
        color 0.2s ease-in-out,
        background-color 0.2s ease-in-out;
}
.dropdown .dropdown-menu li > a:not(.btn):hover,
.dropdown .dropdown-menu li > a:not(.btn).hover,
.dropdown .dropdown-menu li > a:not(.btn):focus {
    color: #1b1b1b;
    background-color: rgba(0, 0, 0, 0.025);
}
.dropdown-checkout {
    padding: 0;
    font-weight: 600;
}
.dropdown-checkout .table-checkout tr {
    padding-top: 27px;
    padding-bottom: 27px;
}
.dropdown-checkout .table-checkout tr + tr {
    padding-top: 0;
    border: 0;
}
.dropdown-checkout .table-checkout-title {
    min-width: 190px;
}
.dropdown-checkout .table-checkout-title a {
    font-size: 0.875rem;
}
.dropdown-checkout .table-checkout-price {
    font-size: 0.875rem;
}
.dropdown-checkout .table-checkout-delete a {
    font-size: 1.6rem;
    color: #bababa;
}
.dropdown-checkout.navbar-dropdown {
    display: block;
    padding: 0;
}
.dropdown-checkout.dropdown > a::before,
.dropdown-checkout.dropdown > button::before {
    margin-top: 27px;
}
.dropdown-checkout.dropdown .dropdown-menu {
    padding: 0;
    margin: 44px 0 0;
}
.dropdown-signin.dropdown > a::before,
.dropdown-signin.dropdown > button::before {
    margin-top: 10px;
    margin-left: -62px;
}
.dropdown-signin.dropdown .dropdown-menu {
    padding: 10px 0;
    margin-top: 27px;
}
.dropdown-signin.dropdown .dropdown-menu a:not(.btn) {
    padding: 10px 15px;
}
.dropdown-signin.dropdown .dropdown-menu.navbar-dropdown-dark > li + li {
    border-color: #2d2d2d;
}
::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder {
    color: inherit;
    opacity: 0.8;
    will-change: opacity;
    -webkit-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}
::-moz-placeholder,
.form-control::-moz-placeholder {
    color: inherit;
    opacity: 0.8;
    will-change: opacity;
    -moz-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}
:-ms-input-placeholder,
.form-control:-ms-input-placeholder {
    color: inherit;
    opacity: 0.8;
    will-change: opacity;
    -ms-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}
::-ms-input-placeholder,
.form-control::-ms-input-placeholder {
    color: inherit;
    opacity: 0.8;
    will-change: opacity;
    -ms-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}
::placeholder,
.form-control::placeholder {
    color: inherit;
    opacity: 0.8;
    will-change: opacity;
    -webkit-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}
button:focus {
    outline: 0;
}
.form {
    margin: 0;
}
.form .form-group + .form-group {
    margin-top: 30px;
}
.form .form-group-md + .form-group-md {
    margin-top: 20px;
}
.form .form-control {
    height: 54px;
    padding: 12px 26px;
    color: #525252;
    text-align: left;
    text-transform: none;
    background-color: #fff;
    border: 0;
    border-radius: 3px;
    opacity: 1;
}
.form .form-control:hover::-webkit-input-placeholder,
.form .form-control.hover::-webkit-input-placeholder {
    opacity: 1;
}
.form .form-control:hover::-moz-placeholder,
.form .form-control.hover::-moz-placeholder {
    opacity: 1;
}
.form .form-control:hover:-ms-input-placeholder,
.form .form-control.hover:-ms-input-placeholder {
    opacity: 1;
}
.form .form-control:hover::-ms-input-placeholder,
.form .form-control.hover::-ms-input-placeholder {
    opacity: 1;
}
.form .form-control:hover::placeholder,
.form .form-control.hover::placeholder {
    opacity: 1;
}
.form .form-control:focus,
.form .form-control.focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.form .form-control:focus::-webkit-input-placeholder,
.form .form-control.focus::-webkit-input-placeholder {
    opacity: 1;
}
.form .form-control:focus::-moz-placeholder,
.form .form-control.focus::-moz-placeholder {
    opacity: 1;
}
.form .form-control:focus:-ms-input-placeholder,
.form .form-control.focus:-ms-input-placeholder {
    opacity: 1;
}
.form .form-control:focus::-ms-input-placeholder,
.form .form-control.focus::-ms-input-placeholder {
    opacity: 1;
}
.form .form-control:focus::placeholder,
.form .form-control.focus::placeholder {
    opacity: 1;
}
.form .form-control-style-2 {
    padding: 12px 19px;
    color: rgba(122, 122, 122, 0.8);
    background-color: #fafafa;
    -webkit-box-shadow: inset 0 0 0 1px #e8e8e8;
    box-shadow: inset 0 0 0 1px #e8e8e8;
    -webkit-transition:
        background-color 0.2s ease-in-out,
        color 0.2s ease-in-out,
        -webkit-box-shadow 0.2s ease-in-out;
    transition:
        background-color 0.2s ease-in-out,
        color 0.2s ease-in-out,
        -webkit-box-shadow 0.2s ease-in-out;
    -o-transition:
        background-color 0.2s ease-in-out,
        box-shadow 0.2s ease-in-out,
        color 0.2s ease-in-out;
    transition:
        background-color 0.2s ease-in-out,
        box-shadow 0.2s ease-in-out,
        color 0.2s ease-in-out;
    transition:
        background-color 0.2s ease-in-out,
        box-shadow 0.2s ease-in-out,
        color 0.2s ease-in-out,
        -webkit-box-shadow 0.2s ease-in-out;
}
.form .form-control-style-2:hover,
.form .form-control-style-2.hover,
.form .form-control-style-2:focus,
.form .form-control-style-2.focus {
    color: #616161;
    background-color: #f2f2f2;
    -webkit-box-shadow: inset 0 0 0 1px #d4d4d4;
    box-shadow: inset 0 0 0 1px #d4d4d4;
}
.form .form-control-style-3 {
    padding: 12px 19px;
    color: rgba(122, 122, 122, 0.8);
    background-color: #fff;
    -webkit-box-shadow: inset 0 0 0 1px #e8e8e8;
    box-shadow: inset 0 0 0 1px #e8e8e8;
    -webkit-transition:
        color 0.2s ease-in-out,
        -webkit-box-shadow 0.2s ease-in-out;
    transition:
        color 0.2s ease-in-out,
        -webkit-box-shadow 0.2s ease-in-out;
    -o-transition:
        box-shadow 0.2s ease-in-out,
        color 0.2s ease-in-out;
    transition:
        box-shadow 0.2s ease-in-out,
        color 0.2s ease-in-out;
    transition:
        box-shadow 0.2s ease-in-out,
        color 0.2s ease-in-out,
        -webkit-box-shadow 0.2s ease-in-out;
}
.form .form-control-style-3:hover,
.form .form-control-style-3.hover {
    color: #616161;
    background-color: #fff;
    -webkit-box-shadow: inset 0 0 0 1px #d4d4d4;
    box-shadow: inset 0 0 0 1px #d4d4d4;
}
.form .form-control-style-3:focus,
.form .form-control-style-3.focus {
    color: #616161;
    -webkit-box-shadow: inset 0 0 0 1px #949494;
    box-shadow: inset 0 0 0 1px #949494;
}
.form .form-control-style-4 {
    height: 56px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #bababa;
    text-align: center;
    text-transform: uppercase;
    background-color: #232323;
    -webkit-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
}
.form .form-control-style-4:hover,
.form .form-control-style-4.hover,
.form .form-control-style-4:focus,
.form .form-control-style-4.focus {
    color: #fff;
}
.form textarea,
.form textarea.form-control {
    height: 170px;
    min-height: 54px;
    max-height: 250px;
}
.form label {
    display: block;
    font-weight: 400;
    color: #1b1b1b;
}
.form select.form-control:not([size]):not([multiple]) {
    height: 54px;
}
.form select.form-control {
    color: #525252;
    background-color: #fff;
}
.form select.form-control option {
    color: #525252;
}
.form select.form-control-style-2 {
    color: rgba(122, 122, 122, 0.8);
    background-color: rgba(247, 247, 247, 0.8);
}
.form select.form-control-style-2 option {
    color: #7a7a7a;
    background-color: #fff;
}
.form select.form-control-style-3 {
    color: rgba(122, 122, 122, 0.8);
}
.form select.form-control-style-3 option {
    color: #7a7a7a;
    background-color: #fff;
}
@-moz-document url-prefix("") {
    .form select.form-control option {
        color: inherit;
    }
}
.form select.form-control[multiple] option {
    color: inherit;
}
.form .custom-select {
    padding-right: 60px;
    background: #fff url("../images/icon-drop.svg") no-repeat right 1rem center;
}
.form.form-group-inputs,
.form .form-group-inputs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.form.form-group-inputs > *,
.form .form-group-inputs > * {
    margin-right: -1px;
    border-radius: 0;
}
.form.form-group-inputs > *:first-child,
.form .form-group-inputs > *:first-child {
    border-radius: 3px 0 0 3px;
}
.form.form-group-inputs > *:last-child,
.form .form-group-inputs > *:last-child {
    margin-right: 0;
    border-radius: 0 3px 3px 0;
}
.form.form-quantity,
.form .form-quantity {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.form.form-quantity .form-quantity-input,
.form .form-quantity .form-quantity-input {
    display: inline-block;
    width: 25px;
    min-width: 25px;
    height: 26px;
    padding: 0;
    font-size: 0.9375rem;
    color: #1b1b1b;
    text-align: center;
    background-color: #fff;
}
.form.form-quantity .form-quantity-input[type="number"],
.form .form-quantity .form-quantity-input[type="number"] {
    -moz-appearance: textfield;
}
.form.form-quantity .form-quantity-input::-webkit-outer-spin-button,
.form.form-quantity .form-quantity-input::-webkit-inner-spin-button,
.form .form-quantity .form-quantity-input::-webkit-outer-spin-button,
.form .form-quantity .form-quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
.form.form-quantity .form-quantity-input:hover,
.form.form-quantity .form-quantity-input.hover,
.form.form-quantity .form-quantity-input:focus,
.form .form-quantity .form-quantity-input:hover,
.form .form-quantity .form-quantity-input.hover,
.form .form-quantity .form-quantity-input:focus {
    background-color: #fff;
}
.form.form-quantity .form-quantity-minus,
.form.form-quantity .form-quantity-plus,
.form .form-quantity .form-quantity-minus,
.form .form-quantity .form-quantity-plus {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 25px;
    min-width: 25px;
    height: 26px;
    color: #bababa;
    -webkit-box-shadow: inset 0 0 0 1px rgba(229, 229, 229, 0.8);
    box-shadow: inset 0 0 0 1px rgba(229, 229, 229, 0.8);
    -webkit-transition:
        color 0.2s ease-in-out,
        -webkit-box-shadow 0.2s ease-in-out;
    transition:
        color 0.2s ease-in-out,
        -webkit-box-shadow 0.2s ease-in-out;
    -o-transition:
        box-shadow 0.2s ease-in-out,
        color 0.2s ease-in-out;
    transition:
        box-shadow 0.2s ease-in-out,
        color 0.2s ease-in-out;
    transition:
        box-shadow 0.2s ease-in-out,
        color 0.2s ease-in-out,
        -webkit-box-shadow 0.2s ease-in-out;
    z-index: 1;
}
.form.form-quantity .form-quantity-minus:hover,
.form.form-quantity .form-quantity-minus.hover,
.form.form-quantity .form-quantity-minus:focus,
.form.form-quantity .form-quantity-plus:hover,
.form.form-quantity .form-quantity-plus.hover,
.form.form-quantity .form-quantity-plus:focus,
.form .form-quantity .form-quantity-minus:hover,
.form .form-quantity .form-quantity-minus.hover,
.form .form-quantity .form-quantity-minus:focus,
.form .form-quantity .form-quantity-plus:hover,
.form .form-quantity .form-quantity-plus.hover,
.form .form-quantity .form-quantity-plus:focus {
    color: #1b1b1b;
    text-decoration: none;
    -webkit-box-shadow: inset 0 0 0 1px #d4d4d4;
    box-shadow: inset 0 0 0 1px #d4d4d4;
}
.form.form-quantity .form-quantity-minus,
.form .form-quantity .form-quantity-minus {
    margin-right: -1px;
}
.alert {
    padding: 14px 19px;
    margin-bottom: 0;
    border-radius: 3px;
}
.alert + .alert {
    margin-top: 30px;
}
.alert.alert-primary {
    color: #6681ac;
    background-color: #eaeef4;
    border-color: #e0e6ee;
}
.alert.alert-secondary {
    color: #919191;
    background-color: #f7f7f7;
    border-color: #efefef;
}
.alert.alert-success {
    color: #68ab71;
    background-color: #ebf4ec;
    border-color: #e1eee3;
}
.alert.alert-danger {
    color: #b66c6c;
    background-color: #faf4f4;
    border-color: #f5eaea;
}
.alert.alert-warning {
    color: #c1ac58;
    background-color: #f8f6ed;
    border-color: #f4f0e2;
}
.alert.alert-info {
    color: #60aebb;
    background-color: #eff7f8;
    border-color: #e4f1f4;
}
.alert.alert-light {
    color: #9f9f9f;
    background-color: white;
    border-color: #fdfdfd;
}
.alert.alert-dark {
    color: #6c6c6c;
    background-color: #d2d2d2;
    border-color: #cacaca;
}
.changelog + .changelog {
    margin-top: 48px;
}
.changelog ul {
    padding: 0;
    margin: 0;
}
.changelog ul > li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0;
    margin: 0;
    letter-spacing: normal;
    list-style: none;
}
.changelog ul > li + li {
    margin-top: 12px;
}
.changelog ul > li .changelog-badge {
    position: relative;
    display: inline-block;
    top: 0;
    width: 41px;
    min-width: 41px;
    margin-right: 24px;
    font-size: 0.735rem;
    font-weight: 700;
    line-height: 12px;
    color: #1b1b1b;
    text-transform: uppercase;
    -webkit-box-shadow: 4px 0 0 -1px #1b1b1b;
    box-shadow: 4px 0 0 -1px #1b1b1b;
}
.changelog ul > li.changelog-fix .changelog-badge {
    -webkit-box-shadow:
        5px -1px 0 -1px #19c485,
        5px 0 0 -1px #19c485;
    box-shadow:
        5px -1px 0 -1px #19c485,
        5px 0 0 -1px #19c485;
}
.changelog ul > li.changelog-del .changelog-badge {
    -webkit-box-shadow:
        5px -1px 0 -1px #d74242,
        5px 0 0 -1px #d74242;
    box-shadow:
        5px -1px 0 -1px #d74242,
        5px 0 0 -1px #d74242;
}
.changelog ul > li.changelog-add .changelog-badge {
    -webkit-box-shadow:
        5px -1px 0 -1px #009ddc,
        5px 0 0 -1px #009ddc;
    box-shadow:
        5px -1px 0 -1px #009ddc,
        5px 0 0 -1px #009ddc;
}
.changelog ul > li.changelog-imp .changelog-badge {
    -webkit-box-shadow:
        5px -1px 0 -1px #967bdc,
        5px 0 0 -1px #967bdc;
    box-shadow:
        5px -1px 0 -1px #967bdc,
        5px 0 0 -1px #967bdc;
}
.changelog ul > li.changelog-up .changelog-badge {
    -webkit-box-shadow:
        5px -1px 0 -1px #e66b3f,
        5px 0 0 -1px #e66b3f;
    box-shadow:
        5px -1px 0 -1px #e66b3f,
        5px 0 0 -1px #e66b3f;
}
.slider .swiper-slide {
    position: relative;
}
.slider .swiper-slide .swiper-slide {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 1;
}
.slider .swiper-slide .swiper-slide .slide-logo {
    margin-bottom: 42px;
}
.slider .swiper-slide .swiper-slide .slide-title > * {
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 0.025em;
}
.slider .swiper-slide .swiper-slide .slide-text p:last-of-type,
.slider .swiper-slide .swiper-slide .slide-text p:last-child {
    margin-bottom: 0;
}
.slider .swiper-slide .swiper-slide .slide-btn {
    margin-top: 47px;
}
.slider .swiper-slide .swiper-slide img {
    max-width: 100%;
}
.slider .swiper-pagination {
    bottom: 65px;
}
.slider .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 10px;
    background: none;
    background-color: #cecece;
    opacity: 1;
    -webkit-transition: background-color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
@media screen and (max-width: 575px) {
    .slider .swiper-pagination .swiper-pagination-bullet {
        margin: 0 5px;
    }
}
.slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #2b72e6;
    opacity: 1;
}
.slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active-next,
.slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active-next-next,
.slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active-prev,
.slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active-prev-prev {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}
.slider .swiper-button-prev,
.slider .swiper-button-next {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 2rem;
    color: #bababa;
    background: none;
    border: 1px solid #cecece;
    border-radius: 3px;
    -webkit-transition:
        color 0.2s ease-in-out,
        border-color 0.2s ease-in-out,
        background-color 0.2s ease-in-out;
    -o-transition:
        color 0.2s ease-in-out,
        border-color 0.2s ease-in-out,
        background-color 0.2s ease-in-out;
    transition:
        color 0.2s ease-in-out,
        border-color 0.2s ease-in-out,
        background-color 0.2s ease-in-out;
    z-index: 2;
}
.slider .swiper-button-prev::after,
.slider .swiper-button-next::after {
    content: none;
}
.slider .swiper-button-prev > *,
.slider .swiper-button-next > * {
    font-size: inherit;
    color: inherit;
}
.slider .swiper-button-prev:hover,
.slider .swiper-button-next:hover {
    color: #fff;
    background-color: #1b1b1b;
    border-color: #1b1b1b;
}
.slider .swiper-button-prev:focus,
.slider .swiper-button-next:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.slider-arrows .swiper-button-prev,
.slider-arrows .swiper-button-next {
    visibility: hidden;
}
.slider-arrows-clone {
    font-size: 0;
}
.slider-arrows-clone.slider-arrows-reviews {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    top: 50%;
    right: 0;
    left: 0;
}
@media screen and (max-width: 1200px) {
    .slider-arrows-clone.slider-arrows-reviews {
        right: -55px;
        left: -55px;
    }
}
@media screen and (max-width: 620px) {
    .slider-arrows-clone.slider-arrows-reviews {
        display: none;
    }
}
.slider-arrows-clone.slider-arrows-reviews .swiper-button-prev,
.slider-arrows-clone.slider-arrows-reviews .swiper-button-next {
    width: 40px;
    height: 40px;
    margin-top: -47px;
}
.slider-arrows-clone .swiper-button-prev,
.slider-arrows-clone .swiper-button-next {
    position: static;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin: 0;
    font-size: 1.875rem;
    color: #bababa;
    background: none;
    border: 1px solid #cecece;
    border-radius: 3px;
    -webkit-transition:
        color 0.2s ease-in-out,
        border-color 0.2s ease-in-out,
        background-color 0.2s ease-in-out;
    -o-transition:
        color 0.2s ease-in-out,
        border-color 0.2s ease-in-out,
        background-color 0.2s ease-in-out;
    transition:
        color 0.2s ease-in-out,
        border-color 0.2s ease-in-out,
        background-color 0.2s ease-in-out;
    z-index: 2;
}
.slider-arrows-clone .swiper-button-prev::after,
.slider-arrows-clone .swiper-button-next::after {
    content: none;
}
.slider-arrows-clone .swiper-button-prev > *,
.slider-arrows-clone .swiper-button-next > * {
    font-size: inherit;
    color: inherit;
}
.slider-arrows-clone .swiper-button-prev:hover,
.slider-arrows-clone .swiper-button-next:hover {
    color: #fff;
    background-color: #1b1b1b;
    border-color: #1b1b1b;
}
.slider-arrows-clone .swiper-button-prev:focus,
.slider-arrows-clone .swiper-button-next:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.slider-arrows-clone .swiper-button-prev + .swiper-button-next {
    margin-left: 20px;
}
.slider-reviews .swiper-pagination {
    bottom: 0;
}
.slider-reviews .swiper-slide {
    height: auto;
    padding: 20px 15px 77px;
}
.slider-reviews .swiper-slide {
    height: 100%;
}
.slider-reviews .swiper-button-next {
    right: 0;
}
.slider-reviews .swiper-button-prev {
    left: 0;
}
.slider-gallery .swiper-slide {
    height: auto;
    padding-bottom: 15px;
}
.slider-gallery .swiper-scrollbar {
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.07);
}
.slider-gallery .swiper-scrollbar .swiper-scrollbar-drag {
    background: rgba(0, 0, 0, 0.2);
}
.form .select-ticket {
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.form .select-ticket select {
    display: none;
    visibility: hidden;
}
.form .select-ticket img {
    width: 30px;
    margin-right: 11px;
    font-family: "object-fit:cover";
    -o-object-fit: cover;
    object-fit: cover;
}
.form .select-ticket.show .btn.dropdown-toggle {
    color: #616161;
    background-color: #f2f2f2;
}
.form .select-ticket .btn.dropdown-toggle {
    height: 54px;
    padding: 12px 19px;
    color: rgba(122, 122, 122, 0.8);
    background-color: rgba(247, 247, 247, 0.8);
    border: 0;
    border-radius: 3px;
    -webkit-box-shadow: inset 0 0 0 1px rgba(229, 229, 229, 0.8);
    box-shadow: inset 0 0 0 1px rgba(229, 229, 229, 0.8);
    opacity: 1;
    -webkit-transition:
        background-color 0.2s ease-in-out,
        color 0.2s ease-in-out,
        -webkit-box-shadow 0.2s ease-in-out;
    transition:
        background-color 0.2s ease-in-out,
        color 0.2s ease-in-out,
        -webkit-box-shadow 0.2s ease-in-out;
    -o-transition:
        background-color 0.2s ease-in-out,
        box-shadow 0.2s ease-in-out,
        color 0.2s ease-in-out;
    transition:
        background-color 0.2s ease-in-out,
        box-shadow 0.2s ease-in-out,
        color 0.2s ease-in-out;
    transition:
        background-color 0.2s ease-in-out,
        box-shadow 0.2s ease-in-out,
        color 0.2s ease-in-out,
        -webkit-box-shadow 0.2s ease-in-out;
}
.form .select-ticket .btn.dropdown-toggle:hover,
.form .select-ticket .btn.dropdown-toggle.hover,
.form .select-ticket .btn.dropdown-toggle:focus {
    color: #616161;
    background-color: #f2f2f2;
    -webkit-box-shadow: inset 0 0 0 1px #d4d4d4;
    box-shadow: inset 0 0 0 1px #d4d4d4;
}
.form .select-ticket .btn.dropdown-toggle:focus {
    border: 0;
    outline: 0;
}
.form .select-ticket .dropdown-menu {
    padding: 0;
    border-color: rgba(229, 229, 229, 0.8);
    z-index: 2;
}
.form .select-ticket .dropdown-menu .inner::-webkit-scrollbar-track {
    background-color: #fff;
}
.form .select-ticket .dropdown-menu .inner::-webkit-scrollbar {
    width: 6px;
    background-color: #fff;
}
.form .select-ticket .dropdown-menu .inner::-webkit-scrollbar-thumb {
    background-color: rgba(186, 186, 186, 0.6);
    border-radius: 3px;
}
.form .select-ticket .dropdown-menu .inner::-webkit-scrollbar-thumb:hover {
    background-color: #bababa;
}
.form .select-ticket .dropdown-menu .dropdown-item {
    position: relative;
    padding: 10px 19px;
    color: rgba(122, 122, 122, 0.8);
    -webkit-transition:
        background-color 0.15s ease-in-out,
        color 0.15s ease-in-out;
    -o-transition:
        background-color 0.15s ease-in-out,
        color 0.15s ease-in-out;
    transition:
        background-color 0.15s ease-in-out,
        color 0.15s ease-in-out;
    z-index: 2;
}
.form .select-ticket .dropdown-menu .dropdown-item.active,
.form .select-ticket .dropdown-menu .dropdown-item:focus,
.form .select-ticket .dropdown-menu .dropdown-item:hover {
    color: #616161;
    background-color: #f2f2f2;
    outline: none;
}
.form .select-ticket .dropdown-menu .dropdown-menu > li + li {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.editor-quill .editor {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    padding: 12px 0 12px 18px;
}
.editor-quill .editor .ql-editor {
    width: 100%;
    height: auto;
}
.editor-quill .ql-toolbar {
    min-height: 54px;
    padding: 12px 10px;
    background-color: rgba(247, 247, 247, 0.8);
    border-color: rgba(229, 229, 229, 0.8);
    border-radius: 3px 3px 0 0;
}
.editor-quill .ql-container {
    background-color: rgba(247, 247, 247, 0.8);
    border-color: rgba(229, 229, 229, 0.8);
    border-radius: 0 0 3px 3px;
}
.editor-quill .ql-container .ql-editor {
    padding: 0 18px 0 0;
    font-size: 1rem;
    color: rgba(122, 122, 122, 0.8);
    -webkit-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
}
.editor-quill .ql-container .ql-editor::-webkit-scrollbar-track {
    background-color: rgba(247, 247, 247, 0.8);
}
.editor-quill .ql-container .ql-editor::-webkit-scrollbar {
    width: 6px;
    background-color: rgba(247, 247, 247, 0.8);
}
.editor-quill .ql-container .ql-editor::-webkit-scrollbar-thumb {
    background-color: rgba(186, 186, 186, 0.6);
    border-radius: 3px;
}
.editor-quill .ql-container .ql-editor::-webkit-scrollbar-thumb:hover {
    background-color: #bababa;
}
.editor-quill .ql-container .ql-editor:focus,
.editor-quill .ql-container .ql-editor.focus {
    color: #616161;
}
.dropzone {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
    text-align: center;
    cursor: pointer;
    visibility: hidden;
}
.dropzone.dz-started,
.dropzone.active {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 35px 15px 20px;
    visibility: visible;
    background-color: rgba(247, 247, 247, 0.8);
    border: 1px dashed #2b72e6;
    border-radius: 3px;
    z-index: 1001;
}
.dropzone.dz-started.dz-drag-hover,
.dropzone.active.dz-drag-hover {
    border: 1px solid #2b72e6;
}
.dropzone.dz-started.dz-drag-hover::after,
.dropzone.active.dz-drag-hover::after {
    background-color: rgba(255, 255, 255, 0.2);
}
.dropzone.dz-started .dz-message:first-child,
.dropzone.active .dz-message:first-child {
    display: none;
}
.dropzone.dz-started .dz-message:last-child,
.dropzone.active .dz-message:last-child {
    display: block;
    margin: 8px 50px 26px;
}
.dropzone.dz-started::after,
.dropzone.active::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0);
    -webkit-transition: background-color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out;
    z-index: 1;
}
.dropzone + .dropzone-attachment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-size: 0;
}
.dropzone + .dropzone-attachment .icon {
    font-size: 1.4rem;
}
.dropzone + .dropzone-attachment label {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    color: #7a7a7a;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
}
.dropzone + .dropzone-attachment label:hover,
.dropzone + .dropzone-attachment label.hover {
    color: #1b1b1b;
}
.dropzone .dz-message {
    display: block;
    padding: 0;
    margin: 0;
}
.dropzone .dz-message .dropzone-icon {
    display: block;
    margin-bottom: 17px;
    font-size: 0;
    color: #2b72e6;
}
.dropzone .dz-message .dropzone-icon .icon {
    font-size: 3rem;
}
.dropzone .dz-message .dropzone-title {
    margin-bottom: 15px;
    -webkit-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
}
.dropzone .dz-message .dropzone-text {
    color: #7a7a7a;
}
.dropzone .dz-preview,
.dropzone .dz-preview.dz-image-preview,
.dropzone .dz-preview.dz-file-preview {
    position: relative;
    display: inline-block;
    max-width: 95px;
    margin: 10px;
    text-align: center;
    cursor: default;
    border-radius: 3px;
    -webkit-transition: -webkit-box-shadow 0.2s ease-in-out;
    transition: -webkit-box-shadow 0.2s ease-in-out;
    -o-transition: box-shadow 0.2s ease-in-out;
    transition: box-shadow 0.2s ease-in-out;
    transition:
        box-shadow 0.2s ease-in-out,
        -webkit-box-shadow 0.2s ease-in-out;
    z-index: 2;
}
.dropzone .dz-preview.dz-success .dz-success-mark,
.dropzone .dz-preview.dz-image-preview.dz-success .dz-success-mark,
.dropzone .dz-preview.dz-file-preview.dz-success .dz-success-mark {
    -webkit-animation: viewMark 0.8s ease-in-out;
    animation: viewMark 0.8s ease-in-out;
}
.dropzone .dz-preview.dz-error .dz-error-mark,
.dropzone .dz-preview.dz-image-preview.dz-error .dz-error-mark,
.dropzone .dz-preview.dz-file-preview.dz-error .dz-error-mark {
    -webkit-animation: viewMark 0.8s ease-in-out;
    animation: viewMark 0.8s ease-in-out;
}
.dropzone .dz-preview.dz-error .dz-error-message,
.dropzone .dz-preview.dz-image-preview.dz-error .dz-error-message,
.dropzone .dz-preview.dz-file-preview.dz-error .dz-error-message {
    visibility: visible;
}
@-webkit-keyframes viewMark {
    0% {
        visibility: visible;
        opacity: 0;
    }
    80% {
        visibility: visible;
        opacity: 1;
    }
    100% {
        visibility: visible;
        opacity: 0;
    }
}
@keyframes viewMark {
    0% {
        visibility: visible;
        opacity: 0;
    }
    80% {
        visibility: visible;
        opacity: 1;
    }
    100% {
        visibility: visible;
        opacity: 0;
    }
}
.dropzone .dz-preview .dz-success-mark,
.dropzone .dz-preview .dz-error-mark,
.dropzone .dz-preview.dz-image-preview .dz-success-mark,
.dropzone .dz-preview.dz-image-preview .dz-error-mark,
.dropzone .dz-preview.dz-file-preview .dz-success-mark,
.dropzone .dz-preview.dz-file-preview .dz-error-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 54px;
    height: 54px;
    margin-top: -27px;
    margin-left: -27px;
    visibility: hidden;
    opacity: 0;
}
.dropzone .dz-preview .dz-error-message,
.dropzone .dz-preview.dz-image-preview .dz-error-message,
.dropzone .dz-preview.dz-file-preview .dz-error-message {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    top: 0;
    right: 0;
    left: 0;
    height: 95px;
    padding: 0 10px;
    font-size: 12px;
    color: #b66c6c;
    visibility: hidden;
    background-color: rgba(255, 255, 255, 0.9);
}
.dropzone .dz-preview .dz-image,
.dropzone .dz-preview.dz-image-preview .dz-image,
.dropzone .dz-preview.dz-file-preview .dz-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 95px;
    height: 95px;
    background: #fff;
    border-radius: 3px;
}
.dropzone .dz-preview .dz-image img,
.dropzone .dz-preview.dz-image-preview .dz-image img,
.dropzone .dz-preview.dz-file-preview .dz-image img {
    max-width: 100%;
    max-height: 100px;
    font-family: "object-fit:cover";
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 3px;
}
.dropzone .dz-preview .dz-details,
.dropzone .dz-preview.dz-image-preview .dz-details,
.dropzone .dz-preview.dz-file-preview .dz-details {
    position: static;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 10px 0;
    line-height: normal;
    opacity: 1;
}
.dropzone .dz-preview .dz-details .dz-filename,
.dropzone .dz-preview.dz-image-preview .dz-details .dz-filename,
.dropzone .dz-preview.dz-file-preview .dz-details .dz-filename {
    display: block;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    max-width: 80px;
    margin: 0 auto;
    font-size: 0.875rem;
    color: #7a7a7a;
    -webkit-transition: color 0.15s ease-in-out;
    -o-transition: color 0.15s ease-in-out;
    transition: color 0.15s ease-in-out;
}
.dropzone .dz-preview .dz-details .dz-filename span,
.dropzone .dz-preview.dz-image-preview .dz-details .dz-filename span,
.dropzone .dz-preview.dz-file-preview .dz-details .dz-filename span {
    display: inline;
    font: inherit;
    font-size: 100%;
    white-space: nowrap;
}
.dropzone .dz-preview .dz-details .dz-filename:not(:hover),
.dropzone .dz-preview.dz-image-preview .dz-details .dz-filename:not(:hover),
.dropzone .dz-preview.dz-file-preview .dz-details .dz-filename:not(:hover) {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}
.dropzone .dz-preview .dz-details .dz-filename:hover,
.dropzone .dz-preview.dz-image-preview .dz-details .dz-filename:hover,
.dropzone .dz-preview.dz-file-preview .dz-details .dz-filename:hover {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.dropzone .dz-preview .dz-details .dz-filename:hover span,
.dropzone .dz-preview.dz-image-preview .dz-details .dz-filename:hover span,
.dropzone .dz-preview.dz-file-preview .dz-details .dz-filename:hover span {
    padding: 0 4px;
    background-color: #fff;
}
.dropzone .dz-preview .dz-details .dz-size,
.dropzone .dz-preview.dz-image-preview .dz-details .dz-size,
.dropzone .dz-preview.dz-file-preview .dz-details .dz-size {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-top: 2px;
    margin-bottom: 0;
    font-size: 0.875rem;
    color: #bababa;
}
.dropzone .dz-preview .dz-details .dz-size strong,
.dropzone .dz-preview.dz-image-preview .dz-details .dz-size strong,
.dropzone .dz-preview.dz-file-preview .dz-details .dz-size strong {
    font-weight: 400;
}
.dropzone .dz-preview .dz-remove,
.dropzone .dz-preview.dz-image-preview .dz-remove,
.dropzone .dz-preview.dz-file-preview .dz-remove {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    font-size: 0;
    background-color: #bababa;
    border-radius: 3px;
    will-change: opacity;
    -webkit-transition:
        background-color 0.15s ease-in-out,
        opacity 0.15s ease-in-out;
    -o-transition:
        background-color 0.15s ease-in-out,
        opacity 0.15s ease-in-out;
    transition:
        background-color 0.15s ease-in-out,
        opacity 0.15s ease-in-out;
}
@media screen and (min-width: 768px) {
    .dropzone .dz-preview .dz-remove,
    .dropzone .dz-preview.dz-image-preview .dz-remove,
    .dropzone .dz-preview.dz-file-preview .dz-remove {
        opacity: 0;
    }
}
.dropzone .dz-preview .dz-remove::before,
.dropzone .dz-preview .dz-remove::after,
.dropzone .dz-preview.dz-image-preview .dz-remove::before,
.dropzone .dz-preview.dz-image-preview .dz-remove::after,
.dropzone .dz-preview.dz-file-preview .dz-remove::before,
.dropzone .dz-preview.dz-file-preview .dz-remove::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 5px;
    width: 10px;
    height: 1px;
    background-color: #fff;
}
.dropzone .dz-preview .dz-remove::before,
.dropzone .dz-preview.dz-image-preview .dz-remove::before,
.dropzone .dz-preview.dz-file-preview .dz-remove::before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.dropzone .dz-preview .dz-remove::after,
.dropzone .dz-preview.dz-image-preview .dz-remove::after,
.dropzone .dz-preview.dz-file-preview .dz-remove::after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.dropzone .dz-preview .dz-remove:hover,
.dropzone .dz-preview.dz-image-preview .dz-remove:hover,
.dropzone .dz-preview.dz-file-preview .dz-remove:hover {
    background-color: #2b72e6;
}
.dropzone .dz-preview:hover .dz-remove,
.dropzone .dz-preview.dz-image-preview:hover .dz-remove,
.dropzone .dz-preview.dz-file-preview:hover .dz-remove {
    opacity: 1;
}
.dropzone .dz-preview:hover .dz-details .dz-filename,
.dropzone .dz-preview.dz-image-preview:hover .dz-details .dz-filename,
.dropzone .dz-preview.dz-file-preview:hover .dz-details .dz-filename {
    color: #1b1b1b;
}
.dropzone .dz-preview:hover img,
.dropzone .dz-preview.dz-image-preview:hover img,
.dropzone .dz-preview.dz-file-preview:hover img {
    -webkit-filter: none;
    filter: none;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
}
.dropzone:hover .dz-message .dropzone-title {
    color: #2b72e6;
}
.feature-wrap {
    padding-right: 0 !important;
    position: relative;
    right: -40px !important;
}
@media screen and (max-width: 992px) {
    .feature-wrap {
        position: inherit;
        display: none !important;
        visibility: hidden;
    }
}
.last-feature {
    position: relative;
    top: -20px;
}
