/* 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);
}
a.link2::before {
    transform: scaleX(1);
    bottom: 4px;
}
h1, h2, h3, h4, h5, h6 {
    margin-bottom: clamp(10px, calc((21 / 1600) * 100vw), 21px);
    font-family: var(--font-head);
    font-weight: var(--head-weight);
    color: var(--color-head);
    letter-spacing: -1px;
}
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(10px, calc((21 / 1600) * 100vw), 21px);
}
.st {
    margin-bottom: 0;
    font-size: clamp(16px, calc((23 / 1600) * 100vw), 23px);
    font-weight: var(--weight-semi-bold);
    color: var(--color-secondary);
}
.button {
    display: inline-block;
    padding: clamp(12px, calc((19 / 1600) * 100vw), 19px) clamp(30px, calc((60 / 1600) * 100vw), 60px);
    font-family: var(--font-head);
    font-weight: var(--weight-bold);
    font-size: clamp(16px, calc((19 / 1600) * 100vw), 19px);
    line-height: clamp(18px, calc((22 / 1600) * 100vw), 22px);
    color: var(--color-light);
    background-color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    border-radius: var(--border-radius1);
    transition: var(--transition);
    text-align: center;
}
.button2 {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}
.button3 {
    padding: clamp(14px, calc((16 / 1600) * 100vw), 16px) clamp(34px, calc((37 / 1600) * 100vw), 37px);
    font-size: clamp(14px, calc((16 / 1600) * 100vw), 16px);
    background-color: var(--color-light);
    border-color: var(--color-secondary);
    color: var(--color-head);
}
.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-body);
    transition: var(--transition);
}
.button-arrow span {
    position: relative;
}
.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 {
    margin-left: clamp(5px, calc((8 / 1600) * 100vw), 8px);
    font-size: clamp(10px, calc((13 / 1600) * 100vw), 13px);
}
.image {
    overflow: hidden;
}
.image img {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    object-position: center;
}
.img-element {
    position: absolute;
    width: auto;
    z-index: -1;
    animation: var(--animfloat-y);
    pointer-events: none;
}
.img-element img {
    width: auto;
}
.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 {
    margin-top: 0;
}
.row > * {
    margin-top: 0;
    margin-bottom: var(--bs-gutter-y);
}
.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;
}
.site {
    background-position: top right;
    background-repeat: no-repeat;
}

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

/* HELLO BAR */
#hello-bar {
    top: 0;
    margin-bottom: clamp(11px, calc((23 / 1600) * 100vw), 23px);
}
.sticky #hello-bar {
    /* margin-bottom: 5px; */
}
#hello-bar a {
    display: block;
    padding: clamp(8px, calc((14 / 1600) * 100vw), 14px) 0;
    font-size: clamp(11px, calc((14 / 1600) * 100vw), 14px);
    line-height: clamp(15px, calc((18 / 1600) * 100vw), 18px);
    color: var(--color-light);
    font-weight: var(--weight-bold);
    background: var(--gradient1);
    transition: var(--transition);
}
#hello-bar a span {
    text-decoration: underline;
}

/* HEADER */
#header {
    position: sticky;
    width: 100%;
    padding-bottom: clamp(13px, calc((22 / 1600) * 100vw), 22px);
    transition: var(--transition);
}
#header.sticky {
    background-color: var(--color-light);
    box-shadow: var(--box-shadow);
    /* padding-bottom: 5px; */
}
.header .header__logo a img {
    height: clamp(70px, calc((90 / 1600) * 100vw), 90px);
}
.sticky.header .header__logo a img {
    height: clamp(35px, calc((60 / 1600) * 100vw), 60px);
}
.header .header__phone {
    margin-right: clamp(15px, calc((29 / 1600) * 100vw), 29px);
}
.header .header__phone a {
    font-size: clamp(18px, calc((21 / 1600) * 100vw), 21px);
    color: var(--color-head);
    font-weight: var(--weight-bold);
}
.header .header__phone a::before {
    height: clamp(1px, calc((3 / 1600) * 100vw), 3px);
    background-color: var(--color-primary);
    border-radius: 2px;
}
.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 {
    padding: clamp(12px, calc((16 / 1600) * 100vw), 16px) clamp(30px, calc((40 / 1600) * 100vw), 40px);
    font-size: clamp(14px, calc((17 / 1600) * 100vw), 17px);
}
.header__navigation {
    transform: translateY(15px);
}
.sticky .header__navigation {
    transform: translateY(0);
}

