/* GENERAL */
.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;
}

.site {
  display: block;
  position: relative;
}

/* Base state: pseudo-element exists but is invisible */
.site::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(68, 80, 84, 0); /* transparent */
  pointer-events: none;
  transition: background-color var(--transition), opacity var(--transition);
  opacity: 0;
}

/* Active (faded in) */
.site.navbar-active::after {
  background-color: rgba(68, 80, 84, 0.15);
  opacity: 1;
}
/* LAYOUT */
.row {
    margin-top: 0;
}
.g-1, .gx-1 {
  /* --bs-gutter-x: 0.25rem;
  --bs-gutter-y: 0.25rem; */
}
.g-2, .gx-2 {
  /* --bs-gutter-x: 0.5rem;
  --bs-gutter-y: 0.5rem; */
}
.g-3, .gx-3 {
  /* --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem; */
}
.g-4, .gx-4 {
  /* --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem; */
}
.g-5, .gx-5 {
  /* --bs-gutter-x: 3rem;
  --bs-gutter-y: 3rem; */
}
.row > * {
    margin-top: 0;
    margin-bottom: var(--bs-gutter-y);
}
.wrapper {
    padding-top: clamp(40px, calc((80 / 1440) * 100vw), 80px);
    padding-bottom: clamp(40px, calc((80 / 1440) * 100vw), 80px);
}
.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/7;
}
.grid__col:nth-of-type(2) {
    grid-column: 7/12;
}
.pl-0 {
    padding-left: 0;
}
.pr-0 {
    padding-right: 0;
}

/* TEXT */
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);
    background-color: var(--color2);
}
a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}
a.link,
.link {
    position: relative;
    display: inline-block;
    color: var(--color-body);
}
a.link::before,
.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);
}
a.link2::before,
.link2::before {
    transform: scaleX(1);
}

/* heading */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: clamp(6px, calc((10 / 1440) * 100vw), 10px);
    font-family: var(--font-head);
    line-height: 1.2;
    font-weight: var(--head-weight);
    color: var(--color-head);
}
h1, .h1s {
    font-size: var(--h1-fs);
    letter-spacing: 2px;
}
h2, .h2s {
    font-size: var(--h2-fs);
    letter-spacing: 1.6px;
}
h3, .h3s {
    font-size: var(--h3-fs);
    letter-spacing: 1.4px;
}
h4, .h4s {
    font-size: var(--h4-fs);
    letter-spacing: 1.4px;
}
h5, .h5s {
    font-size: var(--h5-fs);
    letter-spacing: 1.2px;
}
h6, .h6s {
    font-size: var(--h6-fs);
    letter-spacing: 1px;
}
.h7s {
    font-size: var(--ps-fs);
    letter-spacing: 0.8px;
}

/* body */
p br + br {
    margin-bottom: 0;
}
.p3 {
    font-size: 14px;
}
.p4 {
    font-size: 12px;
}

/* subheading */
.st {
    color: var(--color-head);
    font-weight: var(--body-weight-medium);
}
.st1 {
    font-family: var(--font-body);
    font-size: 20px;
}
.st2 {
    font-family: var(--font-body);
    font-size: 18px;
}
.st3 {
    font-family: var(--font-head);
    font-size: 16px;
}
.st4 {
    font-family: var(--font-head);
    font-size: 14px;
}
.headline {
    position: relative;
    padding-bottom: clamp(17px, calc((23 / 1440) * 100vw), 23px);
}
.headline::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: clamp(134px, calc((210 / 1440) * 100vw), 210px);
    height: clamp(5px, calc((8 / 1440) * 100vw), 8px);
    background-color: var(--color-secondary);
}

