@font-face {
    font-family: "OpenSans Light";
    font-display: swap;
    src: url(../fonts/OpenSans-Light.ttf) format("truetype");
}

@font-face {
    font-family: "OpenSans Regular";
    font-display: swap;
    src: url(../fonts/OpenSans-Regular.ttf) format("truetype");
}

@font-face {
    font-family: "OpenSans Semibold";
    font-display: swap;
    src: url(../fonts/OpenSans-SemiBold.ttf) format("truetype");
}

@font-face {
    font-family: "OpenSans Bold";
    font-display: swap;
    src: url(../fonts/OpenSans-Bold.ttf) format("truetype");
}

@font-face {
    font-family: "FjallaOne Regular";
    font-display: swap;
    src: url(../fonts/FjallaOne/FjallaOne-Regular.ttf) format("truetype");
}

@font-face {
    font-family: "FiraSans SemiBold";
    font-display: swap;
    src: url(../fonts/FiraSans/FiraSans-SemiBold.ttf) format("truetype");
}

@font-face {
    font-family: "FiraSans Regular";
    font-display: swap;
    src: url(../fonts/FiraSans/FiraSans-Regular.ttf) format("truetype");
}

:root {
    --custom-blue: #1b3556;
    --custom-lightblue: #3a71ba;
    --custom-cream: #cfb193;
    --custom-header: #586F6B;
    --custom-green: #7F9183;
    --custom-darkgreen: #586F6B;
}

/* custom checkbox */
.custom-checkbox {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
}

.custom-checkbox p {
    margin-bottom: 0;
}

.custom-checkbox input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
}

.custom-checkbox span {
    display: inline-block;
    width: 25px;
    height: 25px;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--custom-blue);
    background-color: #fff;
    margin-right: .5em;
    position: relative;
    cursor: pointer;
}

.custom-checkbox input:checked ~ span {
    background-color: var(--custom-blue);
}

.custom-checkbox span::after {
    display: none;
    content: "";
    position: absolute;
    left: 8px;
    top: 4px;
    width: 7px;
    height: 13px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    transform: rotate(40deg);
}

.custom-checkbox input:checked ~ span::after {
    display: block;
}
/* end of custom checkbox */

/* navbar */
button.nav-link {
    background-color: transparent;
    border: none;
    outline: none;
}

button.nav-link::after {
    display: none;
}

.navbar .dropdown-menu {
    left: unset;
    right: 30px;
    min-width: 12rem;
    text-align: center;
    border-radius: 0;
}

.navbar .dropdown-menu a {
    color: var(--custom-blue);
    margin: 0 !important;
}

.navbar .dropdown-menu a:hover {
    background-color: transparent;
    color: var(--custom-lightblue);
}
/* end of navbar */

/* static content */
.static-content h1,
.static-content h2,
.static-content h3,
.static-content h4,
.static-content h5,
.static-content h6 {
    font-family: 'FiraSans SemiBold';
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    text-align: justify;  
    color: white;

}

.static-content h1 {
    font-size: 35px;
}
.static-content h2 {
    font-size: 32px;
}
.static-content h3 {
    font-size: 30px;
}
.static-content h4 {
    font-size: 25px;
}
.static-content h5 {
    font-size: 22px;
}
.static-content h6 {
    font-size: 19px;
}

.static-content img {
    max-width: 100%;
}
.static-content p{
    font-family: 'FiraSans SemiBold';
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    text-align: justify;
    color: white;
}

.static-content ul {
    columns: 2;
    padding: 0;
}

.static-content li {
    list-style-type: none;
    position: relative;
    margin-bottom: 0.6em;
    padding-left: 45px;
    display: inline-block;
}

.static-content li::before {
    content: "";
    background-color: var(--custom-blue);
    border-radius: 5px;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 3px;
    left: 0;
}
/* end of static content */

/* base stuff */
form label a,
form label a:hover {
    text-decoration: underline;
}

.light.cc_dialog {
    padding: 1em 1.5em !important;
    max-width: 90% !important;
}

.navbar-nav .dropdown-toggle::after,
.hidden {
    display: none;
}

html {
    scroll-behavior: smooth;
}

.navbar-toggler {
    border-color: #8d9aab;
}

form small {
    text-align: left !important;
    color: #f00;
}

a:focus,
a:hover,
a:focus *,
a:hover *{
    text-decoration: none !important;
    color: currentColor;
}
/* end of base stuff*/

/* popup */
.popup-modal {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 600px;
    /*height: 400px;*/
    height: fit-content;
    max-width: 95%;
    max-height: 95%;
    z-index: 1010;
    box-shadow: 0 0 15px -3px rgba(0,0,0,0.35);
    padding: 1.2em 1em;
    overflow: scroll;
}

/*.popup-modal .popup-content {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    overflow: auto;*/
/*    padding: 1.2em 1em;*/
/*}*/

.popup-modal #closePopup {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.1em 0.3em;
    cursor: pointer;
    font-size: 25px;
    z-index: 100;
}
/* end of popup */

