/* GENERAL */
body {
    overflow-x: hidden;
    overflow-y: auto;
    font-family: var(--font-body);
    font-size: var(--ps-fs);
    line-height: var(--ps-lh);
    font-weight: var(--body-weight);
    color: var(--color-body);
}
a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}
a.link {
    position: relative;
    display: inline-block;
    color: var(--color-body);
}
a.link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-body);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 21px;
    margin-bottom: clamp(21px, calc((33 / 1600) * 100vw), 33px);
    font-family: var(--font-head);
    font-weight: var(--head-weight);
    color: var(--color-head);
}
h1, .h1s {
    font-size: var(--h1-fs);
    line-height: var(--h1-lh);
}
h2, .h2s {
    font-size: var(--h2-fs);
    line-height: var(--h2-lh);
}
h3, .h3s {
    font-size: var(--h3-fs);
    line-height: var(--h3-lh);
}
h4, .h4s {
    font-size: var(--h4-fs);
    line-height: var(--h4-lh);
}
h5, .h5s {
    font-size: var(--h5-fs);
    line-height: var(--h5-lh);
}
h6, .h6s {
    font-size: var(--h6-fs);
    line-height: var(--h6-lh);
}
p {
    margin-bottom: clamp(21px, calc((33 / 1600) * 100vw), 33px);
}
.st {
    margin-bottom: 0;
    color: var(--color-primary);
}
.button {
    position: relative;
    display: inline-block;
    padding: clamp(12px, calc((17 / 1600) * 100vw), 17px) clamp(30px, calc((39 / 1600) * 100vw), 39px);
    font-family: var(--font-head);
    font-weight: var(--head-weight);
    font-size: clamp(16px, calc((20 / 1600) * 100vw), 20px);
    line-height: clamp(18px, calc((22 / 1600) * 100vw), 22px);
    color: var(--color-light);
    border-radius: 30px;
    background-color: var(--color-primary);
    border: 2px solid var(--color-primary);
    transition: var(--transition);
    z-index: 2;
}
.button2 {
    position: relative;
    font-family: var(--font-head);
    font-weight: var(--head-weight);
    font-size: clamp(16px, calc((20 / 1600) * 100vw), 20px);
    line-height: clamp(18px, calc((22 / 1600) * 100vw), 22px);
    color: var(--color-light);
    transition: var(--transition);
}
.button3 {
    padding: clamp(12px, calc((19 / 1600) * 100vw), 19px) clamp(45px, calc((88 / 1600) * 100vw), 88px);
    background-color: var(--color-light);
    border-color: var(--color-light);
    color: var(--color5);
}
.button2::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-light);
    transform-origin: left;
    transition: var(--transition);
}
.button-arrow {
    font-family: var(--font-head);
    font-weight: var(--head-weight);
    font-size: clamp(16px, calc((20 / 1600) * 100vw), 20px);
    line-height: clamp(18px, calc((22 / 1600) * 100vw), 22px);
    color: var(--color-light);
    transition: var(--transition);
}
.button-arrow span {
    position: relative;
}
.button-arrow span::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-light);
    transform-origin: left;
    transition: var(--transition);
    opacity: 0.5;
}
.button-arrow i {
    margin-left: clamp(5px, calc((8 / 1600) * 100vw), 8px);
    font-size: clamp(10px, calc((13 / 1600) * 100vw), 13px);
}
.button-arrow:hover span::before {
    transform: scaleX(0);
}
.image {
    overflow: hidden;
}
.image img {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    object-position: center;
}
.lazy {
    background-image: unset !important;
}
.grecaptcha-badge {
	width: 70px !important;
	left: -2px !important;
	border-radius: 0 !important;
	box-shadow: rgb(0 0 0 / 25%) 0px 0px 5px !important;
	overflow: hidden !important;
	transition: all .3s !important;
    z-index: 9999;
}
.grecaptcha-badge:hover {
	width: 256px !important;
}
.grecaptcha-badge .rc-anchor {
    border-radius: 0 !important;
}
.wrapper {
    padding-top: clamp(40px, calc((80 / 1600) * 100vw), 80px);
    padding-bottom: clamp(40px, calc((80 / 1600) * 100vw), 80px);
}
.row-g,
.page__row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap-sm) var(--gap-sm);
}
.colf,
.col2,
.col3,
.col4,
.col5 {
    width: 100%;
}
.col6,
.col7,
.col8 {
    flex: 1 1 calc(50% - var(--gap-sm));
}
.grid__row {
    display: grid;
    grid-template-columns: var(--grid-margin) repeat(10, minmax(1px, calc(500px / 10))) var(--grid-margin);
}
.grid__col:nth-of-type(1) {
    grid-column: 2/12;
}
.grid__col:nth-of-type(2) {
    grid-column: 2/12;
}

