/**
Theme Name: ABMF
Theme Description: ABMF Wordpress Theme
Designed abnd Developed by the B.A.D. Group
*/


/****************************************************************************************************
        FONTS       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
/*@font-face {
    font-family: "IBMX";
    font-style: normal;
    font-weight: 700;
    src: url("./fonts/IBMPlexSans-Bold.woff2") format("woff2"),
        url("./fonts/IBMPlexSans-Bold.woff") format("woff");
}
@font-face {
    font-family: "IBMX";
    font-style: normal;
    font-weight: 600;
    src: url("./fonts/IBMPlexSans-SemiBold.woff2") format("woff2"),
        url("./fonts/IBMPlexSans-SemiBold.woff") format("woff");
}
@font-face {
    font-family: "IBMX";
    font-style: normal;
    font-weight: 500;
    src: url("./fonts/IBMPlexSans-Medium.woff2") format("woff2"),
        url("./fonts/IBMPlexSans-Medium.woff") format("woff");
}
@font-face {
    font-family: "IBMX";
    font-style: normal;
    font-weight: 400;
    src: url("./fonts/IBMPlexSans-Regular.woff2") format("woff2"),
        url("./fonts/IBMPlexSans-Regular.woff") format("woff");
}
@font-face {
    font-family: "IBMX";
    font-style: italic;
    font-weight: 400;
    src: url("./fonts/IBMPlexSans-Italic.woff2") format("woff2"),
        url("./fonts/IBMPlexSans-Italic.woff") format("woff");
}
@font-face {
     font-family: "IBMX";
    font-style: normal;
    font-weight: 700;
    src: url("./fonts/IBMPlexSans-Bold.woff2") format("woff2"),
        url("./fonts/IBMPlexSans-Bold.woff") format("woff");
}*/

/****************************************************************************************************
        VARIABLES       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
:root {
    /* fonts */
    --font-primary: "IBM Plex Serif", serif;
    --font-secondary: "Inter", sans-serif;

    /* colors */
    --color-primary: #619BEE;
    --color-grey: #BCBCBC;
    --color-light-grey: #D9D9D9;
    --text-black: #000;
    --text-white: #fff;

    /* background */
    --background-beige: #E7E0DC;
    --background-light-grey: #d9d9d9;
    --background-dark-grey: #221C21;

    --text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.7);
}