/* 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 3px;
    font-family: var(--font-body);
    font-size: clamp(17px, calc((19 / 1600) * 100vw), 19px);
    line-height: var(--ps-lh);
    font-weight: var(--weight-semi-bold);
    color: var(--color-head);
}
.navbar .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: clamp(1px, calc((3 / 1600) * 100vw), 3px);
    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);
    color: var(--color1);
    border: 0;
    transform: translateY(-50%);
}
.navbar .navbar-nav .dropdown .dropdown > .dropdown-item::after {
    content: "\f105";
    right: 15px;
}
.navbar .navbar-nav .dropdown .dropdown-menu {
    top: 40px;
    left: -15px;
    display: block;
    min-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: 22px; 
	height: 2px;
	margin: 4px 0;
	background-color: var(--color-head);
	transition: var(--transition);
}
.navbar-toggler {
    margin-left: clamp(20px, calc((50 / 1600) * 100vw), 50px);
    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);
}

/* HERO */
#hero {
    position: relative;
}
.hero__element {
    position: absolute;
    top: -90%;
    right: -54%;
    height: clamp(440px, calc((790 / 1600) * 100vw), 790px);
    width: auto;
    z-index: -1;
    animation: var(--animfloat-y);
}
.home .hero-basic {
    padding-top: 22px;
}
 body:not(.home) .hero-basic {
    padding-bottom: 0;
}
.hero-image {
    padding-top: clamp(20px, calc((30 / 1600) * 100vw), 30px);
    padding-bottom: 0;
}
.hero__video {
    width: 100%;
    margin: 0 auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    aspect-ratio: 1/1;
    overflow: hidden;
}
.hero__video video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 1/1;
    border-radius: 50%;
}
.hero__img img {
    height: clamp(230px, calc((536 / 1600) * 100vw), 536px);
    width: 100%;
    object-fit: cover;
    border-radius: var(--border-radius2);
}
.page-id-22 .hero__img img {
  height: clamp(260px, calc((590 / 1600) * 100vw), 590px);
}
.hero__st {
    margin-bottom: clamp(8px, calc((23 / 1600) * 100vw), 23px);
    font-size: clamp(12px, calc((23 / 1600) * 100vw), 23px);
    text-transform: uppercase;
}
.hero-image .hero__st {
    margin-bottom: clamp(8px, calc((15 / 1600) * 100vw), 15px);
}
.page-service .hero__st {
    margin-bottom: clamp(8px, calc((20 / 1600) * 100vw), 20px);
    font-size: clamp(25px, calc((38 / 1600) * 100vw), 38px);
    line-height: clamp(35px, calc((49 / 1600) * 100vw), 49px);
    color: var(--color17);
    text-transform: none;
}
.hero__h {
  margin-bottom: clamp(18px, calc((22 / 1600) * 100vw), 22px);
  letter-spacing: -1px;
}
.home .hero__h {
    margin-bottom: clamp(18px, calc((32 / 1600) * 100vw), 32px);
}
.hero-image .hero__h {
    margin-bottom: clamp(18px, calc((26 / 1600) * 100vw), 26px);
}
.page-service .hero__h {
    margin-bottom: clamp(7px, calc((13 / 1600) * 100vw), 13px);
}
.hero__p {
    margin-bottom: clamp(18px, calc((27 / 1600) * 100vw), 27px);
    font-size: clamp(17px, calc((21 / 1600) * 100vw), 21px);
    color: var(--color5);
}
.page-service .hero__p {
    margin-bottom: clamp(14px, calc((28 / 1600) * 100vw), 28px);
    font-size: clamp(15px, calc((19 / 1600) * 100vw), 19px);
    line-height: clamp(26px, calc((31 / 1600) * 100vw), 31px);
    color: var(--color13);
}