.logo a img {
    width: auto;
    transition: var(--transition);
}

/* HELLO BAR */
#hello-bar {
    position: sticky;
    top: 0;
    z-index: 1020;
}
#hello-bar a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 12px 0;
    background-color: var(--color-primary);
    transition: var(--transition);
}
#hello-bar i {
    position: relative;
    top: 1px;
    padding-right: 8px;
    font-size: 12px;
    color: var(--color-light);
}
#hello-bar p {
    position: relative;
    margin: 0;
    color: var(--color-light);
}
#hello-bar p::after {
    content: "→";
    position: relative;
    top: -1px;
    font-family: "Arial";
    padding-left: 8px;
    transition: var(--transition);
}
#hello-bar a:hover p::after {
    padding-left: 12px;
}

/* HEADER */
#header {
    width: 100%;
    padding: clamp(23px, calc((45 / 1600) * 100vw), 45px) 0 clamp(0px, calc(15px - 1vw), 15px);
    background-color: var(--color-light);
    transition: var(--transition);
}
#header.hello-bar {
    top: 50px;
}
#header.sticky {
    padding: 15px 0;
    box-shadow: var(--box-shadow);
}
.header .header__logo a img {
    height: clamp(77px, calc((133 / 1600) * 100vw), 133px);
}
.header .header__navigation {}
.header .header__phone {
    margin-right: 20px;
    margin-left: 20px;
}
.header .header__phone a {
    color: var(--color-body);
}
.header .header__phone a i {
    position: relative;
    font-size: 16px;
    padding-right: 5px;
    top: -2px;
    color: var(--color-primary);
}
.header .header__btns {}
.header .header__btn {}

/* NAVBAR DESKTOP */
.navbar .navbar-nav > li {
    margin: 0 clamp(5px, calc((10 / 1600) * 100vw), 10px);
    transition: var(--transition);
}
.navbar .navbar-nav .nav-link {
    position: relative;
    display: inline-block;
    padding: 0 4px 2px;
    font-size: clamp(16px, calc((20 / 1600) * 100vw), 20px);
    color: var(--color-dark);
}
.navbar .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: clamp(1px, calc((4 / 1600) * 100vw), 4px);
    background-color: var(--color-primary);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.navbar .navbar-nav [class*="current"] .nav-link::before {
    transform: scaleX(1);
}
.navbar .navbar-nav .dropdown a {
  padding-right: 15px;
}
.navbar .navbar-nav .dropdown .nav-link::after,
.navbar .navbar-nav .dropdown .dropdown > .dropdown-item::after {
    content: "\f107";
    position: absolute;
    top: 50%;
    right: 0;
    font-family: "Font Awesome 6 Free";
    font-size: 11px;
    font-weight: var(--head-weight);
    border: 0;
    transform: translateY(-50%);
    color: var(--color-primary);
}
.navbar .navbar-nav .dropdown .dropdown > .dropdown-item::after {
    content: "\f105";
    right: 15px;
}
.navbar .navbar-nav .dropdown .dropdown-menu {
    top: 40px;
    left: -15px;
    display: block;
    width: 240px;
    border: 0;
    border-radius: 0;
    box-shadow: var(--box-shadow);
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
    z-index: -1111;

}
.navbar .navbar-nav .dropdown .dropdown-menu::before {}
.navbar .navbar-nav .dropdown .dropdown-menu .dropdown-item {
    background: transparent;
    padding-top: 10px;
    padding-bottom: 10px;
}
.navbar .navbar-nav .dropdown .dropdown-menu [class*="current"] > .dropdown-item {
    color: var(--color-primary);
}
.navbar .navbar-nav .dropdown .dropdown-menu .dropdown-menu {
    top: 0;
    left: 100%;
}
/* NAVBAR TOGGLER */
.icon-bar {
	display: block;
	width: 30px; 
	height: 3px;
	margin: 4px 0;
	background-color: var(--color-dark);
    border-radius: 2px;
	transition: var(--transition);
}
.navbar-toggler {
    margin-left: clamp(20px, calc((50 / 1600) * 100vw), 50px);
    padding: 9px 0 9px 11px;
    border: none;
    background: transparent !important;
}
.navbar-toggler:focus {
    box-shadow: unset;
}
.navbar-toggler .top-bar {
    transform: rotate(45deg);
    transform-origin: 15% 10%;
}
.navbar-toggler .middle-bar {
    opacity: 0;
}
.navbar-toggler .bottom-bar {
    transform: rotate(-45deg);
    transform-origin: 15% 90%;
}
.navbar-toggler.collapsed .top-bar {
    transform: rotate(0);
}
.navbar-toggler.collapsed .middle-bar {
    opacity: 1;
}
.navbar-toggler.collapsed .bottom-bar {
    transform: rotate(0);
}

