/***************************
// Font Imports
***************************/
/* roboto-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Roboto/roboto-v47-latin-regular.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* roboto-500 - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/Roboto/roboto-v47-latin-500.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* montserrat-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Montserrat/montserrat-v29-latin-regular.woff2') format('woff2');
}

/* montserrat-500 - latin */
@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/Montserrat/montserrat-v29-latin-500.woff2') format('woff2');
}

/* montserrat-600 - latin */
@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/Montserrat/montserrat-v29-latin-600.woff2') format('woff2');
}

/* montserrat-700 - latin */
@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/Montserrat/montserrat-v29-latin-700.woff2') format('woff2');
}

/* montserrat-800 - latin */
@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 800;
    src: url('../assets/fonts/Montserrat/montserrat-v29-latin-800.woff2') format('woff2');
}

/* montserrat-900 - latin */
@font-face {
    font-display: swap;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/Montserrat/montserrat-v29-latin-900.woff2') format('woff2');
}

/* lato-regular - latin */
@font-face {
    font-display: swap;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Lato/lato-v24-latin-regular.woff2') format('woff2');
}

/* lato-700 - latin */
@font-face {
    font-display: swap;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/Lato/lato-v24-latin-700.woff2') format('woff2');
}

/* lato-900 - latin */
@font-face {
    font-display: swap;
    font-family: 'Lato';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/Lato/lato-v24-latin-900.woff2') format('woff2');
}

/***************************
// End Font Imports
***************************/

/***************************
// Default Styles
***************************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-montserrat: 'Montserrat', sans-serif;
    --font-lato: 'Lato', sans-serif;
    --font-roboto: 'Roboto', sans-serif;

    --color-white: #FFFFFF;
    --color-white-E5E1E2: #E5E1E2;
    --color-white-F8F8F8: #F8F8F8;
    --color-gray-CACACA: #CACACA;

    --color-dark-151515: #151515;
    --color-dark-1E1F21: #1E1F21;
    --color-gray-737373: #737373;
}

body {
    letter-spacing: 0;
    font-family: var(--font-montserrat);
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-montserrat);
}

/***************************
// End Default Styles
***************************/

/***************************
// Buttons
***************************/
.btn img {
    transform: translateX(0);
    transition: transform 0.3s ease;
}

.btn:hover img {
    transform: translateX(10px);
    transition: transform 0.3s ease;
}

.btn.btn-filled-dark {
    font-weight: 400;
    font-size: 14px;
    line-height: 160%;
    text-transform: uppercase;
    color: var(--color-white);
    width: 225px;
    height: 52px;
    padding-top: 8px;
    padding-right: 23px;
    padding-bottom: 8px;
    padding-left: 23px;
    gap: 10px;
    background-color: var(--color-dark-1E1F21);
    box-shadow: 0px 4px 10px 0px #00000040;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.btn.btn-transparent-with-arrow {
    font-weight: 500;
    font-size: 16px;
    line-height: 130%;
    vertical-align: middle;
    text-transform: uppercase;
    color: #181412;
}

.btn.btn-transparent-with-arrow img {
    width: 19px;
    height: 19px;
}

/***************************
// End Buttons
***************************/

/***************************
// Navbar
***************************/
.navbar {
    padding: 0;
}

.navbar-custom {
    font-family: var(--font-montserrat);
    background-color: var(--color-dark-151515);
    /*position: absolute;*/
    width: 100%;
    z-index: 10;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
}

.navbar-collapse {
    transition: none !important;
}

.navbar-custom.scrolled {
    background-color: #2f2f2f;
}

.navbar-custom .nav-link {
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    vertical-align: middle;
    text-transform: uppercase;
    color: var(--color-white);
}

/***************************
// End Navbar
***************************/

/***************************
// Hero Section
***************************/
.hero {
    position: relative;
    background: url("../../assets/images/hero-bg.webp") center center / cover no-repeat;
    height: 720px;
    color: var(--color-white);
}

.hero h1 {
    font-weight: 500;
    font-size: 40px;
    line-height: 130%;
    vertical-align: middle;
    color: var(--color-white-E5E1E2);
}

