* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 10px;
    font-family: 'Roboto', sans-serif;
    scroll-behavior: smooth;
}

.hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    transition: transform .2s ease;
    z-index: 2;
}

.hamburger.active {
    transform: rotate(180deg);
}

.hamburger.active + .hamburger {
    transform: translateY(400px);
}

.hamburger__container {
    display: flex;
    align-items: center;
    position: relative;
    width: 35px;
    height: 30px;
}

.hamburger__bars {
    position: absolute;
    width: 35px;
    height: 2px;
    background-color: #000;
}

.hamburger__bars::before, .hamburger__bars::after {
    content: '';
    display: block;
    position: absolute;
    width: 80%;
    height: 2px;
    background-color: #000;
}

.hamburger__bars::before {
    top: -12px;
}

.hamburger__bars::after {
    bottom: -12px;
}

aside {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 100%;
    background-color: #f2e7dd;
    z-index: 1;
    transition: transform .2s ease;
}

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hamburger.active + aside {
    transform: translateX(-100%);
}

.menu {
    list-style: none;
    text-align: center;
}

.menu__item {
    margin-top: 10px;
}

.desktop {
    display: none;
    justify-content: space-between;
    align-items: center;
    background-color: #f2e7dd;
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    transition: padding .2s ease;
    -webkit-box-shadow: 0px 12px 36px -9px rgba(66, 68, 90, 1);
    -moz-box-shadow: 0px 12px 36px -9px rgba(66, 68, 90, 1);
    box-shadow: 0px 12px 36px -9px rgba(66, 68, 90, 1);
}

.sticky {
    padding: 5px;
    transition: padding .2s ease;
}

.menu__item a {
    text-decoration: none;
    margin: 20px;
    cursor: pointer;
    transition: color .2s ease;
    font-size: 2.3rem;
    color: #4154f5;
}

.menu__item a:hover {
    color: #9e47e5;
}

.logo-mobile {
    width: 200px;
    height: 200px;
}

.logo-desktop {
    width: 80px;
    height: 80px;
}

.menu__item a.active {
    color: #9e47e5;
}

@media (min-width: 667px) and (orientation: landscape) {
    aside {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    aside, .hamburger {
        display: none;
    }

    .desktop {
        display: flex;
    }

    .menu {
        display: flex;
    }

    .menu__item a {
        font-size: clamp(1.4rem, 1.7vw, 2.2rem);
    }
}

.hero {
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

.header-image {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #9e47e5;
    clip-path: polygon(0 50%, 50% 60%, 100% 50%, 100% 100%, 0 100%);
}

.header-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -70%);
    width: 80%;
}

@media (min-width: 667px) and (orientation: landscape) {
    .header-logo {
        width: 50%;
    }
}

@media (min-width: 1024px) {
    .header-image {
        clip-path: polygon(0 50%, 50% 70%, 100% 50%, 100% 100%, 0 100%);
    }

    .header-logo {
        transform: translate(-50%, -60%);
        width: 30%;
    }
}

.about-us {
    padding-bottom: 30px;
}

.about-us, footer {
    background-color: #f2e7dd;
}

.title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    text-align: center;
    text-transform: uppercase;
    background-image: linear-gradient(to right, #4154f5, #9e47e5);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.first-title {
    margin: 15px;
}

.ai-zone, .printing-zone, .gallery, .about-us, .contact {
    padding: 15px;
}

.intro {
    margin-bottom: 20px;
}

.intro-item {
    margin-bottom: 40px;
}

.intro-photo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-img, .intro-img-right {
    width: 50%;
}

.intro-title, .intro-text {
    text-align: center;
    width: 80%;
    margin: 0 auto;
}

.intro-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
}

.intro-text {
    font-size: clamp(1.5rem, 1.1vw, 1.7rem);
    margin-top: 20px;
}