/****************************************************************************************************
        BASIC       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
body {
    min-height: 100vh;
    padding: 0;
    margin: 0;
    font-size: 22px;
    font-weight: 400;
    color: var(--text-black);
    font-family: var(--font-primary);
    background-color: var(--background-beige);
    line-height: 1.4;
}
body * {
    box-sizing: border-box;
    outline: 0;
    max-width: 100%;
}
body.menu--on {
    overflow: hidden;
}
select {
    -webkit-appearance: none;
}
a {
    text-decoration: none;
    transition: all .2s ease;
}
p {
    margin: 0;
    margin-bottom: 1em;
}
img {
    max-width: 100%;
    height: auto;
}
h1, h2, h3, h4, h5 {
    font-weight: 400;
	
}
h1, .h1 {
	font-size: 40px;
	margin: 0 0 0.5em;
}
h2, .h2 {
	font-size: 32px;
	margin: 0 0 0.5em;
}
h3, .h3 {
	font-size: 26px;
	margin: 0 0 0.5em;
}
ul,
ol {
    margin: 20px 0;
}
ul {
    padding: 0;
}
ul li {
    list-style: none;
}

ul:first-child,
ol:first-child,
h1:first-child, 
h2:first-child, 
h3:first-child, 
h4:first-child, 
h5:first-child, 
h6:first-child {
    margin-top: 0 !important;
}
ul:last-child,
ol:last-child,
ul li:last-child,
p.zero-margin,
p:last-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
    margin-bottom: 0 !important;
}

/* COMMON CLASSES ********************************************************************************/
.body__inner {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
body.is-loading .body__inner {
    opacity: 0.2;
}
.wrapper {
    width: 1080px;
    max-width: 100%;
    margin: 0 auto;
}
.wrapper--lg {
    width: 1200px;
}
.wrapper--sm {
    width: 700px;
}
.cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.wp-block-image {
    margin: 30px 0;
}
.wp-block-image:first-child {
    margin-top: 0;
}
.wp-block-image:last-child {
    margin-bottom: 0;
}
.disable-margin--top {
    margin-top: 0 !important;
}
.disable-margin--bottom {
    margin-bottom: 0 !important;
}
.disable-margin--top-and-bottom {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.visibility--hidden {
    display: none !important;
}
.ajax,
.ajax-url {
    display: none;
}


/* GRID ********************************************************************************/
.grid {
    display: grid;
}
.grid--2 {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.grid--3 {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}
.grid--4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
}

/* LOADING ********************************************************************************/
@keyframes loading {
    from {
      transform: scale(0);
      opacity: 1;
    }
  
    to {
      transform: scale(1);
      opacity: 0;
    }
}
.loading {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    z-index: 555;
}
body.is-loading .loading {
    display: block;
}
.loading div {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 0.3rem solid #000;
    animation: 1.5s loading infinite;
}
.loading div:nth-child(2) {
    animation-delay: 0.5s;
}

/* HAMBURGER ********************************************************************************/
.hamburger {
    position: relative;
    width: 40px;
    height: 19px;
    cursor: pointer;
    z-index: 1;
}
.hamburger::before {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    height: 100%;
    height: 2px;
    background-color: #000;
    pointer-events: none;
    z-index: 1;
}
.hamburger::after {
    position: absolute;
    content: "";
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 100%;
    height: 2px;
    background-color: #000;
    pointer-events: none;
    z-index: 1;
}

/* BUTTON ********************************************************************************/
.btns {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.btns:not(:first-child) {
    margin-top: 30px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    flex-shrink: 0;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 30px;
    background-color: #000;
    transition: all .2s ease;
    cursor: pointer;
    text-shadow: none !important;
    border: 2px solid #000;
}


/* BUTTON ********************************************************************************/
.links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
}
.links:not(:first-child) {
    margin-top: 45px;
}
.link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: inherit;
    font-size: 22px;
}
.link img {
    opacity: 0;
    transform: translateX(-10px);
    transition: all .2s ease;
}
.link--hover-box {
	padding: 3px 8px;
	border: 1px dotted transparent;
	transition: border 0.2s;
}
.link--hover-box:hover {
	border-color: currentColor
}
.link:not(.link--hover-box):hover {
    text-decoration: underline;
}
.link:hover img {
    opacity: 1;
    transform: translateX(0);
}
.link--hover-opacity {
    transition: all .2s ease;
    opacity: 1;
    text-decoration: underline;
}

.link--hover-opacity:hover {
    opacity: 0.75;
}

.link link--hover-underline {
font: "IBM Plex Serif", serif !important; 
}

/* CLOSE ********************************************************************************/
.close {
    position: relative;
    width: 20px;
    height: 20px;
    cursor: pointer;
    z-index: 1;
}
.close::before,
.close::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    height: 4px;
    width: 22px;
    border-radius: 2px;
    background-color: #000;
    z-index: 1;
}
.close::before {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.close::after {
    transform: translate(-50%, -50%) rotate(45deg);
}

/* SECTION ********************************************************************************/
section {
    position: relative;
    margin: 120px 0;
    z-index: 1;
}

section:first-child {
	margin-top: 0;
}
section.has-bg {
    padding: 120px 0;
}
section.text--white {
    color: #fff ;
}
.section__title {
    margin-bottom: 50px;
}
.section__title * {
    margin: 0;
}
.section__title *:not(:last-child) {
    margin-bottom: 10px;
}

/* TEXT BODY ********************************************************************************/
.text__title {
    font-size: 40px;
    margin-bottom: 100px;
	text-wrap: balance;
    text-align: center;
}
.text__title--left {
	text-align: left;
}
.grid .text__title {
	margin-bottom: 40px;
}
.text__body a:not(.btn) {
    color: inherit;
    text-decoration: underline;
}
.text__body ul {
	padding: 0;
	margin: 0;
}
.text__body ul:not(:last-child) {
	margin-bottom: 20px;
}
.text__body ul li {
	position: relative;
	list-style: disc;
	list-style-position: inside;
	z-index: 1;
	margin: 0 0 0.3em;
}
/* .text__body ul li:before {
	position: absolute;
	left: 0;
	top: 15px;
	transform:translatey(-50%);
	margin-top: 2px;
	width: 0.2em;
	height: 0.2em;
	border-radius: 50%;
	background-color: var(--text-black);
	z-index: 1;
}
.text .inner.grid .text__body ul li:before {
	top: 13px;
} */

/* SLICK SLIDER ********************************************************************************/
.slick-slider {
    max-width: 100%;
}
.slick-track {
    max-width: unset;
    margin: 0;
}
.slick-dots {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 15px;
    bottom: 20px;
    left: 0;
    width: 100%;
    margin: 0;
    z-index: 1;
}
.slick-dots li {
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
    opacity: 0.5;
    z-index: 1;
}
.slick-dots li.slick-active {
    opacity: 1;
} 
.slick-dots li button {
    display: none;
}
.slick-dots li:only-child {
    display: none;
}
.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.5);
    transition: all .2s ease;
    cursor: pointer;
    z-index: 1;
}
.slick-prev {
    left: 0;
}
.slick-next {
    right: 0;
}
.slick-arrow:before,
.slick-arrow:after {
   position: absolute;
   content: "";
   left: 50%;
   width: 18px;
   height: 2px;
   background-color: #fff;
   z-index: 1;
}
.slick-prev:before {
    top: 18px;
    transform: translateX(-50%) rotate(-45deg);
}
.slick-prev:after {
    bottom: 18px;
    transform: translateX(-50%) rotate(45deg);
}
.slick-next:before {
    top: 18px;
    transform: translateX(-50%) rotate(45deg);
}
.slick-next:after {
    bottom: 18px;
    transform: translateX(-50%) rotate(-45deg);
}

