/*--------------------------------------------------------------
# PAGES

Styles for pages of website
If it's specifi to an only page - please add a custom page stylesheet
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Fixed PAGE
--------------------------------------------------------------*/

.color-block {
    position: absolute
}

.page-template-page-landing-form-fixed {
	padding-top: 110px;
}

body:not(.fl-builder-edit) .fixed-form {
    margin: 0 auto;
    border-radius: 10px;
    background-color: #F2F3F5;
    box-shadow: 4px 4px 15px rgb(0 0 0 / 20%);
    width: 100%;
}


@media screen and (min-width: 768px) {
    .fixed-form {
        position:sticky;
        top: 180px
    }
}





/*--------------------------------------------------------------
## Post grid
--------------------------------------------------------------*/

body:not(.home) .fl-post-grid-post {
	display: flex;
	flex-direction: column-reverse;
	border: 0;
	background: transparent;
}

body:not(.home) .fl-post-grid-image {
	display: block;
	position: relative;
	height: 0;
	width: 100%;
	padding-bottom: 128%;
}

body:not(.home) .fl-post-grid-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	border-radius: 14px;
}

body:not(.home) .fl-post-grid-text {
	transform: translateY(-40px);
	padding: 32px;
	background: #ffffff;
	border: 1px solid #000000;
	border-top-left-radius: 14px;
	border-top-right-radius: 14px;
	border-bottom-right-radius: 0;
	transform: translate(0, 40px);
	transition: transform ease-in-out 0.2s, border-radius ease-in-out 0.2s;
}

body:not(.home) .fl-post-grid-more {
	clear: both;
	float: right;
	text-decoration-line: underline;
	color: #BC8E4E;
}

body:not(.home) .fl-post-grid-title {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;  
	overflow: hidden;
}

body:not(.home) .fl-post-grid-title {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;  
	overflow: hidden;
}

body:not(.home) .fl-post-grid-content p {
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;  
	overflow: hidden;
}

body:not(.home) .fl-post-grid-content p br {
	display: none;
}