/* FONT WEIGHTS
DM Serif Display: 
Regular 400
Regular 400 Italic

Poppins: 
Regular 400
Medium 500
SemiBold 600
*/
/************************** ELEMENTS **************************/
html {
    scroll-behavior: smooth;
}

body {
    background: #f4f0ea;
    transition: background-color 1s ease;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Serif Display', serif;
}

p, a, li, button, input {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #2f2f2f;
}

h1 {
    font-size: 120px;
    text-align: center;  
    text-transform: uppercase;
    color: #f4f0ea;
    text-shadow: 0 0 20px rgb(38,31,21,0.7);
}

h2 {
    text-transform: uppercase;
    font-size: 95px;
}

h3 {
    font-size: 64px;
    text-transform: uppercase;
}

h4 {
    font-size: 50px;
}

h5 {
    font-size: 36px;
}

h6 {
    font-size: 24px;
}

p, a, button {
    font-size: 16px;
}

a, button {
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    color: inherit;
}

ul {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
}

hr {
    margin: 0px;
    border-top: 1.5px solid rgb(38,31,21,0.5);
}

button, input {
    border-style: none;
    color: #f4f0ea;   
}

input {
    height: 40px;
    background: none;
    border: none;
    border-bottom: 1.5px solid #f4f0ea;
}

input::placeholder {
    color: #f4f0ea;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}

thead, tr, td {
    border-color: rgb(160, 159, 159, 0.25);
}

thead > tr, td {
    text-align: center;
}

/************************** ID **************************/
#main-navigation {
    position: sticky;
    top: 0;
    z-index: 5;
}

#main-masthead {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

#main-masthead img {
    object-fit: contain;
    position: absolute;
}

.graphic-opacity {
    opacity: 0.3;
}

#main-masthead > div:first-child > img { /* Artwork Bottom Img */
    bottom: -50%;
    left: 65%;
    filter: blur(6px);
}

#main-masthead > div:nth-child(2) > img { /* Artwork Top Img */
    top: -15%;
    right: 85%;
    filter: blur(6px);
}

#main-masthead img:nth-child(3) { /* Artefact Img */
    bottom: -5%;
    right: 80%; 
}

#main-masthead img:nth-child(4) { /* Main Masthead Img */
    position: absolute;
    width: 1100px;
    min-height: 400px;
    object-fit: cover;
    top: 50%;
    left: 50%;
    filter: blur(2px);
    transform: translate(-50%, -50%);
    box-shadow:0 0 50px 10px #1c140c;
}

#main-masthead img:nth-child(5) { /* Statue Img */
    top: -10%;
    left: 80%;
}

#main-masthead img:nth-child(6) { /* Rotation Img */
    position: absolute;
    width: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#carousel {
    margin-top: 150px;
}

#newsletter {
    margin-top: 100px;
}

#footer {
    padding-top: 100px;
    background-color: #f4f0ea;
}