/* MODAL ********************************************************************************/
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 200;
}
.modal.is-visible {
    display: block;
}
.modal .close {
    position: absolute;
    top: 68px;
    right: 58px;
}
.modal .inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 90px;
}
.modal iframe {
    width: 900px;
    max-width: 100%;
    height: 500px;
    max-height: 100%;
}
.modal video {
    width: 900px;
    max-width: 100%;
    height: auto;
    max-height: 100%;
}





/****************************************************************************************************
        HEADER       ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.header {
    position: relative;
    padding: 50px 0;
    z-index: 100;
}
.header .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.header__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 265px;
    height: auto;
    flex-shrink: 0;
}
.header__logo img {
    max-width: 100%;
    max-height: 100%;
}
.header__menu .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 18px;
    gap: 30px;
}
.header__menu .menu li {
    position: relative;
    z-index: 1; 
}
.header__menu .menu li a {
    color: inherit;
    white-space: nowrap;
}
.header__menu .menu li.current-menu-item a,
.header__menu .menu li a:hover {
    color: var(--color-primary);
}
.header__menu .menu li.button a {
    border: 1px dotted;
    padding: 2px 5px;
	display: inline-block;
}
.header__menu .menu li.menu-item-has-children::after {
    display: inline-block;
    content: "";
    width: 5px;
    height: 5px;
    border-left: 1px solid;
    border-bottom: 1px solid;
    transform: rotate(-45deg);
    margin-bottom: 3px;
}
.link,
.menu {
	font-family: var(--font-secondary);
}
@media only screen and (min-width: 992px) {
    .header__menu li .sub-menu {
        display: none;
        opacity: 0;
        position: absolute;
        bottom: 0;
        left: -15px;
        transform: translateY(100%);
        top: auto;
        background-color: var(--background-beige);
        padding: 15px;
        max-width: unset;
        z-index: 10;
    }
    .header__menu li.menu-item-has-children:hover .sub-menu {
        display: block;
        opacity: 1; 
    }
    .header__menu li .sub-menu li:not(:last-child) {
        margin-bottom: 5px;
    }
    .header__menu li .sub-menu li a {
        font-size: 16px;
    }
}



/****************************************************************************************************
        PAGEBUILDER       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/


/* SEPARATOR ********************************************************************************/
.separator {
    width: 1412px;
    padding: 0 20px;
    border-top: 1px solid var(--color-grey);
    margin: 0 auto;
}