/* PAGINATION */
.pagination,
.sitemap-by-click5_pagination {
    justify-content: center;
    margin: 30px auto 0;
}
.pagination .page-item .page-link,
.sitemap-by-click5_pagination .pagination-item,
.sitemap-by-click5_pagination strong {
    padding: 10px 20px;
    color: var(--color-body);
    background-color: transparent;
    border: none;
    border-radius: 0;
}
.pagination .page-item .page-link:focus,
.sitemap-by-click5_pagination .pagination-item:focus,
.sitemap-by-click5_pagination strong:focus {
    box-shadow: 0 0 0;
}
.pagination .page-item .page-link.next,
.pagination .page-item .page-link.prev {
    font-family: "Arial";
    color: var(--color-primary);
    background-color: transparent;
    border: 1px solid var(--color-primary);
}
.pagination .page-item.active .page-link,
.sitemap-by-click5_pagination strong {
    color: var(--color-light);
    background-color: var(--color-primary);
}

/* BLOG */
.news > a {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: var(--color4);
    border-radius: var(--border-radius1);
}
.news .photo {
    min-height: 270px;
    background-size: cover;
    background-position: center; 
}
.news .content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: clamp(25px, calc((55 / 1600) * 100vw), 55px) clamp(25px, calc((46 / 1600) * 100vw), 46px);
}
.news .content .time-cat {
    margin-bottom: 15px;
}
.news .category {
    display: inline-block;
    margin: 0;
    padding: 5px 15px;
    font-size: 11px;
    color: var(--color-light);
    text-transform: uppercase;
    background-color: var(--color-primary);
}

/* SINGLE POST */
#single-wrapper {
    background-color: var(--color4);
}
#single-wrapper .read-time {
    padding: 5px 15px;
    color: var(--color-primary);
    text-transform: uppercase;
    background-color: var(--color-light);
    border: 1px solid var(--color-primary);
}
#single-wrapper .read-time i {
    padding-right: 8px;
}
#single-wrapper .news .author {}
#single-wrapper .news .author p {}
#single-wrapper .news .author time {}
#single-wrapper .news .photo {
    margin-bottom: 30px;
}
#single-wrapper .back {
    position: relative;
    display: inline-block;
    margin: 50px 0 0 20px;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    transition: var(--transition);
}
#single-wrapper .back::after {
    content: "";
    display: block;
    width: 60px;
    height: 60px;
    background-color: var(--color-light);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: -23px;
    transform: translateY(-50%);
    transition: var(--transition);
}
#single-wrapper .back::before {
    position: relative;
    content: "←";
    padding-right: 10px;
    font-family: "Arial";
    font-size: 19px;
    color: var(--color-primary);
    transition: var(--transition);
    z-index: 9;
}
#single-wrapper .back span {
    position: relative;
    display: inline-block;
    color: var(--color-primary);
    transition: var(--transition);
    z-index: 9;
}

