* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Crimson Text", serif;
    font-weight: 400;
    font-style: normal;
}

body,
html {
    height: 100%;
}

/* HOME STYLE */

/* NAVBAR */
nav {
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    position: fixed;
    top: 0;
    display: flex;
    width: 100%;
    height: 80px;
    z-index: 1;
}

nav.active {
    background-color: rgba(0, 0, 0, 0.8);
}

.logo {
    max-height: 100%;
    width: 100px;
    margin-left: 10%;
}

.navbar-name {
    color: #fff;
    width: 80%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    padding-left: 1%;
}

.hamburger {
    display: none;
}

.nav-items ul {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
}

.nav-items ul a {
    display: block;
    color: #fff;
    text-align: center;
    margin: 30px 30px;
    text-decoration: none;
    transition: 0.5s;
}

.quotes-menu {
    width: 135px;
}

.line {
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    visibility: hidden;
    transform: scaleX(0);
    transition: transform 0.3s, visibility 0.3s;
}

.nav-items a:hover .line,
.nav-items a.active .line {
    transform: scaleX(1);
    visibility: visible;
}


@media only screen and (max-width: 1455px) {
    .navbar-name {
        font-size: 22px;
        text-align: center;
    }
}

@media only screen and (max-width: 1330px) {
    .navbar-name {
        font-size: 22px;
        text-align: center;
    }

    .home-container-2 {
        margin: 0 auto !important;
        padding-top: 10% !important;
    }
}

@media only screen and (max-width: 1240px) {
    .navbar-name {
        font-size: 18px;
    }

    .nav-items ul a {
        font-size: 12px;
    }

    [class^="home-container"] h1 {
        font-size: 28px !important;
    }

    [class^="home-container"] p {
        font-size: 20px !important;
    }
}

