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

:root {
    --main: #0070B9;
}

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

a {
    color: #95A200FF;
    transition: all .3s;
}
a:hover {
    color: #95A200FF;
    text-underline-offset: 3px;
}

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

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

/* HEADER */

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

#header .logo a {
	position: relative;
	display: inline-block;
}
#header .logo img {
    max-height: 40px;
}
/* #header .logo a::before {
	content: "";
	display: block;
	width: 100vw;
	height: 38px;
	background-color: var(--main);
	position: absolute;
	top: 13px;
	left: -100vw;
} */

/* NAV */

#nav {
    position: sticky;
	top: 0;
	transition: all .3s;
	z-index: 1030;
}
/* #nav.sticky {
	top: 94px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
} */

#nav .navbar {
    padding: 0;
    margin: 0;
}
#nav .navbar .nav {
	list-style: none;
	padding: 0;
    margin: 0 0 0 -13px;
}
#nav .navbar .nav > li {
	position: relative;
}
#nav .navbar .nav > li > a,
#nav .navbar .nav > li > span {
	display: block;
    color: #484848;
    font-size: 19px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.38px;
    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: #0070B9;
    text-decoration: none;
}

#nav .navbar .nav > li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 4px;
    z-index: 0;
    opacity: 0;
    width: 260px;
    background-color: #FFF;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
    padding: 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: 16px;
	font-weight: 400;
    line-height: 100%;
    text-transform: none;
    padding: 8px 10px 8px 10px;
    border: 1px solid #f6f6f6;
    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: #0070B9;
    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;
}

/* SLIDER */

.slider .slide {
    position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 436px; 
	background-size: cover;
	background-position: center;
}
/* .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 h2 {
    color: #FFF;
    font-size: 50px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -1px;
    padding: 0;
    margin: 0;
}
.slider .slide p {
	color: rgba(255, 255, 255, .75);
	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: 52px;
	color: #FFF;
    font-size: 16px;
	font-weight: 400;
	line-height: 50px;
    padding: 0 30px;
    position: relative;
    text-decoration: none;
	margin-top: 35px;
	background: var(--main);
	border: 1px solid var(--main);
    border-radius: 6px;  
	transition: all .3s;
} 
.slider .slide a:hover {
	color: #FFF;
    background-color: transparent;
}

/* BOXES */

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

.news.blog .box:not(:first-of-type) {
    padding-top: 20px;
}
.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: #95A200FF;
    transform: translateY(-10px); */
}
.news .box a:hover {
    text-decoration: none;
    border-color: #95A200FF;
}
.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%;
}
.boxes .box .content h3,
.news .box .content h3 {
    color: #484848;
    font-size: 26px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.52px;
    padding: 0 0 15px 0;
    margin: 0;
}
.news .box .content h3 {
    font-weight: 400;
}
.boxes .box .content h3:hover,
.news .box .content h3:hover {
    color: #95A200FF;
    cursor: pointer;
}
/* .boxes .box a:hover .content h3,
.news .box a:hover .content h3 {
    color: #95A200FF;
} */
.boxes .box .content p,
.news .box .content p,
.about .content p {
    color: #484848;
    font-size: 17px;
    font-weight: 400;
    line-height: 29px;
    letter-spacing: 0;
    padding: 0;
    margin: 0;
}
.boxes .box .content span {
    display: inline-block;
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    padding: 15px 25px;
    margin: 20px 0 0 0;
    background-color: var(--main);
    border: 1px solid var(--main);
    border-radius: 6px;
}
.boxes .box .content span:hover {
    color: var(--main);
    background-color: transparent;
    cursor: pointer;
}

/* NEWS */

.news {
    padding-bottom: 45px;
}
.news .headline h2,
.about .content h2 {
    color: #484848;
    font-size: 50px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.8px;
    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: 16px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0;
    padding: 15px 25px;
    margin: 30px 0 0 0;
    border: 1px solid var(--main);
    border-radius: 6px;
}
.news .all a:hover {
    color: #FFF;
    text-decoration: none;
    background-color: var(--main);
}