/* COMMENTS */
.comments-area .comment-reply-title,
.comments-area .comments-title {
    display: block;
    color: #000;
    font-size: 22px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0;
    padding: 40px 0 10px 0;
    margin: 40px 0 0 0;
    border-top: 1px solid rgba(0, 0, 0, .2);
}
.comments-area .comment-notes {
    color: rgba(0, 0, 0, .7);
    font-size: 14px;
}
.comments-area .comment-control {
    width: 100%;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.36px;
    padding: 24px 25px 23px 25px;
    margin: 5px 0 0 0;
    border: 1px solid #d8d8d8;
    border-radius: 0;
    box-shadow: 0 0 0 !important;
    outline: none;
    resize: none;
}
.comments-area .form-check {
    margin: 5px 0;
}
.comments-area .form-check-input {
    border: 1px solid #d8d8d8;
}
.comments-area .form-check-label {
    color: rgba(0, 0, 0, .7);
    font-size: 14px;
}
.comments-area input[type="submit"] {
    display: block;
    position: relative;
    color: #FFF;
    font-size: 16px;
    font-weight: var(--head-weight);
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    padding: 17px 40px 15px 40px;
    margin: 20px 0 0 0;
    border: 0 !important;
    background-color: #000;
    border-radius: var(--border-radius1);
    cursor: pointer;
    outline: none;
    z-index: 9;
}
.comments-area input[type="submit"]:hover,
.comments-area input[type="submit"]:active,
.comments-area input[type="submit"]:focus {
    box-shadow: 0 0 0 !important;
    background-color: #000;
}
.comments-area .comment-list {
    list-style: none;
    padding: 40px 0 10px 0;
    margin: 40px 0 0 0;
    border-top: 1px solid rgba(0, 0, 0, .2);
}
.comments-area .comment-list .says {
    display: none;
}
.comments-area .comment-author img {
    border-radius: 50%;
}
.comments-area .comment-author b {
    font-size: 16px;
    padding-left: 10px;
}
.comments-area .comment-metadata {
    color: rgba(0, 0, 0, 0.5);
    font-size: 12px;
    padding-left: 47px;
    margin-top: -5px;
}
.comments-area .comment-content {
    padding: 20px 20px 0 47px;
}
.comments-area .reply {
    color: rgba(0, 0, 0, 0.5);
    font-size: 12px;
    padding-left: 47px;
    margin-top: -15px;
    margin-bottom: 25px;
}
.comments-area .children {
    list-style: none;
}
.comments-area .children .comment {
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, .05);
}
.comments-area .no-comments {
    color: red;
}

/* ENTRY CONTENT */
.entry-content img.aligncenter {
    display: block;
    height: auto;
    margin: 0 auto;
}
.entry-content img.alignright {
    float: right;
    margin-left: 30px;
    margin-bottom: 20px;
    margin-top: 20px;
}
.entry-content img.alignleft {
    float: left;
    margin-right: 30px;
    margin-bottom: 20px;
    margin-top: 20px;
}
.entry-content ul {
    list-style: none;
    padding-left: 20px;
}
.entry-content ul li {
    position: relative;
    line-height: 28px;
    padding-left: 25px;
    margin-top: 10px;
}
.entry-content ul li::before {
    content: "\f054";
    color: var(--color-primary);
    font-family: "Font Awesome 5 Free";
    font-size: 10px;
    font-weight: var(--head-weight);
    line-height: 32px;
    position: absolute;
    left: 0;
}
.entry-content ol {
    margin-left: 0;
}
.entry-content ol li {
    padding-left: 7px;
    margin-top: 5px;
}
.entry-content blockquote {
    position: relative;
    padding-left: 50px;
    margin: 40px 0;
}
.entry-content blockquote:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 10px;
    height: 100%;
    background-color: var(--main);
    border-radius: var(--border-radius1);
}
.entry-content blockquote p {
    font-size: 20px;
    font-weight: 600;
    line-height: 36px;
    margin: 0;
}

/* FAQ */
#faq-wrapper {
    position: relative;
}
#faq-wrapper .accordion-item {
    position: relative;
}
#faq-wrapper .accordion-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    display: block;
    width: calc(100% - 50px);
    height: 1px;
    background-color: var(--color-primary);
}
#faq-wrapper .accordion-item:last-of-type::after {
    display: none;
}
#faq-wrapper .accordion-header h3 {
    position: relative;
    padding: clamp(15px, calc((30 / 1600) * 100vw), 30px) clamp(10px, calc((15 / 1600) * 100vw), 15px);
    margin: 0 0 0 clamp(20px, calc((35 / 1600) * 100vw), 35px);
    font-size: var(--h6-fs);
  line-height: var(--h6-lh);
    cursor: pointer;
    transition: var(--transition);
}
#faq-wrapper .accordion-item.active .accordion-header h3,
#faq-wrapper .accordion-header h3:hover {
    color: var(--color-primary);
}
#faq-wrapper .accordion-item.active .accordion-header h3 {
    font-size: var(--h5-fs);
    line-height: var(--h5-lh);
}
#faq-wrapper .accordion-header h3::before {
    content: "\f105";
    position: absolute;
    top: 50%;
    left: clamp(-10px, calc((-20 / 1600) * 100vw), -20px);
    font-family: "Font Awesome 6 Free";
    font-size: clamp(10px, calc((16 / 1600) * 100vw), 16px);
    color: var(--color-primary);
    transform: translateY(-50%);
}
#faq-wrapper .accordion-header h3[aria-expanded="true"]::before {
    content: "\f107";
}
#faq-wrapper .accordion-body {
    padding: 0 clamp(10px, calc((20 / 1600) * 100vw), 20px) clamp(20px, calc((40 / 1600) * 100vw), 40px) clamp(25px, calc((50 / 1600) * 100vw), 50px);
}
#faq-wrapper .accordion-body p:last-of-type {
    margin-bottom: 0;
}

