@charset "utf-8";

/* ===== Modern Reset ===== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

*:focus {
  outline: none;
}

html {
    height: 100%;
    -webkit-text-size-adjust: 100%;
    text-rendering: optimizeLegibility;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    line-height: 1;
    text-rendering: optimizeSpeed;
    overflow-x: hidden;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

strong{
    font-weight: bold;
}
picture{
    display:block;
}

picture img{
    width:100%;
    display:block;
}
/* ===== /. Modern Reset ===== */

.main-content{
    flex: 1 0 auto;
    width: 100%;
    overflow: hidden;
}
.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left-xs {
    text-align: left;
}

.text-center-xs {
    text-align: center;
}

.text-right-xs {
    text-align: right;
}

@media (min-width: 768px) {
    .text-left-sm {
        text-align: left;
    }

    .text-center-sm {
        text-align: center;
    }

    .text-right-sm {
        text-align: right;
    }
}

@media (min-width: 992px) {
    .text-left-md {
        text-align: left;
    }

    .text-center-md {
        text-align: center;
    }

    .text-right-md {
        text-align: right;
    }
}

@media (min-width: 1360px) {
    .container {
        width: 1330px;
    }

    .text-left-lg {
        text-align: left;
    }

    .text-center-lg {
        text-align: center;
    }

    .text-right-lg {
        text-align: right;
    }
}

.container-fluid {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}
.form-group .iti{
    display: block;
}
.form-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.form-row + .form-row{
    margin-top: 15px;
}
.form-row .form-group{
    width: calc(50% - 7px);
}
@media(max-width: 599px){
    .form-row .form-group{
        width: 100%;
    }
}

.form-control {
    display: block;
    width: 100%;
    height: 62px;
    padding: 0 17px;
    border: 1px solid color-mix(in srgb, var(--accent-color1) 30%, transparent);
    background: color-mix(in srgb, var(--accent-color1) 2%, transparent);
    color: #000;
    text-shadow: none;
    font-size: 14px;
    line-height: 1.42857143;
}

.form-control:focus {
    background: #fff;
    border-color: color-mix(in srgb, var(--accent-color1) 100%, transparent);
}

.form-control.error {
    border-color: #FF1A00;
}

.form-control::-moz-placeholder {
    color: #000;
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: #000;
}

.form-control::-webkit-input-placeholder {
    color: #000;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
    cursor: not-allowed;
    background-color: #eee;
    opacity: 1;
}

textarea.form-control {
    height: auto;
    max-width: 100%;
    min-height: 115px;
    resize: none;
    padding-top: 10px;
}

input:focus::-moz-placeholder {
    opacity: 0;
}

input:focus:-ms-input-placeholder {
    opacity: 0;
}

input:focus::-webkit-input-placeholder {
    opacity: 0;
}

textarea:focus::-moz-placeholder {
    opacity: 0;
}

textarea:focus:-ms-input-placeholder {
    opacity: 0;
}

textarea:focus::-webkit-input-placeholder {
    opacity: 0;
}

.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
    display: none !important;
}

.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
    display: none !important;
}

