:root {
    --dark_color: #1A1A1A;
    --white_color: #E0E0E0;
    --blue-color: #1F2A44;
}

body {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background-color: var(--dark_color);
    font-family: 'GeneralSans-Regular';
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

/* Header */
.site-header {
    background-color: var(--blue-color);
    color: var(--white_color);
    padding: 40px 0 59px;
}

.container {
    max-width: 95%;
    width: 2130px;
    margin: 0 auto;
}

.site-header h1 {
    font-size: 64px;
    font-family: 'GeneralSans-Extralight';
}

.site-header h2 {
    font-size: 36px;
    font-family: 'GeneralSans-Extralight';
}

/* Intro Section */
.intro-section {
    background: #100F0D;
}

.intro-section .intro-row {
    display: flex;
    flex-wrap: wrap;
}

.intro-section .intro-row>div {
    width: 50%;
}

.intro-section .intro-row>div.person-img {
    display: flex;
    overflow: hidden;
}

.intro-section .intro-row img {
    width: 100%;
    transition: 15s all;
    transform: scale(1);
}

.intro-section.in-view .intro-row img {
    transform: scale(1.1);
}

.intro-section .intro-row>div.person-info {
    display: flex;
    align-items: center;
}

.info-inner {
    padding-left: 145px;
    position: relative;
    z-index: 1;
}

.person-info .info-inner span {
    display: block;
    font-size: 36px;
    line-height: initial;
    font-family: 'GeneralSans-Extralight';
    color: var(--white_color);
    margin-bottom: 8px;
}

.person-info h2 {
    font-size: 58px;
    color: var(--white_color);
    position: relative;
    z-index: 1;
    font-family: 'GeneralSans-Extralight';
}

.person-info .info-inner:before {
    content: '';
    background-image: url(../Images/andreas_dorfner_notenschl.svg);
    width: 184px;
    height: 445px;
    position: absolute;
    background-size: 100%;
    background-repeat: no-repeat;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
}

/* About section */
.about-ad {
    background-image: url(../Images/andreas_dorfner_klavier.webp);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    z-index: 1;
    padding: 130px 0;
}

.about-ad:before {
    content: '';
    background-color: var(--blue-color);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.96;
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-img {
    width: 300px;
    height: 300px;
    margin: 0 auto 40px;
    position: relative;
}

.about-img:before {
    content: '';
    width: 274px;
    height: 274px;
    position: absolute;
    border: 1px solid hsl(0deg 0% 100% / 50%);
    border-radius: 50%;
    z-index: 1;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
}

.about-content img {
    border-radius: 50%;
    width: 300px;
    height: 300px;
    object-fit: cover;
    object-position: center;
    margin: 0 auto 0px;
    position: relative;
}

.about-content h2 {
    font-size: 64px;
    color: var(--white_color);
    font-family: 'GeneralSans-Extralight';
    margin-bottom: 22px;
    line-height: initial;
}

.about-content p {
    font-size: 22px;
    line-height: 33px;
    margin: 0;
    color: var(--white_color);
}

.about-music {
    padding: 108px 0;
}

.about-music .container {
    position: relative;
    padding: 124px 0;
}

.about-music .container:before,
.about-music .music-content:before {
    content: '';
    background: #3a3a3a;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    top: 0;
}

.about-music .container:after,
.about-music .music-content:after {
    content: '';
    width: 42px;
    height: 42px;
    background-color: #1a1a1a;
    position: absolute;
    top: -21px;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(../Images/andreas_dorfner_note_klein-dark.svg);
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

.music-content {
    text-align: center;
}

.about-music .music-content:before {
    bottom: 0;
    top: auto;
}

.about-music .music-content:after {
    top: auto;
    bottom: -21px;
}

.music-content h3 {
    font-size: 36px;
    color: var(--white_color);
    margin-bottom: 22px;
}

.music-content p {
    font-size: 22px;
    line-height: 33px;
    color: var(--white_color);
    max-width: 912px;
    margin: 0 auto;
}

.contact-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: var(--blue-color);
}

.contact-inner>div {
    width: 50%;
    position: relative;
}

.contact-inner>div.contact-img {
    display: flex;
    overflow: hidden;
}

.contact-img:before {
    content: '';
    position: absolute;
    width: calc(100% - 80px);
    height: calc(100% - 80px);
    border: 1px solid hsl(0deg 0% 100% / 50%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 1s all;
    z-index: 1;
}

.in-view .contact-img img {
    transform: scale(1);
}

.contact-img img {
    width: 100%;
    max-height: 615px;
    object-fit: cover;
    transition: 2s all;
    transform: scale(1.1);
    object-position: bottom;
}

.contact-content {
    text-align: center;
}

.contact-content h4 {
    font-size: 58px;
    color: var(--white_color);
    margin-bottom: 8px;
    font-family: 'GeneralSans-Extralight';
}

.contact-content p {
    font-size: 20px;
    color: var(--white_color);
    margin-bottom: 48px;
    font-family: 'GeneralSans-Extralight';
}

.contact-content a {
    font-size: 22px;
    background: var(--dark_color);
    color: var(--white_color);
    padding: 16px 32px;
    display: inline-flex;
    transition: 0.5s all;
}

.contact-content a:hover {
    background-color: var(--white_color);
    color: var(--blue-color);
}

.bottom-section {
    padding: 180px 0;
}

.bottom-section .bottom-content {
    text-align: center;
}

.bottom-content .title {
    font-size: 64px;
    font-family: 'GeneralSans-Extralight';
    color: var(--white_color);
    margin-bottom: 19px;
    display: block;
}

.bottom-content p {
    font-size: 22px;
    line-height: 33px;
    color: var(--white_color);
}

.site-footer {
    background: #111111;
    padding: 15px 0;
}

.footer-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.footer-row .col {
    width: 33.33%;
}

.footer-row .col p {
    font-size: 22px;
    color: var(--white_color);
    font-family: 'GeneralSans-Extralight';
}

.footer-row .col ul {
    margin: 0;
    display: flex;
    justify-content: center;
    padding: 0;
    list-style: none;
}

.footer-row .col ul a {
    font-size: 22px;
    color: var(--white_color);
    text-decoration: none;
    transition: 0.5s all;
    font-family: 'GeneralSans-Extralight';
}

.footer-row .col ul a:hover {
    text-decoration: underline;
}

.footer-row .col ul li:not(:last-child) a {
    border-right: 2px solid #fff;
    padding-right: 12px;
    margin-right: 12px;
}

.footer-row .col:last-child {
    text-align: right;
}

/* Popups */
.popups {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.50);
    backdrop-filter: blur(7.5px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 10;
    transition: 0.5s all 0.3s;
    opacity: 0;
    visibility: hidden;
}

.popup-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

.popups.popup-open {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

.popups .popup-content {
    background: #1F2A44;
    margin: 0;
    padding: 64px;
    position: relative;
}

.popups .popup-content span.popup-close {
    position: absolute;
    right: 64px;
    top: 64px;
    width: 40px;
    height: 40px;
    text-align: right;
    cursor: pointer;
}

.popups .popup-overlay-inner {
    max-width: 90%;
    width: 1322px;
    margin: 0 auto;
    max-height: calc(100vh - 300px);
    overflow-y: scroll;
    transition: 0.5s all 0s;
    opacity: 0;
    scrollbar-width: thin;
}

.popups.popup-open .popup-overlay-inner {
    opacity: 1;
    transition-delay: 0.3s;
}

.popups .popup-content span.title {
    font-size: 64px;
    color: var(--white_color);
    display: block;
    border-bottom: 1px solid hsl(0deg 0% 100% / 50%);
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.popups .popup-content b {
    font-size: 16px;
    color: var(--white_color);
    display: block;
    font-family: 'GeneralSans-Semibold';
}

.popups .popup-content p {
    font-size: 16px;
    color: var(--white_color);
    margin-bottom: 16px;
    font-family: 'GeneralSans-Extralight';
    line-height: initial;
}

.popups .popup-content p a {
    color: var(--white_color);
    text-decoration: none;
}

.popups .popup-content ul.dot-list {
    margin: 0 0 16px;
    padding: 0 0 0 18px;
    color: var(--white_color);
    font-size: 16px;
    font-family: 'GeneralSans-Extralight';
}

.mipe-media-details {
    display: flex;
    align-items: center;
    border-top: 1px solid hsl(0deg 0% 100% / 50%);
    padding-top: 40px;
    margin-top: 40px;
    column-gap: 80px;
}

.mipe-media-details .mm-detail {
    max-width: 500px;
}

.mm-logo img {
    width: 227px;
}

body:has(.popup-open) {
    overflow: hidden;
}

@media(max-width:2149px) {
    .container {
        width: 1560px;
    }

    .info-inner {
        padding-right: 30px;
    }
}

@media(max-width:1849px) {
    .popups .popup-content span.title {
        font-size: 54px;
    }

    .container {
        width: 1440px;
    }

    .site-header h1,
    .about-content h2,
    .bottom-content .title {
        font-size: 54px;
    }

    .site-header h2 {
        font-size: 26px;
    }

    .person-info .info-inner span {
        font-size: 26px;
    }

    .person-info h2 {
        font-size: 46px;
    }

    .about-content p,
    .music-content p,
    .bottom-content p {
        font-size: 20px;
        line-height: 30px;
    }

    .music-content h3 {
        font-size: 30px;
    }

    .contact-content p {
        padding: 0 60px;
    }

    .contact-content h4 {
        font-size: 48px;
    }

    .contact-content a {
        font-size: 20px;
    }

    .footer-row .col p,
    .footer-row .col ul a {
        font-size: 20px;
    }
}

@media(max-width:1599px) {
    .popups .popup-content span.title {
        font-size: 45px;
    }

    .container {
        width: 1200px;
    }

    .site-header h1,
    .about-content h2,
    .bottom-content .title {
        font-size: 45px;
    }

    .site-header h2 {
        font-size: 24px;
    }

    .person-info .info-inner:before {
        width: 134px;
        height: 325px;
    }

    .person-info .info-inner span {
        font-size: 24px;
    }

    .person-info h2 {
        font-size: 40px;
    }

    .info-inner {
        padding-left: 95px;
    }

    .contact-content h4 {
        font-size: 45px;
    }

    .bottom-section {
        padding: 120px 0;
    }

    .footer-row .col p,
    .footer-row .col ul a {
        font-size: 18px;
    }
}

@media(max-width:1399px) {
    .container {
        width: 1024px;
    }

    .person-info .info-inner:before {
        width: 104px;
        height: 265px;
    }

    .info-inner {
        padding-left: 75px;
    }

    .person-info h2 {
        font-size: 36px;
    }
}

@media(max-width:1199px) {
    .popups .popup-content span.title {
        font-size: 40px;
    }

    .container {
        width: 890px;
    }

    .site-header h1,
    .about-content h2,
    .bottom-content .title {
        font-size: 40px;
    }

    .site-header h2 {
        font-size: 20px;
    }

    .site-header {
        padding: 30px 0 40px;
    }

    .person-info .info-inner:before {
        left: -50px;
    }

    .info-inner {
        padding-left: 25px;
        padding-right: 20px;
    }

    .person-info h2 {
        font-size: 34px;
    }

    .person-info .info-inner span {
        font-size: 22px;
    }

    .about-ad {
        padding: 100px 0;
    }

    .about-img,
    .about-content img {
        width: 250px;
        height: 250px;
    }

    .about-img:before {
        width: 224px;
        height: 224px;
    }

    .about-content p,
    .music-content p,
    .bottom-content p {
        font-size: 18px;
        line-height: 28px;
    }

    .music-content h3 {
        font-size: 26px;
    }

    .about-music .container {
        padding: 100px 0;
    }

    .about-music {
        padding: 90px 0;
    }

    .contact-content h4 {
        font-size: 36px;
    }

    .contact-content p {
        padding: 0 40px;
        font-size: 18px;
        margin-bottom: 40px;
    }

    .contact-content a {
        font-size: 18px;
    }

    .contact-img:before {
        width: calc(100% - 40px);
        height: calc(100% - 40px);
    }

    .bottom-section {
        padding: 100px 0;
    }

    .footer-row .col p,
    .footer-row .col ul a {
        font-size: 16px;
    }
}

@media(max-width:1023px) {
    .container {
        width: 640px;
    }

    .person-info .info-inner span {
        font-size: 18px;
    }

    .person-info h2 {
        font-size: 30px;
    }

    .person-info .info-inner:before {
        width: 74px;
        height: 185px;
    }

    .info-inner {
        padding-left: 0px;
        padding-right: 20px;
    }

    .music-content h3 {
        font-size: 24px;
    }

    .about-content p,
    .music-content p,
    .bottom-content p {
        font-size: 16px;
        line-height: 26px;
    }

    .contact-content p {
        padding: 0 20px;
        font-size: 16px;
        margin-bottom: 40px;
    }

    .footer-row .col p,
    .footer-row .col ul a {
        font-size: 13px;
    }

    .contact-content a {
        font-size: 16px;
    }
}

@media(max-width:767px) {
    .popups .popup-overlay-inner {
        max-height: calc(100vh - 120px);
        overflow-x: hidden;
    }

    .popups .popup-content span.title {
        font-size: 35px;
    }

    .container {
        width: 480px;
    }

    .site-header {
        padding: 30px 0 40px;
        text-align: center;
    }

    .site-header h1,
    .about-content h2,
    .bottom-content .title {
        font-size: 35px;
    }

    .site-header h2 {
        font-size: 18px;
    }

    .intro-section .intro-row>div {
        width: 100%;
        justify-content: center;
    }

    .intro-section .intro-row>div.person-info {
        text-align: center;
        padding: 60px 20px;
    }

    .contact-inner>div {
        width: 100%;
    }

    .contact-content {
        padding: 60px 20px;
    }

    .contact-content h4 {
        font-size: 35px;
    }

    .about-music .container {
        padding: 80px 0;
    }

    .bottom-section {
        padding: 80px 0;
    }

    .footer-row .col {
        width: 100%;
        text-align: center;
    }

    .footer-row .col:last-child {
        text-align: center;
    }

    .footer-row {
        row-gap: 5px;
    }

    .footer-row .col p,
    .footer-row .col ul a {
        font-size: 16px;
    }

    .site-footer {
        padding: 25px 0;
    }

    .info-inner {
        padding-left: 0px;
        padding-right: 0;
    }

    .popups .popup-content {
        padding: 40px;
    }

    .popups .popup-content span.popup-close {
        top: 40px;
        right: 40px;
    }

    .mipe-media-details {
        column-gap: 30px;
    }

    .popups .popup-content b,
    .popups .popup-content p,
    .popups .popup-content ul.dot-list {
        font-size: 14px;
    }

    .mm-logo img {
        max-width: 120px;
    }
}

@media(max-width:599px) {
    .mipe-media-details {
        flex-wrap: wrap;
        row-gap: 30px;
        padding-top: 25px;
        margin-top: 25px;
    }

    .mipe-media-details .mm-detail {
        max-width: 100%;
        width: 100%;
    }

    .popups .popup-content span.popup-close {
        top: 20px;
        right: 20px;
    }

    .popups .popup-content span.title {
        font-size: 30px;
    }

    .site-header h1,
    .about-content h2,
    .bottom-content .title {
        font-size: 30px;
    }

    .site-header h2 {
        font-size: 16px;
    }

    .site-header {
        padding: 25px 0 35px;
    }

    .intro-section .intro-row>div.person-info {
        padding: 50px 20px;
    }

    .person-info .info-inner span {
        font-size: 16px;
    }

    .person-info h2 {
        font-size: 24px;
    }

    .person-info .info-inner:before {
        width: 54px;
        height: 135px;
        left: -35px;
    }

    .about-ad {
        padding: 70px 0;
    }

    .about-img,
    .about-content img {
        width: 220px;
        height: 220px;
    }

    .about-img:before {
        width: 200px;
        height: 200px;
    }

    .container {
        max-width: 90%;
    }

    .about-content p,
    .music-content p,
    .bottom-content p {
        font-size: 14px;
        line-height: 24px;
    }

    .about-music {
        padding: 70px 0;
    }

    .about-music .container {
        padding: 60px 0;
    }

    .music-content h3 {
        font-size: 20px;
    }

    .contact-content {
        padding: 50px 20px;
    }

    .contact-content h4 {
        font-size: 30px;
    }

    .contact-content p {
        padding: 0 15px;
        font-size: 14px;
        margin-bottom: 35px;
    }

    .contact-content a {
        font-size: 14px;
        padding: 14px 32px;
    }

    .bottom-section {
        padding: 70px 0;
    }

    .footer-row .col p,
    .footer-row .col ul a {
        font-size: 14px;
    }
}