html, body {
    min-height: 100%;
    position: relative;
    color: #484848;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
}

:root {
    --main: #dd1846;
    --mainDarker: #ce1943;
    --second: #0099ff;
}

div.site {
    min-height: 100vh;
}

a {
    color: var(--main);
    text-decoration: none;
    transition: all .3s;
}
a:hover {
    color: var(--main);
    text-decoration: underline;
    text-underline-offset: 3px;
}

strong {
    font-weight: 600;
}

.wrapper {
    padding-top: 80px;
    padding-bottom: 80px;
}

.jmodedit,
div[role="tooltip"] {
    display: none !important;
}

.button {
    display: inline-block;
    height: 52px;
    color: #FFF;
    font-size: 14px;
    font-weight: 600;
    line-height: 50px;
    padding: 0 20px;
    position: relative;
    text-decoration: none;
    text-align: center;
    background: var(--main);
    border: 1px solid var(--main);
    border-radius: 3px;
    cursor: pointer;
    outline: none !important;
    transition: all .3s;
}
.button:hover {
    color: var(--main);
    text-decoration: none;
    background-color: transparent;
    outline: none;
}
.button.button-2 {
    color: var(--main);
    background-color: transparent;
}
.button.button-2:hover {
    color: #FFF;
    background-color: var(--mainDarker);
    border-color: var(--mainDarker);
}
.button.button-mini {
    height: 40px;
    line-height: 38px;
}
.button.button-mini:hover {
    color: #FFF;
    background-color: var(--mainDarker);
}

/* HEADER */

#header {
    position: sticky;
    top: 0;
    padding-top: 35px;
    padding-bottom: 35px;
    background-color: #FFF;
    box-shadow: 0 5px 3px rgba(0, 0, 0, 0.07);
    transition: all .3s;
    z-index: 1039;
}
#header.sticky {
    padding-top: 15px;
    padding-bottom: 15px;
}

#header .logo a {
	position: relative;
	display: inline-block;
}
#header .logo img {
    max-height: 30px;
}

/* NAV */

#nav {
    position: sticky;
	top: 0;
	transition: all .3s;
	z-index: 1030;
}

#nav .login-portal {
    position: relative;
}
#nav .login-menu {
    width: 335px;
    position: absolute;
    top: 60px; right: 0;
    padding: 20px 25px;
    background-color: #FFF;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
    z-index: -1111;
}
#nav .login-menu.active {
    visibility: visible;
    opacity: 1;
    z-index: 1020;
}
#nav .login-menu .item:not(:last-of-type) {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px dotted #ddd;
}
#nav .login-menu .item p:first-of-type {
    margin-bottom: 8px;
}
#nav .login-menu .item p {
    font-size: 14px;
}
#nav .login-menu .item .button-mini {
    width: 100%;
}
#nav .login-menu .close {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 26px;
    color: var(--main);
    cursor: pointer;
    transition: all .3s;
}
#nav .login-menu .close:hover {
    color: var(--mainDarker)
}

#nav .navbar {
    padding: 0;
    margin: 4px 20px 0 0;
}
#nav .navbar .nav {
	list-style: none;
	padding: 0;
    margin: 0 0 0 -13px;
}
#nav .navbar .nav > li {
	position: relative;
}
#nav .navbar .nav > li.parent:not(.item-131) > a::after {
    content: "\f107";
    position: relative;
    display: inline-block;
    color: var(--second);
    font-family: "Font Awesome 6 Free";
    font-size: 12px;
    font-weight: 700;
    top: 1px;
    margin-left: 6px;
}
#nav .navbar .nav > li > a,
#nav .navbar .nav > li > span {
    position: relative;
	display: block;
    color: #484848;
    font-size: 14px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    padding: 11px 12px 13px 12px;
    margin: 0;
	cursor: pointer;
}
#nav .navbar .nav > li.active > a,
#nav .navbar .nav > li.active > span,
#nav .navbar .nav > li > a:hover,
#nav .navbar .nav > li:hover > span {
    color: var(--second);
    text-decoration: none;
}
#nav .navbar .nav > li.item-131.deeper > ul {
    display: none;
}