/* POST */
.post__back {
    display: flex;
    align-items: center;
    margin-top: clamp(1px, calc((10 / 1600) * 100vw), 10px);
    padding-top: clamp(20px, calc((42 / 1600) * 100vw), 42px);
    border-top: 1px solid var(--color14);
}
.post__back i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(30px, calc((52 / 1600) * 100vw), 52px);
    height: clamp(30px, calc((52 / 1600) * 100vw), 52px);
    margin-right: 10px;
    background-color: var(--color-secondary);
    color: var(--color-light);
    border-radius: 50%;
    transition: var(--transition);
}
.post__back span {
    font-size: clamp(15px, calc((19 / 1600) * 100vw), 19px);
    text-decoration: underline;
    font-weight: var(--weight-bold);
    color: var(--color-head);
}

.post-tax {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--color8);
    border-radius: var(--border-radius);
    background-color: var(--color-light);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0);
}
.post-tax__photo {
    min-height: 270px;
    background-size: cover;
    background-position: center; 
}
.post-tax__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: clamp(30px, calc((52 / 1600) * 100vw), 52px) clamp(25px, calc((55 / 1600) * 100vw), 55px) clamp(15px, calc((31 / 1600) * 100vw), 31px);
}
.post-tax__content-top {
    margin-bottom: clamp(15px, calc((34 / 1600) * 100vw), 34px);
}
.post-tax__time-box {
    margin-bottom: 6px;
}
.post-tax__cat {
    font-size: clamp(14px, calc((16 / 1600) * 100vw), 16px);
    line-height: clamp(18px, calc((21 / 1600) * 100vw), 21px);
    font-weight: var(--weight-medium);
    color: var(--color-secondary);
}
.post-tax__h {
    margin-bottom: clamp(10px, calc((19 / 1600) * 100vw), 19px);
    padding-bottom: clamp(10px, calc((23 / 1600) * 100vw), 23px);
    font-size: clamp(24px, calc((28 / 1600) * 100vw), 28px);
    line-height: clamp(28px, calc((32 / 1600) * 100vw), 32px);
    letter-spacing: -1px;
    border-bottom: 1px solid var(--color6);
}
.post-tax__p p {
    font-size: clamp(14px, calc((16 / 1600) * 100vw), 16px);
    line-height: clamp(18px, calc((24 / 1600) * 100vw), 24px);
}
.post-tax__btn {
    font-size: clamp(12px, calc((14 / 1600) * 100vw), 14px);
    color: var(--color-head);
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    transition: var(--transition);
}
.post-tax__btn i {
    margin-left: 5px;
    color: var(--color-secondary);
}

/* RESOURCE */
.resources-list-top {
    position: relative;
    padding-top: clamp(40px, calc((88 / 1600) * 100vw), 88px);
    padding-right: 8%;
    padding-bottom: clamp(40px, calc((62 / 1600) * 100vw), 62px);
    padding-left: 8%;
    background-image: var(--gradient2);
    border-radius: var(--border-radius);
}
.resources-list-top .post-tax {
    border: none;
}
.resources-list-top__content {
    padding: clamp(30px, calc((52 / 1600) * 100vw), 52px) clamp(30px, calc((65 / 1600) * 100vw), 65px) 0;
}
.resources-list-top__h {
    margin-bottom: clamp(10px, calc((23 / 1600) * 100vw), 23px);
}
.resources-list-top__p p {
  font-size: clamp(14px, calc((19 / 1600) * 100vw), 19px);
  line-height: clamp(18px, calc((29 / 1600) * 100vw), 29px);
  color: var(--color5);
}
.resources-list-top__content-top {
    margin-bottom: clamp(7px, calc((13 / 1600) * 100vw), 13px);
}
.resources-list-top__content-bottom {
  margin-bottom: -25px;
}
.resources-list-top__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(58px, calc((85 / 1600) * 100vw), 85px);
    height: clamp(58px, calc((85 / 1600) * 100vw), 85px);
    margin-bottom: 0;
    border-radius: 50%;
    background-color: var(--color-secondary);
    transition: var(--transition);
}
.resources-list-top__btn i {
    font-size: clamp(15px, calc((22 / 1600) * 100vw), 22px);
    color: var(--color-light);
}
.resources-list-bottom {
    position: relative;
    padding-top: clamp(40px, calc((100 / 1600) * 100vw), 100px);
    padding-bottom: clamp(20px, calc((40 / 1600) * 100vw), 40px);
}
.resources-list-bottom__element {
    top: 20%;
    right: -37%;
    height: clamp(410px, calc((890 / 1600) * 100vw), 890px);
}