/* REVIEWS */
.review__wrapper {
    padding-top: 0;
}
.reviews__h {
  font-size: clamp(26px, calc((46 / 1600) * 100vw), 46px);
  line-height: clamp(26px, calc((43 / 1600) * 100vw), 43px);
  color: var(--color-primary);
}
.review:not(:last-of-type) {
    border-bottom: 1px solid var(--color-border);
}
.review__item {
    position: relative;
    margin: 0;
    padding: clamp(20px, calc((40 / 1600) * 100vw), 40px) clamp(15px, calc((25 / 1600) * 100vw), 25px) 0;
}
.review__quote {
    position: absolute;
    top: clamp(1px, calc((30 / 1600) * 100vw), 30px);
    left: -4px;
    opacity: 0.2;
}
.review__opinion {
    font-size: clamp(16px, calc((20 / 1600) * 100vw), 20px);
}
.review__overview {
    margin-bottom: clamp(20px, calc((40 / 1600) * 100vw), 40px); 
}
.review__customer {
    margin-bottom: 0;
    font-weight: var(--head-weight);
}
.review__info {
    margin-bottom: 0;
}

/* REVIEWS SLIDER */
.slick-slider {
    z-index: 1;
}
.reviews::before {
    height: clamp(50px, calc((300 / 1600) * 100vw), 300px);
}
.review-slider .slick-track {
    display: flex;
    justify-content: center;
}
.review-slider__review {
    height: inherit;
    padding: 0 clamp(5px, calc((10 / 1600) * 100vw), 10px);
}
.review-slider__content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(20px, calc((37 / 1600) * 100vw), 37px) clamp(30px, calc((60 / 1600) * 100vw), 60px) clamp(15px, calc((27 / 1600) * 100vw), 27px);
    background-color: var(--color-light);
    border-radius: var(--border-radius1);
}
.review-slider__quote {
    margin-bottom: clamp(20px, calc((30 / 1600) * 100vw), 30px);
}
.review-slider__quote img {
    height: clamp(20px, calc((33 / 1600) * 100vw), 33px);
    width: auto;
}
.review-slider__opinion {
    margin-bottom: clamp(15px, calc((24 / 1600) * 100vw), 24px);
    line-height: clamp(20px, calc((27 / 1600) * 100vw), 27px);
    color: var(--color-dark);
}
.review-slider__customer {
    margin-bottom: 0;
    color: var(--color11);
    font-weight: var(--head-weight);
}
.review-slider .slick-dots li button {
    border-color: var(--color12);
}

/* GALLERY */
.entry-content .gallery {
    display: flex;
    flex-wrap: wrap;
    margin-top: 25px;
}
.entry-content .gallery.gallery-columns-2 .gallery-item {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
    text-align: center;
    margin: 5px;
}
.entry-content .gallery.gallery-columns-3 .gallery-item {
    flex: 0 0 calc(33.3333% - 10px);
    max-width: calc(33.33333% - 10px);
    text-align: center;
    margin: 5px;
}
.entry-content .gallery.gallery-columns-4 .gallery-item {
    flex: 0 0 calc(25% - 10px);
    max-width: calc(25% - 10px);
    text-align: center;
    margin: 5px;
}
.entry-content .gallery .gallery-item a {
    width: 100%;
    height: 230px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    outline: none;
}
.entry-content .gallery .gallery-item a:hover {
    text-decoration: none;
}
.entry-content .gallery .gallery-item a img {
    height: auto;
}

/* VIDEO */
.entry-content .js-video-button.video {
    display: block;
    width: 100%;
    padding-bottom: 56%;
    margin-top: 1rem;
    margin-bottom: 1rem;
    background-size: cover;
    background-position: center;
}
.entry-content .js-video-button.video.left,
.entry-content .js-video-button.video.right {
    width: 400px;
    height: 260px;
    padding-bottom: 0;
}
.entry-content .js-video-button.video.left {
    float: left;
    margin-right: 2rem;
}
.entry-content .js-video-button.video.right {
    float: right;
    margin-left: 2rem;
}

