a,
abbr,
acronym,
address,
applet,
b,
big,
blockquote,
body,
caption,
center,
cite,
code,
dd,
del,
dfn,
div,
dl,
dt,
em,
fieldset,
font,
form,
h1,
h2,
h3,
h4,
h5,
h6,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
object,
ol,
p,
pre,
q,
s,
samp,
small,
span,
strike,
strong,
sub,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
tr,
tt,
u,
ul,
var {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline
}

body {
    line-height: 1
}

ol,
ul {
    list-style: none
}

blockquote,
q {
    quotes: none
}

:focus {
    outline: 0
}

ins {
    text-decoration: none
}

del {
    text-decoration: line-through
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

li,
ul {
    float: left;
    display: inline
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 400
}

em,
i {
    font-style: normal
}

button,
select {
    border: none;
    margin: 0;
    padding: 0;
    background: 0 0
}

figure {
    margin: 0;
    padding: 0
}

* {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box
}

body {
    margin: 0;
    color: #444;
    font-size: 16px;
    font-family: var(--font-primary);
    line-height: 20px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    background-color: #fff
}

::-moz-selection {
    background: rgba(0, 0, 0, .1)
}

::selection {
    background: rgba(0, 0, 0, .1)
}

a {
    color: var(--color-dark);
    text-decoration: none
}

a:hover {
    color: var(--color-purple);
    text-decoration: none
}

:root {
    --color-blue: #0066CC;
    --color-dark: #16171F;
    --color-purple: #424a5e;
    --color-red: #0066CC;
    --color-red-dark: #CF1135;
    --color-light: #E4E5E9;
    --font-primary: 'Gilmer', 'Arial';
    --input-background-color: #FFF;
    --input-border-color: #bfbfbf;
    --input-border-color-inline: #FFF;
    --input-border-color-checked: #00A678;
    --input-background-color-checked: #38A3A5;
    --input-border-color-inline-checked: #38A3A5;
    --input-border-color-disabled: #bfbfbf;
    --input-background-color-disabled: #F2F2F2;
    --input-border-color-inline-disabled: #bfbfbf;
    --input-border-color-hover: #38A3A5;
    --input-background-color-hover: #FFF;
    --input-border-color-inline-hover: #bfbfbf;
    --input-border-color-focus: #00A678
}

input,
input[type=checkbox],
input[type=radio],
select,
textarea {
    border: none;
    position: relative;
    -webkit-appearance: none;
    margin: 0;
    padding: 0
}

input:focus,
input[type=checkbox]:focus,
input[type=radio]:focus,
select:focus,
textarea:focus {
    outline: 0
}

button,
input[type=submit] {
    border: none;
    position: relative;
    -webkit-appearance: none;
    margin: 0;
    padding: 0;
    outline: 0
}

input[type=checkbox],
input[type=radio] {
    width: 18px;
    height: 18px;
    line-height: 18px;
    min-width: 1px !important;
    margin: 1px 10px -1px 0;
    padding: 0
}

input[type=checkbox]::before,
input[type=radio]::before {
    display: block;
    position: absolute;
    content: "";
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    background-color: var(--input-background-color);
    transition: background-color .5s, border-color .5s
}

input[type=checkbox]::after,
input[type=radio]::after {
    display: block;
    position: absolute;
    content: "";
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: background-color .5s, border-color 250ms
}

input[type=checkbox]::before {
    border-radius: 4px;
    border: solid 1px;
    border-color: var(--input-border-color)
}

input[type=checkbox]::after {
    border: solid;
    border-color: var(--input-border-color-inline);
    border-width: 0 2px 2px 0;
    width: 5px;
    height: 10px;
    left: 7px;
    bottom: 5px
}

input[type=checkbox]:not(:checked)::before {
    border-color: var(--input-border-color)
}

input[type=checkbox]:not(:checked)::after {
    border-color: var(--input-border-color-inline)
}

input[type=checkbox]:checked:not(:disabled)::before {
    border-color: var(--input-border-color-checked);
    background-color: var(--input-background-color-checked)
}

input[type=checkbox]:-moz-read-only::before,
input[type=checkbox]:read-only::before {
    border-color: var(--input-border-color-inline-checked)
}

input[type=checkbox]:disabled::before {
    border-color: var(--input-border-color-disabled);
    background-color: var(--input-background-color-disabled)
}

input[type=checkbox]:disabled::after {
    border-color: var(--input-border-color-inline-disabled)
}

input[type=checkbox]:checked:not(:disabled):focus::before,
input[type=checkbox]:not(:checked):not(:disabled):focus::before {
    border-color: var(--input-border-color-hover)
}

input[type=checkbox]:not(:checked):not(:disabled):hover::before {
    border-color: var(--input-border-color-hover);
    background-color: var(--input-background-color-hover)
}

input[type=checkbox]:not(:checked):not(:disabled):hover:not(:checked)::after {
    border-color: var(--input-border-color-inline-hover)
}

input[type=radio]::before {
    border-radius: 50%;
    border: solid 1px
}

input[type=radio]::after {
    border: solid;
    border-color: var(--input-border-color-inline-checked);
    border-width: 5px;
    border-radius: 50%;
    width: 0;
    height: 0;
    left: 4px;
    bottom: 4px
}

input[type=radio]:not(:checked)::before {
    border-color: var(--input-border-color)
}

input[type=radio]:not(:checked)::after {
    border-color: var(--input-border-color-inline)
}

input[type=radio]:checked:not(:disabled)::before {
    border-color: var(--input-border-color-checked);
    background-color: var(--input-background-color)
}

input[type=checkbox]:-moz-read-only::before,
input[type=radio]:read-only::before {
    border-color: var(--input-border-color-inline-checked)
}

input[type=radio]:disabled::after {
    border-color: var(--input-border-color-inline-disabled)
}

input[type=radio]:checked:not(:disabled):focus::before,
input[type=radio]:not(:checked):not(:disabled):focus::before {
    border-color: var(--input-border-color-hover)
}

input[type=radio]:not(:checked):not(:disabled):hover::before {
    border-color: var(--input-border-color-hover);
    background-color: var(--input-background-color)
}

input[type=radio]:not(:checked):not(:disabled):hover:not(:checked)::after {
    border-color: var(--input-border-color-inline-hover)
}

input,
select,
textarea {
    float: left;
    font-size: 15px;
    font-family: var(--font-primary), Arial;
    border-radius: 0;
    border: 0
}

button {
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    border-radius: 0;
    font-family: var(--font-primary), Arial;
    font-size: 16px;
    font-weight: 500
}

.input {
    width: 100%;
    height: 50px;
    padding: 0 18px;
    border: 1px solid rgba(4, 51, 76, .2);
    transition: ease .3s;
    background-color: #fff;
    border-radius: 6px
}

.select {
    background: url(../images/arrow-select.png) no-repeat right center;
    background-size: auto 5px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.input:focus,
.select:focus {
    border-color: var(--color-purple);
    box-shadow: 4px 4px 0 rgba(36, 166, 202, .12)
}

textarea.input {
    padding-top: 13px !important;
    padding-bottom: 13px !important
}

.button {
    float: none;
    height: 50px;
    display: inline-block;
    padding: 0 60px 0 20px;
    cursor: pointer;
    position: relative;
    color: #fff;
    line-height: 50px;
    background-color: var(--color-dark);
    transition: all .25s;
    border-radius: 6px;
    overflow: hidden;
    text-align: left
}

.button:hover {
    background-color: var(--color-purple)
}

.button::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    width: 20px;
    background: url(../images/arrow-white-right.png) no-repeat right center/16px;
    transition: all .25s
}

.button-green::after {
    background-image: url(../images/arrow-right.png)
}

.button:hover::after {
    right: 10px
}

a.button {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    line-height: 50px
}

.kodugecer {
    float: left;
    width: 100%;
    padding-top: 100px;
    position: relative
}

.outer {
    float: left;
    width: 100%;
    padding: 0 80px;
    position: relative
}

.wrap {
    margin: 0 auto;
    width: 1440px;
    min-height: 10px;
    position: relative
}

.tac {
    text-align: center
}

.fl {
    display: contents;
}

.fr {
    float: right !important
}

.fn {
    float: none !important
}

.w100 {
    float: left;
    width: 100% !important
}

.w50 {
    float: left;
    width: 50%
}

.mt30 {
    margin-top: 30px
}

.mt20 {
    margin-top: 20px
}

.mt10 {
    margin-top: 10px
}

.mb30 {
    margin-bottom: 30px
}

.mb20 {
    margin-bottom: 20px
}

.mb10 {
    margin-bottom: 10px
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    padding: 20px 0;
    z-index: 2000;
    transition: all .5s
}

.nav-down,
.nav-up {
    background-color: #fff;
    box-shadow: 0 0 30px rgba(4, 52, 76, .1)
}

.header-flex {
    display: flex;
    align-items: center
}

#logo {
    float: left
}

#logo img {
    margin-top: -15px;
    margin-left: -10px;
    height: 50px;
    transition: all .5s
}

.nav-icon {
    display: none
}

.header-right {
    float: left;
    position: relative;
    border: 1px solid rgba(66, 69, 94, .25);
    border-radius: 30px
}

.header-right::before {
    content: "";
    position: absolute;
    top: 14px;
    bottom: 14px;
    right: 98px;
    width: 1px;
    background-color: var(--color-purple);
    opacity: .5
}

.header-search {
    float: left;
    position: relative;
    z-index: 8100
}

.header-search button,
.header-search button i,
.header-search small {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 58px;
    font-size: 24px;
    text-align: center;
    color: var(--color-purple);
    line-height: 58px;
    z-index: 100
}

.header-search small {
    width: 98px;
    z-index: 10
}

.header-search button {
    left: auto;
    right: 0;
    text-indent: -9999px;
    display: none
}

.header-search button i {
    text-indent: 0
}

.header-search input:focus + small {
    width: 0;
    opacity: 0
}

.header-search input:focus ~ button {
    display: block;
    opacity: .5
}

.header-search input:focus ~ button:hover {
    opacity: 1
}

.header-search input {
    float: left;
    width: 98px;
    height: 58px;
    padding: 0 20px 0 50px;
    position: relative;
    font-size: 14px;
    text-align: right;
    line-height: 58px;
    background-color: transparent;
    transition: all .3s;
    z-index: 50
}

.header-search input:focus {
    width: 248px;
    padding: 0 50px 0 29px;
    text-align: left
}

.header-lang-wrap {
    float: left;
    width: 98px;
    height: 58px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 80px;
    margin-top: 5px;
}

.header-lang-icon {
    float: right;
    width: 100%;
    height: 100%;
    padding-left: 30px;
    position: relative;
    color: var(--color-purple);
    letter-spacing: 1px;
    cursor: pointer;
    z-index: 250
}

.header-lang-icon::before {
    content: "";
    position: absolute;
    top: 0;
    right: 30px;
    bottom: 0;
    width: 12px;
    background: url(../images/arrow-down.png) no-repeat right center/100% auto
}

.header-lang {
    position: absolute;
    top: 50px;
    left: 20px;
    width: 60px;
    background-color: var(--color-dark);
    display: none;
    z-index: 300;
    box-shadow: 0 10px 50px rgba(0, 0, 0, .15);
    border-radius: 6px;
    text-align: center
}

.header-lang::before {
    content: "";
    border-bottom: 3px solid transparent;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    height: 0;
    position: absolute;
    width: 0;
    left: 50%;
    top: -3px;
    margin-left: -8px;
    border-bottom-color: var(--color-dark)
}

.header-lang ul {
    width: 100%
}

.header-lang li {
    width: 100%
}

.header-lang li a {
    float: left;
    width: 100%;
    color: #fff;
    line-height: 40px;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .1)
}

.header-lang li:last-child a {
    box-shadow: none
}

.header-lang li a:hover {
    opacity: .7
}

#nav {
    float: left;
    flex: 1;
    position: relative;
    text-align: center;
    z-index: 200
}

#nav > ul {
    float: none;
    display: inline-block;
    text-align: left
}

#nav > ul > li {
    margin-right: 50px;
    position: relative
}

#nav > ul > li:last-child {
    margin-right: 0
}

#nav > ul > li.nav-multi > a::after {
    content: "";
    float: right;
    margin-left: 10px;
    width: 14px;
    height: 60px;
    background: url(../images/arrow-down.png) no-repeat right 52%/100% auto;
    transition: all .3s;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%)
}