@media only screen and (max-width: 1045px) {
    .navbar-name {
        font-size: 24px;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

    .ham-line {
        width: 40px;
        height: 3px;
        background-color: #fefefe;
        margin: 6px 0;
    }

    .nav-items {
        height: 0;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        width: 100vw;
        transition: 0.2s;
        overflow: hidden;
    }

    .nav-items.active {
        height: 530px;
        background-color: rgba(0, 0, 0, 0.8);
    }

    .nav-items ul {
        display: block;
        width: fit-content;
        margin: 0 auto;
        text-align: center;
        transition: 0.5s;
        opacity: 0;
    }
    
    .nav-items.active ul {
        opacity: 1;
    }

    .nav-items ul a {
        margin-bottom: 4px;
    }

    [class^="home-container"] {
        justify-content: center !important;
    }

    [class^="home-container"] h1 {
        font-size: 24px !important;
    }

    [class^="home-container"] p {
        font-size: 16px !important;
    }
}

@media only screen and (max-width: 918px) {
    .image.home-3 {
        display: flex;
        justify-content: center;
    }

    .home-container-3 {
        padding-top: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .home-container-3 h1 {
        padding-top: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 85% !important;
    }
}

@media only screen and (max-width: 840px) {
    .home-container-2 h1 {
        font-size: 20px;
    }

    .home-container-2 p {
        font-size: 18px;
    }
}


@media only screen and (max-width: 777px) {
    .navbar-name {
        font-size: 22px;
    }

    .hamburger {
        margin-right: 50px;
    }
}

@media only screen and (max-width: 918px) {
    .home-container-3 {
        max-width: 75%;
    }
}

/* HOME MOBILE VIEW */

@media only screen and (max-width: 542px) {
    footer p {
        font-size: 12px;
    }
}

@media only screen and (max-width: 506px) {
    .navbar-name {
        font-size: 18px;
    }

    .hamburger {
        margin-right: 35px;
    }

    .hamburger .ham-line {
        width: 35px;
        height: 3px;
    }

    .home-container-1 {
        margin: 0 auto !important;
        padding: 0 !important;
        padding-top: 28% !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .home-container-1 h1 {
        margin-top: 5% !important;
        margin-bottom: 45% !important;
    }

    .home-container-2 {
        padding-top: 48% !important;
    }
}

@media only screen and (max-width: 406px) {
    .navbar-name {
        font-size: 14px;
    }

    .hamburger {
        margin-right: 20px;
    }

    footer p {
        font-size: 10px;
    }

    .home-container-1 h1 {
        margin-top: 5% !important;
        margin-bottom: 80% !important;
    }

    .home-container-2 {
        padding-top: 70% !important;
        max-width: 100% !important;
    }
    
    .home-container-3 {
        margin: 0 auto !important;
        max-width: 100% !important;
    }

    .image.home-1 {
        background-position-x: 56% !important;
    }

    .image.home-2 {
        background-position-x: 54% !important;
    }

    .image.home-3 {
        background-position-x: 46% !important;
    }
}

@media only screen and (max-width: 340px) {
    .navbar-name {
        font-size: 12px;
    }

    footer p {
        font-size: 9px;
    }
}

/* COOKIE CONSENT */
.cookie-wrapper {
    display: none;
    position: fixed;
    bottom: 75px;
    right: 40px;
    max-width: 450px;
    width: 100%;
    background: #fff;
    border-radius: 8px;
    padding: 15px 25px 22px;
    z-index: 1;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.65);
}

.cookie-wrapper .cookie-data {
    color: #1E1E1E;
    font-size: 24px;
}

.cookie-data p a {
    color: #02a0ff;
    text-decoration: none;
}

.cookie-data p a:hover {
    text-decoration: underline;
}

.cookie-wrapper .cookie-buttons {
    margin-top: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cookie-buttons button {
    border: none;
    color: #fff;
    background-color: #1E1E1E;
    width: calc(100% / 2 -10px);
    padding: 8px;
    border-radius: 4px;
    font-size: 20px;
    transition: 0.7s;
}

.cookie-buttons button:hover {
    cursor: pointer;
    background-color: #000;
}

/* COOKIE CONSENT MOBILE VIEW */

@media only screen and (max-width: 1200px) {
    .cookie-wrapper {
        max-width: 350px;
    }
    
    .cookie-wrapper .cookie-data {
        font-size: 20px;
    }

    .cookie-wrapper .cookie-buttons button {
    font-size: 18px;
    }
}

@media only screen and (max-width: 502px) {
    .cookie-wrapper {
        width: 320px;
        position: fixed;
        left: 50%;
        transform: translate(-50%, 0%);
        padding: 15px 25px 22px;
    }
    
    .cookie-wrapper .cookie-data {
        font-size: 18px;
    }

    .cookie-wrapper .cookie-buttons button {
    font-size: 16px;
    }
}

/* BACKGROUND SLIDESHOW */
main {
    height: 95%;
}

.st-slider {
    height: 100%;
    position: relative;
}

.image {
    width: 100%;
    height: 100%;
}

.radio {
    display: none;
}

.images {
    overflow: hidden;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.image.home-1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.25)), url("../images/home-1.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: 25%;
    width: 100%;
    height: 100%;
}

.image.home-2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.25)), url("../images/home-2.jpeg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: 0%;
    width: 100%;
    height: 100%;
}

.image.home-3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.25),
            rgba(0, 0, 0, 0.25)), url("../images/home-3.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.images-inner {
    width: 500%;
    height: 100%;
    transition: all 800ms cubic-bezier(0.770, 0.000, 0.175, 1.000);
    transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);
}

.image-slide {
    width: 20%;
    height: 100%;
    float: left;
}

.image-slide,
.fake-radio,
.radio-btn {
    transition: all 0.5s ease-out;
}

#slide1:checked~.images .images-inner {
    margin-left: 0;
}

#slide2:checked~.images .images-inner {
    margin-left: -100%;
}

#slide3:checked~.images .images-inner {
    margin-left: -200%;
}

