:root {
    --primary-color: #FFC11A;
    --background-gray: #f8f9fa;
	--background-white: #ffffff;
    --text-dark: #333;
    --text-light: #666;
    --white: #fff;
    --section-padding: 100px;
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --card-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Oxygen font betöltése */
@font-face {
    font-family: 'Oxygen';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/oxygen-light.woff2') format('woff2'),
         url('../fonts/oxygen-light.woff') format('woff');
}

@font-face {
    font-family: 'Oxygen';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/oxygen-regular.woff2') format('woff2'),
         url('../fonts/oxygen-regular.woff') format('woff');
}

@font-face {
    font-family: 'Oxygen';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/oxygen-bold.woff2') format('woff2'),
         url('../fonts/oxygen-bold.woff') format('woff');
}

html {
    scroll-behavior: smooth;
}

/* Alapbeállítások */
body {
    font-family: 'Oxygen', sans-serif;
	line-height: 1.5;
    font-weight: 100;
    color: #232323;
}

section {
    padding: var(--section-padding) 0;
}

section h2 {
    text-align: center;
    /*padding-bottom: 80px;*/
}

section p {
    padding: 0 0 15px 0;
}

.bold {
	font-weight: 600;
}

/* Hero szekció */
.hero-section {
    height: 600px;
    background-image: url('../img/tamogatas-ugyintezes-orszagosan-3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: var(--white);
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
    /*margin-bottom: 1.5rem;*/
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: var(--border-radius);
    text-transform: uppercase;
    font-weight: 700;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--text-dark);
    color: var(--white);
}

/* How it works szekció */
.how-it-works {
    background-color: var(--background-gray);
}

.how-it-works h2 {
	padding-bottom: 0;
}

.how-it-works .h2-info-line {
	padding-bottom:80px;
}

.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-weight: bold;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    transition: var(--transition);
}

.step-number-1::before {
	content: '';
	position: absolute;
	margin-top:15px;
	left: 110%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 167px;
	height: 55px;
	background: url(../img/step-2.png) transparent top left no-repeat;	
}

.step-number-2::before {
	content: '';
	position: absolute;
	left: 110%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 167px;
	height: 55px;
	background: url(../img/step-1.png) transparent top left no-repeat;	
}

.step-number-3::before {
	content: '';
	position: absolute;
	margin-top:15px;
	left: 110%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	-o-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 167px;
	height: 55px;
	background: url(../img/step-2.png) transparent top left no-repeat;	
}

.step-number-1 {
	margin-top:50px!important;

}

.step-number-3 {

}

.step-number-3 {
	margin-top:50px!important;

}

.step:hover .step-number {
    background: var(--primary-color);
    color: var(--white);
    /*transform: scale(1.1);*/
}

