html,
body {
    height: 100%;
    color: #353535;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-wrap: break-word;
}

body {
    font-family: "Proxima Nova", "Times New Roman", serif;
}

input,
button,
select {
    outline: none;
}

select {
    cursor: pointer;
}

h1 {
    margin: 20px 0;
    color: black;
}

h2, h3, h4, h5 {
    margin: 0 0 20px 0;
    color: black;
}

a, pre {
    color: inherit;
    font: inherit;
}

pre {
    white-space: normal;
}

img {
    max-width: 100%;
}

::placeholder {
    font-family: inherit;
    color: inherit;
}

*::-webkit-scrollbar-track {
    background-color: #E4E4E4;
}

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

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

:disabled {
    cursor: not-allowed;
}

body.menu__open {
    overflow-y: hidden;
}

.page__wrap {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.page__wrap h1 {
    font-size: 26px;
    margin: 0 0 20px 0;
}

.page__wrap h2 {
    font-size: 22px;
}

.content {
    flex: 1;
    margin: 85px 0;
}

.container {
    width: 1325px;
    margin: 0 auto;
}

.v-align-middle {
    vertical-align: middle;
}

.site-button {
    border: 0;
    border-radius: 5px;
    background-color: #ffc219;
    color: white;
    font-size: 18px;
    height: 40px;
    cursor: pointer;
    outline: none;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-button.gray {
    background-color: #cfcfcf;
}

.site-button[disabled] {
    pointer-events: none;
    cursor: not-allowed;
}

.read-more {
    overflow: hidden;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-left {
    text-align: left !important;
}

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

.pagination {
    list-style-type: none;
    display: flex;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    flex-wrap: wrap;
}

.pagination li {
    padding: 0 10px;
}

.pagination li a {
    text-decoration: none;
}

.pagination li.disabled {
    color: #b7b7b7;
}

.pagination li.active a {
    color: #ffc219;
}

.tabs__content {
    display: none;
}

.tabs__content.active {
    display: block;
}

.tabs__caption {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
}

.tabs__caption li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 50px;
    border-radius: 4px;
    margin: 0 10px 0 0;
    cursor: pointer;
    font-size: 22px;
    color: #b7b7b7;
    font-weight: 600;
}

.tabs__caption li.active {
    color: inherit;
    font-weight: bold;
}

.owl-carousel .owl-nav button[class*=owl-] {
    width: 40px;
    height: 40px;
    position: absolute;
    display: block;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 20px;
    border: 1px solid white;
    background-color: rgba(0, 0, 0, .2);
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 5px;
}

.owl-carousel .owl-nav button[class*=owl-].owl-prev {
    left: 10px;
    background-image: url(../img/gallery/prev.svg);
}

.owl-carousel .owl-nav button[class*=owl-].owl-next {
    right: 10px;
    background-image: url(../img/gallery/next.svg);
}

.owl-carousel .owl-nav button[class*=owl-].owl-prev:hover,
.owl-carousel .owl-nav button[class*=owl-].owl-next:hover {
    background-color: rgba(0, 0, 0, .6);
    background-repeat: no-repeat;
    background-position: center;
}

.slider__top .owl-carousel {
    position: relative;
}

.slider__top .owl-nav {
    position: absolute;
    width: 100%;
    justify-content: flex-end;
    display: flex;
    margin: 0;
    gap: 20px;
    padding-right: 50px;
    bottom: 20px;
}

.slider__top .owl-carousel .owl-nav button[class*=owl-] {
    position: static;
    margin: 0;
}

@media (max-width: 767px) {
    .slider__top .owl-nav {
        gap: 12px;
        padding-right: 26px;
        bottom: 10px;
    }
    .slider__top .owl-carousel .owl-nav button[class*=owl-] {
        width: 26px;
        height: 26px;
        border-radius: 13px;
        background-size: 30%;
    }
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

.rich-text {
    word-break: normal;
    line-height: 1.4em;
}

.rich-text h1 {
    margin: 30px 0 35px 0;
    text-align: left;
}

.rich-text h2 {
    margin: 0 0 20px 0;
    text-align: left;
}

.rich-text h3,
.rich-text h4,
.rich-text h5 {
    margin: 0 0 12px 0;
}

.rich-text p {
    margin-bottom: 10px;
}

.rich-text ul,
.rich-text ol {
    padding: 0 10px 10px 20px;
    display: flex;
    flex-direction: column;
}

.rich-text table {
    border-collapse: collapse;
    margin-bottom: 10px;
}

.rich-text th {
    text-align: center;
    font-weight: bold;
}

.rich-text th,
.rich-text td {
    padding: 10px 5px;
    border: 1px solid #c5c5c5;
}

.rich-text pre {
    margin-bottom: 10px;
}

.rich-text .float_left {
    float: left;
    margin-right: 10px;
}

.rich-text .float_right {
    float: right;
    margin-left: 10px;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 20px;
}

.table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}

.table td,
.table th {
    padding: 15px 8px;
    border: 1px solid #c5c5c5;
    text-align: center;
}

.breadcrumb {
    margin-bottom: 20px;
}

.scroller {
    display: none;
    width: 40px;
    height: 40px;
    background: url(../img/scroller.png) no-repeat center;
    position: fixed;
    bottom: 40px;
    right: 2%;
    z-index: 100;
    cursor: pointer;
    outline: none;
    border: none;
}

.text-bold {
    font-weight: 800;
}

.text-red {
    color: #ef5858;
}

.text-blue {
    color: #05729b;
}

.text-semi-bold {
    font-weight: 600;
}

.text-normal {
    font-weight: 400;
}

.text-italic {
    font-style: italic;
}

.google-map {
    height: 650px;
}

.date-picker-wrapper .month-wrapper table .day.inactive {
    color: #ccc !important;
}

.day.toMonth.active.valid {
    font-weight: 600;
}

button[disabled] {
    cursor: not-allowed;
}

[data-href] {
    cursor: pointer;
}

.hidden {
    display: none !important;
}

.hidden-visibility {
    visibility: hidden !important;
}

.relative {
    position: relative;
}

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

.text-black {
    color: #000;
}

.copy-btn {
    border: 1px solid #c5c5c5;
    background-color: #edeaea;
    color: #010101;
    border-radius: 3px;
    outline: none;
    text-align: center;
    padding: 5px 10px;
    cursor: pointer;
}

.copy-btn:hover {
    background-color: #ccc;
}

.relative {
    position: relative;
}

.scroll-anchor {
    position: absolute;
    top: -80px;
    left: 0;
    z-index: -1;
}

.text-underline {
    text-decoration: underline !important;
}

.max-w-300 {
    max-width: 300px !important;
}

.mr-5 {
    margin-right: 5px;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.flex-1 {
    flex: 1;
}

.mb-50 {
    margin-bottom: 50px !important;
}

@media (max-width: 1349px) {
    .container {
        width: 1200px;
        padding: 0 15px;
    }
}

@media (max-width: 1199px) {
    .container {
        width: 100%;
    }
    .page__wrap h1 {
        font-size: 24px;
    }

    .page__wrap h2 {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .google-map {
        height: 435px;
    }
    .tabs__caption {
        margin-bottom: 10px;
    }
    .tabs__caption li {
        font-size: 17px;
        height: auto;
        line-height: 1.5em;
    }
}