.hero h4 {
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    vertical-align: middle;
    text-transform: uppercase;
}

.hero .carousel {
    height: 100%;
}

.hero .carousel-inner,
.hero .carousel-item {
    height: 100%;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    opacity: 0.4;
}

.carousel-control-next {
    justify-content: end;
    margin-right: 3rem;
}

.carousel-control-prev {
    justify-content: start;
    margin-left: 3rem;
}

.carousel-control-circle {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 8px;
    border: 2px solid var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
}


.hero-little {
    width: 100%;
    height: 340px;
    background: url("../../assets/images/hero-bg.webp") center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-little h1 {
    font-weight: 500;
    font-size: 40px;
    line-height: 130%;
    vertical-align: middle;
    color: #E5E1E2;
}

/***************************
// End Hero Section
***************************/

/***************************
// Services Overview Section
***************************/
.services-overview {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.services-overview h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 160%;
    text-align: center;
    vertical-align: middle;
}

.services-overview .service-box h5 {
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    text-align: center;
    vertical-align: middle;
}

.services-overview .service-box p {
    font-family: var(--font-lato);
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    text-align: center;
    vertical-align: middle;
}

.services-overview p.lead {
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    text-align: center;
    vertical-align: middle;
}

.service-box {
    background-color: var(--color-white-F8F8F8);
    width: 100%;
    max-width: 390px;
    height: 327px;
}

.icon-circle {
    width: 90px;
    height: 90px;
    background-color: var(--color-gray-CACACA);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle img {
    max-width: 40px;
    max-height: 40px;
}

/***************************
// End Services Overview Section
***************************/

/***************************
// Image Text Split Section
***************************/
.object-fit-cover {
    object-fit: cover;
    height: 100%;
}

/***************************
// End Image Text Split Section
***************************/

.construction-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.construction-section .right-content {
    background-color: var(--color-gray-737373);
}

.construction-section img {
    width: 100%;
    max-width: 390px;
    height: 100%;
    object-fit: cover;
}

.construction-section .right-content {
    max-width: 840px;
    padding: 2rem;
}

.construction-section .right-content h2 {
    font-weight: 500;
    font-size: 36px;
    line-height: 160%;
    vertical-align: middle;
    color: var(--color-white);
}

.construction-section .right-content div {
    font-family: var(--font-lato);
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: var(--color-white);
}

.construction-section .right-content .feature-box {
    font-family: var(--font-lato);
    font-weight: 400;
    font-size: 13px;
    line-height: 160%;
    vertical-align: middle;
    color: #181412;
    background-color: #F8F8F8;
    display: flex;
    align-items: center;
}


/***************************
// Quality Construction Section
***************************/
.quality-construction {
    padding-top: 7rem;
    padding-bottom: 7rem;
}

.quality-construction h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 160%;
    text-align: center;
    vertical-align: middle;
    color: #181412;
}

.quality-construction div:not(.card div) {
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    text-align: center;
    vertical-align: middle;
    color: #181412;
}

.quality-construction .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none;
    background: #F8F8F8;
    max-width: 300px;
}

.quality-construction .card-body {
    padding: 1rem;
    width: 100%;
    text-align: left;
}

.quality-construction .card-body h4 {
    font-weight: 700;
    font-size: 18px;
    line-height: 130%;
    vertical-align: middle;
    color: #181412;
    margin-bottom: 0.5rem;
}