/* HERO ********************************************************************************/
.hero__item {
    position: relative;
    text-align: center;
    font-size: 32px;
    color: var(--text-white);
    z-index: 1;
}
.hero__item .inner {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
    padding: 100px 0;
}
.hero__item .cover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.hero__item .btns {
    justify-content: center;
}

/* TEXT ********************************************************************************/
.text .inner {
    width: 840px;
	font-size: 22px;
    margin: 0 auto;
}
.text .inner.grid {
	font-size: 22px
}
.text .inner.grid .text__image {
	width: 100%;
	height: auto;
	margin-bottom: 15px;
}
.text .inner:not(.grid) .text__image {
    position: relative;
    display: block;
    left: 50%;
    transform: translateX(-50%);
    width: 1412px;
    max-width: 1412px;
    margin-bottom: 110px;
}
.text .links {
    justify-content: center;
	margin-top: 30px;
}
.mapsvg-wrap-all {
	position: relative;
	width: calc(100vw - 30px);
	max-width: calc(100vw - 30px);
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}
.text .inner .mapsvg-controller-view-content h2,
.mapsvg-controller-view-content h2 {
	font-size: 32px;
	margin-bottom: 20px;
}
.text .inner .mapsvg-controller-view-content p,
.mapsvg-controller-view-content p {
	font-size: 22px;
	line-height: 1.4em;
}
.mapsvg-mobile-modal-close {
	display: block !important;
}

/* TEXT AND IMAGE ********************************************************************************/
.text-image .inner {
    display: flex;
	align-items: center;
    justify-content: space-between;
    gap: 116px;
}
.text-image.align--top .inner {
	align-items: flex-start;
}
.text-image.image-position--right .inner {
    flex-direction: row-reverse;
} 
.text-image__image {
    width: 457px;
    height: auto;
    flex-shrink: 0;
}
.text-image .text__title {
    font-size: 32px;
    text-align: left;
    margin-bottom: 20px;
}
.text-image .text__body {
    font-size: 22px;
}

/* IMAGE ********************************************************************************/
.image__title {
	text-align: center;
	font-size: 40px;
    margin-bottom: 60px;
}

.image__title--left {
	text-align: left;
}

.image__img {
	position: relative;
	left: 50%;
	transform: translatex(-50%);
	width: 100vw;
	max-width: 100vw;
	z-index: 1;
}