/* BUTTON & LINK */
.button {
    display: inline-block;
    padding: 12px 30px 10px 30px;
    font-family: var(--font-head);
    font-weight: var(--head-weight-medium);
    font-size: 14px;
    color: var(--color-body);
    background-color: var(--color3);
    border: 1px solid transparent;
    border-radius: var(--border-radius3);
    transition: var(--transition);
    text-align: center;
}
.button2 {
    color: var(--color-light);
    background-color: var(--color-head);
}
.button3 {
    color: var(--color-head);
    background-color: transparent;
    border: 1px solid var(--color-head);
}
.button-arrow {
    font-family: var(--font-head);
    font-weight: var(--head-weight);
    font-size: clamp(16px, calc((20 / 1440) * 100vw), 20px);
    line-height: clamp(18px, calc((22 / 1440) * 100vw), 22px);
    color: var(--color-body);
    transition: var(--transition);
}
.button-arrow span {
    position: relative;
    margin-left: -10px;
}
.button-arrow span::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-body);
    transform-origin: left;
    transition: var(--transition);
}
.button-arrow i {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: clamp(55px, calc((65 / 1440) * 100vw), 65px);
    height: clamp(55px, calc((65 / 1440) * 100vw), 65px);
    font-size: clamp(10px, calc((13 / 1440) * 100vw), 13px);
    color: var(--color-light);
    background-color: var(--color-primary);
    border: 1px solid transparent;
    border-radius: 50%;
    transition: var(--transition);
}

/* ENTRY CONTENT */

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin-top: 30px;
    margin-bottom: 30px;
}
.entry-content > h1:first-child,
.entry-content > h2:first-child,
.entry-content > h3:first-child,
.entry-content > h4:first-child,
.entry-content > h5:first-child,
.entry-content > h6:first-child {
    margin-top: 0;
}


.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 p:last-of-type {
    margin-bottom: 0;
}
.entry-content ul {
    list-style: none;
    padding-left: 20px;
}
.entry-content ul li {
    position: relative;
    line-height: 28px;
    padding-left: 25px;
    margin-bottom: 10px;
}
.entry-content ul li::before {
    content: "\f054";
    position: absolute;
    top: 0;
    left: 0;
    font-family: "Font Awesome 5 Free";
    font-size: 11px;
    line-height: 30px;
    font-weight: 700;
    color: var(--color-head);
}
.entry-content ol {
    margin-left: 0;
}
.entry-content ol li {
    padding-left: 7px;
    margin-top: 5px;
}
.entry-content blockquote {
    position: relative;
    padding: clamp(20px, calc((40 / 1440) * 100vw), 40px);
    background-color: var(--color-border);
    text-align: center;
}
.entry-content blockquote:before {
    content: '„';
    position: absolute;
    top: -82px;
    left: 12px;
    font-size: clamp(50px, calc((110 / 1440) * 100vw), 110px);
    color: var(--color-primary);
}
.entry-content a {
    text-decoration: underline;
    text-underline-offset: 4px;
}
.entry-content a:hover {
    text-decoration: none;
}

/* MEDIA */
.bcg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.image {
    overflow: hidden;
}
.image img {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    object-position: center;
}
.image-auto img {
    height: auto;
    width: auto;
}
.lazy {
    background-image: unset !important;
}
.header__logo.logo a img {
    width: auto;
    transition: var(--transition);
}

/* GALLERY */
.entry-content .gallery {
    display: flex;
    flex-wrap: wrap;
    margin-top: 25px;
}
.entry-content .gallery .gallery-item {
    text-align: center;
    margin: 5px;
    flex: 1;
}
.entry-content .gallery .gallery-item a {
    width: 100%;
    height: 290px;
    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;
}