/* SINGLE POST */
.page-single__wrapper {
    position: relative;
    padding-top: 35px;
}
#single-wrapper .read-time {
    padding: 5px 15px;
    color: var(--color-secondary);
    text-transform: uppercase;
    background-color: var(--color-light);
    border: 1px solid var(--color-secondary);
}
#single-wrapper .read-time i {
    padding-right: 8px;
}
#single-wrapper .news .author {}
#single-wrapper .news .author p {}
#single-wrapper .news .author time {}
#single-wrapper .post-tax__photo {
    margin-bottom: 30px;
}

/* RESOURCE SEC 1 */
.resource-sec1__container {
    padding-left: 4%;
    padding-right: 4%;
    border-radius: var(--border-radius);
    background-image: var(--gradient2);
}
.resource-sec1__p {
    margin-bottom: 0;
    font-size: clamp(18px, calc((22 / 1600) * 100vw), 22px);
    line-height: clamp(30px, calc((36 / 1600) * 100vw), 36px);
    color: var(--color12);
}

/* RESOURCE SEC 2 */
.resource-sec2 {
    padding-top: clamp(40px, calc((63 / 1600) * 100vw), 63px);
    padding-bottom: 0;
}
.resource-sec2-col {
    margin-bottom: clamp(15px, calc((30 / 1600) * 100vw), 30px);
}
.resource-sec2-h {
    letter-spacing: -1px;
}
.resource-sec2-p p {
    margin-bottom: clamp(22px, calc((32 / 1600) * 100vw), 32px);
    font-size: clamp(15px, calc((19 / 1600) * 100vw), 19px);
    line-height: clamp(25px, calc((31 / 1600) * 100vw), 31px);
    color: var(--color13);
}
.resource-sec2-p ul {
    color: var(--color-head);
}
.resource-sec2-p ul li {
    margin-bottom: clamp(7px, calc((15 / 1600) * 100vw), 15px);
}
.entry-content ul li::before {
  top: -2px;
}

/* RESOURCE SEC 3 */
.resource-sec3__container {
    position: relative;
    padding-top: clamp(40px, calc((62 / 1600) * 100vw), 62px);
    padding-right: 4%;
    padding-bottom: clamp(40px, calc((60 / 1600) * 100vw), 60px);
    padding-left: 4%;
    border-radius: var(--border-radius);
    background-image: var(--gradient2);
}
.resource-sec3__quote {
    position: absolute;
    top: -12px;
    left: 9%;
}
.resource-sec3__quote img {
    height: clamp(35px, calc((45 / 1600) * 100vw), 45px);
    width: auto;
}
.resource-sec3__p {
    margin-bottom: 0;
    font-size: clamp(18px, calc((24 / 1600) * 100vw), 24px);
    line-height: clamp(30px, calc((36 / 1600) * 100vw), 36px);
    color: var(--color13);
}

/* RESOURCE SEC 4 */
.resource-sec4 {
    padding-top: clamp(25px, calc((48 / 1600) * 100vw), 48px);
}

/* RECENT POSTS */
.recent-posts {
    position: relative;
}
.recent-posts__element {
    top: -10%;
    right: -37%;
    height: clamp(410px, calc((890 / 1600) * 100vw), 890px);
}
.recent-posts__wrapper {
    margin-bottom: clamp(60px, calc((124 / 1600) * 100vw), 124px);
    padding-top: clamp(40px, calc((75 / 1600) * 100vw), 75px);
    padding-right: 9%;
    padding-bottom: clamp(40px, calc((58 / 1600) * 100vw), 58px);
    padding-left: 9%;
    border-radius: var(--border-radius);
    background-image: var(--gradient2);
}
.recent-posts .post-tax {
    border: none;
}

