
/**body**/
    body{
        background-color: var(--green_700);
        background-image: url(../image/flower.png);
        background-size: 100%;
        background-position: top;
        background-repeat: repeat-y;
        width: 100vw;
        overflow-x: hidden;
    }

    button {
        padding: 0.4rem 0.8rem;
        border-radius: 5rem;
        border: none;
        font-size: medium;
        font-weight: 700;
        color: var(--black);
        background: var(--gold_gradient);
        cursor: pointer;
    }

/**body end**/

/**header**/
    header {
        width: 100vw;
        top: 0;
        left: 0;
        position: absolute;
    }
/*dropdown*/
    .off-screen-menu {
        background: var(--green_700);
        height: 100%;
        width: 60%;
        position: fixed;
        top: 0;
        right: -100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: right;
        padding-right: 2rem;
        transition: right 0.2s;
        z-index: 4;
    }

    .off-screen-menu.active{
        right: 0;
    }

    .off-screen-menu li {
        list-style: none;
        padding-bottom: 1.5rem ;
        color: var(--white);
        font-size: 1.5rem;
        padding: .2rem 0 .2rem 0;
        margin-bottom: 1rem;
        transition: font-size 0.2s;
    }

    .off-screen-menu li:hover{
        font-size: 1.6rem;
    }  

    .off-screen-menu a {
        text-decoration: none; 
        height: 100%;
        padding: 0.2rem 0 0.2rem 4rem;
        transition: color 0.2s;
    }

    .off-screen-menu a:hover {
        color: var(--green_300);
    }

          

/*nav*/
    nav {
        width: 100%;
        padding: 1rem 2rem;
        z-index: 99;
        position: absolute;
        background: linear-gradient(180deg, rgba(29,39,39,1) 33%, rgba(29,39,39,0.8491771708683473) 54%, rgba(29,39,39,0.6699054621848739) 74%, rgba(29,39,39,0) 92%);
    }

    nav ul {
        display: none;
    }

    nav a {
        text-decoration: none;
    }

    .nav-icon-container {
        display: flex;
        flex-direction: row;
    }

    .nav-icon-container svg{
        height: 2rem;
        fill: var(--white);
        transition: .3s ease;
    }

    .nav-icon-container svg:hover {
        fill: var(--green_400);
    }
  