.navbar-nav .active-link {
    color: var(--custom-green);

}
.navbar-nav .nav-item:last-child .active-link{
    color: var(--custom-green);
}
body{
    background-color: #5F5F5F;
}
a,
body {
    font-family: "FjallaOne Regular";
    color: #2b2b2b;
}

a:hover {
    text-decoration: none;
    color: #2b2b2b;
}

header{
    background-color: var(--custom-header);
    color: #fff;
}
footer{
    background-color: black;
    color: #fff;
}
header,
header a {
    font-family: "FjallaOne Regular";
    font-size: 24px;
    font-weight: 400;
    line-height: 30.16px;
    text-transform: uppercase;
}

.language-menu a,
.nav-link {
    text-transform: uppercase;
    color: #fff;
}

.language-menu a:hover {
    color: #fff;
}

.nav-link {
    margin-right: 2.5em  !important;
}

.language-menu a.current {
    color: #3a71ba;
}

.navbar-toggler {
    border-color: #8d9aab;
}

#carouselTop img {
    width: 100%;
    height: 1015px;
    object-fit: cover;
}

.carousel-text-2 {
    font-family: "OpenSans Light";
    color: var(--custom-cream);
}

.blue-button,
.buildings a {
    font-family: "OpenSans Semibold";
    background-color: #023b62;
    color: #fff;
    padding: .6em 3em;
    font-size: 16px;
    margin-top: 1em;
    display: inline-block;
    border: 0;
}

.blue-button:hover {
    color: #fff;
}

.blue-button {
    margin: 0;
}

.small-title,
.content h2 {
    text-transform: uppercase;
    font-size: 30px;
    font-family: "OpenSans Bold";
    margin-bottom: 1.5em;
}

.grey-block {
    background-color: #f7f8f9;
}

.general-padding {
    padding-top: 5em;
}

.buildings img {
    width: 100%;
    margin-bottom: 15px;
}

.buildings a {
    position: absolute;
    z-index: 5;
    width: 220px;
    padding-left: 0em;
    padding-right: 0em;
    text-align: center;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
}

.darkgrey-block {
    background-color: #dedfdf;
}

.side-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bottom-section img {
    width: 100%;
}

footer {
	padding-top: 6em;
	padding-bottom: 2em;
	font-size: 14px;
}

.contact-footer,
footer a {
    color: #fff;
    display: inline-block;
    padding: .4em 0;
}

footer a:hover {
    color: #fff;
}

.contact-elem svg {
    width: 15px;
    margin-right: 25px;
    fill: #fff;
}

.contact-elem {
    display: flex;
    margin-bottom: .7em;
}

.darkgrey-block {
    padding-top: 1.5em;
    padding-bottom: 1.5em;
}



.svg-container {
    width: 50px;
    height: 50px;
    aspect-ratio: 1 / 1;
    background-color: var(--custom-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 2em;
}

.svg-container svg {
    fill: var(--custom-cream);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-top: 2em;
}

.contact-item,
.contact-item a {
    color: var(--custom-blue);
    font-family: "OpenSans Semibold";
    font-size: 18px;
}

.heading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 278px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.heading.contactus {
    background-image: url(../images/kapcsolat-bg.jpg);
}

.heading.gallery {
    background-image: url(../images/galeria-bg.jpg);
}

.heading.realestate {
    background-image: url(../images/ingatlanok-bg.jpg);
}
.heading.sidepage{
    background-image: url(../images/sidepage_bg.webp);
}
.sidepage{
    position: relative;
}
.sidepage::before{
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background: #00000099;

}
.sidepage-title{
line-height: 50.27px;
text-align: center;
color: white;
text-transform: uppercase;
}
.sidepage-subtitle{
font-size: 16px;
text-align: center;
color: white;
}

.heading h1 {
    font-family: "OpenSans Semibold";
    text-transform: uppercase;
    color: #fff;
    font-size: 48px;
    letter-spacing: 2px;
    text-align: center;
}

.contact-row h2 {
    font-family: "OpenSans Semibold";
    text-transform: uppercase;
    color: var(--custom-blue);
    font-size: 40px;
}

.contact-row .form-group textarea,
.contact-row .form-group input[type="text"] {
    width: 100%;
    border: 1px solid var(--custom-blue);
    padding: .5em;
}

.absolute-label {
    color: white;
    font-family: 'FjallaOne Regular';
    font-size: 16px;
    font-weight: 400;
    line-height: 20.11px;
    text-align: left;
}

.gallery-item img {
    width: 100%;
    height: 310px;
    object-fit: cover;
}

.hover-overlay svg {
    width: 31px;
    fill: var(--custom-cream);
    margin-bottom: 1em;
}

.hover-overlay div {
    text-transform: uppercase;
    color: #fff;
    width: 40%;
    text-align: center;
    font-family: "OpenSans Semibold";
}

.gallery-item {
    display: block;
    position: relative;
    margin-bottom: 30px;
}

.image-row a::after,
.gallery-img-block::after,
.gallery-item::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: var(--custom-blue);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-row a:hover::after,
.gallery-img-block:hover::after,
.gallery-item:hover::after {
    opacity: .6;
}

.hover-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-row a:hover .hover-overlay,
.gallery-img-block:hover .hover-overlay,
.gallery-item:hover .hover-overlay {
    opacity: 1;
}

.gallery-categories a {
    background-color: #e8e7e7;
    color: #2b2b2b;
    font-family: "OpenSans Semibold";
    font-size: 12px;
    padding: .7em 2em;
    display: inline-block;
    margin: 0 1.5em 1.5em 0;
}

.gallery-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3em;
}

