
/*FILES & BOXES */
.file_gallery .file {
    position: relative;
	background: #f4f4f4 ;
	color: #2f3335 !important;
    font-weight: 400;
    display: flex;
    padding-left: 50px;
    border: none;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 1;
 transition: all .3s ease-in-out;
}
.file_gallery .file:focus, .file_gallery .file:hover {
    color: white !important;
	text-decoration: none;
}

.file_gallery .file::before{
    content: '';
    background-color: #b0c26a;
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
    transition: width .3s ease-in-out;
}
.file_gallery .file::after{
    content: '';
    height: 0;
    width: 0;
    position: absolute;
    left: 0;
    top: calc(50% - 25px);
    border-right: 25px solid transparent;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 35px solid #b0c26a;
}
.file_gallery .file:hover:before{
    width: 100%;
    z-index: -1;
}
.home-text #content .file_gallery .file {
    background: #b0c26a ;
	color: #fff !important;
}


.standard_box {
    position: relative;
	background: #f4f4f4 ;
	color: #2f3335 !important;
    font-weight: 400;
    display: flex;
    padding-left: 50px;
    border: none;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 1;
 transition: all .3s ease-in-out;
}

.standard_box:hover {
    color: white !important;
	text-decoration: none;
}
.standard_box a::after {
    content: '';
    height: 0;
    width: 0;
    position: absolute;
    left: 0;
    top: calc(50% - 25px);
    border-right: 25px solid transparent;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 35px solid #b0c26a;
}

.standard_box p{
    width: 100%;
}

.standard_box::before{
    content: '';
    background-color: #b0c26a;
    width: 0;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 0;
    transition: width .3s ease-in-out;
}
.standard_box:hover:before{
    width: 100%;
    z-index: -1;
}

.work_list .standard_box a {
    color: #2f3335 !important;
	transition: background .3s ease-in-out;
}
#content .standard_box p {
    padding-bottom: 0;
    display: flex;
}
#content .standard_box p a{
    flex-grow: 1;
}
#content .standard_box:hover a, #content .standard_box:active a, #content .standard_box:hover p {
	color: #fff !important;
}

.work_list .standard_box a:hover {

	color: #fff;
}

.work_list .standard_box:hover::after, .work_list .standard_box:active::after {
	height: 100%;
}

/* CLASS LINKS */
#class_menu li {
    background: #b0c26a ;
    margin-right: 10px;
    padding: 1px 8px;
	color: white !important;
    border-radius: 25px;
 transition: background .3s ease-in-out;
}

#class_menu li:hover {
    background: #6c6a1f;
    text-decoration: none;
    color: #fff !important;
}
#class_menu li a{
    border: none;
    background: none;
    color: #fff;
    font-weight: 600;
}
#class_menu li:hover a{
    color: #fff;
}

#class_menu li a:hover{
    text-decoration: none;
}
#menu ul {
    display: none;
}
#menu, #menu li, #menu ul {
    list-style: none !important;
    list-style-image: none !important;
}

/* SIDE MENU */
    #menu li a{
        color: white;
        font-size: 18px;

    }
    #menu li{
        margin: 20px 0 0 10px;
        padding: 5px 0;
        border-bottom: 2px solid rgba(0,0,0,0);
        transition: all .3s ease-in-out;
    }

    #menu li li{
        margin-left: 20px;
    }
    #menu li:hover{
        border-bottom-color: #b0c26a;    
    }

    #menu li a:hover {
        color: #b0c26a;
        text-decoration: none;
    }
    .fas{
        margin-right: 10px;
    }


/* FULL SCREEN NAV BAR */
@media(min-width:1023px) {
    #menu li a {
        color: #fff;
        font-size: 16px;
        font-weight: 400;
        padding: 0 17px 0 17px;
        text-decoration: none;
        display: inline-block;
        text-transform: uppercase;
        position: relative;
        
    }
    #menu li a:hover {
        color: #fff;
    }
    #menu li{
        margin: 0;
        padding: 0;
        border: none;
        padding-bottom: 10px;
    }


    #menu li li{
        margin: 0;
        padding: 0;
    }

    #menu .subItem a {
        display: block;
        width: 300px;
        padding: 8px 15px;
        border: 0;
    }


    #menu{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    #menu ul{
        position: absolute;
        width: 300px;
        margin: 0px;
        margin-top: 10px;
        padding: 0px;
        font-size: 0;
        z-index: 997;
    }

    #menu ul ul{
        margin-left: 300px;
        margin-top: -40px !important;
    }
    

    #menu li:hover > ul{
        display: flex;
        flex-wrap: wrap;
        animation: fadeIn .25s;
    }
    .menu_expand{
        display: none !important;
    }

    /*first layer*/
    #menu ul{
        background: #6c6a1f;
    }
    #menu ul li a{
        color: white;
    }

    #menu ul li a:hover{
        color: #b0c26a !important;
        z-index: 999;
    }

    /*Second & third layer*/
    #menu ul ul{
        background: #b0c26a;

    }
    #menu ul ul li a{
        color: #fff;
    }

    #menu ul ul li a:hover{
        color: #6c6a1f !important;
    }

     /*Fourth + layers*/
     #menu ul ul ul ul {
        background: #6c6a1f;
    }
    #menu ul ul ul ul li a{
        color: #fff
    }

    #menu ul ul ul ul li a:hover{
        color:  #b0c26a !important;
    }

    /* STICKY NAV */
    .sticky-nav{
        
        background: #6c6a1f !important;
        color: #b0c26a !important;
        border-bottom: 1px solid #b0c26a
        
    }
    .sticky-nav li a {
        color: #b0c26a;
        
    }
    .sticky-nav li a:hover {
        color: #b0c26a;
    }

    .sticky-nav img{
        height: 80px !important;
    }

    .sticky-nav h1{
        font-size: 24px !important;
    }
    .sticky-nav h2{
        font-size: 13px !important;
    }






    /* LONG DROPDOWN HANDLING*/
    #menu li:hover>ul.long-dropdown{
        width: 600px !important;
        display: flex!important;
        flex-wrap: wrap;
    }
    .long-dropdown-subItem {
        width: 300px !important;
        
    }
    .long-dropdown-subItem ul{
        width: 300px !important;
        margin-left: -300px;
    }
}




.goog-logo-link{
    display: flex;
    justify-content: space-between;
    margin-left: 10px;
    width: 80px;
}

.goog-te-gadget{
    display: flex;
    flex-wrap: wrap;
    color: white !important;
}
.goog-te-combo{
    font-size: 16px !important;
    width: 244px !important;
    padding: 6px;
    color: initial;
}

/* HERO */
.custom-hero-dots{
    display: flex !important;
    width: 100%;
    margin: 0px auto;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 50px;
    z-index: 700;
}
.custom-hero-dots li{
    color: rgba(0,0,0,0);
    background-color: white;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    margin: 3px;
    transition: all .3s ease-in-out;
}
.custom-hero-dots .slick-active{
    background-color: #b0c26a;
    width: 15px;
    height: 15px;
}