/*ham menu*/
    .ham-container {
        width: 100%;
        display: flex;
    }

    .ham-align {
        width: 100%;
    }
    .ham-menu {
        height: 2.2rem;
        width: 2rem;
        position: relative;
        cursor: pointer;
    }

    .ham-menu span {
        height: 4px;
        width: 90%;
        background-color: var(--white);
        border-radius: 25px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: .3s ease;
    }

    .ham-menu span:nth-child(1) {
        top: 25%;
    }

    .ham-menu span:nth-child(3) {
        top: 75%;
    }

    .ham-menu.active span:nth-child(1) {
        top: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .ham-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .ham-menu.active span:nth-child(3) {
        top: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
    }

/*ham menu hover*/
    .ham-menu span:nth-child(1):hover {
        background-color: var(--green_300);
    }

    .ham-menu span:nth-child(2):hover {
        background-color: var(--green_300);
    }

    .ham-menu span:nth-child(3):hover {
        background-color: var(--green_300);
    }            

/**header end**/

/**overlay**/
    .overlay {
        width: 100vw;
        height: 170rem;
        background-color: var(--green_700);
        display: none;
        padding: 0.5rem 2rem;
        padding-bottom: 10rem;
        position: absolute;
        z-index: 3;
    }

    .overlay-close {
        top: 3rem;
        margin-left: auto;
        margin-right: 0;
        height: 2.2rem;
        width: 2rem;
        position: relative;
        cursor: pointer;
    }

    .overlay-close span {
        height: 4px;
        width: 90%;
        background-color: var(--gold_dark);
        border-radius: 25px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: .3s ease;
    }

    .overlay-close span:nth-child(1) {
        top: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .overlay-close span:nth-child(2) {
        top: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
        background-color: var(--green_700);
        width: 8px;  
    }

    .overlay-close span:nth-child(3) {
        top: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .overlay h1 {
        display: inline-block;
        margin-top: 4rem;
    }

    .overlay-content-flex {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 90rem;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 2rem;
    }

    .overlay-border {
        height: auto;
        width: 100%;
        position: relative;
        margin-top: 1rem;
        border: 6px outset var(--green_400);
        padding: 1.5rem 0.5rem;
        display: flex;
        flex-direction: column;
        
    }

    .overlay-border button {
        position: absolute;
        right: 1rem;
        bottom: 1rem;
    }

    .overlay-img-frame {
        height: 70vw;
        width: 70vw;
        background-color: var(--white);
        margin-left: auto;
        margin-right: auto;
        overflow: hidden;
        border-radius: 5px;
    }

    .overlay-img-frame img {
        object-fit: cover;
        width: 100%;
    }

    .video-style {
        width: 100%;
        margin-left: 0;
        margin-top: -15%;
    }

    .overlay-p-border {
        margin: 1rem 0.5rem 2rem 0.5rem;
        margin-left: auto;
        margin-right: auto;
        max-width: 20rem;
    }

    .overlay-p-border p {
        color: var(--white);
        margin-bottom: 1rem;
    }

    ul {
        list-style-type: circle;
        margin-left: 1rem;
        font-size: small;  
    }

    li {
        margin-bottom: 0.2rem;
    }
/**overlay end**/    

/**frames**/
    .frame-container {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-content: center;
        padding: 5rem 2rem
    }    

/*introduction*/
    .container-introduction {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 2rem;
    }

    .portrait-frame {
        display: flex;
        width: 60vw;
        height: 70vw;
        max-width: 25rem;
        max-height: 30rem;
        padding: 0.2rem;
        margin-left: auto;
        margin-right: auto;
        border-radius: -5px;
        background: var(--brown_500);
    }

    .inside-portrait-frame {
        width: 100%;
        height: 100%;
        padding: 2.5rem;
        background-color:#d5d4ce;
        align-content: center;
    }

    .portrait-img {
        height: 100%;
        width: 100%;
        box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.5);
        background-image: url(../image/me.jpg);
        background-position: center;
        background-size: cover;
    }

    .plaque-container {
        width: 60vw;
        max-width: 25rem;
        height: auto;
        margin-left: auto;
        margin-right: auto;
        padding: 4px;
        background: var(--gold_frame);
        
    }

    .plaque {
        height: 100%;
        width: 100%;
        background: var(--gold_gradient);
        padding: 0.5rem 2rem;
        position: relative;
        border-radius: 8px;
        box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.3);
    }

    .plaque-top-left {
        width: 1rem;
        height: 1rem;
        border-radius: 1rem;
        background-color: var(--green_700);
        position: absolute;
        left: -.6rem;
        top: -.6rem;
    }

    .plaque-top-right {
        width: 1rem;
        height: 1rem;
        border-radius: 1rem;
        background-color: var(--green_700);
        position: absolute;
        right: -.6rem;
        top: -.6rem;
    }

    .plaque-bottom-left {
        width: 1rem;
        height: 1rem;
        border-radius: 1rem;
        background-color: var(--green_700);
        position: absolute;
        left: -.6rem;
        bottom: -.6rem;
    }

    .plaque-bottom-right {
        width: 1rem;
        height: 1rem;
        border-radius: 1rem;
        background-color: var(--green_700);
        position: absolute;
        right: -.6rem;
        bottom: -.6rem;
    }

    .plaque h2 {
        font-size: large;
        color: var(--brown_700);
        margin-bottom: 0.2rem;
    }

    .plaque p {
        font-size: x-small;
        margin-bottom: 0.3rem;
        color: var(--black);
    }

    .bold {
        font-weight: 600;
        color: var(--brown_700);
    }        

/*examen*/
    .diploma-frame {
        display: flex;
        height: 15rem;
        width: 12rem;
        margin-left: auto;
        margin-right: auto;
        padding: 1.5rem;
        background-color: var(--white);
        border: 4px solid var(--brown_500);
        border-inline: 4px solid var(--brown_700);
        box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.5);
    }

    .diploma-frame-img {
        height: 100%;
        width: 100%;
        box-shadow: inset 0px 0px 5px rgba(97, 97, 97, 0.5);
        background-image: url(../image/examensbevis.jpg);
        background-position: center;
        background-size: contain;
    }        