/* GALLERY SIZE FULL - AUTO */
.entry-content .gallery.gallery-size-full .gallery-item a {
    display: block;
}
.entry-content .gallery.gallery-size-full .gallery-item a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* VIDEO function */
.custom-video-aspect {
    aspect-ratio: 16/9;
}
.custom-video-wrapper {
    position: relative;
    display: block;
    max-width: 100%;
    cursor: pointer;
}
.custom-video-wrapper.active {
  aspect-ratio: 16/9;
  width: 100%;
  background: var(--color-dark);
}
.custom-video-wrapper img {
  display: block;
  width: 100%;
  height: auto;
}
.custom-video-wrapper iframe,
.custom-video-wrapper video {
  width: 100%;
  height: 100%;
}
.custom-video-play {
    display: none;
}
.custom-video-wrapper::after {
    content: '';
    display: block;
    background-image: url('../img/icons/video-icon.png');
    background-size: contain;
    width: 100px;
    height: 100px;
    background-repeat: no-repeat;
    position: absolute;
    top: 20px;
    left: 20px;
}
.custom-video-wrapper.active::after {
    display: none;
}
.home-sec3 .custom-video-wrapper {
    height: 100%;
}
.home-sec3__img-video {
    background-size: cover;
    border-radius: 30px;
    border: 6px solid #FFF;
    background-position: center;
}

.home-sec3 .custom-video-wrapper img, .home-sec3 .home-sec3__img img  {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 30px;
    border: 6px solid #FFF;
    /* border-top: 3px solid #FFF;
    border-bottom: 3px solid #FFF;
    border-left: 6px solid #FFF;
    border-right: 6px solid #FFF; */
}


/* VIDEO shortcode */
.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%);    
}

/* HELLO BAR */

.hello-bar__wrapper {
    top: 0;
    margin-bottom: clamp(11px, calc((19 / 1440) * 100vw), 19px);
    transition: var(--transition);
}
.hello-bar__wrapper a {
    display: block;
    text-align: center;
    padding: 12px 24px 10px;
    margin: 0;
    background-color: #FFF;
}
.hello-bar__wrapper p {
    color: #333;
    font-size: 14px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.14px;
    padding: 0;
    margin: 0;
}
.hello-bar__hello {
    font-weight: 700;
    padding: 5px 8px 4px 8px;
    margin-right: 5px;
    background-color: #DCF6CD;
    border-radius: 4px;
}
.hello-bar__link {
    text-decoration: underline;
    text-underline-offset: 3px;
    padding-left: 20px;
}
.hello-bar__wrapper a:hover .hello-bar__link {
    text-decoration: none;
}


/* HEADER */
#header {
    width: 100%;
    transition: var(--transition);
}
#header.sticky {
    top: 15px;
}
/* #header.sticky {
    background-color: var(--color-light);
}
#header.sticky .hello-bar__wrapper {
  margin-bottom: 0;
}
#header.sticky .header__container {
    margin-top: 0;
    padding: 10px 0;
    box-shadow: none;
    background-color: var(--color-light);
    border-top: 1px solid var(--color2);
    border-radius: 0;
} */
.header .header__logo a img {
    height: clamp(34px, calc((46 / 1440) * 100vw), 46px);
}
.sticky.header .header__logo a img {
    height: clamp(30px, calc((40 / 1440) * 100vw), 40px);
}
.header__container {
    position: relative;
    padding: 18px 25px 18px 35px;
    background-color: var(--color-light);
    border-radius: var(--border-radius2);
    box-shadow: var(--box-shadow);
}
.header .header__phone {
    margin-left: clamp(15px, calc((30 / 1440) * 100vw), 30px);
    margin-right: clamp(15px, calc((30 / 1440) * 100vw), 30px);
}
.header .header__phone a {
    color: var(--color-body);
}
.header .header__phone a::before {
    height: clamp(1px, calc((3 / 1440) * 100vw), 3px);
    background-color: var(--color-primary);
}
.header .header__phone a i {
    position: relative;
    font-size: 16px;
    padding-right: 5px;
    top: -2px;
    color: var(--color-primary);
}
.header .header__btn {
    padding: 12px 25px 10px 25px;
}

/* NAVBAR DESKTOP */
.navbar .navbar-nav > li {
    margin: 0 1px;
    transition: var(--transition);
}
.navbar .navbar-nav .nav-link {
    display: inline-block;
    padding: 12px 16px;
    font-family: var(--font-head);
    font-size: var(--ps-fs1);
    line-height: var(--ps-lh);
    font-weight: var(--body-weight);
    color: var(--color-head);
    background-color: transparent;
    border-radius: 100px;
}

