/*--------------------------------------------------------------
# Sass variables color
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Mixins
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Base styles
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Global Settings
--------------------------------------------------------------*/

*::-webkit-scrollbar {
    width: 5px;
}

*::-webkit-scrollbar-track {
    background: #222222;
}

*::-webkit-scrollbar-thumb {
    background: #979797;
    border-radius: 0;
}

*::-webkit-scrollbar-thumb:hover {
    background: #838383;
}

.container {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    min-width: 320px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
}

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.clr {
    clear: both;
}

img {
    max-width: 100%;
}

a {
    border-bottom: 2px solid #94cf14;
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

a:hover {
    border-color: transparent;
    color: inherit;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    height: 100%;
    font-size: 62.5%;
}

body {
    position: relative;
    height: 100%;
    background: #0d1114 url(../img/el.png);
    color: #bcbcbc;
    font-weight: 400;
    font-size: calc(17px + 1 * ((100vw - 320px) / 1440));
    font-family: "Nunito", sans-serif;
    line-height: 28px;
    background-size: 700px;
    background-position: 130% 420%;
    background-repeat: no-repeat;
}

body.over_hide {
    overflow: hidden;
}

body.nothome:before,
body.nothome:after {
    display: none;
}

p {
    margin-bottom: 30px;
}

.m-10 {
    margin: 0 10px;
}

.mr-10 {
    margin: 0 10px 0 0 !important;
}

.title {
    margin: 40px 0 20px 0;
    color: #fff;
    font-size: 30px;
}


/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 20px;
    padding: 0;
    color: #fff;
    font-weight: 700;
    line-height: 120%;
}

h1 {
    font-size: calc(26px + 6 * ((100vw - 320px) / 1440));
}

h2 {
    font-size: calc(24px + 4 * ((100vw - 320px) / 1440));
}

h3 {
    font-size: calc(22px + 4 * ((100vw - 320px) / 1440));
}

h4 {
    font-size: calc(20px + 4 * ((100vw - 320px) / 1440));
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

ul {
    margin-bottom: 30px;
    padding-left: 20px;
    list-style: none;
}

ul li {
    position: relative;
    padding-left: 28px;
}

ul li:before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 14px;
    height: 3px;
    border-radius: 1px;
    background: #94cf14;
    -webkit-box-shadow: 0 1px 3px rgba(148, 207, 20, 0.5);
    box-shadow: 0 1px 3px rgba(148, 207, 20, 0.5);
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    -webkit-transform: perspective(1px) translate(0, 0) translateZ(0) skewX(-13deg);
    transform: perspective(1px) translate(0, 0) translateZ(0) skewX(-13deg);
}

ul li:hover:before {
    -webkit-transform: translate(3px, 0);
    transform: translate(3px, 0);
}

ol {
    margin-bottom: 30px;
    padding-left: 36px;
}

ol li {
    padding-left: 10px;
}

mark {
    padding: 0 7px;
    border-radius: 6px;
    background: #22282d;
    color: #bcbcbc;
}

.text-center {
    text-align: center;
}

delete,
.t-line {
    text-decoration: line-through;
}

.t-under {
    text-decoration: underline;
}

.code-block {
    padding: 15px;
    background: #20252a;
    color: #4a5661;
    line-height: 34px;
}

.code-block span {
    color: #94cf14;
}

.bg-grey-d {
    background: #171b1e;
}

.box,
.box-first,
.box-large,
.box-nested,
.box-row {
    position: relative;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 30px;
    border-radius: 2px;
    background: #22282d;
    text-align: left;
}

.box p,
.box-first p,
.box-large p,
.box-nested p,
.box-row p {
    margin: 0;
}

.box,
.box-first,
.box-large,
.box-nested,
.box-row {
    padding: 15px;
}

.box-nested {
    background: #101316;
}

.box-first {
    background: #171b1e;
}

.box-large {
    height: 100px;
}

.p-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.p-20 {
    padding-top: 20px;
    padding-bottom: 20px;
}

.p-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

#map {
    height: 400px;
    margin: 0;
    padding: 0;
}

.img-rond {
    border-radius: 6px;
}


/*--------------------------------------------------------------
# Form Elements Style
--------------------------------------------------------------*/

.input-bg {
    position: relative;
    z-index: 2;
    display: inline-block;
    align-items: center;
    overflow: hidden;
    width: 100%;
    height: 48px;
    margin: 0;
    padding: 0;
    border: 1px solid #30383f;
    border-radius: 6px;
    background: #0d1114;
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    outline: none;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    -webkit-transform: perspective(1px) translateZ(0) skewX(-13deg);
    transform: perspective(1px) translateZ(0) skewX(-13deg);
    -webkit-box-align: center;
    -ms-flex-align: center;
}

.input-bg:hover {
    border: 1px solid #3a5108;
}

.input-bg.focus {
    border: 1px solid #94cf14;
}

.input-bg.length {
    border: 1px solid #94cf14;
}

.input-bg.error {
    border: 1px solid #970f0f;
}

.input-bg input[type="date"],
.input-bg input[type="datetime"],
.input-bg input[type="datetime-local"],
.input-bg input[type="email"],
.input-bg input[type="month"],
.input-bg input[type="number"],
.input-bg input[type="password"],
.input-bg input[type="range"],
.input-bg input[type="search"],
.input-bg input[type="tel"],
.input-bg input[type="text"],
.input-bg input[type="time"],
.input-bg input[type="url"],
.input-bg input[type="week"],
.input-bg select {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 48px;
    margin: 0;
    padding: 0 15px;
    border: 0 !important;
    border-radius: 6px;
    background: #0d1114;
    color: #fff;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 48px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-transform: perspective(1px) translateZ(0) skewX(13deg);
    transform: perspective(1px) translateZ(0) skewX(13deg);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="range"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
select {
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 48px;
    margin: 0;
    padding: 0 15px;
    border: 1px solid #30383f;
    border-radius: 6px;
    background: #0d1114;
    color: #fff;
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    outline: none;
    font-weight: 400;
    font-size: 16px;
    line-height: 48px;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

input[type="date"]:hover,
input[type="datetime"]:hover,
input[type="datetime-local"]:hover,
input[type="email"]:hover,
input[type="month"]:hover,
input[type="number"]:hover,
input[type="password"]:hover,
input[type="range"]:hover,
input[type="search"]:hover,
input[type="tel"]:hover,
input[type="text"]:hover,
input[type="time"]:hover,
input[type="url"]:hover,
input[type="week"]:hover,
select:hover {
    border: 1px solid #3a5108;
}

input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="email"]:focus,
input[type="month"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="range"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="text"]:focus,
input[type="time"]:focus,
input[type="url"]:focus,
input[type="week"]:focus,
select:focus {
    border: 1px solid #94cf14;
}

input[type="date"].length,
input[type="datetime"].length,
input[type="datetime-local"].length,
input[type="email"].length,
input[type="month"].length,
input[type="number"].length,
input[type="password"].length,
input[type="range"].length,
input[type="search"].length,
input[type="tel"].length,
input[type="text"].length,
input[type="time"].length,
input[type="url"].length,
input[type="week"].length,
select.length {
    border: 1px solid #94cf14;
}

input[type="date"].error,
input[type="datetime"].error,
input[type="datetime-local"].error,
input[type="email"].error,
input[type="month"].error,
input[type="number"].error,
input[type="password"].error,
input[type="range"].error,
input[type="search"].error,
input[type="tel"].error,
input[type="text"].error,
input[type="time"].error,
input[type="url"].error,
input[type="week"].error,
select.error {
    border: 1px solid #970f0f;
}

input[type=submit] {
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.text-shadow {
    text-shadow: 0 2px 6px rgba(255, 255, 255, 0.5);
}

blockquote {
    margin-bottom: 20px;
    padding: 10px 20px;
    border-left: 2px solid #94cf14;
    color: #777777;
    font-style: italic;
    font-size: calc(16px + 4 * ((100vw - 320px) / 1440));
    line-height: 160%;
}

blockquote .blockquote__footer {
    position: relative;
    color: #fff;
    font-size: calc(15px + 1 * ((100vw - 320px) / 1440));
}

blockquote .blockquote__footer:before {
    content: "\2014 \00A0";
}

.btn-submit {
    padding: 0 !important;
}

.btn-submit.w100 {
    width: 100%;
    height: 48px;
}

.btn input[type="submit"] {
    width: 100%;
    height: 100%;
    padding: 0 20px;
    border: 0;
    background: transparent;
    color: #fff;
    outline: none;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    -webkit-transform: perspective(1px) translateZ(0) skewX(0deg);
    transform: perspective(1px) translateZ(0) skewX(0deg);
}

.btn.btn-perspective input[type="submit"] {
    width: 100%;
    height: 100%;
    padding: 0 20px;
    border: 0;
    background: transparent;
    color: #fff;
    outline: none;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    -webkit-transform: perspective(1px) translateZ(0) skewX(13deg);
    transform: perspective(1px) translateZ(0) skewX(13deg);
}

.btn-active.btn-perspective input[type="submit"] {
    width: 100%;
    height: 100%;
    padding: 0 20px;
    border: 0;
    background: transparent;
    color: #fff;
    outline: none;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    -webkit-transform: perspective(1px) translateZ(0) skewX(13deg);
    transform: perspective(1px) translateZ(0) skewX(13deg);
}

.btn-active input[type="submit"] {
    width: 100%;
    height: 100%;
    padding: 0 20px;
    border: 0;
    background: transparent;
    color: #fff;
    outline: none;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    -webkit-transform: perspective(1px) translateZ(0) skewX(0deg);
    transform: perspective(1px) translateZ(0) skewX(0deg);
}

select {
    font-size: 16px !important;
}

textarea {
    width: 100%;
    min-height: 150px;
    margin: 0 !important;
    padding: 10px;
    border: 1px solid #30383f;
    border-radius: 6px;
    background: #0d1114;
    color: #fff;
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    outline: none;
    font-size: 16px !important;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

textarea:hover {
    border: 1px solid #3a5108;
}

textarea:focus {
    border: 1px solid #94cf14;
}

textarea.length {
    border: 1px solid #94cf14;
}

textarea.error {
    border: 1px solid #970f0f;
}


/*--------------------------------------------------------------
# Custom Checkbox Style
--------------------------------------------------------------*/

.checkbox {
    position: absolute;
    z-index: -1;
    margin: 10px 0 0 20px;
    opacity: 0;
}

.checkbox+label {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    height: 20px;
    margin: 10px 0;
    padding: 0 0 0 30px;
    line-height: 20px;
    cursor: pointer;
    -webkit-box-align: center;
    -ms-flex-align: center;
}

label a {
    margin-left: 4px;
    border: 0;
    color: #94cf14;
    text-decoration: underline;
    text-shadow: 0 2px 6px rgba(148, 207, 20, 0.5);
}

label a:hover {
    text-decoration: none;
}

.checkbox+label:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 2px solid #3a5108;
    border-radius: 4px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

.checkbox.error+label:before {
    border-color: #970f0f;
}

.checkbox:hover+label:before {
    border-color: #94cf14;
}

.checkbox:checked+label:before {
    border-color: #94cf14;
    -webkit-box-shadow: 0 0px 6px rgba(148, 207, 20, 0.5);
    box-shadow: 0 0px 6px rgba(148, 207, 20, 0.5);
}

.checkbox:checked+label {
    color: #fff;
    text-shadow: 0 2px 6px rgba(255, 255, 255, 0.5);
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.checkbox+label:after {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: 8px;
    height: 8px;
    background: #94cf14;
    opacity: 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.checkbox:checked+label:after {
    -webkit-box-shadow: 0 0px 6px rgba(148, 207, 20, 0.5);
    box-shadow: 0 0px 6px rgba(148, 207, 20, 0.5);
    opacity: 1;
}

.checkbox:disabled+label {
    color: #293137;
}

.checkbox:disabled+label:before {
    border: 2px solid #171b1e;
    background: #0d1114;
}


/*--------------------------------------------------------------
# Custom Radio Style
--------------------------------------------------------------*/

.radio {
    position: absolute;
    z-index: -1;
    margin: 10px 0 0 20px;
    opacity: 0;
}

.radio+label {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    height: 20px;
    margin: 10px 0;
    padding: 0 0 0 30px;
    font-size: 16px;
    cursor: pointer;
    -webkit-box-align: center;
    -ms-flex-align: center;
}

.radio+label:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 2px solid #3a5108;
    border-radius: 100%;
    font-size: 11px;
    -webkit-transition: 0.2s;
    transition: 0.2s;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

.radio:hover+label:before {
    border-color: #94cf14;
}

.radio:checked+label:before {
    border-color: #94cf14;
    -webkit-box-shadow: 0 0 6px rgba(148, 207, 20, 0.5);
    box-shadow: 0 0 6px rgba(148, 207, 20, 0.5);
}

.radio:checked+label {
    color: #fff;
    text-shadow: 0 2px 6px rgba(255, 255, 255, 0.5);
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.radio+label:after {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background: #94cf14;
    opacity: 0;
    -webkit-transition: 0.2s;
    transition: 0.2s;
}

.radio:checked+label:after {
    -webkit-box-shadow: 0 0px 6px rgba(148, 207, 20, 0.5);
    box-shadow: 0 0px 6px rgba(148, 207, 20, 0.5);
    opacity: 1;
}

.radio:disabled+label {
    color: #293137;
}

.radio:disabled+label:before {
    border: 2px solid #171b1e;
    background: #0d1114;
}

.dflex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: flex-start;
    align-items: flex-start;
    justify-content: space-between;
    margin: 0 -15px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
}


/*--------------------------------------------------------------
# Table Style
--------------------------------------------------------------*/

table {
    width: 100%;
    margin-bottom: 10px;
    border-collapse: collapse;
    background: #20252a;
}

th {
    background: #101518;
    color: #94cf14;
}

th,
td {
    padding: 1.5rem 1rem;
    border: 0;
    text-align: left;
}

tbody tr:nth-child(odd) {
    background: #1b2024;
}


/*--------------------------------------------------------------
# Button Style
--------------------------------------------------------------*/

.btn-active {
    position: relative;
    z-index: 2;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    align-items: center;
    height: 40px;
    margin: 0;
    padding: 0 20px;
    border: 0;
    border: 1px solid #94cf14 !important;
    border-radius: 6px;
    background: linear-gradient(17deg, #62890d 0%, #94cf14 100%);
    color: #fff !important;
    -webkit-box-shadow: 0 3px 10px rgba(148, 207, 20, 0.5);
    box-shadow: 0 3px 10px rgba(148, 207, 20, 0.5);
    outline: none;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    -webkit-box-align: center;
    -ms-flex-align: center;
    justify-content: center;
}

.btn-active:hover {
    border: 1px solid #30383f !important;
    color: #bcbcbc !important;
    -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

.btn-active:hover:after {
    opacity: 1;
}

.btn-active:after {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    z-index: -1;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border: 1px solid #30383f !important;
    border-radius: 6px;
    background: linear-gradient(17deg, #22282d 0%, #30383f 100%);
    opacity: 0;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.btn-active.btn-perspective {
    margin-right: 4px !important;
    font-style: italic;
    -webkit-transform: perspective(1px) translateZ(0) skewX(-13deg);
    transform: perspective(1px) translateZ(0) skewX(-13deg);
}

.btn-active.btn-perspective span {
    -webkit-transform: perspective(1px) translateZ(0) skewX(13deg);
    transform: perspective(1px) translateZ(0) skewX(13deg);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.btn {
    position: relative;
    z-index: 2;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    align-items: center;
    height: 40px;
    margin: 0;
    padding: 0 20px;
    border: 0;
    border: 1px solid #30383f;
    border-radius: 6px;
    background: linear-gradient(17deg, #22282d 0%, #30383f 100%);
    color: #bcbcbc;
    -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    outline: none;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    -webkit-box-align: center;
    -ms-flex-align: center;
}

.btn:hover {
    border: 1px solid #94cf14;
    color: #fff;
    -webkit-box-shadow: 0 3px 10px rgba(148, 207, 20, 0.5);
    box-shadow: 0 3px 10px rgba(148, 207, 20, 0.5);
}

.btn:hover:after {
    opacity: 1;
}

.btn:hover input[type="submit"] {
    color: #fff;
}

.btn:after {
    content: "";
    position: absolute;
    top: -1px;
    left: -1px;
    z-index: -1;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border: 1px solid #94cf14;
    border-radius: 6px;
    background: linear-gradient(17deg, #62890d 0%, #94cf14 100%);
    opacity: 0;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.btn.disable {
    color: #374048;
    pointer-events: none;
}

.btn input[type="submit"]:disabled {
    color: #374048 !important;
    pointer-events: none;
}

.btn input[type="submit"] {
    color: #bcbcbc;
}

.btn.btn-perspective {
    margin-right: 4px !important;
    margin-left: 4px !important;
    font-style: italic;
    -webkit-transform: perspective(1px) translateZ(0) skewX(-13deg);
    transform: perspective(1px) translateZ(0) skewX(-13deg);
}

.btn.btn-perspective span {
    -webkit-transform: perspective(1px) translateZ(0) skewX(13deg);
    transform: perspective(1px) translateZ(0) skewX(13deg);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.btn.btn-perspective input[type="submit"] {
    color: #bcbcbc;
}

.btn.btn-perspective:hover input[type="submit"] {
    color: #fff;
}


/*--------------------------------------------------------------
# Typography Page
--------------------------------------------------------------*/

.typography .btn {
    margin-bottom: 15px;
}

.typography .title {
    font-weight: 800;
    font-size: 20px;
    text-shadow: 0 2px 6px rgba(255, 255, 255, 0.5);
}

#js-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}


/*--------------------------------------------------------------
# Tabs Style
--------------------------------------------------------------*/

.tab-wrapper {
    display: block;
    margin: auto;
    text-align: center;
}

.tab-content-wrapper {
    position: relative;
}

.tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    width: 100%;
    margin-bottom: 80px;
    padding: 0 15px;
    border-radius: 5px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

.tabs li:before {
    display: none;
}

.tab-link {
    position: relative;
    z-index: 5;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
    padding: 44px 0;
    border: 1px solid #141a1e;
    border-right: 1px solid #12171b;
    background: #141a1e;
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0);
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: perspective(1px) translate(0, 0) skewX(-13deg);
    transform: perspective(1px) translate(0, 0) skewX(-13deg);
    -ms-flex-preferred-size: 16.66666667%;
}

.tab-link:first-child {
    border-radius: 5px 0 0 5px;
}

.tab-link:last-child {
    border-radius: 0 5px 5px 0;
}

.tab-link:hover {
    z-index: 7;
}

.tab-link:hover>span {
    color: #94cf14;
}

.tab-link:hover>span .icon-svg {
    fill: #94cf14;
    -webkit-transform: translate(0, -2px);
    transform: translate(0, -2px);
}

.tab-link:active {
    z-index: 8;
    border-color: #94cf14 !important;
    background: #94cf14;
    -webkit-box-shadow: 0 4px 10px rgba(148, 207, 20, 0.5);
    box-shadow: 0 4px 10px rgba(148, 207, 20, 0.5);
    -webkit-transform: perspective(1px) translate(0, 5px) skewX(-13deg);
    transform: perspective(1px) translate(0, 5px) skewX(-13deg);
}

.tab-link:active>span {
    color: #fff;
}

.tab-link:active>span .icon-svg {
    width: 38px;
    height: 38px;
    fill: #fff;
    -webkit-transform: translate(0, 2px);
    transform: translate(0, 2px);
}

.tab-link.active {
    z-index: 8;
    border-color: #94cf14 !important;
    background: #94cf14;
    -webkit-box-shadow: 0 4px 10px rgba(148, 207, 20, 0.5);
    box-shadow: 0 4px 10px rgba(148, 207, 20, 0.5);
}

.tab-link.active:hover span {
    color: #fff;
}

.tab-link.active:hover span .icon-svg {
    fill: #fff;
    -webkit-transform: translate(0, 0px);
    transform: translate(0, 0px);
}

.tab-link:last-child:after {
    display: none;
}

.tab-link>span {
    display: block;
    color: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: perspective(1px) translateZ(0) skewX(13deg);
    transform: perspective(1px) translateZ(0) skewX(13deg);
}

.tab-link>span span {
    display: block;
}

.tab-link .icon-svg {
    width: 38px;
    height: 38px;
    fill: #fff;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.tab-content {
    position: absolute;
    top: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    list-style: none;
    opacity: 0;
    -webkit-transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
    transition: 1s all cubic-bezier(0.075, 0.82, 0.165, 1);
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
}

.tab-content.active {
    position: relative;
    z-index: 2;
    height: auto;
    opacity: 1;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
}

@-webkit-keyframes fadeIn {
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeIn {
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}


/*--------------------------------------------------------------
# Custom Google Map Style
--------------------------------------------------------------*/

.gm-style .gm-style-iw-c {
    padding: 25px !important;
    border-radius: 6px;
    background-color: #333333;
    -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.8);
    box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.8);
}

.gm-style .gm-style-iw-t::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    background: linear-gradient(45deg, #333333 50%, rgba(51, 51, 51, 0) 51%, rgba(51, 51, 51, 0) 100%);
    -webkit-box-shadow: -1px 1px 1px 0 rgba(0, 0, 0, 0.8);
    box-shadow: -1px 1px 1px 0 rgba(0, 0, 0, 0.8);
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.gm-style .gm-style-iw-d {
    overflow: hidden !important;
}

.gm-style .gm-ui-hover-effect {
    display: none !important;
}

div#gm-close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    z-index: 20;
    width: 15px;
    height: 15px;
    cursor: pointer;
}

div#gm-close-btn svg {
    width: 15px;
    height: 15px;
    fill: #bcbcbc;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

div#gm-close-btn svg:hover {
    fill: #94cf14;
}

.icon-svg {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#color-switcher {
    position: fixed;
    top: 17%;
    left: -189px;
    z-index: 10;
    width: 189px;
    padding: 10px;
    border-radius: 0 0 5px 0;
    background: linear-gradient(17deg, #22282d 0, #30383f 100%);
    -webkit-transition: 0.7s cubic-bezier(0.86, 0, 0.07, 1);
    transition: 0.7s cubic-bezier(0.86, 0, 0.07, 1);
}

#color-switcher.active {
    left: 0;
}

#color-switcher h5 {
    font-weight: 800;
    font-size: 17px;
    text-shadow: 0 2px 6px rgba(255, 255, 255, 0.5);
}

#color-switcher .bottom {
    position: absolute;
    top: 0;
    right: -40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 41px;
    padding: 3px;
    border-radius: 0 5px 5px 0;
    background: #30383f;
    cursor: pointer;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

#color-switcher .bottom img {
    width: 20px;
    -webkit-transition: .2s;
    transition: .2s;
    -webkit-animation: 2s linear infinite animate-preloader;
    animation: 2s linear infinite animate-preloader;
}

#color-switcher ul.switcher-color {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 10px 0 0 0;
    padding: 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
}

#color-switcher ul.switcher-color li {
    width: 23%;
    margin: 0 5px 20px 0;
    padding: 0;
}

#color-switcher ul.switcher-color li:before {
    display: none;
}

#color-switcher ul.switcher-color li a {
    display: block;
    width: 100%;
    height: 39px;
    border: 0;
    border-radius: 6px;
    background: #000;
}

#color-switcher ul.switcher-color li a.default {
    border: 1px solid #94cf14 !important;
    background: linear-gradient(17deg, #62890d 0, #94cf14 100%);
    -webkit-box-shadow: 0 3px 10px rgba(148, 207, 20, 0.5);
    box-shadow: 0 3px 10px rgba(148, 207, 20, 0.5);
}

#color-switcher ul.switcher-color li a.pink {
    border: 1px solid #e00f6c !important;
    background: linear-gradient(17deg, #980a49 0, #e00f6c 100%);
    -webkit-box-shadow: 0 3px 10px rgba(224, 15, 108, 0.5);
    box-shadow: 0 3px 10px rgba(224, 15, 108, 0.5);
}

#color-switcher ul.switcher-color li a.blue {
    border: 1px solid #009edb !important;
    background: linear-gradient(17deg, #00678f 0, #009edb 100%);
    -webkit-box-shadow: 0 3px 10px rgba(0, 158, 219, 0.5);
    box-shadow: 0 3px 10px rgba(0, 158, 219, 0.5);
}

#color-switcher ul.switcher-color li a.orange {
    border: 1px solid #fe8c00 !important;
    background: linear-gradient(17deg, #b26200 0, #fe8c00 100%);
    -webkit-box-shadow: 0 3px 10px rgba(254, 140, 0, 0.5);
    box-shadow: 0 3px 10px rgba(254, 140, 0, 0.5);
}

#color-switcher ul.switcher-color li a.purple {
    border: 1px solid #8e2de2 !important;
    background: linear-gradient(17deg, #6718ab 0, #8e2de2 100%);
    -webkit-box-shadow: 0 3px 10px rgba(142, 45, 226, 0.5);
    box-shadow: 0 3px 10px rgba(142, 45, 226, 0.5);
}

#color-switcher ul.switcher-color li a.red {
    border: 1px solid #c31432 !important;
    background: linear-gradient(17deg, #7e0d20 0, #c31432 100%);
    -webkit-box-shadow: 0 3px 10px rgba(195, 20, 50, 0.5);
    box-shadow: 0 3px 10px rgba(195, 20, 50, 0.5);
}

#color-switcher ul.switcher-theme {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 10px 0 0 0;
    padding: 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
}

#color-switcher ul.switcher-theme li {
    width: 45%;
    margin: 0 5px 20px 0;
    padding: 0;
}

#color-switcher ul.switcher-theme li:before {
    display: none;
}

#color-switcher ul.switcher-theme li a {
    display: block;
    width: 100%;
    height: 39px;
    border: 0;
    border-radius: 6px;
    background: #000;
}

#color-switcher ul.switcher-theme li a.dark {
    border: 1px solid #22282d !important;
    background: #0d1114;
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

#color-switcher ul.switcher-theme li a.white {
    border: 1px solid #22282d !important;
    background: #fff;
    -webkit-box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
}

.page-loader.loaded2:before {
    top: 0;
    height: 50%;
    -webkit-transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9);
    transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9);
}

.page-loader.loaded2:after {
    bottom: 0;
    height: 50%;
    -webkit-transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9);
    transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9);
}


/*--------------------------------------------------------------
# Vendor css
--------------------------------------------------------------*/


/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */


/* Document
========================================================================== */


/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
    line-height: 1.15;
    /* 1 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
}


/* Sections
========================================================================== */


/**
 * Remove the margin in all browsers.
 */

body {
    margin: 0;
}


/**
 * Render the `main` element consistently in IE.
 */

main {
    display: block;
}


/* Grouping content
========================================================================== */


/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
    /* 1 */
    overflow: visible;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    /* 1 */
    height: 0;
    /* 2 */
}


/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
    /* 1 */
    font-size: 1em;
    font-family: monospace, monospace;
    /* 2 */
}


/* Text-level semantics
========================================================================== */


/**
 * Remove the gray background on active links in IE 10.
 */

a {
    background-color: transparent;
}


/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
    border-bottom: none;
    /* 1 */
    text-decoration: underline;
    /* 2 */
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    /* 2 */
}


/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
    font-weight: bolder;
}


/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
    /* 1 */
    font-size: 1em;
    font-family: monospace, monospace;
    /* 2 */
}


/**
 * Add the correct font size in all browsers.
 */

small {
    font-size: 80%;
}


/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
    position: relative;
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}


/* Embedded content
========================================================================== */


/**
 * Remove the border on images inside links in IE 10.
 */

img {
    border-style: none;
}


/* Forms
========================================================================== */


/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
    /* 1 */
    margin: 0;
    /* 1 */
    font-size: 100%;
    font-family: inherit;
    /* 1 */
    line-height: 1.15;
    /* 2 */
}


/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */

button,
input {
    /* 1 */
    overflow: visible;
}


/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select {
    /* 1 */
    text-transform: none;
}


/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}


/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    padding: 0;
    border-style: none;
}


/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}


/**
 * Correct the padding in Firefox.
 */

fieldset {
    padding: 0.35em 0.75em 0.625em;
}


/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */

legend {
    /* 2 */
    display: table;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* 1 */
    max-width: 100%;
    /* 1 */
    padding: 0;
    /* 1 */
    color: inherit;
    /* 3 */
    white-space: normal;
    /* 1 */
}


/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
    vertical-align: baseline;
}


/**
 * Remove the default vertical scrollbar in IE 10+.
 */

textarea {
    overflow: auto;
}


/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */

[type="checkbox"],
[type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /* 1 */
    padding: 0;
    /* 2 */
}


/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}


/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
    /* 1 */
    outline-offset: -2px;
    -webkit-appearance: textfield;
    /* 2 */
}


/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}


/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

 ::-webkit-file-upload-button {
    /* 1 */
    font: inherit;
    -webkit-appearance: button;
    /* 2 */
}


/* Interactive
========================================================================== */


/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */

details {
    display: block;
}


/*
 * Add the correct display in all browsers.
 */

summary {
    display: list-item;
}


/* Misc
========================================================================== */


/**
 * Add the correct display in IE 10+.
 */

template {
    display: none;
}


/**
 * Add the correct display in IE 10.
 */

[hidden] {
    display: none;
}


