 /* General */



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    min-height: 100vh;
    background-color: #f5f7f5;

}


@font-face {
    font-family: Futura ND Demibold;
    src: url('../fonts/Futura ND Demibold.ttf') format('truetype');
}

@font-face {
    font-family: Futura ND;
    src: url('../fonts/Futura ND.ttf') format('truetype');
}

@font-face {
    font-family: Futura ND Book;
    src: url('../fonts/Futura ND Book.ttf') format('truetype');
}

h1 {
    font-family: Futura ND Demibold;
}

h2 {
    font-family: Futura ND Demibold;
    font-size: 20px;
    line-height: 1.3;
}

h3 {
    font-family: Futura ND Demibold;
    font-size: 20px;
    line-height: 1.5;
}

p {
    line-height: 1.3;
    margin: 0;
  }
  
  p + p {
    margin-top: 14px;
  }




/*-------------------------------- Desktop styles --------------------------------*/


@media screen and (min-width: 768px) {
    #Page1 {
        height: 100%;
        background-color: #fff;
    }

    .container {
        width: 1200px;
    }
    

#Page {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}


 /* Top */


    #Header {
        height: 210px;
        width: 1080px;
        margin: 0 60px;
        background-color: none;
        position: relative;
        top: 0;
        border-bottom: 6px solid #000;
        background-color: #fff;
    }

    #burger_place {
        position: absolute;
        left: 0px;
        top: 64px;
        width: 1080px;
        height: 112px;
        background-color: none;
    }

    #Logo {
        position: absolute;
        left: 50%;
        top: 24px;
        width: 220px;
        height: 147px;
        transform: translateX(-50%);
        background-color: transparent;
    }

    #Contact {
        position: absolute;
        right: 0;
        top: 40px;
        width: 231px;
        height: 128px;
        background-color: none;
    }


 /*Text boxes */

    #text {
        height: 350px;
        width: 1080px;
        margin: 0 60px;
        background-color: none;
        font-family: 'Futura ND';
        font-size: 29px;
        letter-spacing: -0.5px;
        padding: 20px 0px;
        border-bottom: 6px solid #000;
    }

    #text2 {
        height: 112px;
        width: 1080px;
        margin: 0 60px;
        background-color: none;
        font-family: 'Futura ND';
        font-size: 24px;
        line-height: 1.3;
        letter-spacing: -0.5px;
        padding-top: 20px;
    }

    #text3 {
        height: 200px;
        width: 1080px;
        margin: 0 60px;
        background-color: none;
        font-family: 'Futura ND';
        font-size: 24px;
        line-height: 1.3;
        letter-spacing: 0px;
        padding-top: 20px;
        border-bottom: 6px solid #000;
    }

    #text4 {
        height: 260px;
        width: 1080px;
        margin: 0 60px;
        background-color: none;
        font-family: 'Futura ND';
        font-size: 24px;
                color: #000;
        line-height: 1.3;
        letter-spacing: 0px;
        padding-top: 20px;
        border-bottom: 6px solid #000;
    }

    #caption {
        height: 60px;
        width: 1080px;
        margin: 0 60px;
        background-color: none;
        font-family: 'Futura ND';
        font-size: 16px;
        color: #000;
        line-height: 1.3;
        letter-spacing: -0.5px;
        padding-top: 20px;
        text-align: left;
    }

        #captionUL {
        height: 60px;
        width: 1080px;
        margin: 0 60px 40px 60px;
        background-color: none;
        font-family: 'Futura ND';
        font-size: 16px;
        color: #000;
        line-height: 1.3;
        letter-spacing: -0.5px;
        padding-top: 20px;
        text-align: left;
        border-bottom: 6px solid #000;
    }

    #subhead {
        border-top: 6px solid #000;
        height: 160px;
        width: 1080px;
        margin: 0 60px;
        background-color: none;
        font-family: 'Futura ND Book';
        font-size: 20px;
        line-height: 1.3;
        letter-spacing: -0.5px;
        padding-top: 20px;
        text-align: left;
    }
        #subhead2 {
        border-top: 6px solid #000;
        height: 120px;
        width: 1080px;
        margin: 0 60px;
        background-color: none;
        font-family: 'Futura ND Book';
        font-size: 20px;
        line-height: 1.3;
        letter-spacing: -0.5px;
        padding-top: 20px;
        text-align: left;
    }

        #horizontaline1 {
        border-top: 6px solid #000;
        height: 20px;
        width: 1080px;
        margin: 0 60px;
        background-color: none;
    }



 /* Grids */

    #ContentGrid {
        height: 480px;
        width: 1080px;
        margin: 0 60px;
        background-color: #fff;
        display: grid;
        grid-template-columns: repeat(4, 260px);
        grid-template-rows: repeat(3, 140px);
        gap: 0;
        justify-content: center;
        align-content: center;

    }
    
    #ContentGrid .grid-image {
        width: 260px;
        height: 140px;
        object-fit: cover;
    }
    
    #ContentGrid3 {
        height: 360px;
        width: 1080px;
        margin: 0 60px;
        background-color: #fff;
        display: grid;
        grid-template-columns: repeat(3, 356px);
        grid-template-rows: repeat(1, 356px);
        gap: 6px;
        justify-content: center;
        align-content: center;
    }

    #ContentGrid3 .grid-image {
        width: 356px;
        height: 356px;
        object-fit: cover;
    }

    #ContentGrid3b {
        height: 724px;
        width: 1080px;
        margin: 0 60px;
        background-color: #fff;
        display: grid;
        grid-template-columns: repeat(3, 356px);
        grid-template-rows: repeat(2, 356px);
        gap: 6px;
        justify-content: center;
        align-content: center;
        border-bottom: 6px solid #000;
    }
    
    #ContentGrid3b .grid-image {
        width: 356px;
        height: 356px;
        object-fit: cover;
    }


    #ContentGrid4 {
        height: 270px;
        width: 1080px;
        margin: 0 60px;
        background-color: #fff;
        display: grid;
        grid-template-columns: repeat(4, 270px);
        grid-template-rows: repeat(1, 270px);
        gap: 0px;
        justify-content: center;
        align-content: center;
    }
    
    #ContentGrid4 .grid-image {
        width: 270px;
        height: 270px;
        object-fit: cover;
    }

    #ContentGrid6a {
        height: 186px;
        width: 1080px;
        margin: 0 60px;
        background-color: #fff;
        display: grid;
        grid-template-columns: repeat(6, 180px);
        grid-template-rows: repeat(1, 180px);
        gap: 0px;
        justify-content: center;
        align-content: center;
        border-bottom: 6px solid #000;
    }
    
    #ContentGrid6a .grid-image {
        width: 180px;
        height: 180px;
        object-fit: cover;
    }


    #ContentGrid6b {
        height: 364px;
        width: 1080px;
        margin: 0 60px;
        background-color: #fff;
        display: grid;
        grid-template-columns: repeat(6, 180px);
        grid-template-rows: repeat(2, 180px);
        gap: 0px;
        justify-content: center;
        align-content: center;
        border-bottom: 6px solid #000;
    }
    
    #ContentGrid6b .grid-image {
        width: 180px;
        height: 180px;
        object-fit: cover;
    }



    #ContentGrid6 {
        height: 906px;
        width: 1080px;
        margin: 0 60px;
        background-color: #fff;
        display: grid;
        grid-template-columns: repeat(6, 180px);
        grid-template-rows: repeat(5, 180px);
        gap: 0px;
        justify-content: center;
        align-content: center;
        border-bottom: 6px solid #000;
    }
    
    #ContentGrid6 .grid-image {
        width: 180px;
        height: 180px;
        object-fit: cover;
    }

    #ContentGridsv1 {
        height: 820px;
        width: 1080px;
        margin: 60px;
        background-color: #fff;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 20px;
        justify-content: center;
        align-content: center;
    }

    #ContentGridsv1 .grid-image {
        width: 100%;
        height: 100%;

        object-fit: cover;
    }