#nav > ul > li.nav-multi > a.active::after {
    filter: none;
    -webkit-filter: none
}

#nav > ul > li > a {
    float: left;
    font-weight: 500;
    font-size: 15px;
    line-height: 60px;
    position: relative;
    transition: all .3s ease
}

#nav > ul > li:hover > a,
#nav > ul > li > a.active {
    color: var(--color-purple)
}

.nav-menu {
    position: absolute;
    top: 60px;
    left: -20px;
    width: 320px;
    padding: 20px 30px;
    background-color: #fff;
    box-shadow: 0 30px 50px rgba(4, 52, 76, .1);
    border-radius: 8px;
    display: none
}

.nav-menu a {
    float: left;
    width: 100%;
    padding: 10px 0;
    position: relative;
    font-size: 15px;
    display: flex;
    align-items: center
}

.nav-menu a i {
    float: right;
    width: 20px;
    height: 20px;
    margin-left: auto;
    font-size: 20px;
    color: var(--color-purple);
    opacity: .5;
    transition: all .3s
}

.nav-menu a:hover i {
    opacity: 1
}

.mask,
.mask-top {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 700
}

.mask-top {
    top: 0;
    bottom: auto
}

.mask-reverse {
    transform: scaleX(-1)
}

.mask img,
.mask-top img {
    float: right;
    width: 100%;
    max-height: 20px
}

.controls {
    height: 100%
}

.slick-next,
.slick-prev {
    position: absolute;
    top: calc(50% - 25px);
    width: 50px;
    height: 50px;
    text-indent: -9999px;
    cursor: pointer;
    z-index: 1000;
    transition: all .4s;
    background: #fff url(../images/arrow-left.png) no-repeat center/auto 20px
}

.slick-prev {
    left: 0;
    border-radius: 0 8px 8px 0
}

.slick-next {
    right: 0;
    background-image: url(../images/arrow-right.png);
    border-radius: 8px 0 0 8px
}

.slick-next:hover,
.slick-prev:hover {
    background-color: var(--color-dark)
}

ul.slick-dots {
    position: absolute;
    text-align: center;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 30px 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(4, 51, 76, 0), rgba(4, 51, 76, .5))
}

ul.slick-dots li {
    float: none;
    height: 12px;
    margin: 0 5px;
    display: inline-block
}

ul.slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #fff;
    transition: all .2s;
    position: relative;
    text-indent: -9999px;
    opacity: .5
}

ul.slick-dots li button:hover {
    opacity: .7
}

ul.slick-dots li.slick-active button {
    background-color: #fff;
    opacity: 1
}

.slider-hero-wrap {
    float: left;
    width: 100%;
    height: calc(100vh - 100px);
    padding: 0 40px;
    position: relative;
    z-index: 700;
}

.slider-hero {
    float: left;
    width: 100%;
    position: relative;
    background: var(--color-primary) url(../images/lines-white.html) no-repeat right bottom/50% auto;
    z-index: 700;
    overflow: hidden;
    border-radius: 24px
}

.slider-hero .slick-list {
    overflow: hidden
}

.slider-hero-item {
    float: left;
    width: 100%;
    height: calc(100vh - 140px);
    min-height: 600px;
    position: relative;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat
}

.slider-hero-item::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--color-dark), rgba(4, 52, 76, 0));
    z-index: 10
}

.slider-hero-item img {
    float: left;
    width: 100%;
    max-height: 640px;
    position: relative;
    z-index: 10
}

.slider-title {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 40px;
    color: #fff;
    display: flex;
    align-items: center;
    z-index: 100
}

.slider-title .wrap {
    display: flex;
    align-items: center
}

.slider-title small {
    float: left;
    width: 25%;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-red);
    letter-spacing: 2px;
    transition: all .3s;
    display: flex;
    align-items: center
}

.slider-title small::before {
    content: "";
    float: left;
    width: 30px;
    height: 30px;
    margin-right: 20px;
    background: url(../images/arrow-cta.png) no-repeat center/100% 100%;
    transition: all .2s
}

.slider-title strong {
    float: right;
    width: 75%;
    font-size: 64px;
    line-height: 70px
}

.slider-hero-video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 3s
}

.slider-hero ul.slick-dots {
    background: 0 0
}

.hero-page-top .mask img,
.slider-hero-wrap .mask img {
    width: 50%
}

.hero-categories-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 800
}

.hero-categories {
    float: left;
    width: 100%;
    position: relative
}

.hero-categories > ul {
    width: calc(100% + 24px);
    margin-left: -12px;
    display: flex;
    flex-flow: row wrap
}

.hero-categories > ul > li {
    width: 20%;
    padding: 0 12px;
    display: flex;
    align-items: end
}

.hero-cat-item {
    float: left;
    width: 100%;
    height: 110px;
    position: relative;
    background: linear-gradient(180deg, var(--color-light), #fff);
    border-radius: 8px 8px 0 0;
    transition: all .75s;
    overflow: hidden
}

.hero-cat-item:hover {
    height: 310px
}

.hero-cat-item::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background-color: var(--color-red);
    transition: all .5s
}

.hero-cat-item:hover::after {
    height: 40px;
    background-color: var(--color-purple)
}

.hero-cat-item picture {
    float: left;
    width: 100%;
    height: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: all .75s
}

.hero-cat-item:hover picture {
    height: 270px
}

.hero-cat-item section {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 30px 30px 30px;
    transition: all .5s
}

.hero-cat-item:hover section {
    bottom: 40px;
    padding-top: 50px;
    padding-bottom: 25px
}

.hero-cat-item section::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(4, 52, 76, 0), var(--color-dark));
    transition: all .5s;
    opacity: 0;
}

.hero-cat-item:hover section::before {
    opacity: 1;
}

.hero-cat-item section strong {
    float: left;
    width: 100%;
    position: relative;
    font-size: 20px;
    font-weight: 500;
    line-height: 25px;
    transition: all .5s
}

.hero-cat-item:hover section strong {
    color: #fff
}

.connect-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1990;
    display: block
}

.connect-whatsapp a {
    float: left;
    width: 48px;
    height: 48px;
    border: 2px solid #fff;
    background: #25cc64 url(../images/icon-whatsapp.png) no-repeat center/20px;
    border-radius: 50%;
    overflow: hidden;
    text-indent: -9999px
}

.connect-whatsapp a:hover {
    background-color: #20ac55
}

.footer-wrap {
    float: left;
    width: 100%;
    position: relative;
    overflow: hidden
}

.footer-connect {
    float: left;
    width: 100%;
    position: relative;
    display: flex;
    flex-flow: row wrap
}

.footer-join,
.footer-social {
    float: left;
    width: calc(50% - 10px);
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    background: linear-gradient(135deg, var(--color-dark), var(--color-purple));
    z-index: 20;
    border-radius: 16px
}

.footer-join section {
    float: left;
    width: 100%;
    position: relative
}

.footer-join section .input {
    border: 0;
    color: #fff;
    background-color: transparent;
    box-shadow: inset 0 -2px 0 rgba(255, 255, 255, .1);
    border-radius: 0;
    font-size: 17px
}

.footer-join section .input:focus {
    background-color: rgba(4, 51, 76, .5);
    box-shadow: inset 0 -2px 0 #fff;
    border-radius: 8px
}

.footer-join section .input::placeholder {
    color: rgba(255, 255, 255, .6);
    opacity: 1
}

.footer-join section .input::-ms-input-placeholder {
    color: rgba(255, 255, 255, .6)
}

.footer-join section .button {
    position: absolute;
    top: 0;
    bottom: 2px;
    right: 0;
    width: 60px;
    padding: 0;
    text-indent: -9999px;
    background-color: transparent !important;
    border-radius: 0
}

.footer-social {
    float: right;
    margin-left: auto;
    background: var(--color-light);
    display: flex;
    flex-direction: column
}

.footer-social ul {
    width: 100%;
    margin-top: auto
}

.footer-social li {
    padding-right: 15px
}

.footer-social li:last-child {
    padding-right: 0
}

.footer-social li a {
    float: left;
    background-color: #fff;
    text-align: center;
    border-radius: 8px;
    transition: all .5s
}

.footer-social li a:hover {
    background-color: var(--color-purple);
    border-radius: 35%
}

.footer-social li a img {
    float: left;
    height: 50px
}

.footer-social li a i {
    float: left;
    width: 50px;
    font-size: 28px;
    color: var(--color-purple);
    line-height: 50px;
    transition: all .5s
}

.footer-social li a:hover i {
    color: #fff
}

.footer-title {
    float: left;
    width: 100%;
    margin: -5px 0 35px 0;
    position: relative;
    font-size: 26px;
    color: var(--color-dark);
    line-height: 30px
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -25px;
    width: 60px;
    height: 2px;
    background-color: var(--color-dark);
    opacity: .1
}

.footer-join .footer-title::after {
    display: none
}

.footer {
    float: left;
    width: 100%;
    padding-top: 84px;
    position: relative;
    display: flex;
    flex-flow: row wrap
}

.footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../images/lotus.svg) no-repeat right 200px bottom 0px/auto 100%;
    opacity: .09
}

.footer-contact,
.footer-menu {
    float: left;
    width: calc(50% - 10px);
    position: relative
}

.footer-menu ul {
    width: 100%;
    display: flex;
    flex-flow: row wrap
}

.footer-menu li {
    width: 100%
}

.footer-menu li a {
    float: left;
    padding: 5px 0;
    font-size: 36px;
    font-weight: 300;
    line-height: 40px;
    transition: all .4s;
    background-image: linear-gradient(to right, var(--color-dark), var(--color-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent
}

.footer-menu li a:hover {
    letter-spacing: 2px
}

.footer-contact {
    float: right;
    padding-bottom: 75px;

}

.footer-contact section {
    float: left;
    width: 50%;
    padding: 10px 0 17px 0
}

.footer-contact section strong {
    display: block;
    margin: 11px 0 12px 0;
    font-size: 13px;
    font-weight: 500;
    color: #999;
    letter-spacing: 2px
}

.footer-contact section small {
    display: block;
    font-size: 20px;
    font-weight: 300;
    line-height: 30px
}

.copyright {
    float: left;
    width: 100%;
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    z-index: 10;
    color: #999;
    font-weight: 300;
    font-size: 16px;
    display: flex;
    align-items: center
}

.copyright::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: calc(50% - 10px);
    height: 4px;
    background-color: var(--color-red);
    border-radius: 4px 4px 0 0
}

.c-left {
    float: left;
    width: 50%
}

.c-left img {
    float: left;
    height: 56px;
    margin-right: 40px
}

.c-left img:last-child {
    margin-right: 0
}

.c-center {
    float: left;
    flex: 1;
    margin-left: 10px
}

.c-right {
    float: right;
    margin-left: auto
}

.c-right a {
    float: left
}

.c-right a strong {
    font-weight: 500
}

.c-right a img {
    float: right;
    height: 24px;
    margin-bottom: -3px;
    margin-top: -1px;
    margin-left: 7px
}

.page-title {
    float: left;
    width: 100%;
    position: relative;
    font-size: 40px;
    color: var(--color-dark);
    line-height: 50px;
    z-index: 10
}

.page-title.top {
    padding-top: 59px
}

.page-title.bottom {
    padding-bottom: 31px
}

.fs-30 {
    font-size: 30px;
    line-height: 36px
}

.page-summary,
.page-text {
    float: left;
    width: 100%;
    position: relative;
    font-size: 18px;
    color: #555;
    line-height: 30px
}

.page-summary {
    font-size: 24px;
    line-height: 40px
}

.page-text p {
    margin-bottom: 20px
}

.page-text p:last-child {
    margin-bottom: 0
}

.page-text b,
.page-text strong {
    font-weight: 600
}

.page-text ol,
.page-text ul {
    float: none;
    padding-bottom: 20px;
    display: table
}

.page-text ol {
    padding-left: 20px;
    padding-bottom: 20px;
    display: inline-block
}

.page-text ul li {
    width: 100%;
    padding-left: 20px;
    margin-bottom: 10px;
    position: relative;
    font-weight: 500
}

.page-text ul li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 6px;
    height: 6px;
    background-color: var(--color-black);
    border-radius: 50%
}

.page-text ol li {
    width: 100%;
    margin-bottom: 15px;
    display: list-item;
    list-style: decimal
}