/*!
 * Bootstrap Grid v4.5.3 (https://getbootstrap.com/)
 * Copyright 2011-2020 The Bootstrap Authors
 * Copyright 2011-2020 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
}

.row {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.no-gutters>.col,
.no-gutters>[class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    -ms-flex-preferred-size: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
}

.row-cols-1>* {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    -webkit-box-flex: 0;
}

.row-cols-2>* {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    -webkit-box-flex: 0;
}

.row-cols-3>* {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    -webkit-box-flex: 0;
}

.row-cols-4>* {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    -webkit-box-flex: 0;
}

.row-cols-5>* {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    -webkit-box-flex: 0;
}

.row-cols-6>* {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
    -webkit-box-flex: 0;
}

.col-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
    -webkit-box-flex: 0;
}

.col-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
    -webkit-box-flex: 0;
}

.col-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
    -webkit-box-flex: 0;
}

.col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    -webkit-box-flex: 0;
}

.col-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    -webkit-box-flex: 0;
}

.col-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
    -webkit-box-flex: 0;
}

.col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    -webkit-box-flex: 0;
}

.col-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
    -webkit-box-flex: 0;
}

.col-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    -webkit-box-flex: 0;
}

.col-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
    -webkit-box-flex: 0;
}

.col-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
    -webkit-box-flex: 0;
}

.col-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
    -webkit-box-flex: 0;
}

.col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    -webkit-box-flex: 0;
}

.order-first {
    order: -1;
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
}

.order-last {
    order: 13;
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
}

.order-0 {
    order: 0;
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
}

.order-1 {
    order: 1;
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
}

.order-2 {
    order: 2;
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
}

.order-3 {
    order: 3;
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
}

.order-4 {
    order: 4;
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
}

.order-5 {
    order: 5;
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
}

.order-6 {
    order: 6;
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
}

.order-7 {
    order: 7;
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
}

.order-8 {
    order: 8;
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
}

.order-9 {
    order: 9;
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
}

.order-10 {
    order: 10;
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
}

.order-11 {
    order: 11;
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
}

.order-12 {
    order: 12;
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
}

.offset-1 {
    margin-left: 8.333333%;
}

.offset-2 {
    margin-left: 16.666667%;
}

.offset-3 {
    margin-left: 25%;
}

.offset-4 {
    margin-left: 33.333333%;
}

.offset-5 {
    margin-left: 41.666667%;
}

.offset-6 {
    margin-left: 50%;
}

.offset-7 {
    margin-left: 58.333333%;
}

.offset-8 {
    margin-left: 66.666667%;
}

.offset-9 {
    margin-left: 75%;
}

.offset-10 {
    margin-left: 83.333333%;
}

.offset-11 {
    margin-left: 91.666667%;
}

.d-none {
    display: none !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-table {
    display: table !important;
}

.d-table-row {
    display: table-row !important;
}

.d-table-cell {
    display: table-cell !important;
}

.d-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
}

.d-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important;
}

.flex-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
}

.flex-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
}

.flex-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
}

.flex-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
}

.flex-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}

.flex-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
}

.flex-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
    -webkit-box-flex: 1 !important;
}

.flex-grow-0 {
    flex-grow: 0 !important;
    -ms-flex-positive: 0 !important;
    -webkit-box-flex: 0 !important;
}

.flex-grow-1 {
    flex-grow: 1 !important;
    -ms-flex-positive: 1 !important;
    -webkit-box-flex: 1 !important;
}

.flex-shrink-0 {
    flex-shrink: 0 !important;
    -ms-flex-negative: 0 !important;
}

.flex-shrink-1 {
    flex-shrink: 1 !important;
    -ms-flex-negative: 1 !important;
}

.justify-content-start {
    justify-content: flex-start !important;
    -ms-flex-pack: start !important;
    -webkit-box-pack: start !important;
}

.justify-content-end {
    justify-content: flex-end !important;
    -ms-flex-pack: end !important;
    -webkit-box-pack: end !important;
}

.justify-content-center {
    justify-content: center !important;
    -ms-flex-pack: center !important;
    -webkit-box-pack: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
    -ms-flex-pack: justify !important;
    -webkit-box-pack: justify !important;
}

.justify-content-around {
    justify-content: space-around !important;
    -ms-flex-pack: distribute !important;
}

.align-items-start {
    align-items: flex-start !important;
    -ms-flex-align: start !important;
    -webkit-box-align: start !important;
}

.align-items-end {
    align-items: flex-end !important;
    -ms-flex-align: end !important;
    -webkit-box-align: end !important;
}

.align-items-center {
    align-items: center !important;
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
}

.align-items-baseline {
    align-items: baseline !important;
    -ms-flex-align: baseline !important;
    -webkit-box-align: baseline !important;
}

.align-items-stretch {
    align-items: stretch !important;
    -ms-flex-align: stretch !important;
    -webkit-box-align: stretch !important;
}

.align-content-start {
    align-content: flex-start !important;
    -ms-flex-line-pack: start !important;
}

.align-content-end {
    align-content: flex-end !important;
    -ms-flex-line-pack: end !important;
}

.align-content-center {
    align-content: center !important;
    -ms-flex-line-pack: center !important;
}

.align-content-between {
    align-content: space-between !important;
    -ms-flex-line-pack: justify !important;
}

.align-content-around {
    align-content: space-around !important;
    -ms-flex-line-pack: distribute !important;
}

.align-content-stretch {
    align-content: stretch !important;
    -ms-flex-line-pack: stretch !important;
}

.align-self-auto {
    align-self: auto !important;
    -ms-flex-item-align: auto !important;
}

.align-self-start {
    align-self: flex-start !important;
    -ms-flex-item-align: start !important;
}

.align-self-end {
    align-self: flex-end !important;
    -ms-flex-item-align: end !important;
}

.align-self-center {
    align-self: center !important;
    -ms-flex-item-align: center !important;
}

.align-self-baseline {
    align-self: baseline !important;
    -ms-flex-item-align: baseline !important;
}

.align-self-stretch {
    align-self: stretch !important;
    -ms-flex-item-align: stretch !important;
}

.m-0 {
    margin: 0 !important;
}

.mt-0,
.my-0 {
    margin-top: 0 !important;
}

.mr-0,
.mx-0 {
    margin-right: 0 !important;
}

.mb-0,
.my-0 {
    margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
    margin-left: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.mt-1,
.my-1 {
    margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
    margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
    margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
    margin-left: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.mt-2,
.my-2 {
    margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
    margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
    margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
    margin-left: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.mt-3,
.my-3 {
    margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
    margin-right: 1rem !important;
}

.mb-3,
.my-3 {
    margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
    margin-left: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.mt-4,
.my-4 {
    margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
    margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
    margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
    margin-left: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

.mt-5,
.my-5 {
    margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
    margin-right: 3rem !important;
}

.mb-5,
.my-5 {
    margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
    margin-left: 3rem !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-0,
.py-0 {
    padding-top: 0 !important;
}

.pr-0,
.px-0 {
    padding-right: 0 !important;
}

.pb-0,
.py-0 {
    padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
    padding-left: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.pt-1,
.py-1 {
    padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
    padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
    padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
    padding-left: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.pt-2,
.py-2 {
    padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
    padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
    padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
    padding-left: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.pt-3,
.py-3 {
    padding-top: 1rem !important;
}

.pr-3,
.px-3 {
    padding-right: 1rem !important;
}

.pb-3,
.py-3 {
    padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
    padding-left: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.pt-4,
.py-4 {
    padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
    padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
    padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
    padding-left: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.pt-5,
.py-5 {
    padding-top: 3rem !important;
}

.pr-5,
.px-5 {
    padding-right: 3rem !important;
}

.pb-5,
.py-5 {
    padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
    padding-left: 3rem !important;
}

.m-n1 {
    margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
    margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
    margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
    margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
    margin-left: -0.25rem !important;
}

.m-n2 {
    margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
    margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
    margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
    margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
    margin-left: -0.5rem !important;
}

.m-n3 {
    margin: -1rem !important;
}

.mt-n3,
.my-n3 {
    margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
    margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
    margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
    margin-left: -1rem !important;
}

.m-n4 {
    margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
    margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
    margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
    margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
    margin-left: -1.5rem !important;
}

.m-n5 {
    margin: -3rem !important;
}

.mt-n5,
.my-n5 {
    margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
    margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
    margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
    margin-left: -3rem !important;
}

.m-auto {
    margin: auto !important;
}

.mt-auto,
.my-auto {
    margin-top: auto !important;
}

.mr-auto,
.mx-auto {
    margin-right: auto !important;
}

.mb-auto,
.my-auto {
    margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
    margin-left: auto !important;
}


/* Slider */

.slick-slider {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
    margin-top: -60px;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.slick-track:before,
.slick-track:after {
    content: "";
    display: table;
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir="rtl"] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}


/* Icons */

@font-face {
    font-weight: normal;
    font-style: normal;
    font-family: "slick";
    src: url("https://codearts.theme.admarts.ru/dark-theme/css/fonts/slick.eot");
    src: url("https://codearts.theme.admarts.ru/dark-theme/css/fonts/slick.eot?") format("embedded-opentype"), url("https://codearts.theme.admarts.ru/dark-theme/css/fonts/slick.woff") format("woff"), url("https://codearts.theme.admarts.ru/dark-theme/css/fonts/slick.ttf") format("truetype"), url("https://codearts.theme.admarts.ru/dark-theme/css/fonts/slick.svg") format("svg");
}


/* Arrows */

.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    border: none;
    background: transparent;
    color: transparent;
    outline: none;
    font-size: 0;
    line-height: 0;
    cursor: pointer;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    background: transparent;
    color: transparent;
    outline: none;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
    content: "\f104";
    color: #bcb3b3;
    font-weight: 300;
    font-size: 52px;
    font-family: "Font Awesome 5 Pro";
}

.slick-next:before {
    content: "\f105";
}

.slick-prev {
    left: -25px;
}

[dir="rtl"] .slick-prev {
    right: -25px;
    left: auto;
}

.slick-prev:before {
    content: "\f104";
}

[dir="rtl"] .slick-prev:before {
    content: "\f104";
}

.slick-next {
    right: -25px;
}

[dir="rtl"] .slick-next {
    right: auto;
    left: -25px;
}

.slick-next:before {
    content: "\f105";
}

[dir="rtl"] .slick-next:before {
    content: "\f105";
}


/* Dots */

.slick-dotted.slick-slider {
    margin-bottom: 30px;
}

.slick-dots {
    position: absolute;
    bottom: -40px;
    display: block;
    width: 100%;
    margin: 0;
    padding: 0 10px;
    list-style: none;
    text-align: right;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 14px;
    height: 14px;
    margin: 0 8px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    display: none;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}

.slick-dots li:before {
    top: 0;
    left: 0;
    border-color: rgba(75, 75, 75, 0.5);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}

.slick-dots li:hover:before {
    border-color: #4b4b4b;
}

.slick-dots li.slick-active:before {
    border-color: #000;
    background: #000;
}

body.compensate-for-scrollbar {
    overflow: hidden;
}

.fancybox-active {
    height: auto;
}

.fancybox-is-hidden {
    position: absolute !important;
    top: -9999px;
    left: -9999px;
    margin: 0;
    visibility: hidden;
}

.fancybox-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99992;
    width: 100%;
    height: 100%;
    outline: none;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
}

.fancybox-container * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.fancybox-outer {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.fancybox-bg {
    background: #1e1e1e;
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
    transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
    -webkit-transition-duration: inherit;
    transition-duration: inherit;
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

.fancybox-is-open .fancybox-bg {
    opacity: .9;
    -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
    position: absolute;
    z-index: 99997;
    opacity: 0;
    visibility: hidden;
    direction: ltr;
    -webkit-transition: opacity .25s ease, visibility 0s ease .25s;
    transition: opacity .25s ease, visibility 0s ease .25s;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity .25s ease 0s, visibility 0s ease 0s;
    transition: opacity .25s ease 0s, visibility 0s ease 0s;
}

.fancybox-infobar {
    top: 0;
    left: 0;
    min-width: 44px;
    height: 44px;
    padding: 0 10px;
    color: #ccc;
    font-size: 13px;
    line-height: 44px;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-font-smoothing: subpixel-antialiased;
    mix-blend-mode: difference;
    -webkit-touch-callout: none;
}

.fancybox-toolbar {
    top: 0;
    right: 0;
}

.fancybox-stage {
    z-index: 99994;
    overflow: visible;
    direction: ltr;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.fancybox-is-open .fancybox-stage {
    overflow: hidden;
}

.fancybox-slide {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99994;
    /* Using without prefix would break IE11 */
    display: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    height: 100%;
    padding: 44px;
    outline: none;
    text-align: center;
    white-space: normal;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-backface-visibility: hidden;
}

.fancybox-slide::before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    width: 0;
    height: 100%;
    font-size: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
    display: block;
}

.fancybox-slide--image {
    overflow: hidden;
    padding: 44px 0;
}

.fancybox-slide--image::before {
    display: none;
}

.fancybox-slide--html {
    padding: 6px;
}

.fancybox-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
    margin: 0;
    padding: 44px;
    background: #fff;
    text-align: left;
}

.fancybox-slide--image .fancybox-content {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99995;
    overflow: visible;
    max-width: none;
    padding: 0;
    background: transparent;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
    animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
    -webkit-backface-visibility: hidden;
}

.fancybox-can-zoomOut .fancybox-content {
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
    cursor: -webkit-grab;
    cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.fancybox-container [data-selectable='true'] {
    cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.fancybox-spaceball {
    z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
    overflow: visible;
    width: 100%;
    height: 100%;
    padding: 0;
}

.fancybox-slide--video .fancybox-content {
    background: #000;
}

.fancybox-slide--map .fancybox-content {
    background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
    background: #fff;
}

.fancybox-video,
.fancybox-iframe {
    display: block;
    overflow: hidden;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
}


/* Fix iOS */

.fancybox-iframe {
    position: absolute;
    top: 0;
    left: 0;
}

.fancybox-error {
    width: 100%;
    max-width: 400px;
    padding: 40px;
    background: #fff;
    cursor: default;
}

.fancybox-error p {
    margin: 0;
    padding: 0;
    color: #444;
    font-size: 16px;
    line-height: 20px;
}


/* Buttons */

.fancybox-button {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 44px;
    height: 44px;
    margin: 0;
    padding: 10px;
    border: 0;
    border-radius: 0;
    background: rgba(30, 30, 30, 0.6);
    -webkit-box-shadow: none;
    box-shadow: none;
    visibility: inherit;
    cursor: pointer;
    -webkit-transition: color .2s;
    transition: color .2s;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
    color: #ccc;
}

.fancybox-button:hover {
    color: #fff;
}

.fancybox-button:focus {
    outline: none;
}

.fancybox-button.fancybox-focus {
    outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
    color: #888;
    outline: none;
    cursor: default;
}


/* Fix IE11 */

.fancybox-button div {
    height: 100%;
}

.fancybox-button svg {
    position: relative;
    display: block;
    overflow: visible;
    width: 100%;
    height: 100%;
}

.fancybox-button svg path {
    fill: currentColor;
    stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
    display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
    display: none;
}

.fancybox-progress {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 99998;
    height: 2px;
    background: #ff5268;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0;
    transform-origin: 0;
}


/* Close button on the top right corner of html content */

.fancybox-close-small {
    position: absolute;
    top: -44px;
    right: -12px;
    z-index: 401;
    padding: 8px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #ccc;
    opacity: .8;
    cursor: pointer;
}

.fancybox-close-small:hover {
    color: #fff;
    opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
    top: 0;
    right: 0;
    padding: 10px;
    color: currentColor;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
    overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
    display: none;
}


/* Navigation arrows */

.fancybox-navigation .fancybox-button {
    position: absolute;
    top: calc(50% - 50px);
    width: 70px;
    height: 100px;
    background-clip: content-box;
    opacity: 0;
}

.fancybox-navigation .fancybox-button div {
    padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
    left: 0;
    left: env(safe-area-inset-left);
    padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
    right: 0;
    right: env(safe-area-inset-right);
    padding: 31px 6px 31px 26px;
}


/* Caption */

.fancybox-caption {
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99996;
    padding: 75px 44px 25px 44px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.85)), color-stop(50%, rgba(0, 0, 0, 0.3)), color-stop(65%, rgba(0, 0, 0, 0.15)), color-stop(75.5%, rgba(0, 0, 0, 0.075)), color-stop(82.85%, rgba(0, 0, 0, 0.037)), color-stop(88%, rgba(0, 0, 0, 0.019)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
    color: #eee;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
    pointer-events: none;
}

@supports (padding: max(0px)) {
    .fancybox-caption {
        padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
    }
}

.fancybox-caption--separate {
    margin-top: -50px;
}

.fancybox-caption__body {
    overflow: auto;
    max-height: 50vh;
    pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
    color: #ccc;
    text-decoration: none;
}

.fancybox-caption a:hover {
    color: #fff;
    text-decoration: underline;
}


/* Loading indicator */

.fancybox-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 99999;
    width: 50px;
    height: 50px;
    margin: -25px 0 0 -25px;
    padding: 0;
    border: 4px solid #888;
    border-bottom-color: #fff;
    border-radius: 50%;
    background: transparent;
    opacity: .7;
    -webkit-animation: fancybox-rotate 1s linear infinite;
    animation: fancybox-rotate 1s linear infinite;
}

@-webkit-keyframes fancybox-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes fancybox-rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/* Transition effects */

.fancybox-animated {
    -webkit-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
    transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}


/* transitionEffect: slide */

.fancybox-fx-slide.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}


/* transitionEffect: fade */

.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
    opacity: 1;
}


/* transitionEffect: zoom-in-out */

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: scale3d(0.5, 0.5, 0.5);
    transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}


/* transitionEffect: rotate */

.fancybox-fx-rotate.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
}


/* transitionEffect: circular */

.fancybox-fx-circular.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
    transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
    transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}


/* transitionEffect: tube */

.fancybox-fx-tube.fancybox-slide--previous {
    -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
    transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
    -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
    transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
}


/* Styling for Small-Screen Devices */


/* Share */

.fancybox-share {
    max-width: 90%;
    padding: 30px;
    border-radius: 3px;
    background: #f4f4f4;
    text-align: center;
}

.fancybox-share h1 {
    margin: 0 0 20px 0;
    color: #222;
    font-weight: 700;
    font-size: 35px;
}

.fancybox-share p {
    margin: 0;
    padding: 0;
}

.fancybox-share__button {
    display: inline-block;
    min-width: 130px;
    margin: 0 5px 10px 5px;
    padding: 0 15px;
    border: 0;
    border-radius: 3px;
    font-weight: 700;
    font-size: 14px;
    line-height: 40px;
    text-decoration: none;
    white-space: nowrap;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
    color: #fff;
}

.fancybox-share__button:hover {
    text-decoration: none;
}

.fancybox-share__button--fb {
    background: #3b5998;
}

.fancybox-share__button--fb:hover {
    background: #344e86;
}

.fancybox-share__button--pt {
    background: #bd081d;
}

.fancybox-share__button--pt:hover {
    background: #aa0719;
}

.fancybox-share__button--tw {
    background: #1da1f2;
}

.fancybox-share__button--tw:hover {
    background: #0d95e8;
}

.fancybox-share__button svg {
    position: relative;
    top: -1px;
    vertical-align: middle;
    width: 25px;
    height: 25px;
    margin-right: 7px;
}

.fancybox-share__button svg path {
    fill: #fff;
}

.fancybox-share__input {
    width: 100%;
    margin: 10px 0 0 0;
    padding: 10px 15px;
    border: 0;
    border-bottom: 1px solid #d7d7d7;
    border-radius: 0;
    background: transparent;
    color: #5d5b5b;
    outline: none;
    font-size: 14px;
}


/* Thumbs */

.fancybox-thumbs {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 99995;
    display: none;
    -webkit-overflow-scrolling: touch;
    width: 212px;
    margin: 0;
    padding: 2px 2px 4px 2px;
    background: #ddd;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.fancybox-thumbs-x {
    overflow-x: auto;
    overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
    display: block;
}

.fancybox-show-thumbs .fancybox-inner {
    right: 212px;
}

.fancybox-thumbs__list {
    position: absolute;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0;
    white-space: nowrap;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
    overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
    width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
    border-radius: 10px;
    background: #fff;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #2a2a2a;
}

.fancybox-thumbs__list a {
    position: relative;
    float: left;
    overflow: hidden;
    width: 100px;
    max-width: calc(50% - 4px);
    height: 75px;
    max-height: calc(100% - 8px);
    margin: 2px;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.1);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    outline: none;
    cursor: pointer;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
}

.fancybox-thumbs__list a::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99991;
    border: 6px solid #ff5268;
    opacity: 0;
    -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fancybox-thumbs__list a:focus::before {
    opacity: .5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
    opacity: 1;
}


/* Styling for Small-Screen Devices */


/*--------------------------------------------------------------
# Sprites icons
--------------------------------------------------------------*/

.icon-svg {
    display: inline-block;
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.icon-svg-close {
    width: 0.625em;
    font-size: 51.2rem;
}

.icon-svg-facebook {
    width: 0.625em;
    font-size: 51.2rem;
}

.icon-svg-instagram {
    width: 0.875em;
    font-size: 51.2rem;
}

.icon-svg-next-arrow {
    width: 1.75em;
    font-size: 25.6rem;
}

.icon-svg-prev-arrow {
    width: 1.75em;
    font-size: 25.6rem;
}

.icon-svg-search {
    width: 1em;
    font-size: 51.2rem;
}

.icon-svg-twitter {
    width: 1em;
    font-size: 51.2rem;
}

.icon-svg-w-1 {
    width: 1.10345em;
    font-size: 46.4rem;
}

.icon-svg-w-2 {
    width: 1em;
    font-size: 51.2rem;
}

.icon-svg-w-3 {
    width: 1em;
    font-size: 51.2rem;
}

.icon-svg-w-4 {
    width: 1.06667em;
    font-size: 48rem;
}

.icon-svg-w-5 {
    width: 1.14286em;
    font-size: 44.8rem;
}

.icon-svg-w-6 {
    width: 1.32642em;
    font-size: 38.6rem;
}

.icon-svg-youtube {
    width: 1.125em;
    font-size: 51.2rem;
}

.icon-svg-zoom {
    width: 1em;
    font-size: 44.8rem;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

.page-loader {
    position: fixed;
    z-index: 999999;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.page-loader:before {
    content: "";
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 50%;
    background-color: #0d1114;
}

.page-loader:after {
    content: "";
    position: fixed;
    bottom: 0%;
    left: 0%;
    width: 100%;
    height: 50%;
    background-color: #0d1114;
}

.page-loader.loaded:before {
    top: 0;
    height: 0;
    -webkit-transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9);
    transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9);
}

.page-loader.loaded:after {
    bottom: 0;
    height: 0;
    -webkit-transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9);
    transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9);
}

.page-loader.loaded {
    z-index: -100;
    height: 0;
    -webkit-transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9);
    transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9);
}

.page-loader.loaded .iconload:before {
    opacity: 0;
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

.page-loader .iconload:before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    z-index: 200;
    width: 60px;
    height: 60px;
    border: 2px solid #94cf14;
    border-top-color: #fff;
    border-radius: 50%;
    -webkit-transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9);
    transition: all 1s cubic-bezier(0.8, 0.2, 0.2, 0.9);
    -webkit-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes animate-preloader2 {
    0% {
        -webkit-transform: perspective(1px) translateZ(0) skewX(13deg) rotate(0deg);
        transform: perspective(1px) translateZ(0) skewX(13deg) rotate(0deg);
    }
    100% {
        -webkit-transform: perspective(1px) translateZ(0) skewX(13deg) rotate(360deg);
        transform: perspective(1px) translateZ(0) skewX(13deg) rotate(360deg);
    }
}

@keyframes animate-preloader2 {
    0% {
        -webkit-transform: perspective(1px) translateZ(0) skewX(13deg) rotate(0deg);
        transform: perspective(1px) translateZ(0) skewX(13deg) rotate(0deg);
    }
    100% {
        -webkit-transform: perspective(1px) translateZ(0) skewX(13deg) rotate(360deg);
        transform: perspective(1px) translateZ(0) skewX(13deg) rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Header Styles
--------------------------------------------------------------*/

header.pages {
    height: auto;
}

header.pages .container {
    position: initial;
}

header .pages__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 183px 0 80px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

header .pages__head .block__title {
    margin-bottom: 0;
}

header .pages__head .path {
    z-index: 5;
    margin-top: 44px;
}

header .pages__head .path span {
    color: #94cf14;
}

header .pages__head .path span:after {
    content: "/";
    display: inline-block;
    padding: 0 5px;
    color: #3c4750;
}

header .pages__head .path span:last-child:after {
    display: none;
}

header .pages__head .path a {
    position: relative;
    border-bottom: 1px solid transparent;
    color: #3c4750;
}

header .pages__head .path a:hover {
    border-color: #3c4750;
}

header .pages__head.black-bg:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: url("../img/pattern-1.png");
    opacity: 0.01;
}

.header__top {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
    width: 100%;
    padding: 10px 15px;
}

.header__top .burger-wrapper {
    display: none;
}

.header__top .btn-active {
    z-index: 2200 !important;
}

.header__top.scrolled {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    padding: 0 15px !important;
    background: rgba(13, 17, 20, 0.7);
    -webkit-box-shadow: 0px 1px 4px -1px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 1px 4px -1px rgba(0, 0, 0, 0.1);
    -webkit-animation: show-top 1 0.3s cubic-bezier(0.21, 0.67, 0.58, 1);
    animation: show-top 1 0.3s cubic-bezier(0.21, 0.67, 0.58, 1);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-backdrop-filter: blur(55px) saturate(180%);
    backdrop-filter: blur(45px) saturate(180%);
    will-change: auto;
}

.header__top .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
}

.header__logo {
    z-index: 2200;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /*width: 171px;*/
    height: 43px;
}

.header__logo a {
    width: 100%;
    border: 0;
    display: flex;
    align-items: center;
}

.header__logo a:hover {
    opacity: 0.8;
}

.headerlogo a img {
    height: 100%;
    max-height: 43px;
    padding-right: 15px;
}

.headerlogo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    border: none;
}

.headerlogo a span {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
}

.header-inner #menu a:not(.btn) {
    border: none;
    padding: 0 10px;
}

.header .btn-active {
    /* z-index: 2000; */
}

.header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
}

.header__menu nav {
    font-size: calc(13px + 1 * ((100vw - 320px) / 1440));
}

.header__menu nav ul,
.pairs ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0 15px 0 0;
    list-style: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
}

ul li {
    position: relative;
    padding: 0;
    cursor: pointer;
}

ul li:before {
    display: none;
}

ul li a {
    display: inline-block;
    margin: 0 15px;
    padding: 20px 0;
    border: 0;
    color: #bcbcbc;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

ul li a:hover {
    color: #fff;
}

ul li a:hover.btn {
    color: #fff;
}

ul li a.active {
    color: #fff;
}

ul li .submenu {
    position: absolute;
    top: 100%;
    left: 25px;
    z-index: 20;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 250px;
    padding: 5px;
    border: 1px solid #30383f;
    border-radius: 5px;
    background: linear-gradient(17deg, #22282d 0%, #30383f 100%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translate(0, 10px);
    transform: translate(0, 10px);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
}

ul li .submenu li {
    width: 100%;
    padding: 0;
}

ul li .submenu li a {
    display: inline-block;
    width: 100%;
    margin: 0;
    padding: 7px 12px;
    border: 0;
    border-radius: 3px;
    font-weight: 600;
    font-size: 15px;
    line-height: 22px;
    text-transform: capitalize;
}

ul li .submenu li a:hover {
    padding-left: 15px;
    color: #94cf14;
}

ul li:hover>a {
    color: #fff;
}

ul li:hover .submenu {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0, 1px);
    transform: translate(0, 1px);
}

ul li.sub>a {
    position: relative;
}

ul li.sub>a:after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 10px;
    margin-left: 10px;
    background: url("../img/angle-bt.svg") right center no-repeat;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}


/*--------------------------------------------------------------
# Home Top Wrapper
--------------------------------------------------------------*/

.top__wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

.top__wrapper.e404 .top__wrapper-title {
    color: #94cf14;
    font-weight: 800;
    font-size: calc(90px + 80 * ((100vw - 320px) / 1440));
    font-family: 'Montserrat', sans-serif;
    line-height: 100%;
}

.top__wrapper.e404 p {
    margin: 20px 0;
    text-align: center;
}

.top__wrapper.e404 .btn-active {
    z-index: 0;
}

.top__wrapper-title h1 {
    margin-top: 0;
    margin-bottom: 24px;
    color: #94cf14;
    font-weight: 400;
    font-size: calc(50px + 44 * ((100vw - 320px) / 1440));
    font-family: 'Montserrat', sans-serif;
    line-height: 100%;
    text-align: center;
    text-shadow: 0 2px 6px rgba(148, 207, 20, 0.5);
}

.top__wrapper-title h1 span {
    color: #fff;
    font-weight: 200;
    text-shadow: 0 2px 6px rgba(255, 255, 255, 0.5);
}

.top__wrapper-description h2 {
    color: #fff;
    font-weight: 100;
    font-size: calc(20px + 10 * ((100vw - 320px) / 1440));
    line-height: 120%;
    text-align: center;
    text-shadow: 0 2px 6px rgba(255, 255, 255, 0.5);
}


/*--------------------------------------------------------------
# Header Background Style
--------------------------------------------------------------*/

.black-bg {
    position: relative;
}

.black-bg:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    background: #0d1114;
    opacity: 0.1;
}

