body {
    margin: 0;
}
#menuToggle {
    display: none;
}
.main {
    width: 100%;
    height: 100vh;
    border: 0px solid #000;
    margin: 0 auto 0 auto;
    /* background-color: ; */
    background-image: url("../Images/MuseumBackground0.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.main .header {
    width: 100%;
    height: 10vh;
    border: 0px solid #000;
    margin: 0 auto 0 auto;
}
.main .header .line {
    width:100%;
    height: 8px;
    border: 0px solid #000;
    float: right;
    margin: 20px 0 5px 0;
    background-color:#f9f3ed;
    position: relative;
}
.main .header .logo {
    width: 28%;
    height: 35px;
    border: 0px solid #000;
    float: left;
    margin: 0 0 0 43px;
}
.main .header .logo p {
    font-family: forma-djr-display, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 26px;
    color: #f9f3ed;
    padding: 0;
    margin: 0;
}
.main .header .header-space {
    width: 19%;
    height: 35px;
    border: 0px solid #000;
    float: left;
    margin: 0 0 0 7px;
}
.main .header .menu {
    width: 46%;
    height: 35px;
    border: 0px solid #000;
    float: right;
    margin: 0 43px 0 0;
}
.main .header .menu ul {
    display: inline;
    padding: 0;
    margin: 0 0 0 130px;
}
.main .header .menu ul li {
    display: inline;
    font-family: forma-djr-display, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 18px;
    color: #f9f3ed;
    padding: 0;
    margin: 5px 54px 0 20px;
}
.main .header .menu ul li:hover {
    color: #d7d5df;
    transform: scale(103%);
    animation: 0.3s ease-in-out;
}
.main a {
    text-decoration: none;
}
.main .header .menu ul li a {
    text-decoration: none;
    color:#f9f3ed;
}
.main .main-space1 {
    width: 99%;
    height: 80px;
    border: 0px solid #000;
    margin: 0 auto 0 auto;
}
.main .explore-arrow {
    width: 265px;
    height: 50px;
    border: 0px solid #000;
    float: left;
    margin: 0 0 0 -8px;
    background-image: url("../Images/TopArrow.png");
    background-repeat: no-repeat;
    background-size: contain;
    animation: explore-arrow-bg 3s infinite;
    animation: explore-arrow-bg 3s ease-in-out infinite;
}
@keyframes explore-arrow-bg {
    0%  {transform: translateX(8px);}
    33%  {transform: translateX(0px);}
    66%  {transform: translateX(8px);}
    100%  {transform: translateX(0px);}
}
/*.main .explore-arrow:hover {
    transform: translateX(6px);
}
.main .explore-arrow:active {
    transform: translateX(2px) scale(0.95);
}*/
.main .explore-exhibition {
    width: 265px;
    height: 50px;
    border: 0px solid #000;
    float: left;
    margin: 0 0 0 0;
}
.main .explore-exhibition p {
    font-family: forma-djr-display, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 26px;
    color: #f9f3ed;
    padding: 0;
    margin: 0 0 0 20px;
}
.main .explore-exhibition p:hover {
    transform: scale(103%);
    animation: 0.3s ease-in-out;
}
.main .main-space2 {
    width: 42%;
    height: 6vh;
    border: 0px solid #000;
    float: left;
    margin: 0 0 0 0;
}
.main .big-box {
    width: 450px;
    height: 72vh;
    border: 0px solid #000;
    /*float: right;
    margin: 40px 0 0 0;*/
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #555daa;
}
.main .big-box .title {
    width: 85%;
    height: 11vh;
    border: 0px solid #000;
    margin: 25px 25px 0 25px;
}
.main .big-box .title p {
    font-family: forma-djr-display, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 35px;
    color: #f9f3ed;
    padding: 0;
    margin: 0;
}
.main .big-box .date {
    width: 45%;
    height: 3vh;
    border: 0px solid #000;
    margin: 0 25px 0 25px;
}
.main .big-box .date p {
    font-family: forma-djr-display, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: #f9f3ed;
    padding: 0;
    margin: 0;
}
.main .big-box .description {
    width: 75%;
    height: 44vh;
    border: 0px solid #000;
    margin: 55px 25px 0 25px;
}
.main .big-box .description p {
    font-family: forma-djr-text, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 21px;
    line-height: 27px;
    color: #f9f3ed;
    padding: 0;
    margin: 0;
}
.main .img1 {
    width: 17%;
    aspect-ratio: auto 1 / 1;
    border: 0px solid #000;
    float: right;
    margin: 0 450px 0 0;
    position: relative;
    top: 24px;
    /*background-image: url("../Images/Painting4.jpg");*/
    background-repeat: no-repeat;
    background-size: 100%;
    animation: img1-bg 10s infinite;
    animation: img1-bg 10s ease-in-out infinite;
}
@keyframes img1-bg {
    0%   { background-image: url("../Images/Painting4.jpg"); opacity: 100%;}
    33%  { background-image: url("../Images/Painting4.jpg"); opacity: 0%;}
    66%  { background-image: url("../Images/Painting4.jpg"); opacity: 100%;}
    100% { background-image: url("../Images/Painting4.jpg"); opacity: 0%;}
}
.main .img2 {
    width: 17%;
    aspect-ratio: auto 1 / 1;
    border: 0px solid #000;
    float: left;
    margin: 0 0 0 124px;
    position: absolute;
    bottom: 0;
    /*background-image: url("../Images/Painting2.jpg");*/
    background-repeat: no-repeat;
    background-size: 100%;
    z-index: 2;
    animation: img2-bg 10s infinite;
    animation: img2-bg 10s ease-in-out infinite;
}
@keyframes img2-bg {
    0%   { background-image: url("../Images/Painting2_.jpeg"); opacity: 100%;} 
    33%  { background-image: url("../Images/Painting2_.jpeg"); opacity: 0%;}
    66%  { background-image: url("../Images/Painting2_.jpeg"); opacity: 100%;}
    100% { background-image: url("../Images/Painting2_.jpeg"); opacity: 0%;}
}
.main .arrow {
    width: 340px;
    height: 125px;
    border: 0px solid #d21919;
    float: left;
    margin: 0 0 0 0;
    position: absolute;
    bottom: 130px;
    left: 400px;
    background-image: url("../Images/BottomArrow.png");
    background-repeat: no-repeat;
    background-size: contain;
}
.main .small-box {
    width: 530px;
    height: 125px;
    border: 0px solid #000;
    float: left;
    margin: 0 0 0 380px;
    position: absolute;
    bottom: 0;
    background-color: #555daa;
}
.main .small-box .text {
    width: 85%;
    height: 9vh;
    border: 0px solid #000;
    margin: 25px 0 0 25px;
}
.main .small-box .text p {
    font-family: forma-djr-text, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 20px;
    line-height: 25px;
    color: #f9f3ed;
    padding: 0;
    margin: 0;
}

/*------------------------------------------BEGINNING OF EXHIBITION PAGE-------------------------------------*/

.main .exhibit-space {
    width: 100%;
    height: 87vh;
    border: 1px solid #d7d5df;
    margin: 24px auto 0 auto;
    background-color: #d7d5df;
}
.main .exhibit-space .page-name {
    width: 265px;
    height: 50px;
    border: 0px solid #000;
    float: left;
    margin: 5px 0 0 0;
}
.main .exhibit-space .page-name p {
    font-family: forma-djr-display, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 26px;
    color: #555daa;
    padding: 0;
    margin: 20px 0 0 60px;
}
.main .exhibit-space .exhibit-arrow {
    width: 265px;
    height: 50px;
    border: 0px solid #000;
    margin: 72px 0 0 0;
    background-image: url("../Images/PurpleArrow.png");
    background-repeat: no-repeat;
    background-size: contain;
}
.main .exhibit-space .window {
            /*width: 1200px;*/
            width: 80vw;
            height: 80vh;
            border: 0px solid #1c31ee;
            overflow-x: auto;
            overflow-y: hidden;
            position: absolute;
            bottom: 0;
            right: 0;
            }
.main .exhibit-space .window ul {
            display: flex;
            gap: 50px;
            padding: 0;
            margin: 0;
            }
.main .exhibit-space .window li {
            list-style: none;
            flex-shrink: 0;
            }
.main .exhibit-space .window ul li.exhibit1 div.image1, .window ul li.exhibit2 div.image2, .window ul li.exhibit3 div.image3  {
            width: 500px;
            height: 79vh;
            border: 0px solid #000;
            margin: 0 0 0 0;
            }
.main .exhibit-space .window ul li.exhibit1 div.image1 {
    background-image: url("../Images/Exhibition1.jpeg");
    background-repeat: no-repeat;
    background-size: 140%;
    background-position-x: -10px;
    background-position-y: -10px;
}
.main .exhibit-space .window ul li.exhibit2 div.image2 {
    background-image: url("../Images/Exhibition2.jpeg");
    background-repeat: no-repeat;
    background-size: contain;
    background-size: 140%;
    background-position-x: -14px;
    background-position-y: -9px;
}
.main .exhibit-space .window ul li.exhibit3 div.image3 {
    background-image: url("../Images/Exhibition3.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    background-size: 120%;
    background-position-x: -90px;
    background-position-y: -135px;
}
.main .exhibit-space .window ul li.exhibit1 div.fill1, .window ul li.exhibit2 div.fill2, .window ul li.exhibit3 div.fill3 {
    width: 345px;
    height: 55vh;
    border: 0px solid #000;
    background-color: #f9f3ed;
}
.main .exhibit-space .fill1, .fill2, .fill3 {
    margin: 0 0 0 155px;
    position: absolute;
    bottom: 0;
}
.main .exhibit-space .title1, .title2, .title3 {
    width: 255px;
    height: 10vh;
    border: 0px solid #000;
    margin: 10px 0 0 15px;
}
.main .exhibit-space .title2 {
    width: 300px;
    height: 13vh;
}
.main .exhibit-space .title3 {
    height: 6vh;
}
.main .exhibit-space .date1, .date2, .date3 {
    width: 220px;
    height: 2vh;
    border: 0px solid #000;
    margin: 10px 0 0 15px;
}
.main .exhibit-space .date2 {
    margin: 15px 0 0 15px;
}
.main .exhibit-space .date3 {
    margin: 12px 0 0 15px;
}
.main .exhibit-space .description1, .description2, .description3 {
    width: 255px;
    height: 26vh;
    border: 0px solid #000;
    margin: 0 0 0 15px;
    position: relative;
    top: 81px;
}
.main .exhibit-space .description1 {
    width: 252px;
}
.main .exhibit-space .description2 {
    height: 24vh;
    top: 77px;
}
.main .exhibit-space .description3 {
    height: 28vh;
    top: 90px;
}
.main .exhibit-space .title1 p, .title2 p, .title3 p {
    font-family: forma-djr-display, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 21px;
    color: #555daa;
    padding: 0;
    margin: 0;
}
.main .exhibit-space .date1 p, .date2 p, .date3 p {
    font-family: forma-djr-display, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    color: #555daa;
    padding: 0;
    margin: 0;
}
.main .exhibit-space .description1 p, .description2 p, .description3 p {
    font-family: forma-djr-text, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    /*line-height: 27px;*/
    color:#555daa;
    padding: 0;
    margin: 0;
}

/*-----------------------------------------------END OF EXHIBITION PAGE------------------------------------------*/

/*-----------------------------------------------BEGINNING OF VISIT PAGE------------------------------------------*/
.main .exhibit-space .visit-content {
    width: 80vw;
    height: 80vh;
    border: 0px solid#000;
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 0 0 0 0;
}
.main .exhibit-space .visit-content .visit-left, .visit-right {
    width: 44vw;
    height: 80vh;
    border: 0px solid #000;
    float: left;
    margin: 0 0 0 0;
}
.main .exhibit-space .visit-content .visit-left {
    width: 34vw;
}
.main .exhibit-space .visit-content .visit-left .admission, .hours {
    width: 250px;
    height: 4vh;
    border: 0px solid #000;
    margin: 10px 0 0 20px;
    display: block;
}
.main .exhibit-space .visit-content .visit-left .admission p, .hours p {
    font-family: forma-djr-display, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 23px;
    color: #555daa;
    padding: 0;
    margin: 0;
}
.main .exhibit-space .visit-content .visit-left .hours {
    margin: 30px 0 0 20px;
}
.main .exhibit-space .visit-content .visit-left .tickets {
    width: 476px;
    height: 30vh;
    border: 0px solid #000;
    margin: 10px 0 0 20px;
    display: flex;
    gap: 135px;
}
.main .exhibit-space .visit-content .visit-left .tickets p {
    font-family: forma-djr-text, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 26px;
    color: #636cbd;
    padding: 0;
    margin: 0;
}
.main .exhibit-space .visit-content .visit-left .timesheet {
    width: 439px;
    height: 30vh;
    border: 0px solid #000;
    margin: 10px 0 0 -20px;
    display: block;
}
.main .exhibit-space .visit-content .visit-left .tickets ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.main .exhibit-space .visit-content .visit-left .timesheet p {
    font-family: forma-djr-text, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    line-height: 26px;
    color: #636cbd;
    padding: 0;
    margin: 70px 0 0 40px;
}
.main .exhibit-space .visit-content .visit-left .tickets ul.style-b {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.main .exhibit-space .visit-content .visit-left .tickets ul li, .timesheet ul li {
    text-decoration: none;
    font-family: forma-djr-text, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 19px;
    line-height: 28px;
    color: #636cbd;
    padding: 0;
    margin: 0;
}
.main .exhibit-space .visit-content .visit-left .tickets ul.style-b {
    color: #000;
    text-align: right;
}
.main .exhibit-space .visit-content .visit-right .visit-img {
    width: 660px;
    height: 50vh;
    border: 0px solid #000;
    margin: 10px 0 0 0;
    background-image: url(../Images/museum.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.main .exhibit-space .visit-content .visit-right .video {
    width: 660px;
    height: 50vh;
    margin: 10px 0 0 0;
}
.main .exhibit-space .visit-content .visit-right .video video {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.main .exhibit-space .visit-content .visit-right .address, .socialmedia {
    width: 250px;
    height: 4vh;
    border: 0px solid #000;
    margin: 24px 0 0 0;
}
.main .exhibit-space .visit-content .address p, .socialmedia p {
    font-family: forma-djr-display, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 23px;
    color: #555daa;
    padding: 0;
    margin: 0;
}
.main .exhibit-space .visit-content .visit-right .socials {
    width: 300px;
    height: 10vh;
    border: 0px solid #000;
    margin: 20px 0 10px 0;
}
.main .exhibit-space .visit-content .visit-right .socials ul {
    display: inline;
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.main .exhibit-space .visit-content .visit-right .socials ul li  {
    list-style-type: none;
    display: inline;
    margin: 0 10px 0 0;
}
.main .exhibit-space .visit-content .visit-right .socials  ul li a {
    text-decoration: none;
}
.main .exhibit-space .visit-content .visit-right .address-content {
    width: 300px;
    height: 20vh;
    border: 0px solid #000;
    margin: 20px 0 0 0;
}
.main .exhibit-space .visit-content .visit-right .address-content p {
    font-family: forma-djr-text, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 19px;
    color:#636cbd;
    padding: 0;
    margin: 0;
}
.main .exhibit-space .visit-content .visit-right .address-content p.direction {
    color:#555daa;
    font-weight: 500;
    text-decoration: underline;
}
.main .exhibit-space .visit-content .visit-right .address-content p.direction:hover {
    text-decoration: none;
}
.main .exhibit-space .visit-content .visit-right .address-content a {
    text-decoration: none;
}
.main .exhibit-space .visit-content .visit-right .address-content a:hover {
    text-decoration: none;
}
/*-----------------------------------------------END OF VISIT PAGE------------------------------------------*/


/*-----------------------------------------------BEGINNING OF TABLET------------------------------------------*/
/* ------- MEDIA QUERY TABLET 800-1400 ------- */
            @media only screen and (max-width:1400px) {
                /*div div {
                    background-color: rgb(177, 231, 227);
                }*/
/*-----------------------------------------------Menu code starts here---------------------------------------------*/
#menuToggle
{
  display: block;
  /* You can also use relative/absolute here if you want to stay on the top */
  position: fixed;
  top: 40px;
  right: 40px;
  
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle a
{
  text-decoration: none;
  color:#555daa;
  
  transition: color 0.3s ease;
}

#menuToggle a:hover
{
  color:#555daa;
}


#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin: 0 0 5px 0;
  position: relative;
  
  background:#f9f3ed;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background:#555daa;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  position: absolute;
  right: 0;
  left: auto;
  max-width: 400px;
  width: 100vw;
  max-height: 100vh;
  margin: -100px -50px 0 0;
  padding: 50px;
  padding-top: 125px;
  box-sizing: border-box;
  overflow-y: auto;
  background:#f9f3ed;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 100% 0%;
  transform: translate(100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
    font-family: forma-djr-display, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    color:#555daa;
    padding: 10px 0;
    font-size: 22px;
}

#menu li label
{
  cursor: pointer;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform: none;
}
/*---------------------------------------------------END MENU---------------------------------------------------*/
                .main {
                    width: 100vw;
                }
                .main .header .logo {
                width: 450px;
                margin: 0 0 0 34px;
                }
                .main .header .header-space {
                width: 20%;
                margin: 0 0 0 7px;
                }
                .main .header .menu {
                display: none;
                }
                .main .explore-exhibition p:active {
                transform: scale(103%);
                animation: 0.3s ease-in-out;
                }
                .main .main-space2 {
                width: 40%;
                }
                .main .big-box {
                width: 375px;
                height: 45vh;
                float: right;
                margin: 40px 0 0 0;
                position: relative;
                }
                .main .img1 {
                width: 290px;
                height: 290px;
                float: right;
                margin: -48px 0 0 0;
                /*bottom: 328px;
                right: 450px;*/
                }
                .main .img2 {
                width: 292px;
                height: 292px;
                margin: 0 0 0 0;
                position: absolute;
                bottom: 0;
                z-index: 2;
                }
                .main .big-box .title {
                height: 6vh;
                margin: 20px 20px 0 20px;
                }
                .main .big-box .title p {
                font-size: 32px;
                line-height: 30px;
                }
                .main .big-box .date {
                height: 2vh;
                margin: 0 20px 0 20px;
                }
                .main .big-box .date p {
                font-size: 16px;
                }
                .main .big-box .description {
                width: 85%;
                height: 31vh;
                margin: 30px 20px 0 20px;
                }
                .main .big-box .description p {
                font-size: 18px;
                line-height: 24px;
                }
                .main .arrow {
                width: 310px;
                height: 120px;
                margin: 0 0 0 0;
                position: absolute;
                bottom: 461px;
                left: 140px;
                }
                .main .small-box {
                width: 66%;
                height: 115px;
                float: right;
                margin: 0 0 0 0;
                position: absolute;
                bottom: 0;
                right: 0;
                }
                .main .small-box .text {
                width: 90%;
                height: 62%;
                margin: 20px 0 0 20px;
                }
                .main .small-box .text p {
                    font-size: 22px;
                }
                /*------------------------------------------BEGINNING OF EXHIBITION PAGE-------------------------------------*/
            .main .exhibit-space {
            width: 100%;
            height: 88vh;
            }
            .main .exhibit-space .window {
            /*width: 1200px;*/
            width: 93vw;
            height: 66vh;
            border: 0px solid #1c31ee;
            overflow-x: auto;
            overflow-y: hidden;
            margin: 20px 0 0 0;
            position: absolute;
            bottom: 65px;
            right: 0;
            }
            .main .exhibit-space .window ul li.exhibit2 div.image2 {
            background-size: 145%;
            background-position-x: -14px;
            background-position-y: 0px;
            }
            .main .exhibit-space .window ul li.exhibit1 div.fill1, .window ul li.exhibit2 div.fill2, .window ul li.exhibit3 div.fill3 {
            width: 345px;
            height: 48vh;
            }
            .main .exhibit-space .title1 {
            width: 300px;
            height: 8vh;
            }
            .main .exhibit-space .title2 {
            width: 300px;
            height: 11vh;
            }
            .main .exhibit-space .date2 {
            margin: 6px 0 0 15px;
            }
            .main .exhibit-space .date3 {
            margin: 0px 0 0 15px;
            }
            /*-----------------------------------------------END OF EXHIBITION PAGE------------------------------------------*/

/*-----------------------------------------------BEGINNING OF VISIT PAGE------------------------------------------*/
        .main .exhibit-space .visit-content {
        width: 100%;
        height: 70vh;
        left: 0;
        top: 280px;
        }
        .main .exhibit-space .visit-content .visit-left, .visit-right {
        width: 100%;
        height: 33vh;
        float: none;
        margin: 0 0 0 0;
        }
        .main .exhibit-space .visit-content .visit-right{
        width: 100%;
        height: 40vh;
        margin: 0 0 0 0;
        }
        .main .exhibit-space .visit-content .visit-left .admission, .hours, .address {
        width: 200px;
        height: 4vh;
        margin: 10px 0 0 25px;
        display: block;
        }
        .main .exhibit-space .visit-content .visit-left .hours {
            float: left;
            margin: -45px 0 0 15px;
        }
        .main .exhibit-space .visit-content .visit-left .admission p, .hours p, .address p, .socialmedia p {
            font-size: 21px;
        }
        .main .exhibit-space .visit-content .visit-left .tickets {
        width: 376px;
        height: 25vh;
        margin: 10px 0 0 25px;
        float: left;
        gap: 55px;
        }
        .main .exhibit-space .visit-content .visit-right .visit-img {
        width: 60vw;
        height: 30vh;
        float: left;
        margin: 10px 0 0 25px;
        }
        .main .exhibit-space .visit-content .visit-right .video {
        width: 60vw;
        height: 30vh;
        float: left;
        margin: 50px 0 0 25px;  
        }
        .main .exhibit-space .visit-content .visit-left .timesheet {
        width: 386px;
        height: 25vh;
        margin: 9px 0 0 15px;
        float: left;
        display: flex;
        }
        .main .exhibit-space .visit-content .visit-left .timesheet ul {
            padding: 0;
            margin: 0 0 0 25px;
        }
        .main .exhibit-space .visit-content .visit-right .address, .socialmedia {
            float: left;
            margin: 10px 0 0 15px;
        }
        .main .exhibit-space .visit-content .visit-right .socialmedia {
            margin: 50px 0 0 20px;
        }
        .main .exhibit-space .visit-content .visit-right .address-content {
            width: 250px;
            float: left;
            margin: 10px 0 0 15px;
        }
        .main .exhibit-space .visit-content .visit-right .socials {
            float: left;
            width: 250px;
            margin: 10px 0 0 20px;
        }
/*-----------------------------------------------BEGINNING OF VISIT PAGE------------------------------------------*/

            }
        

            /*-----------------------------------------------END OF TABLET------------------------------------------*/

    /*-----------------------------------------------BEGINNING OF PHONE------------------------------------------*/


/* ------- MEDIA QUERY MOBILE -800 ------- */
            @media only screen and (max-width:800px) {
                /*div div {
                    background-color: rgb(238, 168, 114);
                }*/
/*-----------------------------------------------Menu code starts here---------------------------------------------*/
#menuToggle
{
  display: block;
  position: fixed;
  top: 40px;
  right: 20px;
  
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}
#menuToggle a
{
  text-decoration: none;
  color:#555daa;
  
  transition: color 0.3s ease;
}
#menuToggle a:hover
{
  color:#555daa;
}
#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 3; /* and place it over the hamburger */
  
  -webkit-touch-callout: none;
}
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin: 0 0 5px 0;
  position: relative;
  
  background:#f9f3ed;
  border-radius: 3px;
  
  z-index: 1;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}
#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}
#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background:#555daa;
}
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}
#menu
{
  position: absolute;
  right: 0;
  left: auto;
  max-width: 400px;
  width: 100vw;
  max-height: 100vh;
  margin: -100px -20px 0 0;
  padding: 50px;
  padding-top: 125px;
  box-sizing: border-box;
  overflow-y: auto;
  background:#f9f3ed;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;  
  transform-origin: 100% 0%;
  transform: translate(100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}
#menu li
{
    font-family: forma-djr-display, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 18px;
    color:#555daa;
    padding: 10px 0;
    font-size: 22px;
}
#menu li label
{
  cursor: pointer;
}
#menuToggle input:checked ~ ul
{
  transform: none;
}
/*---------------------------------------------------END MENU---------------------------------------------------*/
                .main {
                    height: 151vh;
                }
                .main .header {
                    height: 12vh;
                }
                .main .header .line {
                height: 8px;
                }
                .main .header .logo {
                width: 73%;
                margin: 0 0 0 19px;
                }
                .main .header .logo p {
                    font-weight: 500;
                    font-size: 20px;
                }
                .main .header .header-space {
                width: 1%;
                margin: 0 0 0 7px;
                }
                .main .header .menu {
                display: none;
                }
                .main .explore-exhibition p:active {
                transform: scale(103%);
                animation: 0.3s ease-in-out;
                }
                .main .main-space1 {
                height: 20px;
                }
                .main .explore-arrow {
                width: 245px;
                height: 30px;
                }
                .main .explore-exhibition {
                width: 245px;
                height: 30px;
                }
                .main .big-box {
                width: 100%;
                height: 53vh;
                position: relative;
                float: left;
                margin: 7px auto 0 auto;
                top: 0;
                }
                .main .big-box .title {
                width: 85%;
                height: 10vh;
                margin: 20px 20px 0 20px;
                }
                .main .big-box .title p {
                font-size: 30px;
                }
                .main .big-box .date {
                width: 45%;
                height: 4vh;
                margin: 0 20px 0 20px;
                }
                .main .big-box .description {
                width: 89%;
                height: 27vh;
                margin: 6px 20px 0 20px;
                }
                .main .big-box .description p {
                font-size: 17px;
                line-height: 20px;
                }
                .main .img1 {
                width: 195px;
                height: 203px;
                margin: -23px 0 0 0;
                position: relative;
                background-size: cover;
                }
                @keyframes img1-bg {
                    0%   { background-image: url("../Images/Painting4.jpg"); opacity: 100%;}
                    33%  { background-image: url("../Images/Painting4.jpg"); opacity: 100%;}
                    66%  { background-image: url("../Images/Painting4.jpg"); opacity: 100%;}
                    100% { background-image: url("../Images/Painting4.jpg"); opacity: 100%;}
                }
                .main .img2 {
                width: 195px;
                height: 203px;
                float: left;
                margin: 0 0 0 0;
                display: block;
                position: absolute;
                bottom: 105px;
                background-size: cover;
                }
                @keyframes img2-bg {
                    0%   { background-image: url("../Images/Painting2.jpg"); opacity: 100%;} 
                    33%  { background-image: url("../Images/Painting2.jpg"); opacity: 100%;}
                    66%  { background-image: url("../Images/Painting2.jpg"); opacity: 100%;}
                    100% { background-image: url("../Images/Painting2.jpg"); opacity: 100%;}
                }
                .main .arrow {
                width: 175px;
                height: 85px;
                margin: 0 0 0 0;
                position: relative;
                bottom: -30px;
                left: 10px;
                }
                .main .main-space2 {
                width: 100%;
                height: 5vh;
                margin: 0 auto 0 auto;
                position: relative;
                }
                .main .small-box {
                width: 100%;
                height: 105px;
                float: left;
                margin: 0 0 0 382px;
                display: block;
                position: absolute;
                bottom: 0;
                }
                .main .small-box .text {
                width: 90%;
                height: 9vh;
                margin: 20px 0 0 20px;
                }
                .main .small-box .text p {
                font-size: 16px;
                line-height: 20px;
                }
            /*---------------------------BEGINNING OF COLLECTIONS PAGE--------------------------------*/
            .main .exhibit-space {
            width: 100%;
            height: 140vh;
            }
            .main .exhibit-space .window {
            /*width: 1200px;*/
            width: 90vw;
            height: 93vh;
            bottom: 140px;
            right: 0;
            }
            .main .exhibit-space .window ul li.exhibit1 div.image1, .window ul li.exhibit2 div.image2, .window ul li.exhibit3 div.image3  {
            width: 500px;
            height: 93vh;
            margin: 0 0 0 0;
            }
            .main .exhibit-space .window ul li.exhibit1 div.fill1, .window ul li.exhibit2 div.fill2, .window ul li.exhibit3 div.fill3 {
            width: 345px;
            height: 68vh;
            }
            .main .exhibit-space .date1 {
            margin: 42px 0 0 15px;
            }
            .main .exhibit-space .date2 {
            margin: 52px 0 0 15px;
            }
            .main .exhibit-space .date3 {
            margin: 23px 0 0 15px;
            }
            .main .exhibit-space .description1 {
            top: 71px;
            }
            .main .exhibit-space .description2 {
            top: 67px;
            }
            .main .exhibit-space .description3 {
            top: 80px;
            }
            /*----------------------------------------END OF COLLECTIONS PAGE--------------------------*/

                        /*----------------------------------------BEGINNING OF VISIT PAGE--------------------------*/

            .main .exhibit-space .visit-content {
            width: 100%;
            height: 120vh;
            top: 220px;
            }
            .main .exhibit-space .visit-content .visit-left, .visit-right {
                width: 100vw;
                height: 75vh;
            }
            .main .exhibit-space .visit-content .visit-left .admission, .hours {
                margin: 10px 0 0 15px;
            }
            .main .exhibit-space .visit-content .visit-left .hours {
                margin: 15px 0 0 15px;
            }
            .main .exhibit-space .visit-content .visit-right .address {
                margin: 20px 0 0 15px;
            }
            .main .exhibit-space .visit-content .visit-right .socialmedia {
                margin: 80px 0 0 15px;
            }
            .main .exhibit-space .visit-content .visit-left .tickets, .timesheet {
                width: 92vw;
                height: 29vh;
                margin: 10px 0 0 15px;
            }
            .main .exhibit-space .visit-content .visit-left .timesheet {
                height: 33vh;
                width: 90vw;
                margin: 10px 0 0 15px;
            }
            .main .exhibit-space .visit-content .visit-left .admission p, .hours p, .address p {
                font-size: 20px;
            }
            .main .exhibit-space .visit-content .visit-left .tickets ul li, .timesheet ul li {
                font-size: 18px;
                line-height: 24px;
            }
            .main .exhibit-space .visit-content .visit-left .timesheet ul {
                margin: 10px 0 0 0;
                list-style-type: none;
            }
            .main .exhibit-space .visit-content .visit-right .address-content {
                width: 92vw;
                height: 16vh;
                margin: 10px 0 0 15px;
            }
            .main .exhibit-space .visit-content .visit-right .address-content p {
                font-size: 18px;
                line-height: 24px;
            }
            .main .exhibit-space .visit-content .visit-right .visit-img {
            width: 360px;
            height: 20vh;
            margin: 10px 0 0 15px;
            }
            .main .exhibit-space .visit-content .visit-right .video {
            width: 360px;
            height: 20vh;
            margin: -30px 0 0 15px;
            }
            .main .exhibit-space .visit-content .visit-left .tickets p, .timesheet p {
            font-size: 17px;
            line-height: 22px;
            }
            .main .exhibit-space .visit-content .visit-left .timesheet p {
            font-size: 17px;
            line-height: 22px;
            margin: 45px 0 0 0;
            }
            }    

    /*-----------------------------------------------END OF PHONE------------------------------------------*/