.article-content ol li:last-child,
.page-text ul li:last-child {
    margin-bottom: 0
}

.page-text ol li::marker {
    font-weight: 700
}

.text-column {
    column-count: 2;
    column-gap: 40px
}

.page-photo {
    float: left;
    width: 100%
}

.page-photo img {
    float: left;
    width: 100%;
    border-radius: 8px
}

.text-white {
    color: #fff !important
}

.text-red {
    color: var(--color-red) !important
}

.pl-80 {
    padding-left: 80px
}

.pr-80 {
    padding-right: 80px
}

.block-crn {
    float: left;
    width: 100%;
    position: relative;
    background: linear-gradient(180deg, #fff, var(--color-light));
    z-index: 770
}

.block-crn::before {
    content: "";
    position: absolute;
    left: 188px;
    right: 0;
    top: 37px;
    bottom: 0;
    background: url(../images/fab.jpg) no-repeat 40px 40px/30% auto;
    opacity: 0.9;
}

.in {
    float: left;
    width: 100%;
    position: relative
}

.block-crn-photo {
    float: left;
    width: 100%;
    position: relative
}

.block-crn-photo::before {
    content: "";
    position: absolute;
    top: 50%;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff
}

.block-crn-photo picture {
    float: left;
    width: 75%;
    position: relative;
    border-radius: 48px;
    overflow: hidden
}

.block-crn-photo picture img {
    float: left;
    width: 100%
}

.block-crn-photo section {
    position: absolute;
    top: calc(50% - 60px);
    right: 0;
    width: 120px;
    height: 120px;
    border: 1px solid var(--color-dark);
    background: url(../images/go-down.png) no-repeat center/auto 60px;
    border-radius: 50%;
    animation: moveUpDown 2s infinite
}

.block-crn-photo.right picture {
    float: right
}

.block-crn-photo.right section {
    right: auto;
    left: 0
}

@keyframes moveUpDown {

    0%,
    100% {
        top: calc(50% - 72px)
    }

    50% {
        top: calc(50% - 48px)
    }
}

.fw-700 {
    font-weight: 700
}

.fw-400 {
    font-weight: 500
}

.fw-300 {
    font-weight: 300
}

.block-flexed {
    float: left;
    width: 100%;
    position: relative;
    display: flex
}

.align-center {
    align-items: center
}

.flex-left {
    float: left;
    width: 50%;
    padding-right: 8%;
    position: relative
}

.flex-right {
    float: right;
    width: 50%;
    position: relative
}

.crn-stats {
    float: left;
    width: 100%;
    position: relative
}

.crn-stats ul {
    width: 100%;
    display: flex;
    flex-flow: row wrap
}

.crn-stats li {
    width: 100%;
    box-shadow: inset 0 -2px 0 var(--color-light);
    transition: all .5s
}

.crn-stats.two li {
    width: calc(50% - 30px)
}

.crn-stats.two li:nth-child(even) {
    float: right;
    margin-left: auto
}

.crn-stats li:hover {
    box-shadow: inset 0 -2px 0 var(--color-blue)
}

.stat-item {
    float: left;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--color-dark)
}

.stat-item picture {
    float: left;
    margin-right: 30px;
    text-align: center
}

.stat-item picture i {
    float: left;
    width: 120px;
    font-size: 48px;
    color: rgb(0, 159, 212);
    line-height: 120px;
    box-shadow: inset 0 -2px 0 rgba(0, 102, 204, 1), 20px 0 0 rgb(255, 255, 255);
}

.stat-item section {
    float: right;
    flex: 1;
    padding: 0 30px;
    font-size: 24px;
    font-weight: 500;
    line-height: 100%;
    text-align: right
}

.gallery {
    float: left;
    width: 100%;
    position: relative;
    overflow: hidden
}

.gallery ul {
    width: calc(100% + 8px);
    margin-left: -4px
}

.gallery li {
    width: 33.33334%;
    padding: 0 4px;
    margin-bottom: 8px;
    position: relative
}

.gallery li a {
    float: left;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: all .5s
}

.gallery li a:hover {
    border-radius: 32px
}

.gallery li a::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-purple);
    z-index: 5;
    transition: all .5s;
    opacity: 0
}

.gallery li a:hover::before {
    opacity: .5
}

.gallery li a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url(../images/icon-zoom.png) no-repeat center/40px;
    transition: all .3s;
    opacity: 0;
    z-index: 10
}

.gallery li a:hover::after {
    opacity: 1
}

.gallery li a picture {
    float: left;
    width: 100%;
    background-size: cover;
    background-position: center;
    transform-origin: center;
    transition: all 1.5s
}

.gallery li a img {
    float: left;
    width: 100%
}

.gallery li a:hover picture {
    transform: scale(1.2, 1.2)
}

.inner-30 {
    margin: 0 -30px
}

.inner-20 {
    margin: 0 -20px
}

.inner-15 {
    margin: 0 -15px
}

.inner-10 {
    margin: 0 -10px
}

.top-150 {
    padding-top: 150px
}

.top-100 {
    padding-top: 100px
}

.top-50 {
    padding-top: 50px
}

.bottom-150 {
    padding-bottom: 150px
}

.bottom-100 {
    padding-bottom: 100px
}

.bottom-50 {
    padding-bottom: 50px
}

.block-lines {
    background: url(../images/lines.html) no-repeat 0 bottom/75% auto;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .06)
}

.link-all {
    float: left;
    width: 100%;
    position: relative;
    text-align: center
}

.link-all a {
    display: inline-block;
    height: 40px;
    font-size: 16px;
    line-height: 40px;
    transition: all .3s
}

.link-all a i {
    float: right;
    width: 40px;
    height: 40px;
    margin-left: 15px;
    background-color: var(--color-light);
    border-radius: 50%;
    text-align: center;
    font-size: 24px;
    line-height: 40px;
    transition: all .3s
}

.link-all a:hover i {
    background-color: var(--color-purple);
    color: #fff
}

.grayscale {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%)
}

.grayscale:hover {
    filter: none;
    -webkit-filter: none
}

.news-list {
    float: left;
    width: 100%;
    position: relative
}

.news-list > ul {
    width: calc(100% + 40px);
    margin-left: -20px;
    display: flex;
    flex-flow: row wrap
}

.news-list > ul > li {
    width: 33.33334%;
    padding: 0 20px;
    margin-bottom: 40px;
    position: relative
}

.news-item {
    float: left;
    width: 100%;
    height: 100%;
    padding: 30px;
    background-color: var(--color-light);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    transition: all .5s
}

.news-item:hover {
    background-color: #fff;
    box-shadow: 0 7px 27px rgba(4, 51, 76, .12)
}

.news-item-top {
    float: left;
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    align-items: center
}

.news-item-top section {
    float: left;
    flex: 1;
    padding-left: 30px;
    padding-right: 15px
}

.news-item-top section small {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #999;
    letter-spacing: 2px
}

.news-item-top section span {
    display: block;
    font-size: 60px;
    font-weight: 300;
    line-height: 100%
}

.news-item-top picture {
    float: right;
    width: 40%;
    height: 120px;
    border-radius: 8px;
    overflow: hidden
}

.news-item-top picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center;
    transition: all 1s
}

.news-item:hover .news-item-top picture img {
    transform: scale(1.25, 1.25)
}

.news-item-bottom {
    float: left;
    width: 100%;
    padding: 25px 30px;
    margin-top: auto;
    border-radius: 8px;
    background-color: #fff;
    transition: all .5s
}

.news-item:hover .news-item-bottom {
    background-color: var(--color-light)
}

.news-item-bottom small {
    display: block;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-red);
    letter-spacing: 2px
}

.news-item-bottom strong {
    display: block;
    font-size: 22px;
    font-weight: 400;
    line-height: 30px
}

.news-wrap {
    float: left;
    width: 100%;
    position: relative
}

.news-content {
    float: left;
    width: calc(100% - 320px);
    position: relative
}

.news-photo {
    float: left;
    width: 100%;
    margin-bottom: 30px;
    border-radius: 32px;
    overflow: hidden
}

.news-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.news-sidebar {
    float: right;
    width: 260px;
    position: relative
}

.news-info {
    float: left;
    width: 100%;
    padding: 15px 0;
    margin-bottom: 20px;
    position: relative;
    border-top: 1px solid rgba(4, 51, 76, .07);
    border-bottom: 1px solid rgba(4, 51, 76, .07)
}

.news-info section {
    float: left;
    width: 100%;
    margin-bottom: 16px
}

.news-info section:last-child {
    margin-bottom: 0
}

.news-info section small {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #999;
    letter-spacing: 2px
}

.news-info section time {
    display: block;
    margin-top: 5px
}

.page-share {
    float: left;
    width: 100%;
    position: relative
}

.page-share ul {
    width: 100%
}

.page-share li {
    margin-right: 10px;
    margin-bottom: 10px
}

.page-share li:last-child {
    margin-right: 0
}

.page-share li a {
    float: left;
    border: 1px solid rgba(4, 51, 76, .15);
    transition: all .3s;
    text-align: center;
    border-radius: 8px
}

.page-share li a:hover {
    border-radius: 35%;
    border-color: var(--color-purple)
}

.page-share li a i {
    float: left;
    width: 38px;
    font-size: 20px;
    color: var(--color-purple);
    line-height: 38px;
    transition: all .5s
}

.sub-top,
.sub-top-in {
    float: left;
    width: 100%;
    position: relative
}

.sub-top-in {
    padding-top: 80px;
    box-shadow: inset 0 1px 0 rgba(66, 69, 94, .07)
}

.mission {
    text-align: left;
}

.vision {
    text-align: right;
}

.sub-top::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: .20
}

.breadcrumb {
    float: left;
    width: 100%;
    height: 20px;
    margin-bottom: 60px;
    position: relative;
    font-size: 14px;
    overflow: hidden
}

.breadcrumb.slim {
    margin-top: -70px;
    margin-bottom: 30px
}

.breadcrumb section {
    float: left;
    width: 500%
}

.breadcrumb a,
.breadcrumb i,
.breadcrumb strong {
    float: left
}

.breadcrumb a:hover {
    text-decoration: underline
}

.breadcrumb i {
    margin: 0 20px;
    color: var(--color-purple);
    opacity: .33
}

.breadcrumb strong {
    font-weight: 400;
    color: var(--color-purple)
}

.cat-list {
    float: left;
    width: 100%;
    margin-top: 30px;
    position: relative;
    overflow: hidden
}

.cat-list ul {
    width: calc(100% + 30px);
    margin-left: -15px
}

.cat-list li {
    width: 33.33334%;
    padding: 0 15px;
    margin-bottom: 30px
}

.cat-list li a {
    float: left;
    width: 100%;
    position: relative;
    color: #fff;
    overflow: hidden;
    border-radius: 12px
}

.cat-list li a i {
    content: "";
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 40px;
    height: 40px;
    font-size: 24px;
    line-height: 38px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    transition: all .5s
}

.cat-list li a:hover i {
    border-color: var(--color-red);
    background-color: var(--color-red)
}

.cat-list li a picture {
    float: left;
    width: 100%;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    transform-origin: center;
    transition: all 2s
}

.cat-list li a:hover picture {
    transform: scale(1.25, 1.25)
}

.cat-list li a picture img {
    float: left;
    width: 100%
}

.cat-list li a strong {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 80px 80px 24px 30px;
    background: linear-gradient(180deg, rgba(4, 51, 76, 0), rgba(4, 51, 76, .5), var(--color-dark));
    font-size: 24px;
    font-weight: 500;
    line-height: 30px
}

.cat-list li a strong::after {
    content: "";
    position: absolute;
    left: 30px;
    bottom: 0;
    width: 50px;
    height: 4px;
    background-color: var(--color-red);
    transition: all .6s;
    border-radius: 4px 4px 0 0
}

.cat-list li a:hover strong::after {
    width: calc(100% - 60px);
    background-color: #fff
}

.slider-product {
    float: left;
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 16px
}

.slider-product ul.slick-dots {
    padding: 20px 0
}

.slider-product-item {
    float: left;
    width: 100%;
    position: relative
}

.slider-product-item picture,
.slider-product-item picture img {
    float: left;
    width: 100%;
    max-height: 640px
}

.slider-product-item picture img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.product-hero {
    float: left;
    width: 100%;
    margin-top: -20px;
    margin-bottom: 50px;
    position: relative;
    display: flex
}