/* VIDEO MODAL */
@-webkit-keyframes modal-video {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}
@keyframes modal-video {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}
@-webkit-keyframes modal-video-inner {
    from {
        transform: translate(0, 100px)
    }
    to {
        transform: translate(0, 0)
    }
}
@keyframes modal-video-inner {
    from {
        transform: translate(0, 100px)
    }
    to {
        transform: translate(0, 0)
    }
}
.modal-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000000;
    cursor: pointer;
    opacity: 1;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-animation-duration: .3s;
            animation-duration: .3s;
    -webkit-animation-name: modal-video;
            animation-name: modal-video;
    transition: opacity .3s ease-out
}
.modal-video-close {
    opacity: 0
}
.modal-video-close .modal-video-movie-wrap {
    transform: translate(0, 100px)
}
.modal-video-body {
    max-width: 1180px;
    width: 96%;
    height: 100%;
    margin: 0 auto;
    display: table
}
.modal-video-inner {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%
}
.modal-video-movie-wrap {
    width: 100%;
    height: 0;
    position: relative;
    padding-bottom: 56.25%;
    background-color: #333;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    -webkit-animation-duration: .3s;
            animation-duration: .3s;
    -webkit-animation-name: modal-video-inner;
            animation-name: modal-video-inner;
    transform: translate(0, 0);
    transition: transform .3s ease-out
}
.modal-video-movie-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}
.modal-video-close-btn {
    position: absolute;
    z-index: 2;
    top: -40px;
    right: 0;
    display: inline-block;
    width: 30px;
    height: 30px;
    overflow: hidden;
    border: none;
    background: transparent;
    cursor: pointer;
}
.modal-video-close-btn:before {
    transform: rotate(45deg)
}
.modal-video-close-btn:after {
    transform: rotate(-45deg)
}
.modal-video-close-btn:before,
.modal-video-close-btn:after {
    content: '';
    position: absolute;
    height: 2px;
    width: 100%;
    top: 50%;
    left: 0;
    margin-top: -1px;
    background: #fff;
    border-radius: 5px;
    margin-top: -6px
}
.video {
    position: relative;
    cursor: pointer;
    width: 100%;
}
.video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary);
    opacity: 0.75;
    transition: all .3s ease-in-out;
}
.video:hover::before {
    opacity: 0;
}
.video::after {
    content: '\f144';
    color: #fff;
    font-family: "Font Awesome 6 Free";
    font-size: 90px;
    font-weight: var(--head-weight);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);    
}

/* CONTACT FORM */
.form-field {
    position: relative;
    margin-bottom: .5rem;
}
.form-field br {
    display: none;
}
.form-field > label {
    margin-left: 18px;
    font-size: 13px;
    line-height: 16px;
    color: var(--color3);
}
.form-field-checkbox > label {
    position: relative !important;
    width: 130px;
    font-size: 12px;
    font-weight: 500;
    margin-top: 10px;
    left: 15px;
}
.form-control {
    height: 70px;
    color: #000;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.36px;
    padding: 0 25px;
    border: 1px solid var(--color-light);
    border-radius: 0;
    box-shadow: 0 0 0 !important;
    outline: none;
    resize: none;
}
.form-control:focus {
    border-color: #000;
}
select.form-control {
    background: #FFF url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pjxzdmcgdmlld0JveD0iMCAwIDk2IDk2IiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjx0aXRsZS8+PHBhdGggZD0iTTgxLjg0NTcsMjUuMzg3NmE2LjAyMzksNi4wMjM5LDAsMCwwLTguNDUuNzY3Nkw0OCw1Ni42MjU3bC0yNS4zOTYtMzAuNDdhNS45OTksNS45OTksMCwxLDAtOS4yMTE0LDcuNjg3OUw0My4zOTQzLDY5Ljg0NTJhNS45OTY5LDUuOTk2OSwwLDAsMCw5LjIxMTQsMEw4Mi42MDc0LDMzLjg0MzFBNi4wMDc2LDYuMDA3NiwwLDAsMCw4MS44NDU3LDI1LjM4NzZaIi8+PC9zdmc+') no-repeat;
    background-position: right 25px center;
    background-size: 12px;
    appearance: none;
}
textarea.form-control {
    min-height: 250px;
    padding-top: 25px;
    padding-bottom: 25px;
}
.form-control.auto-capitalize,
input[name='your-name'],
input[name='first-name'],
input[name='last-name'] {
    text-transform: capitalize;
}
.form-checkbox {
    display: flex;
    align-items: center;
    padding-bottom: 20px;
    margin-top: 5px;
    margin-bottom: 30px;
    border-bottom: 1px solid #f0f0f0;
}
.form-checkbox .form-check-label {
    color: #000;
    font-size: 15.5px;
    font-weight: 300;
    letter-spacing: -0.15px;
}
.form-checkbox .form-check-input {
    margin-top: 4px;
    margin-right: 5px;
}
.form-checkbox .form-check-input:focus {
    border-color: rgba(0, 0, 0, .55);
    box-shadow: var(--box-shadow);
}
.form-checkbox .form-check-input:checked {
    background-color: #000;
}
.form-submit {
    position: relative;
}
.form-submit .button {
    margin-top: 14px;
    padding: clamp(12px, calc((17 / 1600) * 100vw), 17px) clamp(30px, calc((60 / 1600) * 100vw), 60px);
}
.form-submit .wpcf7-submit {
    display: block;
    position: relative;
    height: 58px;
    color: #FFF;
    font-size: 18px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.09px;
    text-align: center;
    padding: 0 130px;
    margin: 0 auto;
    border: 0 !important;
    background-color: var(--color-primary);
    border-radius: var(--border-radius1);
    cursor: pointer;
    outline: none;
    z-index: 9;
}
.form-submit .wpcf7-submit:hover,
.form-submit .wpcf7-submit:active,
.form-submit .wpcf7-submit:focus {
    box-shadow: unset !important;
    background-color: #000 !important;
}
.wpcf7 .wpcf7-spinner {
    position: absolute;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
}
.wpcf7 .wpcf7-not-valid-tip {
    width: 100%;
    color: #cb473e;
    font-size: 13px;
    text-align: left;
    padding: 4px 0 0 10px;
}
.wpcf7 form .wpcf7-response-output {
    text-align: center;
    margin: 40px 0 0 0 !important;
    padding: 15px 20px !important;
}
.wpcf7 form.sent .wpcf7-response-output {
    color: #46b450;
	border-color: #46b450;
}
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.spam .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output, 
.wpcf7 form.payment-required .wpcf7-response-output {
    color: #cb473e;    
    border: 2px solid #cb473e !important;
}