/* PAGINATION */
.pagination,
.sitemap-by-click5_pagination {
    justify-content: center;
    margin: clamp(26px, calc((56 / 1600) * 100vw), 56px) 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 / 1600) * 100vw), 15px);
    font-size: clamp(18px, calc((21 / 1600) * 100vw), 21px);
    color: var(--color-head);
    font-weight: var(--head-weight);
    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 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 51px;
    height: 51px;
    margin: 0 clamp(20px, calc((40 / 1600) * 100vw), 40px);
    color: var(--color-light);
    background-color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
    border-radius: 50%;
}
.pagination .page-item .page-link.next i,
.pagination .page-item .page-link.prev i {
   font-size: clamp(12px, calc((14 / 1600) * 100vw), 14px);
}
.pagination .page-item.active .page-link,
.sitemap-by-click5_pagination strong {
    color: var(--color-secondary);
    text-decoration: underline;
}

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

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

/* RESOURCE SEC 0 */
.resource-sec0 {
    padding-bottom: 0;
}
.resource-sec0 .entry-content:not(blockquote) > * {
    padding-left: 6%;
    padding-right: 6%;
}
.resource-sec0 .entry-content h2 {
    margin-top: clamp(32px, calc((633 / 1600) * 100vw), 63px);
}
.resource-sec0 .entry-content p {
  margin-bottom: clamp(22px, calc((32 / 1600) * 100vw), 32px);
  font-size: clamp(15px, calc((19 / 1600) * 100vw), 19px);
  line-height: clamp(25px, calc((31 / 1600) * 100vw), 31px);
  color: var(--color13);
}
.resource-sec0 .entry-content p a {
	text-decoration: underline;
	text-underline-offset: 4px;
}
.resource-sec0 .entry-content p a:hover {
	text-decoration: none;
}
.resource-sec0 .entry-content ul {
    color: var(--color-head);
}
.resource-sec0 .entry-content blockquote {
    position: relative;
    margin-top: clamp(32px, calc((633 / 1600) * 100vw), 63px);
    margin-bottom: clamp(24px, calc((48 / 1600) * 100vw), 48px);
    padding-top: clamp(40px, calc((62 / 1600) * 100vw), 62px);
    padding-right: 15%;
    padding-bottom: clamp(40px, calc((60 / 1600) * 100vw), 60px);
    padding-left: 15%;
    border-radius: var(--border-radius);
    background-image: var(--gradient2);
    text-align: center;
}
.resource-sec0 .entry-content blockquote:before {
    content: '';
    position: absolute;
    top: -12px;
    left: 9%;
    height: 70px;
    width: 70px;
    background-repeat: no-repeat;
    background-size: clamp(35px, calc((45 / 1600) * 100vw), 45px);
    background-image: url('/wp-content/uploads/2025/09/quote.webp');
    pointer-events: none;
}
.resource-sec0 .entry-content blockquote p {
    margin-bottom: 0;
    font-size: clamp(18px, calc((24 / 1600) * 100vw), 24px);
    line-height: clamp(30px, calc((36 / 1600) * 100vw), 36px);
    color: var(--color13);
}

/* FAQ SEC 1 */
.faq-sec1 {
    position: relative;
    padding-top: clamp(30px, calc((60 / 1600) * 100vw), 60px);
    padding-bottom: clamp(35px, calc((70 / 1600) * 100vw), 70px);
}
.faq-sec1__h {
    font-size: clamp(30px, calc((45 / 1600) * 100vw), 45px);
}

/* FAQ SEC 2 */
.faq-sec2 {
    padding-top: 0;
    padding-bottom: clamp(40px, calc((90 / 1600) * 100vw), 90px);
}
.faq-sec2__container {
    padding-top: clamp(55px, calc((110 / 1600) * 100vw), 110px);
    padding-right: 8%;
    padding-bottom: clamp(45px, calc((90 / 1600) * 100vw), 90px);
    padding-left: 8%;
    background-image: var(--gradient2);
}