#nav .navbar .nav > li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: -6px;
    z-index: 0;
    opacity: 0;
    width: 260px;
    background-color: #FFF;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    transition: all 0.3s ease-in;
}
#nav .navbar .nav > li:hover > ul,
#nav .navbar .nav > li:hover > ul > li:hover > ul {
    display: block;
    z-index: 10;
    opacity: 1;
}
#nav .navbar .nav > li ul > li {
    position: relative;
}
#nav .navbar .nav > li ul > li > a,
#nav .navbar .nav > li ul > li > span {
    display: block;
    color: #484848;
    letter-spacing: 0px;
    font-size: 14px;
	font-weight: 400;
    line-height: 100%;
    text-transform: none;
    padding: 14px 20px;
    transition: all 0.3s ease-in-out;
	cursor: pointer;
}
#nav .navbar .nav > li ul > li:hover > a, 
#nav .navbar .nav > li ul > li:hover > span, 
#nav .navbar .nav > li ul > li.active > a, 
#nav .navbar .nav > li ul > li.active > span {
	color: var(--second);
    text-decoration: none;
	/* background-color : #969696; */
}

#nav .navbar .nav > li ul > li > ul {
    top: 5px;
    left: 80%;
}
#nav .navbar .nav > li ul > li > ul > li > a {
    font-size: 14.5px;
    font-weight: 400;
}

#nav .navbar-toggle {
    display: none;
    border: none;
    background: transparent !important;
}
#nav .navbar-toggle .icon-bar {
    display: block;
    height: 2px;
    width: 22px;
    background-color: #161a1a;
    border-radius: 1px;
    transition: all 0.2s;
}
#nav .navbar-toggle .icon-bar + .icon-bar {
    margin-top: 4px;
}
#nav .navbar-toggle .top-bar {
    transform: rotate(45deg);
    transform-origin: 10% 10%;
}
#nav .navbar-toggle .middle-bar {
    opacity: 0;
}
#nav .navbar-toggle .bottom-bar {
    transform: rotate(-45deg);
    transform-origin: 10% 90%;
}
#nav .navbar-toggle.collapsed .top-bar {
    transform: rotate(0);
}
#nav .navbar-toggle.collapsed .middle-bar {
    opacity: 1;
}
#nav .navbar-toggle.collapsed .bottom-bar {
    transform: rotate(0);
}

/* SLIDER */

.slider {
    padding-top: 50px;
}
.slider .slide {
    position: relative;
	height: 436px; 
    padding-left: 15px;
    padding-right: 15px;
}
/* .slider .slide::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%; 
    background: #B4B5BC;
    background: -webkit-linear-gradient(0deg, rgba(180, 181, 188, 1) 0%, rgba(222, 222, 222, 1) 100%);
    background: -moz-linear-gradient(0deg, rgba(180, 181, 188, 1) 0%, rgba(222, 222, 222, 1) 100%);
    background: linear-gradient(0deg, rgba(180, 181, 188, 1) 0%, rgba(222, 222, 222, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#B4B5BC", endColorstr="#DEDEDE", GradientType=0);
    position: absolute;
    top: 0; left: 0;
} */
.slider .slide > * {
    position: relative;
    z-index: 4;
}
.slider .slide .bg {
    display: flex;
	flex-direction: column;
	justify-content: center;
    width: 100%;
    height: 100%;
    padding-left: 40px;
    background-size: cover;
	background-position: center;
    border-radius: 15px;
}
.slider .slide h2 {
    color: #000;
    font-size: 50px;
    font-weight: 400;
    line-height: 56px;
    letter-spacing: -1px;
    padding: 0;
    margin: 0;
}
.slider .slide p {
	color: #484848;
	font-size: 18px;
	font-weight: 400;
	line-height: 30px;
	letter-spacing: 0;
	padding: 20px 0 0 3px;
	margin: 0;
}
.slider .slide a {
	display: inline-block;
	height: 50px;
	color: #FFF;
    font-size: 14px;
	font-weight: 600;
	line-height: 48px;
    padding: 0 20px;
    position: relative;
    text-decoration: none;
	margin-top: 35px;
	background: var(--main);
	border: 1px solid var(--main);
    border-radius: 3px;  
	transition: all .3s;
} 
.slider .slide a:hover {
	color: var(--main);
    background-color: transparent;
}

.slider .slick-dots {
    margin-top: 15px !important;
}

/* BOXES */

.boxes {
	padding-top: 45px;
	padding-bottom: 45px;
}