/* PAGE */
.page-main,
.page-sidebar {
    background-color: var(--color4);
}
.page-main .page-wrapper,
.page-sidebar .page-wrapper {
    padding: clamp(20px, calc((80 / 1600) * 100vw), 80px) clamp(20px, calc((80 / 1600) * 100vw), 80px) clamp(20px, calc((40 / 1600) * 100vw), 40px);
}
.page-blog .page-wrapper {
    padding-top: 0;
}
.page-main .container,
.page-sidebar .container {
    padding: clamp(20px, calc((80 / 1600) * 100vw), 80px);
    background-color: var(--color-light);
    border-radius: var(--border-radius1);
}

/* SIDEBAR */
.page__content,
.page__sidebar {
    width: 100%;
}
.sidebar__sub-col:not(:last-of-type) {
    margin-bottom: clamp(15px, calc((30 / 1600) * 100vw), 30px);
}
.sidebar__h {
    margin-bottom: clamp(15px, calc((25 / 1600) * 100vw), 25px);
    font-family: var(--font-head);
    font-size: var(--h4-fs);
    line-height: var(--h4-lh);
    color: var(--color-head);
    font-weight: var(--head-weight);
}
.sidebar__menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.sidebar__menu ul li a {
    position: relative;
    display: block;
    padding: clamp(10px, calc((15 / 1600) * 100vw), 15px) clamp(15px, calc((30 / 1600) * 100vw), 30px);
}
.sidebar__menu ul li a::before {
    content: "\f054";
    position: absolute;
    top: 50%;
    left: clamp(5px, calc((15 / 1600) * 100vw), 15px);
    font-family: "Font Awesome 6 Free";
    font-size: 10px;
    font-weight: var(--head-weight);
    color: var(--color-primary);
    transition: var(--transition);
    transform: translateY(-50%);
}
.sidebar__menu ul li a[aria-current="page"] {
    color: var(--color-light);
    background-color: var(--color-primary);
}
.sidebar__menu ul li a[aria-current="page"]::before {
    color: var(--color-light);
}
.sidebar__contact {
    padding: clamp(15px, calc((30 / 1600) * 100vw), 30px);
    border: 1px solid var(--color-primary);
    border-radius: var(--border-radius1);
}

/* SITEMAP */
.sitemap_by_click5 h2::after {
    display: none;
}
.sitemap_by_click5 ul li a {
    text-decoration: none;
}
.sitemap_by_click5 ul li a:hover {
    text-decoration: underline;
}