.product-hero-left {
    float: left;
    width: 50%;
    position: relative
}

.product-hero-right {
    float: left;
    width: 50%;
    padding: 0 40px 0 60px;
    position: relative
}

.product-hero-right .in {
    float: left;
    width: 100%;
    height: 100%;
    padding: 20px 0;
    display: flex;
    align-items: center
}

.product-photos {
    float: left;
    width: 100%;
    height: 100%;
    position: relative;
    transform: skewX(-5deg)
}

.product-photos .in {
    float: left;
    width: calc(100% + 8px);
    height: 100%;
    margin-left: -4px;
    margin-right: -2px;
    position: relative;
    display: flex
}

.product-photos picture {
    float: left;
    flex: 1;
    flex-basis: 20%;
    min-height: 280px;
    padding: 0 4px;
    overflow: hidden
}

.product-photos picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px
}

.product-cta {
    float: left;
    position: relative
}

.product-cta > ul {
    width: calc(100% + 10px);
    margin-left: -5px;
    display: flex;
    flex-flow: row wrap
}

.product-cta > ul > li {
    flex: 1;
    padding: 0 5px
}

.product-cta > ul > li:nth-child(even) {
    float: right;
    margin-left: auto
}

.product-cta-item {
    float: left;
    width: 100%;
    height: 100%;
    padding: 10px;
    color: #fff !important;
    background-color: var(--color-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    transition: all .5s;
    white-space: nowrap
}

.product-cta-item.red {
    background-color: var(--color-red)
}

.product-cta-item:hover {
    background-color: var(--color-purple)
}

.product-cta-item small {
    float: left;
    font-size: 28px;
    line-height: 100%
}

.product-cta-item span {
    flex: 1;
    padding: 0 5px 0 10px;
    font-size: 15px;
    font-weight: 500;
    line-height: 30px
}

.product-cta-item i {
    float: right;
    margin-left: auto;
    font-size: 24px;
    line-height: 100%
}

.product-table {
    float: left;
    width: 100%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    color: var(--color-dark)
}

.product-table table {
    width: 100%
}

.product-table tbody tr {
    border-bottom: 1px solid rgba(4, 51, 76, .1)
}

.product-table tbody tr:nth-child(even) {
    background-color: rgba(66, 69, 94, .05)
}

.product-table table tr th {
    padding: 15px 20px;
    text-align: left;
    background-color: var(--color-purple);
    color: #fff
}

.product-table table tr td {
    padding: 15px 20px;
    vertical-align: middle
}

.product-table table tr td:first-child {
    font-weight: 700
}

.product-table > ul {
    width: 100%
}

.product-table > ul > li {
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid rgba(4, 51, 76, .1);
    display: flex;
    align-items: center
}

.product-table > ul > li:nth-child(odd) {
    background-color: rgba(66, 69, 94, .05)
}

.product-table > ul > li:first-child {
    background-color: var(--color-purple);
    color: #fff;
    font-weight: 700
}

.product-table > ul > li > strong {
    float: left;
    width: 20%;
    min-width: 250px;
    padding-left: 10px
}

.product-table > ul > li > small {
    float: left;
    flex: 1;
    padding: 0 25px 0 15px
}

.product-table > ul > li > section {
    float: right;
    margin-left: auto
}

.fancybox-slide--iframe .fancybox-content {
    width: 800px;
    min-height: 300px;
    max-width: 80%;
    max-height: 80%;
    margin: 0
}

.my-fancy {
    display: none;
    padding: 30px !important;
    border-radius: 8px
}

.my-fancy-wrap {
    width: 100%;
    max-width: 800px;
    max-height: 600px;
    overflow: hidden;
    overflow-y: auto
}

.my-fancy-wrap::-webkit-scrollbar {
    width: 5px
}

.my-fancy-wrap::-webkit-scrollbar-track {
    background: #eee
}

.my-fancy-wrap::-webkit-scrollbar-thumb {
    background-color: #555
}

.my-fancy-wrap {
    scrollbar-color: #fff #eee;
    scrollbar-width: thin
}

.fancy-title {
    float: left;
    width: 100%;
    padding: 0 20px;
    margin-bottom: 15px;
    position: relative;
    color: var(--color-purple)
}

.fancy-title::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 50px;
    height: 2px;
    margin-top: -1px;
    background-color: #ddd
}

.fancy-title strong {
    float: left;
    padding: 0 15px;
    position: relative;
    font-weight: 700;
    letter-spacing: 1px;
    background-color: #fff
}

.fancy-form {
    float: left;
    width: 100%
}

.fancy-form .item {
    float: left;
    width: 50%;
    padding: 0 10px;
    margin-bottom: 20px
}

.fancy-form .item:last-child {
    margin-bottom: 0
}

.fancy-form .item-2 {
    width: calc(50% - 10px)
}

.fancy-form .item-2 label {
    float: left;
    width: 100%;
    padding: 9px;
    border: 1px solid #999;
    border-radius: 4px;
    font-weight: 600
}

.fancy-form .item a {
    font-weight: 600;
    text-decoration: underline
}

.accordion {
    float: left;
    width: 100%
}

.accordion-section {
    float: left;
    width: 100%
}

.accordion-item {
    float: left;
    width: 100%;
    padding: 9px;
    margin-bottom: 30px;
    border: 1px solid rgba(4, 51, 76, .2);
    border-radius: 16px
}

.accordion-section-title {
    float: left;
    width: 100%;
    padding: 20px;
    padding-right: 54px;
    position: relative;
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
    z-index: 10
}

.accordion.slim .accordion-section-title {
    font-size: 16px
}

.accordion-section-title.active,
.accordion-section-title:hover {
    color: var(--color-red)
}

.accordion-section-title::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    width: 20px;
    background: url(../images/arrow-down.png) no-repeat center/100% auto;
    transition: all .3s
}

.accordion-section-title.active::after {
    transform: rotate(180deg)
}

.accordion-section-title section {
    float: left
}

.accordion-section-content {
    float: left;
    width: 100%;
    padding: 20px;
    margin-top: -10px;
    position: relative;
    display: none
}

.contact-wrap {
    width: calc(50% - 20px);
    padding: 9px;
    border: 1px solid rgba(4, 51, 76, .2);
    margin-bottom: 40px;
    position: relative;
    border-radius: 16px;
    overflow: hidden
}

.contact-map {
    float: left;
    width: 100%;
    position: relative;
    aspect-ratio: 4/2;
    border-radius: 8px;
    overflow: hidden
}

.contact-info {
    float: right;
    width: 100%;
    padding: 40px
}

.contact-info section {
    float: left;
    width: 100%;
    padding-left: 48px;
    margin-bottom: 35px;
    position: relative
}

.contact-info section:last-child {
    margin-bottom: 0
}

.contact-info section i {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 24px;
    color: var(--color-blue)
}

.contact-info section strong {
    float: left;
    width: 100%;
    font-size: 16px;
    color: var(--color-primary)
}

.contact-info section span {
    float: left;
    width: 100%;
    margin-top: 10px;
    font-size: 15px;
    color: #666
}

.social-media {
    width: 100%;
    padding: 0 !important;
    margin: 10px 0 0 0 !important;
    background: 0 0 !important
}

.social-media li a {
    background-color: var(--color-light)
}

.contact-form {
    float: left;
    width: 100%
}

.form-item {
    float: left;
    width: 50%;
    padding: 0 15px;
    margin-bottom: 30px;
    position: relative
}

.form-item:last-child {
    margin-bottom: 0
}

.form-item i {
    float: left;
    width: 35%;
    font-weight: 500;
    line-height: 40px;
    position: relative
}

.form-item i::after {
    position: absolute;
    top: 0;
    right: 30px;
    content: ":";
    color: #999
}

.form-item em {
    float: right;
    width: 65%
}

.form-item em > a {
    float: right;
    font-weight: 700;
    line-height: 40px
}

.form-item em label > a {
    font-weight: 600;
    text-decoration: underline
}

.security-code img {
    float: left;
    width: 120px;
    height: 45px;
    margin-right: 10px;
    padding: 2px;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 6px
}

.security-code a.refresh {
    float: left;
    width: 45px;
    height: 45px;
    text-indent: -9999px;
    background: #fff url(../images/refresh.html) no-repeat center center;
    background-size: 24px;
    border: 1px solid #ccc;
    border-radius: 6px
}

.security-code a:hover.refresh {
    background-color: #eee
}

.upload {
    float: left;
    width: 100%;
    height: 50px;
    position: relative;
    text-align: center
}

.upload span {
    float: left;
    width: 100%;
    height: 100%;
    position: relative;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 50px;
    z-index: 2;
    background-color: #b0bac4
}

.upload:hover span {
    background-color: var(--color-purple)
}

.upload input {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    overflow: hidden !important;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
    cursor: pointer
}

.pages {
    float: left;
    width: 100%;
    position: relative;
    text-align: center
}

.pages ul {
    width: 100%
}

.pages li {
    float: none;
    display: inline-block;
    padding: 0 5px 5px 5px
}

.pages li a {
    float: left;
    width: 48px;
    height: 48px;
    font-size: 14px;
    line-height: 48px;
    color: var(--color-purple);
    background-color: var(--color-light);
    transition: all .3s;
    border-radius: 8px
}

.pages li a:hover {
    color: #fff;
    background-color: var(--color-purple)
}

.pages li a.current {
    color: #fff;
    background-color: var(--color-dark)
}

certificates {
    float: left;
    width: 100%;
    text-align: center;
    overflow: hidden
}

.certificates ul {
    width: 100%;
    display: flex;
    flex-flow: row wrap
}

.certificates li {
    width: 25%;
    padding: 0 20px;
    margin-bottom: 50px
}

.certificates li a,
.certificates li section {
    float: left;
    width: 100%;
    height: 100%;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 1 1;
    background-image: linear-gradient(180deg, #f2f2f4, #fff)
}

.certificates li picture {
    float: left;
    width: 100%;
    padding: 0 20px;
    position: relative;
    overflow: hidden
}

.certificates li picture img {
    display: inline-block;
    max-width: 100%;
    max-height: 250px;
    position: relative;
    z-index: 10
}

.certificates li strong {
    float: left;
    width: 100%;
    padding: 24px 0 21px 0;
    position: relative;
    font-weight: 500
}

.certificates .inner-20 {
    margin: 0 -20px
}

@media only screen and (max-width: 1640px) {
    .footer::before {
        display: none;
    }

    .outer {
        padding-left: 60px;
        padding-right: 60px
    }

    .wrap {
        width: 1320px
    }

    .hero-cat-item:hover {
        height: 240px
    }

    .hero-cat-item:hover picture {
        height: 200px
    }

    .pl-80 {
        padding-left: 60px
    }

    .pr-80 {
        padding-right: 60px
    }

    .footer {
        padding-top: 64px
    }

    .footer-join,
    .footer-social {
        padding-top: 60px;
        padding-bottom: 60px
    }

    .copyright {
        padding-top: 80px;
        padding-bottom: 80px
    }

    .contact-info {
        padding: 60px
    }
}

@media only screen and (max-width: 1480px) {
    .footer::before {
        display: none;
    }

    .wrap {
        width: 1200px
    }

    .top-150 {
        padding-top: 100px
    }

    .top-100 {
        padding-top: 75px
    }

    .top-50 {
        padding-top: 35px
    }

    .bottom-150 {
        padding-bottom: 100px
    }

    .bottom-100 {
        padding-bottom: 75px
    }

    .bottom-50 {
        padding-bottom: 35px
    }

    .outer,
    .slider-hero-wrap {
        padding-left: 30px;
        padding-right: 30px
    }

    #nav > ul > li {
        margin-right: 32px
    }

    .pl-80 {
        padding-left: 30px
    }

    .pr-80 {
        padding-right: 30px
    }

    .footer {
        padding-top: 44px
    }

    .footer-contact {
        padding-bottom: 45px
    }

    .footer-join,
    .footer-social {
        padding-top: 30px;
        padding-bottom: 30px
    }

    .copyright {
        padding-top: 50px;
        padding-bottom: 50px
    }

    .slider-title strong {
        font-size: 48px;
        line-height: 60px
    }

    .flex-left {
        padding-right: 4%
    }

    .news-item-top picture {
        width: 50%
    }

    .footer-title {
        margin-bottom: 25px
    }

    .footer-menu li a {
        font-size: 30px;
        line-height: 36px
    }

    .stat-item picture i {
        width: 100px;
        font-size: 40px;
        line-height: 100px;
        box-shadow: inset 0 -2px 0 rgba(0, 102, 204, 1), 20px 0 0 rgb(255, 255, 255)

    }

    .stat-item section {
        padding: 0 20px;
        font-size: 20px
    }

    .block-crn-photo picture {
        width: 80%;
        border-radius: 32px
    }

    .contact-info {
        padding: 30px
    }

    .block-crn::before {
        margin-top: 100px;
        width: auto;
        height: auto;
        background-position: -20px 20px
    }
}