.step-content {
    padding: 20px 15px;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* Testimonials szekció */
.swiper {
    padding: 20px 0 !important;
}

.testimonial-card {
    background-color: var(--background-gray);
    padding: 30px;
    border-radius: var(--border-radius);
    position: relative;
    height: 310px;
    display: flex;
    flex-direction: column;
}

.quote {
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    top: -20px;
    left: 20px;
    opacity: 0.3;
}

.testimonial-text {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    max-height: 11em;
    overflow: hidden;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.client-details {
    margin-top: 15px;
}

.client-details h4 {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.client-details p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.75rem;
    padding-top: 0;
}

/* Értékelés csillagok */
.rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* FAQ szekció */
.faq-section {
    background-color: var(--background-gray);
}

.faq-container {
    max-width: 800px;
    margin: 40px auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.faq-icon {
    min-width: 20px;
    min-height: 20px;
    position: relative;
    transition: var(--transition);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.faq-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

.faq-icon::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
}

.faq-answer p {
    margin: 0;
    padding: 0 0 20px;
    line-height: 1.6;
    /*color: var(--text-light);*/
}

.faq-item.active .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    opacity: 1;
}

.faq-question:hover {
    /*background-color: var(--background-gray);*/
}

.faq-question:hover h3 {
    color: var(--primary-color);
}

/*Pulse icon for faq*/
/* Pulzáló kéz animáció - külön névvel a konfliktusok elkerülésére */
@keyframes handPointerPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.3);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

/* Ha rákattintottak, elrejtjük a kezet */
.faq-item.active .hand-pointer {
    display: none !important;
}

.hand-pointer {
	position: relative;
    width: 30px;
    height: 30px;
    /* right: 45px; */
    left: 120px;
    top: 50%;
    /* margin-top: -15px; */
    z-index: 999;
    pointer-events: none;
    display: block;
    animation: handPointerPulse 1.5s infinite;
}

/* Reszponzív beállítások */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .hero-section {
        /*height: 400px;*/
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .timeline-line {
        display: none;
    }
    
    .step {
		margin-bottom: 30px;
        background-color: white;
        border-radius: 15px;
        padding: 15px;
    }
	.h2-background {
		margin-bottom: 60px!important;
	}
	.padding-bottom-30px {
		padding-bottom:30px;
	}
	.div-banner {
		padding: 10px 0 20px 0!important;
		margin: 40px 0 70px 0!important;
	}
	.step-number-1::before {
		content: '';
		position: absolute;
		margin-top: 300px;
		left: -40px;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		-o-transform: translateX(-50%);
		/* transform: translateX(-50%); */
		transform: rotate(111deg);
		width: 167px;
		height: 55px;
		background: url(../img/step-2.png) transparent top left no-repeat;
	}
    .step-number-2::before {
        content: '';
        position: absolute;
        left: 70%;
        top: 65%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: rotate(83deg);
        width: 167px;
        height: 55px;
        background: url(../img/step-1.png) transparent top left no-repeat;
    }
	.step-number-3::before {
		content: '';
		position: absolute;
		margin-top: 340px;
		left: -40px;
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		-o-transform: translateX(-50%);
		/* transform: translateX(-50%); */
		transform: rotate(111deg);
		width: 167px;
		height: 55px;
		background: url(../img/step-2.png) transparent top left no-repeat;
	}	
}

/* Segédosztályok */
.image-with-animation-blob img {
    max-width: 90%;
    border-radius: 10px;
}

.info-text {
	text-transform:uppercase;
	font-weight:400;
	font-size:1.2rem;
	text-decoration:underline;
	text-decoration-style: wavy;
	text-decoration-thickness: 2px;
	text-underline-offset: 10px;
	text-decoration-color: var(--primary-color);
}

/****Contact Form****/

.contact-section {
	background-color: var(--background-white);
	/*
	background-image: url('../img/tamogatas-ugyintezes-orszagosan-3.png');
    background-color: rgba(255,255,255,0.95);
    padding: 80px 0;
	background-blend-mode: lighten;*/
}

.contact-form-wrapper {
    background-color: var(--background-gray);
    padding: 40px;
    border-radius: 10px;
    /*box-shadow: 0 0 20px rgba(0,0,0,0.05);*/
}

.contact-form .form-group {
    position: relative;
    margin-bottom: 35px;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 193, 26, 0.2);
    outline: none;
}

.form-group label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 0 5px;
    color: #666;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group textarea ~ label {
    top: 20px;
}

.form-control:focus ~ label,
.form-control:not(:placeholder-shown) ~ label {
    top: -10px;
    font-size: 14px;
    color: var(--primary-color);
	background: var(--background-gray);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
    position: relative;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 3px; /* Finomhangolás a szöveggel való egy vonalba állításhoz */
    flex-shrink: 0; /* Megakadályozza a checkbox összezsugorodását */
}

.checkbox-group label {
    position: relative !important;
    transform: none !important;
    background: transparent !important;
    padding: 0 !important;
    font-size: 14px;
    color: var(--text-light);
    cursor: pointer;
    flex: 1;
    user-select: none; /* Megakadályozza a szöveg kijelölését */
}

.checkbox-group .gdpr-link {
    color: var(--primary-color);
    text-decoration: none;
    position: relative;
    z-index: 2; /* Magasabb z-index, hogy a link kattintható legyen */
    cursor: pointer;
}