.navbar .navbar-nav [class*="current"] .nav-link,
.navbar .navbar-nav .menu-item.show .nav-link,
.navbar .navbar-nav .menu-item:hover .nav-link {
    background-color: var(--color2);
}
.navbar .navbar-nav .dropdown a:not(.button) {
    padding-right: 15px;
}
.navbar .navbar-nav .dropdown .dropdown-menu {
    top: 75px;
    left: 0;
    display: block;
    min-width: 240px;
    padding: 20px 25px;
    border: 0;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
    z-index: -1111;
}
.navbar .navbar-nav .dropdown .dropdown-menu.mega {
    min-width: 695px;
}
.navbar .navbar-nav .dropdown .dropdown-menu .dropdown-item {
    position: relative;
    color: #333;
    font-family: var(--font-head);
    font-size: 14px;
    letter-spacing: 0.7px;
    padding: 8px 35px 6px 15px;
    margin-top: 2px;
    background: transparent;
    display: inline-block;
    /* border: 1px solid transparent; */
    /* border-radius: 30px; */
    /* border-bottom: 1px solid transparent; */
}
.navbar .navbar-nav .dropdown .dropdown-menu .dropdown-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /* height: 0.5px; */
    height: 1px;
    /* background-color: var(--color-body); */
    background-color: #e3e3e3;
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.navbar .navbar-nav .dropdown .dropdown-menu [class*="current"] > .dropdown-item::before, .navbar .navbar-nav .dropdown .dropdown-menu .dropdown-item:hover::before {
transform: scaleX(1);
}

.navbar .navbar-nav .dropdown .dropdown-menu .dropdown-item::after {
    content: "\f105";
    color: #333;
    font-family: "Font Awesome 6 Free";
    font-size: 13px;
    font-weight: 700;
    position: absolute;
    right: 15px;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
}
.navbar .navbar-nav .dropdown .dropdown-menu .dropdown-item:hover,
.navbar .navbar-nav .dropdown .dropdown-menu [class*="current"] > .dropdown-item {
    color: #333;
    border-color: #e3e3e3;
}

/* .navbar .navbar-nav .dropdown .dropdown-menu [class*="current"] > .dropdown-item::after  */
.navbar .navbar-nav .dropdown .dropdown-menu .dropdown-item:hover::after {
    visibility: visible;
    opacity: 1;
}
.navbar .navbar-nav .dropdown .dropdown-menu .dropdown-menu {
    top: 0;
    left: 0;
    position: relative;
    padding: 0;
    margin: 0 0 0 20px;
    box-shadow: unset;
    border-radius: 0;
    transform: translateY(0);
}
.navbar .navbar-nav .dropdown.show .dropdown-menu .dropdown-menu {
    visibility: visible;
    opacity: 1;
    z-index: 1;
}
.navbar .navbar-nav .dropdown .dropdown-menu .dropdown-menu .dropdown-item {
    font-family: var(--font-body);
    letter-spacing: 0;
}
.navbar .navbar-nav .dropdown .dropdown-menu .col-lg-6:not(.links) {
    width: 45%;
}
.navbar .navbar-nav .dropdown .dropdown-menu .links {
    width: 55%;
    padding-right: 30px;
}
.navbar .navbar-nav .dropdown .dropdown-menu .links .menu-parent-title {
    color: #333;
    font-size: 14px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    padding: 4px 0 10px 0;
    margin: 0 0 18px 0;
    border-bottom: 1px solid #e3e3e3;
}
.navbar .navbar-nav .dropdown .dropdown-menu img {
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
}

#mega-h {
    color: #445054;
    font-size: 18px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: .8px;
    padding: 20px 0 10px 0;
    margin: 0;
}
#mega-p {
    color: #333;
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.2px;
    padding: 0;
    margin: 0;
}
#mega-btn {
    margin-top: 15px;
}