/*frame one*/
    .frame-one-section {
        display: flex;
        flex-direction: column;
    }
    .frame-one {
        display: flex;
        width: 80vw;
        height: 80vw;
        padding: 0.3rem;
        margin-left: auto;
        margin-right: auto;
        background: var(--gold_frame);
        box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.5);
        cursor: pointer;
        position: relative;
    }

    .inside-frame {
        width: 100%;
        height: 100%;
        background-color:#d5d4ce;
        align-content: center;
        transition: .2s ease;
    }

    .inside-frame:hover {
        background-color: var(--white);
    }

    .inner-frame{
        display: flex;
        width: 50vw;
        height: 50vw;
        padding: 0.2rem;
        margin: auto;
        background: var(--gold_frame);

    }

    .frame-content {
        width: 100%;
        height: 100%;
        box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.5);
        background-image: url(../image/boxkeeper.png);
        background-position: center;
        background-size: cover;

    }    
    
/*frame one button*/
    .frame-one-button-div {
        display: flex;
        width: 80vw;
        max-width: 25rem;
        padding: 0.5rem;
        margin-left: auto;
        margin-right: auto;
    }

    .button-plaque {
        display: inline-block;
        padding: 0.3rem 0.8rem;
        margin-left: auto;
        margin-right: 0;
        border-radius: 2px;
        
    }


/*frame two*/
    .frame-two {
        display: flex;
        width: 13rem;
        height: 17rem;
        margin-left: 0;
        margin-right: auto;
        border: 5px solid var(--brown_500);
        border-inline: 5px solid var(--brown_700);
        box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.5);
        cursor: pointer;
    }

    .inside-frame-glas {
        width: 100%;
        height: 100%;
        background: var(--glass_gradient);
        align-content: center;
    }

    .content-two {
        width: 8rem;
        height: 12rem;
        margin: auto;
        background-image: url(../image/leaf.png);
    }  
    
/*frame two button*/
    .frame-two-button-div {
        display: flex;
        width: 80vw;
        max-width: 25rem;
        padding: 0.5rem;
        margin-left: 0;
        margin-right: auto;
    }

    .button-concept {
        display: inline-block;
        padding: 0.3rem 0.8rem;
        margin-left: 0;
        margin-right: auto;
        border-radius: 2px;
        
    }


/*frame three*/
    .frame-three {
        display: flex;
        width: 100%;
        height: 30rem;
        margin-left: auto;
        margin-right: auto;
        border: 8px solid var(--brown_500);
        border-inline: 8px solid var(--brown_700);
        box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.5);
        cursor: pointer;
    }

    .frame-three-flex {
        display: flex;
    }

    .content-three-flex {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        margin: 2rem;
    }

    .frame-three-one {
        margin-left: auto;
        margin-right: auto;
        width: 15rem;
        height: 15rem;
        background-image: url(../image/present.png);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
    }

    .frame-three-two {
        background-size: contain;
        background-image: url(../svg/beyond.svg);
    }

    .content-three-flex-two {
        display: none;
        margin: 2rem 2rem 2rem 0;
        width: 100%;
        border-radius: 3px;
        border: 2px solid var(--white);
        background-image: url(../image/face.png);
        background-size: cover;
        background-position: center;
    }  
    
/*frame three button*/
    .frame-three-button-div {
        display: flex;
        width: 80vw;
        max-width: 25rem;
        padding: 0.5rem;
        margin-left: auto;
        margin-right: auto;
    }

    .button-design {
        display: inline-block;
        padding: 0.3rem 0.8rem;
        margin-left: auto;
        margin-right: auto;
        border-radius: 2px;
        
    }

    
/*art frames*/
    .art-border {
        display: flex;
        width: 17rem;
        height: 22rem;
        padding: 0.1rem;
        margin-left: auto;
        margin-right: auto;
        background: var(--gold_frame);
        box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.5);
    }
    .inner-art-frame {
        width: 100%;
        height: 100%;
        background-color: var(--green_300);
        padding: 1.5rem;
    }

    .art {
        width: 100%;
        height: 100%;
        box-shadow: inset 0px 0px 5px rgba(97, 97, 97, 0.5);
        background-image: url(../image/afro.png);
        background-size: cover;
        background-position: center;
    }