.checkbox-group .invalid-feedback {
    position: absolute;
    bottom: -20px;
    left: 0;
    font-size: 12px;
    color: #dc3545;
}

.checkbox-group .gdpr-link:hover {
    text-decoration: underline;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-dark);
}

.btn-secondary {
    background-color: #fff;
    color: var(--text-dark);
    border: 2px solid var(--primary-color);
}

.success-message {
    text-align: center;
    padding: 40px;
}

.success-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    color: #fff;
    font-size: 30px;
    line-height: 60px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 40px;
    }

    .form-actions {
        flex-direction: column;
		margin-top: 80px;
    }

    .btn {
        /*width: 100%;*/
    }
	.checkbox-group .invalid-feedback {
		bottom:-40px;
	}
}

.gdpr-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.checkbox-text {
    color: var(--text-light);
    font-size: 14px;
}

.gdpr-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
    display: inline-block;
}

.gdpr-link:hover {
    text-decoration: underline;
}

.required-mark {
    color: var(--text-light);
    margin-left: 4px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
}

/****footer****/

.site-footer {
    background-color: #005c8b;
	/*background: linear-gradient(135deg, #4e54c8 0%, #8f94fb 100%);*/
    color: #ffffff;
    padding: 60px 0 0;
    /*margin-top: 60px;*/
}

.site-footer .container {
	background-image: url('../img/bg-footer.png');
    background-position: left;
    background-repeat: no-repeat;	
}

.footer-info, 
.footer-contact, 
.footer-links {
    margin-bottom: 30px;
}

.footer-logo {
    max-height: 50px;
    margin-bottom: 20px;
}

.footer-info p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.site-footer h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-list a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-list a:hover {
    opacity: 0.8;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

.footer-info img {
    background-color: var(--background-white);
    padding: 5px;
}

/* Reszponzív beállítások */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 0;
        /*margin-top: 40px;*/
    }

    .footer-info, 
    .footer-contact, 
    .footer-links {
        text-align: center;
    }

    .contact-list li {
        justify-content: center;
    }

    .footer-logo {
        margin: 0 auto 20px;
    }
	
	.mobile-padding-top {
	padding-top:40px;
	}
	
	.cryptography-data-security {
		display: block;
		margin: 0 auto;
		max-width: 30%!important;
		height: auto;
	}
}

.contact-icon {
    width: 20px;
    height: 20px;
    fill: #ffffff; /* Itt állíthatod az ikon színét */
    margin-right: 8px;
}

.call-to-action {
	background-color: var(--background-gray);
	padding: 25px 0 0;
}

.contact-icon:hover {
    fill: rgba(255,255,255,0.8); /* Hover effekt */
}

.feed p{
	padding-bottom:40px;
	font-weight:200;
	font-size:large;
}

.form-title {
	margin-bottom:40px;
}

.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.container-background {
	color: var(--text-light);
}

.rolunk h2 {
	/*padding-top:80px;*/
	/*text-align: left;*/
	/*padding-bottom:10px;*/
}

.rolunk .col-md-12 {
	padding-top:15px;
}

.rolunk h3, .rolunk h4 {
	padding-top:20px;
	padding-bottom:10px;
}

.rolunk {
	padding: 0;
}

.rolunk .container {
	/*white-space: pre-line;*/	
}

.rolunk p {
	padding-bottom: 15px;
}

.rolunk img {
	border-radius:15px;
}

.rolunk-contact-section h2 {
	margin-bottom:30px;
}