/* FAQ */
#faq-wrapper .accordion-header h3 {
    position: relative;
    margin-bottom: 0;
    padding: clamp(15px, calc((37 / 1600) * 100vw), 37px) 11%;
    font-size: clamp(18px, calc((26 / 1600) * 100vw), 26px);
    line-height: var(--h6-lh);
    letter-spacing: -1px;
    color: var(--color-head);
    font-weight: var(--weight-medium);
    cursor: pointer;
    transition: var(--transition);
}
#faq-wrapper {
    position: relative;
}
#faq-wrapper .accordion-item {
    position: relative;
    border-radius: var(--border-radius3);
}
#faq-wrapper .accordion-item:not(.active)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--color-light);
    transform: translateX(-50%);
}
#faq-wrapper .accordion-item:last-of-type::after {
    display: none;
}
#faq-wrapper .accordion-header h3 {
    position: relative;
    margin-bottom: 0;
    padding: clamp(15px, calc((37 / 1600) * 100vw), 37px) 0 clamp(15px, calc((37 / 1600) * 100vw), 37px) 10%;
    font-size: clamp(18px, calc((26 / 1600) * 100vw), 26px);
    line-height: var(--h6-lh);
    letter-spacing: -1px;
    color: var(--color-head);
    font-weight: var(--weight-medium);
    cursor: pointer;
    transition: var(--transition);
}
.accordion-item.active {
  background-color: var(--color-light);
}
.accordion-item.active {
  margin-top: clamp(15px, calc((37 / 1600) * 100vw), 37px);
}
#faq-wrapper .accordion-item.active .accordion-header h3 {
    padding: clamp(35px, calc((70 / 1600) * 100vw), 70px) 11% clamp(7px, calc((15 / 1600) * 100vw), 15px);
    font-size: clamp(24px, calc((36 / 1600) * 100vw), 36px);
    line-height: var(--h5-lh);
    font-weight: var(--head-weight);
}
#faq-wrapper .accordion-header h3::before {
    content: "+";
    position: absolute;
    top: 50%;
    left: 1%;
    color: var(--color-primary);
    transform: translateY(-50%);
}
#faq-wrapper .accordion-header h3[aria-expanded="true"]::before {
    content: "-";
    top: 69%;
}
#faq-wrapper .accordion-body {
    padding: 0 11% clamp(32px, calc((64 / 1600) * 100vw), 64px);
}
#faq-wrapper .accordion-body p:last-of-type {
    margin-bottom: 0;
    font-size: clamp(15px, calc((19 / 1600) * 100vw), 19px);
    line-height: clamp(25px, calc((32 / 1600) * 100vw), 32px);
    color: var(--color13);
}
#faq-wrapper .accordion-body p a {
	text-decoration: underline;
	text-underline-offset: 4px;
}
#faq-wrapper .accordion-body p a:hover {
	text-decoration: none;
}

/* REVIEWS */
.reviews {
    position: relative;
    padding-top: clamp(1px, calc((95 / 1600) * 100vw), 95px);
    padding-bottom: clamp(20px, calc((70 / 1600) * 100vw), 70px);
}
.page-service .reviews {
    padding-top: clamp(30px, calc((61 / 1600) * 100vw), 61px);
}
.review:not(:last-of-type) {
    border-bottom: 1px solid var(--color2);
}
.reviews__col {
    position: relative;
}
.reviews__bcg {
    top: 16%;
    left: -20%;
    height: clamp(400px, calc((830 / 1600) * 100vw), 830px);
}
.review-slider__content {
    position: relative;
}
.reviews__h {
    font-size: var(--h5-fs);
    line-height: var(--h5-lh);
}
.reviews__title {
    margin-bottom: clamp(12px, calc((35 / 1600) * 100vw), 35px);
    padding-top: 17px;
    font-size: clamp(20px, calc((32 / 1600) * 100vw), 32px);
    line-height: var(--h4-lh);
}
.reviews__title::first-letter {
  padding-left: clamp(50px, calc((80 / 1600) * 100vw), 80px);
}
.review__item {
    position: relative;
    margin: 0;
    margin-bottom: clamp(20px, calc((40 / 1600) * 100vw), 40px);
}
.review:not(:nth-of-type(1)):not(:nth-of-type(2)) .review__item {
    padding-top: clamp(20px, calc((40 / 1600) * 100vw), 40px);
}
.review__item::before {
    content: '„';
    position: absolute;
    bottom: 69px;
    right: 0;
    font-family: var(--font-head);
    font-size: clamp(60px, calc((140 / 1600) * 100vw), 140px);
    font-weight: var(--head-weight);
    font-style: normal;
    color: var(--color-primary);
    opacity: 0.4;
}
.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__img img {
    height: clamp(290px, calc((700 / 1600) * 100vw), 700px);
    width: 100%;
    border-radius: var(--border-radius);
    object-fit: cover;
}