/* CARDS ********************************************************************************/
.cards__items.view--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px 80px;
}
.cards__items.view--grid .cards__item {
    flex-direction: column;
    margin-bottom: 0;
    gap: 15px;
	flex-wrap: unset;
}
.cards__items.view--grid .cards__item .content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.cards__title {
    display: block;
    text-align: center;
    font-size: 40px;
    margin: 100px 0;
}
.cards__item {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 116px;
	color: var(--text-black);
    font-size: 22px;
    z-index: 1;
}
.cards__item:not(:last-child) {
    margin-bottom: 70px;
}
.cards__item::before {
    position: absolute;
    content: "";
    top: -25px;
    left: -25px;
    right: -25px;
    bottom: -25px;
    max-width: calc(100% + 40px);
    background-color: transparent;
    transition: all .2s ease;
    border-radius: 20px;
    z-index: -1;
}
.cards__item:hover::before {
    background-color: var(--background-light-grey);
}
.cards__items.view--slider .cards__item {
    margin: 25px 35px;
}
.cards__items.view--slider .slick-arrow {
    background-color: transparent;
    background-image: url('./images/cards-slider-arrow.svg');
    background-size: 23px auto;
    background-position: center;
    background-repeat: no-repeat;
}
.cards__items.view--slider .slick-prev {
    left: -100px;
    transform: translateY(-50%) rotate(180deg);
}
.cards__items.view--slider .slick-next {
    right: -100px;
}
.cards__items.view--slider .slick-prev::before,
.cards__items.view--slider .slick-prev::after,
.cards__items.view--slider .slick-next::before,
.cards__items.view--slider .slick-next::after {
    display: none;
}
.cards__item__image {
    width: 457px;
    height: 447px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.cards__items.view--slider .cards__item__image {
    margin-bottom: 30px;
}
.cards__items.view--list .cards__item .content {
    width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.cards__item .categories {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
	margin-bottom: 10px;
}
.white-box,
.cards__item .category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    font-size: 15px;
    font-family: var(--font-primary);
    background-color: #fff;
    padding: 5px 9px;
    transition: all .2s ease;
	color: #000;
}   
.cards__item__title {
    font-size: 32px;
    font-weight: 500;
}
.cards__items.view--grid .cards__item__title {
	font-size: 22px;
}
.cards__item .link:not(:first-child) {
    margin-top: 80px;
}
.cards__item:hover .link {
    text-decoration: none;
    color: var(--color-primary);
}
.cards__item:hover .link img {
    opacity: 1;
    transform: translateX(0);
	margin-top: 3px;
}



/****************************************************************************************************
        FOOTER       ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.footer {
    text-align: center;
    background-color: var(--background-dark-grey);
    padding: 150px 0;
}
.footer .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-white);
    gap: 40px;
}
.footer__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: auto;
}
.footer__logo img {
    max-width: 100%;
    max-height: 100%;
}
.footer__menu .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 18px;
    gap: 30px;
}
.footer__menu .menu li {}
.footer__menu .menu li a {
    color: inherit;
}
.footer__menu .menu li.button a {
    border: 1px solid;
    padding: 2px 5px;
}
.footer__menu .menu li a:hover {
    color: var(--color-primary);
}
.footer .socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.footer .socials a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
}
.footer .socials a img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}



/****************************************************************************************************
        404       |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.lost .content {
    width: 520px;
    text-align: center;
    margin: 0 auto;
}
.lost__icon {
    max-width: 156px;
    max-height: 156px;
}
.lost__icon:not(:last-child) {
    margin-bottom: 30px;
}
.lost__title {
    font-size: 66px;
    line-height: 1;
    margin: 0 0 30px 0;
}
.lost__subtitle {
    text-transform: uppercase;
}
.lost .content .btns {
    justify-content: center;
}


/**
 * MAP
*/

body {
	.mapsvg-popover {
		font-family: var(--font-primary);
		background: #d9d9d9;
		border: 1px solid #000;
		border-radius: 22px;
		font-size: 22px;
	}

	.mapsvg-scrollpane::after {
		content: '';
		position: absolute;
		top: 4%;
		right: 14%;
		width: 163px;
		height: 52px;
		background: url(images/legend.png) no-repeat center / contain;
		z-index: 10;
	}

	p {
		margin-bottom: 15px;

		&:last-child {
			margin: 0;
		}
	}

	.mapsvg-popover-close {
		top: 15px;
		right: 15px;
	}

	.mapsvg-controller-view-content {
		padding: 20px 20px 35px;
	}
}

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

.popup-link-container {
	margin-top: auto;
	padding-top: 30px;
}

.popup-link-container a {
	text-decoration: none !important;
}

.mapsvg-controller-view-content h3.popup-title {
	font-size: 32px;
	font-weight: 500;
	font-family: var(--font-primary);
	margin: 0 0 15px;
}

.popup-category {
	height: 28px;
	background: #fff;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	padding: 0 8px;
	font-size: 15px;
	margin-bottom: 8px;
	font-family: var(--font-secondary);
}

@media (max-width: 600px) {
	body .mapsvg-scrollpane::after {
		top: -25px;
		right: 3%;
	}
}


/****************************************************************************************************
        RESPONSIVE       ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
****************************************************************************************************/
.show--lg,
.show--md,
.show--sm,
.show--xs,
.visibility--mobile_only {
    display: none;
}
@media only screen and (max-width: 1299px) {
    .cards__items.view--slider .slick-prev {
        left: -44px;
    }
    .cards__items.view--slider .slick-next {
        right: -44px;
    }
}

@media only screen and (max-width: 1199px) {
    .hide--lg {
        display: none !important;
    }
    .show--lg {
        display: block;
    }
    .wrapper {
        width: 931px;
    }
    .cards__item__image {
        width: 400px;
        height: 400px;
    }
    .cards__item {
        gap: 116px 80px;
    }
}
@media only screen and (max-width: 1099px) {
    .cards__items {
        padding: 0 50px;
    }
    .cards__items.view--slider .slick-prev {
        left: -12px;
    }
    .cards__items.view--slider .slick-next {
        right: -12px;
    }
}
.header__menu__scroller .socials {
	display: none;
}
@media only screen and (max-width: 991px) {
	.header__menu__scroller .socials {
		display: flex;
		margin-top: 2.5em;
		gap: 15px;
	}
	.header__menu__scroller .socials a {
		width: 30px;
		height: auto;
	}
	.header__menu__scroller .socials img {
		width: 100%;
		height: auto;
		filter: invert(1);
	}
    .hide--md {
        display: none !important;
    }
    .show--md {
        display: block;
    }
    .wrapper {
        width: 708px;
    }
    .header__menu {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 360px;
        transform: translateX(100%);
        transition: all .4s ease;
        padding: 60px 30px 15px 30px;
        background-color: var(--background-light-grey);
        z-index: 222;
    }
    body.menu--on .header__menu {
        transform: translateX(0);
    }
    .header__menu .close {
        position: absolute;
        top: 30px;
        right: 30px;
    }
    .header__menu__scroller {
        overflow: hidden;
        overflow-y: auto;
        max-height: 100%;
    }
    .header__menu .menu {
        flex-wrap: wrap;
    }
    .header__menu .menu li {
        width: 100%;
    }
    .grid--4 {
        grid-template-columns: 1fr 1fr;
    }
    .cards__item {
        flex-wrap: wrap;
    }
    .cards__item__image {
        width: 100%;
    }
    .cards__items.view--list .cards__item .content {
        width: 100%;
    }
    .cards__item::before {
        display: none;
    }
    .cards__item {
        gap: 40px;
    }

	.text-image.image-position--right .inner,
	.text-image .inner {
		flex-direction: column;
		gap: 0;
	}
	
	.text-image__image {
		margin: 0 auto;
	}

	.text-image .content {
		padding: 25px 0 40px;
	}

	.cards__items.view--grid {
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
		gap: 30px;
	}

	.cards__items {
		padding: 0 20px;
	}
}
@media only screen and (max-width: 767px) {
	section {
		margin: 80px 0;
	}
	section.has-bg {
		padding: 80px 0;
	}
    .hide--sm,
    .visibility--desktop_only {
        display: none !important;
    }
    .show--sm,
    .visibility--mobile_only {
        display: block;
    }
    .wrapper,
    .wrapper--lg,
    .wrapper--sm {
        width: 100%;
        max-width: 100%;
    }
    .wrapper {
        padding: 0 30px;
    }
    .grid--2 {
        gap: 10px;
    }
	.text .inner.grid {
		grid-template-columns: 1fr;
		gap: 60px;
	}
	.text__title {
		margin-bottom: 40px;
	}
	.text-image__image {
		width: 100%;
	}
	.cards__items.view--grid {
		gap: 80px;
	}
	.cards__item .link:not(:first-child) {
		margin-top: 40px;
	}
}
@media only screen and (max-width: 767px) {
  .mapsvg-wrap {
  	display: block !important;
  }
  .mapsvg-sidebar.mapsvg-top-container.mapsvg-sidebar-left {
  	display: block !important;
    height: 50vh !important;
  }
}
@media only screen and (max-width: 575px) {
    .hide--xs {
        display: none !important;
    }
    .show--xs {
        display: block;
    }
    .wrapper {
        padding: 0 15px;
    }
    .header__menu {
        padding: 60px 15px 15px;
    }
    .header__menu .close {
        right: 15px;
    }
    .grid--2,
    .grid--3,
    .grid--4 {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .slick-dots {
        gap: 8px;
    }
    .slick-dots li {
        width: 12px;
        height: 12px;
    }
}
@media only screen and (max-width: 359px) {}