/* 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: 35px;
	padding-bottom: 35px;
	background-color: #F9F9FA;
}
.links .box h4 {
	color: #000;
    letter-spacing: 0px;
    font-size: 22px;
    margin: 0 0 15px 0;
    padding: 0;
    border-bottom: 0px solid #555555;
    transition: all 0.4s ease-in-out;
}
.links .box ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.links .box ul li {
	margin-top: 5px;
}
.links .box ul li a {
	display: inline-block;
	color: #484848;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	letter-spacing: 0;
	padding: 0;
	margin: 0;
}
.links .box ul li a:hover {
    color: #95A200FF;
    text-decoration: none
}

.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: 300;
}
#footer .copy p strong {
    font-weight: 500;
}

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

/* CONTACT FORM SIDEBAR */

.contact-form {
    padding-top: 5px;
}
.contact-form h3 {
    color: #484848;
    font-size: 20px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0;
    padding: 0 0 10px 0;
    margin: 0 0 20px 0;
    border-bottom: 1px solid #777;
}
.contact-form p a.phone {
    display: inline-block;
    font-size: 32px;
    margin: 10px 0;
}
.contact-form p a.phone:hover {
    text-decoration-thickness: 1px;
    text-underline-offset: 6px;
}

.contact-form label.error {
    display: block;
    color: red;
    font-size: 13px !important;
    margin-top: 8px;
    margin-bottom: -10px;
}

/* SUBPAGE */

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

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

.page-header,
.box-headline {
    margin-bottom: 35px;
}
.page-header h1,
.box-headline h1 {
    color: #484848;
    font-size: 50px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 1px;
    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 {
    padding: 20px 0;
}

.item-page h1 {
    color: #484848;
    font-size: 42px;
    font-weight: 600;
    line-height: 58px;
    letter-spacing: 0;
}
.item-page h2 {
    color: #484848;
    font-size: 30px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: 0;
}
.item-page h3 {
    color: #484848;
    font-size: 26px;
    font-weight: 600;
    line-height: 34px;
    letter-spacing: 0;
}
.item-page h4 {
    color: #484848;
    font-size: 22px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0;
}
.item-page h5, .item-page h6 {
    color: #484848;
}

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

.item-page p,
.item-page ul li,
.item-page ol li {
    color: #484848;
    font-size: 17px;
    font-weight: 300;
    line-height: 27px;
    letter-spacing: 0;
    padding: 0;
}
.item-page p:last-of-type {
    margin-bottom: 0;
}
.item-page p strong {
    font-weight: 700;
}

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

/* CONTACT FORM */

#contact-form .fields input,
#contact-form textarea {
    width: 100%;
    padding: 10px 20px;
    margin-top: 10px;
    outline: none;
    border: 1px solid #d2d2d2;
    border-radius: 3px;
    resize: none;
}
#contact-form .field-file {
    margin-top: -5px;
    margin-bottom: 15px;
}
#contact-form .fields input:focus,
#contact-form textarea:focus {
    border-color: var(--main);
    box-shadow: unset;
}
#contact-form .reg {
    display: flex;
    align-items: flex-start;
}
#contact-form .reg input {
    margin-top: 4px;
    margin-right: 10px;
}
#contact-form .reg label {
    font-size: 15px;
    font-weight: 300px;
}
#contact-form input[type="submit"] {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0;
    /* text-transform: uppercase; */
    padding: 15px 25px;
    margin: 10px 0 0 0;
    background-color: var(--main);
    border: 1px solid var(--main);
    border-radius: 6px;
    outline: none;
    cursor: pointer;
    transition: all .3s;
}
#contact-form input[type="submit"]:hover {
    color: var(--main);
    background-color: transparent;
} 