.boxes .slick-track {
    display: flex !important;
}
.boxes .items .box {
    height: inherit !important;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    padding-top: 0 !important;
}
.boxes .box:nth-child(n+4),
.news .box:nth-child(n+3) {
    padding-top: 25px;
}
.news .box .item {
    height: 100%;
}
.boxes .box a,
.news .box a {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 15px;
}
.boxes .box a:hover,
.news .box a:hover {
    text-decoration: none;
    cursor: default; 
    /* border-color: var(--main);
    transform: translateY(-10px); */
}
.news .box a:hover {
    text-decoration: none;
    /* border-color: var(--main); */
}
.boxes .box .photo {
    display: block;
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    border-radius: 15px; 
}
.boxes .box .content,
.news .box .content {
    flex: 1;
    padding: 25px 25px 10px 25px;
}
.boxes .box .content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.boxes .box .content > div {
    flex: 1;
    width: 100%;
}
.news .box .content time {
    display: block;
    color: #7f7f7f;
    font-size: 12px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0 0 15px 0;
    margin: 0;
}
.boxes .box .content h3,
.news .box .content h3 {
    color: #000;
    font-size: 24px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0 0 15px 0;
    margin: 0;
}
.news .box .content h3 {
    font-weight: 400;
}
.boxes .box a[href] .content h3:hover,
.news .box .content h3:hover {
    color: var(--main);
    cursor: pointer;
}
/* .boxes .box a:hover .content h3,
.news .box a:hover .content h3 {
    color: var(--main);
} */
.boxes .box .content p,
.news .box .content p,
.about .content p {
    color: #484848;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
    padding: 0;
    margin: 0;
}
.boxes .box .content span {
    display: inline-block;
    min-width: 150px;
    color: #FFF;
    font-size: 14px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    padding: 12px 20px;
    margin: 20px 0 0 0;
    background-color: var(--main);
    border: 1px solid var(--main);
    border-radius: 3px;
}
.boxes .box .content span:hover {
    color: var(--main);
    background-color: transparent;
    cursor: pointer;
}

/* NEWS */

.news {
    padding-bottom: 45px;
}
.boxes .headline h2,
.news .headline h2,
.about .content h2 {
    color: #484848;
    font-size: 42px;
    font-weight: 400;
    line-height: 50px;
    letter-spacing: 0;
    padding: 0 0 30px 0;
    margin: 0;
}
.news .headline h2 {
    text-align: center;
}
.news .box .content p {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news .all a {
    display: inline-block;
    color: var(--main);
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0;
    padding: 11px 20px;
    margin: 30px 0 0 0;
    border: 1px solid var(--main);
    border-radius: 3px;
}
.news .all a:hover {
    color: #FFF;
    text-decoration: none;
    background-color: var(--main);
}

.com-content-category-blog__navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
}
.com-content-category-blog__counter {
    padding: 0 !important;
    margin: 0 !important;
}
.com-content-category-blog__pagination ul.pagination {
    margin-bottom: 0 !important;
}
.com-content-category-blog__pagination ul.pagination > li:first-of-type,
.com-content-category-blog__pagination ul.pagination > li:nth-child(2),
.com-content-category-blog__pagination ul.pagination > li:nth-last-child(2),
.com-content-category-blog__pagination ul.pagination > li:last-of-type {
    display: none;
}
.page-link {
    color: var(--main);
    border-radius: 3px;
}
.active>.page-link, .page-link.active {
    background-color: var(--main);
    border-color: var(--main);
}
.page-item:not(:first-child) .page-link {
    margin-left: 5px;
}

/* ABOUT */

.about {
    padding-bottom: 45px;
}
.about .content {
    padding-left: 40px;
}
.about .photo {
    display: block;
    background-color: #eee;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
}
.about .photo.p-1 {
    width: 100%;
    height: 360px;
}
.about .photo.p-2 {
    width: 360px;
    height: 240px;
    margin-left: auto;
    margin-top: -160px;
    background-color: #ddd;
}

/* LINKS */