@media only screen and (max-width: 1320px) {
    .block-crn::before {
        display: none;
        background-position: -20px 20px
    }

    .footer::before {
        display: none;
    }

    .wrap {
        width: 960px
    }

    #nav > ul > li {
        margin-right: 12px
    }

    #nav > ul > li:first-child {
        display: none
    }

    .hero-categories > ul {
        width: calc(100% + 16px);
        margin-left: -8px
    }

    .hero-categories > ul > li {
        padding: 0 8px
    }

    .hero-cat-item:hover {
        height: 228px
    }

    .hero-cat-item:hover::after {
        height: 28px
    }

    .hero-cat-item section {
        padding: 0 25px 25px 25px
    }

    .hero-cat-item:hover section {
        bottom: 28px;
        padding-bottom: 20px
    }

    .hero-cat-item section strong {
        font-size: 18px;
        font-weight: 700;
        line-height: 20px
    }

    .news-list > ul {
        width: calc(100% + 30px);
        margin-left: -15px
    }

    .news-list > ul > li {
        width: 50%;
        padding: 0 15px;
        margin-bottom: 30px
    }

    .news-photo {
        max-height: initial;
        border-radius: 16px
    }

    .accordion-item {
        padding: 4px
    }

    .product-hero-right {
        padding-left: 50px;
        padding-right: 30px
    }

    .product-hero-right .page-text {
        font-size: 16px;
        line-height: 24px
    }

    .certificates {
        margin: 0 -15px
    }
}

@media only screen and (max-width: 1140px) {
    .footer::before {
        display: none;
    }

    .header-search input:focus {
        width: 198px
    }

    .footer::before {
        background-size: 90% auto
    }

    .footer-contact,
    .footer-menu {
        width: 100%
    }

    .footer-contact {
        margin-top: 30px
    }

    .sub-top-in {
        padding-top: 40px
    }
}

@media only screen and (max-width: 1023px) {
    .footer::before {
        display: none;
    }

    #logo img {
        margin-top: 0;
    }

    .block-crn::before {
        display: none;
    }

    .kodugecer {
        padding-top: 70px
    }

    .wrap {
        float: left;
        width: 100%;
        padding: 0 30px
    }

    .header {
        height: 70px;
        padding: 0
    }

    .nav-opened .header {
        background-color: #fff
    }

    #logo {
        position: absolute;
        top: calc(50% - 20px);
        left: 20px;
        flex: 1
    }

    #logo img {
        height: 40px
    }

    .header-right {
        margin-left: auto
    }

    .header-right:hover {
        background-color: #fff
    }

    .header-right::before {
        right: 70px
    }

    .header-search button,
    .header-search button i,
    .header-search small {
        width: 68px;
        line-height: 48px
    }

    .header-search small {
        width: 68px
    }

    .header-search input {
        width: 68px;
        height: 48px;
        padding: 0 15px 0 35px;
        line-height: 48px
    }

    .header-search input:focus {
        width: calc(100vw - 170px);
        padding-left: 19px
    }

    .header-lang-wrap {
        width: 68px;
        height: 48px;
        line-height: 48px
    }

    .header-lang-icon {
        padding-left: 15px;
        letter-spacing: 0
    }

    .header-lang-icon::before {
        right: 15px;
        width: 10px
    }

    .header-lang {
        top: 43px;
        left: 5px
    }

    .nav-icon {
        float: right;
        width: 70px;
        height: 70px;
        margin: 0 -10px 0 10px;
        position: relative;
        top: 0;
        cursor: pointer;
        display: block;
        text-indent: -9999px
    }

    .nav-icon span {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 32px;
        height: 2px;
        margin: -1px 0 0 -16px;
        transition: all .5s
    }

    .nav-icon span::before {
        content: "";
        position: absolute;
        top: -6px;
        left: 0;
        right: 0;
        height: 2px;
        background-color: var(--color-purple);
        transition: all .5s
    }

    .nav-icon span::after {
        content: "";
        position: absolute;
        bottom: -6px;
        left: 0;
        right: 5px;
        height: 2px;
        background-color: var(--color-purple);
        transition: all .5s
    }

    .nav-icon-close span {
        background-color: transparent
    }

    .nav-icon-close span::before {
        -webkit-transform: rotate(-135deg);
        -moz-transform: rotate(-135deg);
        -o-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
        transform: rotate(-135deg);
        top: 0;
        right: 0;
        background-color: var(--color-red)
    }

    .nav-icon-close span::after {
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        -o-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
        transform: rotate(135deg);
        bottom: 0;
        right: 0;
        background-color: var(--color-red)
    }

    .nav-icon-close::before {
        content: "";
        border-bottom: 4px solid transparent;
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        height: 0;
        position: absolute;
        width: 0;
        left: 50%;
        bottom: 0;
        margin-left: -10px;
        border-bottom-color: var(--color-dark)
    }

    #nav {
        position: fixed;
        top: 70px;
        bottom: 0;
        left: 0;
        right: 0;
        width: auto;
        height: calc(100vh - 70px);
        padding: 30px 30px 110px 30px;
        display: none;
        background-color: var(--color-dark);
        overflow-y: auto;
        z-index: 20
    }

    #nav > ul {
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, .07)
    }

    #nav > ul > li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, .07)
    }

    #nav > ul > li:first-child {
        display: block
    }

    #nav > ul > li.nav-multi::after {
        content: "";
        position: absolute;
        top: 0;
        right: 10px;
        width: 14px;
        height: 60px;
        background: url(../images/arrow-down.png) no-repeat right 52%/100% auto;
        transition: all .3s
    }

    #nav > ul > li > a {
        width: 100%;
        padding: 0 20px;
        color: #fff;
        font-size: 18px;
        line-height: 60px
    }

    #nav > ul > li:hover > a,
    #nav > ul > li > a.active {
        color: var(--color-purple)
    }

    #nav > ul > li.nav-multi > a::after {
        display: none
    }

    .nav-menu {
        float: left;
        width: 100%;
        position: relative;
        top: auto;
        left: auto;
        margin-bottom: 20px;
        background-color: #fff;
        box-shadow: 0 30px 50px rgba(4, 52, 76, .1);
        border-radius: 8px;
        display: none
    }

    .nav-opened {
        overflow: hidden
    }

    .top-100 {
        padding-top: 50px
    }

    .top-50 {
        padding-top: 25px
    }

    .bottom-150 {
        padding-bottom: 75px
    }

    .bottom-100 {
        padding-bottom: 50px
    }

    .bottom-50 {
        padding-bottom: 25px
    }

    .block-flexed {
        display: block
    }

    .flex-left {
        width: 100%;
        padding-right: 0
    }

    .flex-right {
        width: 100%;
        margin-top: 20px
    }

    .flex-right:first-child {
        margin-top: 0
    }

    .block-crn-photo picture {
        width: 100%
    }

    .block-crn-photo section {
        display: none
    }

    .slider-hero-wrap {
        height: auto;
        padding-left: 0;
        padding-right: 0
    }

    .slider-hero {
        border-radius: 12px
    }

    .slider-hero-item {
        height: auto;
        min-height: initial
    }

    .slider-title {
        top: 30px
    }

    .slider-title strong {
        font-size: 32px;
        line-height: 40px
    }

    .hero-categories-wrap {
        float: left;
        width: 100%;
        margin-top: -30px;
        position: relative;
        bottom: auto;
        left: auto;
        right: auto
    }

    .hero-categories > ul {
        margin-bottom: -16px
    }

    .hero-categories > ul > li {
        width: auto;
        margin-bottom: 16px;
        flex: 1;
        flex-basis: 50%
    }

    .hero-cat-item {
        height: 100% !important;
        border-radius: 8px;
        background: var(--color-light)
    }

    .hero-cat-item::after {
        height: 3px !important
    }

    .hero-cat-item picture {
        height: 180px !important
    }

    .hero-cat-item section {
        float: left;
        width: 100%;
        position: relative;
        left: auto;
        right: auto;
        bottom: auto !important;
        padding: 25px !important;
        display: flex;
        align-items: center
    }

    .copyright,
    .footer-contact,
    .footer-menu {
        padding-left: 0;
        padding-right: 0
    }

    .footer-menu li {
        width: 50%
    }

    .copyright::after {
        width: 100%
    }

    .c-left img {
        height: 30px;
        margin-right: 30px
    }

    .c-center {
        padding-left: 0;
        margin-left: 0
    }

    .sub-top-in {
        padding-top: 30px
    }

    .breadcrumb {
        margin-bottom: 40px
    }

    .news-content,
    .news-sidebar {
        width: 100%
    }

    .news-sidebar {
        margin-top: 32px
    }

    .gallery {
        margin-top: 20px
    }

    .cat-list li {
        width: 50%
    }

    .product-cta > ul {
        width: calc(100% + 20px);
        margin-left: -10px
    }

    .product-cta > ul > li {
        padding: 0 10px;
        margin-bottom: 20px
    }

    ul.slick-dots {
        padding: 15px 0
    }

    ul.slick-dots li {
        height: 8px;
        margin: 0 3px
    }

    ul.slick-dots li button {
        width: 8px;
        height: 8px;
        border-width: 1px
    }

    .breadcrumb.slim {
        margin-top: -20px;
        margin-bottom: 20px
    }

    .product-hero {
        margin-top: 0;
        margin-bottom: 20px;
        flex-direction: column
    }

    .product-hero-left {
        width: 100%
    }

    .product-hero-right {
        width: 100%;
        padding: 0;
        margin-top: 5px
    }

    .product-table {
        width: calc(100% + 40px);
        margin-left: -20px;
        margin-top: -10px
    }

    .product-table > ul {
        border-top: 1px solid rgba(4, 51, 76, .1)
    }

    .product-table > ul > li:first-child {
        display: none
    }

    .product-table > ul > li {
        padding: 20px 20px 5px 20px;
        flex-direction: column
    }

    .product-table > ul > li > strong {
        width: 100%;
        padding-left: 0
    }

    .product-table > ul > li > small {
        width: 100%;
        padding: 5px 0
    }

    .product-table > ul > li > section {
        width: 100%;
        margin-top: 10px
    }

    .certificates li {
        width: 50%
    }
}

@media only screen and (max-width: 767px) {
    .footer::before {
        display: none;
    }

    .certificates li a,
    .certificates li section {
        padding: 20px 0
    }

    .slider-hero-item::after {
        height: 160px
    }

    .slider-title small {
        display: none
    }

    .block-crn-photo picture {
        border-radius: 16px
    }

    .news-list > ul > li {
        width: 100%;
        margin-bottom: 25px
    }

    .news-item {
        padding: 25px
    }

    .news-item-top {
        margin-bottom: 20px
    }

    .news-item-top section {
        padding-left: 0
    }

    .news-item-top section span {
        font-size: 48px
    }

    .news-item-bottom {
        padding: 25px 25px 20px 25px
    }

    .block-crn::before,
    .sub-top::before {
        background-size: 75% auto
    }

    .block-crn::before {
        display: none;
        background-position: -20px 20px
    }

    .sub-top::before {
        background-position: right -40px top 15px
    }

    .page-title {
        font-size: 32px;
        line-height: 40px
    }

    .fs-30 {
        font-size: 26px;
        line-height: 30px
    }

    .footer-join,
    .footer-social {
        width: 100%
    }

    .footer-social,
    .footer-social ul {
        margin-top: 20px
    }

    .copyright {
        padding-top: 35px;
        padding-bottom: 35px;
        display: block
    }

    .c-center,
    .c-left,
    .c-right {
        width: 100%;
        padding: 5px 0
    }

    .c-left {
        margin-bottom: 20px
    }

    .crn-stats.two li,
    .form-item .button {
        width: 100%
    }

    .contact-wrap {
        margin-bottom: 30px;
        flex-direction: column
    }

    .contact-map {
        width: 100%;
        height: 400px;
        border-radius: 8px 8px 0 0
    }

    .contact-info {
        width: 100%;
        padding: 20px
    }

    .slider-product {
        border-radius: 12px
    }

    .product-cta {
        width: 100%
    }

    .product-photos .in {
        width: calc(100% + 24px);
        margin-left: -12px
    }

    .footer::before {
        background-size: 75% auto;
        background-position: right -30px bottom -30px
    }
}