/* TWITTER */
.custom-twitter-dots{
    display: flex !important;
    width: 100%;
    margin: 22px auto;
    justify-content: center;
    align-items: center;
    position: absolute;
    
}
.custom-twitter-dots li{
    color: rgba(0,0,0,0);
    background-color: #ffffff;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    margin: 3px;
    transition: all .3s ease-in-out;
}
.custom-twitter-dots .slick-active{
    background-color: #b0c26a;
    width: 15px;
    height: 15px;
}

#twitter-component .slick-arrow{
    top: 440px;
    z-index: 400;
}

#twitter-component .slick-prev{
    left: 40px;
}
#twitter-component .slick-next{
    right: 40px;
}

@media (min-width: 768px) { 
    #twitter-component .slick-prev{
        left: calc(50% - 80px);
    }
    #twitter-component .slick-next{
        right: calc(50% - 80px);
    }
}	

@media (min-width: 1024px) { 
    #twitter-component .slick-prev{
        left: calc(50% - 60px);
    }
    #twitter-component .slick-next{
        right: calc(50% - 60px);
    }
}	

@media (min-width: 1280px) { 
    #twitter-component .slick-prev{
        left: calc(50% - 80px);
    }
    #twitter-component .slick-next{
        right: calc(50% - 80px);
    }
}	

@media (min-width: 1536px) { 
    #twitter-component .slick-prev{
        left: calc(50% - 60px);
    }
    #twitter-component .slick-next{
        right: calc(50% - 60px);
    }
}


#twitter-component .slick-prev::before, #twitter-component .slick-next::before{
    font-family: 'Font Awesome 5 Pro';
    color: #b0c26a;
    opacity: 1;
    font-size: 18px;
    font-weight: 600;
    transition: all .3s ease-in-out;
}

#twitter-component .slick-prev:hover::before, #twitter-component .slick-next:hover::before{
    color: #fff;
}


#twitter-component .slick-disabled::before, #twitter-component .slick-disabled:hover::before{
    opacity: 0.5;
    color: #fff;
    cursor: initial;
}

#twitter-component .slick-prev::before{
    content: '\f060';
}

#twitter-component .slick-next::before{
    content: '\f061';
}

/* NEWS */
#news-component .slick-arrow{
    top: 390px;
    z-index: 400;
}

#news-component .slick-prev{
    left: 40px;
}
#news-component .slick-next{
    right: 40px;
}

@media (min-width: 768px) { 
    #news-component .slick-prev{
        left: calc(50% - 80px);
    }
    #news-component .slick-next{
        right: calc(50% - 80px);
    }
}	

@media (min-width: 1024px) { 
    #news-component .slick-prev{
        left: calc(50% - 60px);
    }
    #news-component .slick-next{
        right: calc(50% - 60px);
    }
}	

@media (min-width: 1280px) { 
    #news-component .slick-prev{
        left: calc(50% - 80px);
    }
    #news-component .slick-next{
        right: calc(50% - 80px);
    }
}	

@media (min-width: 1536px) { 
    #news-component .slick-prev{
        left: calc(50% - 60px);
    }
    #news-component .slick-next{
        right: calc(50% - 60px);
    }
}


#news-component .slick-prev::before, #news-component .slick-next::before{
    font-family: 'Font Awesome 5 Pro';
    color: #b0c26a;
    opacity: 1;
    font-size: 18px;
    font-weight: 600;
    transition: all .3s ease-in-out;
}

#news-component .slick-prev:hover::before, #news-component .slick-next:hover::before{
    color: #fff;
}


#news-component .slick-disabled::before, #news-component .slick-disabled:hover::before{
    opacity: 0.5;
    color: #fff;
    cursor: initial;
}

#news-component .slick-prev::before{
    content: '\f060';
}

#news-component .slick-next::before{
    content: '\f061';
}

/* EVENTS */
.custom-events-dots{
    display: flex !important;
    width: 100%;
    margin: 22px auto;
    justify-content: center;
    align-items: center;
    position: absolute;
    
}
.custom-events-dots li{
    color: rgba(0,0,0,0);
    background-color: #d5d5d5;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    margin: 3px;
    transition: all .3s ease-in-out;
}
.custom-events-dots .slick-active{
    background-color: #b0c26a;
    width: 15px;
    height: 15px;
}

#events-component .slick-arrow{
    top: 290px;
    z-index: 400;
}

#events-component .slick-prev{
    left: 40px;
}
#events-component .slick-next{
    right: 40px;
}

@media (min-width: 768px) { 
    #events-component .slick-prev{
        left: calc(50% - 80px);
    }
    #events-component .slick-next{
        right: calc(50% - 80px);
    }
}	

@media (min-width: 1024px) { 
    #events-component .slick-prev{
        left: calc(50% - 60px);
    }
    #events-component .slick-next{
        right: calc(50% - 60px);
    }
}	

@media (min-width: 1280px) { 
    #events-component .slick-prev{
        left: calc(50% - 80px);
    }
    #events-component .slick-next{
        right: calc(50% - 80px);
    }
}	

@media (min-width: 1536px) { 
    #events-component .slick-prev{
        left: calc(50% - 60px);
    }
    #events-component .slick-next{
        right: calc(50% - 60px);
    }
}



#events-component .slick-prev::before, #events-component .slick-next::before{
    font-family: 'Font Awesome 5 Pro';
    color: #b0c26a;
    opacity: 1;
    font-size: 18px;
    font-weight: 600;
    transition: all .3s ease-in-out;
}

#events-component .slick-prev:hover::before, #events-component .slick-next:hover::before{
    color: #6c6a1f;
}


#events-component .slick-disabled::before, #events-component .slick-disabled:hover::before{
    opacity: 0.5;
    color: #d5d5d5;
    cursor: initial;
}

#events-component .slick-prev::before{
    content: '\f060';
}

#events-component .slick-next::before{
    content: '\f061';
}


/* GALLERY */
#gallery-component .slick-arrow{
    top: 390px;
    z-index: 400;
}

#gallery-component .slick-prev{
    left: 40px;
}
#gallery-component .slick-next{
    right: 40px;
}

@media (min-width: 768px) { 
    #gallery-component .slick-prev{
        left: calc(50% - 80px);
    }
    #gallery-component .slick-next{
        right: calc(50% - 80px);
    }
}	

@media (min-width: 1024px) { 
    #gallery-component .slick-prev{
        left: calc(50% - 60px);
    }
    #gallery-component .slick-next{
        right: calc(50% - 60px);
    }
}	

@media (min-width: 1280px) { 
    #gallery-component .slick-prev{
        left: calc(50% - 80px);
    }
    #gallery-component .slick-next{
        right: calc(50% - 80px);
    }
}	