.links {
	max-width: 100%;
	margin: 0 auto;
	padding-top: 55px;
	padding-bottom: 55px;
	background: linear-gradient(to right,#f0f0f0 0,#f0f0f0 calc((.75 * 1270px) + ((100vw - 1270px)/ 2) - 2 * 15px),#eaeaea calc((.75 * 1270px) + ((100vw - 1270px)/ 2) - 2 * 15px),#eaeaea 100%);
}
.links .box h4 {
	color: #000;
    letter-spacing: 0px;
    font-size: 30px;
    font-weight: 400;
    margin: 0 0 35px 0;
    padding: 0;
    border-bottom: 0px solid #555555;
    transition: all 0.4s ease-in-out;
}
.links .box ul { 
    flex-direction: column;
	list-style: none;
	padding: 0;
	margin: 0;
}
.links .box ul li {
	margin-top: 5px;
}
.links .box p,
.links .box ul li a {
	display: inline-block;
	color: #484848;
	font-size: 14px;
	font-weight: 400;
	line-height: 28px;
	letter-spacing: 0;
	padding: 0;
	margin: 0;
}
.links .box ul li a:hover {
    color: var(--main);
    text-decoration: none
}
.links .box .phone {
    display: inline-block;
    font-size: 32px;
    margin-top: 10px;
    margin-bottom: 5px;
}
.links .box .phone:hover {
    text-decoration-thickness: 1px;
}
.links .box .mod-custom.custom {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.links .contact-form {
    max-width: 100%;
    flex: 0 0 100%;
    padding: 0;
}
.links .contact-form > h3,
.links .contact-form > p {
    display: none;  
}

/* FOOTER*/

#footer {
	padding-top: 30px;
	padding-bottom: 30px;
}

#footer .copy p {
	color: #484848;
	font-size: 14px;
    font-weight: 400;
}
#footer .copy p strong {
    font-weight: 600;
}

#footer .menu a { 
    color: #484848;
    font-size: 14px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -0.15px;
    padding: 0;
    margin: 0;
}
#footer .menu a:hover {
    color: var(--main);
    text-decoration: none;
}
#footer .menu a:not(:last-of-type) {
    margin-right: 20px;
}

#footer .social-media a,
.scroll-to-top {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    color: #000;
    border: 1px solid #484848;
    border-radius: 50%;
    margin-left: 10px;
    cursor: pointer;
}
#footer .social-media a:hover {
    color: var(--main);
    text-decoration: none;
    border-color: var(--main);
}

/* CONTACT FORM SIDEBAR */

.form-label {
    position: relative;
    display: inline-block;
    color: #7f7f7f;
    font-size: 11px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0 5px;
    margin: 0 0 0 11px;
    background-color: #fff;
    transform: translateY(10px);
}
.form-control {
    width: 100%;
    padding: 10px 15px 7px 15px;
    color: #484848;
    font-size: 14px;
    border: 1px solid #d6d6d6;
    border-radius: 4px;
}
textarea.form-control {
    min-height: 140px;
    resize: none;
}

.form-check {
    margin-top: 10px;
}
.form-check-label {
    color: #7f7f7f !important;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
    padding: 0;
    margin: 0;
}
.form-check-input {
    border-color: #d6d6d6;
}

.form-submit {
    min-width: 150px;
    margin: 20px auto 0;
}

.map-filters input,
.map-filters select {
    outline: none;
}
.map-filters input:focus,
.map-filters select:focus {
    border-color: var(--main);
}
.map-filters label {
    position: absolute;
    top: -7px; left: 15px;
    color: #7f7f7f;
    font-size: 11px;
    padding: 0 4px;
    background-color: #fff;
}
.map-filters .field {
    width: 49%;
    margin-top: 8px;
}

/* SUBPAGE */

#main .article {
    padding-top: 65px;
    padding-bottom: 65px;
}

/* #main .article .col-xl-8 {
    padding-right: 60px;
} */

.page-header,
.box-headline {
    margin-bottom: 35px;
}
.page-header h1,
.box-headline h1 {
    color: #000;
    font-size: 50px;
    font-weight: 400;
    line-height: 57px;
    letter-spacing: 0;
    padding: 0;
    margin: 0;
}

.item-page .icons {
    display: none !important;
}

.item-page h1, 
.item-page h2,
.item-page h3,
.item-page h4,
.item-page h5,
.item-page h6 {
    padding: 20px 0;
}
.item-page > h1:first-child, 
.item-page > h2:first-child,
.item-page > h3:first-child,
.item-page > h4:first-child,
.item-page > h5:first-child,
.item-page > h6:first-child {
    padding-top: 0;
}

.item-page h1 {
    color: #000;
    font-size: 50px;
    font-weight: 400;
    line-height: 57px;
    letter-spacing: 0;
    margin-bottom: 0;
}
.item-page h2 {
    color: #000;
    font-size: 42px;
    font-weight: 400;
    line-height: 50px;
    letter-spacing: 0;
    margin-bottom: 0;
}
.item-page h3 {
    color: #000;
    font-size: 30px;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: 0;
    margin-bottom: 0;
}
.item-page h4 {
    color: #000;
    font-size: 24px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: 0;
    margin-bottom: 0;
}
.item-page h5, .item-page h6 {
    color: #000;
    font-weight: 400;
    margin-bottom: 0;
}

.item-page .article-info {
    display: none;
}