@media only screen and (max-width: 640px) {
    .footer::before {
        display: none;
    }

    .connect-whatsapp {
        position: fixed;
        bottom: 15px;
        right: 15px
    }

    .cat-list li,
    .footer-contact section {
        width: 100%
    }

    .gallery li {
        width: 50%
    }

    .cat-list li a strong {
        font-size: 20px;
        line-height: 24px
    }

    .product-cta-item {
        border-radius: 8px
    }

    .accordion-item {
        padding: 0;
        margin-bottom: 20px;
        border-radius: 8px
    }

    .product-table {
        overflow-x: auto
    }

    .product-table table {
        min-width: 640px
    }

    .product-table table tr td,
    .product-table table tr th {
        padding: 15px
    }

    .product-table table tr td:first-child {
        white-space: nowrap
    }

    .product-photos picture {
        min-height: 200px;
        padding: 0 2px
    }
}

@media only screen and (max-width: 540px) {
    .footer::before {
        display: none;
    }

    #logo img {
        margin-top: 0px;
        padding: 3px 0
    }

    .slider-title strong {
        font-size: 26px;
        line-height: 34px
    }

    .slider-hero-item img {
        padding-bottom: 15%
    }

    .hero-categories > ul > li {
        flex-basis: 100%;
        margin-bottom: 20px
    }

    .hero-cat-item picture {
        height: 140px !important
    }

    .footer-menu li a {
        font-size: 24px;
        font-weight: 400;
        line-height: 30px
    }

    .breadcrumb {
        font-size: 12px
    }

    .breadcrumb i {
        margin: 0 12px
    }

    .contact-map {
        height: 320px
    }

    .fancy-form .item,
    .form-item {
        width: 100%;
        margin-bottom: 20px
    }

    .product-cta > ul > li {
        flex-basis: 100%;
        margin-bottom: 15px
    }

    .stat-item picture i {
        box-shadow: inset 0 -2px 0 rgba(0, 102, 204, 1), 20px 0 0 rgb(255, 255, 255)
    }
}

.fl {
    float: left !important
}

.fr {
    float: right !important
}

.fn {
    float: none !important
}

@media only screen and (max-width: 440px) {
    .footer::before {
        display: none;
    }

    .nav-icon {
        width: 60px;
        margin-right: -20px
    }

    .header-search input:focus {
        width: calc(100vw - 160px)
    }

    .slider-title strong {
        width: calc(100% - 30px);
        font-size: 20px;
        line-height: 30px
    }

    .footer-menu li {
        width: 100%
    }

    .accordion-section-title {
        font-size: 16px;
        line-height: 20px
    }

    .product-photos picture {
        min-height: 170px
    }

    .certificates li {
        width: 100%;
        margin-bottom: 20px
    }
}

@media only screen and (max-width: 389px) {
    .footer::before {
        display: none;
    }

    #logo {
        margin-left: -5px
    }

    #logo img {
        padding: 5px 0
    }
}

@font-face {
    font-family: 'Gilmer Outline';
    src: url(../font/GilmerOutline.eot);
    src: url(../font/GilmerOutlined41d.eot?#iefix) format('embedded-opentype'), url(../font/GilmerOutline.woff2) format('woff2'), url(../font/GilmerOutline.woff) format('woff'), url(../font/GilmerOutline.ttf) format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Gilmer;
    src: url(../font/GilmerBold.eot);
    src: url(../font/GilmerBoldd41d.eot?#iefix) format('embedded-opentype'), url(../font/GilmerBold.woff2) format('woff2'), url(../font/GilmerBold.woff) format('woff'), url(../font/GilmerBold.ttf) format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Gilmer;
    src: url(../font/GilmerMedium.eot);
    src: url(../font/GilmerMediumd41d.eot?#iefix) format('embedded-opentype'), url(../font/GilmerMedium.woff2) format('woff2'), url(../font/GilmerMedium.woff) format('woff'), url(../font/GilmerMedium.ttf) format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Gilmer;
    src: url(../font/GilmerLight.eot);
    src: url(../font/GilmerLightd41d.eot?#iefix) format('embedded-opentype'), url(../font/GilmerLight.woff2) format('woff2'), url(../font/GilmerLight.woff) format('woff'), url(../font/GilmerLight.ttf) format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Gilmer;
    src: url(../font/GilmerRegular.eot);
    src: url(../font/GilmerRegulard41d.eot?#iefix) format('embedded-opentype'), url(../font/GilmerRegular.woff2) format('woff2'), url(../font/GilmerRegular.woff) format('woff'), url(../font/GilmerRegular.ttf) format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap
}

@font-face {
    font-family: Gilmer;
    src: url(../font/GilmerHeavy.eot);
    src: url(../font/GilmerHeavyd41d.eot?#iefix) format('embedded-opentype'), url(../font/GilmerHeavy.woff2) format('woff2'), url(../font/GilmerHeavy.woff) format('woff'), url(../font/GilmerHeavy.ttf) format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap
}

body.compensate-for-scrollbar {
    overflow: hidden
}

.fancybox-active {
    height: auto
}

.fancybox-is-hidden {
    left: -9999px;
    margin: 0;
    position: absolute !important;
    top: -9999px;
    visibility: hidden
}

.fancybox-container {
    -webkit-backface-visibility: hidden;
    height: 100%;
    left: 0;
    outline: 0;
    position: fixed;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    transform: translateZ(0);
    width: 100%;
    z-index: 99992
}

.fancybox-container * {
    box-sizing: border-box
}

.fancybox-bg,
.fancybox-inner,
.fancybox-outer,
.fancybox-stage {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.fancybox-outer {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto
}

.fancybox-bg {
    background: #232128;
    opacity: 0;
    transition-duration: inherit;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(.47, 0, .74, .71)
}

.fancybox-is-open .fancybox-bg {
    opacity: .9;
    transition-timing-function: cubic-bezier(.22, .61, .36, 1)
}

.fancybox-caption,
.fancybox-infobar,
.fancybox-navigation .fancybox-button,
.fancybox-toolbar {
    direction: ltr;
    opacity: 0;
    position: absolute;
    transition: opacity .25s ease, visibility 0s ease .25s;
    visibility: hidden;
    z-index: 99997
}

.fancybox-show-caption .fancybox-caption,
.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-nav .fancybox-navigation .fancybox-button,
.fancybox-show-toolbar .fancybox-toolbar {
    opacity: 1;
    transition: opacity .25s ease 0s, visibility 0s ease 0s;
    visibility: visible
}

.fancybox-infobar {
    color: #ccc;
    font-size: 13px;
    -webkit-font-smoothing: subpixel-antialiased;
    height: 44px;
    left: 0;
    line-height: 44px;
    min-width: 44px;
    mix-blend-mode: difference;
    padding: 0 10px;
    pointer-events: none;
    top: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.fancybox-toolbar {
    right: 0;
    top: 0
}

.fancybox-stage {
    direction: ltr;
    overflow: visible;
    transform: translateZ(0);
    z-index: 99994
}

.fancybox-is-open .fancybox-stage {
    overflow: hidden
}

.fancybox-slide {
    -webkit-backface-visibility: hidden;
    display: none;
    height: 100%;
    left: 0;
    outline: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: absolute;
    text-align: center;
    top: 0;
    transition-property: transform, opacity;
    white-space: normal;
    width: 100%;
    z-index: 99994
}

.fancybox-slide::before {
    content: '';
    display: inline-block;
    font-size: 0;
    height: 100%;
    vertical-align: middle;
    width: 0
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--current,
.fancybox-slide--next,
.fancybox-slide--previous {
    display: block
}

.fancybox-slide--image {
    overflow: hidden;
    padding: 44px 0
}

.fancybox-slide--image::before {
    display: none
}

.fancybox-slide--html {
    padding: 6px
}

.fancybox-content {
    background: #fff;
    display: inline-block;
    margin: 0;
    max-width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: relative;
    text-align: left;
    vertical-align: middle
}

.fancybox-slide--image .fancybox-content {
    animation-timing-function: cubic-bezier(.5, 0, .14, 1);
    -webkit-backface-visibility: hidden;
    background: 0 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    left: 0;
    max-width: none;
    overflow: visible;
    padding: 0;
    position: absolute;
    top: 0;
    -ms-transform-origin: top left;
    transform-origin: top left;
    transition-property: transform, opacity;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99995
}

.fancybox-can-zoomOut .fancybox-content {
    cursor: zoom-out
}

.fancybox-can-zoomIn .fancybox-content {
    cursor: zoom-in
}

.fancybox-can-pan .fancybox-content,
.fancybox-can-swipe .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 {
    background: 0 0;
    border: 0;
    height: 100%;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none;
    padding: 0;
    position: absolute;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%
}

.fancybox-spaceball {
    z-index: 1
}

.fancybox-slide--iframe .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--video .fancybox-content {
    height: 100%;
    overflow: visible;
    padding: 0;
    width: 100%
}

.fancybox-slide--video .fancybox-content {
    background: #000
}

.fancybox-slide--map .fancybox-content {
    background: #e5e3df
}

.fancybox-slide--iframe .fancybox-content {
    background: #fff
}

.fancybox-iframe,
.fancybox-video {
    background: 0 0;
    border: 0;
    display: block;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 100%
}

.fancybox-iframe {
    left: 0;
    position: absolute;
    top: 0
}

.fancybox-error {
    background: #fff;
    cursor: default;
    max-width: 400px;
    padding: 40px;
    width: 100%
}

.fancybox-error p {
    color: #444;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    padding: 0
}

.fancybox-button {
    background: rgba(30, 30, 30, .6);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    display: inline-block;
    height: 44px;
    margin: 0;
    padding: 10px;
    position: relative;
    transition: color .2s;
    vertical-align: top;
    visibility: inherit;
    width: 44px
}

.fancybox-button,
.fancybox-button:link,
.fancybox-button:visited {
    color: #ccc
}

.fancybox-button:hover {
    color: #fff
}

.fancybox-button:focus {
    outline: 0
}

.fancybox-button.fancybox-focus {
    outline: 1px dotted
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
    color: #888;
    cursor: default;
    outline: 0
}

.fancybox-button div {
    height: 100%
}

.fancybox-button svg {
    display: block;
    height: 100%;
    overflow: visible;
    position: relative;
    width: 100%
}

.fancybox-button svg path {
    fill: currentColor;
    stroke-width: 0
}

.fancybox-button--fsenter svg:nth-child(2),
.fancybox-button--play svg:nth-child(2) {
    display: none
}

.fancybox-button--fsexit svg:nth-child(1),
.fancybox-button--pause svg:nth-child(1) {
    display: none
}

.fancybox-progress {
    background: #eb6629;
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -ms-transform-origin: 0;
    transform-origin: 0;
    transition-property: transform;
    transition-timing-function: linear;
    z-index: 99998
}

.fancybox-close-small {
    background: 0 0;
    border: 0;
    border-radius: 0;
    color: #ccc;
    cursor: pointer;
    opacity: .8;
    padding: 8px;
    position: absolute;
    right: -12px;
    top: -44px;
    z-index: 401
}

.fancybox-close-small:hover {
    color: #fff;
    opacity: 1
}

.fancybox-slide--html .fancybox-close-small {
    color: currentColor;
    padding: 10px;
    right: 0;
    top: 0
}

.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
}

.fancybox-navigation .fancybox-button {
    background-clip: content-box;
    height: 100px;
    opacity: 0;
    position: absolute;
    top: calc(50% - 50px);
    width: 70px
}

.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 {
    padding: 31px 6px 31px 26px;
    right: 0;
    right: env(safe-area-inset-right)
}

.fancybox-caption {
    background: linear-gradient(to top, rgba(0, 0, 0, .85) 0, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, .15) 65%, rgba(0, 0, 0, .075) 75.5%, rgba(0, 0, 0, .037) 82.85%, rgba(0, 0, 0, .019) 88%, rgba(0, 0, 0, 0) 100%);
    bottom: 0;
    color: #eee;
    font-size: 14px;
    font-weight: 400;
    left: 0;
    line-height: 1.5;
    padding: 75px 44px 25px 44px;
    pointer-events: none;
    right: 0;
    text-align: center;
    z-index: 99996
}

@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 {
    max-height: 50vh;
    overflow: auto;
    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
}

.fancybox-loading {
    animation: fancybox-rotate 1s linear infinite;
    background: 0 0;
    border: 4px solid #888;
    border-bottom-color: #fff;
    border-radius: 50%;
    height: 50px;
    left: 50%;
    margin: -25px 0 0 -25px;
    opacity: .7;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 50px;
    z-index: 99999
}

@keyframes fancybox-rotate {
    100% {
        transform: rotate(360deg)
    }
}

.fancybox-animated {
    transition-timing-function: cubic-bezier(0, 0, .25, 1)
}

.fancybox-fx-slide.fancybox-slide--previous {
    opacity: 0;
    transform: translate3d(-100%, 0, 0)
}

.fancybox-fx-slide.fancybox-slide--next {
    opacity: 0;
    transform: translate3d(100%, 0, 0)
}

.fancybox-fx-slide.fancybox-slide--current {
    opacity: 1;
    transform: translate3d(0, 0, 0)
}

.fancybox-fx-fade.fancybox-slide--next,
.fancybox-fx-fade.fancybox-slide--previous {
    opacity: 0;
    transition-timing-function: cubic-bezier(.19, 1, .22, 1)
}

.fancybox-fx-fade.fancybox-slide--current {
    opacity: 1
}

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1.5)
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
    opacity: 0;
    transform: scale3d(.5, .5, .5)
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
    opacity: 1;
    transform: scale3d(1, 1, 1)
}

.fancybox-fx-rotate.fancybox-slide--previous {
    opacity: 0;
    -ms-transform: rotate(-360deg);
    transform: rotate(-360deg)
}

.fancybox-fx-rotate.fancybox-slide--next {
    opacity: 0;
    -ms-transform: rotate(360deg);
    transform: rotate(360deg)
}

.fancybox-fx-rotate.fancybox-slide--current {
    opacity: 1;
    -ms-transform: rotate(0);
    transform: rotate(0)
}

.fancybox-fx-circular.fancybox-slide--previous {
    opacity: 0;
    transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0)
}

.fancybox-fx-circular.fancybox-slide--next {
    opacity: 0;
    transform: scale3d(0, 0, 0) translate3d(100%, 0, 0)
}

.fancybox-fx-circular.fancybox-slide--current {
    opacity: 1;
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0)
}

.fancybox-fx-tube.fancybox-slide--previous {
    transform: translate3d(-100%, 0, 0) scale(.1) skew(-10deg)
}

.fancybox-fx-tube.fancybox-slide--next {
    transform: translate3d(100%, 0, 0) scale(.1) skew(10deg)
}

.fancybox-fx-tube.fancybox-slide--current {
    transform: translate3d(0, 0, 0) scale(1)
}

@media all and (max-height: 576px) {
    .fancybox-slide {
        padding-left: 6px;
        padding-right: 6px
    }

    .fancybox-slide--image {
        padding: 6px 0
    }

    .fancybox-close-small {
        right: -6px
    }

    .fancybox-slide--image .fancybox-close-small {
        background: #4e4e4e;
        color: #f2f4f6;
        height: 36px;
        opacity: 1;
        padding: 6px;
        right: 0;
        top: 0;
        width: 36px
    }

    .fancybox-caption {
        padding-left: 12px;
        padding-right: 12px
    }

    @supports (padding:max(0px)) {
        .fancybox-caption {
            padding-left: max(12px, env(safe-area-inset-left));
            padding-right: max(12px, env(safe-area-inset-right))
        }
    }
}

.fancybox-share {
    background: #f4f4f4;
    border-radius: 3px;
    max-width: 90%;
    padding: 30px;
    text-align: center
}

.fancybox-share h1 {
    color: #222;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 20px 0
}

.fancybox-share p {
    margin: 0;
    padding: 0
}

.fancybox-share__button {
    border: 0;
    border-radius: 3px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    margin: 0 5px 10px 5px;
    min-width: 130px;
    padding: 0 15px;
    text-decoration: none;
    transition: all .2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap
}

.fancybox-share__button:link,
.fancybox-share__button:visited {
    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 {
    height: 25px;
    margin-right: 7px;
    position: relative;
    top: -1px;
    vertical-align: middle;
    width: 25px
}

.fancybox-share__button svg path {
    fill: #fff
}

.fancybox-share__input {
    background: 0 0;
    border: 0;
    border-bottom: 1px solid #d7d7d7;
    border-radius: 0;
    color: #5d5b5b;
    font-size: 14px;
    margin: 10px 0 0 0;
    outline: 0;
    padding: 10px 15px;
    width: 100%
}

.fancybox-thumbs {
    background: #ddd;
    bottom: 0;
    display: none;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    padding: 2px 2px 4px 2px;
    position: absolute;
    right: 0;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    width: 212px;
    z-index: 99995
}

.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 {
    font-size: 0;
    height: 100%;
    list-style: none;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    position: absolute;
    position: relative;
    white-space: nowrap;
    width: 100%
}

.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 {
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3)
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 10px
}

.fancybox-thumbs__list a {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: rgba(0, 0, 0, .1);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    float: left;
    height: 75px;
    margin: 2px;
    max-height: calc(100% - 8px);
    max-width: calc(50% - 4px);
    outline: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    width: 100px
}

.fancybox-thumbs__list a::before {
    border: 6px solid #eb6629;
    bottom: 0;
    content: '';
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all .2s cubic-bezier(.25, .46, .45, .94);
    z-index: 99991
}

.fancybox-thumbs__list a:focus::before {
    opacity: .5
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
    opacity: 1
}

@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)
    }
}

