@media screen and (orientation: landscape) {


    main {
        width: 70%;
    }
}



#hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 80vh;
    background: url("../images/bemutatkozas/hero.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 10vh;
}



#hero img {
    width: 100vw;
    transform: translateX(-15%);
}

.introductions {
    display: flex;
    flex-direction: column;
    gap: 10vh;
}


.introduction {
    display: flex;
    text-align: left;
    gap: 2.5rem;
    position: relative;
    align-items: start;
}

#marosi {
    text-align: right;
    flex-direction: row-reverse;
}

.introduction h1 {
    margin: 0;
    font-weight: normal;
    font-size: 2.5rem;
}

.introduction h2 {
    color: var(--complement);
    font-size: 1.6rem;
    font-weight: normal;
    margin: 0;
    margin-bottom: 1.5rem;
}

.introduction p {
    margin: 0;
    font-size: 1.4rem;
}

.introduction img {
    height: auto;
    width: 35%;
    flex-shrink: 0;
    object-fit: contain;

}

.introduction-texts {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: auto;

}

#introduction-abstract-top-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 20vw;
    z-index: -1;
    opacity: 0.7;
}


@media screen and (orientation: portrait) {

    .introduction,
    .introduction:nth-child(even) {
        display: flex;
        flex-direction: column;
        text-align: left;
        gap: 2.5rem;
    }

    .introduction img {
        height: auto;
        width: 100%;

    }

    main {
        margin-top: 0;
    }

    #introduction-abstract-top-left {
        display: none;
    }


    .introduction h1 {

        font-size: 2rem;
    }

    .introduction h2 {
        font-size: 1.2rem;
    }

    .introduction p {

        font-size: 1rem;
    }

    #marosi {
        display: flex;
        flex-direction: column;
    }

    #marosi * {
        text-align: left;
    }
}



.fullwidth {
    width: 100vw;
    background-color: var(--main);
    color: var(--complement);
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-bottom: 2rem;
}

.fullwidth h1 {
    font-size: 6.5cqi;
    text-transform: uppercase;
    font-weight: 400;
    margin: 3rem;
    text-align: center;
}

.fullwidth small {
    margin-top: 2rem;
    font-size: 1.2rem;
    color: var(--bg);
}

.fullwidth a {
    font-size: 2rem !important;
}

#references {
    margin-top: 10vh;
}

#reviews {
    color: var(--main);
    background-color: var(--complement);
}

#reviews a {
    background-color: var(--main);
}

@media screen and (orientation:portrait) {

    .fullwidth {

        padding-bottom: 1.5rem;
    }

    .fullwidth h1 {
        font-size: 2rem;
        width: 100%;
        margin: 2rem;
    }

    .fullwidth a {
        font-size: 1.3rem !important;
        padding: 0.3rem 0.6rem !important;
    }
}


#appointment {
    margin: 10vh 0;
}

#appointment h2 {
    text-transform: uppercase;
    font-size: 2.5cqi;
    text-align: center;
    width: 60%;
}

@media screen and (orientation:portrait) {
    #appointment h2 {
        font-size: 5cqi;
        width: 90%;
    }
}

#google {
    background-color: transparent;
}

#google-mobile {
    display: none;
}

@media screen and (orientation:portrait) {
    #google-desktop {
        display: none;
    }

    #google-mobile {
        display: block;
        width: 60%;
    }
}

#team {
    background-image: url("../images/bemutatkozas/csapat.jpg");
    margin-top: 10vh;
}