/* FOOTER */
.footer {
    color: var(--color-dark);
}
.footer-top {
    background-color: var(--color4);
}
.footer.footer-bottom {
    background-color: var(--color-light);
}
.footer__menu-h::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 5px;
    border-radius: 2px;
    background-color: var(--color-primary);
}
.footer-top__row {
    padding-top: clamp(8px, calc((45 / 1600) * 100vw), 45px);
    padding-bottom: clamp(13px, calc((32 / 1600) * 100vw), 32px);
}
.footer-bottom__row {
    padding-top: clamp(30px, calc((50 / 1600) * 100vw), 50px);
    padding-bottom: clamp(30px, calc((54 / 1600) * 100vw), 54px);
}
.footer__h {
    margin-bottom: clamp(10px, calc((20 / 1600) * 100vw), 20px);
    font-family: var(--font-head);
    font-size: clamp(18px, calc((20 / 1600) * 100vw), 20px);
    line-height: clamp(26px, calc((30 / 1600) * 100vw), 30px);
    color: var(--color-dark);
    font-weight: var(--head-weight);
}
.footer__menu-h {
    position: relative;
    margin-bottom: 14px;
    padding-bottom: 10px;
}
.footer .footer__logo a img {
    height: clamp(77px, calc((133 / 1600) * 100vw), 133px);
}
.footer__btn {
    padding: clamp(11px, calc((16 / 1600) * 100vw), 16px) clamp(51px, calc((63 / 1600) * 100vw), 63px);
}
.footer__contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: clamp(23px, calc((50 / 1600) * 100vw), 50px) clamp(48px, calc((41 / 1600) * 100vw), 41px);
    border-radius: var(--border-radius1);
    background-color: var(--color-light);
}
.footer__copy p {
    margin-top: 17px;
    margin-bottom: 0;
    font-size: clamp(12px, calc((14 / 1600) * 100vw), 14px);
    line-height: clamp(24px, calc((27 / 1600) * 100vw), 27px);
    color: var(--color9);
}
.footer__copy a span {
    transition: var(--transition);
}
.footer .link {
    color: var(--color-dark);
}
.footer .link::before {
    background-color: var(--color-dark);
}
.footer ul.menu {
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer ul.menu li a {
    position: relative;
    font-size: clamp(14px, calc((16 / 1600) * 100vw), 16px);
    color: var(--color8);
}
.footer ul.menu-quick li a {
    font-size: clamp(15px, calc((17 / 1600) * 100vw), 17px);
    color: var(--color-dark);
}
.footer ul.menu li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color8);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
    
}
.footer ul.menu-support {}
.footer ul.menu-support li {
    position: relative;
    padding: 0 20px;
}
.footer ul.menu-support li:first-child {
    padding-left: 0;
}
.footer ul.menu-support li:last-child {
    padding-right: 0;
}
.footer ul.menu-support li:not(:last-of-type):after {
    content: '|';
    position: absolute;
    right: 0;
    top: 0;
    color: var(--color8);
}
.social-media ul {
    margin: 0;
    padding: 0;
}
.social-media ul li {
    list-style: none;
}
.social-media ul li:not(:last-of-type) {
    margin-right: clamp(10px, calc((15 / 1600) * 100vw), 15px);
}
.social-media ul li::after {
    display: none !important;
}
.social-media ul li a {
    width: clamp(40px, calc((55 / 1600) * 100vw), 55px);
    height: clamp(40px, calc((55 / 1600) * 100vw), 55px);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0 !important;
    text-align: center;
    padding: 0;
    margin: 0;
    background-color: var(--color4);
    border: 1px solid var(--color4);
    border-radius: 50%;
    transition: var(--transition);
}
.social-media ul li a::after {
    content: "";
    color: var(--color-body);
    font-family: "Font Awesome 6 Brands";
    font-size: clamp(15px, calc((20 / 1600) * 100vw), 20px);
    font-weight: var(--head-weight);
    transition: var(--transition);
}
.social-media ul li.icon-facebook a::after { content: "\f39e"; }
.social-media ul li.icon-x a::after { content: "\e61b"; }
.social-media ul li.icon-twitter a::after { content: "\e61b"; }
.social-media ul li.icon-youtube a::after { content: "\f167"; }
.social-media ul li.icon-instagram a::after { content: "\f16d"; }
.social-media ul li.icon-linkedin a::after { content: "\f0e1"; }
.social-media ul li.icon-google a::after { content: "\f1a0"; }
.social-media ul li.icon-yelp a::after { content: "\f1e9"; }
.social-media ul li.icon-tiktok a::after { content: "\e07b"; }
.social-media ul li.icon-reviews a::after { content: "\f4ad"; font-family: "Font Awesome 6 Free"; }
/* STICKY FOOTER */
.sticky-footer {
    width: 100%;
    position: fixed;
    bottom: 0;
    padding: 20px;
    background-color: var(--color-light);
    box-shadow: var(--box-shadow);
    z-index: 99;
}