@media (min-width: 1536px) { 
    #gallery-component .slick-prev{
        left: calc(50% - 60px);
    }
    #gallery-component .slick-next{
        right: calc(50% - 60px);
    }
}



#gallery-component .slick-prev::before, #gallery-component .slick-next::before{
    font-family: 'Font Awesome 5 Pro';
    color: #b0c26a;
    opacity: 1;
    font-size: 18px;
    font-weight: 600;
    transition: all .3s ease-in-out;
}

#gallery-component .slick-prev:hover::before, #gallery-component .slick-next:hover::before{
    color: #fff;
}


#gallery-component .slick-disabled::before, #gallery-component .slick-disabled:hover::before{
    opacity: 0.5;
    color: #fff;
    cursor: initial;
}

#gallery-component .slick-prev::before{
    content: '\f060';
}

#gallery-component .slick-next::before{
    content: '\f061';
}
#schools {
    position: absolute;
    /*top: 0;*/
    z-index: 300;
    top: 90%;
    transform: translateY(-100%);
    display: none;
}

#schools .schools-dropdown {
    text-align: center;
    background: #f5f3ee;
    color: #18899b;
    font-size: 16px;
    padding: 20px;
    border-left: 3px solid #fff;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    display: table;
    margin: auto;
    text-transform: uppercase;
    writing-mode: vertical-rl;
        text-orientation: mixed;
}

#schools .schools-dropdown .fal {
    padding-right: 10px;
}

#schools .schools-dropdown .far {
    padding-left: 10px;
    transition: 0.4s;
}
/*
#schools:hover .schools-dropdown .far {
    transform: rotate(180deg);
}*/
#schools .schools-dropdown .far {
    transform: rotate(90deg);
    padding-left: 5px;
}

#schools .schools-top {
    width: 0;
    overflow: hidden;
    transition: 0.4s;
    background: #f5f3ee;
    border-left: 3px solid #fff;
    border-right: 3px solid #fff;
    border-top: 3px solid #fff;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 10px;
    display: flex;
    align-items: center;
    margin-left:-30px;

    opacity: 1;
}

#schools .schools-top img {
    height: 80px;
    display: block;
    margin: auto;
    transition: 0.3s;
}

#schools .schools-top .school-link {
    background: #fbfefb;
    padding: 10px;
    border: 2px solid #fff;
    border-radius: 8px;
    display: block;
}

#schools .school-link:hover img {
    transform: scale(1.1);
}

#schools .schools-flex{
    flex-direction: column;
}
#schools .cat-head{
    width: 40px;
    display: inline-block;
    margin-bottom:10px;
}

@media(min-width: 1024px) {
    #schools {
        display: flex;
    }

    #schools .schools-top img {
        height: 40px;
    }

    
        #schools:hover .schools-top {
            width: 110px;
            margin-left: 0px;
        }
        /*#schools:hover .schools-dropdown .far {
            transform: rotate(270deg);
        }*/
        #schools:hover .schools-dropdown {
            border-left: none;
        }
}
.fail{
	padding: 10px;
	color: #fff;
	font-size: 18px;
	background: #c31414;
	text-align: center;
}
.success{
	padding: 10px;
	color: #fff;
	font-size: 18px;
	background: #80b11a;
	text-align: center;
}
.cookiepolicy{
    text-align: center;
    height: 100%;
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    z-index: 999;
    top: 0;
	display: block;
}
.cookiepolicy .inner{
	position: fixed;
    width: 500px;
    margin-top: 300px;
    left: calc(50% - 250px);
    padding: 10px;
    background: white;
    border: 2px solid #fff;
    border-radius: 8px;
}

.cookiepolicy .inner h2{
	color: #6c6a1f;
	margin-top: 0;
}

.cookiepolicy .inner p{
	color: #000;
    text-align: center;
    font-size: 16px;
}

.cookiepolicy .inner .accept{
	display: inline-block;
    background: #b0c26a;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
	color: #ffffff;
    font-weight: normal;
	cursor: pointer;
	text-decoration:none;
}

.cookiepolicy .inner .decline{
	display: inline-block;
    background: black;
    padding: 15px;
    border-radius: 8px;
    font-size: 16px;
	color: #ffffff !important;
    font-weight: normal;
	text-decoration:none;
}

.cookiepolicy .inner .decline.read_more{
	background: none;
    color: #6c6a1f !important;
    padding: 0;
}

.cookiepolicy .inner .decline .read_more:hover{
	color: #000;
}

.review-cookiepolicy{
	text-align: center;
    padding: 10px;
    background: #fff;
    position: fixed;
    z-index: 999;
    width: 100%;
}

.review-cookiepolicy h3{
	margin: 0;
	color:#6c6a1f;
	font-size:20px;
}