#ContentGridsv1 .svg-wrapper {
    width: 100%;
    height: 100%;
}

    #ContentGridsvg1 {
        height: 820px;
        width: 1080px;
        margin: 60px;
        background-color: #fff;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 20px;
        justify-content: center;
        align-content: center;
    }

    #ContentGridsvg1 .grid-image {
        width: 100%;
        height: 100%;

        object-fit: cover;
    }

#ContentGridsvg1 .svg-wrapper {
    width: 100%;
    height: 100%;
}



    #ContentGridsv2 {
        height: 410px;
        width: 1080px;
        margin: 60px;
        background-color: #fff;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(1, 1fr);
        gap: 20px;
        justify-content: center;
        align-content: center;
    }

    #ContentGridsv2 .grid-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

#ContentGridsv2 .svg-wrapper {
    width: 100%;
    height: 100%;
}


#ContentGridvid {
    height: 1080px;
    width: 1080px;
    margin: 0 60px 60px 60px;
    background-color: #fff;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    justify-content: center;
    align-content: center;
}

#ContentGridvid .grid-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#ContentGridvid .grid-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


    #ContentGridvidg {
        height: 364px;
        width: 1080px;
        margin: 60px;
        background-color: #fff;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(1, 1fr);
        gap: 20px;
        justify-content: center;
        align-content: center;
    }

    #ContentGridvidg .grid-image {
        width: 530px;
        height: 364px;
        object-fit: cover;
    }


 /* Video */


    #ContentVideo1 {
        height: 600px;
        width: 1080px;
        margin: 0 60px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    #ContentVideo {
        height: 608px;
        width: 1080px;
        margin: 0 60px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    #ContentVideo video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }



 /* Content */

 


    #Content2 {
        height: 800px;
        width: 1080px;
        margin: 20px 60px;
        justify-content: center;
        align-content: center;
        overflow: hidden;
        background-color: #000;
    }



    #Content2 iframe {
        width: 1080px;
        height: 800px;
        border: none;
    }


    #Content3 {
        height: 1080px;
        width: 1080px;
        margin: 20px 60px;
        justify-content: center;
        align-content: center;
        overflow: hidden;
    }

    #Content3 img {
        width: 1080px;
        height: 1080px;
    }

    #Content3b {
        height: 900px;
        width: 1080px;
        margin: 20px 60px;
        justify-content: center;
        align-content: center;
        overflow: hidden;
    }

    #Content3b img {
        width: 1080px;
        height: 900px;
    }


    #Content3c {
        height: auto;
        width: 1080px;
        margin: 20px 60px;
        justify-content: center;
        align-content: center;
        overflow: hidden;
    }

    #Content3c img {
        width: 1080px;
    }



    #Content4 {
        height: 1310px;
        width: 1080px;
        margin: 0 60px;
        justify-content: center;
        align-content: center;
        overflow: hidden;
    }

    #Content5 {
        height: 565px;
        width: 1080px;
        margin: 0 60px;
        justify-content: center;
        align-content: center;
        overflow: hidden;
    }




 /* SVG handlers */


    #external_svg {
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }

    #animated-svg {
        width: 100%;
        height: 100%;
        display: block;
    }



}