@media (max-width: 767px) {
    .visible-xs,
    .visible-xs-block {
        display: block !important;
    }
    .visible-xs-inline {
        display: inline !important;
    }
    .visible-xs-inline-block {
        display: inline-block !important;
    }
    .hidden-xs {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm,
    .visible-sm-block{
        display: block !important;
    }
    .visible-sm-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 992px) and (max-width: 1359px) {
    .visible-md,
    .visible-md-block{
        display: block !important;
    }
    .visible-md-inline {
        display: inline !important;
    }
    .visible-md-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 1360px) {
    .visible-lg,
    .visible-lg-block{
        display: block !important;
    }
    .visible-lg-inline {
        display: inline !important;
    }
    .visible-lg-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {
        display: none !important;
    }
}

@media (min-width: 992px) and (max-width: 1359px) {
    .hidden-md {
        display: none !important;
    }
}

@media (min-width: 1360px) {
    .hidden-lg {
        display: none !important;
    }
}

.push1 {
    height: 1px;
}

.push2 {
    height: 2px;
}

.push3 {
    height: 3px;
}

.push4 {
    height: 4px;
}

.push5 {
    height: 5px;
}

.push6 {
    height: 6px;
}

.push7 {
    height: 7px;
}

.push8 {
    height: 8px;
}

.push9 {
    height: 9px;
}

.push10 {
    height: 10px;
}

.push11 {
    height: 11px;
}

.push12 {
    height: 12px;
}

.push13 {
    height: 13px;
}

.push14 {
    height: 14px;
}

.push15 {
    height: 15px;
}

.push16 {
    height: 16px;
}

.push17 {
    height: 17px;
}

.push18 {
    height: 18px;
}

.push19 {
    height: 19px;
}

.push20 {
    height: 20px;
}

.push25 {
    height: 25px;
}

.push30 {
    height: 30px;
}

.push35 {
    height: 35px;
}

.push40 {
    height: 40px;
}

.push45 {
    height: 45px;
}

.push50 {
    height: 50px;
}

.push55 {
    height: 55px;
}

.push60 {
    height: 60px;
}

.push70 {
    height: 70px;
}

.push80 {
    height: 80px;
}

.push90 {
    height: 90px;
}

.push100 {
    height: 100px;
}

.f8 {
    font-size: 8px;
}

.f9 {
    font-size: 9px;
}

.f10 {
    font-size: 10px;
}

.f11 {
    font-size: 11px;
}

.f12 {
    font-size: 12px;
}

.f13 {
    font-size: 13px;
}

.f14 {
    font-size: 14px;
}

.f15 {
    font-size: 15px;
}

.f16 {
    font-size: 16px;
}

.f17 {
    font-size: 17px;
}

.f18 {
    font-size: 18px;
}

.f19 {
    font-size: 19px;
}

.f20 {
    font-size: 20px;
}

.f21 {
    font-size: 21px;
}

.f22 {
    font-size: 22px;
}

.f24 {
    font-size: 24px;
}

.f26 {
    font-size: 26px;
}

.f28 {
    font-size: 28px;
}

.f30 {
    font-size: 30px;
}

.f34 {
    font-size: 34px;
}

.f36 {
    font-size: 36px;
}
.strike {
    text-decoration: line-through;
}

:invalid {
    box-shadow: none;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.upper {
    text-transform: uppercase;
}

.jgrowlHide #jGrowl {
    display: none !important;
}

a.absolute {
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    text-indent: -999999px;
    overflow: hidden;
}

.red {
    color: #FF4632;
}

.white {
    color: #fff;
}

.black {
    color: #000;
}

.gray-bg{
    background-color: var(--bg-color1);
}

p {
    margin-bottom: 20px;
}

.content.f20 p{
    margin-bottom: 40px;
}

@media(max-width: 767px){
    .content.f20{
        font-size: 16px;
    }
    .content.f20 p{
        margin-bottom: 30px;
    }
}

.full-width{
    width: 100%;
}
.section{
    padding: 150px 0 130px;
}
.pt0{
    padding-top: 0;
}
.pb0{
    padding-bottom: 0;
}

.section-header{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.section-header.width-more .col1{
    width: calc(100% - 330px);
    padding-right: 40px;
}
.section-header.width-more .col2{
    width: 330px;
    display: flex;
    justify-content: flex-end;
}
.section-more{
    display: inline-flex;
    align-items: center;
    margin-bottom: 30px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: bold;
    text-transform: uppercase;
}
.section-more-value{
    min-width: calc(100% - 75px);
    padding-right: 25px;
}
.section-more-arrow{
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: color-mix(in srgb, var(--accent-color1) 10%, transparent);
    transition: all ease-out 300ms;
}
.section-more:hover .section-more-arrow{
    transform: rotate(45deg);
}

.section-header.width-arrows .col1{
    width: calc(100% - 140px);
    padding-right: 40px;
}
.section-header.width-arrows .col2{
    width: 140px;
    display: flex;
    justify-content: flex-end;
}
.section-arrows{
    margin-bottom: 30px;
}
.section-arrows .carousel-nav-btn{
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 10px;
    background: color-mix(in srgb, var(--accent-color1) 10%, transparent);
    transition: all ease-out 300ms;
}
.section-arrows .carousel-nav-btn + .carousel-nav-btn{
    margin-left: 15px;
}
.section-arrows .carousel-nav-btn path{
    transition: all ease-out 300ms;
}

.section-arrows .carousel-nav-btn:not(.swiper-button-disabled):hover{
    background: var(--accent-color1);
    cursor: pointer;
}
.section-arrows .carousel-nav-btn:not(.swiper-button-disabled):hover path{
    stroke: var(--accent-font-color);
}

@media(max-width: 1359px){
    .section{
        padding: 11vw 0 calc(11vw - 20px);
    }
    .pt0{
        padding-top: 0;
    }
    .pb0{
        padding-bottom: 0;
    }
}
@media(max-width: 991px){
    .section-header.width-more .col1{
        width: 100%;
        padding-right: 0;
    }
    .section-header.width-more .col2{
        display: none;
    }
    .section-header{
        margin-bottom: 0;
    }
}
@media(max-width: 768px){
    .section-header.width-arrows .col1{
        width: 100%;
        padding-right: 0;
    }
    .section-header.width-arrows .col2{
        display: none;
    }
}
@media(max-width: 499px){
    .section{
        padding: 60px 0;
    }
    .pt0{
        padding-top: 0;
    }
    .pb0{
        padding-bottom: 0;
    }
}
/* Fancybox */
.fancybox_modal {
    display: none;
    width: 560px;
    max-width: 100%;
    padding: 30px;
    border-radius: 10px;
}
.fancybox_modal_inner{
    background: #fff;
    padding: 35px 25px;
    font-size: 14px;
}
.fancybox_modal.fancybox_modal_big{
    width: 900px;
}
@media(min-width: 990px){
    .fancybox_modal.fancybox_modal_big{
        width: 960px;
    }
    .fancybox_modal.fancybox_modal_big .fancybox_modal_inner{
        padding: 50px;
    }
}

#responseMessage .fancybox_modal-content.error {
    color: #FF4632;
}
/* /. Fancybox */

@media(min-width: 992px) {

    /* Custom chrome scroll */
    ::-webkit-resizer {
        width: 10px;
        height: 1px;
    }

    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-button {
        width: 10px;
        height: 0px;
    }

    ::-webkit-scrollbar-thumb {
        -webkit-border-radius: 0px;
        border-radius: 0px;
    }

    ::-webkit-scrollbar-track {
        background-color: #2C2C2C;
    }

    ::-webkit-scrollbar-thumb {
        background-color: var(--accent-color1);
    }

    /* /. Custom chrome scroll */
}

/* Agreement */
.agreement {
    position: relative;
    margin-top: 30px;
    font-size: 10px;
    line-height: 1.3;
}

.agreement input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.agreement label {
    padding-left: 32px;
    display: inline-block;
    position: relative;
}

.agreement input+label:before {
    content: "";
    background-color: color-mix(in srgb, var(--accent-color1) 10%, transparent);
    display: block;
    position: absolute;
    width: 22px;
    height: 22px;
    top: -2px;
    left: 0px;
    border-radius: 5px;
}

.agreement input:checked+label:before {
    background: url(../images/checked.svg) 50% no-repeat color-mix(in srgb, var(--accent-color1) 10%, transparent);
}

.agreement input.error+label {
    color: red;
}
.agreement a{
    color: #000;
    text-decoration: underline;
}
.agreement a:hover{
    color: #000;
    text-decoration: none;
}
/* /. Agreement */


/* Custom check */
.custom_check {
    position: relative;
    margin-bottom: 10px;
}

.custom_check input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
}