/* REVIEWS SLIDER */
.review-slider .slick-track {}
.review-slider__review {}
.review-slider__content {}
.review-slider__img {
    margin-right: clamp(13px, calc((20 / 1600) * 100vw), 20px);
}
.review-slider__img img {
    border-radius: 50%;
    height: clamp(50px, calc((70 / 1600) * 100vw), 70px);
    width: auto;
    object-fit: cover;
}
.review-slider__opinion {
    margin-bottom: clamp(23px, calc((63 / 1600) * 100vw), 63px);
    font-size: clamp(15px, calc((25 / 1600) * 100vw), 25px);
    line-height: clamp(23px, calc((40 / 1600) * 100vw), 40px);
    color: var(--color-head);
}
.review-slider__customer {
    margin-bottom: 0;
    font-size: clamp(13px, calc((19 / 1600) * 100vw), 19px);
    line-height: clamp(16px, calc((26 / 1600) * 100vw), 26px);
    color: var(--color-head);
    font-weight: var(--weight-bold);
}
.review-slider__overview {}
.review-slider__info {
    margin-bottom: 0;
    font-size: clamp(11px, calc((17 / 1600) * 100vw), 17px);
    line-height: clamp(14px, calc((24 / 1600) * 100vw), 24px);
    color: var(--color7);
}
.review-slider__quote img {
    position: absolute;
    /* top: -14px; */
    top: 0;
    left: 11px;
    width: clamp(40px, calc((60 / 1600) * 100vw), 60px);
    height: auto;
}
.review-slider .slick-dots {
  justify-content: flex-start;
}
.review-slider .slick-dots li {
  border-color: var(--color-primary);
}
.review-slider .slick-dots li.slick-active button {
  background-color: var(--color-primary);
}
.review-slider .slick-dots li::after {
  display: none;
}

/* 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 function */
.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 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(70px, calc((120 / 1600) * 100vw), 120px);
    height: clamp(70px, calc((120 / 1600) * 100vw), 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: clamp(25px, calc((50 / 1600) * 100vw), 50px);
    line-height: clamp(25px, calc((50 / 1600) * 100vw), 50px);
    color: var(--color-light);
    background: var(--color-primary);
    border: 0;
    border-radius: 50%;
    transform: translate(-50%,-50%);
    pointer-events: auto;
    transition: var(--transition);
}
.custom-video-play i {
    margin-right: -5px;
}

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

/* CONTACT FORM */
.form-field {
    position: relative;
    margin-bottom: 1rem;
}
.form-field br {
    display: none;
}
.form-field > label {
    margin: 0 0 0 14px;
    font-size: clamp(11px, calc((14 / 1600) * 100vw), 14px);
    color: var(--color5);
    font-weight: var(--weight-medium);
}
.modal__top .form-field > label {
    padding: 0 10px;
    background-color: var(--color-light);
    position: absolute !important;
    top: -15px;
    left: 20px;
    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: clamp(15px, calc((25 / 1600) * 100vw), 25px) clamp(15px, calc((30 / 1600) * 100vw), 30px);
    border: 1px solid var(--color16);
    border-radius: var(--border-radius1);
    box-shadow: 0 0 0 !important;
    outline: none;
    resize: none;
}
.form-control:focus {
    border-color: var(--color-primary);
}
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 .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 130px;
    margin: 0 auto;
    border: 0 !important;
    background-color: var(--color-primary);
    border-radius: 3px;
    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;
}
.modal  .wpcf7 form .wpcf7-response-output {
    margin: 20px 5% !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 {
    overflow-y: visible;
    overflow-x: clip;
}

/* SIDEBAR */
.sidebar__sub-col {
    margin-bottom: clamp(10px, calc((30 / 1600) * 100vw), 30px);
    padding: clamp(15px, calc((30 / 1600) * 100vw), 30px);
    border: 1px solid var(--color-primary);
    border-radius: var(--border-radius);
}
.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);
}