.h2-background {
	background-image: url('../img/tamogatas-ugyintezes-orszagosan-3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	position: relative;
	color:var(--background-white);
	margin-bottom:70px;
	padding-bottom:70px;
}

.h2-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.h2-background h2, .h2-background h1 {
    position: relative;
    z-index: 1;
	font-size: 2.5rem;
    font-weight: 700;
}

.h2-background h1 {
    padding-top: 80px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 2em;
}

.col-vertical-center h3 {
	padding-top: 0;
}

.col-vertical-center .checklist {
	padding-top:20px;
}
/*
.kapcsolat {
	background-image: url('../img/tamogatas-ugyintezes-orszagosan-bg-1.jpg');
	background-position: top center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    background-size: cover;
}
*/
.kapcsolat .contact-details li {
	list-style:none;
}

.kapcsolat .contact-details {
	margin-bottom:40px;
}

.row-form {
	margin-bottom: 100px;	
}

.divider {
	border-bottom-width: 4px;
    border-bottom-style: solid;
    margin-bottom: 20px;
    border-bottom-color: #f2a61f;
	width: 50px;	
}

.before-text {
	text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1em;	
}

.h2-info-line {
	text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
}

.problem-section .row, .contact-section .row {
	/*padding-top: 80px; */
}

.swiper {
	padding: 20px 0!important;
}

.banner img {
	border-radius: 10px;
}

/*****BANNER*****/

.banner {
	padding-top:0;
}

.announcement-banner {
	background: linear-gradient(135deg, #4e54c8 0%, #8f94fb 100%);
	color: white;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	margin: 20px 0;
	position: relative;
	overflow: hidden;
}

.announcement-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 2;
}

.announcement-text {
	flex: 1;
}

.announcement-title {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 10px;
}

.announcement-description {
	font-size: 16px;
	line-height: 1.5;
	opacity: 0.9;
}

.announcement-badge {
	background-color: #ff4757;
	color: white;
	padding: 4px 12px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: bold;
	display: inline-block;
	margin-bottom: 10px;
	animation: pulse 2s infinite;
}

.announcement-icon {
	margin-left: 20px;
	width: 80px;
	height: 80px;
	flex-shrink: 0;
	background-color: rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.announcement-icon svg {
	width: 48px;
	height: 48px;
}

.announcement-cta {
	background-color: white;
	color: #4e54c8;
	border: none;
	padding: 10px 20px;
	border-radius: 5px;
	font-weight: bold;
	cursor: pointer;
	margin-top: 15px;
	transition: all 0.3s ease;
	display: inline-block;
	text-decoration: none;
	font-size: 0.9rem;
}

.announcement-cta:hover {
	background-color: #f1f2ff;
	transform: translateY(-2px);
	text-decoration: none;
	color: #4e54c8;
}

.blob-shape {
	position: absolute;
	width: 250px;
	height: 250px;
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: 50%;
	z-index: 1;
}

.blob-1 {
	top: -100px;
	right: -50px;
}

.blob-2 {
	bottom: -120px;
	left: -70px;
	width: 200px;
	height: 200px;
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.05);
	}
	100% {
		transform: scale(1);
	}
}

@media (max-width: 768px) {
	.announcement-content {
		flex-direction: column;
		text-align: center;
	}
	
	.announcement-icon {
		margin: 20px 0 0 0;
	}
	.mobile-call-action {
		font-size: 0.7em;
		width: 120%;
		color: #232323;
		margin-left:5px;
		padding: 5px 10px;
	}

	.call-to-action-icon {
		display: block; /* Fontos, hogy blokk elem legyen */
		flex-shrink: 0; /* Megakadályozza az ikon összenyomódását */
	}

	.call-to-action-text {
		display: inline-block;
		line-height: 1.2; /* Igazíthatod a szöveg magasságához */
	}

	.h2-background h1 {
		padding-top: 130px;
	}	
}

	.call-btn {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px; /* Távolság az ikon és szöveg között */		
	}
	.hand-pointer {
		left:0;
	}
	.contact-list li{
		gap: 0px;
	}


.div-banner {
	background: linear-gradient(135deg, #4e54c8 0%, #8f94fb 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	margin: 70px 0 70px 0;
}

.div-banner-title {
	text-align:center;
	padding-top: 10px;
}

.rolunk-testimonials {
	padding-bottom:0;
}

.title-text {
	margin-bottom: 70px;
}

.title-text .before-text {
	padding: 0 0 15px 0;
    font-size: 1em;
}

.title-text .h2-info-line {
	padding: 15px 0 0 0;
    font-size: 0.8em;
}

.first {
	margin-bottom:70px;
}