#explore-more {
    padding: 100px 0 50px 0;
    background-color: #f4f0ea;
}
/************************** CLASSES **************************/
html.sr .load-hidden {
    visibility: hidden;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    overflow: hidden;
    background: #f4f0ea;
    background-image: url(../img/preloader-background.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.preloader > img {
    width: 1400px;
    height: auto;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.4;
}

.preloader-text {
    width: 100%;
    height: 100vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #f4f0ea;
}

.preloader-text > h3 {
    font-size: 150px;
}

.main-container {
    padding: 1% 7%;
}

.hide {
    display: none;
}

.primary-navbar {
    position: absolute;
    z-index: 5;
}

.burger-menu {
    cursor: pointer;
}

.burger-menu > span {
    display: block;
    width: 35px;
    height: 3px;
    background-color: #f4f0ea;
    border-radius: 4px;
    margin: 8px 0;
    box-shadow: 0 0 10px 2px rgb(38,31,21,0.5);
}

span.burger-line-top, span.burger-line-bottom {
    width: 17.5px;
}

span.burger-line-bottom {
    margin-left: 17.5px;
}

.logo-container > a {
    display: inline-block;
    width: 80px;
    height: 80px;
}

.logo-container img {
    width: 100%;
}

.nav-container {
    display: inline-block;
}

.nav-bg {
    width: 100%;
    height: 125px;
    opacity: 0.95;
    position: absolute;
    top: -125px;
    background-image: linear-gradient(180deg, rgb(17,14,11,1), rgb(38,31,21,1));
    transition: top 0.3s;
}

.mobile-nav-container {
    width: 100%;
    overflow: scroll;
}

.mobile-nav-items {
    margin-top: 50px;
}

.mobile-nav-bg {
    width: 100%;
    min-height: 100vh;
    overflow: scroll;
    background-color:#f4f0ea;
}

.nav-items > li {
    display: inline-block;
    margin: 0 20px;
}

.mobile-nav-items > li {
    display: block;
    margin: 30px 0px;
}

.mobile-nav-items > li > a {
    font-size: 36px;
    padding: 15px 0px;
    position: relative;
    display: block;
    color: #2f2f2f;
}

.nav-items > li > a {
    color: #f4f0ea;
    padding: 5px 20px;
    position: relative;
}

.nav-items > li > a::after, .mobile-nav-items > li > a::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 1.75px;
    background: #d19752;
    transition-property: width;
    transition-duration: 0.3s;
}

.mobile-nav-items > li > a::after {
    height: 1px;
    opacity: 0.5;
}

.nav-items > li > a:hover::after, .nav-items > li:hover > a::after, 
.mobile-nav-items > li > a::after {
    width: 100%;
    left: 0;
    right: auto;
}

.nav-cta, .btn-cta {
    display: inline-block;
}

.primary-cta {
    background-color: #d19752;
    border-radius: 50px;
}

.primary-cta:hover {
    transition: 0.3s ease;
    background-color: #99774a;
}

.primary-cta > a, button.primary-cta {
    display: inline-block;
    padding: 8px 40px;
    color: #f4f0ea;
}

.secondary-dropdown {
    top: 64px;
    background-image: linear-gradient(180deg, rgb(38,31,21,1), rgb(17,14,11,1));
}

.secondary-dropdown > li, .mobile-secondary-dropdown > li {
    margin: 0;
}

.mobile-secondary-dropdown > li > a {
    display: block;
    font-size: 24px;
    padding: 15px 0;
    color: #2f2f2f;
    opacity: 1;
}

.mobile-secondary-dropdown > li:hover > a {
    color: #f4f0ea;
}

.secondary-dropdown > li > a {
    display: block;
    padding: 15px 20px;
    color: #f4f0ea;
    opacity: 1;
}

.secondary-dropdown > li:hover, .mobile-secondary-dropdown > li:hover {
    background-color: #99774a;
}

.dropdown-items {
    position: absolute;
}

.main-masthead-bg {
    position: relative;
    background-image: url(../img/main-masthead-bg.jpg);
    background-color: #000000;
    min-height: 100vh;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.vertical-line {
    width: 25px;
    height: 67px;
    margin: 0 auto;
}

.vertical-line > img {
    width: 25%;
}

.scroll-down {
    position: absolute;
    left: 50%;
    bottom: 5%;
    transform: translate(-50%, 0);
}

.scroll-down > p {
    margin-top: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: #f4f0ea;
}

.title-component {
    text-align: left;
    margin: 80px 0 40px 0;
}

.glide__slide {
    transform: scale(0.9);
    opacity: 0.3;
    transition: 0.3s linear;
    position: relative;
    width: 100%;
    height: 450px;
}

.glide__slide--active {
    transform: scale(1);
    opacity: 1;
}

.glide__slide--active:hover {
    transition: box-shadow 0.3 ease-in-out;
    box-shadow: 0 0 50px rgb(17,14,11,0.8);
}

.glide__slide > img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.image-gradient {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 400px;
    background-image: linear-gradient(to top, rgb(17,14,11,0.8), rgb(38,31,21,0));
}

.slide-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slide-info {
    position: absolute;
}

h4.slide-info {
    text-transform: none;
    width: 90%;
    bottom: 15%;
    left: 5%;
}

.artist-name {
    display: inline-block;
    width: 100%;
    font-style: italic;
    font-size: 24px;
}

div.slide-info {
    bottom: 2%;
    left: 5%;
}

.slide-title {
    color: #f4f0ea;
    font-weight: 500;
    margin-bottom: 20px;
}

.glide__arrows {
    display: flex;
    margin: 20px 0;
    justify-content: space-around;
}

.glide__arrows > button {
    background-color: none;
}

.glide__arrows > button > img {
    width: 60px;
    filter: brightness(0) invert(1);
}

.glide__arrow {
    border-radius: 25%;
    border: none;
    top: 50%;
    background-color: rgb(153,119,74,0.8);
}

.glide__bullets {
    bottom: -1%;
}

.glide__bullet {
    margin:0px 20px;
    background-color: #f4f0ea;
    border: 2px solid #99774a;
}

.glide__bullet--active, .glide__bullet:focus {
    border: 2px solid #99774a;
    background-color: #99774a;
}

.glide__bullet:hover {
    background-color: #99774a;
    opacity: 0.4;
    border: 2px solid #99774a;
}

.tile-info {
    padding: 30px 0;
}

.tile-info-details {
    display: flex;
    flex-direction: column;
}

.tile-info-details-bottom {
    margin-top: auto;
}

.filter-links-container {
    padding: 20px 0;
}

.sort-item {
    display: flex;
    justify-content: flex-end;
}

.sort-title > i {
    margin-left: 50px;
}

.sort-title > a, .sort-item-dropdown > li > a {
    display: inline-block;
    padding: 10px 0px;
}

.btn-arrow {
    transform: rotate(0deg);
}

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

.tile-label {
    text-transform: uppercase;
    margin-bottom: 10px;
}

.tile-title {
    margin-bottom: 20px;
}

.tile-img {
    overflow: hidden;
}

.tile-img > img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-left: auto;
}

.secondary-cta > a {
    color: #99774a;
    margin-right: 10px;
}

.secondary-cta > img {
    width: 50px;
}

.popup-container {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    z-index: 999;
    background-color: rgb(17,14,11,0.9);
}

.popup-box {
    width: 75%;
    min-height: 500px;
    background-color: #f4f0ea;
    box-shadow: 0px 0px 20px rgb(38,31,21,0.3);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.popup-box > .row {
    --bs-gutter-x: 0;
}

.subscribe-container {
    height: 500px;
    overflow: hidden;
    object-fit: contain;
} 

.popup-box > img.subscription {
    width: 100%;
}

img.close-icon {
    width: 24px;
    height: 24px;
    position: absolute;
    top: 25px;
    right: 25px;
    cursor: pointer;
}

.popup-text {
    margin: auto 0;
    padding: 0 50px;
}

.popup-text > .secondary-cta {
    margin-top: 50px;
}

.newsletter-container {
    padding: 10% 7%;
    background-color: #f4f0ea;
    background-image: url(../img/main-masthead-bg.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.newsletter-container > img {
    position: absolute;
    width: 70%;
    top: 10%;
    right: 50%;
    transform: scaleX(-1);
}

.newsletter-container > h3 {
    color: #f4f0ea;
}

.newsletter-form-style > input, .newsletter-form-style > button {
    margin: 40px 0 10px 0;
}

.newsletter-form-style > span {
    color: #f4f0ea;
}

.footer-container {
    padding: 2% 7%;
}

.footer-container > hr {
    margin: 20px 0;
}

.footer-container > div p, .footer-container > div a {
    font-size: 14px;
}

.footer-links {
    text-align: right;
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.social-icons > a > i:hover {
    color: #99774a;
}

.social-icons > a {
    margin-left: 60px;
}

.back-to-top {
    position: fixed;
    bottom: -8%;
    right: 4%;
    z-index: 2;
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background-color: #99774a;
    padding: 15px;
    transition: bottom 0.3s;
    box-shadow: -2px 5px 5px rgb(38,31,21,0.3);
}

.back-to-top > img {
    width: 60%;
}

/****** TICKET PAGE ******/
.sub-masthead-bg {
    position: relative;
    width: 100%;
    height: 600px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.ticket-masthead {
    background-image: url(../img/sub-masthead-tickets-and-faq.jpg);
}

.ticket-masthead > .image-gradient {
    height: 600px;
    top: 0;
    background-image: linear-gradient(to bottom, rgb(17,14,11,0.6), rgb(38,31,21,0));
}

h2.title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #f4f0ea;
}

h3.title {
    text-align: left;
}

.tab-buttons {
    margin-top: 60px;
}

.tab-buttons > a {
    display: inline-block;
    padding: 1% 5%;
}

.tab-links.active {
    border-bottom: 4px solid #99774a;
    color: #99774a;
}

.tab-links {
    color: #b2aea6;
}

.ticket-info-line {
    opacity: 0.5;
    border-bottom: 1px solid #a09f9f;
}

.table>:not(caption)>*>* {
    padding: 40px 30px;
}

.promo-listing {
    margin-top: 40px;
    margin-right: 40px;
    border: 1.5px solid rgb(38,31,21,0.2);
    padding: 40px;
}

.promo-listing > h6, .benefit-listing > h6 {
    margin-bottom: 10px;
}

.icons {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.membership-benefits {
    margin-top: 150px;
}

.btn-cta {
    margin: 20px 0;
}

.benefit-listing {
    margin-left: 60px;
    margin-bottom: 50px;
}

.content {
    padding-left: 30px;
    margin-bottom: 30px;
}

.accordion-question {
    display: flex;
    align-items: center;
    padding-right: 30px;
}

.accordion-btn {
    flex: 1;
    width: 100%;
    text-align: left;
    color: #2f2f2f;
    background-color: transparent;
    padding: 30px;
}

/****** SPECIAL EXHIBITION PAGE ******/
span.sub-title {
    font-style: italic;
    text-transform: none;
    font-size: 24px;
    display: block;
}

.special-exhibition-masthead {
    background-image: url(../img/claude-monet/slide-cover-claude.jpg);    
}

.special-exhibition-masthead > .image-gradient {
    height: 600px;
    top: 0;
    background-image: linear-gradient(to bottom, rgb(17,14,11,0.5), rgb(38,31,21,0));
}

.bio-info {
    position: relative;
    margin-top: 80px;
}

.bio-para{
    color: #f4f0ea;
    position: absolute;
    z-index: 1;
}

.bio-para > p {
    color: #f4f0ea;
}

.bio-para > h3, .bio-liner > h3 {
    font-size: 90px;
    font-style: italic;
    text-transform: none;
}

.bio-profile > img {
    width: 50%;
    object-fit: contain;
    
}

.bio-para:last-child {
    bottom: 0;
    right: 7%;
}

.bio-liner {
    margin-top: 180px;
    margin-left: 13%;   
}

.bio-liner > h3 {
    color: #f4f0ea;
    text-transform: uppercase;
}

.highlight-info {
    padding-left: 15%;
}

.highlight-para {
    color: #f4f0ea;
    padding-left: 13%;
    text-align: left;
    margin-top: 40px;
    line-height: 1.5;
}

.underline {
    position: relative;
}

.underline > span {
    position: absolute;
    width: 0%;
    border-bottom: 4px solid #f4f0ea;
    margin-bottom: 100px;
    top: 100%;
    left: 0%;
}

.collection-title {
    margin-top: 150px;
}

.collection-title > hr {
    margin: 20px 0 80px 0;
}

.works > img {
    width: 100%;
}

.works > h3 {
    font-size: 45px;
}

.works-text-right > h3 { /* TEXT RIGHT IMAGE LEFT */
    margin-left: 25%;
}

.works-text-right > .work-desc > h4, .works-text-left > .work-desc > h4 {
    margin: 30px 0 10px 0;
}

.works-text-right > .work-desc {
    margin-left: 25%;
}

.horizontal-line {
    width: 240px;
    border: 1px solid #2f2f2f;
    margin-bottom: 20px;
}

.works-text-right > .horizontal-line {
    margin-left: -25px;
}

.second-work, .third-work, .fourth-work, .fifth-work, .sixth-work {
    margin-top: 100px;
}

.works-text-left { /* TEXT LEFT IMAGE RIGHT */
    text-align: right;
}

.works-text-left > h3 {
    margin-right: 25%;
}

.works-text-left > .horizontal-line {
    float: right;
    margin-right: -24px;
}

.works-text-left > .work-desc {
    clear: both;
    margin-right: 25%;
}

.quote-container, .lilies-img {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.quote > h3 {
    font-size: 70px;
    position: absolute;
    width: 100%;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    text-align: center;
    text-transform: none;
    font-style: italic;
}

.lilies-img > img {
    position: absolute;
}

.lilypad-small-left {
    width: 230px;
    left: -70px;
    bottom: -200px;
}

.lilypad-left {
    width: 420px;
    left: 0px;
    bottom: -200px;
}

.lilybud-left {
    width: 160px;
    left: 100px;
    bottom: -100px;
}

.lily-left {
    width: 300px;
    left: -70px;
    bottom: -50px;
}

.lily-small-left {
    width: 200px;
    left: 300px;
    bottom: -70px;
}

.lilybud-right {
    width: 150px;
    right: -20px;
    top: 100px;
}

.lily-right {
    width: 300px;
    right: 0;
    bottom: -70px;
}

.lilypad-right {
    width: 320px;
    right: 50px;
    bottom: -250px;
}

.lilypad-small-right {
    width: 250px;
    right: -50px;
    bottom: 80px;
}

.explore-container {
    position: relative;
}

.explore-tiles > h3 {
    margin-bottom: 40px;
}

.explore-container > img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.explore-info {
    position: absolute;
    bottom: -60px;
    width: 85%;
    min-height: 200px;
    background-color: #ffffff;
    padding: 7%;
}

.explore-info > p, .explore-info > h5 {
    margin-bottom: 30px;
}

/************************** MEDIA QUERY **************************/
@media (max-width: 1200px) {  
    #main-masthead img:nth-child(4) { /* Main Masthead Img */
        width: 85%;
        min-height: 700px;
    }

    .nav-items > li > a {
        padding: 5px 15px;
    }

    .bio-para > h3, .bio-liner > h3 {
        font-size: 70px;
    }
    
}

@media (max-width: 992px) {   
    h1 {
        font-size: 100px;
    }

    .desktop-navbar {
        display: none;
    }

    .tablet-mobile-navbar.hide {
        display: block;
    }

    .slide-content {
        width: 80%;
        height: 400px;
        margin: 0 20px;
        position: relative;
    }

    .sort-item {
        display: flex;
        justify-content: center;
    }

    .tile-info-details-bottom {
        margin-top: 100px;
    }

    .tile-img {
        margin-top: 30px;
    }

    .newsletter-container > img {
        width: 100%;
        right: 30%;
    }

    .benefit-01 {
        margin-top: 40px;
    }

    .bio-info {
        position: static;
    }
    
    .bio-para {
        position: static;
        margin: 30px 0;
    }

    .bio-para > h3, .bio-liner > h3 {
        font-size: 75px;
    }

    .bio-profile > img {
        width: 80%;
    }

    .bio-para:last-child {
        bottom: 0;
        right: 7%;
    }

    .bio-liner {
        margin-top: 60px;
        margin-left: 0;   
    }

    .highlight-info {
        display: inline-block;
        padding-left: 15%;
    }

    .highlight-info {
        padding-left: 0;
    }

    .highlight-para {
        padding-left: 0;
    }

    .horizontal-line {
        width: 210px;
    }

    .works-text-right > h3 {
        margin-left: 15%;
    }
    
    .works-text-right > .work-desc {
        margin-left: 15%;
    }
    
    .horizontal-line {
        width: 170px;
    }

    .works-text-left > h3 {
        margin-right: 15%;
    }
    
    .works-text-left > .work-desc {
        margin-right: 15%;
    }

    .lilies-img {
        opacity: 0.6;
    }

    div.explore-container:first-child, div.explore-container:nth-child(2) {
        margin-bottom: 100px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 83px;
    }

    h2 {
        font-size: 70px;
    }

    br {
        display: none;
    }

    #main-masthead img:nth-child(6) { /* Rotation Img */
        display: none;
    }

    .slide-info-break {
        display: block;
    }

    .slide-content {
        width: 90%;
        height: 400px;
        margin: 0 20px;
        position: relative;
    }

    .glide__arrow {
        top: 102%;
        background-color: transparent;
        box-shadow: none;
    }

    .glide__arrow > i {
        color: #99774a;
    }

    .glide__bullets {
        bottom: -3%;
    }

    .newsletter-container > img {
        display: none;
    }

    .newsletter-form > input {
        margin: 30px 0;
    }

    .newsletter-form > button[type=submit] {
        margin-top: 20px;
    }

    .footer-container {
        text-align: center;
    }

    .footer-container > .row {
        padding: 20px 0;
    }

    .subscribe-container {
        width: 100%;
        height: 250px;
    } 
    
    .popup-text {
        margin: auto 0;
        padding: 50px 50px;
    }

    .social-icons {
        margin-top: 50px;
        justify-content: space-around;
    }

    .social-icons > a {
        margin: 0;
    }

    .footer-links {
        margin-top: 20px;
        text-align: center;
    }
    
    .footer-container > hr {
        margin: 10px 0;
    }

    .highlight-info {
        display: inline;
    }

    .higlight-para {
        padding-left: 0;
    }

    .bio-liner > h3, .collection-title > h3, .quote > h3 {
        font-size: 60px;
    }

    .bio-profile > img {
        width: 100%;
    }

    .works > h3 {
        margin-top: 20px;
        margin-left: 0;
    }
    
    .horizontal-line {
        width: 100%;
    }

    .work-desc {
        margin-left: 0;
    }

    /* TEXT RIGHT IMAGE LEFT */
    .works-text-right > .horizontal-line {
        margin-left: 0;
    }

    .works-text-right > .horizontal-line {
        margin-right: 0;
    }
    
    .works-text-right > .work-desc {
        margin-left: 0;
    }

    /* TEXT LEFT IMAGE RIGHT */
    .works-text-left {
        text-align: left;
    }
    
    .works-text-left > h3 {
        margin-right: 0;
    }
    
    .works-text-left > .horizontal-line {
        float: none;
        margin-right: 0;
    }

    .works-text-left > .work-desc {
        margin-right: 0;
    }

    .lilies-img {
        opacity: 0.4;
    }

    .lily-small-left, .lilypad-right {
        display: none;
    }

    .lily-right {
        width: 320px;
        right: -50px;
        bottom: -260px;
    }

    .lilybud-right {
        width: 150px;
        right: -20px;
        top: 200px;
    }

    .lilypad-small-right {
        width: 250px;
        right: -50px;
        bottom: -50px;
    }
}