@-webkit-keyframes show-top {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-25px);
        transform: translateY(-25px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes show-top {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-25px);
        transform: translateY(-25px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes hide-top {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    to {
        opacity: 0;
        -webkit-transform: translateY(-25px);
        transform: translateY(-25px);
    }
}

@keyframes hide-top {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    to {
        opacity: 0;
        -webkit-transform: translateY(-25px);
        transform: translateY(-25px);
    }
}


/*--------------------------------------------------------------
# Header Title Style
--------------------------------------------------------------*/

.block__title p.text-center {
    margin-bottom: 50px;
}

.block__title h3,
.pages__head .block__title h2 {
    position: relative;
    margin-bottom: 60px;
    color: #fff;
    font-weight: 100;
    font-size: calc(30px + 11 * ((100vw - 320px) / 1440));
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 2px 6px rgba(255, 255, 255, 0.5);
}

.block__title h3 span,
.pages__head .block__title h2 span {
    color: #94cf14;
    font-weight: 600;
    text-shadow: 0 2px 6px rgba(148, 207, 20, 0.5);
}

.block__title h3:after,
.pages__head .block__title h2:after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 150px;
    height: 1px;
    background: radial-gradient(closest-side, #94cf14, rgba(188, 188, 188, 0));
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.block__title h3:before,
.pages__head .block__title h2:before {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
    width: 100px;
    height: 1px;
    background: radial-gradient(closest-side, #bcbcbc, rgba(188, 188, 188, 0));
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

.pages__head .block__title h2 {
    margin-bottom: 0;
    font-size: calc(26px + 15 * ((100vw - 320px) / 1440));
}

section {
    overflow: hidden;
    padding: 80px 0;
}

.showmore {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0 0 0;
    text-transform: uppercase;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}


/*--------------------------------------------------------------
# Home Header Slider
--------------------------------------------------------------*/

.slider__top .slider__nav .prev-button {
    position: absolute;
    top: 450px;
    left: 24px;
    z-index: 7;
    border: 0;
    -webkit-transform: translate(0, -24px);
    transform: translate(0, -24px);
}

.slider__top .slider__nav .prev-button:active svg {
    -webkit-transform: translate(-10px, 0);
    transform: translate(-10px, 0);
}

.slider__top .slider__nav .next-button {
    position: absolute;
    top: 450px;
    right: 24px;
    z-index: 7;
    border: 0;
    -webkit-transform: translate(0, -24px);
    transform: translate(0, -24px);
}

.slider__top .slider__nav .next-button:active svg {
    -webkit-transform: translate(10px, 0);
    transform: translate(10px, 0);
}

.slider__top .slider__nav svg {
    width: 54px;
    height: 34px;
    opacity: 0.5;
    -webkit-transform: none;
    transform: none;
}

.slider__top .slider__nav svg:hover {
    opacity: 1;
}

.slider__top .slick-dots {
    bottom: 40px;
}

.slider__top .slick-dots li {
    width: 24px;
    height: 24px;
    border: 2px solid #30383f;
    border-radius: 100%;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: none;
    transform: none;
}

.slider__top .slick-dots li:hover {
    border: 2px solid #94cf14;
}

.slider__top .slick-dots li:hover:before {
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #94cf14;
    opacity: 0;
    -webkit-transform: none;
    transform: none;
}

.slider__top .slick-dots li:before {
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #94cf14;
    opacity: 0;
    -webkit-transform: none;
    transform: none;
}

.slider__top .slick-dots li.slick-active {
    width: 24px;
    height: 24px;
    border: 2px solid #94cf14;
    border-radius: 100%;
    -webkit-box-shadow: 0 1px 2px rgba(148, 207, 20, 0.5);
    box-shadow: 0 1px 2px rgba(148, 207, 20, 0.5);
}

.slider__top .slick-dots li.slick-active:before {
    top: 5px;
    left: 5px;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #94cf14;
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}

.slider__top .slick-dots li.slick-active:hover:before {
    opacity: 1;
}

.slider__top-item {
    position: relative;
    vertical-align: middle;
    height: 100%;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}


/*.slider__top-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 17, 20, 0.65);
}*/

.slider__top-item.slick-active .slider__top-title {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-name: SliderUpDown;
    animation-name: SliderUpDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

.slider__top-item.slick-active .slider__top-text {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-name: SliderDownUp;
    animation-name: SliderDownUp;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

.slider__top-item.slick-active .btn-active {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-animation-name: SliderDownUp;
    animation-name: SliderDownUp;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
}

.slider__top-content {
    z-index: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    height: 900px;
    color: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
}

.slider__top-title {
    font-weight: 800;
    font-size: calc(32px + 38 * ((100vw - 320px) / 1440));
    font-family: 'Montserrat', sans-serif;
    line-height: 100%;
    text-transform: uppercase;
    opacity: 0;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
}

.slider__top-text {
    margin: 50px 0;
    color: #bcbcbc;
    font-weight: 300;
    font-size: calc(17px + 5 * ((100vw - 320px) / 1440));
    line-height: 34px;
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
}

.slider__top .btn-active {
    padding: 25px 40px;
    font-size: 18px;
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
}

@-webkit-keyframes SliderUpDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes SliderUpDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-50px);
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-webkit-keyframes SliderDownUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes SliderDownUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(50px);
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.fadeInUpSD {
    -webkit-animation-name: fadeInUpSD;
    animation-name: fadeInUpSD;
}


/*--------------------------------------------------------------
# Home Header Single Image
--------------------------------------------------------------*/

.single__top-item {
    position: relative;
    vertical-align: middle;
    height: 100%;
    background-attachment: fixed !important;
}

.single__top-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 17, 20, 0.8);
}

.single__top-content {
    z-index: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 900px;
    color: #fff;
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
}

.single__top-title {
    font-weight: 800;
    font-size: calc(46px + 42 * ((100vw - 320px) / 1440));
    font-family: 'Montserrat', sans-serif;
    line-height: 100%;
    text-transform: uppercase;
}

.single__top-text {
    margin: 50px 0;
    color: #bcbcbc;
    font-weight: 300;
    font-size: calc(17px + 5 * ((100vw - 320px) / 1440));
    line-height: 34px;
}

.single__top .btn-active {
    padding: 25px 40px;
    font-size: 18px;
}


/*--------------------------------------------------------------
# Home Header Video Background
--------------------------------------------------------------*/

.wrapper__video {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.single__top.video-background .single__top-item {
    position: relative;
    vertical-align: middle;
    height: 100%;
}

.single__top.video-background .single__top-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 17, 20, 0.8) url("../img/video-pattern.svg");
}

.single__top.video-background .single__top-title {
    background: -webkit-gradient(linear, left bottom, left top, from(#62890d), to(#94cf14));
    background: linear-gradient(0deg, #62890d 0%, #94cf14 100%);
    -webkit-background-clip: text;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 2px 6px rgba(148, 207, 20, 0.3);
    -webkit-text-fill-color: transparent;
}

.single__top.video-background .btn {
    padding: 25px 40px;
    border: 0;
    font-size: 18px;
}

.single__top.video-background .btn:after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}


/*--------------------------------------------------------------
# Our Experience Styles
--------------------------------------------------------------*/

.why-trust {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
}

.why-trust__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    text-transform: uppercase;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

.why-trust__block.title h3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 200px 0;
    background: url(../img/exp.svg) 50% 50% no-repeat;
    background-size: contain;
    color: #fff;
    font-weight: 100;
    font-size: calc(30px + 45 * ((100vw - 320px) / 1440));
    line-height: 100%;
    text-align: center;
    text-shadow: 0 2px 6px rgba(255, 255, 255, 0.5);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
}

.why-trust__block.title h3 span {
    display: block;
    color: #94cf14;
    font-weight: 600;
    text-shadow: 0 2px 6px rgba(148, 207, 20, 0.5);
}


/*--------------------------------------------------------------
# Counter Number Styles
--------------------------------------------------------------*/

.counter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    overflow: hidden;
    border-radius: 5px 0 0 5px;
    background: #141a1e;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
}

.counter__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    width: 50%;
    padding: 100px 0;
    -webkit-box-shadow: 0 0 10px transparent;
    box-shadow: 0 0 10px transparent;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

.counter__item:hover {
    background: #94cf14;
    color: #fff;
    -webkit-box-shadow: 0 5px 15px #0d1114;
    box-shadow: 0 5px 15px #0d1114;
}

.counter__item:hover .counter__number {
    color: #fff;
}

.counter__item:hover span {
    color: #fff;
}

.counter__item:nth-child(1):after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0px;
    width: 100%;
    height: 1px;
    background: -webkit-gradient(linear, right top, left top, from(#22282d), color-stop(75%, rgba(188, 188, 188, 0)));
    background: linear-gradient(to left, #22282d, rgba(188, 188, 188, 0) 75%);
}

.counter__item:nth-child(1):before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0px;
    width: 1px;
    height: 100%;
    background: -webkit-gradient(linear, left bottom, left top, from(#22282d), color-stop(75%, rgba(188, 188, 188, 0)));
    background: linear-gradient(to top, #22282d, rgba(188, 188, 188, 0) 75%);
}

.counter__item:nth-child(2):before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0px;
    width: 100%;
    height: 1px;
    background: -webkit-gradient(linear, left top, right top, from(#22282d), color-stop(75%, rgba(188, 188, 188, 0)));
    background: linear-gradient(to right, #22282d, rgba(188, 188, 188, 0) 75%);
}

.counter__item:nth-child(3):before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0px;
    width: 1px;
    height: 100%;
    background: -webkit-gradient(linear, left top, left bottom, from(#22282d), color-stop(75%, rgba(188, 188, 188, 0)));
    background: linear-gradient(to bottom, #22282d, rgba(188, 188, 188, 0) 75%);
}

.counter__item p {
    width: 100%;
    margin-bottom: 0;
    font-weight: 100;
    font-size: calc(16px + 4 * ((100vw - 320px) / 1440));
    text-transform: initial;
}

.counter__item span {
    color: #94cf14;
    font-weight: 600;
    font-size: calc(30px + 36 * ((100vw - 320px) / 1440));
    line-height: 100%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.counter__number {
    color: #94cf14;
    font-weight: 600;
    font-size: calc(30px + 36 * ((100vw - 320px) / 1440));
    line-height: 100%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}


/*--------------------------------------------------------------
# Team block Styles
--------------------------------------------------------------*/

.team__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.team__item {
    flex-basis: 25%;
    max-width: 25%;
    margin-bottom: 40px;
    padding: 0 15px;
    -ms-flex-preferred-size: 25%;
}

.team__item:hover .team__image:before {
    opacity: 1;
    visibility: visible;
}

.team__item:hover .team__image .team__info {
    opacity: 1;
}

.team__item:hover .team__name {
    opacity: 1;
    -webkit-transition-delay: .15s;
    transition-delay: .15s;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.team__item:hover .team__specialty {
    opacity: 1;
    -webkit-transition-delay: .25s;
    transition-delay: .25s;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.team__item a {
    text-decoration: none;
}

.team__item a:hover .team__image img {
    opacity: 1;
    -webkit-filter: saturate(1);
    filter: saturate(1);
}

.team__image {
    position: relative;
    z-index: 4;
    overflow: hidden;
    height: 492px;
    padding: 0 0 100% 0;
    border-radius: 5px;
    background: #0d1114;
    -webkit-box-shadow: 0px 36px 0px -30px #0d1114, -36px 0px 0px -30px #0d1114, 0px -36px 0px -30px #0d1114, 36px 0px 0px -30px #0d1114, 0 0 0 2px #0d1114;
    box-shadow: 0px 36px 0px -30px #0d1114, -36px 0px 0px -30px #0d1114, 0px -36px 0px -30px #0d1114, 36px 0px 0px -30px #0d1114, 0 0 0 2px #0d1114;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.team__image img {
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.team__image .team__info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 100;
    -webkit-transition: all 0.45s cubic-bezier(0.23, 0.88, 0.34, 0.99);
    transition: all 0.45s cubic-bezier(0.23, 0.88, 0.34, 0.99);
    -webkit-transition-delay: 0.10s;
    transition-delay: 0.10s;
}

.team__image:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    border-radius: 0;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(13, 17, 20, 0.9)), to(rgba(148, 207, 20, 0)));
    background: linear-gradient(0deg, rgba(13, 17, 20, 0.9) 0%, rgba(148, 207, 20, 0) 100%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transition-delay: .15s;
    transition-delay: .15s;
}

.team__name {
    color: #fff;
    font-weight: 700;
    font-size: calc(20px + 2 * ((100vw - 320px) / 1440));
    opacity: 0;
    -webkit-transition: 0.7s cubic-bezier(0.86, 0, 0.07, 1);
    transition: 0.7s cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform: translate(0, 20px);
    transform: translate(0, 20px);
}

.team__specialty {
    color: #bcbcbc;
    font-size: calc(16px + 0 * ((100vw - 320px) / 1440));
    opacity: 0;
    -webkit-transition: 0.7s cubic-bezier(0.86, 0, 0.07, 1);
    transition: 0.7s cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform: translate(0, 20px);
    transform: translate(0, 20px);
}

.modal-custom .modal-team-body {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
}

.modal-custom .modal-team-left {
    -ms-flex: 0 0 200px;
    flex: 0 0 200px;
    opacity: 0;
    -webkit-transition-duration: 0.7s;
    transition-duration: 0.7s;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    -webkit-box-flex: 0;
}

.modal-custom .modal-team-left img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.modal-custom .modal-team-img {
    position: relative;
    height: 300px;
}

.modal-custom .modal-team-img img {
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.modal-custom .modal-team-right {
    width: calc(100% - 220px);
    padding-left: 15px;
    text-align: left;
}

.modal-custom .modal-team-name {
    margin: 0;
    color: #fff;
    font-weight: 700;
    font-size: calc(20px + 2 * ((100vw - 320px) / 1440));
    opacity: 0;
    -webkit-transition-duration: 0.7s;
    transition-duration: 0.7s;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
}

.modal-custom .modal-team-specialty {
    margin: 0 0 10px 0;
    padding: 0 0 10px 0;
    border-bottom: 1px solid #30383f;
    font-size: calc(15px + 1 * ((100vw - 320px) / 1440));
    opacity: 0;
    -webkit-transition-duration: 0.7s;
    transition-duration: 0.7s;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
}

.modal-custom .modal-team-text {
    font-size: 16px;
    line-height: 24px;
    opacity: 0;
    -webkit-transition-duration: 0.7s;
    transition-duration: 0.7s;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
}

.modal-custom .modal-team-text p {
    margin-bottom: 20px;
}

.modal-custom .modal-team-progressbar {
    width: 100%;
    margin-top: 20px;
    font-size: 16px;
    line-height: 24px;
    opacity: 0;
    -webkit-transition-duration: 0.9s;
    transition-duration: 0.9s;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
}


/*--------------------------------------------------------------
# Carousels Home (Last From Blog, People Reviews, Clients)
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Slick Carousel Custom Styles
--------------------------------------------------------------*/

.slider__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
}

.slider__nav a {
    height: 30px;
    padding: 0 15px;
    -webkit-transition: all 0.1s ease !important;
    transition: all 0.1s ease !important;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.slider__nav a:active {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translate(0, 2px) perspective(1px) translateZ(0) skewX(-13deg);
    transform: translate(0, 2px) perspective(1px) translateZ(0) skewX(-13deg);
}

.slider__nav svg {
    width: 24px;
    height: 14px;
    -webkit-transform: perspective(1px) translateZ(0) skewX(13deg);
    transform: perspective(1px) translateZ(0) skewX(13deg);
}


/*--------------------------------------------------------------
# People Reviews Carousel
--------------------------------------------------------------*/

.reviewshome__slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 0;
    margin: 0 -20px;
}

.reviewshome__slider .slick-list {
    padding: 20px 0;
}

.reviewshome__slider .slick-list .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.reviewshome__item {
    height: auto;
    margin: 0 20px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    background: #0d1114;
    -webkit-box-shadow: 0px 36px 0px -34px #0d1114, -32px 0px 0px -30px #0d1114, 0px -32px 0px -30px #0d1114, 32px 0px 0px -30px #0d1114, 0 0 0 2px #0d1114;
    box-shadow: 0px 36px 0px -34px #0d1114, -32px 0px 0px -30px #0d1114, 0px -32px 0px -30px #0d1114, 32px 0px 0px -30px #0d1114, 0 0 0 2px #0d1114;
    outline: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.reviewshome__item:hover {
    border: 1px solid rgba(0, 0, 0, 0);
    -webkit-box-shadow: 0 36px 0 -34px #22282d, -32px 0 0 -30px #22282d, 0 -32px 0 -30px #22282d, 32px 0 0 -30px #22282d, 0 0 0 2px #94cf14;
    box-shadow: 0 36px 0 -34px #22282d, -32px 0 0 -30px #22282d, 0 -32px 0 -30px #22282d, 32px 0 0 -30px #22282d, 0 0 0 2px #94cf14;
    -webkit-transform: translate(0, -3px);
    transform: translate(0, -3px);
}

.reviewshome__item:hover .reviewshome__avatar img {
    -webkit-filter: saturate(1);
    filter: saturate(1);
}

.reviewshome__user {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
}

.reviewshome__avatar {
    position: relative;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
    overflow: hidden;
    width: 100px;
    height: 100px;
    margin-right: 20px;
    border: 2px solid #94cf14;
    border-radius: 100%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-flex: 0;
}

.reviewshome__avatar img {
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    opacity: 1;
    -webkit-filter: saturate(0);
    filter: saturate(0);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.reviewshome__name {
    margin-bottom: 5px;
    color: #94cf14;
    font-size: calc(18px + 2 * ((100vw - 320px) / 1440));
}

.reviewshome__spec {
    font-size: calc(16px + 2 * ((100vw - 320px) / 1440));
}

.reviewshome__text {
    font-style: italic;
}


/*--------------------------------------------------------------
# Clients Carousel
--------------------------------------------------------------*/

.clients {
    position: relative;
}

.clients__slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 0;
    margin: 0 -15px;
}

.clients__slider .slick-list {
    padding: 20px 0;
}

.clients__slider .slick-list .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.clients__image {
    margin: 0 15px;
    padding: 15px 30px;
    -webkit-box-shadow: 0 36px 0 -35px #22282d, -31px 0 0 -30px #22282d, 0 -31px 0 -30px #22282d, 31px 0 0 -30px #22282d, 0 0 0 1px #22282d;
    box-shadow: 0 36px 0 -35px #22282d, -31px 0 0 -30px #22282d, 0 -31px 0 -30px #22282d, 31px 0 0 -30px #22282d, 0 0 0 1px #22282d;
    outline: none;
    text-align: center;
    -webkit-transition: all 0.7s ease;
    transition: all 0.7s ease;
}

.clients__image:hover {
    -webkit-box-shadow: 0 36px 0 -35px #22282d, -31px 0 0 -30px #22282d, 0 -31px 0 -30px #22282d, 31px 0 0 -30px #22282d, 0 0 0 1px #94cf14;
    box-shadow: 0 36px 0 -35px #22282d, -31px 0 0 -30px #22282d, 0 -31px 0 -30px #22282d, 31px 0 0 -30px #22282d, 0 0 0 1px #94cf14;
}

.clients__image.slick-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

.clients__image.slick-slide img {
    -o-object-fit: contain;
    object-fit: contain;
    /*width: 112px;*/
    height: 68px;
}

.slick-dots {
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    padding: 10px 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

.slick-dots li {
    width: 20px;
    height: 9px;
    margin: 0 5px;
    border: 1px solid #30383f;
    border-radius: 2px;
    background: #fff;
    background: linear-gradient(17deg, #22282d 0%, #30383f 100%);
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: perspective(1px) translate(0, 0) translateZ(0) skewX(-13deg);
    transform: perspective(1px) translate(0, 0) translateZ(0) skewX(-13deg);
}

.slick-dots li:hover:before {
    opacity: 1;
    -webkit-transform: perspective(1px) translate(0, -1px) translateZ(0) skewX(0deg);
    transform: perspective(1px) translate(0, -1px) translateZ(0) skewX(0deg);
}

.slick-dots li:before {
    width: 20px;
    height: 9px;
    border-color: #94cf14;
    border-radius: 2px;
    background: linear-gradient(17deg, #62890d 0%, #94cf14 100%);
    -webkit-box-shadow: 0 1px 4px rgba(148, 207, 20, 0.5);
    box-shadow: 0 1px 4px rgba(148, 207, 20, 0.5);
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: perspective(1px) translate(0, -1px) translateZ(0) skewX(0deg);
    transform: perspective(1px) translate(0, -1px) translateZ(0) skewX(0deg);
}

.slick-dots li.slick-active {
    width: 32px;
}

.slick-dots li.slick-active:before {
    width: 32px;
    border-color: #94cf14;
    background: linear-gradient(17deg, #62890d 0%, #94cf14 100%);
    -webkit-box-shadow: 0 1px 4px rgba(148, 207, 20, 0.5);
    box-shadow: 0 1px 4px rgba(148, 207, 20, 0.5);
    opacity: 1;
}


/*--------------------------------------------------------------
# Sign Up For Our Newsletter Home
--------------------------------------------------------------*/

.newsletter {
    position: relative;
    padding: 140px 0;
}

.newsletter__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

.newsletter__title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: center;
    margin-bottom: 80px;
    color: #94cf14;
    font-weight: 600;
    font-size: calc(24px + 16 * ((100vw - 320px) / 1440));
    line-height: 130%;
    text-align: center;
    text-shadow: 0 2px 6px rgba(148, 207, 20, 0.5);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
}

.newsletter__title span {
    color: #fff;
    font-weight: 100;
    text-shadow: 0 2px 6px rgba(255, 255, 255, 0.5);
}

.newsletter__form .dflex {
    justify-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

.newsletter__form .form-item {
    width: 20%;
    margin: 0 20px;
    padding: 10px 0;
}

.newsletter__form .form-item:first-child {
    margin-left: 0;
}

.newsletter__form .form-item:last-child {
    margin-right: 0;
}

.newsletter__form .form-item .input-bg {
    height: 50px;
}

.newsletter__form .form-item .input-bg input {
    height: 48px;
}

.newsletter__form .form-item .btn-active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 50px;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}


/*--------------------------------------------------------------
# Footer Style
--------------------------------------------------------------*/

.footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 60px;
    color: #3c4750;
}

.footer__item {
    width: 25%;
    padding: 60px 25px 0 0;
}

.footer__item:first-child {
    font-size: 14px;
}

.footer__item:first-child p {
    margin: 17px 0 30px;
}

.footer__item-title {
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
}

.footer__item-links {
    margin-top: 30px;
}

.footer__item-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer__item-links ul li {
    padding: 0;
}

.footer__item-links ul li a {
    padding: unset;
    position: relative;
    display: inline-block;
    overflow: hidden;
    margin: 0;
    padding-left: 10px;
    border-color: transparent;
    color: #3c4750;
    font-size: 16px;
    font-weight: unset;
    text-transform: unset;
}

.footer__item-links ul li a:before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 7px;
    height: 4px;
    height: 3px;
    border-radius: 100%;
    background: #3c4750;
    opacity: 1;
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
    -webkit-transform: translate(-4px, 0);
    transform: translate(-4px, 0);
}

.footer__item-links ul li a:hover {
    padding-left: 14px;
    color: #fff;
}

.footer__item-links ul li a:hover:before {
    background: #94cf14;
    -webkit-transform: translate(0px, 0);
    transform: translate(0px, 0);
}

.footer__item-links ul li:before {
    display: none;
}

.footer.black-bg:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    background: url("../img/pattern-1.png");
    opacity: 0.01;
}


/*--------------------------------------------------------------
# Contact Footer Style
--------------------------------------------------------------*/

.contact__block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.contact__info {
    -ms-flex: 0 0 450px;
    flex: 0 0 450px;
    padding-right: 70px;
    font-weight: 300;
    font-size: calc(16px + 4 * ((100vw - 320px) / 1440));
    -webkit-box-flex: 0;
}

.contact__title h3 {
    margin-bottom: 40px;
    color: #fff;
    font-weight: 200;
    font-size: calc(26px + 8 * ((100vw - 320px) / 1440));
    text-transform: uppercase;
    text-shadow: 0 2px 6px rgba(255, 255, 255, 0.5);
}

.contact__title h3 span {
    color: #94cf14;
    font-weight: 600;
    text-shadow: 0 2px 6px rgba(148, 207, 20, 0.5);
}

.contact__phone {
    margin: 30px 0;
    color: #fff;
    font-weight: 200;
    font-size: calc(26px + 8 * ((100vw - 320px) / 1440));
    text-transform: uppercase;
    text-shadow: 0 2px 6px rgba(255, 255, 255, 0.5);
}

.contact__phone span {
    color: #94cf14;
    font-weight: 600;
    text-shadow: 0 2px 6px rgba(148, 207, 20, 0.5);
}

.contact__phone a {
    border-color: transparent;
}

.contact__phone a:hover {
    border-color: #94cf14;
}

.contact .form-input {
    padding: 15px 0;
}

.contact .form-textarea {
    padding: 15px 0 0;
}

.contact__email {
    margin: 20px 0;
}

.contact__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 40px;
}

.contact__social a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-right: 15px;
    border: 2px solid #fff;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

.contact__social a:hover {
    -webkit-transform: translate(0, -2px);
    transform: translate(0, -2px);
}

.contact__social a svg {
    height: 20px;
    fill: #fff;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.contact__social a.facebook:hover {
    border-color: #3b5998;
}

.contact__social a.facebook:hover svg {
    fill: #3b5998;
}

.contact__social a.twitter:hover {
    border-color: #00acee;
}

.contact__social a.twitter:hover svg {
    fill: #00acee;
}

.contact__social a.instagram:hover {
    border-color: #c13584;
}

.contact__social a.instagram:hover svg {
    fill: #c13584;
}

.contact__social a.youtube:hover {
    border-color: #c4302b;
}

.contact__social a.youtube:hover svg {
    fill: #c4302b;
}

.contact__form {
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    -webkit-box-flex: 1;
}

.contact__form .btn-submit {
    margin-top: 30px;
}

.contact__form .form-checkbox {
    flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
}

.contact__form form {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
}

.contact__form-name {
    flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
}

.contact__form-phone {
    flex-basis: 49%;
    -ms-flex-preferred-size: 49%;
}

.contact__form-email {
    flex-basis: 49%;
    -ms-flex-preferred-size: 49%;
}

.contact__form-comment {
    flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
}

.contact__map {
    overflow: hidden;
    margin-bottom: 60px;
    border-radius: 5px;
}

.contact .form-message {
    width: 100%;
}

.contact .form-message .message {
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
}

.contact .form-message .message.showr {
    opacity: 1;
}

.contact .form-input label.error {
    display: none !important;
}

.contact .form-errors {
    display: none !important;
}

.contact .btn-submit {
    position: relative;
}

.contact .btn-submit:before {
    content: "";
    position: absolute;
    top: calc(50% - 10px);
    left: 0;
    z-index: 200;
    width: 20px;
    height: 20px;
    border: 2px solid #94cf14;
    border-top-color: transparent;
    border-radius: 50%;
    opacity: 0;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-animation: animate-preloader2 1s linear infinite;
    animation: animate-preloader2 1s linear infinite;
}

.contact .btn-submit.sending {
    pointer-events: none;
}

.contact .btn-submit.sending input {
    padding-left: 36px;
}

.contact .btn-submit.sending:before {
    left: 10px;
    opacity: 1;
}

.contact .btn-submit.success {
    pointer-events: none;
}

.contact .btn-submit.success input {
    padding-left: 36px;
}

.contact .btn-submit.success:before {
    content: "";
    position: absolute;
    top: calc(50% - 10px);
    left: 10px;
    z-index: 200;
    width: 20px;
    height: 20px;
    border: 0;
    background: url("../img/check.svg") left center no-repeat;
    opacity: 1;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-transform: perspective(1px) translateZ(0) skewX(13deg);
    transform: perspective(1px) translateZ(0) skewX(13deg);
    -webkit-animation: none;
    animation: none;
}

.contact .btn-submit.error {
    border: 1px solid #cf1414 !important;
    background: linear-gradient(17deg, #890d0d 0%, #cf1414 100%) !important;
    -webkit-box-shadow: 0 2px 6px rgba(207, 20, 20, 0.6) !important;
    box-shadow: 0 2px 6px rgba(207, 20, 20, 0.6) !important;
    pointer-events: none;
}

.contact .btn-submit.error:after {
    border: 1px solid #cf1414 !important;
    background: linear-gradient(17deg, #890d0d 0%, #cf1414 100%) !important;
}

.contact .btn-submit.error input {
    padding-left: 36px;
}

.contact .btn-submit.error:before {
    content: "";
    position: absolute;
    top: calc(50% - 10px);
    left: 10px;
    z-index: 200;
    width: 20px;
    height: 20px;
    border: 0;
    background: url("../img/error.svg") left center no-repeat;
    opacity: 1;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-transform: perspective(1px) translateZ(0) skewX(13deg);
    transform: perspective(1px) translateZ(0) skewX(13deg);
    -webkit-animation: none;
    animation: none;
}


/*--------------------------------------------------------------
# About Page Style
--------------------------------------------------------------*/

.about .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.about__text {
    width: 70%;
    padding-left: 30px;
    font-weight: 500;
    font-size: calc(14px + 4 * ((100vw - 320px) / 1440));
    line-height: 160%;
}

.about__text h1 {
    font-size: calc(24px + 26 * ((100vw - 320px) / 1440));
}

.about__image {
    position: relative;
    overflow: hidden;
    width: 30%;
    height: 660px;
    border-radius: 5px;
}

.about__image img {
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.about .why-trust__block {
    width: 100%;
}

.about .counter {
    width: 100%;
    border-radius: 0;
}

.about .counter__item {
    width: 25%;
}

.about .counter__item:before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 1px;
    height: 100%;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(188, 188, 188, 0)), color-stop(50%, #22282d), to(rgba(188, 188, 188, 0)));
    background: linear-gradient(to top, rgba(188, 188, 188, 0) 0%, #22282d 50%, rgba(188, 188, 188, 0) 100%);
}

.about .counter__item:last-child:before {
    display: none;
}

.about .counter__item:after {
    display: none;
}


/*--------------------------------------------------------------
# Services Page Style
--------------------------------------------------------------*/

.services__block a {
    display: block;
    height: 100%;
    padding-bottom: 30px;
    border: 0;
}

.services__block.center {
    text-align: center;
}

.services__block.center .services__item-img {
    width: auto;
    margin: 0 auto;
}

.services__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    margin-bottom: 30px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    -ms-flex-align: start;
}

.services__item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border: 1px solid #94cf14;
    border-radius: 6px;
    background: linear-gradient(17deg, #62890d 0%, #94cf14 100%);
    -webkit-box-shadow: 0 3px 10px rgba(148, 207, 20, 0.5);
    box-shadow: 0 3px 10px rgba(148, 207, 20, 0.5);
    opacity: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.services__item:hover {
    -webkit-transform: translate(0, -5px);
    transform: translate(0, -5px);
}

.services__item:hover:before {
    overflow: visible;
    opacity: 1;
}

.services__item:hover .services__item-img .icon-svg {
    fill: #fff;
}

.services__item:hover .services__item-desc-title,
.services__item:hover .services__item-desc-text {
    color: #fff;
}

.services__item-img {
    -ms-flex: 0 0 82px;
    flex: 0 0 82px;
    width: 82px;
    -webkit-box-flex: 0;
}

.services__item-img .icon-svg {
    font-size: 3.917em;
    fill: #94cf14;
}

.services__item-desc-title {
    margin: 20px 0;
    color: #fff;
    font-weight: 700;
    font-size: calc(20px + 4 * ((100vw - 320px) / 1440));
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.services__item-desc-text {
    font-weight: 300;
}

.services .container {
    overflow: hidden;
}

.services .tab-content {
    padding: 0;
}

.services .tab-content:hover .services__image img {
    -webkit-filter: saturate(1);
    filter: saturate(1);
}

.services .tab-content .services__image {
    position: relative;
    -ms-flex: 0 0 564px;
    flex: 0 0 564px;
    overflow: hidden;
    height: 395px;
    border-radius: 5px;
    -webkit-box-flex: 0;
}

.services .tab-content .services__image img {
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.services .tab-content .services__text {
    width: 100%;
    padding-left: 30px;
}

.services .tab-content h2 {
    margin-bottom: 20px;
    font-weight: 700;
}

.services .tab-content.active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}


/*--------------------------------------------------------------
# Portfolio Page Style
--------------------------------------------------------------*/

.portfolio .filter-button .tab-link {
    padding: 15px 0;
}

.portfolio .grid-portfolio {
    display: grid;
    justify-content: space-between;
    margin: 0 -1%;
    padding: 0 0 40px 0;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
}

.portfolio .grid-portfolio .portfolio-item {
    overflow: hidden;
    width: 23%;
    margin: 0 1% 2%;
    font-size: 18px;
}

.portfolio .grid-portfolio .portfolio-item:hover .portfolio-image img {
    opacity: 0.1;
}

.portfolio .grid-portfolio .portfolio-item:hover .portfolio-title {
    color: #fff;
    -webkit-transform: translate(0, 5px);
    transform: translate(0, 5px);
}

.portfolio .grid-portfolio .portfolio-item:hover .portfolio-subtitle {
    overflow: visible;
    opacity: 1;
    -webkit-transform: translate(0, 20px);
    transform: translate(0, 20px);
}

.portfolio .grid-portfolio .portfolio-item .portfolio-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 480px;
    border-radius: 5px;
    background: #000;
}

.portfolio .grid-portfolio .portfolio-item .portfolio-image img {
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    -webkit-transition: all 0.8s ease;
    transition: all 0.8s ease;
}

.portfolio .grid-portfolio .portfolio-item .portfolio-title {
    margin: 24px 0 5px 0;
    color: #898989;
    font-weight: 200;
    font-size: 28px;
    line-height: 34px;
    text-align: center;
    -webkit-transition: 0.7s cubic-bezier(0.86, 0, 0.07, 1);
    transition: 0.7s cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.portfolio .grid-portfolio .portfolio-item .portfolio-subtitle {
    overflow: hidden;
    color: #898989;
    font-weight: 200;
    opacity: 0;
    -webkit-transition: 0.7s cubic-bezier(0.86, 0, 0.07, 1);
    transition: 0.7s cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.portfolio .grid-portfolio .portfolio-item a {
    position: relative;
    display: block;
    border: 0;
}

.portfolio .grid-portfolio .portfolio-item .portfolio-desc {
    position: absolute;
    bottom: -1px;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}


/*--------------------------------------------------------------
# Portfolio Carousel Home
--------------------------------------------------------------*/

.portfolio__block {
    position: relative;
    padding: 0 5px;
}

.portfolio__item {
    position: relative;
    overflow: hidden;
    height: calc(400px + 250 * ((75vw - 320px) / 1120));
    border: 5px solid #0d1114;
}

.portfolio__item:hover .portfolio__desc {
    opacity: 1;
    visibility: visible;
}

.portfolio__item:hover .portfolio__desc .portfolio__text {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0, 6px);
    transform: translate(0, 6px);
}

.portfolio__item:hover .portfolio__desc .portfolio__title {
    -webkit-transform: translate(0, 10px);
    transform: translate(0, 10px);
}

.portfolio__item:hover .portfolio__image img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.portfolio__item:hover .portfolio__image:before {
    opacity: 1;
}

.portfolio__image {
    position: relative;
    height: 100%;
}

.portfolio__image:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-filter: blur(8px);
    filter: blur(8px);
    -webkit-transition: all 3s cubic-bezier(0.19, 1, 0.22, 1) 0ms;
    transition: all 3s cubic-bezier(0.19, 1, 0.22, 1) 0ms;
    -webkit-backdrop-filter: blur(2px) saturate(80%);
    backdrop-filter: blur(2px) saturate(80%);
}

.portfolio__image img {
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    -webkit-transition: all 3s cubic-bezier(0.19, 1, 0.22, 1) 0ms;
    transition: all 3s cubic-bezier(0.19, 1, 0.22, 1) 0ms;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.portfolio__desc {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 20;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

.portfolio__title {
    margin-bottom: 2%;
    font-weight: 200;
    font-size: calc(24px + 16 * ((100vw - 320px) / 1440));
    line-height: 100%;
    text-align: center;
    text-shadow: 0 2px 6px rgba(255, 255, 255, 0.5);
    -webkit-transition: 0.7s cubic-bezier(0.86, 0, 0.07, 1);
    transition: 0.7s cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.portfolio__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: center;
    color: #bcbcbc;
    font-weight: 300;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.7s cubic-bezier(0.86, 0, 0.07, 1);
    transition: 0.7s cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transform: translate(0, -16px);
    transform: translate(0, -16px);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

.portfolio__text span {
    margin: 0 15px 0 0;
}

.portfolio__text span:after {
    content: "/";
    margin-left: 15px;
    color: #94cf14;
    font-weight: 900;
}

.portfolio__text span:last-child:after {
    display: none;
    margin: 0;
}

.portfolio .slick-dots {
    bottom: -40px;
}

.portfolio .portfolio__nav svg {
    width: 54px;
    height: 34px;
    opacity: 0.5;
    -webkit-transform: perspective(0px) translateZ(0) skewX(0deg);
    transform: perspective(0px) translateZ(0) skewX(0deg);
}

.portfolio .portfolio__nav a.prev-button {
    position: absolute;
    top: 5px;
    left: 0;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 255px;
    height: calc(100% - 10px);
    border: 0;
    background: -webkit-gradient(linear, left top, right top, color-stop(0, #000), to(transparent));
    background: linear-gradient(90deg, #000 0, transparent);
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

.portfolio .portfolio__nav a.prev-button:hover svg {
    opacity: 1;
}

.portfolio .portfolio__nav a.prev-button:active svg {
    -webkit-transform: translate(-10px, 0);
    transform: translate(-10px, 0);
}

.portfolio .portfolio__nav a.next-button {
    position: absolute;
    top: 5px;
    right: 0;
    z-index: 10;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 255px;
    height: calc(100% - 10px);
    border: 0;
    background: -webkit-gradient(linear, right top, left top, color-stop(0, #000), to(transparent));
    background: linear-gradient(270deg, #000 0, transparent);
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

.portfolio .portfolio__nav a.next-button:hover svg {
    opacity: 1;
}

.portfolio .portfolio__nav a.next-button:active svg {
    -webkit-transform: translate(10px, 0);
    transform: translate(10px, 0);
}


/*--------------------------------------------------------------
# Portfolio Project Page Style
--------------------------------------------------------------*/

.project__block {
    padding: 0 8.33333333%;
}

.project__block h1 {
    color: #fff;
    font-size: calc(24px + 6 * ((100vw - 320px) / 1440));
}

.project__block-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.project__block-top.sidebar-left {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
}

.project__block-top.sidebar-left .sidebar {
    padding-right: 30px;
    padding-left: 0;
}

.project__block-top.full-width {
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
}

.project__block-top.full-width .project__gallery {
    flex-basis: 100%;
    max-width: 100%;
    margin-top: 60px;
    padding: 0 16.666667%;
    -ms-flex-preferred-size: 100%;
}

.project__block-top.full-width .project__gallery .project__gallery-col {
    margin: 0 -100px 30px;
}

.project__block-top.full-width .project__gallery .project__gallery-col-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin: 0 -100px;
    margin-bottom: 30px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
}

.project__block-top.full-width .project__gallery .project__gallery-col-2 a {
    width: 48%;
}

.project__block-top.full-width .project__gallery a {
    border: 0;
}

.project__block-top.full-width .project__gallery a:hover {
    opacity: 0.8;
}

.project__block-top.full-width .project__gallery a img {
    width: 100%;
    border-radius: 6px;
}

.project__block-top.full-width .sidebar {
    flex-basis: 100%;
    max-width: 100%;
    padding: 0 16.666667%;
    -ms-flex-preferred-size: 100%;
}

.project__block-top.full-width .sidebar .sidebar__info-title {
    font-weight: 700;
}

.project__block-top.full-width .sidebar__info-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-radius: 6px;
    background: linear-gradient(17deg, #22282d 0%, #30383f 100%);
    -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

.project__block-top.full-width .sidebar__info-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 33.333333%;
    padding: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: #94cf14;
    font-weight: 400;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
}

.project__block-top.full-width .sidebar__info-list li:nth-child(4) {
    border: 0;
}

.project__block-top.full-width .sidebar__info-list li:nth-child(5) {
    border: 0;
}

.project__block-top.full-width .sidebar__info-list li:nth-child(6) {
    border: 0;
}

.project__block-top.full-width .sidebar__info-list li a {
    border-color: #bcbcbc;
    color: #bcbcbc;
}

.project__block-top.full-width .sidebar__info-list li span {
    padding-left: 0;
    color: #bcbcbc;
    font-weight: 700;
    text-align: left;
}

.project__gallery {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-basis: 66.66666667%;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
    max-width: 66.66666667%;
    -ms-flex-preferred-size: 66.66666667%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
}

.project__gallery .zoom-img {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 8;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 0 5px;
    background: rgba(0, 0, 0, 0.6);
    pointer-events: none;
    -webkit-transition: 0.5s cubic-bezier(0.86, 0, 0.07, 1);
    transition: 0.5s cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

.project__gallery .zoom-img .icon-svg {
    width: 20px;
    fill: #94cf14;
}

.project__gallery .project-slider {
    height: auto;
    margin-bottom: 20px;
    background: #0d1114;
}

.project__gallery .project-slider .project-slider-item {
    position: relative;
    overflow: hidden;
    height: 450px;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.project__gallery .project-slider .project-slider-item:hover {
    opacity: 0.5 !important;
}

.project__gallery .project-slider .project-slider-item img {
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.project__gallery .project-nav {
    margin: 0 -10px;
    padding-bottom: 40px;
}

.project__gallery .project-nav .project-nav-item {
    position: relative;
    overflow: hidden;
    height: 130px;
    margin: 0 10px;
    border-radius: 3px;
    background: #0d1114;
    outline: none;
    -webkit-filter: saturate(0);
    filter: saturate(0);
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.project__gallery .project-nav .project-nav-item img {
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.project__gallery .project-nav .project-nav-item.slick-current,
.project__gallery .project-nav .project-nav-item:hover {
    opacity: 1;
    -webkit-filter: saturate(1);
    filter: saturate(1);
}

.project__gallery .project-nav .project-nav-item.slick-current img,
.project__gallery .project-nav .project-nav-item:hover img {
    opacity: 1;
}

.fancybox-thumbs__list a {
    border: 0;
}

.fancybox-thumbs__list a::before {
    border: 2px solid #94cf14 !important;
}

.fancybox-thumbs {
    background: #0d1114 !important;
}


/*--------------------------------------------------------------
# SideBar Blog Page Style
--------------------------------------------------------------*/

.sidebar {
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
    padding-left: 30px;
    -ms-flex-preferred-size: 33.33333333%;
}

.sidebar .sidebar__info-title {
    margin-bottom: 20px;
    color: #fff;
    font-weight: 300;
    font-size: calc(20px + 6 * ((100vw - 320px) / 1440));
}

.sidebar ul.sidebar__info-list {
    padding: 0;
}

.sidebar ul.sidebar__info-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    border-bottom: 1px solid #22282d;
    color: #94cf14;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
}

.sidebar ul.sidebar__info-list li span {
    padding-left: 10px;
    color: #bcbcbc;
    text-align: right;
}

.sidebar ul.sidebar__info-list li:before {
    display: none;
}

.sidebar ul.sidebar__info-list li:last-child {
    border: 0;
}

.sidebar__info-posts {
    margin-bottom: 30px;
    background: #0d1114;
}

.sidebar__info-posts-item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
    border: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.sidebar__info-posts-item a:hover {
    -webkit-transform: translate(0, -3px);
    transform: translate(0, -3px);
}

.sidebar__info-posts-item a:hover img {
    opacity: 1;
}

.sidebar__info-posts-img {
    position: relative;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
    overflow: hidden;
    width: 80px;
    height: 80px;
    margin-right: 10px;
    border-radius: 3px;
    background: #0d1114;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-flex: 0;
}

.sidebar__info-posts-img img {
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.sidebar__info-posts-desc {
    color: #bcbcbc;
    font-size: 14px;
    line-height: 20px;
}

.sidebar__info-posts-desc h3 {
    margin-bottom: 10px;
    font-size: calc(15px + 1 * ((100vw - 320px) / 1440));
}

.sidebar__info-posts-desc p {
    margin: 0;
}

.sidebar__search {
    position: relative;
    margin-bottom: 20px;
}

.sidebar__search form {
    width: 100%;
}

.sidebar__search input {
    width: 100%;
    height: 50px;
    border-width: 1px !important;
}

.sidebar__search button {
    position: absolute;
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 0;
    background: 0 0;
    outline: 0;
    opacity: 0.5;
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

.sidebar__search button:hover {
    opacity: 1;
}

.sidebar__search button .icon-svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.sidebar__info-categories {
    padding: 0;
}

.sidebar__info-categories li {
    margin: 0;
    padding: 0;
}

.sidebar__info-categories li:before {
    display: none;
}

.sidebar__info-categories li a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #171b1e;
    color: #bcbcbc;
}

.sidebar__info-categories li a:hover {
    padding-left: 5px;
    color: #94cf14;
}

.sidebar__info-categories li:last-child a {
    border: 0;
}

.sidebar__info-tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.sidebar__info-tags a {
    height: 28px;
    margin-bottom: 6px;
    padding: 0 10px;
    font-weight: 400;
    font-size: 13px;
}


/*--------------------------------------------------------------
# Blog Page Style
--------------------------------------------------------------*/

.blog__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 8.33333333%;
}

.blog__body.sidebar-left {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
}

.blog__body.sidebar-left .sidebar {
    padding-right: 30px;
    padding-left: 0;
}

.blog__body.blog-grid {
    display: block;
    padding: 0;
}

.blog__body.blog-grid .blog__item {
    position: relative;
    margin-bottom: 30px;
}

.blog__body.blog-grid .blog__item .blog-grid__img {
    height: 100%;
}

.blog__body.blog-grid .blog__item .blog-grid__img a {
    position: relative;
    display: block;
    overflow: hidden;
    height: 100%;
    border-radius: 6px;
}

.blog__body.blog-grid .blog__item .blog-grid__img a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(13, 17, 20, 0.9)), to(rgba(148, 207, 20, 0)));
    background: linear-gradient(0deg, rgba(13, 17, 20, 0.9) 0%, rgba(148, 207, 20, 0) 100%);
}

.blog__body.blog-grid .blog__item .blog-grid__img img {
    vertical-align: middle;
    width: 100%;
}

.blog__body.blog-grid .blog__item .blog-grid__desc {
    position: absolute;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    width: 100%;
    padding: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
}

.blog__body.blog-grid .blog__item .blog-grid__desc .blog-grid__category {
    font-size: 16px;
    -webkit-transition: 0.7s cubic-bezier(0.86, 0, 0.07, 1);
    transition: 0.7s cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transform: translate(0, 40px);
    transform: translate(0, 40px);
}

.blog__body.blog-grid .blog__item .blog-grid__desc h2 {
    font-size: 24px;
    -webkit-transition: 0.7s cubic-bezier(0.86, 0, 0.07, 1);
    transition: 0.7s cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transform: translate(0, 40px);
    transform: translate(0, 40px);
}

.blog__body.blog-grid .blog__item .blog-grid__desc .blog-grid__showmore {
    opacity: 0;
    -webkit-transition: 0.7s cubic-bezier(0.86, 0, 0.07, 1);
    transition: 0.7s cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transform: translate(0, 10px);
    transform: translate(0, 10px);
}

.blog__body.blog-grid .blog__item .blog-grid__desc .blog-grid__showmore a {
    padding: 6px 20px;
    border: 1px solid #94cf14;
    border-radius: 3px;
    color: #94cf14;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

.blog__body.blog-grid .blog__item .blog-grid__desc .blog-grid__showmore a:hover {
    background: #94cf14;
    color: #fff;
}

.blog__body.blog-grid .blog__item a {
    border: 0;
}

.blog__body.blog-grid .blog__item:hover .blog-grid__category {
    -webkit-transform: translate(0, -40px);
    transform: translate(0, -40px);
}

.blog__body.blog-grid .blog__item:hover h2 {
    -webkit-transform: translate(0, -40px);
    transform: translate(0, -40px);
}

.blog__body.blog-grid .blog__item:hover .blog-grid__showmore {
    opacity: 1;
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
    -webkit-transform: translate(0, -20px);
    transform: translate(0, -20px);
}

.blog__body.blog-grid .pagination {
    justify-content: center;
    margin-top: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
}

.blog__block {
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
    -ms-flex-preferred-size: 66.66666667%;
}

.blog__item {
    margin-bottom: 80px;
}

.blog__item:hover .blog__image img,
.blog__item:hover .blog__stats {
    opacity: 1;
}

.blog__image {
    position: relative;
    overflow: hidden;
    height: 350px;
    border-radius: 5px;
    background: #0d1114;
}

.blog__image img {
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.blog__title {
    margin: 20px 0;
}

.blog__title h2 {
    font-size: calc(24px + 6 * ((100vw - 320px) / 1440));
}

.blog__title h2 a {
    border: 0;
}

.blog__title h2 a:hover {
    color: #94cf14;
}

.blog__desc {
    margin-bottom: 20px;
}

.blog__stats {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 0 20px 0;
    font-size: 14px;
    opacity: 0.3;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.blog__stats span a {
    border-width: 1px;
}

.blog__stats span:after {
    content: "/";
    margin: 0 10px;
    color: #94cf14;
    font-weight: 400;
}

.blog__stats span:last-child:after {
    display: none;
}


/*--------------------------------------------------------------
# Last From Blog Carousel Home
--------------------------------------------------------------*/

.bloghome__slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-width: 0;
    margin: 0 -15px;
}

.bloghome__slider .slick-list {
    padding: 20px 0;
}

.bloghome__slider .slick-list .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.bloghome__item {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
    height: auto;
    margin: 0 15px;
    border-radius: 5px;
    background: #0d1114;
    -webkit-box-shadow: 0px 36px 0px -34px #0d1114, -32px 0px 0px -30px #0d1114, 0px -32px 0px -30px #0d1114, 32px 0px 0px -30px #0d1114, 0 0 0 2px #0d1114;
    box-shadow: 0px 36px 0px -34px #0d1114, -32px 0px 0px -30px #0d1114, 0px -32px 0px -30px #0d1114, 32px 0px 0px -30px #0d1114, 0 0 0 2px #0d1114;
    outline: none;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
}

.bloghome__item:hover {
    -webkit-box-shadow: 0 36px 0 -34px #22282d, -32px 0 0 -30px #22282d, 0 -32px 0 -30px #22282d, 32px 0 0 -30px #22282d, 0 0 0 2px #94cf14;
    box-shadow: 0 36px 0 -34px #22282d, -32px 0 0 -30px #22282d, 0 -32px 0 -30px #22282d, 32px 0 0 -30px #22282d, 0 0 0 2px #94cf14;
    -webkit-transform: translate(0, -3px);
    transform: translate(0, -3px);
}

.bloghome__item:hover .bloghome__image img {
    opacity: 1;
}

.bloghome__item:hover .bloghome__btn {
    opacity: 1;
}

.bloghome__item:hover .bloghome__text {
    color: #bcbcbc;
}

.bloghome__image {
    position: relative;
    height: 244px;
    background: #0d1114;
}

.bloghome__image img {
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.bloghome h4 {
    overflow: hidden;
    height: 55px;
    margin: 20px 0;
    padding: 0 15px;
}

.bloghome h4 a {
    border: 0;
}

.bloghome h4 a:hover {
    color: #94cf14;
}

.bloghome__text {
    padding: 0 15px 15px;
    color: #656565;
    font-size: calc(15px + 1 * ((100vw - 320px) / 1440));
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.bloghome__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
    align-items: flex-end;
    margin: 20px 15px;
    opacity: 0.2;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-box-flex: 1;
    -webkit-box-align: end;
    -ms-flex-align: end;
}


/*--------------------------------------------------------------
# Blog Details Page Style
--------------------------------------------------------------*/

.blog-page .blog__image img {
    opacity: 1;
    -webkit-filter: saturate(1);
    filter: saturate(1);
}

.blog-page .comments__body {
    margin-top: 30px;
}

.blog-page .author,
.profile .author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: flex-start;
    margin: 0 2px 80px 2px;
    padding: 35px;
    border-radius: 5px;
    background: #0d1114;
    -webkit-box-shadow: 0 36px 0 -34px #22282d, -32px 0 0 -30px #22282d, 0 -32px 0 -30px #22282d, 32px 0 0 -30px #22282d, 0 0 0 2px #94cf14;
    box-shadow: 0 36px 0 -34px #22282d, -32px 0 0 -30px #22282d, 0 -32px 0 -30px #22282d, 32px 0 0 -30px #22282d, 0 0 0 2px #94cf14;
    -webkit-box-align: start;
    -ms-flex-align: start;
}

.blog-page .author__avatar,
.profile .author__avatar {
    position: relative;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
    overflow: hidden;
    width: 100px;
    height: 100px;
    margin-right: 30px;
    border: 2px solid #94cf14;
    border-radius: 100%;
    -webkit-box-flex: 0;
}

.blog-page .author__avatar img,
.profile .author__avatar img {
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    -webkit-filter: saturate(0);
    filter: saturate(0);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.blog-page .author .author__desc .author__name a,
.profile .author .author__desc .author__name a {
    display: inline-block;
    margin-bottom: 10px;
    border: 0;
    color: #94cf14;
    font-size: 20px;
}

.blog-page .author .author__desc p,
.profile .author .author__desc p {
    margin: 0;
}

.blog-page .author:hover .author__avatar img,
.profile .author:hover .author__avatar img {
    -webkit-filter: saturate(1);
    filter: saturate(1);
}

.blog-page .comments__item {
    margin-bottom: 25px;
    border-bottom: 1px solid #22282d;
}

.blog-page .comments__item:last-child {
    border: 0;
}

.blog-page .comments__item:hover .comments__avatar img {
    -webkit-filter: saturate(1);
    filter: saturate(1);
}

.blog-page .comments__item.reply {
    padding-left: 70px;
}

.blog-page .comments__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
}

.blog-page .comments__author {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
}

.blog-page .comments__avatar {
    position: relative;
    -ms-flex: 0 0 70px;
    flex: 0 0 70px;
    overflow: hidden;
    width: 70px;
    height: 70px;
    margin-right: 20px;
    border: 2px solid #94cf14;
    border-radius: 100%;
    -webkit-box-flex: 0;
}

.blog-page .comments__avatar img {
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    -webkit-filter: saturate(0);
    filter: saturate(0);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.blog-page .comments__name-title {
    display: inline-block;
    border: 0;
    color: #94cf14;
    font-size: 20px;
}

.blog-page .comments__name-date {
    color: #434f59;
    font-size: 14px;
}

.blog-page .comments__reply a {
    height: 28px;
    margin-bottom: 6px;
    padding: 0 10px;
    font-weight: 400;
    font-size: 13px;
}

.blog-page .comments__text {
    padding: 15px 0 25px 0;
}

.blog-page .leave-reply {
    margin: 70px 0;
}

.blog-page .leave-reply__body input,
.blog-page .leave-reply__body textarea {
    border-width: 1px;
}

.blog-page .blog__title {
    margin-bottom: 10px;
    color: #fff;
    font-size: calc(18px + 10 * ((100vw - 320px) / 1440));
}


/*--------------------------------------------------------------
# Simple Page Style
--------------------------------------------------------------*/

.page__body {
    padding: 0 16.66666667%;
}

.page__image {
    position: relative;
    overflow: hidden;
    height: 350px;
    border-radius: 5px;
}

.page__image img {
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.page__title {
    margin: 20px 0;
}

.page__title h2 {
    font-size: calc(24px + 6 * ((100vw - 320px) / 1440));
}

.page__desc {
    margin-bottom: 20px;
}


/*--------------------------------------------------------------
# Pagination Style
--------------------------------------------------------------*/

.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
}

.pagination a {
    padding: 0 15px;
}

.pagination a.active {
    position: relative;
    border: 1px solid #94cf14;
    color: #fff;
}

.pagination a.active:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 2px;
    background: linear-gradient(17deg, #62890d 0%, #94cf14 100%);
    opacity: 1;
}


/*--------------------------------------------------------------
# Modal Custom Theme Styles
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Custom Modal Style
--------------------------------------------------------------*/

.modal-custom .modal-custom-body {
    position: relative;
    text-align: center;
}

.modal-custom .modal-custom-title {
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
    font-size: calc(18px + 6 * ((100vw - 320px) / 1440));
    opacity: 0;
    -webkit-transition-duration: 0.7s;
    transition-duration: 0.7s;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
}

.modal-custom .modal-custom-desc {
    opacity: 0;
    -webkit-transition-duration: 0.7s;
    transition-duration: 0.7s;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
}

.modal-custom .modal-custom-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #3c4750;
    opacity: 0;
    -webkit-transition-duration: 0.7s;
    transition-duration: 0.7s;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    -webkit-box-pack: end;
    -ms-flex-pack: end;
}

.modal-custom .modal-custom-bottom a {
    margin: 0 0 0 10px;
}

.fancybox-slide--current .modal-custom .modal-custom-title {
    opacity: 1;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.fancybox-slide--current .modal-custom .modal-custom-bottom {
    opacity: 1;
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.fancybox-slide--current .modal-custom .modal-custom-desc {
    opacity: 1;
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.modal-default.fancybox-content {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    padding: 25px 30px;
    border-radius: 5px;
    background: linear-gradient(17deg, #22282d 0%, #30383f 100%);
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: translateY(-150px);
    transform: translateY(-150px);
}

.modal-default .modal-defautl-body {
    position: relative;
    text-align: center;
}

.modal-default .modal-defautl-title {
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
    font-size: calc(18px + 6 * ((100vw - 320px) / 1440));
}

.modal-default .modal-defautl-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #3c4750;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
}

.modal-default .modal-defautl-bottom a {
    margin: 0 0 0 10px;
}


/*--------------------------------------------------------------
# Team Modal Style
--------------------------------------------------------------*/

.fancybox-slide--current .modal-custom.fancybox-content,
.fancybox-slide--current .modal-default.fancybox-content,
.fancybox-slide--current .modal-custom.fancybox-content:before,
.fancybox-slide--current .modal-custom .modal-team-left,
.fancybox-slide--current .modal-custom .modal-team-name,
.fancybox-slide--current .modal-custom .modal-team-specialty,
.fancybox-slide--current .modal-custom .modal-team-progressbar,
.fancybox-slide--current .modal-custom .modal-team-text {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.fancybox-slide--current .modal-custom .modal-team-left {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.fancybox-slide--current .modal-custom .modal-team-name {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.fancybox-slide--current .modal-custom .modal-team-specialty {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.fancybox-slide--current .modal-custom .modal-team-text {
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
}

.fancybox-slide--current .modal-custom .modal-team-progressbar {
    -webkit-transition-delay: 0.9s;
    transition-delay: 0.9s;
}

.fancybox-slide--current .modal-custom.fancybox-content:before {
    opacity: 1;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}


/*--------------------------------------------------------------
# Modal Custom Theme Style 1
--------------------------------------------------------------*/

.modal-custom.fancybox-content {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 600px;
    padding: 25px 30px;
    border: 1px solid #30383f;
    border-radius: 5px;
    background: linear-gradient(17deg, #22282d 0%, #30383f 100%);
    -webkit-box-shadow: 0 36px 0 -34px #22282d, -32px 0 0 -30px #22282d, 0 -32px 0 -30px #22282d, 32px 0 0 -30px #22282d, 0 0 0 2px #94cf14;
    box-shadow: 0 36px 0 -34px #22282d, -32px 0 0 -30px #22282d, 0 -32px 0 -30px #22282d, 32px 0 0 -30px #22282d, 0 0 0 2px #94cf14;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transform: translateY(-150px);
    transform: translateY(-150px);
}

.modal-custom.fancybox-content:before {
    content: "";
    position: absolute;
    top: -50%;
    left: 0px;
    z-index: 0;
    width: 100%;
    min-width: 470px;
    height: 100%;
    border-radius: 100% 20% 200% 100%;
    background: #242b30;
    opacity: 0;
    -webkit-transition-duration: 2s;
    transition-duration: 2s;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-transform: translateY(-150px);
    transform: translateY(-150px);
}


/*--------------------------------------------------------------
# Modal Custom Theme Style 2
--------------------------------------------------------------*/

.modal-custom.theme2.fancybox-content {
    background: linear-gradient(17deg, #8E2DE2 0, #4A00E0 100%);
    color: #fff;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-custom.theme2.fancybox-content:before {
    background: rgba(255, 255, 255, 0.1);
}

.modal-custom.theme2 .modal-custom-bottom {
    border-color: rgba(255, 255, 255, 0.1);
}


/*--------------------------------------------------------------
# Modal Custom Theme Style 3
--------------------------------------------------------------*/

.modal-custom.theme3.fancybox-content {
    background: linear-gradient(17deg, #00B4DB 0, #0083B0 100%);
    color: #fff;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-custom.theme3.fancybox-content:before {
    background: rgba(255, 255, 255, 0.1);
}

.modal-custom.theme3 .modal-custom-bottom {
    border-color: rgba(255, 255, 255, 0.1);
}


/*--------------------------------------------------------------
# Modal Custom Theme Style 4
--------------------------------------------------------------*/

.modal-custom.theme4.fancybox-content {
    background: linear-gradient(17deg, #DA4453 0, #89216B 100%);
    color: #fff;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-custom.theme4.fancybox-content:before {
    background: rgba(255, 255, 255, 0.1);
}

.modal-custom.theme4 .modal-custom-bottom {
    border-color: rgba(255, 255, 255, 0.1);
}


/*--------------------------------------------------------------
# Modal Custom Theme Style 5
--------------------------------------------------------------*/

.modal-custom.theme5.fancybox-content {
    background: linear-gradient(17deg, #f12711 0, #f5af19 100%);
    color: #fff;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-custom.theme5.fancybox-content:before {
    background: rgba(255, 255, 255, 0.1);
}

.modal-custom.theme5 .modal-custom-bottom {
    border-color: rgba(255, 255, 255, 0.1);
}


/*--------------------------------------------------------------
# Modal Custom Theme Style 6
--------------------------------------------------------------*/

.modal-custom.theme6.fancybox-content {
    background: linear-gradient(17deg, #00F260 0, #0575E6 100%);
    color: #fff;
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-custom.theme6.fancybox-content:before {
    background: rgba(255, 255, 255, 0.1);
}

.modal-custom.theme6 .modal-custom-bottom {
    border-color: rgba(255, 255, 255, 0.1);
}

.fancybox-bg {
    background: #141a1e !important;
}

.fancybox-is-open .fancybox-bg {
    opacity: 0.97 !important;
}


/*--------------------------------------------------------------
# ProgressBar Style
--------------------------------------------------------------*/

.progressbar-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 150px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
}

.progressbar-block .progressbar-item {
    width: 100%;
    margin-bottom: 50px;
}

.progress-bar {
    margin-bottom: 30px;
}

.progress-bar .single-progress {
    position: relative;
}

.progress-bar .single-progress.custom-color--1 .progress-bar {
    position: relative;
    height: 100%;
    background: linear-gradient(17deg, #980a49 0, #e00f6c 100%);
    -webkit-box-shadow: 0 2px 6px rgba(224, 15, 108, 0.5);
    box-shadow: 0 2px 6px rgba(224, 15, 108, 0.5);
}

.progress-bar .single-progress.custom-color--2 .progress-bar {
    position: relative;
    height: 100%;
    background: linear-gradient(17deg, #00678f 0, #009edb 100%);
    -webkit-box-shadow: 0 2px 6px rgba(0, 158, 219, 0.5);
    box-shadow: 0 2px 6px rgba(0, 158, 219, 0.5);
}

.progress-bar .single-progress.custom-color--3 .progress-bar {
    position: relative;
    height: 100%;
    background: linear-gradient(17deg, #b26200 0, #fe8c00 100%);
    -webkit-box-shadow: 0 2px 6px rgba(254, 140, 0, 0.5);
    box-shadow: 0 2px 6px rgba(254, 140, 0, 0.5);
}

.progress-bar .single-progress.custom-color--4 .progress-bar {
    position: relative;
    height: 100%;
    background: linear-gradient(17deg, #6718ab 0, #8e2de2 100%);
    -webkit-box-shadow: 0 2px 6px rgba(142, 45, 226, 0.5);
    box-shadow: 0 2px 6px rgba(142, 45, 226, 0.5);
}

.progress-bar .single-progress.custom-color--5 .progress-bar {
    position: relative;
    height: 100%;
    background: linear-gradient(17deg, #7e0d20 0, #c31432 100%);
    -webkit-box-shadow: 0 2px 6px rgba(195, 20, 50, 0.5);
    box-shadow: 0 2px 6px rgba(195, 20, 50, 0.5);
}

.progress-bar .single-progress.custom-color--6 .progress-bar {
    position: relative;
    height: 100%;
    background: linear-gradient(17deg, #62890d 0, #94cf14 100%);
    -webkit-box-shadow: 0 2px 6px rgba(148, 207, 20, 0.5);
    box-shadow: 0 2px 6px rgba(148, 207, 20, 0.5);
}

.progress-bar .title-progress-bar {
    margin-bottom: 10px;
}

.progress-bar .label {
    position: absolute;
    top: 0;
    right: 0;
}

.progress-bar .progress {
    overflow: visible;
    height: 4px;
    border-radius: 4px;
    background-color: #22282d;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.progress-bar .progress-bar {
    position: relative;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(#62890d), to(#94cf14));
    background: linear-gradient(90deg, #62890d 0%, #94cf14 100%);
    background-color: #94cf14;
    color: #94cf14;
    -webkit-box-shadow: 0 2px 6px rgba(148, 207, 20, 0.5);
    box-shadow: 0 2px 6px rgba(148, 207, 20, 0.5);
}

.progress-bar.progress-bar--2 .progress {
    height: 1px;
    border-radius: 0;
}

.progress-bar.progress-bar--3 .progress {
    height: 10px;
    border-radius: 0;
}


/*--------------------------------------------------------------
# Login, Registration, Forgot Password Pages Style
--------------------------------------------------------------*/

.user__use .bg-border {
    width: 100%;
    max-width: 500px;
}

.user__use-block {
    position: relative;
    z-index: 1;
    padding: 20px 30px 30px 30px;
}

.user__use-block .user__use-title {
    margin-bottom: 30px;
    text-align: center;
}

.user__use-block .user__use-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin: 20px 0 0 0;
    font-weight: 300;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
}

.user__use-block .user__use-link span:last-child a {
    margin-left: 5px;
}

.user__use-block label {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: auto;
    margin: 0px 0 10px 0;
}

.bg-border {
    position: relative;
    /*overflow: hidden;*/
    border-radius: 5px;
    -webkit-box-shadow: 0 36px 0 -34px #22282d, -32px 0 0 -30px #22282d, 0 -32px 0 -30px #22282d, 32px 0 0 -30px #22282d, 0 0 0 2px #94cf14;
    box-shadow: 0 36px 0 -34px #22282d, -32px 0 0 -30px #22282d, 0 -32px 0 -30px #22282d, 32px 0 0 -30px #22282d, 0 0 0 2px #94cf14;
}


/*--------------------------------------------------------------*/


/*@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 540px;
}
*/

.col-sm {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
    -ms-flex-preferred-size: 0;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
}

.row-cols-sm-1>* {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    -webkit-box-flex: 0;
}

.row-cols-sm-2>* {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    -webkit-box-flex: 0;
}

.row-cols-sm-3>* {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    -webkit-box-flex: 0;
}

.row-cols-sm-4>* {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    -webkit-box-flex: 0;
}

.row-cols-sm-5>* {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    -webkit-box-flex: 0;
}

.row-cols-sm-6>* {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
    -webkit-box-flex: 0;
}

.col-sm-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
    -webkit-box-flex: 0;
}

.col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
    -webkit-box-flex: 0;
}

.col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
    -webkit-box-flex: 0;
}

.col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    -webkit-box-flex: 0;
}

.col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    -webkit-box-flex: 0;
}

.col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
    -webkit-box-flex: 0;
}

.col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    -webkit-box-flex: 0;
}

.col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
    -webkit-box-flex: 0;
}

.col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    -webkit-box-flex: 0;
}

.col-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
    -webkit-box-flex: 0;
}

.col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
    -webkit-box-flex: 0;
}

.col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
    -webkit-box-flex: 0;
}

.col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    -webkit-box-flex: 0;
}

.order-sm-first {
    order: -1;
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
}

.order-sm-last {
    order: 13;
    -ms-flex-order: 13;
    -webkit-box-ordinal-group: 14;
}

.order-sm-0 {
    order: 0;
    -ms-flex-order: 0;
    -webkit-box-ordinal-group: 1;
}

.order-sm-1 {
    order: 1;
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
}

.order-sm-2 {
    order: 2;
    -ms-flex-order: 2;
    -webkit-box-ordinal-group: 3;
}

.order-sm-3 {
    order: 3;
    -ms-flex-order: 3;
    -webkit-box-ordinal-group: 4;
}

.order-sm-4 {
    order: 4;
    -ms-flex-order: 4;
    -webkit-box-ordinal-group: 5;
}

.order-sm-5 {
    order: 5;
    -ms-flex-order: 5;
    -webkit-box-ordinal-group: 6;
}

.order-sm-6 {
    order: 6;
    -ms-flex-order: 6;
    -webkit-box-ordinal-group: 7;
}

.order-sm-7 {
    order: 7;
    -ms-flex-order: 7;
    -webkit-box-ordinal-group: 8;
}

.order-sm-8 {
    order: 8;
    -ms-flex-order: 8;
    -webkit-box-ordinal-group: 9;
}

.order-sm-9 {
    order: 9;
    -ms-flex-order: 9;
    -webkit-box-ordinal-group: 10;
}

.order-sm-10 {
    order: 10;
    -ms-flex-order: 10;
    -webkit-box-ordinal-group: 11;
}

.order-sm-11 {
    order: 11;
    -ms-flex-order: 11;
    -webkit-box-ordinal-group: 12;
}

.order-sm-12 {
    order: 12;
    -ms-flex-order: 12;
    -webkit-box-ordinal-group: 13;
}

.offset-sm-0 {
    margin-left: 0;
}

.offset-sm-1 {
    margin-left: 8.333333%;
}

.offset-sm-2 {
    margin-left: 16.666667%;
}

.offset-sm-3 {
    margin-left: 25%;
}

.offset-sm-4 {
    margin-left: 33.333333%;
}

.offset-sm-5 {
    margin-left: 41.666667%;
}

.offset-sm-6 {
    margin-left: 50%;
}

.offset-sm-7 {
    margin-left: 58.333333%;
}

.offset-sm-8 {
    margin-left: 66.666667%;
}

.offset-sm-9 {
    margin-left: 75%;
}

.offset-sm-10 {
    margin-left: 83.333333%;
}

.offset-sm-11 {
    margin-left: 91.666667%;
}

.d-sm-none {
    display: none !important;
}

.d-sm-inline {
    display: inline !important;
}

.d-sm-inline-block {
    display: inline-block !important;
}

.d-sm-block {
    display: block !important;
}

.d-sm-table {
    display: table !important;
}

.d-sm-table-row {
    display: table-row !important;
}

.d-sm-table-cell {
    display: table-cell !important;
}

.d-sm-flex {
    display: -ms-flexbox !important;
    display: -webkit-box !important;
    display: flex !important;
}

.d-sm-inline-flex {
    display: -ms-inline-flexbox !important;
    display: -webkit-inline-box !important;
    display: inline-flex !important;
}

.flex-sm-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
}

.flex-sm-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
}

.flex-sm-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
}

.flex-sm-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
}

.flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
}

.flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
}

.flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
}

.flex-sm-fill {
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
    -webkit-box-flex: 1 !important;
}

.flex-sm-grow-0 {
    flex-grow: 0 !important;
    -ms-flex-positive: 0 !important;
    -webkit-box-flex: 0 !important;
}

.flex-sm-grow-1 {
    flex-grow: 1 !important;
    -ms-flex-positive: 1 !important;
    -webkit-box-flex: 1 !important;
}

.flex-sm-shrink-0 {
    flex-shrink: 0 !important;
    -ms-flex-negative: 0 !important;
}

.flex-sm-shrink-1 {
    flex-shrink: 1 !important;
    -ms-flex-negative: 1 !important;
}

.justify-content-sm-start {
    justify-content: flex-start !important;
    -ms-flex-pack: start !important;
    -webkit-box-pack: start !important;
}

.justify-content-sm-end {
    justify-content: flex-end !important;
    -ms-flex-pack: end !important;
    -webkit-box-pack: end !important;
}

.justify-content-sm-center {
    justify-content: center !important;
    -ms-flex-pack: center !important;
    -webkit-box-pack: center !important;
}

.justify-content-sm-between {
    justify-content: space-between !important;
    -ms-flex-pack: justify !important;
    -webkit-box-pack: justify !important;
}

.justify-content-sm-around {
    justify-content: space-around !important;
    -ms-flex-pack: distribute !important;
}

.align-items-sm-start {
    align-items: flex-start !important;
    -ms-flex-align: start !important;
    -webkit-box-align: start !important;
}

.align-items-sm-end {
    align-items: flex-end !important;
    -ms-flex-align: end !important;
    -webkit-box-align: end !important;
}

.align-items-sm-center {
    align-items: center !important;
    -ms-flex-align: center !important;
    -webkit-box-align: center !important;
}

.align-items-sm-baseline {
    align-items: baseline !important;
    -ms-flex-align: baseline !important;
    -webkit-box-align: baseline !important;
}

.align-items-sm-stretch {
    align-items: stretch !important;
    -ms-flex-align: stretch !important;
    -webkit-box-align: stretch !important;
}

.align-content-sm-start {
    align-content: flex-start !important;
    -ms-flex-line-pack: start !important;
}

.align-content-sm-end {
    align-content: flex-end !important;
    -ms-flex-line-pack: end !important;
}

.align-content-sm-center {
    align-content: center !important;
    -ms-flex-line-pack: center !important;
}

.align-content-sm-between {
    align-content: space-between !important;
    -ms-flex-line-pack: justify !important;
}

.align-content-sm-around {
    align-content: space-around !important;
    -ms-flex-line-pack: distribute !important;
}

.align-content-sm-stretch {
    align-content: stretch !important;
    -ms-flex-line-pack: stretch !important;
}

.align-self-sm-auto {
    align-self: auto !important;
    -ms-flex-item-align: auto !important;
}

.align-self-sm-start {
    align-self: flex-start !important;
    -ms-flex-item-align: start !important;
}

.align-self-sm-end {
    align-self: flex-end !important;
    -ms-flex-item-align: end !important;
}

.align-self-sm-center {
    align-self: center !important;
    -ms-flex-item-align: center !important;
}

.align-self-sm-baseline {
    align-self: baseline !important;
    -ms-flex-item-align: baseline !important;
}

.align-self-sm-stretch {
    align-self: stretch !important;
    -ms-flex-item-align: stretch !important;
}

.m-sm-0 {
    margin: 0 !important;
}

.mt-sm-0,
.my-sm-0 {
    margin-top: 0 !important;
}

.mr-sm-0,
.mx-sm-0 {
    margin-right: 0 !important;
}

.mb-sm-0,
.my-sm-0 {
    margin-bottom: 0 !important;
}

.ml-sm-0,
.mx-sm-0 {
    margin-left: 0 !important;
}

.m-sm-1 {
    margin: 0.25rem !important;
}

.mt-sm-1,
.my-sm-1 {
    margin-top: 0.25rem !important;
}

.mr-sm-1,
.mx-sm-1 {
    margin-right: 0.25rem !important;
}

.mb-sm-1,
.my-sm-1 {
    margin-bottom: 0.25rem !important;
}

.ml-sm-1,
.mx-sm-1 {
    margin-left: 0.25rem !important;
}

.m-sm-2 {
    margin: 0.5rem !important;
}

.mt-sm-2,
.my-sm-2 {
    margin-top: 0.5rem !important;
}

.mr-sm-2,
.mx-sm-2 {
    margin-right: 0.5rem !important;
}

.mb-sm-2,
.my-sm-2 {
    margin-bottom: 0.5rem !important;
}

.ml-sm-2,
.mx-sm-2 {
    margin-left: 0.5rem !important;
}

.m-sm-3 {
    margin: 1rem !important;
}

.mt-sm-3,
.my-sm-3 {
    margin-top: 1rem !important;
}

.mr-sm-3,
.mx-sm-3 {
    margin-right: 1rem !important;
}

.mb-sm-3,
.my-sm-3 {
    margin-bottom: 1rem !important;
}

.ml-sm-3,
.mx-sm-3 {
    margin-left: 1rem !important;
}

.m-sm-4 {
    margin: 1.5rem !important;
}

.mt-sm-4,
.my-sm-4 {
    margin-top: 1.5rem !important;
}

.mr-sm-4,
.mx-sm-4 {
    margin-right: 1.5rem !important;
}

.mb-sm-4,
.my-sm-4 {
    margin-bottom: 1.5rem !important;
}

.ml-sm-4,
.mx-sm-4 {
    margin-left: 1.5rem !important;
}

.m-sm-5 {
    margin: 3rem !important;
}

.mt-sm-5,
.my-sm-5 {
    margin-top: 3rem !important;
}

.mr-sm-5,
.mx-sm-5 {
    margin-right: 3rem !important;
}

.mb-sm-5,
.my-sm-5 {
    margin-bottom: 3rem !important;
}

.ml-sm-5,
.mx-sm-5 {
    margin-left: 3rem !important;
}

.p-sm-0 {
    padding: 0 !important;
}

.pt-sm-0,
.py-sm-0 {
    padding-top: 0 !important;
}

.pr-sm-0,
.px-sm-0 {
    padding-right: 0 !important;
}

.pb-sm-0,
.py-sm-0 {
    padding-bottom: 0 !important;
}

.pl-sm-0,
.px-sm-0 {
    padding-left: 0 !important;
}

.p-sm-1 {
    padding: 0.25rem !important;
}

.pt-sm-1,
.py-sm-1 {
    padding-top: 0.25rem !important;
}

.pr-sm-1,
.px-sm-1 {
    padding-right: 0.25rem !important;
}

.pb-sm-1,
.py-sm-1 {
    padding-bottom: 0.25rem !important;
}

.pl-sm-1,
.px-sm-1 {
    padding-left: 0.25rem !important;
}

.p-sm-2 {
    padding: 0.5rem !important;
}

.pt-sm-2,
.py-sm-2 {
    padding-top: 0.5rem !important;
}

.pr-sm-2,
.px-sm-2 {
    padding-right: 0.5rem !important;
}

.pb-sm-2,
.py-sm-2 {
    padding-bottom: 0.5rem !important;
}

.pl-sm-2,
.px-sm-2 {
    padding-left: 0.5rem !important;
}

.p-sm-3 {
    padding: 1rem !important;
}

.pt-sm-3,
.py-sm-3 {
    padding-top: 1rem !important;
}

.pr-sm-3,
.px-sm-3 {
    padding-right: 1rem !important;
}

.pb-sm-3,
.py-sm-3 {
    padding-bottom: 1rem !important;
}

.pl-sm-3,
.px-sm-3 {
    padding-left: 1rem !important;
}

.p-sm-4 {
    padding: 1.5rem !important;
}

.pt-sm-4,
.py-sm-4 {
    padding-top: 1.5rem !important;
}

.pr-sm-4,
.px-sm-4 {
    padding-right: 1.5rem !important;
}

.pb-sm-4,
.py-sm-4 {
    padding-bottom: 1.5rem !important;
}

.pl-sm-4,
.px-sm-4 {
    padding-left: 1.5rem !important;
}

.p-sm-5 {
    padding: 3rem !important;
}

.pt-sm-5,
.py-sm-5 {
    padding-top: 3rem !important;
}

.pr-sm-5,
.px-sm-5 {
    padding-right: 3rem !important;
}

.pb-sm-5,
.py-sm-5 {
    padding-bottom: 3rem !important;
}

.pl-sm-5,
.px-sm-5 {
    padding-left: 3rem !important;
}

.m-sm-n1 {
    margin: -0.25rem !important;
}

.mt-sm-n1,
.my-sm-n1 {
    margin-top: -0.25rem !important;
}

.mr-sm-n1,
.mx-sm-n1 {
    margin-right: -0.25rem !important;
}

.mb-sm-n1,
.my-sm-n1 {
    margin-bottom: -0.25rem !important;
}

.ml-sm-n1,
.mx-sm-n1 {
    margin-left: -0.25rem !important;
}

.m-sm-n2 {
    margin: -0.5rem !important;
}

.mt-sm-n2,
.my-sm-n2 {
    margin-top: -0.5rem !important;
}

.mr-sm-n2,
.mx-sm-n2 {
    margin-right: -0.5rem !important;
}

.mb-sm-n2,
.my-sm-n2 {
    margin-bottom: -0.5rem !important;
}

.ml-sm-n2,
.mx-sm-n2 {
    margin-left: -0.5rem !important;
}

.m-sm-n3 {
    margin: -1rem !important;
}

.mt-sm-n3,
.my-sm-n3 {
    margin-top: -1rem !important;
}

.mr-sm-n3,
.mx-sm-n3 {
    margin-right: -1rem !important;
}

.mb-sm-n3,
.my-sm-n3 {
    margin-bottom: -1rem !important;
}

.ml-sm-n3,
.mx-sm-n3 {
    margin-left: -1rem !important;
}

.m-sm-n4 {
    margin: -1.5rem !important;
}

.mt-sm-n4,
.my-sm-n4 {
    margin-top: -1.5rem !important;
}

.mr-sm-n4,
.mx-sm-n4 {
    margin-right: -1.5rem !important;
}

.mb-sm-n4,
.my-sm-n4 {
    margin-bottom: -1.5rem !important;
}

.ml-sm-n4,
.mx-sm-n4 {
    margin-left: -1.5rem !important;
}

.m-sm-n5 {
    margin: -3rem !important;
}

.mt-sm-n5,
.my-sm-n5 {
    margin-top: -3rem !important;
}

.mr-sm-n5,
.mx-sm-n5 {
    margin-right: -3rem !important;
}

.mb-sm-n5,
.my-sm-n5 {
    margin-bottom: -3rem !important;
}

.ml-sm-n5,
.mx-sm-n5 {
    margin-left: -3rem !important;
}

.m-sm-auto {
    margin: auto !important;
}

.mt-sm-auto,
.my-sm-auto {
    margin-top: auto !important;
}

.mr-sm-auto,
.mx-sm-auto {
    margin-right: auto !important;
}

.mb-sm-auto,
.my-sm-auto {
    margin-bottom: auto !important;
}

.ml-sm-auto,
.mx-sm-auto {
    margin-left: auto !important;
}


}
@media (min-width: 768px) {
    .container,
    .container-sm,
    .container-md {
        max-width: 720px;
    }
    
    .col-md {
        flex-grow: 1;
        flex-basis: 0;
        max-width: 100%;
        -ms-flex-preferred-size: 0;
        -ms-flex-positive: 1;
        -webkit-box-flex: 1;
    }
    
    .row-cols-md-1>* {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        -webkit-box-flex: 0;
    }
    
    .row-cols-md-2>* {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        -webkit-box-flex: 0;
    }
    
    .row-cols-md-3>* {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
        -webkit-box-flex: 0;
    }
    
    .row-cols-md-4>* {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
        -webkit-box-flex: 0;
    }
    
    .row-cols-md-5>* {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
        -webkit-box-flex: 0;
    }
    
    .row-cols-md-6>* {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
        -webkit-box-flex: 0;
    }
    
    .col-md-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
        -webkit-box-flex: 0;
    }
    
    .col-md-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
        -webkit-box-flex: 0;
    }
    
    .col-md-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
        -webkit-box-flex: 0;
    }
    
    .col-md-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
        -webkit-box-flex: 0;
    }
    
    .col-md-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
        -webkit-box-flex: 0;
    }
    
    .col-md-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
        -webkit-box-flex: 0;
    }
    
    .col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        -webkit-box-flex: 0;
    }
    
    .col-md-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
        -webkit-box-flex: 0;
    }
    
    .col-md-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
        -webkit-box-flex: 0;
    }
    
    .col-md-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
        -webkit-box-flex: 0;
    }
    
    .col-md-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
        -webkit-box-flex: 0;
    }
    
    .col-md-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
        -webkit-box-flex: 0;
    }
    
    .col-md-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        -webkit-box-flex: 0;
    }
    
    .order-md-first {
        order: -1;
        -ms-flex-order: -1;
        -webkit-box-ordinal-group: 0;
    }
    
    .order-md-last {
        order: 13;
        -ms-flex-order: 13;
        -webkit-box-ordinal-group: 14;
    }
    
    .order-md-0 {
        order: 0;
        -ms-flex-order: 0;
        -webkit-box-ordinal-group: 1;
    }
    
    .order-md-1 {
        order: 1;
        -ms-flex-order: 1;
        -webkit-box-ordinal-group: 2;
    }
    
    .order-md-2 {
        order: 2;
        -ms-flex-order: 2;
        -webkit-box-ordinal-group: 3;
    }
    
    .order-md-3 {
        order: 3;
        -ms-flex-order: 3;
        -webkit-box-ordinal-group: 4;
    }
    
    .order-md-4 {
        order: 4;
        -ms-flex-order: 4;
        -webkit-box-ordinal-group: 5;
    }
    
    .order-md-5 {
        order: 5;
        -ms-flex-order: 5;
        -webkit-box-ordinal-group: 6;
    }
    
    .order-md-6 {
        order: 6;
        -ms-flex-order: 6;
        -webkit-box-ordinal-group: 7;
    }
    
    .order-md-7 {
        order: 7;
        -ms-flex-order: 7;
        -webkit-box-ordinal-group: 8;
    }
    
    .order-md-8 {
        order: 8;
        -ms-flex-order: 8;
        -webkit-box-ordinal-group: 9;
    }
    
    .order-md-9 {
        order: 9;
        -ms-flex-order: 9;
        -webkit-box-ordinal-group: 10;
    }
    
    .order-md-10 {
        order: 10;
        -ms-flex-order: 10;
        -webkit-box-ordinal-group: 11;
    }
    
    .order-md-11 {
        order: 11;
        -ms-flex-order: 11;
        -webkit-box-ordinal-group: 12;
    }
    
    .order-md-12 {
        order: 12;
        -ms-flex-order: 12;
        -webkit-box-ordinal-group: 13;
    }
    
    .offset-md-0 {
        margin-left: 0;
    }
    
    .offset-md-1 {
        margin-left: 8.333333%;
    }
    
    .offset-md-2 {
        margin-left: 16.666667%;
    }
    
    .offset-md-3 {
        margin-left: 25%;
    }
    
    .offset-md-4 {
        margin-left: 33.333333%;
    }
    
    .offset-md-5 {
        margin-left: 41.666667%;
    }
    
    .offset-md-6 {
        margin-left: 50%;
    }
    
    .offset-md-7 {
        margin-left: 58.333333%;
    }
    
    .offset-md-8 {
        margin-left: 66.666667%;
    }
    
    .offset-md-9 {
        margin-left: 75%;
    }
    
    .offset-md-10 {
        margin-left: 83.333333%;
    }
    
    .offset-md-11 {
        margin-left: 91.666667%;
    }
    
    .d-md-none {
        display: none !important;
    }
    
    .d-md-inline {
        display: inline !important;
    }
    
    .d-md-inline-block {
        display: inline-block !important;
    }
    
    .d-md-block {
        display: block !important;
    }
    
    .d-md-table {
        display: table !important;
    }
    
    .d-md-table-row {
        display: table-row !important;
    }
    
    .d-md-table-cell {
        display: table-cell !important;
    }
    
    .d-md-flex {
        display: -ms-flexbox !important;
        display: -webkit-box !important;
        display: flex !important;
    }
    
    .d-md-inline-flex {
        display: -ms-inline-flexbox !important;
        display: -webkit-inline-box !important;
        display: inline-flex !important;
    }
    
    .flex-md-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
    }
    
    .flex-md-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
    }
    
    .flex-md-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
    }
    
    .flex-md-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
    }
    
    .flex-md-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
    
    .flex-md-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }
    
    .flex-md-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }
    
    .flex-md-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
        -webkit-box-flex: 1 !important;
    }
    
    .flex-md-grow-0 {
        flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
        -webkit-box-flex: 0 !important;
    }
    
    .flex-md-grow-1 {
        flex-grow: 1 !important;
        -ms-flex-positive: 1 !important;
        -webkit-box-flex: 1 !important;
    }
    
    .flex-md-shrink-0 {
        flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
    }
    
    .flex-md-shrink-1 {
        flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
    }
    
    .justify-content-md-start {
        justify-content: flex-start !important;
        -ms-flex-pack: start !important;
        -webkit-box-pack: start !important;
    }
    
    .justify-content-md-end {
        justify-content: flex-end !important;
        -ms-flex-pack: end !important;
        -webkit-box-pack: end !important;
    }
    
    .justify-content-md-center {
        justify-content: center !important;
        -ms-flex-pack: center !important;
        -webkit-box-pack: center !important;
    }
    
    .justify-content-md-between {
        justify-content: space-between !important;
        -ms-flex-pack: justify !important;
        -webkit-box-pack: justify !important;
    }
    
    .justify-content-md-around {
        justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
    }
    
    .align-items-md-start {
        align-items: flex-start !important;
        -ms-flex-align: start !important;
        -webkit-box-align: start !important;
    }
    
    .align-items-md-end {
        align-items: flex-end !important;
        -ms-flex-align: end !important;
        -webkit-box-align: end !important;
    }
    
    .align-items-md-center {
        align-items: center !important;
        -ms-flex-align: center !important;
        -webkit-box-align: center !important;
    }
    
    .align-items-md-baseline {
        align-items: baseline !important;
        -ms-flex-align: baseline !important;
        -webkit-box-align: baseline !important;
    }
    
    .align-items-md-stretch {
        align-items: stretch !important;
        -ms-flex-align: stretch !important;
        -webkit-box-align: stretch !important;
    }
    
    .align-content-md-start {
        align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
    }
    
    .align-content-md-end {
        align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
    }
    
    .align-content-md-center {
        align-content: center !important;
        -ms-flex-line-pack: center !important;
    }
    
    .align-content-md-between {
        align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
    }
    
    .align-content-md-around {
        align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
    }
    
    .align-content-md-stretch {
        align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
    }
    
    .align-self-md-auto {
        align-self: auto !important;
        -ms-flex-item-align: auto !important;
    }
    
    .align-self-md-start {
        align-self: flex-start !important;
        -ms-flex-item-align: start !important;
    }
    
    .align-self-md-end {
        align-self: flex-end !important;
        -ms-flex-item-align: end !important;
    }
    
    .align-self-md-center {
        align-self: center !important;
        -ms-flex-item-align: center !important;
    }
    
    .align-self-md-baseline {
        align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
    }
    
    .align-self-md-stretch {
        align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
    }
    
    .m-md-0 {
        margin: 0 !important;
    }
    
    .mt-md-0,
    .my-md-0 {
        margin-top: 0 !important;
    }
    
    .mr-md-0,
    .mx-md-0 {
        margin-right: 0 !important;
    }
    
    .mb-md-0,
    .my-md-0 {
        margin-bottom: 0 !important;
    }
    
    .ml-md-0,
    .mx-md-0 {
        margin-left: 0 !important;
    }
    
    .m-md-1 {
        margin: 0.25rem !important;
    }
    
    .mt-md-1,
    .my-md-1 {
        margin-top: 0.25rem !important;
    }
    
    .mr-md-1,
    .mx-md-1 {
        margin-right: 0.25rem !important;
    }
    
    .mb-md-1,
    .my-md-1 {
        margin-bottom: 0.25rem !important;
    }
    
    .ml-md-1,
    .mx-md-1 {
        margin-left: 0.25rem !important;
    }
    
    .m-md-2 {
        margin: 0.5rem !important;
    }
    
    .mt-md-2,
    .my-md-2 {
        margin-top: 0.5rem !important;
    }
    
    .mr-md-2,
    .mx-md-2 {
        margin-right: 0.5rem !important;
    }
    
    .mb-md-2,
    .my-md-2 {
        margin-bottom: 0.5rem !important;
    }
    
    .ml-md-2,
    .mx-md-2 {
        margin-left: 0.5rem !important;
    }
    
    .m-md-3 {
        margin: 1rem !important;
    }
    
    .mt-md-3,
    .my-md-3 {
        margin-top: 1rem !important;
    }
    
    .mr-md-3,
    .mx-md-3 {
        margin-right: 1rem !important;
    }
    
    .mb-md-3,
    .my-md-3 {
        margin-bottom: 1rem !important;
    }
    
    .ml-md-3,
    .mx-md-3 {
        margin-left: 1rem !important;
    }
    
    .m-md-4 {
        margin: 1.5rem !important;
    }
    
    .mt-md-4,
    .my-md-4 {
        margin-top: 1.5rem !important;
    }
    
    .mr-md-4,
    .mx-md-4 {
        margin-right: 1.5rem !important;
    }
    
    .mb-md-4,
    .my-md-4 {
        margin-bottom: 1.5rem !important;
    }
    
    .ml-md-4,
    .mx-md-4 {
        margin-left: 1.5rem !important;
    }
    
    .m-md-5 {
        margin: 3rem !important;
    }
    
    .mt-md-5,
    .my-md-5 {
        margin-top: 3rem !important;
    }
    
    .mr-md-5,
    .mx-md-5 {
        margin-right: 3rem !important;
    }
    
    .mb-md-5,
    .my-md-5 {
        margin-bottom: 3rem !important;
    }
    
    .ml-md-5,
    .mx-md-5 {
        margin-left: 3rem !important;
    }
    
    .p-md-0 {
        padding: 0 !important;
    }
    
    .pt-md-0,
    .py-md-0 {
        padding-top: 0 !important;
    }
    
    .pr-md-0,
    .px-md-0 {
        padding-right: 0 !important;
    }
    
    .pb-md-0,
    .py-md-0 {
        padding-bottom: 0 !important;
    }
    
    .pl-md-0,
    .px-md-0 {
        padding-left: 0 !important;
    }
    
    .p-md-1 {
        padding: 0.25rem !important;
    }
    
    .pt-md-1,
    .py-md-1 {
        padding-top: 0.25rem !important;
    }
    
    .pr-md-1,
    .px-md-1 {
        padding-right: 0.25rem !important;
    }
    
    .pb-md-1,
    .py-md-1 {
        padding-bottom: 0.25rem !important;
    }
    
    .pl-md-1,
    .px-md-1 {
        padding-left: 0.25rem !important;
    }
    
    .p-md-2 {
        padding: 0.5rem !important;
    }
    
    .pt-md-2,
    .py-md-2 {
        padding-top: 0.5rem !important;
    }
    
    .pr-md-2,
    .px-md-2 {
        padding-right: 0.5rem !important;
    }
    
    .pb-md-2,
    .py-md-2 {
        padding-bottom: 0.5rem !important;
    }
    
    .pl-md-2,
    .px-md-2 {
        padding-left: 0.5rem !important;
    }
    
    .p-md-3 {
        padding: 1rem !important;
    }
    
    .pt-md-3,
    .py-md-3 {
        padding-top: 1rem !important;
    }
    
    .pr-md-3,
    .px-md-3 {
        padding-right: 1rem !important;
    }
    
    .pb-md-3,
    .py-md-3 {
        padding-bottom: 1rem !important;
    }
    
    .pl-md-3,
    .px-md-3 {
        padding-left: 1rem !important;
    }
    
    .p-md-4 {
        padding: 1.5rem !important;
    }
    
    .pt-md-4,
    .py-md-4 {
        padding-top: 1.5rem !important;
    }
    
    .pr-md-4,
    .px-md-4 {
        padding-right: 1.5rem !important;
    }
    
    .pb-md-4,
    .py-md-4 {
        padding-bottom: 1.5rem !important;
    }
    
    .pl-md-4,
    .px-md-4 {
        padding-left: 1.5rem !important;
    }
    
    .p-md-5 {
        padding: 3rem !important;
    }
    
    .pt-md-5,
    .py-md-5 {
        padding-top: 3rem !important;
    }
    
    .pr-md-5,
    .px-md-5 {
        padding-right: 3rem !important;
    }
    
    .pb-md-5,
    .py-md-5 {
        padding-bottom: 3rem !important;
    }
    
    .pl-md-5,
    .px-md-5 {
        padding-left: 3rem !important;
    }
    
    .m-md-n1 {
        margin: -0.25rem !important;
    }
    
    .mt-md-n1,
    .my-md-n1 {
        margin-top: -0.25rem !important;
    }
    
    .mr-md-n1,
    .mx-md-n1 {
        margin-right: -0.25rem !important;
    }
    
    .mb-md-n1,
    .my-md-n1 {
        margin-bottom: -0.25rem !important;
    }
    
    .ml-md-n1,
    .mx-md-n1 {
        margin-left: -0.25rem !important;
    }
    
    .m-md-n2 {
        margin: -0.5rem !important;
    }
    
    .mt-md-n2,
    .my-md-n2 {
        margin-top: -0.5rem !important;
    }
    
    .mr-md-n2,
    .mx-md-n2 {
        margin-right: -0.5rem !important;
    }
    
    .mb-md-n2,
    .my-md-n2 {
        margin-bottom: -0.5rem !important;
    }
    
    .ml-md-n2,
    .mx-md-n2 {
        margin-left: -0.5rem !important;
    }
    
    .m-md-n3 {
        margin: -1rem !important;
    }
    
    .mt-md-n3,
    .my-md-n3 {
        margin-top: -1rem !important;
    }
    
    .mr-md-n3,
    .mx-md-n3 {
        margin-right: -1rem !important;
    }
    
    .mb-md-n3,
    .my-md-n3 {
        margin-bottom: -1rem !important;
    }
    
    .ml-md-n3,
    .mx-md-n3 {
        margin-left: -1rem !important;
    }
    
    .m-md-n4 {
        margin: -1.5rem !important;
    }
    
    .mt-md-n4,
    .my-md-n4 {
        margin-top: -1.5rem !important;
    }
    
    .mr-md-n4,
    .mx-md-n4 {
        margin-right: -1.5rem !important;
    }
    
    .mb-md-n4,
    .my-md-n4 {
        margin-bottom: -1.5rem !important;
    }
    
    .ml-md-n4,
    .mx-md-n4 {
        margin-left: -1.5rem !important;
    }
    
    .m-md-n5 {
        margin: -3rem !important;
    }
    
    .mt-md-n5,
    .my-md-n5 {
        margin-top: -3rem !important;
    }
    
    .mr-md-n5,
    .mx-md-n5 {
        margin-right: -3rem !important;
    }
    
    .mb-md-n5,
    .my-md-n5 {
        margin-bottom: -3rem !important;
    }
    
    .ml-md-n5,
    .mx-md-n5 {
        margin-left: -3rem !important;
    }
    
    .m-md-auto {
        margin: auto !important;
    }
    
    .mt-md-auto,
    .my-md-auto {
        margin-top: auto !important;
    }
    
    .mr-md-auto,
    .mx-md-auto {
        margin-right: auto !important;
    }
    
    .mb-md-auto,
    .my-md-auto {
        margin-bottom: auto !important;
    }
    
    .ml-md-auto,
    .mx-md-auto {
        margin-left: auto !important;
    }
}
@media (min-width: 992px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg {
        max-width: 960px;
    }
    
    .col-lg {
        flex-grow: 1;
        flex-basis: 0;
        max-width: 100%;
        -ms-flex-preferred-size: 0;
        -ms-flex-positive: 1;
        -webkit-box-flex: 1;
    }
    
    .row-cols-lg-1>* {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        -webkit-box-flex: 0;
    }
    
    .row-cols-lg-2>* {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        -webkit-box-flex: 0;
    }
    
    .row-cols-lg-3>* {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
        -webkit-box-flex: 0;
    }
    
    .row-cols-lg-4>* {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
        -webkit-box-flex: 0;
    }
    
    .row-cols-lg-5>* {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
        -webkit-box-flex: 0;
    }
    
    .row-cols-lg-6>* {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
        -webkit-box-flex: 0;
    }
    
    .col-lg-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
        -webkit-box-flex: 0;
    }
    
    .col-lg-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
        -webkit-box-flex: 0;
    }
    
    .col-lg-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
        -webkit-box-flex: 0;
    }
    
    .col-lg-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
        -webkit-box-flex: 0;
    }
    
    .col-lg-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
        -webkit-box-flex: 0;
    }
    
    .col-lg-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
        -webkit-box-flex: 0;
    }
    
    .col-lg-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        -webkit-box-flex: 0;
    }
    
    .col-lg-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
        -webkit-box-flex: 0;
    }
    
    .col-lg-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
        -webkit-box-flex: 0;
    }
    
    .col-lg-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
        -webkit-box-flex: 0;
    }
    
    .col-lg-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
        -webkit-box-flex: 0;
    }
    
    .col-lg-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
        -webkit-box-flex: 0;
    }
    
    .col-lg-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        -webkit-box-flex: 0;
    }
    
    .order-lg-first {
        order: -1;
        -ms-flex-order: -1;
        -webkit-box-ordinal-group: 0;
    }
    
    .order-lg-last {
        order: 13;
        -ms-flex-order: 13;
        -webkit-box-ordinal-group: 14;
    }
    
    .order-lg-0 {
        order: 0;
        -ms-flex-order: 0;
        -webkit-box-ordinal-group: 1;
    }
    
    .order-lg-1 {
        order: 1;
        -ms-flex-order: 1;
        -webkit-box-ordinal-group: 2;
    }
    
    .order-lg-2 {
        order: 2;
        -ms-flex-order: 2;
        -webkit-box-ordinal-group: 3;
    }
    
    .order-lg-3 {
        order: 3;
        -ms-flex-order: 3;
        -webkit-box-ordinal-group: 4;
    }
    
    .order-lg-4 {
        order: 4;
        -ms-flex-order: 4;
        -webkit-box-ordinal-group: 5;
    }
    
    .order-lg-5 {
        order: 5;
        -ms-flex-order: 5;
        -webkit-box-ordinal-group: 6;
    }
    
    .order-lg-6 {
        order: 6;
        -ms-flex-order: 6;
        -webkit-box-ordinal-group: 7;
    }
    
    .order-lg-7 {
        order: 7;
        -ms-flex-order: 7;
        -webkit-box-ordinal-group: 8;
    }
    
    .order-lg-8 {
        order: 8;
        -ms-flex-order: 8;
        -webkit-box-ordinal-group: 9;
    }
    
    .order-lg-9 {
        order: 9;
        -ms-flex-order: 9;
        -webkit-box-ordinal-group: 10;
    }
    
    .order-lg-10 {
        order: 10;
        -ms-flex-order: 10;
        -webkit-box-ordinal-group: 11;
    }
    
    .order-lg-11 {
        order: 11;
        -ms-flex-order: 11;
        -webkit-box-ordinal-group: 12;
    }
    
    .order-lg-12 {
        order: 12;
        -ms-flex-order: 12;
        -webkit-box-ordinal-group: 13;
    }
    
    .offset-lg-0 {
        margin-left: 0;
    }
    
    .offset-lg-1 {
        margin-left: 8.333333%;
    }
    
    .offset-lg-2 {
        margin-left: 16.666667%;
    }
    
    .offset-lg-3 {
        margin-left: 25%;
    }
    
    .offset-lg-4 {
        margin-left: 33.333333%;
    }
    
    .offset-lg-5 {
        margin-left: 41.666667%;
    }
    
    .offset-lg-6 {
        margin-left: 50%;
    }
    
    .offset-lg-7 {
        margin-left: 58.333333%;
    }
    
    .offset-lg-8 {
        margin-left: 66.666667%;
    }
    
    .offset-lg-9 {
        margin-left: 75%;
    }
    
    .offset-lg-10 {
        margin-left: 83.333333%;
    }
    
    .offset-lg-11 {
        margin-left: 91.666667%;
    }
    
    .d-lg-none {
        display: none !important;
    }
    
    .d-lg-inline {
        display: inline !important;
    }
    
    .d-lg-inline-block {
        display: inline-block !important;
    }
    
    .d-lg-block {
        display: block !important;
    }
    
    .d-lg-table {
        display: table !important;
    }
    
    .d-lg-table-row {
        display: table-row !important;
    }
    
    .d-lg-table-cell {
        display: table-cell !important;
    }
    
    .d-lg-flex {
        display: -ms-flexbox !important;
        display: -webkit-box !important;
        display: flex !important;
    }
    
    .d-lg-inline-flex {
        display: -ms-inline-flexbox !important;
        display: -webkit-inline-box !important;
        display: inline-flex !important;
    }
    
    .flex-lg-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
    }
    
    .flex-lg-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
    }
    
    .flex-lg-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
    }
    
    .flex-lg-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
    }
    
    .flex-lg-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
    
    .flex-lg-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }
    
    .flex-lg-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }
    
    .flex-lg-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
        -webkit-box-flex: 1 !important;
    }
    
    .flex-lg-grow-0 {
        flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
        -webkit-box-flex: 0 !important;
    }
    
    .flex-lg-grow-1 {
        flex-grow: 1 !important;
        -ms-flex-positive: 1 !important;
        -webkit-box-flex: 1 !important;
    }
    
    .flex-lg-shrink-0 {
        flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
    }
    
    .flex-lg-shrink-1 {
        flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
    }
    
    .justify-content-lg-start {
        justify-content: flex-start !important;
        -ms-flex-pack: start !important;
        -webkit-box-pack: start !important;
    }
    
    .justify-content-lg-end {
        justify-content: flex-end !important;
        -ms-flex-pack: end !important;
        -webkit-box-pack: end !important;
    }
    
    .justify-content-lg-center {
        justify-content: center !important;
        -ms-flex-pack: center !important;
        -webkit-box-pack: center !important;
    }
    
    .justify-content-lg-between {
        justify-content: space-between !important;
        -ms-flex-pack: justify !important;
        -webkit-box-pack: justify !important;
    }
    
    .justify-content-lg-around {
        justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
    }
    
    .align-items-lg-start {
        align-items: flex-start !important;
        -ms-flex-align: start !important;
        -webkit-box-align: start !important;
    }
    
    .align-items-lg-end {
        align-items: flex-end !important;
        -ms-flex-align: end !important;
        -webkit-box-align: end !important;
    }
    
    .align-items-lg-center {
        align-items: center !important;
        -ms-flex-align: center !important;
        -webkit-box-align: center !important;
    }
    
    .align-items-lg-baseline {
        align-items: baseline !important;
        -ms-flex-align: baseline !important;
        -webkit-box-align: baseline !important;
    }
    
    .align-items-lg-stretch {
        align-items: stretch !important;
        -ms-flex-align: stretch !important;
        -webkit-box-align: stretch !important;
    }
    
    .align-content-lg-start {
        align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
    }
    
    .align-content-lg-end {
        align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
    }
    
    .align-content-lg-center {
        align-content: center !important;
        -ms-flex-line-pack: center !important;
    }
    
    .align-content-lg-between {
        align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
    }
    
    .align-content-lg-around {
        align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
    }
    
    .align-content-lg-stretch {
        align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
    }
    
    .align-self-lg-auto {
        align-self: auto !important;
        -ms-flex-item-align: auto !important;
    }
    
    .align-self-lg-start {
        align-self: flex-start !important;
        -ms-flex-item-align: start !important;
    }
    
    .align-self-lg-end {
        align-self: flex-end !important;
        -ms-flex-item-align: end !important;
    }
    
    .align-self-lg-center {
        align-self: center !important;
        -ms-flex-item-align: center !important;
    }
    
    .align-self-lg-baseline {
        align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
    }
    
    .align-self-lg-stretch {
        align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
    }
    
    .m-lg-0 {
        margin: 0 !important;
    }
    
    .mt-lg-0,
    .my-lg-0 {
        margin-top: 0 !important;
    }
    
    .mr-lg-0,
    .mx-lg-0 {
        margin-right: 0 !important;
    }
    
    .mb-lg-0,
    .my-lg-0 {
        margin-bottom: 0 !important;
    }
    
    .ml-lg-0,
    .mx-lg-0 {
        margin-left: 0 !important;
    }
    
    .m-lg-1 {
        margin: 0.25rem !important;
    }
    
    .mt-lg-1,
    .my-lg-1 {
        margin-top: 0.25rem !important;
    }
    
    .mr-lg-1,
    .mx-lg-1 {
        margin-right: 0.25rem !important;
    }
    
    .mb-lg-1,
    .my-lg-1 {
        margin-bottom: 0.25rem !important;
    }
    
    .ml-lg-1,
    .mx-lg-1 {
        margin-left: 0.25rem !important;
    }
    
    .m-lg-2 {
        margin: 0.5rem !important;
    }
    
    .mt-lg-2,
    .my-lg-2 {
        margin-top: 0.5rem !important;
    }
    
    .mr-lg-2,
    .mx-lg-2 {
        margin-right: 0.5rem !important;
    }
    
    .mb-lg-2,
    .my-lg-2 {
        margin-bottom: 0.5rem !important;
    }
    
    .ml-lg-2,
    .mx-lg-2 {
        margin-left: 0.5rem !important;
    }
    
    .m-lg-3 {
        margin: 1rem !important;
    }
    
    .mt-lg-3,
    .my-lg-3 {
        margin-top: 1rem !important;
    }
    
    .mr-lg-3,
    .mx-lg-3 {
        margin-right: 1rem !important;
    }
    
    .mb-lg-3,
    .my-lg-3 {
        margin-bottom: 1rem !important;
    }
    
    .ml-lg-3,
    .mx-lg-3 {
        margin-left: 1rem !important;
    }
    
    .m-lg-4 {
        margin: 1.5rem !important;
    }
    
    .mt-lg-4,
    .my-lg-4 {
        margin-top: 1.5rem !important;
    }
    
    .mr-lg-4,
    .mx-lg-4 {
        margin-right: 1.5rem !important;
    }
    
    .mb-lg-4,
    .my-lg-4 {
        margin-bottom: 1.5rem !important;
    }
    
    .ml-lg-4,
    .mx-lg-4 {
        margin-left: 1.5rem !important;
    }
    
    .m-lg-5 {
        margin: 3rem !important;
    }
    
    .mt-lg-5,
    .my-lg-5 {
        margin-top: 3rem !important;
    }
    
    .mr-lg-5,
    .mx-lg-5 {
        margin-right: 3rem !important;
    }
    
    .mb-lg-5,
    .my-lg-5 {
        margin-bottom: 3rem !important;
    }
    
    .ml-lg-5,
    .mx-lg-5 {
        margin-left: 3rem !important;
    }
    
    .p-lg-0 {
        padding: 0 !important;
    }
    
    .pt-lg-0,
    .py-lg-0 {
        padding-top: 0 !important;
    }
    
    .pr-lg-0,
    .px-lg-0 {
        padding-right: 0 !important;
    }
    
    .pb-lg-0,
    .py-lg-0 {
        padding-bottom: 0 !important;
    }
    
    .pl-lg-0,
    .px-lg-0 {
        padding-left: 0 !important;
    }
    
    .p-lg-1 {
        padding: 0.25rem !important;
    }
    
    .pt-lg-1,
    .py-lg-1 {
        padding-top: 0.25rem !important;
    }
    
    .pr-lg-1,
    .px-lg-1 {
        padding-right: 0.25rem !important;
    }
    
    .pb-lg-1,
    .py-lg-1 {
        padding-bottom: 0.25rem !important;
    }
    
    .pl-lg-1,
    .px-lg-1 {
        padding-left: 0.25rem !important;
    }
    
    .p-lg-2 {
        padding: 0.5rem !important;
    }
    
    .pt-lg-2,
    .py-lg-2 {
        padding-top: 0.5rem !important;
    }
    
    .pr-lg-2,
    .px-lg-2 {
        padding-right: 0.5rem !important;
    }
    
    .pb-lg-2,
    .py-lg-2 {
        padding-bottom: 0.5rem !important;
    }
    
    .pl-lg-2,
    .px-lg-2 {
        padding-left: 0.5rem !important;
    }
    
    .p-lg-3 {
        padding: 1rem !important;
    }
    
    .pt-lg-3,
    .py-lg-3 {
        padding-top: 1rem !important;
    }
    
    .pr-lg-3,
    .px-lg-3 {
        padding-right: 1rem !important;
    }
    
    .pb-lg-3,
    .py-lg-3 {
        padding-bottom: 1rem !important;
    }
    
    .pl-lg-3,
    .px-lg-3 {
        padding-left: 1rem !important;
    }
    
    .p-lg-4 {
        padding: 1.5rem !important;
    }
    
    .pt-lg-4,
    .py-lg-4 {
        padding-top: 1.5rem !important;
    }
    
    .pr-lg-4,
    .px-lg-4 {
        padding-right: 1.5rem !important;
    }
    
    .pb-lg-4,
    .py-lg-4 {
        padding-bottom: 1.5rem !important;
    }
    
    .pl-lg-4,
    .px-lg-4 {
        padding-left: 1.5rem !important;
    }
    
    .p-lg-5 {
        padding: 3rem !important;
    }
    
    .pt-lg-5,
    .py-lg-5 {
        padding-top: 3rem !important;
    }
    
    .pr-lg-5,
    .px-lg-5 {
        padding-right: 3rem !important;
    }
    
    .pb-lg-5,
    .py-lg-5 {
        padding-bottom: 3rem !important;
    }
    
    .pl-lg-5,
    .px-lg-5 {
        padding-left: 3rem !important;
    }
    
    .m-lg-n1 {
        margin: -0.25rem !important;
    }
    
    .mt-lg-n1,
    .my-lg-n1 {
        margin-top: -0.25rem !important;
    }
    
    .mr-lg-n1,
    .mx-lg-n1 {
        margin-right: -0.25rem !important;
    }
    
    .mb-lg-n1,
    .my-lg-n1 {
        margin-bottom: -0.25rem !important;
    }
    
    .ml-lg-n1,
    .mx-lg-n1 {
        margin-left: -0.25rem !important;
    }
    
    .m-lg-n2 {
        margin: -0.5rem !important;
    }
    
    .mt-lg-n2,
    .my-lg-n2 {
        margin-top: -0.5rem !important;
    }
    
    .mr-lg-n2,
    .mx-lg-n2 {
        margin-right: -0.5rem !important;
    }
    
    .mb-lg-n2,
    .my-lg-n2 {
        margin-bottom: -0.5rem !important;
    }
    
    .ml-lg-n2,
    .mx-lg-n2 {
        margin-left: -0.5rem !important;
    }
    
    .m-lg-n3 {
        margin: -1rem !important;
    }
    
    .mt-lg-n3,
    .my-lg-n3 {
        margin-top: -1rem !important;
    }
    
    .mr-lg-n3,
    .mx-lg-n3 {
        margin-right: -1rem !important;
    }
    
    .mb-lg-n3,
    .my-lg-n3 {
        margin-bottom: -1rem !important;
    }
    
    .ml-lg-n3,
    .mx-lg-n3 {
        margin-left: -1rem !important;
    }
    
    .m-lg-n4 {
        margin: -1.5rem !important;
    }
    
    .mt-lg-n4,
    .my-lg-n4 {
        margin-top: -1.5rem !important;
    }
    
    .mr-lg-n4,
    .mx-lg-n4 {
        margin-right: -1.5rem !important;
    }
    
    .mb-lg-n4,
    .my-lg-n4 {
        margin-bottom: -1.5rem !important;
    }
    
    .ml-lg-n4,
    .mx-lg-n4 {
        margin-left: -1.5rem !important;
    }
    
    .m-lg-n5 {
        margin: -3rem !important;
    }
    
    .mt-lg-n5,
    .my-lg-n5 {
        margin-top: -3rem !important;
    }
    
    .mr-lg-n5,
    .mx-lg-n5 {
        margin-right: -3rem !important;
    }
    
    .mb-lg-n5,
    .my-lg-n5 {
        margin-bottom: -3rem !important;
    }
    
    .ml-lg-n5,
    .mx-lg-n5 {
        margin-left: -3rem !important;
    }
    
    .m-lg-auto {
        margin: auto !important;
    }
    
    .mt-lg-auto,
    .my-lg-auto {
        margin-top: auto !important;
    }
    
    .mr-lg-auto,
    .mx-lg-auto {
        margin-right: auto !important;
    }
    
    .mb-lg-auto,
    .my-lg-auto {
        margin-bottom: auto !important;
    }
    
    .ml-lg-auto,
    .mx-lg-auto {
        margin-left: auto !important;
    }
}
@media (min-width: 1200px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 1440px;
    }
    
    .col-xl {
        flex-grow: 1;
        flex-basis: 0;
        max-width: 100%;
        -ms-flex-preferred-size: 0;
        -ms-flex-positive: 1;
        -webkit-box-flex: 1;
    }
    
    .row-cols-xl-1>* {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        -webkit-box-flex: 0;
    }
    
    .row-cols-xl-2>* {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        -webkit-box-flex: 0;
    }
    
    .row-cols-xl-3>* {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
        -webkit-box-flex: 0;
    }
    
    .row-cols-xl-4>* {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
        -webkit-box-flex: 0;
    }
    
    .row-cols-xl-5>* {
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
        -webkit-box-flex: 0;
    }
    
    .row-cols-xl-6>* {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
        -webkit-box-flex: 0;
    }
    
    .col-xl-auto {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: 100%;
        -webkit-box-flex: 0;
    }
    
    .col-xl-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
        -webkit-box-flex: 0;
    }
    
    .col-xl-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
        -webkit-box-flex: 0;
    }
    
    .col-xl-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
        -webkit-box-flex: 0;
    }
    
    .col-xl-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
        -webkit-box-flex: 0;
    }
    
    .col-xl-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
        -webkit-box-flex: 0;
    }
    
    .col-xl-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        -webkit-box-flex: 0;
    }
    
    .col-xl-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
        -webkit-box-flex: 0;
    }
    
    .col-xl-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
        -webkit-box-flex: 0;
    }
    
    .col-xl-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
        -webkit-box-flex: 0;
    }
    
    .col-xl-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
        -webkit-box-flex: 0;
    }
    
    .col-xl-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
        -webkit-box-flex: 0;
    }
    
    .col-xl-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
        -webkit-box-flex: 0;
    }
    
    .order-xl-first {
        order: -1;
        -ms-flex-order: -1;
        -webkit-box-ordinal-group: 0;
    }
    
    .order-xl-last {
        order: 13;
        -ms-flex-order: 13;
        -webkit-box-ordinal-group: 14;
    }
    
    .order-xl-0 {
        order: 0;
        -ms-flex-order: 0;
        -webkit-box-ordinal-group: 1;
    }
    
    .order-xl-1 {
        order: 1;
        -ms-flex-order: 1;
        -webkit-box-ordinal-group: 2;
    }
    
    .order-xl-2 {
        order: 2;
        -ms-flex-order: 2;
        -webkit-box-ordinal-group: 3;
    }
    
    .order-xl-3 {
        order: 3;
        -ms-flex-order: 3;
        -webkit-box-ordinal-group: 4;
    }
    
    .order-xl-4 {
        order: 4;
        -ms-flex-order: 4;
        -webkit-box-ordinal-group: 5;
    }
    
    .order-xl-5 {
        order: 5;
        -ms-flex-order: 5;
        -webkit-box-ordinal-group: 6;
    }
    
    .order-xl-6 {
        order: 6;
        -ms-flex-order: 6;
        -webkit-box-ordinal-group: 7;
    }
    
    .order-xl-7 {
        order: 7;
        -ms-flex-order: 7;
        -webkit-box-ordinal-group: 8;
    }
    
    .order-xl-8 {
        order: 8;
        -ms-flex-order: 8;
        -webkit-box-ordinal-group: 9;
    }
    
    .order-xl-9 {
        order: 9;
        -ms-flex-order: 9;
        -webkit-box-ordinal-group: 10;
    }
    
    .order-xl-10 {
        order: 10;
        -ms-flex-order: 10;
        -webkit-box-ordinal-group: 11;
    }
    
    .order-xl-11 {
        order: 11;
        -ms-flex-order: 11;
        -webkit-box-ordinal-group: 12;
    }
    
    .order-xl-12 {
        order: 12;
        -ms-flex-order: 12;
        -webkit-box-ordinal-group: 13;
    }
    
    .offset-xl-0 {
        margin-left: 0;
    }
    
    .offset-xl-1 {
        margin-left: 8.333333%;
    }
    
    .offset-xl-2 {
        margin-left: 16.666667%;
    }
    
    .offset-xl-3 {
        margin-left: 25%;
    }
    
    .offset-xl-4 {
        margin-left: 33.333333%;
    }
    
    .offset-xl-5 {
        margin-left: 41.666667%;
    }
    
    .offset-xl-6 {
        margin-left: 50%;
    }
    
    .offset-xl-7 {
        margin-left: 58.333333%;
    }
    
    .offset-xl-8 {
        margin-left: 66.666667%;
    }
    
    .offset-xl-9 {
        margin-left: 75%;
    }
    
    .offset-xl-10 {
        margin-left: 83.333333%;
    }
    
    .offset-xl-11 {
        margin-left: 91.666667%;
    }
    
    .d-xl-none {
        display: none !important;
    }
    
    .d-xl-inline {
        display: inline !important;
    }
    
    .d-xl-inline-block {
        display: inline-block !important;
    }
    
    .d-xl-block {
        display: block !important;
    }
    
    .d-xl-table {
        display: table !important;
    }
    
    .d-xl-table-row {
        display: table-row !important;
    }
    
    .d-xl-table-cell {
        display: table-cell !important;
    }
    
    .d-xl-flex {
        display: -ms-flexbox !important;
        display: -webkit-box !important;
        display: flex !important;
    }
    
    .d-xl-inline-flex {
        display: -ms-inline-flexbox !important;
        display: -webkit-inline-box !important;
        display: inline-flex !important;
    }
    
    .flex-xl-row {
        -ms-flex-direction: row !important;
        flex-direction: row !important;
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
    }
    
    .flex-xl-column {
        -ms-flex-direction: column !important;
        flex-direction: column !important;
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
    }
    
    .flex-xl-row-reverse {
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important;
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
    }
    
    .flex-xl-column-reverse {
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important;
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
    }
    
    .flex-xl-wrap {
        -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
    }
    
    .flex-xl-nowrap {
        -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
    }
    
    .flex-xl-wrap-reverse {
        -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    }
    
    .flex-xl-fill {
        -ms-flex: 1 1 auto !important;
        flex: 1 1 auto !important;
        -webkit-box-flex: 1 !important;
    }
    
    .flex-xl-grow-0 {
        flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
        -webkit-box-flex: 0 !important;
    }
    
    .flex-xl-grow-1 {
        flex-grow: 1 !important;
        -ms-flex-positive: 1 !important;
        -webkit-box-flex: 1 !important;
    }
    
    .flex-xl-shrink-0 {
        flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
    }
    
    .flex-xl-shrink-1 {
        flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
    }
    
    .justify-content-xl-start {
        justify-content: flex-start !important;
        -ms-flex-pack: start !important;
        -webkit-box-pack: start !important;
    }
    
    .justify-content-xl-end {
        justify-content: flex-end !important;
        -ms-flex-pack: end !important;
        -webkit-box-pack: end !important;
    }
    
    .justify-content-xl-center {
        justify-content: center !important;
        -ms-flex-pack: center !important;
        -webkit-box-pack: center !important;
    }
    
    .justify-content-xl-between {
        justify-content: space-between !important;
        -ms-flex-pack: justify !important;
        -webkit-box-pack: justify !important;
    }
    
    .justify-content-xl-around {
        justify-content: space-around !important;
        -ms-flex-pack: distribute !important;
    }
    
    .align-items-xl-start {
        align-items: flex-start !important;
        -ms-flex-align: start !important;
        -webkit-box-align: start !important;
    }
    
    .align-items-xl-end {
        align-items: flex-end !important;
        -ms-flex-align: end !important;
        -webkit-box-align: end !important;
    }
    
    .align-items-xl-center {
        align-items: center !important;
        -ms-flex-align: center !important;
        -webkit-box-align: center !important;
    }
    
    .align-items-xl-baseline {
        align-items: baseline !important;
        -ms-flex-align: baseline !important;
        -webkit-box-align: baseline !important;
    }
    
    .align-items-xl-stretch {
        align-items: stretch !important;
        -ms-flex-align: stretch !important;
        -webkit-box-align: stretch !important;
    }
    
    .align-content-xl-start {
        align-content: flex-start !important;
        -ms-flex-line-pack: start !important;
    }
    
    .align-content-xl-end {
        align-content: flex-end !important;
        -ms-flex-line-pack: end !important;
    }
    
    .align-content-xl-center {
        align-content: center !important;
        -ms-flex-line-pack: center !important;
    }
    
    .align-content-xl-between {
        align-content: space-between !important;
        -ms-flex-line-pack: justify !important;
    }
    
    .align-content-xl-around {
        align-content: space-around !important;
        -ms-flex-line-pack: distribute !important;
    }
    
    .align-content-xl-stretch {
        align-content: stretch !important;
        -ms-flex-line-pack: stretch !important;
    }
    
    .align-self-xl-auto {
        align-self: auto !important;
        -ms-flex-item-align: auto !important;
    }
    
    .align-self-xl-start {
        align-self: flex-start !important;
        -ms-flex-item-align: start !important;
    }
    
    .align-self-xl-end {
        align-self: flex-end !important;
        -ms-flex-item-align: end !important;
    }
    
    .align-self-xl-center {
        align-self: center !important;
        -ms-flex-item-align: center !important;
    }
    
    .align-self-xl-baseline {
        align-self: baseline !important;
        -ms-flex-item-align: baseline !important;
    }
    
    .align-self-xl-stretch {
        align-self: stretch !important;
        -ms-flex-item-align: stretch !important;
    }
    
    .m-xl-0 {
        margin: 0 !important;
    }
    
    .mt-xl-0,
    .my-xl-0 {
        margin-top: 0 !important;
    }
    
    .mr-xl-0,
    .mx-xl-0 {
        margin-right: 0 !important;
    }
    
    .mb-xl-0,
    .my-xl-0 {
        margin-bottom: 0 !important;
    }
    
    .ml-xl-0,
    .mx-xl-0 {
        margin-left: 0 !important;
    }
    
    .m-xl-1 {
        margin: 0.25rem !important;
    }
    
    .mt-xl-1,
    .my-xl-1 {
        margin-top: 0.25rem !important;
    }
    
    .mr-xl-1,
    .mx-xl-1 {
        margin-right: 0.25rem !important;
    }
    
    .mb-xl-1,
    .my-xl-1 {
        margin-bottom: 0.25rem !important;
    }
    
    .ml-xl-1,
    .mx-xl-1 {
        margin-left: 0.25rem !important;
    }
    
    .m-xl-2 {
        margin: 0.5rem !important;
    }
    
    .mt-xl-2,
    .my-xl-2 {
        margin-top: 0.5rem !important;
    }
    
    .mr-xl-2,
    .mx-xl-2 {
        margin-right: 0.5rem !important;
    }
    
    .mb-xl-2,
    .my-xl-2 {
        margin-bottom: 0.5rem !important;
    }
    
    .ml-xl-2,
    .mx-xl-2 {
        margin-left: 0.5rem !important;
    }
    
    .m-xl-3 {
        margin: 1rem !important;
    }
    
    .mt-xl-3,
    .my-xl-3 {
        margin-top: 1rem !important;
    }
    
    .mr-xl-3,
    .mx-xl-3 {
        margin-right: 1rem !important;
    }
    
    .mb-xl-3,
    .my-xl-3 {
        margin-bottom: 1rem !important;
    }
    
    .ml-xl-3,
    .mx-xl-3 {
        margin-left: 1rem !important;
    }
    
    .m-xl-4 {
        margin: 1.5rem !important;
    }
    
    .mt-xl-4,
    .my-xl-4 {
        margin-top: 1.5rem !important;
    }
    
    .mr-xl-4,
    .mx-xl-4 {
        margin-right: 1.5rem !important;
    }
    
    .mb-xl-4,
    .my-xl-4 {
        margin-bottom: 1.5rem !important;
    }
    
    .ml-xl-4,
    .mx-xl-4 {
        margin-left: 1.5rem !important;
    }
    
    .m-xl-5 {
        margin: 3rem !important;
    }
    
    .mt-xl-5,
    .my-xl-5 {
        margin-top: 3rem !important;
    }
    
    .mr-xl-5,
    .mx-xl-5 {
        margin-right: 3rem !important;
    }
    
    .mb-xl-5,
    .my-xl-5 {
        margin-bottom: 3rem !important;
    }
    
    .ml-xl-5,
    .mx-xl-5 {
        margin-left: 3rem !important;
    }
    
    .p-xl-0 {
        padding: 0 !important;
    }
    
    .pt-xl-0,
    .py-xl-0 {
        padding-top: 0 !important;
    }
    
    .pr-xl-0,
    .px-xl-0 {
        padding-right: 0 !important;
    }
    
    .pb-xl-0,
    .py-xl-0 {
        padding-bottom: 0 !important;
    }
    
    .pl-xl-0,
    .px-xl-0 {
        padding-left: 0 !important;
    }
    
    .p-xl-1 {
        padding: 0.25rem !important;
    }
    
    .pt-xl-1,
    .py-xl-1 {
        padding-top: 0.25rem !important;
    }
    
    .pr-xl-1,
    .px-xl-1 {
        padding-right: 0.25rem !important;
    }
    
    .pb-xl-1,
    .py-xl-1 {
        padding-bottom: 0.25rem !important;
    }
    
    .pl-xl-1,
    .px-xl-1 {
        padding-left: 0.25rem !important;
    }
    
    .p-xl-2 {
        padding: 0.5rem !important;
    }
    
    .pt-xl-2,
    .py-xl-2 {
        padding-top: 0.5rem !important;
    }
    
    .pr-xl-2,
    .px-xl-2 {
        padding-right: 0.5rem !important;
    }
    
    .pb-xl-2,
    .py-xl-2 {
        padding-bottom: 0.5rem !important;
    }
    
    .pl-xl-2,
    .px-xl-2 {
        padding-left: 0.5rem !important;
    }
    
    .p-xl-3 {
        padding: 1rem !important;
    }
    
    .pt-xl-3,
    .py-xl-3 {
        padding-top: 1rem !important;
    }
    
    .pr-xl-3,
    .px-xl-3 {
        padding-right: 1rem !important;
    }
    
    .pb-xl-3,
    .py-xl-3 {
        padding-bottom: 1rem !important;
    }
    
    .pl-xl-3,
    .px-xl-3 {
        padding-left: 1rem !important;
    }
    
    .p-xl-4 {
        padding: 1.5rem !important;
    }
    
    .pt-xl-4,
    .py-xl-4 {
        padding-top: 1.5rem !important;
    }
    
    .pr-xl-4,
    .px-xl-4 {
        padding-right: 1.5rem !important;
    }
    
    .pb-xl-4,
    .py-xl-4 {
        padding-bottom: 1.5rem !important;
    }
    
    .pl-xl-4,
    .px-xl-4 {
        padding-left: 1.5rem !important;
    }
    
    .p-xl-5 {
        padding: 3rem !important;
    }
    
    .pt-xl-5,
    .py-xl-5 {
        padding-top: 3rem !important;
    }
    
    .pr-xl-5,
    .px-xl-5 {
        padding-right: 3rem !important;
    }
    
    .pb-xl-5,
    .py-xl-5 {
        padding-bottom: 3rem !important;
    }
    
    .pl-xl-5,
    .px-xl-5 {
        padding-left: 3rem !important;
    }
    
    .m-xl-n1 {
        margin: -0.25rem !important;
    }
    
    .mt-xl-n1,
    .my-xl-n1 {
        margin-top: -0.25rem !important;
    }
    
    .mr-xl-n1,
    .mx-xl-n1 {
        margin-right: -0.25rem !important;
    }
    
    .mb-xl-n1,
    .my-xl-n1 {
        margin-bottom: -0.25rem !important;
    }
    
    .ml-xl-n1,
    .mx-xl-n1 {
        margin-left: -0.25rem !important;
    }
    
    .m-xl-n2 {
        margin: -0.5rem !important;
    }
    
    .mt-xl-n2,
    .my-xl-n2 {
        margin-top: -0.5rem !important;
    }
    
    .mr-xl-n2,
    .mx-xl-n2 {
        margin-right: -0.5rem !important;
    }
    
    .mb-xl-n2,
    .my-xl-n2 {
        margin-bottom: -0.5rem !important;
    }
    
    .ml-xl-n2,
    .mx-xl-n2 {
        margin-left: -0.5rem !important;
    }
    
    .m-xl-n3 {
        margin: -1rem !important;
    }
    
    .mt-xl-n3,
    .my-xl-n3 {
        margin-top: -1rem !important;
    }
    
    .mr-xl-n3,
    .mx-xl-n3 {
        margin-right: -1rem !important;
    }
    
    .mb-xl-n3,
    .my-xl-n3 {
        margin-bottom: -1rem !important;
    }
    
    .ml-xl-n3,
    .mx-xl-n3 {
        margin-left: -1rem !important;
    }
    
    .m-xl-n4 {
        margin: -1.5rem !important;
    }
    
    .mt-xl-n4,
    .my-xl-n4 {
        margin-top: -1.5rem !important;
    }
    
    .mr-xl-n4,
    .mx-xl-n4 {
        margin-right: -1.5rem !important;
    }
    
    .mb-xl-n4,
    .my-xl-n4 {
        margin-bottom: -1.5rem !important;
    }
    
    .ml-xl-n4,
    .mx-xl-n4 {
        margin-left: -1.5rem !important;
    }
    
    .m-xl-n5 {
        margin: -3rem !important;
    }
    
    .mt-xl-n5,
    .my-xl-n5 {
        margin-top: -3rem !important;
    }
    
    .mr-xl-n5,
    .mx-xl-n5 {
        margin-right: -3rem !important;
    }
    
    .mb-xl-n5,
    .my-xl-n5 {
        margin-bottom: -3rem !important;
    }
    
    .ml-xl-n5,
    .mx-xl-n5 {
        margin-left: -3rem !important;
    }
    
    .m-xl-auto {
        margin: auto !important;
    }
    
    .mt-xl-auto,
    .my-xl-auto {
        margin-top: auto !important;
    }
    
    .mr-xl-auto,
    .mx-xl-auto {
        margin-right: auto !important;
    }
    
    .mb-xl-auto,
    .my-xl-auto {
        margin-bottom: auto !important;
    }
    
    .ml-xl-auto,
    .mx-xl-auto {
        margin-left: auto !important;
    }
}
@media (max-width: 1200px) {
    .typography .col-6 {
        flex-basis: 100%;
        max-width: 100%;
        padding: 0 15px;
        -ms-flex-preferred-size: 100%;
    }
    
    .header__menu nav ul li a {
        margin: 0 13px;
        font-size: 14px;
    }
    
    .top__wrapper:before {
        display: none;
    }
    
    .top__wrapper:after {
        display: none;
    }
    
    .slider__top .slider__nav {
        display: none;
    }
    
    .slider__top-content {
        height: 700px;
    }
    
    .slider__top .btn-active {
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .single__top-content {
        height: 700px;
    }
    
    .single__top .btn-active {
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .single__top.video-background .btn {
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .newsletter__form .form-item {
        width: 25%;
    }
    
    .portfolio .grid-portfolio .portfolio-item {
        width: 31%;
    }
    
    .portfolio__block {
        grid-template-columns: repeat(auto-fill, 33.33333%);
    }
    
    .portfolio .portfolio__nav {
        display: none;
    }
    
    .project__block-top.full-width .project__gallery {
        padding: 0;
    }
    
    .project__block-top.full-width .project__gallery .project__gallery-col {
        margin: 0 0 15px;
    }
    
    .project__block-top.full-width .project__gallery .project__gallery-col-2 {
        margin: 0;
    }
    
    .project__block-top.full-width .sidebar {
        padding: 0;
    }
    
    .blog__body {
        padding: 0;
    }
    
    .progressbar-block {
        padding: 0;
    }
}
@media (max-width: 1050px) {
    .btn-active {
        height: 40px;
        font-size: 14px;
    }
    
    .btn {
        height: 40px;
        font-size: 14px;
    }
    
    .why-trust__block {
        width: 100%;
    }
    
    .why-trust__block.title h3 {
        margin-bottom: 40px;
        padding: 20px 0;
    }
    
    .counter {
        border-radius: 0;
    }
    
    .team__item {
        flex-basis: 50%;
        max-width: 50%;
        -ms-flex-preferred-size: 50%;
    }
    
    .team__image:before {
        opacity: 1;
        visibility: visible;
    }
    
    .team__name {
        opacity: 1;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    
    .team__specialty {
        opacity: 1;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    
    .footer__item {
        width: 50%;
    }
    
    .footer__item-links ul li a {
        margin: 1px 0;
    }
    
    .contact__form-phone {
        flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
    }
    
    .contact__form-email {
        flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
    }
    
    .about .container {
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
    }
    
    .about__text {
        width: 100%;
        padding: 0;
    }
    
    .about__image {
        width: 100%;
        height: 350px;
        margin-bottom: 20px;
    }
    
    .about .counter__item {
        width: 50%;
        padding: 60px 15px;
    }
    
    .services .tab-link {
        padding: 22px 0;
    }
    
    .services .tab-link img {
        height: 28px;
    }
    
    .services .tab-content {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    
    .services .tab-content .services__image {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        height: 295px;
        margin-bottom: 30px;
        -webkit-box-flex: 0;
    }
    
    .services .tab-content .services__text {
        width: 100%;
        padding-left: 0;
    }
    
    .project__block {
        padding: 0;
    }
    
    .project__gallery .project-slider .project-slider-item {
        height: 350px;
    }
}
@media (max-width: 991px) {
    .tabs {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    
    .tab-link {
        -webkit-transform: perspective(1px) translate(0, 0) skewX(0deg);
        transform: perspective(1px) translate(0, 0) skewX(0deg);
    }
    
    .tab-link:active {
        -webkit-transform: perspective(1px) translateZ(0) skewX(0deg);
        transform: perspective(1px) translateZ(0) skewX(0deg);
    }
    
    .tab-link>span {
        -webkit-transform: perspective(1px) translateZ(0) skewX(0deg);
        transform: perspective(1px) translateZ(0) skewX(0deg);
    }
    
    header.pages .container {
        position: relative;
    }
    
    header .pages__head {
        padding: 100px 15px 20px;
    }
    
    .header__top {
        padding: 10px 0;
    }
    
    .header__top.scrolled {
        overflow: visible;
    }
    
    .header__top .burger-wrapper {
        position: absolute;
        top: auto;
        right: 0;
        z-index: 2200;
        display: block;
        overflow: hidden;
        width: 53px;
        height: 53px;
    }
    
    .header__top .burger {
        cursor: pointer;
        -moz-user-select: none;
        -webkit-user-select: none;
        -ms-user-select: none;
        user-select: none;
        -webkit-transition: -webkit-transform 400ms;
        transition: -webkit-transform 400ms;
        transition: transform 400ms;
        transition: transform 400ms, -webkit-transform 400ms;
        -webkit-tap-highlight-color: transparent;
    }
    
    .header__top .hamRotate.active {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    
    .header__top .hamRotate180.active {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    
    .header__top .line {
        fill: none;
        stroke: #fff;
        -webkit-transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
        transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
        stroke-width: 5.5;
        stroke-linecap: round;
    }
    
    .header__top .burger .top {
        stroke-dasharray: 40 160;
    }
    
    .header__top .burger .middle {
        -webkit-transition: -webkit-transform 400ms;
        transition: -webkit-transform 400ms;
        transition: transform 400ms;
        transition: transform 400ms, -webkit-transform 400ms;
        -webkit-transform-origin: 50%;
        transform-origin: 50%;
        stroke-dasharray: 40 142;
    }
    
    .header__top .burger .bottom {
        -webkit-transition: stroke-dashoffset 400ms, -webkit-transform 400ms;
        transition: stroke-dashoffset 400ms, -webkit-transform 400ms;
        transition: transform 400ms, stroke-dashoffset 400ms;
        transition: transform 400ms, stroke-dashoffset 400ms, -webkit-transform 400ms;
        -webkit-transform-origin: 50%;
        transform-origin: 50%;
        stroke-dasharray: 40 85;
    }
    
    .header__top .burger.active .top {
        stroke-dashoffset: -64px;
    }
    
    .header__top .burger.active .middle {
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
    }
    
    .header__top .burger.active .bottom {
        stroke-dashoffset: -64px;
    }
    
    .header__top.scrolled {
        padding: 10px 0 !important;
    }
    
    .header__logo {
        width: 130px;
        height: auto;
    }
    
    .header__menu .btn-active {
        height: 27px;
        margin-right: 45px !important;
        padding: 0 10px;
        font-size: 12px;
    }
    
    .header__menu nav {
        position: fixed;
        top: 0;
        right: -50%;
        z-index: 2100;
        display: block;
        overflow: auto;
        width: 50%;
        height: 100vh;
        background: #000;
        -webkit-box-shadow: 0 0 3px rgba(42, 42, 42, 0.1);
        box-shadow: 0 0 3px rgba(42, 42, 42, 0.1);
        -webkit-transition: 0.7s cubic-bezier(0.86, 0, 0.07, 1);
        transition: 0.7s cubic-bezier(0.86, 0, 0.07, 1);
    }
    
    .header__menu nav ul {
        -ms-flex-direction: column;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        height: 100%;
        padding: 70px 0 0 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-box-align: start;
        -ms-flex-align: start;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
    }
    
    .header__menu nav ul li {
        width: 100%;
    }
    
    .header__menu nav ul li.sub {
        position: relative;
    }
    
    .header__menu nav ul li.sub:after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 49px;
        height: 49px;
        background: url(../img/angle-bt.svg) center center no-repeat;
        background-size: 12px;
        opacity: 0.4;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
        -webkit-transform: scale(1, -1);
        transform: scale(1, -1);
    }
    
    .header__menu nav ul li.sub.open:after {
        -webkit-transform: scale(-1, 1);
        transform: scale(-1, 1);
    }
    
    .header__menu nav ul li.sub>a:after {
        display: none;
    }
    
    .header__menu nav ul li .submenu {
        position: relative;
        top: auto;
        left: auto;
        display: none;
        width: 100%;
        height: auto;
        border: 0;
        background: transparent;
        opacity: 1;
        visibility: visible;
        -webkit-transition: auto;
        transition: auto;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    
    .header__menu nav ul li .submenu li {
        padding-left: 15px;
    }
    
    .header__menu nav ul li .submenu li a {
        position: relative;
        font-weight: 600;
        text-transform: inherit;
    }
    
    .header__menu nav ul li .submenu li a:before {
        content: "";
        position: absolute;
        top: 17px;
        left: 0;
        width: 8px;
        height: 2px;
        border-radius: 1px;
        background: #3c4750;
        opacity: 1;
        -webkit-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
        -webkit-transform: translate(-4px, 0);
        transform: translate(-4px, 0);
    }
    
    .header__menu nav ul li .submenu li a:hover {
        background: inherit;
        color: #fff;
    }
    
    .header__menu nav ul li a {
        display: block;
        margin: 0 !important;
        padding: 10px 15px;
    }
    
    .header__menu nav ul li a.active,
    .header__menu nav ul li a:hover {
        border-bottom: 1px solid #22282d;
        background: #22282d;
        color: #fff;
    }
    
    .header__menu nav.active {
        right: 0;
        display: block;
    }
    
    section {
        padding: 40px 0;
    }
    
    .slider__top-text {
        line-height: 26px;
    }
    
    .single__top-text {
        line-height: 26px;
    }
    
    .contact__block {
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
    }
    
    .contact__info {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        margin-bottom: 70px;
        padding: 0;
        -webkit-box-flex: 0;
    }
    
    .contact__form {
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        -webkit-box-flex: 1;
    }
    
    .portfolio .filter-button {
        padding: 0;
        border-radius: 5px;
        background: #141a1e;
    }
    
    .portfolio .filter-button .tab-link {
        flex-basis: 33.333333%;
        max-width: 33.333333%;
        border-radius: 5px;
        -ms-flex-preferred-size: 33.333333%;
    }
    
    .portfolio .grid-portfolio .portfolio-item {
        width: 48%;
    }
    
    .portfolio .grid-portfolio .portfolio-item:hover .portfolio-title {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    
    .portfolio .grid-portfolio .portfolio-item .portfolio-title {
        color: #fff;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    
    .portfolio .grid-portfolio .portfolio-item .portfolio-subtitle {
        overflow: visible;
        opacity: 1;
        -webkit-transform: translate(0, 20px);
        transform: translate(0, 20px);
    }
    
    .portfolio__block {
        padding: 0 3px;
    }
    
    .portfolio__item {
        border: 3px solid #0d1114;
    }
    
    .portfolio__item:hover .portfolio__desc .portfolio__text {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    
    .portfolio__item:hover .portfolio__desc .portfolio__title {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    
    .portfolio__desc {
        padding: 15px;
    }
    
    .portfolio__text {
        padding-top: 0 !important;
        opacity: 1;
        visibility: visible;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
    
    .project__block-top.sidebar-left .sidebar {
        padding-right: 0;
    }
    
    .blog__body {
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
    }
    
    .blog__body.sidebar-left .sidebar {
        padding-right: 0;
    }
    
    .blog__body.sidebar-left {
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
    }
    
    .blog__block {
        flex-basis: 100%;
        max-width: 100%;
        margin-bottom: 40px;
        -ms-flex-preferred-size: 100%;
    }
    
    .page__body {
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
    }
}
@media (max-width: 850px) {
    .newsletter {
        padding: 70px 0;
    }
    
    .newsletter__title {
        margin-bottom: 40px;
    }
    
    .newsletter__form .form-item {
        width: 44%;
        margin: 0 10px;
    }
    
    .newsletter__form .form-item:last-child {
        width: 280px;
        margin: 0 !important;
    }
    
    .newsletter__form .form-item .input-bg {
        height: inherit;
    }
    
    .newsletter__form .form-item .input-bg input {
        height: inherit;
    }
    
    .newsletter__form .form-item .btn-active {
        height: 40px;
    }
    
    .project__block-top {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    
    .project__gallery {
        flex-basis: 100%;
        max-width: 100%;
        margin-bottom: 40px;
        -ms-flex-preferred-size: 100%;
    }
    
    .sidebar {
        flex-basis: 100%;
        max-width: 100%;
        padding-left: 0;
        -ms-flex-preferred-size: 100%;
    }
}
@media (max-width: 767px) {
    body {
        background-size: cover;
    }
    
    .slider__top-content {
        align-items: center;
        height: 600px;
        text-align: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
    }
    
    .slider__top-text {
        margin: 40px 0;
    }
    
    .single__top-content {
        align-items: center;
        height: 600px;
        text-align: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
    }
    
    .single__top-text {
        margin: 25px 0;
    }
    
    .why-trust__block.title h3 {
        position: relative;
        -ms-flex-direction: row;
        flex-direction: row;
        margin-bottom: 60px;
        padding: 0 15px;
        background: none;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
    }
    
    .why-trust__block.title h3:after {
        content: "";
        position: absolute;
        bottom: -20px;
        left: 50%;
        width: 150px;
        height: 1px;
        background: radial-gradient(closest-side, #94cf14, rgba(188, 188, 188, 0));
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }
    
    .why-trust__block.title h3:before {
        content: "";
        position: absolute;
        bottom: -30px;
        left: 50%;
        width: 100px;
        height: 1px;
        background: radial-gradient(closest-side, #bcbcbc, rgba(188, 188, 188, 0));
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
    }
    
    .why-trust__block.title h3 span {
        margin-left: 15px;
    }
    
    .services__item {
        padding: 30px 15px;
    }
    
    .services__item-img {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: 60px;
        margin-right: 0;
        margin-bottom: 0;
        -webkit-box-flex: 0;
    }
    
    .services__item-img .icon-svg {
        width: 100%;
    }
    
    .services__item-desc-title {
        margin: 10px 0;
    }
    
    .services .tabs {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        padding: 0;
    }
    
    .services .tab-link {
        flex-basis: 33.33333333%;
        max-width: 33.33333333%;
        margin-right: -1px;
        margin-bottom: -1px;
        padding: 15px 0;
        border-color: #12171b;
        font-size: 14px;
        -webkit-transform: perspective(1px) translate(0, 0) skewX(0deg);
        transform: perspective(1px) translate(0, 0) skewX(0deg);
        -ms-flex-preferred-size: 33.33333333%;
    }
    
    .services .tab-link span {
        -webkit-transform: perspective(1px) translate(0, 0) skewX(0deg);
        transform: perspective(1px) translate(0, 0) skewX(0deg);
    }
    
    .services .tab-link:nth-child(3) {
        border-radius: 0 5px 0 0;
    }
    
    .services .tab-link:nth-child(4) {
        border-radius: 0 0 0 5px;
    }
    
    .services .tab-link:last-child {
        border-radius: 0 0 5px 0;
    }
    
    .services .tab-link:first-child {
        border-radius: 5px 0 0 0;
    }
    
    .services .tabs {
        margin-bottom: 40px;
    }
    
    .portfolio .tab-wrapper {
        position: relative;
        overflow-y: scroll;
    }
    
    .portfolio .tabs {
        justify-content: flex-start;
        margin-bottom: 20px;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
    }
    
    .portfolio .filter-button .tab-link {
        flex-basis: 50%;
        max-width: 50%;
        padding: 10px 0;
        font-size: 14px;
        -ms-flex-preferred-size: 50%;
    }
    
    .portfolio .grid-portfolio {
        margin: 0;
    }
    
    .portfolio .grid-portfolio .portfolio-item {
        width: 100%;
        margin: 0 0 20px;
    }
    
    .portfolio .grid-portfolio .portfolio-item .portfolio-image {
        height: 380px;
    }
    
    .portfolio__block {
        grid-template-columns: repeat(auto-fill, 50%);
    }
    
    .portfolio__image {
        overflow: hidden;
        border-radius: 5px;
    }
    
    .portfolio__image:before {
        display: none;
    }
    
    .portfolio__text span {
        margin: 0 5px 0 0;
    }
    
    .portfolio__text span:after {
        margin-left: 5px;
    }
    
    .project__block-top.full-width .project__gallery .project__gallery-col-2 {
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
    }
    
    .project__block-top.full-width .project__gallery .project__gallery-col-2 a {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .project__block-top.full-width .sidebar__info-list li {
        width: 50%;
    }
    
    .project__block-top.full-width .sidebar__info-list li:nth-child(4) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .progressbar-block .progressbar-item {
        margin-bottom: 40px;
    }
    
    .user__use-block .user__use-link {
        font-size: 14px;
    }
}
@media (max-width: 600px) {
    .block__title h3,
    .pages__head .block__title h2 {
        margin-bottom: 70px;
    }
    
    .pages__head .block__title h2 {
        margin-bottom: 0;
    }
    
    .counter {
        padding: 0;
    }
    
    .counter__item {
        padding: 60px 15px;
    }
    
    .slider__nav a {
        height: 24px;
    }
    
    .slider__nav a:active {
        -webkit-transform: translate(0, 1px) perspective(1px) translateZ(0) skewX(-13deg);
        transform: translate(0, 1px) perspective(1px) translateZ(0) skewX(-13deg);
    }
    
    .slider__nav svg {
        width: 17px;
        height: 11px;
    }
    
    .reviewshome__slider {
        margin: 0 -15px;
    }
    
    .reviewshome__avatar {
        -ms-flex: 0 0 70px;
        flex: 0 0 70px;
        width: 70px;
        height: 70px;
        -webkit-box-flex: 0;
    }
    
    .newsletter__form .dflex {
        -ms-flex-direction: column;
        flex-direction: column;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-box-align: center;
        -ms-flex-align: center;
    }
    
    .newsletter__form .form-item {
        width: 280px;
        margin: 0 !important;
    }
    
    .portfolio__desc {
        opacity: 1;
        visibility: visible;
    }
    
    .blog__image {
        height: 250px;
    }
    
    .bloghome__slider {
        margin: 0 -15px;
    }
    
    .bloghome__item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
    }
    
    .bloghome__image img {
        opacity: 1;
    }
    
    .bloghome h4 {
        padding: 0;
    }
    
    .bloghome h4 {
        height: auto;
        margin: 20px 0;
    }
    
    .bloghome__text {
        padding: 0 0 15px;
        color: #bcbcbc;
    }
    
    .bloghome__btn {
        margin: 20px 0;
        opacity: 1;
    }
    
    .blog-page .author {
        margin-bottom: 40px;
        padding: 15px;
    }
    
    .blog-page .comments__item.reply {
        padding-left: 30px;
    }
    
    .blog-page .comments__avatar {
        -ms-flex: 0 0 50px;
        flex: 0 0 50px;
        width: 50px;
        height: 50px;
        margin-right: 10px;
        -webkit-box-flex: 0;
    }
    
    .blog-page .comments__name-title {
        font-size: 15px;
    }
    
    .blog-page .comments__name-date {
        font-size: 13px;
    }
    
    .blog-page .leave-reply .col-6 {
        flex-basis: 100%;
        max-width: 100%;
        -ms-flex-preferred-size: 100%;
    }
    
    .page__image {
        height: 250px;
    }
    
    .modal-default.fancybox-content {
        padding: 15px;
    }
    
    .modal-custom.fancybox-content {
        padding: 15px;
    }
}
@media all and (max-width: 576px) {
    .fancybox-thumbs {
        width: 110px;
    }
    
    .fancybox-show-thumbs .fancybox-inner {
        right: 110px;
    }
    
    .fancybox-thumbs__list a {
        max-width: calc(100% - 10px);
    }
}
@media (max-width: 575px) {
    .header__logo {
        /*overflow: hidden;*/
        height: auto;
    }
    
    .header__logo img {
        width: 130px;
        max-width: 130px;
    }
    
    .header__menu nav {
        right: -100%;
        width: 100%;
    }
    
    .header__menu nav.active {
        right: 0;
    }
    
    .project__block-top.full-width .sidebar__info-list li {
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    }
    
    .project__block-top.full-width .sidebar__info-list li:last-child {
        border-bottom: 0 !important;
    }
}
@media (max-width: 500px) {
    .team__item {
        flex-basis: 100%;
        max-width: 100%;
        -ms-flex-preferred-size: 100%;
    }
    
    .team__image {
        height: 370px;
    }
    
    .modal-custom .modal-team-body {
        -ms-flex-direction: column;
        flex-direction: column;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-box-align: center;
        -ms-flex-align: center;
    }
    
    .modal-custom .modal-team-left {
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        -webkit-box-flex: 0;
    }
    
    .modal-custom .modal-team-left img {
        width: auto;
        height: 100%;
    }
    
    .modal-custom .modal-team-img {
        width: 140px;
        height: 200px;
    }
    
    .modal-custom .modal-team-right {
        width: 100%;
        padding-left: 0;
        text-align: center;
    }
    
    .modal-custom .modal-team-name {
        margin: 20px 0 5px 0;
    }
    
    .reviewshome__item {
        padding: 15px 0;
        border: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
    }
    
    .clients__slider {
        margin: 0 -10px;
    }
    
    .clients__image {
        margin: 0 10px;
        padding: 10px 20px;
    }
    
    .footer {
        padding: 0 0 30px 0;
    }
    
    .footer__item {
        width: 100%;
        padding: 30px 0 0 0;
    }
    
    .project__gallery .project-slider .project-slider-item {
        height: 250px;
    }
    
    .project__gallery .project-nav .project-nav-item {
        height: 80px;
    }
    
    .user__use-block {
        padding: 15px;
    }
}
@media (max-width: 480px) {
    .counter__item {
        width: 100%;
        padding: 50px 15px;
        border-bottom: 1px solid #22282d;
    }
    
    .counter__item:last-child {
        border: 0;
    }
    
    .counter__item:after,
    .counter__item:before {
        display: none !important;
    }
    
    .slider__nav {
        justify-content: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
    }
    
    .contact__form .btn-submit {
        width: 100%;
    }
    
    .about .counter__item {
        width: 100%;
    }
    
    .services .tab-content .services__image {
        height: 200px;
    }
    
    .portfolio__block {
        grid-template-columns: repeat(auto-fill, 100%);
    }
    
    .blog-page .author {
        -ms-flex-direction: column;
        flex-direction: column;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-box-align: center;
        -ms-flex-align: center;
    }
    
    .blog-page .author__avatar {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .blog-page .author .author__desc .author__name {
        text-align: center;
    }
}
@media print {
    .d-print-none {
        display: none !important;
    }
    
    .d-print-inline {
        display: inline !important;
    }
    
    .d-print-inline-block {
        display: inline-block !important;
    }
    
    .d-print-block {
        display: block !important;
    }
    
    .d-print-table {
        display: table !important;
    }
    
    .d-print-table-row {
        display: table-row !important;
    }
    
    .d-print-table-cell {
        display: table-cell !important;
    }
    
    .d-print-flex {
        display: -ms-flexbox !important;
        display: -webkit-box !important;
        display: flex !important;
    }
    
    .d-print-inline-flex {
        display: -ms-inline-flexbox !important;
        display: -webkit-inline-box !important;
        display: inline-flex !important;
    }
}
@media all and (max-height: 576px) {
    @supports (padding: max(0px)) {
        .fancybox-caption {
            padding-right: max(12px, env(safe-area-inset-right));
            padding-left: max(12px, env(safe-area-inset-left));
        }
    }
    
    .fancybox-slide {
        padding-right: 6px;
        padding-left: 6px;
    }
    
    .fancybox-slide--image {
        padding: 6px 0;
    }
    
    .fancybox-close-small {
        right: -6px;
    }
    
    .fancybox-slide--image .fancybox-close-small {
        top: 0;
        right: 0;
        width: 36px;
        height: 36px;
        padding: 6px;
        background: #4e4e4e;
        color: #f2f4f6;
        opacity: 1;
    }
    
    .fancybox-caption {
        padding-right: 12px;
        padding-left: 12px;
    }
}
.header__logo span {
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    text-transform: uppercase;
    padding-left: 14px;
}
.rate_table {
    height: unset;
    padding: 100px 0;
}
.rate_table .bg-border {
    max-width: 1200px;
}
.rate_table table th,
.rate_table table td {
    text-align: center;
}
.rate_table table th:first-child,
.rate_table table td:first-child {
    text-align: left;
    padding-left: 25px;
}
.rate_table table img.ticker_logo {
    max-width: 25px;
    vertical-align: middle;
    margin-right: 10px;
}
.rate_table table span {
    font-size: 16px;
    color: #fff;
}
.text-red {
    color: #e95454 !important;
}
.text-green {
    color: #94cf14 !important;
}
.text-orange {
    color: #ffb547 !important;
}
.text-blue {
    color: #1481cf !important;
}
.border-green {
    color: #fff !important;
    background-color: #94cf14 !important;
}
.how-works .blocks .block_item .services__item-desc {
    min-height: 160px;
    display: flex;
    align-items: center;
    flex-flow: column;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}
.how-works .blocks .block_item .services__item-desc .services__item-desc-title {
    margin: 13px 0;
}
footer {
    background-color: #0c0f12;
    border-top: 1px solid #181d22;
}
footer .footer {
    color: #a1a1a1
}
.footer__item-links ul li a {
    color: #a1a1a1;
}
footer .footer .header__logo span {
    color: #cfcfcf;
}
.faq h3 {
    display: inline-block;
    cursor: pointer;
    font-size: 28px;
    font-weight: bold;
}
.faq .accordion__panel {
    margin: 10px 0 25px;
}
.faq .question-block[aria-expanded="true"] h3 {
    border-bottom: 2px solid #94cf14;
}
.faq .question-block h3:hover {
    color: #94cf14;
}
.profile .filter-button .tab-link {
    padding: 15px 0;
}
.profile .profile_row {
    display: flex;
    align-items: center;
}
.profile .profile_row .profile_block {
    margin-right: 40px;
}
.profile .profile_row .profile_block:last-child {
    margin-right: 0;
}
.profile .avatar .circle {
    border: solid 2px #94cf14;
    border-radius: 360px;
    font-size: 28px;
    font-weight: bold;
    background-color: #0d1114;
    display: flex;
    height: 90px;
    width: 90px;
    align-items: center;
    justify-content: center;
}
.profile .verified_status {
    position: absolute;
    top: 0px;
}
.profile .verified_status a {
    border-bottom: solid 1px;
}
.text-uppercase {
    text-transform: uppercase !important;
}
.trading_fees_block {
    display: flex;
    align-items: center;
}
.trading_fees_block .trading_fees_types {
    display: inline-flex;
    flex-flow: column;
    font-size: 16px;
}
.profile_blocks {
    margin: 40px 0 70px;
}
.profile_blocks .profile_blocks_item .services__item-desc {
    padding: 25px;
}
.profile_blocks .profile_blocks_item .services__item-desc .services__item-desc-title {
    margin: 0;
}
.setting_group {
    background: #141a1e;
    transition: all 0.3s;
}
.setting_group .title {
    margin: 0;
    font-size: 22px;
    padding: 30px;
    border-bottom: solid 1px #22282d;
    text-align: left;
}
.setting_group .content {
    padding: 30px;
    display: none;
}
.setting_group:not(.disabled):hover .title {
    color: #94cf14;
    cursor: pointer;
}
.setting_group .bg-border {
    width: 500px;
    margin: 0 auto;
}
.setting_group.active .title {
    color: #94cf14;
}
.setting_group.active .content {
    display: block;
}
.float-right {
    float: right !important;
}
.float-left {
    float: right !important;
}
.profile .author {
    margin-bottom: 0;
    align-items: center;
}
.profile .author .qr_code {
    background: #fff;
    width: 250px;
    margin-right: 20px;
    padding: 5px;
    border-radius: 5px;
}
.setting_group .title i {
    min-width: 40px;
    text-align: center;
}
.bg_black {
    background-color: #0d1114;
}
.menu_block {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wallet_menu {
    width: 100%;
    background-color: #13171a;
}
.wallet_menu ul {
    padding: 0;
    margin: 0;
    display: inline-flex;
    align-items: center;
}
.wallet_menu ul li {
    display: inline-flex;
    cursor: pointer;
    margin-right: -4px;
    padding: 0;
}
.wallet_menu ul li:before {
    content: unset !important;
}
.wallet_menu ul li a:not(.btn) {
    border-bottom: unset;
    padding: 15px 20px;
    margin: 0;
    margin-bottom: 1px;
    text-transform: unset;
    font-weight: unset;
}
.wallet_menu ul li a:not(.btn):hover {
    /*background-color: #94cf14;*/
    
    color: #94cf14;
}
.wallet_menu ul li.active a:not(.btn) {
    border-bottom: solid 2px #94cf14;
}
.wallet_menu .menu_block a.btn {
    font-size: 1.3rem;
    padding: 1.5rem;
    min-width: 120px;
    min-height: 35px;
}
section.wallet {
    padding-top: 10rem;
}
.balance_overview {
    color: #d9d9d9;
    font-size: 24px;
}
.balance_overview i {
    font-size: 32px;
    vertical-align: text-bottom;
    margin-right: 9px;
    color: #94cf14;
}
.balance_overview span {
    font-size: 17px;
    vertical-align: middle;
}
.promo_btn {
    font-size: 18px;
    text-transform: uppercase;
}
.wallet .assets input.search {
    width: 300px;
}
.wallet .assets .form-group {
    display: flex;
    align-items: baseline;
}
.wallet table tr {
    background: #1b2024;
}
.wallet .assets table td,
.wallet .assets table th {
    text-align: center;
    font-size: 16px;
}
.wallet table td:first-child,
.wallet table th:first-child {
    text-align: left;
    padding-left: 20px;
}
.wallet .assets table td {
    color: #d1d1d1;
    line-height: 22px;
    transition: all 0.3s;
}
.wallet .assets table tr:hover td {
    color: #fff;
}
.wallet table tr:hover {
    background: #23282c;
}
table img.coin_icon {
    max-width: 35px;
    vertical-align: middle;
    display: inline-block;
}
table .coin_name {
    font-size: 18px;
    vertical-align: middle;
    padding-left: 10px;
}
.wallet .assets .table_usd {
    font-size: 14px;
    color: #94cf14;
}
.alert-success {
    background-color: #94cf14;
    width: 100%;
    padding: 15px 12px;
    border-radius: 5px;
    color: #fff;
}
.w-20 {
    width: 20%!important;
}
.w-22 {
    width: 22%!important;
}
.input_button {
    display: inline;
    position: relative;
    user-select: none;
}
.input_button a {
    position: absolute;
    top: 0;
    right: 20px;
    border: none;
    cursor: pointer;
    color: #94cf14 !important;
}
.form-group_content {
    display: flex;
    justify-content: space-between;
}
.form-group_content .input_button a {
    top: 10px;
    right: 13px;
}
.form-group_content .input_button a.left_btn {
    left: 13px;
    right: unset;
    z-index: 1;
    font-size: 30px;
    top: 9px;
}
.form-group_content .input_button a.right_btn {
    z-index: 1;
    font-size: 21px;
    top: 10px;
}
.staking_alert {
    text-align: center;
    font-size: 15px;
    margin: 0;
    margin-top: 20px;
}
.modal-content {
    background: linear-gradient(17deg, #22282d 0%, #30383f 100%);
}
.modal-header {
    border-bottom-color: #3c4750;
}
.modal-footer {
    border-top-color: #3c4750;
}
.modal-backdrop {
    --bs-backdrop-opacity: 0.8;
}
.deposit_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 150px;
    flex-flow: column;
}
.deposit_icon i {
    font-size: 118px;
}
.modal-header {
    border-bottom: none;
}
.btn-close {
    background: transparent url("/assets4/img/close.svg") center/1em auto no-repeat
}
.btn-close:focus {
    box-shadow: none;
}
.dep_qr_code {
    text-align: center;
}
.dep_qr_code svg {
    background: #fff;
    padding: 5px;
    border-radius: 5px;
}
.dep_alert {
    display: flex;
    align-items: self-end;
    margin-bottom: 25px;
}
.dep_alert_icon {
    margin-right: 12px;
    color: #ffb547;
}
.dep_alert_icon i {
    font-size: 32px;
}
.dep_alert_text {
    font-size: 15px;
    line-height: 21px;
}
.dep_info label {
    font-size: 16px;
}
.dep_info input[readonly] {
    cursor: pointer;
}
.dep_info .group p {
    margin-bottom: 0;
}
.av_balance_block {
    display: flex;
    justify-content: space-between;
    padding: 0 0 10px;
}
.trade_container {
    padding-top: 100px;
    display: flex;
    color: #fff;
    align-items: flex-start;
}
.trade_container .chart_block {
    width: 70%;
}
.trade_container .chart_block .chart {
    height: 518px;
}
.current_pair {
    color: #fff;
    font-size: 21px;
}
.current_pair .pair_name {
    display: block;
    font-size: 12px;
    color: #bfbfbf;
    position: absolute;
    left: 0;
    bottom: 0px;
}
.trade_container .pairs_info {
    display: flex;
    align-items: center;
    padding-left: 12px;
}
.trade_container .pairs_info .current_pair_info {
    display: flex;
    align-items: center;
}
.trade_container .info_block {
    line-height: 21px;
    margin-right: 35px;
}
.trade_container .info_block p {
    margin-bottom: 0px;
    font-size: 24px;
    font-weight: bold;
}
.trade_container .info_block span {
    font-size: 14px;
    font-weight: bold;
}
.trade_container .info_block label {
    display: block;
    font-size: 14px;
    color: #a9a9a9;
}
.intervals {
    padding: 10px 0 0 20px;
    margin-top: 10px;
    border-top: solid 1px #222222;
}
.intervals span {
    font-size: 16px;
    padding: 0 7px;
    cursor: pointer;
    color: #bbbbbb;
    transition: color 0.3s;
}
.intervals span:hover {
    color: #fff;
}
.trade_container .submenu {
    padding: 10px 0;
    width: 300px;
}
.trade_container .submenu .pair_search {
    width: 92%;
    margin-bottom: 10px;
}
.trade_container .submenu .pair_search input {
    height: 36px;
    width: 100%;
    font-size: 14px;
}
.trade_container .submenu li a span {
    float: right;
}
.trade_container .submenu li {
    border-bottom: solid 1px #3b3f42;
}
.trade_container .submenu li:last-child {
    border-bottom: none;
}
.trade_container .submenu .pair_list {
    width: 100%;
    height: 300px;
    overflow-y: scroll;
}
.trade_container .orderbook_block {
    display: flex;
    flex-wrap: wrap;
    width: 30%;
    border-left: solid 1px #222222;
}
.trade_container .orderbook_block table {
    font-size: 12px;
    line-height: 23.5px;
}
.trade_container .orderbook_block table th {
    color: #9b9b9b;
}
.trade_container .orderbook_block table tr {
    background: #0d1114;
}
.trade_container .orderbook_block .asks table tr td:first-child {
    color: #e95454;
}
.trade_container .orderbook_block .bids table tr td:first-child {
    color: #94cf14;
}
.trade_container .orderbook_block table th,
.trade_container .orderbook_block table td {
    padding: 0 5px;
}
.trade_container .orderbook_block h5 {
    margin: 0px 4px 4px;
}
.trade_container .orderbook_block .orderbook p {
    margin: 0 0 5px;
    font-size: 21px;
    font-weight: bold;
    text-align: center;
}
.trade_container .orderbook_block .orderbook,
.trade_container .orderbook_block .trade_history {
    width: 50%;
}
.trade_container .orderbook_block .deals {
    width: 100%;
    height: 100%;
    padding: 10px;
    border-top: solid 1px #222222;
}
.trade_container .chart_block .orders {
    margin-top: 15px;
}
.trade_container .chart_block .orders .orders_tabs {
    padding: 0 15px;
}
.trade_container .chart_block .orders .orders_tabs span {
    font-size: 14px;
    height: 100%;
    display: inline-flex;
    padding: 0 10px;
    cursor: pointer;
    color: #bbbbbb;
    transition: color 0.3s;
}
.trade_container .chart_block .orders .orders_tabs span:hover {
    color: #ffffff;
}
.trade_container .chart_block .orders .orders_tabs span.active {
    border-bottom: solid 1px #94cf14;
    color: #ffffff;
}
.trade_container .chart_block .orders .orders_table table {
    font-size: 12px;
}
.trade_container .chart_block .orders .orders_table table th {
    color: #9b9b9b;
}
.trade_container .chart_block .orders .orders_table table tbody tr {
    background: #0d1114;
}
.trade_container .chart_block .orders .orders_table table a {
    border: none;
    cursor: pointer !important;
}
.trade_container .chart_block .orders .orders_table table tbody tr td {
    padding: 2px 10px;
}
.trade_container .chart_block .orders .orders_table table tbody tr:hover {
    background: #202020;
}
.trade_container .orderbook_block .deals .deals_type span {
    font-size: 13px;
    padding: 2px 5px;
    margin-right: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #bbbbbb;
    cursor: pointer;
    transition: color 0.3s;
}
.trade_container .orderbook_block .deals .deals_type span:hover {
    color: #ffffff;
}
.trade_container .orderbook_block .deals .deals_type span.active {
    border-bottom: solid 1px #94cf14;
    color: #ffffff;
}
.trade_container .orderbook_block .deals .deals_form {
    display: flex;
    padding: 20px 0;
}
.trade_container .orderbook_block .deals .deals_form .input_button {
    display: inline-flex;
    width: 100%;
}
.trade_container .orderbook_block .deals .deals_form .type_buy {
    margin-right: 25px;
}
.trade_container .orderbook_block .deals .deals_form .type_buy,
.trade_container .orderbook_block .deals .deals_form .type_sell {
    text-align: center;
}
.trade_container .orderbook_block .deals .deals_form .input_button input {
    height: 40px;
    font-size: 14px;
    margin-bottom: 10px;
}
.trade_container .orderbook_block .deals .deals_form .input_button a {
    font-size: 14px;
    top: 7px;
    right: 13px;
    cursor: default;
}
.trade_container .orderbook_block .deals .deals_form .percent_buttons {
    display: flex;
    justify-content: space-between;
}
.trade_container .orderbook_block .deals .deals_form .percent_buttons button {
    font-size: 10px;
    padding: 0;
    height: 22px;
    width: 54px;
    align-items: center;
    justify-content: center;
    line-height: 0px;
}
.trade_container .orderbook_block .deals .deals_form .trade_balance {
    display: flex;
    align-items: center;
    margin: 12px 0 10px;
    justify-content: center;
}
.trade_container .orderbook_block .deals .deals_form .trade_balance span {
    font-size: 14px;
    padding-left: 7px;
}
.trade_container .orderbook_block .deals .deals_form .deals_button {}
.trade_container .orderbook_block .deals .deals_form .deals_button button {
    width: 100%;
    justify-content: center;
    height: 35px;
}
.trade_container .orderbook_block .deals .deals_form .type_buy .deals_button button {
    border: 1px solid #94cf14;
    color: #fff;
    background: linear-gradient(17deg, #62890d 0%, #94cf14 100%);
}
.trade_container .orderbook_block .deals .deals_form .type_sell .deals_button button {
    border: 1px solid #e95454;
    color: #fff;
    background: linear-gradient(17deg, #891e0d 0%, #e95454 100%) !important;
}
.trade_container .orderbook_block .deals .deals_form .type_sell .deals_button button:after {
    background: unset;
    border: none;
}
.trade_container .orderbook_block .deals .deals_form .type_sell .deals_button button:hover {
    border: 1px solid #e95454;
    -webkit-box-shadow: #e95454;
    box-shadow: 0 3px 10px #e95454;
}
img.page_loader {
    width: 160px;
    display: block;
    padding: 50px 0;
    margin: 0 auto;
}
button.btn-red {
    border: 1px solid #e95454 !important;
    color: #fff !important;
    background: linear-gradient(17deg, #891e0d 0%, #e95454 100%) !important;
    box-shadow: unset;
}
button.btn-red:after {
    background: unset !important;
    border: none !important;
}
button.btn-red:hover {
    border: 1px solid #e95454 !important;
    -webkit-box-shadow: #e95454 !important;
    box-shadow: 0 3px 10px #e95454 !important;
    color: #fff !important;
}
.react-select__control {
    /*background-color: #353945 !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 100px !important;
    padding: 0 7px;
    min-height: unset !important;*/
    
    outline: none !important;
    padding: 3px;
    width: 100%;
    border: 1px solid #30383f !important;
    border-radius: 6px !important;
    background-color: #0d1114 !important;
    outline: none !important;
    box-shadow: none !important;
}
.react-select__indicator {
    color: #fff !important;
}
.react-select__indicator-separator {
    display: none;
}
.react-select__input {
    padding: 0 !important;
    border-bottom: none !important;
    height: 28px !important;
}
.react-select__single-value {
    color: #fff !important;
    font-size: 16px;
}
.react-select__menu {
    top: 70% !important;
    background-color: #23262F !important;
    z-index: 99 !important;
}
.react-select__option {
    color: #fff !important;
    background-color: transparent !important;
    font-size: 16px !important;
}
.react-select__option--is-focused:hover {
    background-color: #2a2a2e !important;
    cursor: pointer;
}
.react-select__option--is-selected {
    /*background-color: #5a5c68 !important;*/
    
    color: #94cf14 !important;
}
.react-select__option--is-disabled {
    color: #979797 !important;
    cursor: not-allowed !important;
}
.react-select__multi-value {
    background-color: #505050 !important;
    border-radius: 5px !important;
}
.react-select__multi-value__label {
    color: #fff !important;
    padding: 5px 3px 3px 9px !important;
}
.react-select__placeholder {
    color: #696a6a !important;
    font-size: 16px !important;
}
.walletconnect-modal__mobile__toggle a,
.walletconnect-modal__footer a {
    color: #000 !important;
    border-bottom: none !important;
}
.profile .tabs {
    background-color: #101518;
    -webkit-transform: perspective(1px) translate(0, 0) skewX(-13deg);
    transform: perspective(1px) translate(0, 0) skewX(-13deg);
}
.profile .tabs li {
    -webkit-transform: unset !important;
    transform: unset !important;
}
.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
span.transactionHash {
    max-width: 25rem;
    display: block;
    cursor: pointer;
    transition: all 0.3s;
}
span.transactionHash:hover {
    color: #fff;
}
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}
input[type=number] {
    -moz-appearance: textfield;
}
span.transferSwap {
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s;
}
span.transferSwap:hover {
    color: #fff;
}
.withdrawError {
    color: #fff;
    font-size: 21px;
    line-height: 32px;
}
.trade_container .info_block:first-child {
    min-width: 160px;
}
.trade_container .orderbook_block .orderbook_loading {
    display: flex;
    width: 35%;
    flex-grow: 1;
    justify-content: center;
    min-height: 599px;
}
.trade_container .orderbook_block .orderbook_loading img {
    width: 100px;
}
.tickets-toggle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #94cf14;
    position: fixed;
    bottom: 50px;
    right: 50px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
}
.tickets-toggle i {
    color: #fff;
}
.tickets-toggle .ticket_new_message {
    width: 20px;
    height: 20px;
    background: #1C98F7;
    border-radius: 360px;
    position: absolute;
    top: -5px;
    right: -5px;
    border: solid 2px #141416;
}
.tickets-modal {
    position: fixed;
    margin: 0;
    right: 50px;
    bottom: 50px;
}
.tickets-modal .modal-content {
    position: static;
}
.tickets-modal p {
    margin: 0;
}
.tickets-modal label {
    margin-bottom: 12px;
}
.tickets-modal li {
    cursor: pointer;
}
.tickets-title {
    margin-bottom: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.close {
    width: 21px;
    height: 21px;
    border-radius: 50%;
    border: 1px solid #E6E8EC;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
}
.new-ticket {
    padding-bottom: 16px;
    position: relative;
}
textarea.ticket-input {
    resize: none;
    padding: 12px;
    height: 130px;
}
textarea.ticket-input::-webkit-scrollbar {
    width: 0;
}
.ticket-info {
    margin-bottom: 16px;
}
.ticket-info tr td {
    padding: 9px 0;
}
.ticket-info tr:not(:last-child) td {
    padding-bottom: 16px;
}
.close-ticket,
.close-ticket:hover {
    background: #c70323 !important;
    border-color: #c70323 !important;
    box-shadow: none;
    width: 100% !important;
}
.close-ticket:after {
    background: #EF0027 !important;
    border-color: #EF0027 !important;
}
.messages {
    height: 280px;
    overflow-y: auto;
    margin-bottom: 16px;
}
.messages::-webkit-scrollbar {
    width: 0;
}
.message-text {
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    line-height: 12.3px;
    font-weight: 400;
    color: #FDFDFD;
}
.message-text .msg_time {
    display: block;
    font-size: 12px;
    margin-top: 3px;
    color: #939393;
}
.close-ticket {
    margin-top: 16px;
    background: #EF0027;
    justify-content: center;
    color: #fff;
}
.message-block__user-image {
    border-radius: 50%;
}
.message-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.message-block__messages {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.left-message .message-block__messages {
    margin-left: 6px;
    padding-right: 35px;
}
.right-message {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.right-message .message-block__messages {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-right: 6px;
    padding-left: 35px;
}
.message-block:not(:first-child) {
    margin-top: 35px;
}
.message {
    background: rgba(20, 20, 22, 0.7);
    border-radius: 3.17896px;
    padding: 9px 8px;
    min-width: 95px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
    overflow-wrap: break-word;
}
.message:not(:first-child) {
    margin-top: 8px;
}
.send-message {
    border-radius: 3.5px;
    border: 1px solid #353945;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 90px;
}
.send-message textarea {
    height: 52px;
    width: 100%;
    outline: none;
    resize: none;
    padding: 12px;
}
.send-message textarea::-webkit-input-placeholder {
    color: #9AA3AB;
}
.send-message textarea::-moz-placeholder {
    color: #9AA3AB;
}
.send-message textarea:-ms-input-placeholder {
    color: #9AA3AB;
}
.send-message textarea::-ms-input-placeholder {
    color: #9AA3AB;
}
.send-message textarea::placeholder {
    color: #9AA3AB;
}
.send-message textarea::-webkit-scrollbar {
    width: 0;
}
.send-message__bottom-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 8px;
}
.send-message__bottom-block button {
    font-size: 12px;
    padding: 2px 16px;
}
.send-message__bottom-block .icons>* {
    cursor: pointer;
}
.close {
    width: 22px;
    height: 22px;
}
.tickets-drop {
    background: #181e22;
    padding: 16px;
    border-radius: 10px;
    width: 380px;
    right: -45px !important;
    border: solid 1px #424242;
    height: 80vh;
}
.tickets-drop ul {
    margin-top: 16px;
    margin-bottom: 12px;
}
.tickets-drop ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 12px;
}
.tickets-drop ul li:not(:last-child) {
    border-bottom: 1px solid #353945;
    margin-bottom: 12px;
}
.tickets-drop ul li p {
    margin: 0;
}
.message-text {
    font-size: 15px;
    line-height: 22px;
}
.tickets-drop .caption2-bold,
.tickets-drop .caption2 {
    font-size: 18px;
}
.tickets-drop .caption3-medium.grey {
    font-size: 14px;
}
.tickets-drop .ticketList {
    overflow-y: auto;
    height: 100%;
    padding: 0 5px;
}
.tickets-drop .form {
    height: 100%;
    overflow-y: auto;
}
textarea.ticket-input {
    height: calc(100% - 40px);
}
.ticketInfoBlock {
    height: 100%;
}
.ticket-info tbody tr td {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 16px !important;
}
.tickets-drop .messages {
    height: 100%;
    padding: 0 5px;
}
.tickets-drop *::-webkit-scrollbar {
    width: 4px;
}
.tickets-drop .messages .message {
    padding: 9px 11px;
}
.send-message__bottom-block {
    justify-content: space-between;
    padding: 5px 0;
    margin-top: 5px;
}
.send-message {
    height: 200px;
    border: unset;
}
.send-message textarea {
    height: 90px;
}
.send-message__bottom-block button {
    font-size: 14px;
}
.ticketsLoader {
    align-items: center;
    justify-content: center;
}
.notification-message .message {
    background: unset;
    padding: unset;
}
.ticket-input {
    margin-bottom: unset;
}
.tickets-modal .form .form-group {
    margin-bottom: 10px;
}
.tickets-modal .form .form-group .react-select__control {
    margin: 0;
}
@media (max-width: 1670px) {
    .trade_container .chart_block {
        width: 65%;
    }
    
    .trade_container .orderbook_block {
        width: 35%;
    }
}
@media (max-width: 1580px) {
    .trade_container .chart_block {
        width: 80%;
    }
    
    .trade_container .orderbook_block {
        width: 20%;
    }
    
    .trade_container .orderbook_block {
        flex-flow: column-reverse;
    }
    
    .trade_container .orderbook_block .orderbook,
    .trade_container .orderbook_block .trade_history {
        width: 100%;
    }
    
    .trade_container .orderbook_block .orderbook,
    .trade_container .orderbook_block .deals {
        order: 1;
    }
    
    .trade_container .orderbook_block .deals .deals_form {
        flex-flow: column;
        justify-content: center;
    }
    
    .trade_container .orderbook_block .deals .deals_form .type_buy {
        margin-right: 0;
        margin-bottom: 25px;
    }
    
    .slider__top-item {
        background-position-x: -450px !important;
    }
}
@media (max-width: 1290px) {
    .trade_container .chart_block {
        width: 75%;
    }
    
    .trade_container .orderbook_block {
        width: 25%;
    }
    
    .trade_container .info_block:first-child {
        min-width: unset;
    }
    
    .trade_container .info_block {
        margin-right: 18px;
    }
    
    .current_pair {
        font-size: 16px;
    }
    
    .trade_container .info_block p {
        font-size: 18px;
    }
    
    .current_pair {
        font-size: 16px;
    }
    
    .trade_container .info_block label {
        font-size: 12px;
    }
    
    .slider__top-item {
        background-position-x: calc(100% - 60px) !important;
    }
}
@media (max-width: 1200px) {
    .rate_table {
        padding: unset;
    }
    
    .how-works .blocks .block_item .services__item-desc {
        margin-bottom: 30px;
    }
    
    .profile .profile_row {
        justify-content: space-between;
    }
    
    .profile .profile_row .profile_block {
        margin-right: 20px;
        font-size: 16px;
    }
    
    .profile .avatar .circle {
        height: 75px;
        width: 75px;
    }
    
    .profile .verified_status {
        top: -5px;
    }
    
    .profile .filter-button .tab-link {
        font-size: 16px;
    }
    
    .profile .profile_blocks_item {
        margin: 15px 0;
    }
    
    .slider__top-item:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
        width: 100%;
        height: 100%;
        background: rgba(13, 17, 20, 0.45);
    }
}
@media (max-width: 1070px) {
    .trade_container .info_block {
        margin-right: 15px;
    }
    
    .current_pair {
        margin: 0;
    }
    /*.slider__top-item:nth-child(3) {
		background-position-x: -330px !important;
	}*/
}
@media (max-width: 991px) {
    .rate_table tr td:last-child,
    .rate_table tr th:last-child {
        display: none;
    }
    
    .profile .profile_row {
        flex-flow: column;
    }
    
    .profile .profile_row .profile_block {
        margin-right: 0;
        font-size: unset;
        margin-top: 25px;
    }
    
    .profile .profile_row .avatar {
        margin: 0 !important;
    }
    
    .profile .verified_status {
        position: unset;
        text-align: center;
    }
    
    .profile .avatar .circle {
        height: 100px;
        width: 100px;
    }
    
    .profile .filter-button .tab-link {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .wallet .assets table td,
    .wallet .assets table th {
        font-size: 13px;
    }
    
    table .coin_name {
        font-size: 14px;
    }
    
    #deposit .dep_alert {
        align-items: center;
    }
    
    #withdraw .dep_alert {
        align-items: center;
    }
    
    .trade_container {
        flex-flow: column;
    }
    
    .trade_container .chart_block {
        width: 100%;
    }
    
    .trade_container .orderbook_block {
        width: 100%;
    }
    
    .trade_container .pairs_info {
        justify-content: space-between;
    }
    
    .trade_container .orderbook_block .deals .deals_form .type_buy {
        margin-bottom: 50px;
    }
    
    .trade_container .orderbook_block .deals .deals_form .percent_buttons button {
        width: 24%;
        font-size: 12px;
        height: 30px;
    }
    
    .trade_container .orderbook_block .orderbook,
    .trade_container .orderbook_block .trade_history {
        text-align: center;
    }
    
    .trade_container .orderbook_block table th,
    .trade_container .orderbook_block table td {
        text-align: center;
        width: 25%;
    }
    /*.slider__top-item:nth-child(1) {
    	background-position-x: -460px !important;
    }*/
}
@media (max-width: 860px) {
    section.wallet {
        padding-top: 6.5rem;
    }
    
    .wallet .custom_table {
        overflow-x: scroll;
        clear: both;
    }
    
    .wallet .custom_table table {
        min-width: 824px;
    }
    
    .wallet .menu_block {
        flex-flow: column-reverse;
    }
    
    .wallet .wallet_menu ul {
        flex-flow: column;
        width: 100%;
    }
    
    .wallet .wallet_menu ul:last-child {
        margin-top: 15px;
    }
    
    .wallet .wallet_menu ul li {
        width: 100%;
        text-align: center;
        margin-right: 0;
        justify-content: center;
    }
    
    .wallet .wallet_menu ul li.active a {
        color: #94cf14;
        border-bottom: unset;
    }
    
    .wallet .wallet_menu ul li a:not(.btn) {
        width: 100%;
    }
    
    .wallet .wallet_menu ul li a.btn {
        margin-right: 0 !important;
        margin-bottom: 20px;
        min-width: 100%;
        justify-content: center;
    }
    
    span.transactionHash {
        max-width: 10rem;
    }
    
    .transactions table {
        font-size: 16px;
    }
    
    .slider__top-item {
        background-position-x: calc(100% + 124px) !important;
    }
}
@media (max-width: 767px) {
    .rate_table tr td:nth-child(4),
    .rate_table tr th:nth-child(4),
    .rate_table tr td:nth-child(5),
    .rate_table tr th:nth-child(5) {
        display: none;
    }
    
    .profile .tabs {
        flex-flow: column;
        text-align: center;
        align-items: center;
        background-color: unset;
        transform: unset;
    }
    
    .profile .filter-button .tab-link {
        margin-bottom: unset;
        display: block;
        width: 100%;
        max-width: unset;
    }
    
    .profile .custom_table {
        overflow-x: scroll;
    }
    
    .profile .custom_table table {
        min-width: 767px;
    }
    
    .setting_group .title {
        font-size: 18px;
        padding: 20px;
    }
    
    .profile .author {
        flex-flow: column;
        text-align: center;
    }
    
    .profile .author .qr_code {
        margin: 0;
        margin-bottom: 35px;
    }
    
    .profile .setting_group .author button {
        width: 100%;
    }
    
    .wallet .assets .form-group {
        align-items: flex-start;
        flex-flow: column;
    }
    
    .wallet .assets .form-group:first-child div {
        margin-left: 0 !important;
    }
    
    .wallet .assets input.search {
        margin-bottom: 15px;
    }
    
    .trade_container .info_block {
        display: none;
    }
    
    .trade_container .info_block:first-child {
        display: block;
    }
    
    .trade_container .info_block p {
        font-size: 24px;
    }
    
    .current_pair {
        font-size: 21px;
    }
    
    .tickets-modal {
        bottom: 0;
        top: 0;
        right: 0;
        left: 0;
        max-width: unset;
    }
    
    .tickets-modal .modal-content {
        border-radius: 0;
        width: 100%;
        height: 100%;
    }
}
@media (max-width: 680px) {
    .wallet .form-group_content {
        flex-flow: column;
    }
    
    .wallet .form-group_content .staking__select {
        width: 100% !important;
    }
    
    .wallet .form-group_content .input_button {
        margin-top: 10px;
    }
    
    .wallet .form-group_content .input_button input {
        width: 100% !important;
    }
}
@media (max-width: 576px) {
    .profile_blocks {
        flex-flow: column;
        margin: unset;
    }
    
    .profile .profile_blocks_item {
        max-width: unset;
    }
    
    .setting_group .title {
        font-size: 16px;
        padding: 20px 7px;
    }
    
    .setting_group .bg-border {
        width: unset;
    }
    
    .promo_btn {
        font-size: 12px;
    }
    
    .balance_overview {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .balance_overview i {
        font-size: 25px;
    }
    
    .wallet .convert .user__use-form .form-group .staking__select {
        width: 47% !important;
    }
    
    .wallet .convert .user__use-form .form-group .input_button input {
        width: 50% !important;
    }
    
    .staking h3 {
        font-size: 17px;
    }
    
    #withdraw .group {
        font-size: 14px;
        line-height: 22px;
    }
    /*.slider__top-item:nth-child(3) {
    	background-position-x: -700px !important;
    }*/
}
.notification {
    font-size: 0.9em !important;
    opacity: 1 !important;
    border-radius: 5px !important;
    box-shadow: unset !important;
}
.notification-success {
    background-color: #94cf14 !important;
}
.notification-error {
    background-color: #e95454 !important;
}
.border {
    border-color: transparent !important;
}
#next a.grid {
    border: none;
}
#next a.grid a.btn {
    font-size: 12px;
    height: 4rem;
}
footer .header__logo img {
    height: 100%;
    max-height: 43px;
    padding-right: 5px;
}
.bestchange_block {
    padding: 20px 0 0;
}
.page h3 {
    margin-bottom: 20px;
}
.page p {
    margin-bottom: 30px;
}