/*Toggle */

.hidden-content {
    width: 1080px;
    display: none;
    padding: 60px;
    font-family: 'Futura ND Book';
    font-size: 16px;
    line-height: 1;
    background-color: #d6e4eb;
    margin: 20px 60px;
}

.button-container {
    width: 1080px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 60px;
    border-bottom: 6px solid #000;
}

.toggle-button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0px 0 30px 0;
    font-family: 'Futura ND';
    font-size: 20px;
    color: blue;
    display: flex;
    gap: 5px;
}

.arrow {
    display: block;
    margin-top: 5px;
    transition: transform 0.3s;
}

.arrow.active {
    transform: rotate(180deg);
}

.imp_glob_svg {
    height: 607.5px;
    max-width: 1080px;
    margin: 0 60px 60px 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}




#svg_ico_ico {
    height: 200px;
    width: 1080px;
    margin:60px 60px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d6e4eb;
}







/*-------------------------------- Mobile styles --------------------------------*/
/*-------------------------------- Mobile styles --------------------------------*/
/*-------------------------------- Mobile styles --------------------------------*/
/*-------------------------------- Mobile styles --------------------------------*/
/*-------------------------------- Mobile styles --------------------------------*/
/*-------------------------------- Mobile styles --------------------------------*/




@media screen and (max-width: 768px) {
    #Page1 {
        height: 100%;
        background-color: #fff;
    }

    .container {
        width: 480px;
    }

    #Header {
        position: relative;
        height: 140px;
        width: 480px;
        margin: 0 20px;
        background-color: none;
        top: 0;
        border-bottom: 6px solid #000;
        background-color: #fff;
    }

    #Logo {
        transform: scale(0.6);
        transform-origin: 0px 30px;
    }

    #burger_place {
        position: absolute;
        right: 12px;
        top: 12px;
        width: 48px;
        height: 112px;
        background-color: transparent;
    }

    #Contact {
    position: absolute;
    left: 100px;
    top: 12px;
    transform: scale(0.7);
    transform-origin: 240px 0px;

    background-color: transparent;
    }

        #horizontaline1 {
        border-top: 6px solid #000;
        height: 20px;
        width: 480px;
        margin: 0 20px;
        background-color: none;
    }


    #text {
        height: 320px;
        width: 480px;
        margin: 0 20px;
        font-family: 'Futura ND';
        font-size: 18px;
        letter-spacing: -0.5px;
        padding: 20px 0px;
        border-bottom: 6px solid #000;
    }


    #text3 {
        height: 240px;
        width: 480px;
        margin: 0 20px;
        background-color: none;
        font-family: 'Futura ND';
        font-size: 18px;
        line-height: 1.3;
        letter-spacing: 0px;
        padding-top: 20px;
        border-bottom: 0px solid #000;
    }

    #text4 {
        height: 320px;
        width: 480px;
        margin: 0 20px;
        font-family: 'Futura ND';
        font-size: 18px;
        line-height: 1.3;
        letter-spacing: 0px;
        padding-top: 20px;
        border-bottom: 6px solid #000;
    }

    #caption {
        height: 60px;
        width: 480px;
        margin: 0 20px;
        background-color: none;
        font-family: 'Futura ND';
        font-size: 14px;
        line-height: 1.3;
        letter-spacing: -0.5px;
        padding-top: 20px;

    }

    #captionUL {
        height: 60px;
        width: 480px;
        margin: 0 20px;
        background-color: none;
        font-family: 'Futura ND';
        font-size: 14px;
        line-height: 1.3;
        letter-spacing: -0.5px;
        padding-top: 20px;
        border-bottom: 6px solid #000;
    }


    #subhead {
        border-top: 6px solid #000;
        height: 300px;
        width: 480px;
        margin: 0 20px;
        background-color: none;
        font-family: 'Futura ND Book';
        font-size: 18px;
        line-height: 1.3;
        letter-spacing: -0.5px;
        padding-top: 20px;
        text-align: left;
    }

        #subhead2 {
        border-top: 6px solid #000;
        height: 120px;
        width: 480px;
        margin: 0 20px;
        background-color: none;
        font-family: 'Futura ND Book';
        font-size: 18px;
        line-height: 1.3;
        letter-spacing: -0.5px;
        padding-top: 20px;
        text-align: left;
    }

    #Content2 {
        height: 480px;
        width: 480px;
        margin: 0 20px;
        justify-content: center;
        align-content: center;
        overflow: hidden;
    }
    #Content2 iframe {
        width: 480px;
        height: 480px;
        border: none;
    }

    #Content3 {
        height: 480px;
        width: 480px;
        margin: 0 20px;
        justify-content: center;
        align-content: center;
        overflow: hidden;
    }

    #Content3 img {
        width: 480px;
        height: 480px;
    }


    #Content3b {
        height: 480px;
        width: 480px;
        margin: 0 20px;
        justify-content: center;
        align-content: center;
        overflow: hidden;
    }

    #Content3b img {
        width: 480px;
        height: 400px;
    }


    #Content3c {
        height: auto;
        width: 480px;
        margin: 20px 20px;
        justify-content: center;
        align-content: center;
        overflow: hidden;
    }

    #Content3c img {
        width: 480px;
    }

    #ContentVideo {
        height: 267px;
        width: 480px;
        margin: 0 20px;
    }
    
    #ContentGrid {
        height: 400px;
        width: 480px;
        margin: 0px 20px;
        background-color: #fff;
        display: grid;
        grid-template-columns: repeat(3, 160px);
        grid-template-rows: repeat(4, 80px);
        gap: 0;
        justify-content: center;
        align-content: center;

    }
    
    #ContentGrid .grid-image {
        width: 160px;
        height: 80px;
        object-fit: cover;
    }

    
    #ContentGrid3 {
        height: 1440px;
        width: 480px;
        margin: 0 20px;
        background-color: #fff;
        display: grid;
        grid-template-columns: repeat(1, 480px);
        grid-template-rows: repeat(3, 480px);
        gap: 0px;
        justify-content: center;
        align-content: center;
    }

    #ContentGrid3 .grid-image {
        width: 480px;
        height: 480px;
        object-fit: cover;
    }


    #ContentGrid3b {
        height: 726px;
        width: 480px;
        margin: 0 20px;
        background-color: #fff;
        display: grid;
        grid-template-columns: repeat(2, 240px);
        grid-template-rows: repeat(3, 240px);
        gap: 0px;
        justify-content: center;
        align-content: center;
        border-bottom: 6px solid #000;
    }
    
    #ContentGrid3b .grid-image {
        width: 240px;
        height: 240px;
        object-fit: cover;
    }


    #ContentGrid4 {
        height: 480px;
        width: 480px;
        margin: 0 20px;
        background-color: #fff;
        display: grid;
        grid-template-columns: repeat(2, 240px);
        grid-template-rows: repeat(2, 240px);
        gap: 0px;
        justify-content: center;
        align-content: center;
    }
    
    #ContentGrid4 .grid-image {
        width: 240px;
        height: 240px;
        object-fit: cover;
    }


    #ContentGrid6a {
        height: 320px;
        width: 480px;
        margin: 0 20px;
        background-color: #fff;
        display: grid;
        grid-template-columns: repeat(3, 160px);
        grid-template-rows: repeat(2, 160px);
        gap: 0px;
        justify-content: center;
        align-content: center;
        border-bottom: 6px solid #000;
    }
    
    #ContentGrid6a .grid-image {
        width: 160px;
        height: 160px;
        object-fit: cover;
    }


    #ContentGrid6 {
        height: 1600px;
        width: 480px;
        margin: 0 20px;
        background-color: #fff;
        display: grid;
        grid-template-columns: repeat(3, 160px);
        grid-template-rows: repeat(10, 160px);
        gap: 0px;
        justify-content: center;
        align-content: center;
        border-bottom: 6px solid #000;
    }
    
    #ContentGrid6 .grid-image {
        width: 160px;
        height: 160px;
        object-fit: cover;
    }

    #ContentGrid6b {
        height: 166px;
        width: 480px;
        margin: 0 20px;
        background-color: #fff;
        display: grid;
        grid-template-columns: repeat(6, 80px);
        grid-template-rows: repeat(2, 80px);
        gap: 0px;
        justify-content: center;
        align-content: center;

    }
    
    #ContentGrid6b .grid-image {
        width: 80x;
        height: 80px;
        object-fit: cover;
    }



    #ContentGridsv1 {
        height: 360px;
        width: 480px;
        margin: 0 60px;
        background-color: #fff;
        display: grid;
        grid-template-columns: repeat(2, 240px);
        grid-template-rows: repeat(2, 180px);
        gap: 0px;
        justify-content: center;
        align-content: center;

    }
    
    #ContentGridsv1 .grid-image {
        width: 240px;
        height: 180px;
        object-fit: cover;
    }

        #ContentGridsvg1 {
        height: 1640px;
        width: 480px;
        margin: 0 20px;
        background-color: #fff;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(4, 1fr);
        gap: 0px;
        justify-content: center;
        align-content: center;

    }
    
    #ContentGridsvg1 .grid-image {
        width: 480px;
        height: 364px;
        object-fit: cover;
    }