/*art one*/
    .art-position-one {
        margin-right: 2rem;
    }


/*art two*/
    .art-position-two {
        width: 14rem;
        height: 10rem;
        margin-left: 2rem;
    }

    .art-two {
        background-image: url(../image/cat.jpg);
    }


/*art three*/
    .art-position-three {
        width: 14rem;
        height: 18rem;
        margin-right: 3rem;
    }

    .inner-art-frame-three{
        padding: 2rem;
    }

    .art-three {
        background-image: url(../image/jean-jacket.jpg);
        -webkit-transform: scaleX(-1);
        transform: scaleX(-1);
    }


/*art four*/
    .art-position-four {
        width: 16rem;
        height: 12rem;
        margin-left: 0;
    }

    .inner-art-frame-four {
        background-color: var(--brown_700);
    }
    .art-four {
        background-image: url(../image/bench.jpg);
    }

/**frames end**/


/**contact**/
/* /*cookie consent
#cookie-consent {
    display: none;
    height: 100vh;
    width: 100vw;
    position: fixed;
    resize: vertical;
    align-items: center;
    top: 0;
    left: 0;
    z-index: 99999;
    background-color: rgba(0, 0, 0, 0.8);
}

.cookie-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 4rem;
    border-radius: 2px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--white);
}

.cookie-notice {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.cookie-notice h2 , p {
    color: var(--black);
}  */

/*contct form*/
    .contact-container {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        background-color: var(--green_700);
        border-radius: 2px;
        border: 4px outset var(--brown_500);
        margin-top: 6rem;
        margin-left: auto;
        margin-right: auto;
        width: 90vw;
        padding: 2rem 1rem;
        margin-bottom: 10rem;
    }

    .contact-layout {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 0.5rem;
        position: relative; 
    }

    .contact-inputs {
        width: 100%;
        border-radius: 4px;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1rem;
        border: 2px outset var(--green_300);
        color: var(--black);
    }

    .contact-inputs:focus {
        border: 2px outset var(--gold_dark);
        
    }

    .contact-inputs::placeholder {
        color: var(--green_300);
    }

    .contact-layout textarea {
        height: 6rem;
    }

    .contact-layout button {
        margin-left: auto;
        margin-right: 0;
    }




        
/**footer**/
    footer {
        width: 100%;
        background-color: var(--green_700);
        padding: 3rem 2rem;
        position: absolute;
        z-index: 2;
    }   

    footer p {
        color: var(--white);
    }

    footer a {
        text-decoration: none;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 4rem;
    }

    .footer-phone {
        display: flex;
        gap: 0.5rem;
        align-items: center;
    }

    .mail-icon {
        background-color: var(--gold_dark);
        height: 1.5rem;
        width: 1.5rem;
        mask-image: url(../svg/at.svg);
        mask-size: cover;
        mask-repeat: no-repeat;
        -webkit-mask-image: url("../svg/at.svg");
        -webkit-mask-size: cover;
        -webkit-mask-repeat: no-repeat;
        position: relative;
    }

    .call-icon {
        background-color: var(--gold_dark);
        height: 1.5rem;
        width: 1.5rem;
        mask-image: url(../svg/call.svg);
        mask-size: cover;
        mask-repeat: no-repeat;
        -webkit-mask-image: url("../svg/call.svg");
        -webkit-mask-size: cover;
        -webkit-mask-repeat: no-repeat;
    }

    .ig-icon {
        background-color: var(--gold_dark);
        height: 1.2rem;
        width: 1.2rem;
        margin: 0.2rem;
        mask-image: url(../svg/ig.svg);
        mask-size: cover;
        mask-repeat: no-repeat;
        -webkit-mask-image: url("../svg/ig.svg");
        -webkit-mask-size: cover;
        -webkit-mask-repeat: no-repeat;
    }

    .ig-hover {
        cursor: pointer;
    }
/**footer end**/

        



        