@media (min-width: 768px) {
    .intro-item {
        display: grid;
        grid-template-columns: repeat(3, minmax(150px, 1fr));
        width: 80%;
        margin: 0 auto;
        margin-bottom: 40px;
    }

    .intro-img-right {
        grid-column: 3/4;
    }

    .intro-info {
        grid-column: 2/4;
    }

    .intro-info-right {
        grid-column: 1/3;
        grid-row: 1;
    }

    .intro-info, .intro-info-right {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .intro-img,.intro-img-right {
        width: 100%;
}
}

@media (min-width: 1024px) {
    .intro-item {
        width: 80%;
    }

    .intro-img, .intro-img-right {
        width: 90%;
    }
}

.accordion {
    width: 90%;
    margin: 0 auto;
}

.title-ai, .title-print {
    text-align: center;
    font-size: clamp(2rem, 4.5vw, 3.7rem);
    margin: 15px;
}

.accordion-item {
    margin-bottom: 15px;
}

.accordion-title {
    font-size: 2rem;
    background-color: #f2e7dd;
    padding: 20px;
    cursor: pointer;
    border-radius: 10px;
    transition: background-color .3s ease;
    user-select: none;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    margin: 15px;
    transition: max-height .3s ease;
}

.lecture-title {
    font-size: clamp(1.6rem, 1.2vw, 2.5rem);
}

.accordion-content-text {
    font-size: clamp(1.5rem, 1.1vw, 1.7rem);
    padding: 10px;
}

article.active .accordion-title {
    background-color: #d9bfa6;
}

article.active .content-text {
    display: block;
    animation: fadeIn .3s ease;
}

@keyframes fadeIn {
    0% {opacity: 0; transform: translateY(-10px)}
    100% {opacity: 100%; transform: translateY(0)}
}

.fa-plus, .fa-minus {
    margin-right: 15px;
}

.fa-square-check {
    color: #0d0;
    font-size: clamp(1.5rem, 1.5vw, 1.8rem);
    margin-right: 5px;
}

@media (min-width: 768px) {
    .accordion {
        width: 70%;
    }
}

.gallery {
    padding: 15px;
}

.images {
    display: grid;
    grid-gap: 10px;
    padding: 10px;
    overflow: hidden;
    grid-template-areas:
    "one"
    "two"
    "three"
    "four"
    "five"
    "six";
}

.photo img {
    width: 100%;
}

.photo_one, .photo_two, .photo_three, .photo_four, .photo_five, .photo_six {
    position: relative;
    overflow: hidden;
}

.photo_one {
    grid-area: one;
}

.photo_two {
    grid-area: two;
}

.photo_three {
    grid-area: three;
}

.photo_four {
    grid-area: four;
}

.photo_five {
    grid-area: five;
}

.photo_six {
    grid-area: six;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay-text {
    color: #fff;
    font-size: clamp(1.5rem, 1.5vw, 1.8rem);
    text-align: center;
}

@media (min-width: 768px) {
    .images {
        max-width: 80%;
        margin: 0 auto;
        grid-template-areas:
        "one two"
        "three four"
        "five six";
    }
}

@media (min-width: 1024px) {
    .images {
        grid-template-areas:
        "one two three"
        "four five six";
    }

    .overlay {
        width: 100%;
        height: 100%;
        background-color: transparent;
        transition: background-color .3s ease;
    }

    .overlay-text {
        color: transparent;
        transition: color .3s ease;
    }

    .photo:hover .overlay {
        background-color: rgba(0, 0, 0, 0.5);
    }

    .photo:hover .overlay-text {
        color: #fff;
    }
}

.aboutus-main {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
}

.person {
    margin-top: 40px;
}

.person:first-child {
    margin: 0;
}

.custom-photo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-photo img {
    width: 60%;
    border-radius: 10%;
    -webkit-box-shadow: 0px 12px 36px -9px rgba(66, 68, 90, 1);
    -moz-box-shadow: 0px 12px 36px -9px rgba(66, 68, 90, 1);
    box-shadow: 0px 12px 36px -9px rgba(66, 68, 90, 1);
}

.person-info {
    text-align: center;
    margin-top: 15px;
}

.name, .form-info, .socialmedia, .adress-header, .contact-header, .rodo-header {
    font-size: clamp(2rem, 3.7vw, 2.7rem);
    color: #000;
}

.person-description {
    font-size: clamp(1.5rem, 1.1vw, 1.7rem);
}

@media (min-width: 768px) {
    .custom-photo img {
        width: 45%;
    }
}

@media (min-width: 1024px) {
    .aboutus-main {
        width: 80%;
        margin: 0 auto;
    }

    .person {
        display: grid;
        grid-template-columns: repeat(4, minmax(150px, 1fr));
    }

    .photo-left {
        grid-column: 1/2;
    }

    .photo-right {
        grid-column: 4/5;
    }

    .person-info {
        text-align: left;
        grid-column: 2/5;
        display: flex;
        justify-content: center;
        flex-direction: column;
        margin: 0;
    }

    .person-info-right {
        text-align: right;
        grid-column: 1/4;
        grid-row: 1;
    }

    .custom-photo img {
        width: 80%;
    }
}

.form-box {
    width: 90%;
    padding: 20px;
    margin: 20px auto 20px auto;
    background-color: #f6f6f6;
    border-radius: 10px;
}

.form-info {
    text-align: center;
    margin-bottom: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group input, .form-group textarea {
    padding: 10px;
    margin: 5px;
    border: 1px solid #000;
    border-radius: 10px;
}

.form-group label, .form-group input, .form-group textarea {
    font-size: clamp(1.5rem, 1.1vw, 1.7rem);
}

textarea {
    height: 100px;
    resize: none;
}

.submitform {
    width: 100%;
    padding: 10px;
    font-size: clamp(1.5rem, 1.1vw, 1.7rem);
    border: 1px solid #000;
    border-radius: 10px;
    background-color: #f2e7dd;
    color: #000;
    transition: background-color .3s ease;
}

@media (min-width: 768px) {
    .form-box {
        width: 70%;
    }
}

@media (min-width: 1024px) {
    .forms {
        display: flex;
        width: 80%;
        margin: 0 auto;
    }

    .form-box {
        margin: 20px 20px 20px 0;
    }

    .form-box:last-child {
        margin-right: 0;
    }

    .submitform {
        cursor: pointer;
    }

    .submitform:hover {
    background-color: #dec4ac;
}
}

.socials {
    margin: 15px;
}

.facebook, .instagram, .linkedin {
    margin: 15px 0;
    text-align: center;
}

.page {
    font-size: 1.4rem;
}

.facebookimg, .instagramimg, .linkedinimg {
    width: 15%;
}

.socialLink {
    text-decoration: none;
    color: #000;
}

.email {
    text-align: center;
    font-size: clamp(1.5rem, 1.5vw, 1.8rem);
}

.socialmedia {
    text-align: center;
}

.socials {
    margin: 15px;
}

.facebook, .instagram, .linkedin {
    margin: 15px 0;
    text-align: center;
}

.page {
    font-size: 1.4rem;
}

.facebookimg, .instagramimg, .linkedinimg {
    width: 15%;
}

.socialLink {
    text-decoration: none;
    color: #000;
}

.email {
    text-align: center;
    font-size: clamp(1.5rem, 1.5vw, 1.8rem);
}

.facebook, .instagram, .linkedin {
    margin: 15px 0;
    text-align: center;
}

@media (min-width: 768px) {
    .socials {
        display: flex;
        justify-content: center;
    }
}

.fab {
    font-size: clamp(3rem, 6vw, 8rem);
    margin: 0 30px 0 30px;
}

.info-wrapper {
    text-align: center;
    padding: 15px;
}

.footer-contact, .rodo {
    margin-top: 15px;
}

.details {
    font-size: clamp(1.5rem, 1.1vw, 1.7rem);
}

.pdf-button, .training-button {
    text-decoration: none;
    color: #4154f5;
    font-size: clamp(1.5rem, 1.1vw, 1.7rem);
    transition: color .3s ease;
}

.pdf-button:hover, .training-button:hover {
    color: #9e47e5;
}

.author-photo {
    text-align: center;
}

.author-photo img {
    width: 15%;
}

.footer-author {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 15px;
}

@media (min-width: 1024px) {
    .info-wrapper {
        display: flex;
        justify-content: start;
        align-items: center;
        flex-wrap: wrap;
        gap: 2rem;
        padding: 50px;
    }

    .footer-contact, .rodo {
        margin: 0;
    }

    .footer-adress, .footer-contact {
        flex: 1 1 200px;
        max-width: 33%;
    }

    .author-photo img {
        width: 10%;
    }
}