/* 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 {
    position: relative;
    color: var(--color-dark);
    background-image: var(--gradient2);
    z-index: 1;
}
.footer-top__row {
    padding-top: clamp(35px, calc((88 / 1600) * 100vw), 88px);
    padding-bottom: clamp(15px, calc((38 / 1600) * 100vw), 38px);
    border-bottom: 1px solid var(--color-light);
}
.footer-bottom__row {
    padding-top: clamp(26px, calc((30 / 1600) * 100vw), 30px);
    padding-bottom: 10px;
}
.footer-top__col,
.footer-bottom__col {
    margin-bottom: clamp(20px, calc((30 / 1600) * 100vw), 30px);
}
.footer__h {
    margin-bottom: clamp(3px, calc((6 / 1600) * 100vw), 6px);
    font-family: var(--font-head);
    font-size: clamp(16px, calc((17 / 1600) * 100vw), 17px);
    line-height: clamp(24px, calc((25 / 1600) * 100vw), 25px);
    color: var(--color-head);
    font-weight: var(--weight-bold);
}
.footer__p {
    margin-top: 23px;
    margin-bottom: 14px;
    font-size: clamp(14px, calc((15 / 1600) * 100vw), 15px);
    line-height: clamp(21px, calc((26 / 1600) * 100vw), 26px);
    color: var(--color-head);
}
.footer__p span {
    font-weight: var(--weight-bold);
}
.footer .footer__logo a img {
    height: clamp(80px, calc((90 / 1600) * 100vw), 90px);
}
.footer__address address {
    margin-bottom: 0;
    font-size: clamp(14px, calc((16 / 1600) * 100vw), 16px);
    line-height: clamp(22px, calc((26 / 1600) * 100vw), 26px);
    color: var(--color-head);
}
.footer__address address span {
    display: block;
    font-weight: var(--weight-bold);
}
.footer__contact-btn {
    width: clamp(215px, calc((240 / 1600) * 100vw), 240px);
    margin-bottom: 9px;
    padding: clamp(14px, calc((17 / 1600) * 100vw), 17px) 20px;
}
.footer__contact-phone {
    font-size: clamp(17px, calc((19 / 1600) * 100vw), 19px);
    font-weight: var(--weight-semi-bold);
}
.footer__contact-phone i {
    margin-right: 10px;
}
.footer__contact-modal {
    font-size: clamp(15px, calc((17 / 1600) * 100vw), 17px);
}
.footer__copy p {
    /* margin-top: 15px; */
    font-size: 13px;
    line-height: 27px;
    color: var(--color11);
}
.footer__copy a span {
    transition: var(--transition);
}
.footer .link {
    font-size: clamp(13px, calc((14 / 1600) * 100vw), 14px);
    color: var(--color-secondary);
}
.footer .link::before {
    background-color: var(--color-secondary);
}
.footer ul.menu {
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer ul.menu li a {
    position: relative;
    font-size: clamp(15px, calc((16 / 1600) * 100vw), 16px);
    color: var(--color-head);
}
.footer ul.menu li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-head);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
    
}
.footer ul.menu-support li {
    position: relative;
    padding: 0 15px;
}
.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: 1px;
    color: var(--color5);
}
.footer ul.menu-support li a {
    font-size: clamp(13px, calc((15 / 1600) * 100vw), 15px);
    color: var(--color5);
}
.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(50px, calc((52 / 1600) * 100vw), 52px);
    height: clamp(50px, calc((52 / 1600) * 100vw), 52px);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0 !important;
    text-align: center;
    padding: 0;
    margin: 0;
    background-color: var(--color-light);
    border: 1px solid var(--color-light);
    border-radius: 50%;
    transition: var(--transition);
}
.social-media ul li a::after {
    content: "";
    color: var(--color-head);
    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 0;
    background-color: var(--color-light);
    box-shadow: var(--box-shadow);
    z-index: 99;
}
.sticky-footer .col-sm-5 {
    flex: 0 0 calc(50% - 25px) !important;
    max-width: calc(50% - 25px) !important;
}
.sticky-footer .col-sm-2 {
    flex: 0 0 50px !important;
    max-width: 50px !important;
    padding-right: 0;
    padding-left: 0;
}
.sticky-footer .col-sm-2 img {
    max-height: 50px;
    margin: 0 auto;
}
.sticky-footer p {
    margin-bottom: 0;
}
.sticky-footer .col-sm-5:first-of-type p {
    padding-left: 5px;
}
.sticky-footer .col-sm-5:last-of-type p {
    padding-right: 5px;
}