.fancybox-button--thumbs {
    display: none !important
}

#noty_layout__bottom,
#noty_layout__bottomCenter,
#noty_layout__bottomLeft,
#noty_layout__bottomRight,
#noty_layout__center,
#noty_layout__centerLeft,
#noty_layout__centerRight,
#noty_layout__top,
#noty_layout__topCenter,
#noty_layout__topLeft,
#noty_layout__topRight,
.noty_layout_mixin {
    position: fixed;
    margin: 0;
    padding: 0;
    z-index: 9999999;
    -webkit-transform: translateZ(0) scale(1, 1);
    transform: translateZ(0) scale(1, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: subpixel-antialiased;
    filter: blur(0);
    -webkit-filter: blur(0);
    max-width: 90%
}

#noty_layout__top {
    top: 0;
    left: 5%;
    width: 90%
}

#noty_layout__topLeft {
    top: 20px;
    left: 20px;
    width: 325px
}

#noty_layout__topCenter {
    top: 5%;
    left: 50%;
    width: 325px;
    -webkit-transform: translate(-webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
    transform: translate(calc(-50% - .5px)) translateZ(0) scale(1, 1)
}

#noty_layout__topRight {
    top: 20px;
    right: 20px;
    width: 325px
}

#noty_layout__bottom {
    bottom: 0;
    left: 5%;
    width: 90%
}

#noty_layout__bottomLeft {
    bottom: 20px;
    left: 20px;
    width: 325px
}

#noty_layout__bottomCenter {
    bottom: 5%;
    left: 50%;
    width: 325px;
    -webkit-transform: translate(-webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
    transform: translate(calc(-50% - .5px)) translateZ(0) scale(1, 1)
}

#noty_layout__bottomRight {
    bottom: 20px;
    right: 20px;
    width: 325px
}

#noty_layout__center {
    top: 50%;
    left: 50%;
    width: 325px;
    -webkit-transform: translate(-webkit-calc(-50% - .5px), -webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
    transform: translate(calc(-50% - .5px), calc(-50% - .5px)) translateZ(0) scale(1, 1)
}

#noty_layout__centerLeft {
    top: 50%;
    left: 20px;
    width: 325px;
    -webkit-transform: translate(0, -webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
    transform: translate(0, calc(-50% - .5px)) translateZ(0) scale(1, 1)
}

#noty_layout__centerRight {
    top: 50%;
    right: 20px;
    width: 325px;
    -webkit-transform: translate(0, -webkit-calc(-50% - .5px)) translateZ(0) scale(1, 1);
    transform: translate(0, calc(-50% - .5px)) translateZ(0) scale(1, 1)
}

.noty_progressbar {
    display: none
}

.noty_has_timeout .noty_progressbar {
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background-color: #646464;
    opacity: .2
}

.noty_bar {
    -webkit-backface-visibility: hidden;
    -webkit-transform: translate(0, 0) translateZ(0) scale(1, 1);
    -ms-transform: translate(0, 0) scale(1, 1);
    transform: translate(0, 0) scale(1, 1);
    -webkit-font-smoothing: subpixel-antialiased;
    overflow: hidden
}

.noty_effects_open {
    opacity: 0;
    -webkit-transform: translate(50%);
    -ms-transform: translate(50%);
    transform: translate(50%);
    -webkit-animation: noty_anim_in .5s cubic-bezier(.68, -.55, .265, 1.55);
    animation: noty_anim_in .5s cubic-bezier(.68, -.55, .265, 1.55);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

.noty_effects_close {
    -webkit-animation: noty_anim_out .5s cubic-bezier(.68, -.55, .265, 1.55);
    animation: noty_anim_out .5s cubic-bezier(.68, -.55, .265, 1.55);
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

.noty_fix_effects_height {
    -webkit-animation: noty_anim_height 75ms ease-out;
    animation: noty_anim_height 75ms ease-out
}

.noty_close_with_click {
    cursor: pointer
}

.noty_close_button {
    position: absolute;
    top: 2px;
    right: 2px;
    font-weight: 700;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    background-color: rgba(0, 0, 0, .05);
    border-radius: 2px;
    cursor: pointer;
    -webkit-transition: all .2s ease-out;
    transition: all .2s ease-out
}

.noty_close_button:hover {
    background-color: rgba(0, 0, 0, .1)
}

.noty_modal {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 10000;
    opacity: .3;
    left: 0;
    top: 0
}

.noty_modal.noty_modal_open {
    opacity: 0;
    -webkit-animation: noty_modal_in .3s ease-out;
    animation: noty_modal_in .3s ease-out
}

.noty_modal.noty_modal_close {
    -webkit-animation: noty_modal_out .3s ease-out;
    animation: noty_modal_out .3s ease-out;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards
}

@-webkit-keyframes noty_modal_in {
    100% {
        opacity: .3
    }
}

@keyframes noty_modal_in {
    100% {
        opacity: .3
    }
}

@-webkit-keyframes noty_modal_out {
    100% {
        opacity: 0
    }
}

@keyframes noty_modal_out {
    100% {
        opacity: 0
    }
}

@keyframes noty_modal_out {
    100% {
        opacity: 0
    }
}

@-webkit-keyframes noty_anim_in {
    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
        opacity: 1
    }
}

@keyframes noty_anim_in {
    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
        opacity: 1
    }
}

@-webkit-keyframes noty_anim_out {
    100% {
        -webkit-transform: translate(50%);
        transform: translate(50%);
        opacity: 0
    }
}

@keyframes noty_anim_out {
    100% {
        -webkit-transform: translate(50%);
        transform: translate(50%);
        opacity: 0
    }
}

@-webkit-keyframes noty_anim_height {
    100% {
        height: 0
    }
}

@keyframes noty_anim_height {
    100% {
        height: 0
    }
}

.noty_theme__relax.noty_bar {
    margin: 4px 0;
    overflow: hidden;
    border-radius: 2px;
    position: relative
}

.noty_theme__relax.noty_bar .noty_body {
    padding: 10px
}

.noty_theme__relax.noty_bar .noty_buttons {
    border-top: 1px solid #e7e7e7;
    padding: 5px 10px
}

.noty_theme__relax.noty_type__alert,
.noty_theme__relax.noty_type__notification {
    background-color: #fff;
    border: 1px solid #dedede;
    color: #444
}

.noty_theme__relax.noty_type__warning {
    background-color: #ffeaa8;
    border: 1px solid #ffc237;
    color: #826200
}

.noty_theme__relax.noty_type__warning .noty_buttons {
    border-color: #dfaa30
}

.noty_theme__relax.noty_type__error {
    background-color: #ff8181;
    border: 1px solid #e25353;
    color: #fff
}