.quality-construction .card-body div {
    font-family: var(--font-lato);
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    color: #181412;
    margin-bottom: 1rem;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.quality-construction a.btn {
    padding-left: 0;
}

.quality-construction .card>a {
    width: 100%;
    display: block;
}

.quality-construction .card img {
    width: 100%;
    max-width: 300px;
    object-fit: cover;
    display: block;
}

.quality-construction a.btn img {
    width: 19px;
    height: 19px;
    margin-left: 10px;
}

/***************************
// End Quality Construction Section
***************************/
/***************************
// Contact Section
***************************/
.faq {
    color: var(--color-white);
}

.faq .home-fluid {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 50%, #151515 50%) 0 0 / cover, url(../../assets/images/faq-bg.webp) 0 0 / cover no-repeat;
}

.faq .contact-fluid {
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.faq p.lead {
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    vertical-align: middle;
    margin-bottom: 1rem;
}

.faq h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 160%;
    vertical-align: middle;
    margin-bottom: 1.5rem;
}

.faq p.title {
    font-weight: 700;
    font-size: 20px;
    line-height: 160%;
    letter-spacing: 0.2px;
}

.faq p.text {
    font-family: var(--font-lato);
    font-weight: 500;
    font-size: 18px;
    line-height: 160%;
    vertical-align: middle;
}

.faq .icon-wrapper {
    width: 90px;
    height: 90px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    flex-shrink: 0;
}

.faq .right-side img {
    width: 100%;
    max-width: 519px;
    height: 100%;
    object-fit: cover;
}

/***************************
// End Contact Section
***************************/


.stats-section {
    background-color: #737373;
    /* szürke háttér, illeszkedik a képhez */
    color: var(--color-white);
    padding: 4rem 0;
}

.stats-section .stat-box {
    padding: 1rem 1rem;
}

.stats-section h3 {
    font-weight: 700;
    font-size: 64px;
    line-height: 160%;
    text-align: center;
    vertical-align: middle;

}

.stats-section p {
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    text-align: center;
    vertical-align: middle;
}

.stats-section strong {
    font-weight: 600;
}






.review {
    padding-top: 7rem;
    padding-bottom: 7rem;
}

.review h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 160%;
    text-align: center;
    vertical-align: middle;
    color: #181412;
}

.review div.lead {
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    text-align: center;
    vertical-align: middle;
    color: #181412;
}

.review a.btn {
    margin: 0 auto;
}

.review-box {
    background: #F8F8F8;
    padding: 2rem;
    height: 100%;
    width: 100%;
    max-width: 390px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-box .stars {
    margin-bottom: 1rem;
    text-align: left;
}

.review-box .quote {
    font-family: var(--font-lato);
    font-weight: 500;
    font-size: 18px;
    line-height: 160%;
    color: #181412;
    text-align: left;
    margin-bottom: 1.5rem;
}

.review-box .reviewer {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
}

.review-box .reviewer img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.review-box .name {
    font-weight: 400;
    font-size: 24px;
    line-height: 100%;
    text-transform: uppercase;
    color: #828282;
}

/***************************
// Testimonials Section
***************************/
.previous-projects {
    padding-top: 5rem;
    padding-bottom: 5rem;
    position: relative;
    background: #737373;
    color: var(--color-white);
}

.previous-projects a.btn {
    margin: 0 auto;
}

.previous-projects h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 160%;
    text-align: center;
    vertical-align: middle;
}

.previous-projects p {
    font-weight: 500;
    font-size: 20px;
    line-height: 160%;
    text-align: center;
    vertical-align: middle;
}

.splide__slide {
    padding: 10px;
}

.project-image img {
    width: 100%;
    max-width: 600px;
    height: 100%;
    max-height: 400px;
    object-fit: cover;
}

/***************************
// End Testimonials Section
***************************/
#professionals-slider .splide__pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.splide__pagination {
    bottom: -4rem;
}

#professionals-slider .splide__pagination__page {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #181412;
    position: relative;
    opacity: 1;
    transition: all 0.3s ease;
}

#professionals-slider .splide__pagination__page.is-active {
    width: 14px;
    height: 14px;
}

#professionals-slider .splide__pagination__page.is-active::after {
    content: "";
    width: 4px;
    height: 4px;
    background: #181412;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.professionals {
    padding-top: 6rem;
    padding-bottom: 9rem;
    position: relative;
    background: #fff;
    color: #181412;
}

.professionals a.btn {
    margin: 0 auto;
}

.professionals h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 160%;
    text-align: center;
    vertical-align: middle;
    margin-bottom: 1rem;
}

.professionals p {
    font-weight: 500;
    font-size: 20px;
    line-height: 160%;
    text-align: center;
    vertical-align: middle;
}