.item-page p,
.item-page ul li,
.item-page ol li {
    color: #484848;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
    padding: 0;
}
.item-page [itemprop="articleBody"] > h2,
.item-page [itemprop="articleBody"] > h3,
.item-page [itemprop="articleBody"] > h4,
.item-page [itemprop="articleBody"] > h5,
.item-page [itemprop="articleBody"] > p,
.item-page [itemprop="articleBody"] [class^="col-xl-"] > h2,
.item-page [itemprop="articleBody"] [class^="col-xl-"] > h3,
.item-page [itemprop="articleBody"] [class^="col-xl-"] > h4,
.item-page [itemprop="articleBody"] [class^="col-xl-"] > h5,
.item-page [itemprop="articleBody"] [class^="col-xl-"] > p {
    padding-left: calc(var(--bs-gutter-x) * .5);
    padding-right: calc(var(--bs-gutter-x) * .5);
}
.item-page p:last-of-type {
    margin-bottom: 0;
}
.item-page p strong,
.item-page p b {
    font-weight: 600;
}
.item-page p:empty {
    margin-bottom: 0;
}

.item-page img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.item-page ul,
.item-page ol {
    margin-top: 20px;
}
.item-page ul {
    list-style: none;
    padding-left: 20px;
}
.item-page ul li {
    position: relative;
    padding-left: 30px;
    margin-top: 3px;
}
.item-page ul li::before {
    content: "→";
    font-family: "Arial";
    position: absolute;
    left: 0;
}

.item-page .gallery a {
	margin-top: 25px;
}
.item-page .gallery img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

/* .blog > .row {
    margin-top: -25px;
}
.blog .post {
    margin-top: 25px;
}
.blog .item {
	transition: all .3s;
}
.blog .item:hover {
    text-decoration: none;
	background-color: var(--main);
}
.blog .item .item-image {
    height: 210px;
    margin: 0;
}
.blog .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog .item .content a {
    display: block;
    padding: 25px 30px;
    border: 1px solid #ddd;
    border-top: 0;
}
.blog .item:hover .content a {
    border-color: var(--main);
} 
.blog .item .content h3 {
    color: #303030;
    font-size: 16px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0;
    text-transform: uppercase;
    padding: 0;
	margin: 0;
}
.blog .item:hover .content h3 {
	color: #FFF;
}
.blog .item .content p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    color: #000;
    font-size: 18px;
    font-weight: 300;
    line-height: 32px;
    letter-spacing: 0.18px;
    padding: 0;
    margin: 0;
    overflow: hidden;
} */

/* TEXT + IMAGE */

.text-images .row:first-of-type {
    padding-top: 0 !important;
}
.text-images .row:nth-child(even) {
    flex-direction: row-reverse;
}

.text-images.client-portals .content img.photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
}
.text-images.client-portals .accordion-items .items,
.text-images.client-portals .boxes-icons .box {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}
.text-images.client-portals .boxes-icons {
    padding-top: 30px;
    padding-bottom: 0;
}

/* HERO */

.hero-module {
    margin-bottom: 5px;
}
.hero-module .row {
    background-color: #f9f9fa;
}
.hero-module .content .box {
    display: block;
    width: 100%;
    padding: 20px 50px;
}
.hero-module .photo {
    display: block;
    height: 440px;
}
.hero-module .photo > div {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

/* ANCHORS */

.moduletable.sticky-top {
    top: 80px;
}

.anchor-items {
    padding-bottom: 20px;
}
.anchor-items ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #FFF;
    border-bottom: 1px solid #d8d8d8;
}
.anchor-items ul li {
    padding: 0;
}
.anchor-items ul li::before {
    display: none;
}
.anchor-items ul li a {
    display: inline-block;
    color: #484848;
    padding: 25px 20px;
}
.anchor-items ul li a::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--main);
    position: absolute;
    bottom: -1px; left: 0;
    visibility: hidden;
    opacity: 0;
}
.anchor-items ul li a:hover,
.anchor-items ul li a.active {
    color: var(--main);
}
.anchor-items ul li a:hover::after,
.anchor-items ul li a.active::after {
    visibility: visible;
    opacity: 1;
}

/* TEXT */

.mod-custom.custom,
.benefit-items .row,
.accordion-items,
.boxes-icons,
.tabs,
.tab-content {
    padding-top: 50px;
    padding-bottom: 50px;
}
.mod-custom.custom h2:first-child {
    padding-top: 0;
}

/* BENEFITS */