.noty_theme__relax.noty_type__error .noty_buttons {
    border-color: #8b0000
}

.noty_theme__relax.noty_type__info,
.noty_theme__relax.noty_type__information {
    background-color: #78c5e7;
    border: 1px solid #3badd6;
    color: #fff
}

.noty_theme__relax.noty_type__info .noty_buttons,
.noty_theme__relax.noty_type__information .noty_buttons {
    border-color: #0b90c4
}

.noty_theme__relax.noty_type__success {
    background-color: #bcf5bc;
    border: 1px solid #7cdd77;
    color: #006400
}

.noty_theme__relax.noty_type__success .noty_buttons {
    border-color: #50c24e
}

.noty_theme__metroui.noty_bar {
    margin: 4px 0;
    overflow: hidden;
    position: relative;
    box-shadow: rgba(0, 0, 0, .298039) 0 0 5px 0
}

.noty_theme__metroui.noty_bar .noty_progressbar {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background-color: #000;
    opacity: .2
}

.noty_theme__metroui.noty_bar .noty_body {
    padding: 1.25em;
    font-size: 14px
}

.noty_theme__metroui.noty_bar .noty_buttons {
    padding: 0 10px .5em 10px
}

.noty_theme__metroui.noty_type__alert,
.noty_theme__metroui.noty_type__notification {
    background-color: #fff;
    color: #1d1d1d
}

.noty_theme__metroui.noty_type__warning {
    background-color: #fa6800;
    color: #fff
}

.noty_theme__metroui.noty_type__error {
    background-color: #ce352c;
    color: #fff
}

.noty_theme__metroui.noty_type__info,
.noty_theme__metroui.noty_type__information {
    background-color: #1ba1e2;
    color: #fff
}

.noty_theme__metroui.noty_type__success {
    background-color: #60a917;
    color: #fff
}

.noty_theme__mint.noty_bar {
    margin: 4px 0;
    overflow: hidden;
    border-radius: 2px;
    position: relative
}

.noty_theme__mint.noty_bar .noty_body {
    padding: 10px;
    font-size: 14px
}

.noty_theme__mint.noty_bar .noty_buttons {
    padding: 10px
}

.noty_theme__mint.noty_type__alert,
.noty_theme__mint.noty_type__notification {
    background-color: #fff;
    border-bottom: 1px solid #d1d1d1;
    color: #2f2f2f
}

.noty_theme__mint.noty_type__warning {
    background-color: #ffae42;
    border-bottom: 1px solid #e89f3c;
    color: #fff
}

.noty_theme__mint.noty_type__error {
    background-color: #de636f;
    border-bottom: 1px solid #ca5a65;
    color: #fff
}

.noty_theme__mint.noty_type__info,
.noty_theme__mint.noty_type__information {
    background-color: #7f7eff;
    border-bottom: 1px solid #7473e8;
    color: #fff
}

.noty_theme__mint.noty_type__success {
    background-color: #afc765;
    border-bottom: 1px solid #a0b55c;
    color: #fff
}

.noty_theme__sunset.noty_bar {
    margin: 4px 0;
    overflow: hidden;
    border-radius: 2px;
    position: relative
}

.noty_theme__sunset.noty_bar .noty_body {
    padding: 10px;
    font-size: 14px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .1)
}

.noty_theme__sunset.noty_bar .noty_buttons {
    padding: 10px
}

.noty_theme__sunset.noty_type__alert,
.noty_theme__sunset.noty_type__notification {
    background-color: #073b4c;
    color: #fff
}

.noty_theme__sunset.noty_type__alert .noty_progressbar,
.noty_theme__sunset.noty_type__notification .noty_progressbar {
    background-color: #fff
}

.noty_theme__sunset.noty_type__warning {
    background-color: #ffd166;
    color: #fff
}

.noty_theme__sunset.noty_type__error {
    background-color: #ef476f;
    color: #fff
}

.noty_theme__sunset.noty_type__error .noty_progressbar {
    opacity: .4
}

.noty_theme__sunset.noty_type__info,
.noty_theme__sunset.noty_type__information {
    background-color: #118ab2;
    color: #fff
}

.noty_theme__sunset.noty_type__info .noty_progressbar,
.noty_theme__sunset.noty_type__information .noty_progressbar {
    opacity: .6
}

.noty_theme__sunset.noty_type__success {
    background-color: #06d6a0;
    color: #fff
}

.noty_theme__bootstrap-v3.noty_bar {
    margin: 4px 0;
    overflow: hidden;
    position: relative;
    border: 1px solid transparent;
    border-radius: 4px
}

.noty_theme__bootstrap-v3.noty_bar .noty_body {
    padding: 15px
}

.noty_theme__bootstrap-v3.noty_bar .noty_buttons {
    padding: 10px
}

.noty_theme__bootstrap-v3.noty_bar .noty_close_button {
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .2;
    background: 0 0
}

.noty_theme__bootstrap-v3.noty_bar .noty_close_button:hover {
    background: 0 0;
    text-decoration: none;
    cursor: pointer;
    opacity: .5
}

.noty_theme__bootstrap-v3.noty_type__alert,
.noty_theme__bootstrap-v3.noty_type__notification {
    background-color: #fff;
    color: inherit
}

.noty_theme__bootstrap-v3.noty_type__warning {
    background-color: #fcf8e3;
    color: #8a6d3b;
    border-color: #faebcc
}

.noty_theme__bootstrap-v3.noty_type__error {
    background-color: #f2dede;
    color: #a94442;
    border-color: #ebccd1
}

.noty_theme__bootstrap-v3.noty_type__info,
.noty_theme__bootstrap-v3.noty_type__information {
    background-color: #d9edf7;
    color: #31708f;
    border-color: #bce8f1
}

.noty_theme__bootstrap-v3.noty_type__success {
    background-color: #dff0d8;
    color: #3c763d;
    border-color: #d6e9c6
}

.noty_theme__bootstrap-v4.noty_bar {
    margin: 4px 0;
    overflow: hidden;
    position: relative;
    border: 1px solid transparent;
    border-radius: .25rem
}

.noty_theme__bootstrap-v4.noty_bar .noty_body {
    padding: .75rem 1.25rem
}

.noty_theme__bootstrap-v4.noty_bar .noty_buttons {
    padding: 10px
}

.noty_theme__bootstrap-v4.noty_bar .noty_close_button {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
    background: 0 0
}

.noty_theme__bootstrap-v4.noty_bar .noty_close_button:hover {
    background: 0 0;
    text-decoration: none;
    cursor: pointer;
    opacity: .75
}

.noty_theme__bootstrap-v4.noty_type__alert,
.noty_theme__bootstrap-v4.noty_type__notification {
    background-color: #fff;
    color: inherit
}

.noty_theme__bootstrap-v4.noty_type__warning {
    background-color: #fcf8e3;
    color: #8a6d3b;
    border-color: #faebcc
}

.noty_theme__bootstrap-v4.noty_type__error {
    background-color: #f2dede;
    color: #a94442;
    border-color: #ebccd1
}

.noty_theme__bootstrap-v4.noty_type__info,
.noty_theme__bootstrap-v4.noty_type__information {
    background-color: #d9edf7;
    color: #31708f;
    border-color: #bce8f1
}

.noty_theme__bootstrap-v4.noty_type__success {
    background-color: #dff0d8;
    color: #3c763d;
    border-color: #d6e9c6
}

.noty_theme__semanticui.noty_bar {
    margin: 4px 0;
    overflow: hidden;
    position: relative;
    border: 1px solid transparent;
    font-size: 1em;
    border-radius: .28571429rem;
    box-shadow: 0 0 0 1px rgba(34, 36, 38, .22) inset, 0 0 0 0 transparent
}

.noty_theme__semanticui.noty_bar .noty_body {
    padding: 1em 1.5em;
    line-height: 1.4285em
}

.noty_theme__semanticui.noty_bar .noty_buttons {
    padding: 10px
}

.noty_theme__semanticui.noty_type__alert,
.noty_theme__semanticui.noty_type__notification {
    background-color: #f8f8f9;
    color: rgba(0, 0, 0, .87)
}

.noty_theme__semanticui.noty_type__warning {
    background-color: #fffaf3;
    color: #573a08;
    box-shadow: 0 0 0 1px #c9ba9b inset, 0 0 0 0 transparent
}

.noty_theme__semanticui.noty_type__error {
    background-color: #fff6f6;
    color: #9f3a38;
    box-shadow: 0 0 0 1px #e0b4b4 inset, 0 0 0 0 transparent
}

.noty_theme__semanticui.noty_type__info,
.noty_theme__semanticui.noty_type__information {
    background-color: #f8ffff;
    color: #276f86;
    box-shadow: 0 0 0 1px #a9d5de inset, 0 0 0 0 transparent
}

.noty_theme__semanticui.noty_type__success {
    background-color: #fcfff5;
    color: #2c662d;
    box-shadow: 0 0 0 1px #a3c293 inset, 0 0 0 0 transparent
}

.noty_theme__nest.noty_bar {
    margin: 0 0 15px 0;
    overflow: hidden;
    border-radius: 2px;
    position: relative;
    box-shadow: rgba(0, 0, 0, .098039) 5px 4px 10px 0
}

.noty_theme__nest.noty_bar .noty_body {
    padding: 10px;
    font-size: 14px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, .1)
}

.noty_theme__nest.noty_bar .noty_buttons {
    padding: 10px
}

.noty_layout .noty_theme__nest.noty_bar {
    z-index: 5
}

.noty_layout .noty_theme__nest.noty_bar:nth-child(2) {
    position: absolute;
    top: 0;
    margin-top: 4px;
    margin-right: -4px;
    margin-left: 4px;
    z-index: 4;
    width: 100%
}

.noty_layout .noty_theme__nest.noty_bar:nth-child(3) {
    position: absolute;
    top: 0;
    margin-top: 8px;
    margin-right: -8px;
    margin-left: 8px;
    z-index: 3;
    width: 100%
}

.noty_layout .noty_theme__nest.noty_bar:nth-child(4) {
    position: absolute;
    top: 0;
    margin-top: 12px;
    margin-right: -12px;
    margin-left: 12px;
    z-index: 2;
    width: 100%
}

.noty_layout .noty_theme__nest.noty_bar:nth-child(5) {
    position: absolute;
    top: 0;
    margin-top: 16px;
    margin-right: -16px;
    margin-left: 16px;
    z-index: 1;
    width: 100%
}

.noty_layout .noty_theme__nest.noty_bar:nth-child(n+6) {
    position: absolute;
    top: 0;
    margin-top: 20px;
    margin-right: -20px;
    margin-left: 20px;
    z-index: -1;
    width: 100%
}

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(2),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(2) {
    margin-top: 4px;
    margin-left: -4px;
    margin-right: 4px
}

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(3),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(3) {
    margin-top: 8px;
    margin-left: -8px;
    margin-right: 8px
}

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(4),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(4) {
    margin-top: 12px;
    margin-left: -12px;
    margin-right: 12px
}

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(5),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(5) {
    margin-top: 16px;
    margin-left: -16px;
    margin-right: 16px
}

#noty_layout__bottomLeft .noty_theme__nest.noty_bar:nth-child(n+6),
#noty_layout__topLeft .noty_theme__nest.noty_bar:nth-child(n+6) {
    margin-top: 20px;
    margin-left: -20px;
    margin-right: 20px
}

.noty_theme__nest.noty_type__alert,
.noty_theme__nest.noty_type__notification {
    background-color: #073b4c;
    color: #fff
}

.noty_theme__nest.noty_type__alert .noty_progressbar,
.noty_theme__nest.noty_type__notification .noty_progressbar {
    background-color: #fff
}

.noty_theme__nest.noty_type__warning {
    background-color: #ffd166;
    color: #fff
}

.noty_theme__nest.noty_type__error {
    background-color: #ef476f;
    color: #fff
}

.noty_theme__nest.noty_type__error .noty_progressbar {
    opacity: .4
}

.noty_theme__nest.noty_type__info,
.noty_theme__nest.noty_type__information {
    background-color: #118ab2;
    color: #fff
}

.noty_theme__nest.noty_type__info .noty_progressbar,
.noty_theme__nest.noty_type__information .noty_progressbar {
    opacity: .6
}

.noty_theme__nest.noty_type__success {
    background-color: #06d6a0;
    color: #fff
}