.gallery-img-block {
    display: inline-block;
    position: relative;
    width: 273.13px;
    height: 328px;
}

.gallery-img-block img{
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.gallery-img-list .gallery-img-block:nth-child(odd)::before{
    content: "Előtte";
    width: 100%;
    height: 44px;
    background-color: var(--custom-darkgreen);
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    align-content: center;
    text-transform: uppercase;
    font-family: 'FjallaOne Regular';
    font-size: 20px;
    line-height: 25.14px;
    color: white;

}
.gallery-img-list .gallery-img-block:nth-child(even)::before{
    content: "Utána";
    width: 100%;
    height: 44px;
    background-color: var(--custom-darkgreen);
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    align-content: center;
    text-transform: uppercase;
    font-family: 'FjallaOne Regular';
    font-size: 20px;
    line-height: 25.14px;
    color: white;
}
.gallery-img-list .gallery-img-block:nth-child(even){
    margin-right: 2em;
}

.gallery-img-list {
    justify-content: center;
    gap: 28px;
}

.arrow-svg {
    fill: var(--custom-cream);
    height: 21px;
}

.back {
    transform: rotateZ(180deg);
}

.gallery-title {
    margin-bottom: 2.5em;
}

.gallery-title .small-title {
    margin: 0 2em;
}

.ingatlan-block img {
    width: 100%;
    object-fit: cover;
    height: 200px;
}

.text-part {
    padding: 2.5em 1em 1.5em 1em;
    position: relative;
}

.text-part h3 {
    text-transform: uppercase;
    font-family: "OpenSans Bold";
    font-size: 18px;
    overflow: hidden;
    height: 45px;
}

.text-part .desc {
    font-size: 14px;
    overflow: hidden;
    height: 85px;
}

.text-part .blue-button {
    margin-top: 1em;
}

.ingatlan-block > div {
    -webkit-box-shadow: 3px 3px 10px -3px #424242;
    -moz-box-shadow: 3px 3px 10px -3px #424242;
    box-shadow: 3px 3px 10px -3px #424242;
}

.number-card {
    color: var(--custom-cream);
    background-color: var(--custom-blue);
    padding: 0 10px;
    min-width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    font-family: "OpenSans Semibold";
    font-size: 30px;
}

.ingatlan-block .number-card {
    left: 10px;
    top: -24px;
}

.ingatlan-block {
    margin-bottom: 35px;
}

.back-button {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 1.5em;
}

.back-button svg {
    height: 14px;
    fill: #2b2b2b;
    margin-right: .5em;
}

.top-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.top-img ~ .number-card {
    left: 25px;
    bottom: -24px;
}

.inner-gallery,
.image-row {
    margin-top: 2.5em;
    justify-content: center;
}

.image-row a {
    position: relative;
    display: inline-block;
}

.inner-gallery .gallery-img-block img,
.image-row img {
    width: 100%;
    object-fit: cover;
    height: 300px;
}

.blue-block.static-content h1,
.blue-block.static-content h2,
.blue-block.static-content h3,
.blue-block.static-content h4,
.blue-block.static-content h5,
.blue-block.static-content h6 {
    color: var(--custom-blue);
}

.blue-block {
    background-color: #f4f4f4;
    padding: 1.5em;
    overflow: hidden;
}

.contact-text {
    text-transform: uppercase;
    font-family: "OpenSans Bold";
    font-size: 24px;
}

.contact-text p{
    margin: 0;
}

.inner-gallery > div {
    margin-bottom: 2em;
    text-align: center;
}

.side-form .contact-row .form-group {
    margin-top: 0;
    margin-bottom: 1.8em;
}

.form-img-block {
    text-align: center;
    text-align: center;
}

.form-img-block img {
    width: 100%;
}

small {
    text-align: left !important;
    color: #f00;
}

form label a,
form label a:hover {
    text-decoration: underline;
}

.base_container {
    padding-bottom: 6em;
    padding-top: 6em;
}

header .navbar-brand img {
    height: 49px;
}

/*NEW CSS START*/
.regular-text{
    font-family: 'FjallaOne Regular';
    font-size: 20px;
}
.regular-title{
    font-family: 'FjallaOne Regular';
    font-size: 40px;
}
.contact-link {
    background-color: black;
}
#carouselTop {
	position: relative;
	clip-path: polygon(13% 97%, 0 100%, 0 100%, 0 0, 100% 0, 100% 75%);
}
#carouselTop::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: #00000080;
    left: 0;
    top: 0;
    z-index: 1;
}
.custom-para {
	width: 100%;
	height: 100%;
	background: var(--custom-green);
	position: absolute;
	bottom: 0;
	clip-path: polygon(36% 100%, 30% 100%, 29% 100%, 6% 100%, 100% 80%, 100% 100%);
}
.header-section{
    position: relative;
}
.carousel-caption h1{
    font-family: 'FjallaOne Regular';
    font-size: 80px;
    font-weight: 400;
    line-height: 100.55px;
    text-align: left;
    text-transform: uppercase;
}
.carousel-caption p{
    font-family: 'FjallaOne Regular';
    font-size: 20px;
    font-weight: 400;
    line-height: 25.14px;
    text-align: left;
    text-transform: uppercase;
}
.carousel-caption {
	text-align: left;
	font-family: "OpenSans Semibold";
	bottom: unset;
	top: 27%;
	width: 635px;
}
.button-block{
    display: flex;
    gap: 1em;
}
.standard-btn {
	background-color: var(--custom-green);
	text-transform: uppercase;
	font-family: 'FjallaOne Regular';
	font-size: 20px;
	font-weight: 400;
	line-height: 25.14px;
	text-align: center;
	color: white;
	width: 236px;
	height: 54px;
	align-content: center;
    box-shadow: 0px 4px 4px 0px #0000001A;

}
.contact-btn{
    background-color: var(--custom-darkgreen);
}
.standard-btn:hover{
    background-color: var(--custom-darkgreen);
    transition: .3s all ease;
}
.contact-btn:hover{
    background-color: var(--custom-green);
}
.triangle {
	width: 602.5px;
	height: 527px;
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
	position: relative;
	flex: 0 0 33.333%;
}
.triangle-img{
        width: 100%;
        height: 100%;
        position: relative;
}
.triangle-img::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	background: #00000080;
}
.triangle-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.triangle-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%);
	color: white;
	font-family: 'FjallaOne Regular';
	font-size: 38px;
	font-weight: 400;
	line-height: 50.27px;
	text-align: center;
	text-transform: uppercase;
}
.triangle-under {
	position: absolute;
	left: 50%;
	bottom: -110px;
	transform: translateX(-50%);
	width: 739px;
	height: 90px;
	background: var(--custom-green);
	align-content: center;
	text-align: center;
	clip-path: polygon(6% 0, 93.5% 0, 100% 100%, 0% 100%);
}
.triangle-fluid{
    margin-top: 2em;
    height: 650px;
    padding: 0;
}
.custom-triangles {
	display: flex;
	position: relative;
}
.triangle-left {
	flex: 0 0 33.333%;
	position: relative;
}
.triangle-leftbox.left-0  {
	position: absolute;
	width: 944.5px;
	background: var(--custom-green);
	height: 191px;
	clip-path: polygon(0 0, 98% 0, 95% 25%, 90% 65%, 86% 100%, 0 100%);
}
.triangle-leftbox.left-1  {
	position: absolute;
	width: 944.5px;
	background: var(--custom-green);
	height: 191px;
	top: 210px;
	clip-path: polygon(0 0, 85% 0, 81% 30%, 76% 69%, 72% 100%, 0 100%);
	text-align: right;

}
.triangle-leftbox.left-2  {
	top: 420px;
	background-color: var(--custom-green);
	position: absolute;
	height: 215px;
	width: 944.5px;
	clip-path: polygon(0 0, 71% 0, 67% 33%, 62% 75%, 59% 100%, 0 100%);
	text-align: center;
}
.triangle-text{
    font-family: 'FjallaOne Regular';
    font-size: 32px;
    font-weight: 400;
    line-height: 40.22px;
    text-align: center;
    color: white;
    text-transform: uppercase;
    padding: 0.2em 0;
    width: 890px;
}
.triangle-desc{
    color: white;
    font-size: 20px;
    font-weight: 400;
    line-height: 25.14px;
    text-align: left;
    padding-left: 18em;
}
.triangle-leftbox.left-0 .triangle-desc{
    padding-right: 9em;
}
.triangle-leftbox.left-1 .triangle-desc{
    padding-right: 10.5em;
}
.triangle-leftbox.left-2 .triangle-desc{
    padding-right: 14.5em;
}
.triangle-under .triangle-desc{
    padding: 0;
    text-align: center;
}
.triangle-right {
	flex: 0 0 33.333%;
}
.triangle-rightbox.right-3 {
	position: absolute;
	width: 943.5px;
	background: var(--custom-green);
	height: 191px;
	right: 0;
	clip-path: polygon(100% 0, 100% 100%, 13% 100%, 6% 43%, 1% 0);
}
.triangle-rightbox.right-4 {
	position: absolute;
	width: 943.5px;
	background: var(--custom-green);
	height: 191px;
	right: 0;
	top: 210px;
	clip-path: polygon(100% 0, 100% 100%, 26.5% 100%, 20% 49%, 14% 0);
}
.triangle-rightbox.right-5 {
	position: absolute;
	width: 943.5px;
	background: var(--custom-green);
	height: 215px;
	right: 0;
	top: 420px;
	clip-path: polygon(100% 0, 100% 100%, 41% 100%, 36% 61%, 28% 0);
}
.triangle-right .triangle-desc {
	text-align: right;
}
.triangle-rightbox.right-3 .triangle-desc {
	padding-right: 14.7em;
	padding-left: 5em;
}
.triangle-rightbox.right-4 .triangle-desc{
	padding-right: 14.7em;
	padding-left: 12em;
}