.benefit-items .row {
    background-color: #f9f9fa;
}
.page-id-160 .benefit-items .row {
    background-color: #fff;
}

.benefit-items .headline .title {
    padding-top: 0;
    margin-bottom: -25px;
}
.benefit-items .item {
    width: 25%;
    padding-top: 25px;
    padding-left: 30px;
    padding-right: 30px;
}
.benefit-items .item img {
    max-height: 110px;
}
.page-id-160 .benefit-items .item p b {
    color: var(--second);
    font-size: 150%;
}

/* ACCORDIONS */

.accordion-items .accordion-title {
    font-weight: 400;
    text-align: center;
}
.accordion-items .accordion-title:not(:first-of-type) {
    padding-top: 50px;
}
.accordion-items .accordion-item {
    border: 0;
    border-top: 1px solid #eaeaea;
    border-radius: 0;
    background-color: transparent;
}
.accordion-items .accordion-item:last-of-type {
    border-bottom: 1px solid #eaeaea;
}
.accordion-items .accordion-header {
    padding: 0;
}
.accordion-items .accordion-header .accordion-button {
    color: #484848;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
    padding: 20px;
    margin: 0;
    background-color: transparent;
    border: 0;
    box-shadow: unset;
}
.accordion-items .accordion-body {
    padding-top: 0;
}
.accordion-button::after {
    content: "\f107";
    color: var(--second);
    font-family: "Font Awesome 6 Free";
    font-weight: 700;
    background: unset;
}
.accordion-button:not(.collapsed)::after {
    content: "\f106";
    background: unset;
    transform: unset;
}

/* TABLE */

tbody, td, tfoot, th, thead, tr {
    font-size: 14px;
    border-color: #ddd;
}
.table>:not(caption)>*>* {
    color: #484848;
    padding: 12px 16px;
}

.item-page section {
    scroll-margin-top: 130px;
}

/* BOXES WITH ICON */

.boxes-icons .box {
    padding-top: 20px;
}
.boxes-icons .item {
    height: 100%;
    padding: 30px 15px 45px 15px;
    background-color: #f9f9fa;
    border: 1px solid #ddd;
    border-radius: 15px;
}
.boxes-icons .icon img {
    max-height: 80px;
}

/* TABS */

.tabs .intro-content {
    padding-bottom: 30px;
}

.tabs .row.g-0 {
    border-bottom: 1px solid #eaeaea;
}
.tabs .tab {
    position: relative;
}
.tabs .tab a,
.tab-headline h4 {
    position: relative;
    display: inline-block;
    color: #484848 !important;
    font-size: 15px !important;
    padding: 10px 20px;
    border-top: 1px solid transparent;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
    border-radius: 4px;
    cursor: pointer;
}
.tabs .tab a:hover,
.tab-headline h4:hover {
    text-decoration: underline;
}
.tabs .tab a.active:hover {
    text-decoration: none;
}
.tabs .tab a.active {
    color: var(--main);
    border-color: #eaeaea;
}
.tabs .tab a.active::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: #FFF;
    position: absolute;
    bottom: -1px; left: 0;
}

.tab-headline .title {
    display: block;
    padding-left: 15px;
}
.tab-headline .title::after {
    content: "\f107";
    color: var(--second);
    font-family: "Font Awesome 6 Free";
    font-weight: 700;
    background: unset;
    position: absolute;
    right: 40px;
}

.tab-content .accordion-items {
    padding-top: 0;
    padding-bottom: 0;
}
.tab-content .accordion-items .items {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
}

.tab-content .boxes-icons {
    padding-top: 0;
}
.tab-content .col-xl-8 .boxes-icons {
    margin-top: 1.5rem;
}
.tab-content .col-xl-8 .boxes-icons .box {
    width: 50%;
}

.breadcrumb {
    padding: 0 0 50px 5px !important;
    margin: -25px 0 0 0 !important;
}
.breadcrumb-item {
    position: relative;
    color: #7f7f7f;
    font-size: 12px;
}
.breadcrumb-item::before {
    content: "\f015";
    position: relative;
    top: -1px;
    color: #7f7f7f;
    font-family: "Font Awesome 6 Free";
    font-size: 11px;
    font-weight: 700;
    padding-right: 6px;
}
.breadcrumb-item+.breadcrumb-item::before {
    content: "\f105";
    position: relative;
    top: 2px;
    color: #7f7f7f90;
    font-family: "Font Awesome 6 Free";
    font-size: 10px;
}
.breadcrumb-item a {
    color: #7f7f7f;
}