.navbar .navbar-nav {
    position: relative;
}

/* NAVBAR TOGGLER */
.icon-bar {
	display: block;
	width: 22px; 
	height: 2px;
	margin: 4px 0;
	background-color: var(--color7);
	transition: var(--transition);
    border-radius: 2px;
}
.navbar-toggler {
    margin-left: 13px;
    padding: 0;
    border: none;
    background: transparent !important;
}
.navbar-toggler:focus {
    box-shadow: unset;
}
.navbar-toggler .top-bar {
    transform: rotate(45deg);
    transform-origin: 10% 10%;
}
.navbar-toggler .middle-bar {
    opacity: 0;
}
.navbar-toggler .bottom-bar {
    transform: rotate(-45deg);
    transform-origin: 10% 90%;
}
.navbar-toggler.collapsed .top-bar {
    transform: rotate(0);
}
.navbar-toggler.collapsed .middle-bar {
    opacity: 1;
}
.navbar-toggler.collapsed .bottom-bar {
    transform: rotate(0);
}


.contact .head {
    display: block;
    margin: 0 auto var(--bs-gutter-y);
    width: 60%;
}
/* CONTACT FORM */
.form-field {
    position: relative;
    margin-bottom: 1rem;
}
.form-field br {
    display: none;
}
.form-field > label {
    padding: 0 10px;
    margin: 0;
    font-size: clamp(11px, calc((14 / 1440) * 100vw), 14px);
    background-color: var(--color-light);
    font-weight: var(--body-weight);
    z-index: 99 !important;
}
.form-field-checkbox > label {
    position: relative !important;
    width: 130px;
    font-size: 12px;
    font-weight: 500;
    margin-top: 10px;
    left: 15px;
}
.form-control {
    padding: 0 15px 8px 15px;
    /* margin-bottom: 1rem; */
    margin-bottom: 8px;
    margin-top: 8px;
    border: 0;
    border-bottom: 1px solid #33333366;
    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: 150px;
    padding-top: 25px;
    padding-bottom: 25px;
    border: 1px solid #33333366;
    border-radius: 12px;
    margin-top: 40px;
}
.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 .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 60px;
    margin: 0 auto;
    border: 0 !important;
    background-color: var(--color-head);
    border-radius: 50px;
    cursor: pointer;
    outline: none;
    z-index: 9;
}
.form-submit .wpcf7-submit[disabled] {
    background-color: #f1f1f1;
}
.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: #C20A29;
    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; */
    margin: 0 0 40px 0 !important;
    padding: 10px 0 8px 0 !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: #C20A29;    
    /* border: 2px solid #cb473e !important; */
    border: none !important;
    background-color: #FFE4E9;
}

/* CATEGORY POST */
.category-post {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    background-color: var(--color-light);
    box-shadow: var(--box-shadow);
}
.category-post__thumbnail {
    min-height: clamp(200px, calc((300 / 1440) * 100vw), 300px);
    background-size: cover;
    background-position: center; 
}
.category-post__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: clamp(30px, calc((52 / 1440) * 100vw), 52px) clamp(25px, calc((50 / 1440) * 100vw), 50px) clamp(15px, calc((31 / 1440) * 100vw), 31px);
}
.category-post__content-top {
    margin-bottom: clamp(15px, calc((34 / 1440) * 100vw), 34px);
}
.category-post__time-box {
    margin-bottom: 6px;
}
.category-post__cat {
    color: var(--color-primary);
}
.category-post__h {
    font-size: clamp(24px, calc((28 / 1440) * 100vw), 28px);
    line-height: clamp(28px, calc((32 / 1440) * 100vw), 32px);
    padding-top: 10px;
}

/* SINGLE POST */