.review-cookiepolicy h3 span{
	padding: 5px 10px;
    background: #6c6a1f;
    color: #fff;
    border-radius: 8px;
	cursor: pointer;
}
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}/*
! tailwindcss v3.4.14 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}
  html,
  body {
    font-family: "Be Vietnam Pro", sans-serif;
  }
  * {
    box-sizing: border-box;
  }

.container {
  width: 100%;
}

@media (min-width: 640px) {

  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {

  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {

  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {

  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {

  .container {
    max-width: 1536px;
  }
}

.prose {
  color: #2f3335;
  max-width: 65ch;
}

.prose :where([class~="lead"]):not(:where([class~="not-prose"] *)) {
  color: var(--tw-prose-lead);
  font-size: 1.25em;
  line-height: 1.6;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}

.prose :where(a):not(:where([class~="not-prose"] *)) {
  color: #b0c26a;
  text-decoration: none;
  font-weight: 500;
}

.prose :where(a):not(:where([class~="not-prose"] *)):hover {
  text-decoration: underline;
}

.prose :where(strong):not(:where([class~="not-prose"] *)) {
  color: var(--tw-prose-bold);
  font-weight: 600;
}

.prose :where(a strong):not(:where([class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(blockquote strong):not(:where([class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(thead th strong):not(:where([class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(ol):not(:where([class~="not-prose"] *)) {
  list-style-type: decimal;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 1.625em;
  font-size: 18px;
  padding: 0 0 0 2.625em;
}

.prose :where(ol[type="A"]):not(:where([class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}

.prose :where(ol[type="a"]):not(:where([class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}

.prose :where(ol[type="A" s]):not(:where([class~="not-prose"] *)) {
  list-style-type: upper-alpha;
}

.prose :where(ol[type="a" s]):not(:where([class~="not-prose"] *)) {
  list-style-type: lower-alpha;
}

.prose :where(ol[type="I"]):not(:where([class~="not-prose"] *)) {
  list-style-type: upper-roman;
}

.prose :where(ol[type="i"]):not(:where([class~="not-prose"] *)) {
  list-style-type: lower-roman;
}

.prose :where(ol[type="I" s]):not(:where([class~="not-prose"] *)) {
  list-style-type: upper-roman;
}

.prose :where(ol[type="i" s]):not(:where([class~="not-prose"] *)) {
  list-style-type: lower-roman;
}

.prose :where(ol[type="1"]):not(:where([class~="not-prose"] *)) {
  list-style-type: decimal;
}

.prose :where(ul):not(:where([class~="not-prose"] *)) {
  list-style-type: disc;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  padding-left: 1.625em;
  font-size: 18px;
  padding: 0 0 0 3em;
}

.prose :where(ol > li):not(:where([class~="not-prose"] *))::marker {
  font-weight: 400;
  color: var(--tw-prose-counters);
}

.prose :where(ul > li):not(:where([class~="not-prose"] *))::marker {
  color: var(--tw-prose-bullets);
}

.prose :where(hr):not(:where([class~="not-prose"] *)) {
  border-color: var(--tw-prose-hr);
  border-top-width: 1px;
  margin-top: 3em;
  margin-bottom: 3em;
}

.prose :where(blockquote):not(:where([class~="not-prose"] *)) {
  font-weight: 500;
  font-style: italic;
  color: var(--tw-prose-quotes);
  border-left-width: 0.25rem;
  border-left-color: var(--tw-prose-quote-borders);
  quotes: "\201C""\201D""\2018""\2019";
  margin-top: 1.6em;
  margin-bottom: 1.6em;
  padding-left: 1em;
}

.prose :where(blockquote p:first-of-type):not(:where([class~="not-prose"] *))::before {
  content: open-quote;
}

.prose :where(blockquote p:last-of-type):not(:where([class~="not-prose"] *))::after {
  content: close-quote;
}

.prose :where(h1):not(:where([class~="not-prose"] *)) {
  color: #6c6a1f;
  font-weight: 500;
  font-size: 40px;
  margin-top: 0;
  margin-bottom: 0.8888889em;
  line-height: 1.1111111;
  letter-spacing: 0.05em;
  text-underline-offset: 12px;
  -webkit-text-decoration: underline #b0c26a;
          text-decoration: underline #b0c26a;
}

.prose :where(h1 strong):not(:where([class~="not-prose"] *)) {
  font-weight: 900;
  color: inherit;
}

.prose :where(h2):not(:where([class~="not-prose"] *)) {
  color: #6c6a1f;
  font-weight: 700;
  font-size: 1.5em;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.3333333;
}

.prose :where(h2 strong):not(:where([class~="not-prose"] *)) {
  font-weight: 800;
  color: inherit;
}

.prose :where(h3):not(:where([class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  font-size: 1.25em;
  margin-top: 1.6em;
  margin-bottom: 0.6em;
  line-height: 1.6;
}

.prose :where(h3 strong):not(:where([class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}

.prose :where(h4):not(:where([class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.5;
}

.prose :where(h4 strong):not(:where([class~="not-prose"] *)) {
  font-weight: 700;
  color: inherit;
}

.prose :where(img):not(:where([class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose :where(figure > *):not(:where([class~="not-prose"] *)) {
  margin-top: 0;
  margin-bottom: 0;
}

.prose :where(figcaption):not(:where([class~="not-prose"] *)) {
  color: var(--tw-prose-captions);
  font-size: 0.875em;
  line-height: 1.4285714;
  margin-top: 0.8571429em;
}

.prose :where(code):not(:where([class~="not-prose"] *)) {
  color: var(--tw-prose-code);
  font-weight: 600;
  font-size: 0.875em;
}

.prose :where(code):not(:where([class~="not-prose"] *))::before {
  content: "`";
}

.prose :where(code):not(:where([class~="not-prose"] *))::after {
  content: "`";
}

.prose :where(a code):not(:where([class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(h1 code):not(:where([class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(h2 code):not(:where([class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.875em;
}

.prose :where(h3 code):not(:where([class~="not-prose"] *)) {
  color: inherit;
  font-size: 0.9em;
}

.prose :where(h4 code):not(:where([class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(blockquote code):not(:where([class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(thead th code):not(:where([class~="not-prose"] *)) {
  color: inherit;
}

.prose :where(pre):not(:where([class~="not-prose"] *)) {
  color: var(--tw-prose-pre-code);
  background-color: var(--tw-prose-pre-bg);
  overflow-x: auto;
  font-weight: 400;
  font-size: 0.875em;
  line-height: 1.7142857;
  margin-top: 1.7142857em;
  margin-bottom: 1.7142857em;
  border-radius: 0.375rem;
  padding-top: 0.8571429em;
  padding-right: 1.1428571em;
  padding-bottom: 0.8571429em;
  padding-left: 1.1428571em;
}

.prose :where(pre code):not(:where([class~="not-prose"] *)) {
  background-color: transparent;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-weight: inherit;
  color: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: inherit;
}

.prose :where(pre code):not(:where([class~="not-prose"] *))::before {
  content: none;
}

.prose :where(pre code):not(:where([class~="not-prose"] *))::after {
  content: none;
}

.prose :where(table):not(:where([class~="not-prose"] *)) {
  width: 100%;
  table-layout: auto;
  text-align: left;
  margin-top: 2em;
  margin-bottom: 2em;
  font-size: 0.875em;
  line-height: 1.7142857;
}

.prose :where(thead):not(:where([class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-th-borders);
}

.prose :where(thead th):not(:where([class~="not-prose"] *)) {
  color: var(--tw-prose-headings);
  font-weight: 600;
  vertical-align: bottom;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}

.prose :where(tbody tr):not(:where([class~="not-prose"] *)) {
  border-bottom-width: 1px;
  border-bottom-color: var(--tw-prose-td-borders);
}

.prose :where(tbody tr:last-child):not(:where([class~="not-prose"] *)) {
  border-bottom-width: 0;
}

.prose :where(tbody td):not(:where([class~="not-prose"] *)) {
  vertical-align: baseline;
}

.prose :where(tfoot):not(:where([class~="not-prose"] *)) {
  border-top-width: 1px;
  border-top-color: var(--tw-prose-th-borders);
}

.prose :where(tfoot td):not(:where([class~="not-prose"] *)) {
  vertical-align: top;
}

.prose {
  --tw-prose-body: #374151;
  --tw-prose-headings: #111827;
  --tw-prose-lead: #4b5563;
  --tw-prose-links: #111827;
  --tw-prose-bold: #111827;
  --tw-prose-counters: #6b7280;
  --tw-prose-bullets: #d1d5db;
  --tw-prose-hr: #e5e7eb;
  --tw-prose-quotes: #111827;
  --tw-prose-quote-borders: #e5e7eb;
  --tw-prose-captions: #6b7280;
  --tw-prose-code: #111827;
  --tw-prose-pre-code: #e5e7eb;
  --tw-prose-pre-bg: #1f2937;
  --tw-prose-th-borders: #d1d5db;
  --tw-prose-td-borders: #e5e7eb;
  --tw-prose-invert-body: #d1d5db;
  --tw-prose-invert-headings: #fff;
  --tw-prose-invert-lead: #9ca3af;
  --tw-prose-invert-links: #fff;
  --tw-prose-invert-bold: #fff;
  --tw-prose-invert-counters: #9ca3af;
  --tw-prose-invert-bullets: #4b5563;
  --tw-prose-invert-hr: #374151;
  --tw-prose-invert-quotes: #f3f4f6;
  --tw-prose-invert-quote-borders: #374151;
  --tw-prose-invert-captions: #9ca3af;
  --tw-prose-invert-code: #fff;
  --tw-prose-invert-pre-code: #d1d5db;
  --tw-prose-invert-pre-bg: rgb(0 0 0 / 50%);
  --tw-prose-invert-th-borders: #4b5563;
  --tw-prose-invert-td-borders: #374151;
  font-size: 1rem;
  line-height: 1.75;
}

.prose :where(p):not(:where([class~="not-prose"] *)) {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  font-size: 18px;
}

.prose :where(video):not(:where([class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose :where(figure):not(:where([class~="not-prose"] *)) {
  margin-top: 2em;
  margin-bottom: 2em;
}

.prose :where(li):not(:where([class~="not-prose"] *)) {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.prose :where(ol > li):not(:where([class~="not-prose"] *)) {
  padding-left: 0.375em;
}

.prose :where(ul > li):not(:where([class~="not-prose"] *)) {
  padding-left: 0.375em;
}

.prose :where(.prose > ul > li p):not(:where([class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

.prose :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"] *)) {
  margin-top: 1.25em;
}

.prose :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}

.prose :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"] *)) {
  margin-top: 1.25em;
}

.prose :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}

.prose :where(ul ul, ul ol, ol ul, ol ol):not(:where([class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

.prose :where(hr + *):not(:where([class~="not-prose"] *)) {
  margin-top: 0;
}

.prose :where(h2 + *):not(:where([class~="not-prose"] *)) {
  margin-top: 0;
}

.prose :where(h3 + *):not(:where([class~="not-prose"] *)) {
  margin-top: 0;
}

.prose :where(h4 + *):not(:where([class~="not-prose"] *)) {
  margin-top: 0;
}

.prose :where(thead th:first-child):not(:where([class~="not-prose"] *)) {
  padding-left: 0;
}

.prose :where(thead th:last-child):not(:where([class~="not-prose"] *)) {
  padding-right: 0;
}

.prose :where(tbody td, tfoot td):not(:where([class~="not-prose"] *)) {
  padding-top: 0.5714286em;
  padding-right: 0.5714286em;
  padding-bottom: 0.5714286em;
  padding-left: 0.5714286em;
}

.prose :where(tbody td:first-child, tfoot td:first-child):not(:where([class~="not-prose"] *)) {
  padding-left: 0;
}

.prose :where(tbody td:last-child, tfoot td:last-child):not(:where([class~="not-prose"] *)) {
  padding-right: 0;
}

.prose :where(.prose > :first-child):not(:where([class~="not-prose"] *)) {
  margin-top: 0;
}

.prose :where(.prose > :last-child):not(:where([class~="not-prose"] *)) {
  margin-bottom: 0;
}

.prose :where(table:not(.fc table)):not(:where([class~="not-prose"] *)) {
  font-size: 18px;
  border: initial;
}

.prose :where(tr:not(:where([class^="fc-"]))):not(:where([class~="not-prose"] *)) {
  border: revert-layer;
}

.prose :where(th:not(:where([class^="fc-"]))):not(:where([class~="not-prose"] *)) {
  border: revert-layer;
}

.prose :where(td:not(.fc-widget-content)):not(:where([class~="not-prose"] *)) {
  border: revert-layer;
}

.prose-sm :where(.prose > ul > li p):not(:where([class~="not-prose"] *)) {
  margin-top: 0.5714286em;
  margin-bottom: 0.5714286em;
}

.prose-sm :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"] *)) {
  margin-top: 1.1428571em;
}

.prose-sm :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"] *)) {
  margin-bottom: 1.1428571em;
}

.prose-sm :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"] *)) {
  margin-top: 1.1428571em;
}

.prose-sm :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"] *)) {
  margin-bottom: 1.1428571em;
}

.prose-sm :where(.prose > :first-child):not(:where([class~="not-prose"] *)) {
  margin-top: 0;
}

.prose-sm :where(.prose > :last-child):not(:where([class~="not-prose"] *)) {
  margin-bottom: 0;
}

.prose-base :where(.prose > ul > li p):not(:where([class~="not-prose"] *)) {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
}

.prose-base :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"] *)) {
  margin-top: 1.25em;
}

.prose-base :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}

.prose-base :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"] *)) {
  margin-top: 1.25em;
}

.prose-base :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"] *)) {
  margin-bottom: 1.25em;
}

.prose-base :where(.prose > :first-child):not(:where([class~="not-prose"] *)) {
  margin-top: 0;
}

.prose-base :where(.prose > :last-child):not(:where([class~="not-prose"] *)) {
  margin-bottom: 0;
}

.prose-lg :where(.prose > ul > li p):not(:where([class~="not-prose"] *)) {
  margin-top: 0.8888889em;
  margin-bottom: 0.8888889em;
}

.prose-lg :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"] *)) {
  margin-top: 1.3333333em;
}

.prose-lg :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"] *)) {
  margin-bottom: 1.3333333em;
}

.prose-lg :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"] *)) {
  margin-top: 1.3333333em;
}

.prose-lg :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"] *)) {
  margin-bottom: 1.3333333em;
}

.prose-lg :where(.prose > :first-child):not(:where([class~="not-prose"] *)) {
  margin-top: 0;
}

.prose-lg :where(.prose > :last-child):not(:where([class~="not-prose"] *)) {
  margin-bottom: 0;
}

.prose-xl :where(.prose > ul > li p):not(:where([class~="not-prose"] *)) {
  margin-top: 0.8em;
  margin-bottom: 0.8em;
}

.prose-xl :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"] *)) {
  margin-top: 1.2em;
}

.prose-xl :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"] *)) {
  margin-bottom: 1.2em;
}

.prose-xl :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"] *)) {
  margin-top: 1.2em;
}

.prose-xl :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"] *)) {
  margin-bottom: 1.2em;
}

.prose-xl :where(.prose > :first-child):not(:where([class~="not-prose"] *)) {
  margin-top: 0;
}

.prose-xl :where(.prose > :last-child):not(:where([class~="not-prose"] *)) {
  margin-bottom: 0;
}

.prose-2xl :where(.prose > ul > li p):not(:where([class~="not-prose"] *)) {
  margin-top: 0.8333333em;
  margin-bottom: 0.8333333em;
}

.prose-2xl :where(.prose > ul > li > *:first-child):not(:where([class~="not-prose"] *)) {
  margin-top: 1.3333333em;
}

.prose-2xl :where(.prose > ul > li > *:last-child):not(:where([class~="not-prose"] *)) {
  margin-bottom: 1.3333333em;
}

.prose-2xl :where(.prose > ol > li > *:first-child):not(:where([class~="not-prose"] *)) {
  margin-top: 1.3333333em;
}

.prose-2xl :where(.prose > ol > li > *:last-child):not(:where([class~="not-prose"] *)) {
  margin-bottom: 1.3333333em;
}

.prose-2xl :where(.prose > :first-child):not(:where([class~="not-prose"] *)) {
  margin-top: 0;
}

.prose-2xl :where(.prose > :last-child):not(:where([class~="not-prose"] *)) {
  margin-bottom: 0;
}
.visible {
  visibility: visible;
}
.invisible {
  visibility: hidden;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.inset-0 {
  inset: 0px;
}
.bottom-0 {
  bottom: 0px;
}
.bottom-10 {
  bottom: 2.5rem;
}
.bottom-4 {
  bottom: 1rem;
}
.bottom-\[-180px\] {
  bottom: -180px;
}
.bottom-\[-2px\] {
  bottom: -2px;
}
.bottom-\[120px\] {
  bottom: 120px;
}
.bottom-\[40px\] {
  bottom: 40px;
}
.left-0 {
  left: 0px;
}
.left-2 {
  left: 0.5rem;
}
.left-28 {
  left: 7rem;
}
.left-32 {
  left: 8rem;
}
.left-\[-270px\] {
  left: -270px;
}
.left-\[-302px\] {
  left: -302px;
}
.right-0 {
  right: 0px;
}
.right-6 {
  right: 1.5rem;
}
.right-8 {
  right: 2rem;
}
.right-\[100px\] {
  right: 100px;
}
.right-\[4px\] {
  right: 4px;
}
.top-0 {
  top: 0px;
}
.top-16 {
  top: 4rem;
}
.top-24 {
  top: 6rem;
}
.top-4 {
  top: 1rem;
}
.top-\[-6px\] {
  top: -6px;
}
.top-\[140px\] {
  top: 140px;
}
.top-\[28px\] {
  top: 28px;
}
.z-0 {
  z-index: 0;
}
.z-10 {
  z-index: 10;
}
.z-20 {
  z-index: 20;
}
.z-50 {
  z-index: 50;
}
.z-\[800\] {
  z-index: 800;
}
.z-\[998\] {
  z-index: 998;
}
.z-\[999\] {
  z-index: 999;
}
.col-start-1 {
  grid-column-start: 1;
}
.float-right {
  float: right;
}
.m-\[15px\] {
  margin: 15px;
}
.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-\[-34px\] {
  margin-bottom: -34px;
}
.ml-10 {
  margin-left: 2.5rem;
}
.ml-11 {
  margin-left: 2.75rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-6 {
  margin-left: 1.5rem;
}
.ml-\[10px\] {
  margin-left: 10px;
}
.mr-4 {
  margin-right: 1rem;
}
.mr-5 {
  margin-right: 1.25rem;
}
.mr-6 {
  margin-right: 1.5rem;
}
.mr-7 {
  margin-right: 1.75rem;
}
.mr-\[-15px\] {
  margin-right: -15px;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mt-20 {
  margin-top: 5rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-\[-4px\] {
  margin-top: -4px;
}
.line-clamp-1 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.line-clamp-4 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
.block {
  display: block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.h-0 {
  height: 0px;
}
.h-1 {
  height: 0.25rem;
}
.h-\[100px\] {
  height: 100px;
}
.h-\[120px\] {
  height: 120px;
}
.h-\[1px\] {
  height: 1px;
}
.h-\[250px\] {
  height: 250px;
}
.h-\[300px\] {
  height: 300px;
}
.h-\[350px\] {
  height: 350px;
}
.h-\[4px\] {
  height: 4px;
}
.h-\[50px\] {
  height: 50px;
}
.h-\[72px\] {
  height: 72px;
}
.h-\[90px\] {
  height: 90px;
}
.h-\[96px\] {
  height: 96px;
}
.h-full {
  height: 100%;
}
.h-screen {
  height: 100vh;
}
.max-h-\[120px\] {
  max-height: 120px;
}
.w-0 {
  width: 0px;
}
.w-10 {
  width: 2.5rem;
}
.w-\[100px\] {
  width: 100px;
}
.w-\[190px\] {
  width: 190px;
}
.w-\[270px\] {
  width: 270px;
}
.w-\[300px\] {
  width: 300px;
}
.w-\[330px\] {
  width: 330px;
}
.w-\[380px\] {
  width: 380px;
}
.w-\[40\%\] {
  width: 40%;
}
.w-\[450px\] {
  width: 450px;
}
.w-\[50px\] {
  width: 50px;
}
.w-\[calc\(100\%\+8px\)\] {
  width: calc(100% + 8px);
}
.w-\[calc\(100\%-34px\)\] {
  width: calc(100% - 34px);
}
.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}
.w-full {
  width: 100%;
}
.w-screen {
  width: 100vw;
}
.max-w-full {
  max-width: 100%;
}
.max-w-none {
  max-width: none;
}
.flex-grow {
  flex-grow: 1;
}
.rotate-180 {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.rotate-\[315deg\] {
  --tw-rotate: 315deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.flex-row-reverse {
  flex-direction: row-reverse;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.justify-start {
  justify-content: flex-start;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-5 {
  gap: 1.25rem;
}
.gap-y-5 {
  row-gap: 1.25rem;
}
.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}
.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-y-scroll {
  overflow-y: scroll;
}
.text-ellipsis {
  text-overflow: ellipsis;
}
.rounded-3xl {
  border-radius: 1.5rem;
}
.rounded-r-\[30px\] {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}
.border {
  border-width: 1px;
}
.border-2 {
  border-width: 2px;
}
.border-8 {
  border-width: 8px;
}
.border-b-4 {
  border-bottom-width: 4px;
}
.border-l-0 {
  border-left-width: 0px;
}
.border-r-2 {
  border-right-width: 2px;
}
.border-none {
  border-style: none;
}
.border-\[\#18899b\] {
  --tw-border-opacity: 1;
  border-color: rgb(24 137 155 / var(--tw-border-opacity));
}
.border-gray-200 {
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity));
}
.border-primary {
  --tw-border-opacity: 1;
  border-color: rgb(176 194 106 / var(--tw-border-opacity));
}
.border-secondary {
  --tw-border-opacity: 1;
  border-color: rgb(108 106 31 / var(--tw-border-opacity));
}
.border-transparent {
  border-color: transparent;
}
.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
}
.border-b-primary {
  --tw-border-opacity: 1;
  border-bottom-color: rgb(176 194 106 / var(--tw-border-opacity));
}
.bg-\[\#18899b\] {
  --tw-bg-opacity: 1;
  background-color: rgb(24 137 155 / var(--tw-bg-opacity));
}
.bg-\[\#f5f3ee\] {
  --tw-bg-opacity: 1;
  background-color: rgb(245 243 238 / var(--tw-bg-opacity));
}
.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}
.bg-primary {
  --tw-bg-opacity: 1;
  background-color: rgb(176 194 106 / var(--tw-bg-opacity));
}
.bg-secondary {
  --tw-bg-opacity: 1;
  background-color: rgb(108 106 31 / var(--tw-bg-opacity));
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.bg-opacity-10 {
  --tw-bg-opacity: 0.1;
}
.bg-opacity-50 {
  --tw-bg-opacity: 0.5;
}
.bg-opacity-80 {
  --tw-bg-opacity: 0.8;
}
.bg-\[url\(\'\.\.\/\.\.\/img\/gallery_bg\.jpg\'\)\] {
  background-image: url('../../img/gallery_bg.jpg');
}
.bg-gradient-to-b {
  background-image: linear-gradient(to bottom, var(--tw-gradient-stops));
}
.from-\[rgba\(0\2c 0\2c 0\2c 0\.25\)\] {
  --tw-gradient-from: rgba(0,0,0,0.25) var(--tw-gradient-from-position);
  --tw-gradient-to: rgba(0, 0, 0, 0) var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.via-transparent {
  --tw-gradient-to: rgb(0 0 0 / 0)  var(--tw-gradient-to-position);
  --tw-gradient-stops: var(--tw-gradient-from), transparent var(--tw-gradient-via-position), var(--tw-gradient-to);
}
.to-\[rgba\(0\2c 0\2c 0\2c 0\.25\)\] {
  --tw-gradient-to: rgba(0,0,0,0.25) var(--tw-gradient-to-position);
}
.bg-cover {
  background-size: cover;
}
.bg-fixed {
  background-attachment: fixed;
}
.bg-center {
  background-position: center;
}
.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-0 {
  padding: 0px;
}
.p-10 {
  padding: 2.5rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-5 {
  padding: 1.25rem;
}
.p-8 {
  padding: 2rem;
}
.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.py-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.pb-10 {
  padding-bottom: 2.5rem;
}
.pb-2 {
  padding-bottom: 0.5rem;
}
.pb-20 {
  padding-bottom: 5rem;
}
.pb-24 {
  padding-bottom: 6rem;
}
.pb-5 {
  padding-bottom: 1.25rem;
}
.pb-6 {
  padding-bottom: 1.5rem;
}
.pb-\[-4px\] {
  padding-bottom: -4px;
}
.pb-\[62px\] {
  padding-bottom: 62px;
}
.pl-0 {
  padding-left: 0px;
}
.pl-14 {
  padding-left: 3.5rem;
}
.pr-4 {
  padding-right: 1rem;
}
.pt-1 {
  padding-top: 0.25rem;
}
.pt-10 {
  padding-top: 2.5rem;
}
.pt-12 {
  padding-top: 3rem;
}
.pt-20 {
  padding-top: 5rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-5 {
  padding-top: 1.25rem;
}
.pt-8 {
  padding-top: 2rem;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.font-serif {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
}
.text-\[14px\] {
  font-size: 14px;
}
.text-\[16px\] {
  font-size: 16px;
}
.text-\[18px\] {
  font-size: 18px;
}
.text-\[20px\] {
  font-size: 20px;
}
.text-\[22px\] {
  font-size: 22px;
}
.text-\[24px\] {
  font-size: 24px;
}
.text-\[28px\] {
  font-size: 28px;
}
.text-\[30px\] {
  font-size: 30px;
}
.text-\[32px\] {
  font-size: 32px;
}
.text-\[35px\] {
  font-size: 35px;
}
.text-\[40px\] {
  font-size: 40px;
}
.text-\[50px\] {
  font-size: 50px;
}
.text-\[55px\] {
  font-size: 55px;
}
.text-\[68px\] {
  font-size: 68px;
}
.text-\[80px\] {
  font-size: 80px;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.font-normal {
  font-weight: 400;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.not-italic {
  font-style: normal;
}
.leading-\[0\] {
  line-height: 0;
}
.leading-loose {
  line-height: 2;
}
.leading-none {
  line-height: 1;
}
.leading-relaxed {
  line-height: 1.625;
}
.leading-snug {
  line-height: 1.375;
}
.tracking-wide {
  letter-spacing: 0.025em;
}
.tracking-wider {
  letter-spacing: 0.05em;
}
.text-\[\#18899b\] {
  --tw-text-opacity: 1;
  color: rgb(24 137 155 / var(--tw-text-opacity));
}
.text-\[\#2f3335\] {
  --tw-text-opacity: 1;
  color: rgb(47 51 53 / var(--tw-text-opacity));
}
.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.text-primary {
  --tw-text-opacity: 1;
  color: rgb(176 194 106 / var(--tw-text-opacity));
}
.text-secondary {
  --tw-text-opacity: 1;
  color: rgb(108 106 31 / var(--tw-text-opacity));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.no-underline {
  -webkit-text-decoration-line: none;
          text-decoration-line: none;
}
.decoration-primary {
  -webkit-text-decoration-color: #b0c26a;
          text-decoration-color: #b0c26a;
}
.underline-offset-8 {
  text-underline-offset: 8px;
}
.opacity-0 {
  opacity: 0;
}
.opacity-100 {
  opacity: 1;
}
.brightness-75 {
  --tw-brightness: brightness(.75);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.brightness-90 {
  --tw-brightness: brightness(.9);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.transition-\[left\] {
  transition-property: left;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[margin\] {
  transition-property: margin;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-\[top\] {
  transition-property: top;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.duration-300 {
  transition-duration: 300ms;
}
.duration-500 {
  transition-duration: 500ms;
}
.duration-700 {
  transition-duration: 700ms;
}
.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.\[writing-mode\:vertical-lr\] {
  writing-mode: vertical-lr;
}

.hover\:cursor-pointer:hover {
  cursor: pointer;
}

.hover\:border-\[\#18899b\]:hover {
  --tw-border-opacity: 1;
  border-color: rgb(24 137 155 / var(--tw-border-opacity));
}

.hover\:font-bold:hover {
  font-weight: 700;
}

.hover\:font-semibold:hover {
  font-weight: 600;
}

.hover\:text-primary:hover {
  --tw-text-opacity: 1;
  color: rgb(176 194 106 / var(--tw-text-opacity));
}

.hover\:text-secondary:hover {
  --tw-text-opacity: 1;
  color: rgb(108 106 31 / var(--tw-text-opacity));
}

.hover\:underline:hover {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

.hover\:no-underline:hover {
  -webkit-text-decoration-line: none;
          text-decoration-line: none;
}

.hover\:brightness-90:hover {
  --tw-brightness: brightness(.9);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.group:hover .group-hover\:bottom-0 {
  bottom: 0px;
}

.group:hover .group-hover\:left-0 {
  left: 0px;
}

.group:hover .group-hover\:left-16 {
  left: 4rem;
}

.group:hover .group-hover\:left-24 {
  left: 6rem;
}

.group:hover .group-hover\:top-0 {
  top: 0px;
}

.group:hover .group-hover\:mb-4 {
  margin-bottom: 1rem;
}

.group:hover .group-hover\:mr-6 {
  margin-right: 1.5rem;
}

.group:hover .group-hover\:w-\[160px\] {
  width: 160px;
}

.group:hover .group-hover\:rotate-\[360deg\] {
  --tw-rotate: 360deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:scale-110 {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.group:hover .group-hover\:border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
}

.group:hover .group-hover\:text-primary {
  --tw-text-opacity: 1;
  color: rgb(176 194 106 / var(--tw-text-opacity));
}

.group:hover .group-hover\:text-secondary {
  --tw-text-opacity: 1;
  color: rgb(108 106 31 / var(--tw-text-opacity));
}

.group:hover .group-hover\:text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}

.group:hover .group-hover\:brightness-50 {
  --tw-brightness: brightness(.5);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.group:hover .group-hover\:brightness-\[0\.4\] {
  --tw-brightness: brightness(0.4);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.group.modalopen .group-\[\.modalopen\]\:h-full {
  height: 100%;
}

.group.modalopen .group-\[\.modalopen\]\:p-10 {
  padding: 2.5rem;
}

.group.modalopen .group-\[\.modalopen\]\:pb-0 {
  padding-bottom: 0px;
}

.group.modalopen .group-\[\.modalopen\]\:opacity-100 {
  opacity: 1;
}

.group.modalopen .group-\[\.modalopen\]\:delay-500 {
  transition-delay: 500ms;
}

.group.modalopen .group-\[\.modalopen\]\:delay-\[1100ms\] {
  transition-delay: 1100ms;
}

.group.modalopen .group-\[\.modalopen\]\:delay-\[1300ms\] {
  transition-delay: 1300ms;
}

.group.modalopen .group-\[\.modalopen\]\:delay-\[1500ms\] {
  transition-delay: 1500ms;
}

.group.modalopen .group-\[\.modalopen\]\:delay-\[1700ms\] {
  transition-delay: 1700ms;
}

.group.modalopen .group-\[\.modalopen\]\:delay-\[1900ms\] {
  transition-delay: 1900ms;
}

.group.modalopen .group-\[\.modalopen\]\:delay-\[2100ms\] {
  transition-delay: 2100ms;
}

.group.modalopen .group-\[\.modalopen\]\:delay-\[2300ms\] {
  transition-delay: 2300ms;
}

.group.modalopen .group-\[\.modalopen\]\:delay-\[2500ms\] {
  transition-delay: 2500ms;
}

.group.modalopen .group-\[\.modalopen\]\:delay-\[2700ms\] {
  transition-delay: 2700ms;
}

.group.modalopen .group-\[\.modalopen\]\:delay-\[700ms\] {
  transition-delay: 700ms;
}

.group.modalopen .group-\[\.modalopen\]\:delay-\[900ms\] {
  transition-delay: 900ms;
}

.group.modalopen .group-\[\.modalopen\]\:duration-300 {
  transition-duration: 300ms;
}

.group.modalopen .group-\[\.modalopen\]\:duration-700 {
  transition-duration: 700ms;
}

.group-two:hover .group-two-hover\:mr-6 {
  margin-right: 1.5rem;
}

@media (min-width: 640px) {

  .sm\:right-8 {
    right: 2rem;
  }

  .sm\:top-8 {
    top: 2rem;
  }

  .sm\:top-\[10\%\] {
    top: 10%;
  }

  .sm\:mr-6 {
    margin-right: 1.5rem;
  }

  .sm\:mt-20 {
    margin-top: 5rem;
  }

  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:whitespace-nowrap {
    white-space: nowrap;
  }

  .sm\:py-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .sm\:text-left {
    text-align: left;
  }

  .group.modalopen .sm\:group-\[\.modalopen\]\:h-4\/5 {
    height: 80%;
  }
}

@media (min-width: 768px) {

  .md\:flex {
    display: flex;
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {

  .lg\:static {
    position: static;
  }

  .lg\:fixed {
    position: fixed;
  }

  .lg\:absolute {
    position: absolute;
  }

  .lg\:bottom-\[calc\(50\%-150px\)\] {
    bottom: calc(50% - 150px);
  }

  .lg\:top-0 {
    top: 0px;
  }

  .lg\:top-\[-300px\] {
    top: -300px;
  }

  .lg\:m-0 {
    margin: 0px;
  }

  .lg\:block {
    display: block;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:h-\[600px\] {
    height: 600px;
  }

  .lg\:h-min {
    height: -moz-min-content;
    height: min-content;
  }

  .lg\:h-screen {
    height: 100vh;
  }

  .lg\:min-h-\[600px\] {
    min-height: 600px;
  }

  .lg\:w-\[400px\] {
    width: 400px;
  }

  .lg\:w-max {
    width: -moz-max-content;
    width: max-content;
  }

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:justify-end {
    justify-content: flex-end;
  }

  .lg\:justify-between {
    justify-content: space-between;
  }

  .lg\:gap-y-0 {
    row-gap: 0px;
  }

  .lg\:overflow-visible {
    overflow: visible;
  }

  .lg\:border-r-0 {
    border-right-width: 0px;
  }

  .lg\:bg-black {
    --tw-bg-opacity: 1;
    background-color: rgb(0 0 0 / var(--tw-bg-opacity));
  }

  .lg\:bg-transparent {
    background-color: transparent;
  }

  .lg\:bg-opacity-30 {
    --tw-bg-opacity: 0.3;
  }

  .lg\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .lg\:px-20 {
    padding-left: 5rem;
    padding-right: 5rem;
  }

  .lg\:py-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .lg\:pt-0 {
    padding-top: 0px;
  }

  .lg\:pt-10 {
    padding-top: 2.5rem;
  }

  .lg\:text-left {
    text-align: left;
  }

  .lg\:leading-normal {
    line-height: 1.5;
  }

  .lg\:text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }

  .lg\:underline {
    -webkit-text-decoration-line: underline;
            text-decoration-line: underline;
  }
}

@media (min-width: 1280px) {

  .xl\:col-span-3 {
    grid-column: span 3 / span 3;
  }

  .xl\:m-0 {
    margin: 0px;
  }

  .xl\:ml-20 {
    margin-left: 5rem;
  }

  .xl\:block {
    display: block;
  }

  .xl\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .xl\:px-40 {
    padding-left: 10rem;
    padding-right: 10rem;
  }

  .xl\:text-\[22px\] {
    font-size: 22px;
  }

  .xl\:text-\[30px\] {
    font-size: 30px;
  }

  .xl\:text-\[60px\] {
    font-size: 60px;
  }
}

@media (min-width: 1536px) {

  .\32xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