.custom_check label {
    padding-left: 25px;
    display: inline-block;
    position: relative;
}

.custom_check input+label:before {
    background: url(../images/check-empty.svg) 0 0 no-repeat;
    content: "";
    display: block;
    position: absolute;
    width: 17px;
    height: 17px;
    top: 5px;
    left: 0px;
}

.custom_check input:checked+label:before {
    background: url(../images/checked.svg) 0 0 no-repeat;
}

.custom_check input.error+label {
    color: red;
}

/* /. Custom check */

#up {
    position: fixed;
    overflow: hidden;
    right: 15px;
    bottom: 60px;
    z-index: 100;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    background: var(--accent-color1);
    color: var(--accent-font-color);
    text-align: center;
    text-decoration: none;
    transition: .3s all ease-in-out;
    transform: translate3d(0, 150px, 0);
    cursor: pointer;
    border-radius: 3px;
}
#up svg {
    height: 20px;
}
#up.active {
    transform: translate3d(0, 0, 0);
}

#up:hover{
    filter: brightness(115%);
    color: var(--accent-font-color);
}

@media(max-width:767px) {
    #up {
        bottom: 15px;
    }
}

/* pagination */
.pagination{
    display: inline-block;
    padding: 0;
    margin: 0;
}
.pagination li:first-of-type:before{
    content:"";
    display: block;
    width: 100%;
    height: 30px;
}
.pagination li:last-of-type:after{
    content:"";
    display: block;
    width: 100%;
    height: 30px;
}
.pagination li{
    display: inline-block;
    margin-right: 3px;
}
.pagination li:last-of-type{
    margin-right: 0;
}
.pagination li > span{
    cursor: default;
}
.pagination li > a, 
.pagination li > span {
    display: inline-flex;
    position: relative;
    line-height: 1;
    color: #2c3238;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-bottom: 5px;
    margin-right: 2px;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}
.pagination li:first-child > a,
.pagination li:first-child > span{
    margin-left: 0;
}
.pagination li > a:hover{
    background-color: #EEEEEE;
}
.pagination .active > a, 
.pagination .active > a:hover{
    background-color: var(--accent-color1);
    color: #fff;
    border-color: var(--accent-color1);
    cursor: default;
}
/* /. pagination */

/* Map */
.map {
    height: 500px;
}

#mapexMap {
    height: 100%;
}

/* /. Map */

blockquote {
    border-left: 3px solid var(--accent-color1);
    margin-bottom: 30px;
    padding-left: 20px;
}

.content ul,
.content ol {
    margin-bottom: 15px;
}

.content ul{
    display: block;
    list-style-type: disc;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 20px;
    unicode-bidi: isolate;
}
.content ol{
    display: block;
    list-style-type: decimal;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 20px;
    unicode-bidi: isolate;
}


.content img{
    height: auto !important;
}
.table-wrapper {
    width: 100%;
    overflow: auto;
}