/* .single-post__meta-box {
    padding: clamp(10px, calc((20 / 1440) * 100vw), 20px);
    border: 1px solid var(--color-primary);
    border-radius: var(--border-radius1);
} */
.single-post__category {
    color: var(--color-head);
}
.single-post__read-time {
    color: var(--color-head);
}
.single-post__read-time i {
    padding-right: 8px;
}
.single-post__title {
    margin-bottom: 0;
    font-size: var(--h4-fs);
    padding-top: 15px;
}
.single-post__thumbnail {
    margin-bottom: clamp(20px, calc((30 / 1440) * 100vw), 30px);
}
.single-post__thumbnail img {
    width: 100%;
    height: clamp(200px, calc((300 / 1440) * 100vw), 300px);
    object-fit: cover;
}
.single-post__back {
    display: flex;
    align-items: center;
}
.single-post__back i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(30px, calc((50 / 1440) * 100vw), 50px);
    height: clamp(30px, calc((50 / 1440) * 100vw), 50px);
    margin-right: 10px;
    color: var(--color-light);
    background-color: var(--color-head);
    border: 1px solid var(--color-head);
    border-radius: 50%;
    transition: var(--transition);
}
.single-post__back span {
    font-size: clamp(15px, calc((19 / 1440) * 100vw), 19px);
    transition: var(--transition);
}

/* PAGINATION */
.pagination,
.sitemap-by-click5_pagination {
    justify-content: center;
    margin: 30px auto 0;
}
.pagination .page-item {
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination .page-item .page-link,
.sitemap-by-click5_pagination .pagination-item,
.sitemap-by-click5_pagination strong {
    padding: 0 clamp(8px, calc((15 / 1440) * 100vw), 15px);
    background-color: transparent;
    border: none;
    border-radius: 0;
    color: var(--color-body);
}
.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 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(30px, calc((50 / 1440) * 100vw), 50px);
    height: clamp(30px, calc((50 / 1440) * 100vw), 50px);
    margin: 0 clamp(20px, calc((40 / 1440) * 100vw), 40px);
    color: var(--color-light);
    background-color: var(--color-head);
    border: 1px solid var(--color-head);
    border-radius: 50%;
}
.pagination .page-item .page-link.next i,
.pagination .page-item .page-link.prev i {
   font-size: clamp(12px, calc((14 / 1440) * 100vw), 14px);
}
.pagination .page-item.active .page-link,
.sitemap-by-click5_pagination strong {
    color: var(--color-head);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

/* 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: var(--body-weight);
    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: 3px;
    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;
}

/* SIDEBAR */
.sidebar__sub-col {
    margin-bottom: clamp(10px, calc((30 / 1440) * 100vw), 30px);
    padding: clamp(15px, calc((30 / 1440) * 100vw), 30px);
    border: 1px solid var(--color-primary);
    border-radius: var(--border-radius);
}
.sidebar__h {
    margin-bottom: clamp(15px, calc((25 / 1440) * 100vw), 25px);
    font-family: var(--font-head);
    font-size: var(--h4-fs);
    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 / 1440) * 100vw), 15px) clamp(15px, calc((30 / 1440) * 100vw), 30px);
}
.sidebar__menu ul li a::before {
    content: "\f054";
    position: absolute;
    top: 50%;
    left: clamp(5px, calc((15 / 1440) * 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);
}

/* 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;
}



.social-media ul {
    display: flex;
    margin: 0;
    padding: 0;
}
.social-media ul li {
    list-style: none;
}
.social-media ul li:not(:last-of-type) {
    margin-right: clamp(6px, calc((10 / 1440) * 100vw), 10px) !important;
}
.social-media ul li::after {
    display: none !important;
}
.social-media ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0 !important;
    text-align: center;
    padding: 0;
    margin: 0;
    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 / 1440) * 100vw), 20px);
    font-weight: var(--head-weight);
    transition: var(--transition);
}
.social-media ul li.icon-facebook a::after { content: "\f09a"; }
.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-vimeo a::after { content: "\f27d"; }
.social-media ul li.icon-reviews a::after { content: "\f4ad"; font-family: "Font Awesome 6 Free"; }