#ContentGridvid {
    height: 480px;
    width: 480px;
    margin: 0 20px;
    background-color: #fff;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    justify-content: center;
    align-content: center;
}

#ContentGridvid .grid-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

#ContentGridvid .grid-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


    #ContentGridvidg {
        height: 680px;
        width: 480px;
        margin: 20px;
        background-color: #fff;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 20px;
        justify-content: center;
        align-content: center;
    }

    #ContentGridvidg .grid-image {
        width: 480px;
        height: 330px;
        object-fit: cover;
    }


    .hidden-content {
        width: 480px;
            display: none;
    padding: 20px;
    font-family: 'Futura ND Book';
    font-size: 16px;
    line-height: 1.3;
    background-color: #d6e4eb;
    margin: 20px 20px;
    }
    
    .button-container {
        width: 480px;
        display: flex;
        justify-content: center;
        margin: 20px 20px;
        border-bottom: 0px solid #000;

    }
    
    .toggle-button {
        background: none;
        border: none;
        cursor: pointer;
        padding: 20px 0px;
        font-family: 'Futura ND';
        font-size: 20px;
        color: blue;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    #external_svg {
        display: none;
    }



.imp_glob_svg {
    height: 270px;
    width: 480px;
    margin: 0 20px 20px 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}



#svg_ico_ico {
    height: 100px;
    width: 480px;
    margin:20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d6e4eb;
}

    #ContentGridsv2 {
        height: 728px;
        width: 480px;
        margin: 20px;
        background-color: #fff;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 20px;
        justify-content: center;
        align-content: center;
    }

    #ContentGridsv2 .grid-image {
        height: 364px;
        width: 480px;
        object-fit: cover;
    }




}