.professionals .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none;
    background: #F8F8F8;
    max-width: 370px;
    text-align: center;
}

.professionals .card h4 {
    font-weight: 500;
    font-size: 24px;
    line-height: 160%;
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.professionals .card p {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    text-align: center;
    margin-bottom: 2rem;
}

.professionals .card>a {
    width: 100%;
    display: block;
}

.professionals .card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.splide__slide {
    padding: 10px;
}



/***************************
// Blog Section
***************************/
.blog {
    padding-top: 7rem;
    min-height: 908px;
    position: relative;
    background: url(../../assets/images/blog-bg.webp) center center / cover no-repeat;
    color: var(--color-white);
}

.blog h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 160%;
    text-align: center;
    vertical-align: middle;
}

.blog p.lead {
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    text-align: center;
    vertical-align: middle;
}

.blog .card {
    background: none;
    border: none;
    padding: 0;
    width: 100%;
    position: relative;

    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
}

.blog .card>a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}

.blog .card img:not(a.btn img) {
    width: 100%;
    max-width: 370px;
    height: 300px;
    object-fit: cover;
    display: block;
}

.blog .card-body {
    max-height: 187px;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 1.3rem;
    position: absolute;
    bottom: -130px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    background: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.blog a.btn.btn-filled-dark {
    margin: 0 auto;
    margin-top: 200px;
}

/* Szöveg külön konténer kap fix max. helyet */
.blog .card-body .text-content {
    max-height: 110px;
    /* kb. 187 - 50 (gomb) - padding */
    overflow: hidden;
}

/* Cím és leírás pontozva */
.blog .card-body h4,
.blog .card-body div {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    white-space: normal;
    color: #181412;
    text-align: left;
    margin-bottom: 0.5rem;
}

.blog .card-body h4 {
    font-weight: 500;
    font-size: 16px;
    line-height: 160%;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.blog .card-body div {
    font-family: var(--font-lato);
    font-weight: 400;
    font-size: 15px;
    line-clamp: 2;
    -webkit-line-clamp: 2;
}

.blog .card-body a.btn {
    padding-left: 0;
}

.blog .card-body a.btn img {
    width: 19px;
    height: 19px;
}

footer {
    background-color: #151515;
    color: var(--color-white);
    padding-top: 5rem;
    padding-bottom: 3rem;
    letter-spacing: 0;
    font-size: 14px;
}

footer div.lead {
    font-weight: 400;
    font-size: 13px;
    line-height: 160%;
    vertical-align: middle;
    max-width: 317px;
}

footer h6 {
    font-weight: 400;
    font-size: 20px;
    line-height: 160%;
    text-transform: uppercase;
}

footer ul li {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

footer ul li strong {
    font-weight: 500;
    font-size: 14px;
    line-height: 150%;
    vertical-align: middle;
}

footer ul li a {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    vertical-align: middle;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

footer ul li a:hover {
    opacity: 1;
}

footer .copyright {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    opacity: 0.70;
}

footer img {
    width: 317px;
    height: 90px;
    object-fit: contain;
}

footer .social-icons a {
    background-color: var(--color-white);
    border-radius: 50%;
    padding: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

footer .social-icons img:nth-child(1) {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

footer .social-icons img:nth-child(2) {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

footer .social-icons img:nth-child(3) {
    width: 20px;
    height: 14px;
    transition: transform 0.3s ease;
}

footer .social-icons a:hover img {
    transform: scale(1.1);
}

footer .legal-links a {
    color: var(--color-white);
    opacity: 0.75;
    text-decoration: none;
    transition: opacity 0.3s ease;
    font-size: 13px;
}

footer .legal-links a:hover {
    opacity: 1;
}

footer p {
    margin-bottom: 0.5rem;
}

footer.footer-bottom {
    background-color: #131313;
    font-size: 13px;
    padding: 1rem 0;
    height: 87px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
}

.footer.footer-bottom p,
.footer.footer-bottom p strong {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
}

.footer.footer-bottom p strong {
    font-weight: 700;
}

footer.footer-bottom a {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 0%;
}

footer.footer-bottom .copyright {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    opacity: 1;
}

footer.footer-bottom .copyright strong {
    font-weight: 700;
    font-size: 14px;
    line-height: 150%;
}




/***************************
// Text Image Split Section
***************************/
.text-image-split img {
    max-width: 100%;
    height: auto;
}

.text-image-split .content {
    max-width: 724px;
}

.text-image-split .content h4 {
    font-weight: 900;
    color: var(--color-blue);
    font-size: 24px;
    line-height: 130%;
    margin-bottom: 1rem;
}

.text-image-split h2 {
    font-weight: 900;
    color: var(--color-dark-2);
    font-size: 48px;
    line-height: 130%;
    margin-bottom: 1rem;
}

.text-image-split p {
    font-family: var(--font-lato);
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    margin-bottom: 1rem;
    color: #181412;
}



.about-us {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

/***************************
// End Text Image Split Section
***************************/

.services-list {
    padding-top: 6rem;
    padding-bottom: 6rem;
    color: #181412;
}

.services-list .card {
    background: #F8F8F8;
    max-width: 1230px;
    width: 100%;
}

.services-list div.lead {
    font-family: var(--font-lato);
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    margin-bottom: 3rem;
}

.services-list h5.card-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    vertical-align: middle;
    margin-bottom: 1rem;
}

.services-list p.card-text {
    font-family: var(--font-lato);
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
}

.services-list .context {
    max-width: 840px;
}

.services-list a.btn {
    padding-left: 0;
}

.services-list img {
    max-width: 300px;
    width: 100%;
    object-fit: cover;
}

/***************************
// End Services List Section
***************************/
.services-in {
    padding-top: 6rem;
    color: #181412;
}

.services-in .breadcrumb a {
    font-family: var(--font-roboto);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    vertical-align: middle;
    color: #737373;
    margin-bottom: 2rem;
}

.services-in h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 160%;
    vertical-align: middle;
    margin-bottom: 1rem;
}

.services-in .context {
    max-width: 1230px;
}

.services-in .context p {
    font-family: var(--font-lato);
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
}


.gallery-list {
    padding-top: 6rem;
    padding-bottom: 6rem;
    color: #181412;
}

.gallery-list div.lead {
    font-family: var(--font-lato);
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    margin-bottom: 3rem;
}

.gallery-list a.btn {
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    vertical-align: middle;
    text-transform: initial;
    padding-left: 0;
}

.gallery-list .img-frame {
    background-image: url("../../assets/images/gallery-list-bg.webp");
    background-size: cover;
    background-position: center;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    width: 100%;
    max-height: 386px;
}

.gallery-list .foreground-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}




.gallery-in {
    padding-top: 6rem;
    padding-bottom: 6rem;
    color: #181412;
}

.gallery-in h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 160%;
    vertical-align: middle;
}

.gallery-in p.lead {
    font-family: var(--font-lato);
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
}

.gallery-in .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    justify-items: center;
}

.gallery-in .gallery-grid img {
    height: auto;
    object-fit: cover;
    display: block;
    max-width: 381px;
    width: 100%;
}






.news {
    padding-top: 6rem;
    padding-bottom: 6rem;
    color: #181412;
}

.news div.lead {
    font-family: var(--font-lato);
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    margin-bottom: 3rem;
}

.news .card {
    max-width: 1230px;
    width: 100%;
}

.news .card h5.card-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    vertical-align: middle;
    margin-bottom: 1rem;
}

.news .card p.card-text {
    font-family: var(--font-lato);
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    max-width: 826px;
    margin-bottom: 1rem;
}

.news .card a.btn {
    padding-left: 0;
}

.pagination-wrapper {
    text-align: right;
    margin-top: 6rem;
}

.pagination {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    align-items: center;
}

.pagination li a:not(.arrow) {
    font-family: var(--font-roboto);
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    padding: 13px 15px;
    transition: all 0.2s ease;
}

.pagination li a:not(.arrow):hover {
    background-color: #ddd;
}

.pagination li a.active {
    background-color: #737373;
    color: #fff;
}

.pagination li a.arrow {
    width: 21px;
    height: 19px;
}








.news-in {
    padding-top: 6rem;
    padding-bottom: 6rem;
    color: #181412;
}

.news-in .breadcrumb a {
    font-family: var(--font-roboto);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    vertical-align: middle;
    color: #737373;
    margin-bottom: 2rem;
}

.news-in .context {
    max-width: 1230px;
}

.news-in .context h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 160%;
    vertical-align: middle;
    margin-bottom: 1rem;
}

.news-in .context h5 {
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    vertical-align: middle;
    margin-bottom: 1rem;
    margin-top: 3rem;
}

.news-in .context ul li,
.news-in .context p {
    font-family: var(--font-lato);
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
}

.news-in .context img {
    width: 100%;
    max-width: 1230px;
    height: auto;
    object-fit: cover;
    display: block;
    margin-top: 2rem;
}




.contact {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.contact .services-overview {
    padding-top: 0;
}

.contact h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 160%;
    vertical-align: middle;
    color: #181412;
}

.contact p {
    font-family: var(--font-lato);
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item img {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
}

.contact-item .text {
    display: flex;
    flex-direction: column;
}

.contact-item strong {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    vertical-align: middle;
    color: #1E1E1E;
}

.contact-item p {
    font-family: var(--font-montserrat);
    font-weight: 400;
    font-size: 13px;
    line-height: 140%;
    vertical-align: middle;
    color: #1E1E1E;
    margin-top: 0.4rem;
}


/***************************
// Kapcsolat
***************************/
.contact-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #737373;
}

.contact-section h3 {
    font-weight: 700;
    font-size: 36px;
    line-height: 160%;
    vertical-align: middle;
    color: #FFFFFF;
}

.contact-section .right-col {
    background-color: var(--color-white);
    max-width: 700px;
    width: 100%;
    padding: 3rem;
}

.contact-section .right-col h4 {
    font-weight: 700;
    font-size: 36px;
    line-height: 160%;
    vertical-align: middle;
    color: #181412;
    margin-bottom: 1rem;
}

.contact-section .right-col p.lead {
    font-family: var(--font-lato);
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    color: #181412;
}

.contact-section .right-col .needs-validation {
    padding-top: 1rem;
}

.contact-section .right-col label {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    vertical-align: middle;
    color: #181412;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.contact-section .right-col .form-check .form-check-input {
    margin-top: 0;
    width: 22px;
    height: 22px;
    background: #FFFFFF;
    box-shadow: 0px 0px 4px 0px #00000069;
    border-radius: 0px;
}

.contact-section .right-col .form-check .form-check-input:checked {
    background: var(--color-gray-737373);
    border: 1px solid var(--color-gray-737373);
}

.contact-section .right-col label a {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #1E1E1E;
}

.contact-section h2 {
    font-weight: 700;
}

.contact-section p {
    font-size: 1rem;
    line-height: 1.6;
}

.contact-info li {
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0;
}

.contact-section .right-col input[type="text"],
.contact-section .right-col input[type="email"] {
    width: 100%;
    height: 50px;
    border-radius: 10px;
    border: 0.5px solid #D6D6D6;
    padding: 10px;
    font-size: 16px;
}

.contact-section .right-col textarea {
    width: 100%;
    height: 172px;
    border-radius: 10px;
    border: 0.5px solid #D6D6D6
}

.team-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.team-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.team-item img {
    width: 85px;
    height: 85px;
    flex-shrink: 0;
    border-radius: 50%;
}

.team-item .text {
    display: flex;
    flex-direction: column;
    color: white;
}

.team-item strong {
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
}

.team-item p {
    font-weight: 400;
    font-size: 13px;
    line-height: 140%;
    vertical-align: middle;
    margin-top: 1rem;
}

.contact .services-overview .lead {display: none;}
.contact .services-overview h2 {display: none;}

.form-control.is-invalid, .was-validated .form-control:invalid {
    border: .5px solid #dc3545 !important;
}