.extra-rightp {
    padding-right: 16em;
}
.triangle-rightbox.right-5 .triangle-desc{
	padding-right: 14.7em;
	padding-left: 16em;
}
.triangle-right .triangle-text {
	width: 650px;
	text-align: right;
	padding-left: 9em;
}
.triangle-under .triangle-text{
    width: unset;
}
.nav-link:hover{
    color: var(--custom-green);
    transition: all .3s ease;
}
.contact-link:hover{
    color: var(--custom-green);
    transform: .3s all ease ;
}
.contactblock-fluid{
    background-image: url(../images/home/contacts_bg.webp);
    background-repeat:no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
}
.contactblock-fluid::before{
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background: #00000099;
}
.contactblock-title {
	font-size: 40px;
	line-height: 50.27px;
	text-align: center;
	color: white;
	margin-top: 1em;
    text-transform: uppercase;
    margin-bottom: .5em;
}
.contactblock-subtitle{
font-size: 20px;
line-height: 25.14px;
text-align: center;
color: white;
margin-bottom: 3em;
}
.contacts-imgblock {
	width: 100px;
	height: 100px;
	margin: 0 auto 1em auto;
}
.contacts-box{
    width: 208px;
  height: 253px;
  background: white;
  align-content: center;
  text-align: center;
}
.contacts-imgblock img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.contacts-name,.contacts-text,.contacts-text a{
font-size: 20px;
line-height: 25.14px;
text-align: center;
color: black;
margin-top: .5em;
}
.whyimg-block {
	width: 367px;
	height: 411px;
}
.whyimg-block img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.whyimg-box{
    display: flex;
    gap: 2em;
}
.whyimg-box .whyimg-block:nth-child(2) {
	width: 423px;
	height: 411px;
	clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
}
.whyus-block {
	background-color: var(--custom-green);
	margin-bottom: 2em;
	clip-path: polygon(3% 0, 100% 0%, 100% 100%, 0% 100%);

}
.whyus-text{
line-height: 25.14px;
text-align: right;
color: white;
padding: .7em;
text-transform: uppercase;
}
.whyus-col .whyus-block:nth-child(3) {
	margin-left: -20px;
}
.whyus-col .whyus-block:nth-child(4){
    margin-left: -40px;
}
.whyus-col .whyus-block:nth-child(5){
    margin-left: -60px;
}
.whyus-title {
	line-height: 50.27px;
	text-align: right;
	color: white;
	text-transform: uppercase;
	padding: 0.2em 0;
}
.whyus-fluid{
    padding-top: 8.5em;
    padding-bottom: 8em;
}
.reference-title{
line-height: 50.27px;
text-align: center;
color: white;
padding-top: 5em;
text-transform: uppercase;
}
.reference-subtitle{
    line-height: 25.14px;
    text-align: center;
    color: white;
}
.reference-fluid{
    position: relative;
}
.custom-shape{
    width: 100%;
    height: 566px;
    background-color: var(--custom-green);
    clip-path: polygon(0 40%, 100% 0, 100% 50%, 0 100%);
    position: absolute;
    left: 0;
}
.twentytwenty-wrapper{
    margin: 0 auto;
    width: 600px;
}
.twentytwenty-container{
    height: 485px;
}
.twentytwenty-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.reference-col2{
    padding-bottom: 1em;
    padding-top: 1em;
}
.twentytwenty-horizontal .twentytwenty-handle::before, .twentytwenty-horizontal .twentytwenty-handle::after, .twentytwenty-vertical .twentytwenty-handle::before, .twentytwenty-vertical .twentytwenty-handle::after {
	content: " ";
	display: block;
	background: var(--custom-green) !important;
	position: absolute;
	z-index: 30;
	-webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
	-moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
	box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
}
.twentytwenty-handle {
	border: 3px solid var(--custom-green) !important;
	background-color: var(--custom-green) !important;
}
.twentytwenty-horizontal .twentytwenty-handle::after,.twentytwenty-horizontal .twentytwenty-handle::before {
	-webkit-box-shadow: none !important;
	-moz-box-shadow: none !important;
	box-shadow: none !important;
}
.befafter-row .button-block{
    gap: 1em;
    margin-top: 2em;
    justify-content: center;
}
.services-fluid{
    padding-top: 10em;
    padding-bottom: 8em;
}
.first-img,.second-img{
    width: 295px;
    height: 368px;
}
.first-img img,.second-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.services-imgblock{
    display: flex;
    gap: 2em;
}
.services-title{
    line-height: 50.27px;
    color: white;
    text-transform: uppercase;
    margin-bottom: .5em;
}
.services-text{
line-height: 25.14px;
color: white;
margin-bottom: 1em;
}
.services-content{
    margin-bottom: 2em;
}
.services-btn{
    background-color: #3A5641;
}
.services-text a{
    color: white;
    text-decoration: underline;
    line-height: 25.14px;
}
.moreservices-text{
    margin-top: 1em;
}
.moreservices-fluid{
    padding-bottom: 11em;
}
.moreservices-fluid .button-block{
justify-content: flex-end;
}
.szolgview-list ul li{
    font-family: 'FjallaOne Regular';
    font-size: 20px;
    font-weight: 400;
    line-height: 25.14px;
}
.moreservices-item,.szolgview-list ul li,.priceslist-fluid .moreservices-list ul li{
    line-height: 25.14px;
    color: white;
    margin-bottom: .5em;
    list-style: none;
}
.moreservices-item::before,.szolgview-list ul li::before,.priceslist-fluid .moreservices-list ul li::before {
	content: url(../images/beforelist.svg);
	width: 28px;
	height: 28px;
	display: inline-block;
	position: relative;
	top: 5px;
	left: -7px;
}
.priceslist-fluid .moreservices-list ul li > ul li::before,.szolgview-list .moreservices-list ul li > ul li::before {
	content: url(../images/exc_triangle.svg);
	width: 28px;
	height: 28px;
	display: inline-block;
	position: relative;
	top: 5px;
	left: -7px;
}
.priceslist-fluid .moreservices-list ul li > ul,.szolgview-list .moreservices-list ul li > ul{
    padding: 0;
    margin-top: 1em;
}
.moreservices-col2 {
	padding-top: 4em;
}
.moreservices-img{
    height: 117px;
    margin-top:2em;
}
.moreservices-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact-fluid{
    background-image: url(../images/services/moreservices.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.contact-fluid::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000000B2;
}
.cright-col{
    background-color: white;
    padding: 1em 1em;
    margin-left: 5.5em;
}
.contact-title{
    color: white;
    font-size: 32px;
    line-height: 40.22px;
    text-transform: uppercase;
    margin-bottom: .5em;
}
.contact-row {
	padding-top: 2em;
	padding-bottom: 8em;
}
.contactt-row{
    padding-top: 4em;
    padding-bottom: 3em;
}
.send-btn{
    border: none;
    width: 178px;
    height: 26px;
    font-size: 16px;
    font-weight: 400;
    line-height: 20.11px;
}
.custom-checkbox p, .custom-checkbox p a{
    font-family: 'FjallaOne Regular';
    font-size: 14px;
    font-weight: 400;
    line-height: 17.6px;
    text-align: center;
    color: white;
    text-decoration: none;
}
.custom-checkbox p a:hover{
    color: var(--custom-green);
}
.cright-img{
    width: 30px;
    height: 30px;
}
.cright-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cright-contact{
    display: flex;
    gap: 38px;
    margin-bottom: 1em;
}
.cright-title{
    text-transform: uppercase;
    padding-bottom: 1em;
}
.cright-imgblock{
    width: 100%;
    height: 279px;
    margin-top: 2em;
    position: relative;
}
.cright-imgblock img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cright-imgblock::before {
	content: "";
	width: 30px;
	height: 100%;
	position: absolute;
	left: 30%;
	top: 0;
	z-index: 1;
	background: white;
}
.cright-imgblock::after {
	content: "";
	width: 30px;
	height: 100%;
	position: absolute;
	right: 30%;
	top: 0;
	z-index: 1;
	background: white;
}
.map-fluid{
    padding: 0;
}
.map{
    width: 100%;
    height: 398px;
}
.map iframe{
    width: 100%;
    height: 100%;
}
.footer-logo .button-block{
    margin-top: 1em;
}
.footer-logotext{
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}
.menu-link{
    line-height: 25.14px;
    text-align: left;
}
.menu-title{
    text-transform: uppercase;
    padding-bottom: .5em;
}
.contact-linktext{
    line-height: 25.14px;
    text-align: left;
}
.contact-elem a{
    text-decoration: underline;
}
.menu-link:hover,.contact-elem a:hover{
    color: var(--custom-green);
}
.gallery-btn{
    width: 262px;
}
.befafter-row{
    padding-top: 1em;
}
.aboutus-fluid {
	padding: 0;
	position: relative;
	min-height: 434px;
}
.uniqimg{
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 100%;
}
.uniqimg img{
    width: 100%;
    height: 100%;
}
.aboutus-fluid .container{
    position: relative;
    z-index: 2;
}
.uniq-para{
    width: 80%;
  margin: 0 auto;
  height: 434px;
  clip-path: polygon(20% 0, 100% 0%, 80% 100%, 0% 100%);
  background: gray;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.para-title{
font-size: 36px;
line-height: 45.25px;
text-align: center;
color: white;
text-transform: uppercase;
margin-bottom: .5em;
}
.para-text {
	line-height: 25.14px;
	text-align: center;
	color: white;
	padding: 0 12em;
}
.miertmi-title{
font-size: 36px;
line-height: 45.25px;
text-align: center;
color: white;
text-transform: uppercase;
}
.miermi-fluid{
    background-color: var(--custom-darkgreen);
    padding: 2em 0;
}
.miertmi-subtitle{
font-size: 24px;
text-align: center;
color: white;
margin-bottom: .5em;
}
.miertmi-text {
	line-height: 25.14px;
	text-align: center;
	color: white;
	padding: 0 3em;
}
.miertmi-imgbox{
    width: 100px;
    height: 100px;
    margin: 0 auto;
}
.miertmi-imgbox img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.miertmi-fluid{
    padding: 2em 0;
}
.under-miertmi{
    height: 97px;
}
.servicespage-fluid .services-content{
    margin-bottom: 0;
}
.services-content .services-text:nth-child(1){
    font-family: 'FiraSans SemiBold';
    font-size: 20px;
    line-height: 24px;
    text-align: left;
    color: white;
}
.services-content .services-text:nth-child(2){
    font-family: 'FiraSans Regular';
    font-size: 20px;
    line-height: 24px;
    text-align: left;
    color: white;
    margin-bottom: 2em;

}
.servicespage-fluid{
    padding: 6em 0;
}
.arrowbox{
    width: 50px;
    height: 50px;
}
.arrowbox img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.service-title{
font-size: 31px;
line-height: 40.22px;
text-align: left;
color: white;
text-transform: uppercase;
margin-bottom: .1em;
}
.service-desc {
	font-size: 16px;
	line-height: 19.2px;
	text-align: left;
	color: white;
	width: 90%;
}
.services-box {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 1em 0.5em;
}
.service-block {
	background-color: var(--custom-green);
	width: 49%;
    padding: 1em;
    height: 160px;
}
.service-middle {
	display: flex;
}
.services-box .service-block:last-child{
    width: 99%;
    height: 134px;
}
.services-box .service-block:last-child .service-desc{
    width: 100%;
    padding-right: 1em;
}
.services-rightimg {
    height: 867px;
}
.services-rightimg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.servicev-imgblock{
    width: 443px;
    height: 378px;
}
.servicev-imgblock .top-img{
    width: 100%;
    height: 100%;
}
.serviceview-content{
    font-family: 'FiraSans Regular';
font-size: 20px;
font-weight: 600;
line-height: 24px;
text-align: justify;
color: white;
}
.szolgview-list{
    padding-top: 6em;
    padding-bottom: 9em;
}
.contact-ctitle{
line-height: 25.14px;
text-align: center;
color: white;
padding-bottom: 4em;
text-transform: uppercase;
}
.contact-imgblock {
	width: 625px;
	height: 615px;
	box-shadow: 0px 4px 4px 0px #00000040;
}
.contact-imgblock img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact-page .form-group:has(#message){
    margin-bottom: 0;
}
.contactp-ftitle{
font-size: 32px;
line-height: 40.22px;
text-align: left;
color: white;
text-transform: uppercase;
margin-bottom: .5em;
}
.contactp-box {
	background: var(--custom-green);
    margin-bottom: 4em;
}
.galleryunder-title{
    font-size: 36px;
    line-height: 45.25px;
    text-align: left;
    color: white;
    text-transform: uppercase;
}
.galleryunder-subtitle{
    line-height: 25.14px;
    text-align: left;
    color: white;
    text-transform: uppercase;
}
.galleryunder-fluid{
    background-color: var(--custom-green);
    padding: 4em 0;
}
.gallery-fluid{
    padding-bottom: 7em;
}
.gcontact-btn{
    background-color: black;
    font-family: 'FjallaOne Regular';
    font-size: 24px;
    line-height: 30.16px;
    text-align: center;
    color: white;
    border: 1px solid #000000;
    width: 137px;
    height: 57px;
    box-shadow: 0px 4px 10px 0px #0000001A;
}
.gcontact-btn:hover{
    border: 1px solid var(--custom-darkgreen);
    color: white;
}
.galleryunder-fluid .button-block{
    justify-content: flex-end;
}
.rights-row {
	padding-top: 5em;
	align-items: center;
}
.created_by{
    text-align: right;
}
.created_by a:hover{
    color: var(--custom-green);
}
.shipping-prices,.prices-fluid h2{
    text-transform: uppercase;
    color: white;
    font-size: 56px;
}
.prices-fluid h2{
    margin-top: 1em;
    padding-top: .5em;
}
.prices-fluid h2:not(:first-child){
    border-top: 3px solid white !important;
}
.prices-title,.prices-fluid tr td:nth-child(1) {
	color: white;
	font-size: 24px;
}
.prices-fluid tr td:nth-child(1) span{
    font-size: 20px;
    margin-left: .5em;
}
.prices-fluid tr td:nth-child(1) span:has(a){
    margin-left: 0;
}
.prices-fluid tr td:nth-child(1) span a,.prices-fluid tr td a{
    font-size: 24px;
    color: white;
}
.prices-fluid tr td:has(a){
    padding-top: .5em;
}
.prices-boxitem {
	display: flex;
	flex-direction: column;
    margin-bottom: 2em;
}
.prices-header {
	display: flex;
	align-items: center;
	width: 100%;
}
.prices-separator,.prices-fluid tr td:nth-child(2) {
	color: white;
} 
.prices-fluid tr td:nth-child(2) {
	color: white;
	border-top: none !important;
	border-right: none !important;
	border-left: none !important;
	border-width: 3px;
	display: block;
	height: 20px !important;
}
.prices-price,.prices-fluid tr td:nth-child(3) {
	flex-basis: 12%;
	color: var(--custom-green);
    font-size: 20px;
}
.prices-text{
    color: white;
    margin-top: .5em;
    padding-left: .5em;
}
.prices-fluid .prices-row:not(:last-child){
    border-bottom: 3px solid white;
    padding-bottom: 2em;
    padding-top: 2em;
}
.prices-fluid .prices-row:last-child{
    padding-top: 2em;
    padding-bottom: 3em;
}
.prices-fluid{
    padding: 1em 0 2em 0;
}
.servicev-imgbox {
	display: flex;
	gap: 2em;
}
.servicev-imgbox .servicev-imgblock {
	width: 100%;
	height: 468px;
}
.custom-hpadding{
    padding-right:4em;
}
.above-header {
	align-content: center;
    background-color: black;
    padding: 1.2em;
}
.header_contact a{
    font-family: "FjallaOne Regular";
  font-size: 28px;
  font-weight: 400;
  line-height: 30.16px;
  text-transform: uppercase;
  color: white;
}
.header_contact{
    text-align: right;
}
.header_contact a:hover{
    color: var(--custom-green);
}
.hero-phone a{
    font-family: "FjallaOne Regular";
    font-size: 40px;
    font-weight: 400;
    line-height: 44.16px;
    text-transform: uppercase;
    color: white;
}
.hero-phone a:hover{
    color: var(--custom-green);
}
.triangle-content-link{
    top: 87%;
    font-size: 36px;
}
.triangle-leftbox.left-0 .triangle-desc {
	bottom: 1%;
}
.triangle-leftbox.left-1 .triangle-desc-link {
	padding-right: 14.5em;
	padding-left: 6em;
	top: 15%;
}
.triangle-leftbox.left-2 .triangle-desc-link {
	padding-left: 12.5em;
	bottom: 0%;
}
.triangle-rightbox.right-3 .triangle-desc-link, .triangle-rightbox.right-4 .triangle-desc-link {
	padding-right: 1em;
	padding-left: 16.5em;
	top: 15%;
}
.triangle-rightbox.right-4 .triangle-desc {
    top: 29%;
}

.triangle-content.triangle-content-link:focus,
.triangle-content.triangle-content-link:hover {
    color: #fff !important;
}
.triangle-rightbox.right-5 .triangle-desc-link {
	padding-left: 16.5em;
	padding-right: 1em;
	bottom: 0%;
}
.triangle-desc-link{
    position: relative;
    top: 20%;
    font-size: 28px;
}
.contacts-box{
    margin: 0 auto;
}
.top-section{
    margin: 0 4em 1em auto;
}
.top-section2{
    margin: 0 auto 1em 4em;
}
.triangle-desc.triangle-desc-link {
	padding-left: 13em;
}
.triangle-under-link{
    display: none;
}
.top-section .contacts-text a,.top-section2 .contacts-text a{
    font-size: 28px;
}
.whyus-fluid .button-block {
	justify-content: center;
    margin-top: 2em;
}
.phone-btn {
	width: 400px;
	height: 74px;
	font-size: 28px;
}
.phone-btn2{
    background-color: var(--custom-darkgreen);
}
.phone-btn2:hover{
    background-color: var(--custom-green);
}
.standard-phone-btn{
    height: 54px;
    width: 262px;
}
.phone-text{
    font-size: 24px;
}
.plus-phone-fluid{
    background-color: var(--custom-green);
    padding: 1em 0;

}
.phone-title{
    color: #fff;
}
.servicespage-fluid .button-block{
    margin: 1em 0;
}
.gallery-fluid .button-block{
    justify-content: center;
    margin-top: 2em;
}
.contacts-box.top-section{
    margin: 0 11em 1em auto;
}
.contacts-box.top-section2{
    margin: 0 auto 1em 11em;
}
.prices-fluid table,.prices-fluid tr,.prices-fluid td{
    border: none;
}
.prices-fluid tr:hover{
    background-color: rgba(51, 51, 51, 0.107);
}
.triangle-leftbox .triangle-text {
	position: relative;
	left: 360px;
	width: fit-content;
}
.hero-phone{
    padding-bottom: .5em;
}
/*NEW CSS END*/