#slide1:checked~.fake-radio .radio-btn:nth-child(1),
#slide2:checked~.fake-radio .radio-btn:nth-child(2),
#slide3:checked~.fake-radio .radio-btn:nth-child(3) {
    background: #F7F9F9;
}

.fake-radio {
    background: none;
    position: absolute;
    bottom: -1%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 40px;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.radio-btn {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    box-shadow: 0px 1px 18px #000;
    background: #B5B4B4;
    margin: 0 16px;
    cursor: pointer;
}

/* TEXT CONTENT ON EACH SLIDE*/
.home-container-1,
.home-container-2,
.home-container-3 {
    color: #F7F9F9;
    text-shadow: 0 1px 0 black;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    margin-left: 3%;
    padding: 20px;
    text-align: center;
}

.home-container-1 {
    margin-left: 5%;
    width: 35%;
}

.home-container-2 {
    margin-left: 0%;
}

.home-container-3 {
    margin-left: auto;
    margin-right: -3%;
}

.home-container-1 h1,
.home-container-2 h1,
.home-container-3 h1 {
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 15px;
}

.home-container-1 h1 {
    margin-top: 34%;
}

.home-container-2 h1 {
    margin-top: 66%;
}

.home-container-3 h1 {
    margin-top: 47%;
}

.home-container-1 p,
.home-container-2 p,
.home-container-3 p {
    font-size: 26px;
    margin: 0;
}

.home-container-3 p {
    margin-right: 7%;
}

/* FOOTER */
footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 5%;
    background: #1E1E1E;
    color: #F7F9F9;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ABOUT STYLE */

.about-nav {
    background-color: rgba(0, 0, 0, 1);
}

.about-main {
    position: relative;
    height: auto;
    margin-top: 80px;
    padding: 35px 0px;
    padding-bottom: 30px;
    background-image: url('../images/background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: 50%;
    background-attachment: fixed;
}

.about-intro {
    color: #000;
    width: 100%;
    text-align: center;
    margin-bottom: 65px;
    font-size: 50px;
}

.profile-box {
    background-color: rgba(255,255,255,0.8);
    box-shadow: 0 4px 2px -2px rgba(0,0,0,0.2);
    color: #000;
    width: 100%;
    display: flex;
    padding-top: 0;
    margin-bottom: 5%;
}

.profile-paragraph {
    background-color: rgba(255,255,255,0.8);
    box-shadow: 0 4px 2px -2px rgba(0,0,0,0.2);
    color: #000;
    width: 100%;
    margin-bottom: 5%;
    padding: 2em;
}

.profile-paragraph p:first-of-type {
    font-size: 24px;
    text-align: justify;
    padding-top: 0;
}

.profile-paragraph:last-of-type {
    margin-bottom: 5%;
}

.profile-paragraph p {
    font-size: 24px;
    text-align: justify;
    padding-top: 2em;
}

.profile-paragraph .outro {
    margin-bottom: 5%;
    text-align: left;
}

.profile-paragraph h1 {
    text-align: center;
    margin-bottom: 1em;
}

.person-intro {
    width: 100%;
    font-size: 28px;
    padding: 50px 0px;
    padding: 5% 3%;
}

.person-intro h1 {
    text-align: center;
    padding-bottom: 2%;
    font-size: 38px;
}

.person-intro p {
    text-align: justify;
    width: 100%;
    height: auto;
    font-size: 24px;
}

.person-traits {
    width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-pic-1,
.profile-pic-2 {
    background-image: url('../images/profile-pictures/melinda.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: center;
    background-position-y: center;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    margin-top: -1%;
    padding-bottom: 5%;
}

.profile-pic-2 {
    background-image: url('../images/profile-pictures/petra.jpg');
}

/* ABOUT MOBILE VIEW STYLE */

@media only screen and (max-width: 775px) {
    .about-main .about-intro {
        font-size: 40px;
    }

    .about-main .profile-box {
        display: block;
    }

    .about-main .profile-box .person-traits {
        width: 100%;
    }

    .about-main .profile-box .person-traits [class^="profile-pic"]  {
        margin: 5% 0;
    }

    .about-main .profile-paragraph p {
        font-size: 20px;
    }
}

@media only screen and (max-width: 540px) {
    .about-main .profile-paragraph p {
        font-size: 20px;
    }

    .about-main .profile-box .person-intro h1 {
        font-size: 32px;
    }

    .about-main .profile-box .person-intro p {
        font-size: 20px;
    }
}

@media only screen and (max-width: 402px) {
    .about-main .profile-paragraph p {
        font-size: 16px;
        text-align: center;
    }

    .about-main .profile-box .person-intro h1 {
        font-size: 28px;
    }

    .about-main .profile-box .person-intro p {
        font-size: 16px;
        text-align: center;
    }
}

/* PHOTOS STYLE */

.photos-main {
    height: auto;
    margin-top: 80px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    background-image: url('../images/background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: 50%;
    background-attachment: fixed;
}

.photos-main h1 {
    margin-bottom: 0%;
}

.category-container {
    width: 95%;
    height: auto;
    padding: 5px;
    display: flex;
    align-self: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 7%;
}

.category-container a {
    text-decoration: none;
    padding-bottom: 4em;
}

.category-box {
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.7s;
    border-radius: 3px;
    background-position-x: 40%;
}

.category-box:hover {
    cursor: pointer;
    box-shadow: 0px 0px 18px #000;
}

.category-box-text {
    margin-top: 8px;
    color: #000;
    font-size: 30px;
    text-shadow: 0px 0px 2px gray;
    text-align: center;
    max-width: 95%;
}

#folder {
    background-repeat: no-repeat;
    background-size: cover;
}

#folder-1 {
    background-image: url('../images/wedding-photos/1-prep.jpg');
    background-repeat: no-repeat;
    background-size: cover;
}

#folder-2 {
    background-image: url('../images/wedding-photos/2-request.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: 74%;
}

#folder-3 {
    background-image: url('../images/wedding-photos/3-civil.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: 55%;
}

#folder-4 {
    background-image: url('../images/wedding-photos/4-church.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: 45%;
}

#folder-5 {
    background-image: url('../images/wedding-photos/2-request.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: 74%;
}

#folder-6 {
    background-image: url('../images/wedding-photos/3-civil.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: 55%;
}

#folder-7 {
    background-image: url('../images/wedding-photos/4-church.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: 45%;
}

/* GALLERY STYLE */

#gallery {
    height: auto;
    background-image: url('../images/background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: 50%;
    background-attachment: fixed;
}

.gallery-main {
    margin-top: 80px;
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: auto;
}

.back-arrow {
    color: #000;
    background-color: #fff;
    text-decoration: none;
    align-self: flex-start;
    border-radius: 10%;
    width: 150px;
    padding: 10px;
    margin-left: 20px;
    margin-top: 10px;
    text-align: center;
    transition: 0.7s;
}

.back-arrow:hover {
    cursor: pointer;
    background: #F7F9F9;
}

.back-arrow > * {
    margin-right: 15px;
}

.gallery-main h3 {
    font-size: 50px;
    text-align: center;
    margin-bottom: 2%;
}

.gallery-container {
    width: 95%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 5%;
} 

.gallery-container img {
    width: 350px;
    height: 250px;
}

.gallery-container a {
    width: 350px;
    height: 250px;
    margin: 20px;
}

.gallery-container a:hover {
    box-shadow: 0px 0px 6px #000;
}

/* GALLERY STYLE MOBILE VIEW */

@media only screen and (max-width: 420px) {
    .gallery-container a {
        width: 300px;
        height: 210px;
    }

    .gallery-container img {
        width: inherit;
        height: inherit;
    }
}

@media only screen and (max-width: 370px) {
    .gallery-container a {
        width: 275px;
        height: 180px;
    }

    .gallery-container img {
        width: inherit;
        height: inherit;
    }
}

/* VIDEOS STYLE */
.videos-main {
    margin-top: 80px;
    padding: 40px 2em 0 2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: auto;
    background-image: url('../images/background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: 50%;
    background-attachment: fixed;
}

.videos-main iframe {
    margin-bottom: 10%;
}

.videos-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5%;
    width: 100%;
    margin-bottom: 4%;
}

.videos-row:last-of-type {
    margin-bottom: 8%;
}

.video-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20%;
    height: auto;
    transition: 0.7s;
}

.video-box img {
    width: 100%;
    height: 100%;
}

.video-box h3 {
    color: #fff;
    text-shadow: 1px 1px #000;
    position: absolute;
}

.video-box:hover {
    cursor: pointer;
    box-shadow: 0px 0px 18px black;
}

/* VIDEOS STYLE MOBILE VIEW */

@media only screen and (max-width: 1000px) {
    .videos-main {
        height: auto;
    }

    .videos-row {
        height: 800px;
        flex-direction: column;
        margin-bottom: 10%;
        gap: 0%;
    }

    .videos-row:last-of-type {
        margin-bottom: 20%;
    }

    .video-box {
        height: 180px;
        width: 65%;
        margin-bottom: 20px;
    }

    .video-box h3 {
        font-size: 30px;
    }
}

@media only screen and (max-width: 730px) {
    .video-box {
        width: 75%;
    }

    .video-box h3 {
        font-size: 26px;
    }
}

@media only screen and (max-width: 550px) {
    .video-box {
        width: 80%;
    }

    .video-box h3 {
        font-size: 22px;
    }
}

@media only screen and (max-width: 450px) {
    .videos-row {
        height: 680px;
    }

    .video-box {
        height: 150px;
        width: 85%;
        margin-bottom: 20px;
    }

    .video-box h3 {
        font-size: 18px;
    }
}

@media only screen and (max-width: 400px) {
    .video-box h3 {
        font-size: 16px;
    }
}

@media only screen and (max-width: 360px) {
    .videos-row {
        height: 560px;
    }

    .video-box {
        height: 120px;
        width: 95%;
        margin-bottom: 20px;
    }

    .video-box h3 {
        font-size: 16px;
    }
}

@media only screen and (max-width: 1200px) {
    .videos-main iframe {
        width: 75%;
    }
}

@media only screen and (max-width: 1000px) {
    .videos-main iframe {
        width: 85%;
    }
}

@media only screen and (max-width: 900px) {
    .videos-main {
        height: auto;
    }

    .videos-main iframe {
        width: 85%;
    }
}

/* QUOTES STYLE */

.quotes-main {
    width: 100%;
    height: auto;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    background-image: url('../images/background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: 50%;
    background-attachment: fixed;
}

.quote-box-container {
    display: flex;
    flex-direction: row;
    margin: 0 40px;
    margin-bottom: 20px;
}

.quote-box {
    width: 45%;
    height: 250px;
    margin: 2em auto;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 3px 12px 0px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: row;
}

.quote-person-image {
    width: 175px;
    height: 175px;
    border-radius: 50%;
}

.quote-person-image.zsofi-attila {
    background: url('../images/profile-pictures/zsofi-attila.jpg');
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.quote-person-image.berni-tomi {
    background: url('../images/profile-pictures/berni-tomi.jpg');
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.quote-person-image.eszti-gabor {
    background: url('../images/profile-pictures/eszti-gabor.jpg');
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.quote-person-image.aliz-gabor {
    background: url('../images/profile-pictures/aliz-gabor.jpg');
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.quote-person-image.lola-norbi {
    background: url('../images/profile-pictures/lola-norbi.jpg');
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.quote-person-image.bonnie-andris {
    background: url('../images/profile-pictures/bonnie-andris.jpg');
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-position-x: 10%;
}

.quote-person-image.agi-balazs {
    background: url('../images/profile-pictures/agi-balazs.JPG');
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.quote-person-image.szandra-gergo {
    background: url('../images/profile-pictures/szandra-gergo.jpg');
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.quote-person-image.zsuzsi-lenard {
    background: url('../images/profile-pictures/zsuzsi-lenard.jpg');
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.quote-person-image.barbi-bela {
    background: url('../images/profile-pictures/barbi-bela.jpg');
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.quote-left-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35%;
}

.quote-right-container {
    padding-top: 75px !important;
    width: 65%;
    padding: 1em;
    padding-left: 28px !important;
}

.quote-paragraph {
    text-align: left;
}

.quote-name {
    margin-top: 1em;
    text-align: center;
}

.quote-year {
    margin-top: 4px;
    text-align: center;
}

/* QUOTES STYLE MOBILE VIEW */

@media only screen and (max-width: 1600px) {
    .quote-box .quote-right-container p {
        font-size: 14px;
    }

    .quote-box .quote-right-container h3 {
        font-size: 18px;
    }
}

@media only screen and (max-width: 1250px) {
    .quote-box {
        width: 35%;
        height: auto;
        flex-direction: column;
    }

    .quote-box .quote-left-container {
        width: 100%;
        margin-top: 15px !important;
    }
    
    .quote-box .quote-right-container {
        width: 100%;
        padding-top: 30px !important;
    }
}

@media only screen and (max-width: 870px) {
    .quote-box-container {
        flex-direction: column;
    }

    .quote-box-container .quote-box {
        width: 75%;
    }
}

@media only screen and (max-width: 535px) {
    .quote-box-container .quote-box {
        width: 90%;
    }
}

@media only screen and (max-width: 435px) {
    .quote-box-container .quote-box {
        width: 100%;
    }
}

/* CONTACTS STYLE */

#contacts {
    height: auto;
    background-image: url('../images/background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: 50%;
    background-attachment: fixed;
}

.contacts-main {
    margin: auto;
    margin-top: 80px;
    margin-bottom: 4%;
    padding-top: 20px;
    padding: 3em 5em;
    height: 100%;
    width: 100%;
}

.contacts-container {
    display: flex;
    width: 50%;
    height: 50vh;
    margin: 4% auto;
    background-color: rgba(255, 255, 255, 0.8);
}

.contacts-icons {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.contact-icon {
    height: 20%;
    display: flex;
    flex-direction: row;
    transition: 0.4s;
    text-decoration: none;
    color: black;
}

.contact-icon:hover {
    cursor: pointer;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.3);
}

.contact-icon i {
    width: 30%;
    height: 100%;
    font-size: 40px;
    text-align: center;
    display: flex;
}

.contact-icon i::before {
    margin: auto;
}

.linda-foto-logo-icon {
    width: 20%;
    background-image: url('../images/logo-black.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact-text {
    font-size: 30px;
    text-align: left;
    display: flex;
    align-items: center;
}

.contacts-map {
    width: 55%;
    height: 100%;
}

.contacts-map iframe {
    width: 100%;
    height: 100%;
}

.contacts-form {
    display: flex;
    flex-direction: column;
    width: 45%;
    margin: 4em auto;
    margin-bottom: 4em;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 2em;
    align-items: center;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.contacts-form .form-title {
    margin-bottom: 20px;
}

.contacts-form label {
    margin-bottom: 1em;
}

.contacts-form input {
    width: 70%; 
    margin-bottom: 2em;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 16px; 
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s ease; 
}

.contacts-discovery {
    margin-bottom: 2em;
}

.contact-form-checkboxes {
    width: 90%;
}

.checkbox-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-bottom: 2em;
}

.checkbox-container.privacy {
    justify-content: center;
}

.checkbox-input {
    width: 15% !important;
    margin-bottom: 0 !important;
}

.contacts-form #message {
    width: 90%;
    padding: 10px;
    resize: vertical;
    margin-bottom: 20px;
}

.contacts-form .submit-btn {
    width: 180px;
    margin-top: 25px;
    padding: 10px;
    background-color: #fff;
    border-radius: 30px;
    border: none;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.2);
    transition: 0.6s;
}

.contacts-form .submit-btn:hover {
    background-color: #EDEFEF;
    cursor: pointer;
}

/* SUCCESS STYLE */
#success {
    height: auto;
    background-image: url('../images/background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: 50%;
    background-attachment: fixed;
}

.success-main {
    margin-top: 30vh;
    padding: 40px;
    text-align: center;
    background-color: rgba(255,255,255,0.8);;
}

.success-main h1 {
    margin-bottom: 20px;
}

.success-main h2 {
    font-size: 30px;
}

/* SUCCESS STYLE MOBILE VIEW */
@media only screen and (max-width: 560px) {
    .success-main h1 {
        font-size: 30px;
    }
    
    .success-main h2 {
        font-size: 26px;
    }
}

@media only screen and (max-width: 508px) {
    .success-main h1 {
        font-size: 26px;
    }
    
    .success-main h2 {
        font-size: 22px;
    }
}

@media only screen and (max-width: 440px) {
    .success-main h1 {
        font-size: 22px;
    }
    
    .success-main h2 {
        font-size: 18px;
    }
}

@media only screen and (max-width: 360px) {
    .success-main {
        padding-left: 5px;
        padding-right: 5px;
    }

    .success-main h1 {
        font-size: 20px;
    }
    
    .success-main h2 {
        font-size: 16px;
    }
}

/* CONTACTS STYLE MOBILE VIEW */

@media only screen and (max-width: 1600px) {
    .contact-text {
        font-size: 24px;
    }

    .contacts-form {
        width: 80%;
    }
}

@media only screen and (max-width: 1250px) {
    .contacts-container {
        flex-direction: column;
        width: 85% !important;
        height: 90vh;
        margin: 4% auto !important;
    }

    .contacts-icons {
        width: 100% !important;
    }

    .contacts-map {
        width: 100%;
    }

    .contact-text {
        font-size: 20px;
    }

    .contacts-form {
        width: 90%;
    }

    .contacts-form .form-title {
        font-size: 26px;
    }

    .contacts-form label {
        font-size: 14px;
    }


    .checkbox-container p {
        font-size: 14px !important;
    }
}

@media only screen and (max-width: 880px) {
    .contact-text {
        font-size: 16px;
    }

    .contacts-container {
        width: 85% !important;
    }

    .contacts-form {
        width: 85%;
    }

    .contacts-form {
        width: 95%;
    }

    .contacts-form .form-title {
        font-size: 24px;
    }

    .contacts-form label {
        font-size: 12px;
    }


    .checkbox-container p {
        font-size: 12px !important;
    }
}

@media only screen and (max-width: 750px) {
    .contacts-container {
        width: 90% !important;
    }

    .contact-icon i {
        font-size: 30px;
    }

    .contacts-form {
        width: 100%;
        padding: 1em;
    }

    .contacts-main {
        padding: 3em 2em;
    }

    .contacts-form .form-title {
        font-size: 22px;
    }

    .contacts-form label {
        font-size: 11px;
    }


    .checkbox-container p {
        font-size: 11px !important;
    }
}

@media only screen and (max-width: 610px) {
    .contacts-main {
        padding: 3em 1em;
    }

    .contact-text {
        font-size: 14px;
    }

    .contacts-form input {
        width: 85%;
    }
}

@media only screen and (max-width: 500px) {
    .contact-text {
        font-size: 12px;
    }

    .contact-icon i {
        font-size: 24px;
    }

    .contacts-form .checkbox-input {
        width: 18px !important;
        margin-right: 40px;
    }

    .contacts-form input {
        font-size: 12px;
    }

    .contacts-form label {
        font-size: 10px;
    }

    .contacts-form #message {
        font-size: 12px;
    }


    .checkbox-container p {
        font-size: 10px !important;
    }
}

/* PRIVACY STATEMENT STYLE */

#privacy-statement {
    background-image: url('../images/background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: 50%;
    background-attachment: fixed;
}

.privacy-statement-main {
    margin-top: 80px;
}

.privacy-statement-main .document {
    width: 80%;
    margin: 8% auto;
    padding: 4rem;
    background-color: #fff;
}

.privacy-statement-main .document h1 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 2rem;
}

.privacy-statement-main .document h3 {
    font-size: 28px;
    margin-bottom: 1rem;
}

.privacy-statement-main .document p {
    font-size: 26px;
    text-align: justify;
    margin-bottom: 3rem;
}

.privacy-statement-main .document span {
    font-size: 26px;
    text-align: justify;
}

.privacy-statement-main .document ul {
    margin: 2rem 0;
}

.privacy-statement-main .document ul li {
    font-size: 22px;
    margin-left: 2em;
}

/* PRIVACY STATEMENT MOVILE VIEW STYLE */
@media only screen and (max-width: 1200px) {
    .privacy-statement-main .document h1 {
        font-size: 32px;
    }
    
    .privacy-statement-main .document h3 {
        font-size: 24px;
    }
    
    .privacy-statement-main .document p {
        font-size: 22px;
    }
    
    .privacy-statement-main .document span {
        font-size: 22px;
    }

    .privacy-statement-main .document ul li {
        font-size: 18px;
    }
}

@media only screen and (max-width: 1040px) {
    .privacy-statement-main .document {
        margin: 12% auto;
    }

    .privacy-statement-main .document h1 {
        font-size: 32px;
    }
    
    .privacy-statement-main .document h3 {
        font-size: 24px;
    }
    
    .privacy-statement-main .document p {
        font-size: 22px;
    }
    
    .privacy-statement-main .document span {
        font-size: 22px;
    }

    .privacy-statement-main .document ul li {
        font-size: 18px;
    }   
}

@media only screen and (max-width: 800px) {
    .privacy-statement-main .document {
        margin: 16% auto;
    }

    .privacy-statement-main .document h1 {
        font-size: 28px;
    }
    
    .privacy-statement-main .document h3 {
        font-size: 20px;
    }
    
    .privacy-statement-main .document p {
        font-size: 20px;
    }
    
    .privacy-statement-main .document span {
        font-size: 20px;
    }

    .privacy-statement-main .document ul li {
        font-size: 16px;
    }   
}

@media only screen and (max-width: 560px) {
    .privacy-statement-main .document {
        margin: 20% auto;
        padding: 2rem;
        margin-bottom: 100px;
    }

    .privacy-statement-main .document h1 {
        font-size: 26px;
    }
    
    .privacy-statement-main .document h3 {
        font-size: 18px;
    }
    
    .privacy-statement-main .document p {
        font-size: 18px;
    }
    
    .privacy-statement-main .document span {
        font-size: 18px;
    }

    .privacy-statement-main .document ul li {
        font-size: 14px;
    }   
}

@media only screen and (max-width: 500px) {
    .privacy-statement-main .document {
        width: 90%;
        margin: 100px auto;
        padding: 2rem;
        margin-bottom: 100px;
    }

    .privacy-statement-main .document > * {
        text-align: center !important;
    }

    .privacy-statement-main .document h1 {
        font-size: 22px;
    }
    
    .privacy-statement-main .document h3 {
        font-size: 15px;
    }
    
    .privacy-statement-main .document p {
        font-size: 15px;
    }
    
    .privacy-statement-main .document span {
        font-size: 15px;
    }

    .privacy-statement-main .document ul li {
        font-size: 12px;
    }   
}