html {
    scroll-behavior: smooth;
}
body {
    background-color: #fff;
    font-family: 'Montserrat', 'Noto Sans TC', 'sans-serif';
    margin: 0;
    color: #404040;
}
* {
    box-sizing: border-box
}
a {
    text-decoration: none;
}

/*text*/
.display-1 {
    font-size: 42px;
    font-weight: 600;
    line-height: 120%;
    padding-bottom: 20px;
    color: #404040;
}
.heading-1 {
    font-size: 32px;
    font-weight: 600;
    line-height: 120%;
}
.heading-2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 120%;
}
.heading-3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 120%;
}
.heading-4 {
    font-size: 24px;
    font-weight: 300;
    line-height: 120%;
}
.heading-5 {
    font-size: 20px;
    font-weight: 600;
    line-height: 120%;
}
.text-l {
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
}
.text-menu {
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
}
.text-btn {
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
}
.text-md {
    font-size: 16px;
    font-weight: 300;
    line-height: 150%;
}
.text-form {
    font-size: 16px;
    font-weight: 300;
    line-height: 150%;
}
.text-bold {
    font-size: 14px;
    font-weight: 500;
    line-height: 150%;
}
.text-sm {
    font-size: 14px;
    font-weight: 300;
    line-height: 150%;
}
.text-xs {
    font-size: 12px;
    font-weight: 300;
    line-height: 150%;
}
.textShadow {
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
}
@media (max-width: 1024px) {
    .display-1 {
        font-size: 32px;
        font-weight: 600;
        line-height: 120%;
        padding-bottom: 20px;
        color: #404040;
    }
    .heading-1 {
        font-size: 28px;
        font-weight: 600;
        line-height: 120%;
    }
    .heading-2 {
        font-size: 24px;
        font-weight: 600;
        line-height: 120%;
    }
    .heading-3 {
        font-size: 20px;
        font-weight: 600;
        line-height: 120%;
    }
    .heading-4 {
        font-size: 18px;
        font-weight: 300;
        line-height: 120%;
    }
    .text-l {
        font-size: 14px;
        font-weight: 600;
        line-height: 150%;
    }
}

/*button*/
.btn a,
.btn button{
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    width: 150px;
    height: 48px;
    transition: all 0.4s ease;
}
.btn p, .btn img {
    transition: all 0.4s ease;
}
.btn.red a,
.btn.red button{
    background-color: #B7111E;
    border: 1px solid #B7111E;
}
.btn.red a:hover,
.btn.red button:hover {
    background-color: #fff;
    border: 1px solid #404040;
    & >p {
        color: #404040;
    }
}
.menuBtn a:hover {
    & >p {
        transform: translateX(8px);
    }
    & >img {
        display: none;
    }
}
.btn.white a,
.btn.white button{
    border: 1px solid white;
}
.btn.white a:hover,
.btn.white button:hover {
    background-color: rgba(255,255,255,0.3);
}

.loading {
	border-radius: 50px;
	width: 50px !important;
    padding:0 !important;
}
.button.loading::after {
	width: 40px;
	left: 5px;
	top: 12px;
	border-radius: 100%;
}
.spinner {
	display: block;
	width: 34px;
	height: 34px;
	background: transparent;
	box-sizing: border-box;
	border-top: 5px solid white;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 5px solid transparent;
	border-radius: 100%;
	animation: spin 0.6s ease-out infinite;
}
@keyframes spin {
	100% {transform: rotate(360deg)}
}

/*title*/
.titleLeft, .titleCenter {
    position: relative;
    margin-bottom: 20px;
}
.titleLeft:before {
    content: "";
    width: 60px;
    height: 1px;
    background-color: #B7111E;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.titleCenter:before {
    content: "";
    width: 60px;
    height: 1px;
    background-color: #B7111E;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    z-index: 1;
}

/*Header*/
header {
    background-color: #fff;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99;
    box-shadow: 0 0px 10px rgba(0,0,0,0.15);
}
header .wrap {
    width: 100vw;
    padding: 20px 120px;
    align-items: center;
    display: flex;
    justify-content: space-between;
    position: relative;
}
@media (max-width: 1440px) {
    header .wrap {
        padding: 20px 80px;
    }
}
@media (max-width: 1280px) {
    header .wrap {
        padding: 20px 20px;
    }
}
@media (max-width: 768px) {
    header .wrap {
        padding: 12px 20px;
    }
}
.navigation {
    display: flex;
    align-items: center;
}
header .menuBox .menu {
    align-items: center;
    display: flex;
    list-style: none;
}
.menu li {
    position: relative;
    list-style: none;
}
.menu li a {
    padding: 0 24px;
    color: #404040;
    transition: all 0.4s ease;
}
.menu li a:hover {
    color: #B7111E;
}
@media (max-width: 1280px) {
    .menuBox {
        display: none;
    }
}
.funcBox {
    display: flex;
    align-items: center;
    margin-left: 40px;
}
@media (max-width: 1280px) {
    .funcBox .btn {
        display: none;
    }
}
.menuTrigger {
    display: none;
    justify-content: center;
    align-items: center;
    height: 40px;
    cursor: pointer;
}
@media (max-width: 1280px) {
    .menuTrigger {
        display: flex;
    }
}
.menuTrigger .line {
    width: 26px;
    height: 2px;
    background-color: #404040;
    display: inline-block;
    position: relative;
    transition: all 0.4s ease;
}
.line:before, .line:after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: #404040;
    position: absolute;
    z-index: 1;
    transition: all 0.5s;
}
.line:before {
    top: 0;
    left: 0;
    transform: translateY(-7px);
}
.line:after {
    bottom: 0;
    left: 0;
    transform: translateY(7px);
}
.act .line {
    background-color: transparent;
}
.act .line:before {
    transform: rotate(-30deg) translateY(0);
}
.act .line:after {
    transform: rotate(30deg) translateY(0);
}

/*mobilemenu*/
.slideMenu {
    width: 100%;
    height: 0;
    opacity: 0;
    background-color: #FAFAFA;
    overflow: hidden;
    position: fixed;
    right: 0;
    z-index: 99;
    top: 94px;
    border-top: 1px solid #DCDDDD;
    transition: all 0.4s ease;
}
.slideMenuArea {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 60px 60px 40px;
}
@media (max-width: 1280px) {
    .menuOpen {
        height: calc(100vh - 94px);
        opacity: 1;
    }
}
@media (max-width: 768px) {
    .slideMenu{
        top: 66px;
    }
    .menuOpen {
        top: 66px;
        height: calc(100vh - 66px);
    }
}
.menuArea {
    transform: translateY(-30px);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.6s ease;
}
.menuOpen .menuArea {
    transform: translateY(0px);
    opacity: 1;
}

/*banner*/
.banner {
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 768px) {
    .banner {
        background-size: cover;
        background-position: center;
        align-items: start;
        padding-top: 140px;
    }
}

/*marketing*/
.photoArea img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
    width: 100%;
    transition: all 0.5s ease;
}
.photoImg:hover {
    & >img {
        scale: 1.1;
    }
}
.splide {
    visibility: visible;
}
.splide__slide{
    img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
      -o-object-position: top;
         object-position: top;
    }
    padding: 0 5px
}
.splide__arrow {
    background-color: #fff !important;
    border-radius: 0;
    opacity: 0.8;
}
.splide__arrow--prev {
    left: 20px;
}
.splide__arrow--next {
    right: 20px;
}
.splide__pagination {
    display: none;
}

/*case*/
.caseArea {
    background-size: cover;
    background-position: center;
}
.caseArea:before {
    content: "";
    z-index: 0;
    position: absolute;
    right: 64%;
    top: 5%;
    background-color: #B7111E;
    width: 500px;
    height: 500px;
    border-radius: 50%;
}
@media (max-width: 1024px) {
    .caseArea:before {
        display: none;
    }
}
@media (max-width: 1440px) {
    .caseArea:before {
        right: 60%;
        top: -1%;
    }
}
@media (max-width: 1024px) {
    .imgTxt {
        top: 60% !important;
        left: auto !important;
        right: 50% !important;
        transform: translateX(50%) !important;
    }
}
@media (max-width: 768px) {
    .imgTxt {
        top: 68% !important;
        left: auto !important;
        right: 50% !important;
        transform: translateX(50%) !important;
    }
}
.caseContent:before{
    content: "";
    z-index: 0;
    position: absolute;
    right: calc(70% + 340px);
    bottom: 22%;
    background-color: #B7111E;
    width: 72px;
    height: 72px;
    border-radius: 50%;
}
@media (max-width: 1024px) {
    .caseContent:before {
        display: none;
    }
}
@media (max-width: 1440px) {
    .caseContent:before {
        right: calc(67% + 340px);
    }
}
.imgArea:before {
    content: "";
    z-index: 0;
    position: absolute;
    right: 18%;
    bottom: -44%;
    background-color: #B7111E;
    width: 150px;
    height: 150px;
    border-radius: 50%;
}
@media (max-width: 1024px) {
    .imgArea:before {
        display: none;
    }
}
@media (max-width: 1440px) {
    .imgArea:before {
        right: 14%;
        bottom: 17%;
    }
}

/*linklist*/
.linkList {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 420px;
}
.linkText {
    transition: all 0.4s ease;
}
@media (max-width: 1280px) {
    .linkList {
        min-height: 360px;
    }
}
.linkList img{
    filter: brightness(80%);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    transition: all 0.4s ease;
}
.linkList .btn {
    position: absolute;
    opacity: 0;
    transform: translateY(120px);
    transition: all 0.4s ease;
}
@media (max-width: 1024px) {
    .linkList .btn {
        opacity: 1;
        transform: translateY(0);
        position: relative;
    }
}
.linkText {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(0px);
}
.linkText h4:before, .courseText h4:before {
    content: "";
    width: 60px;
    height: 1px;
    background-color: #fff;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    z-index: 1;
}
.linkList:hover {
    & >img {
        filter: brightness(20%);
    }
    & >.linkText {
        transform: translateY(-40px);
    }
    & >.linkText .btn {
        opacity: 1;
        display: block;
    }
}

/*channel*/
.channelArea:before {
    content: "";
    width: 100%;
    height: 80%;
    background-color: #FAFAFA;
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}
.channelsplide_slide {
    img {
      display: block;
      width: 100%;
      transition: transform 400ms;
      transform: scale(.8);
      transform-origin: center center;
    }
}
.channelsplide_slide.is-active {
    img {
      transform: scale(1);
    }
}
.splide__pagination {
    display: flex;
    bottom: -40px;
}
.splide__pagination__page {
    background: #ccc !important;
    border: 0;
    border-radius: 50%;
    display: inline-block;
    height: 6px;
    margin: 5px;
    opacity: 1;
    padding: 0;
    position: relative;
    transition: transform .2s linear;
    width: 6px;
}
.splide__pagination__page.is-active {
    background: #B7111E !important;
    transform: scale(1.4);
    z-index: 1;
}

/*course*/
.courseImg {
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 40px;
    overflow: hidden;
}
.courseImg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.4s ease;
}
.course-f {
    z-index: 1;
}
.courseText {
    position: absolute;
    z-index: 2;
    padding: 40px 60px;
    bottom: 0;
}
.courseTitle:before {
    content: "";
    z-index: 0;
    position: absolute;
    left: 82%;
    top: -32%;
    background-color: #B7111E;
    width: 150px;
    height: 150px;
    border-radius: 50%;
}
.courseImg:hover {
    & >.course-bg {
        filter: brightness(60%);
    }
}
@media (max-width: 1280px) {
    .courseTitle:before {
        display: none;
    }
    .courseTitle h1:before {
        left: 50%;
        transform: translate(-50%);
    }
}
.courseCard:before {
    content: "";
    z-index: 0;
    position: absolute;
    left: 64%;
    top: 14%;
    background-color: #B7111E;
    width: 600px;
    height: 600px;
    border-radius: 50%;
}
@media (max-width: 1280px) {
    .courseCard:before {
        width: 450px;
        height: 450px;
    }
}
@media (max-width: 768px) {
    .courseCard:before {
        display: none;
    }
}
.courseArea:before {
    content: "";
    z-index: 0;
    position: absolute;
    left: 64%;
    bottom: -9%;
    background-color: #B7111E;
    width: 72px;
    height: 72px;
    border-radius: 50%;
}
@media (max-width: 1280px) {
    .courseArea:before {
        display: none;
    }
}

/*contact*/
.contactForm label {
    width: 100%;
}
.contactForm input, .contactForm textarea, .contactForm select {
    width: 100%;
    height: 100%;
    border: 1px solid #D5D6D7;
    border-radius: 4px;
    padding: 7px 13px 7px 13px;
    font-family: 'Noto Sans TC', serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 175%;
    color: #404040;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
.contactForm input:focus, .contactForm textarea:focus, .contactForm select:focus{
    border-color: #B7111E !important;
    box-shadow: none !important;
}
:focus-visible {
    outline:none;
}
.contactForm label:not(:last-child) {
    margin-bottom: 8px;
}
.contactForm textarea {
    height: 140px;
}
select {
    background-color: #fff;
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
::-moz-placeholder {
    color: #404040 !important;
}
::placeholder {
    color: #404040 !important;
}

.page-banner {
    width: 100%;
    height: 420px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.subtitle {
    position: relative;
    padding-bottom: 10px;
}
.subtitle::after {
    content: "";
    width: 60px;
    height: 1px;
    background-color: #B7111E;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}


/* xiaoti */
.top-text {
    color: #497DC8;
}
.top-title {
    font-family: "Bodoni Moda";
    font-style: italic;
}

.flower {
    animation: anime-rotate 6s linear infinite;
}
.flower-2 {
    animation: anime-rotate2 6s linear infinite;
}
@keyframes anime-rotate {
    0%   {transform: rotate(0deg)}
    100% {transform: rotate(360deg)}  
}
@keyframes anime-rotate2 {
    0%   {transform: rotate(0deg)}
    100% {transform: rotate(-360deg)}  
}

.sicial-media-circle {
    transition: all 0.15s ease;
}
.sicial-media-link:hover {
    & .sicial-media-circle {
        width: 44px;
        height: 44px;
    }
}

.about-marquee {
    animation: marquee 8s linear infinite;
}
.about-marquee2 {
    animation: marquee 8s linear infinite;
    animation-delay: 4s;
	right: 100%;
}
@keyframes marquee {
    0% { right: -50%; }
    100% { right: 100%; }
}

.ovalbtn {
    display: flex;
    justify-content: center;
    align-items: center;
}
.ovalbtn:before {
    content: '';
    position: absolute;
    width: 158px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid #497DC8;
    transform: rotate(8deg);
}
.ovalbtn:after {
    content: '';
    position: absolute;
    width: 65px;
    height: 27px;
    right: -36px;
    transition: all 0.2s ease;
}
.blueOval.ovalbtn:after {
    background: url(/images/btn-arrow.svg?6509b4a293850df7b892851a7325f59d);
    background-repeat: no-repeat;
}
.whiteOval.ovalbtn:after {
    background: url(/images/white-oval-arrow.svg?300dc564d0989ece34554ab88ae59250);
    background-repeat: no-repeat;
}
.ovalbtn:hover:after {
    right: -44px;
}
.video-right {
    width: calc(100% - 340px);
}
@media (max-width: 767px) {
    .video-right {
        width: 100%;
    }
}
.videos-marquee {
    animation: marquee2 8s linear infinite;
}
.videos-marquee2 {
    animation: marquee2 8s linear infinite;
    animation-delay: 4s;
	left: 100%;
}
@keyframes marquee2 {
    0% { left: -50%; }
    100% { left: 100%; }
}
.xiaoti-shop {
    background: url(/images/xt-shop-bg.png?b40a0afd524f550a0bddab8a562b1839);
}
.xt-shop-text::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 360px;
    border: 1px solid white;
    border-radius: 50%;
    top: -90px;
}
@media (max-width: 767px) {
    .xt-shop-text::after {
        width: 500px;
        height: 280px;
        top: -50px;
    }
}
.xiaoti-shop h2, .xt-contact h1 {
    font-family: "Bodoni Moda";
}


.phoebe-top {
    background-image: url(/images/phoebe-top-bg.png?878745cb60b8d184953b171ff814b1ae);
    background-position: bottom;
    background-size: cover;
}
.phoebe-top h1 {
    background: linear-gradient(180deg, #EEC8AA 0%, #FBE5D4 50.5%, #D5B297 100%);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-bottom: 20px;
    &::after {
        content: '';
        position: absolute;
        width: 60px;
        height: 1px;
        background: linear-gradient(180deg, #EEC8AA 0%, #FBE5D4 50.5%, #D5B297 100%);
        bottom: 0;
        left: 0;
    }
}
.top-circle-animation {
    right: -20px;
    animation: turn 10s infinite linear;
}
@media (max-width: 1023px) {
    .top-circle-animation {
        right: calc(-13% + 60px);
    }
}
@keyframes turn {
    from {
      transform: rotate(0);
    }
    to {
      transform: rotate(360deg);
    }
}
.job-item {
    padding-left: 20px;
    position: relative;
    color: white;
}
.job-item::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: white;
    top: 50%;
    left: 6px;
}
.job-list .slick-dots {
    display: flex !important;
    margin: 0;
    padding-top: 10px;
    list-style-type: none;
    position: absolute;
    top: 50%;
    right: 20px;
    flex-direction: column;
    gap: 10px;
}
@media (max-width: 1023px) {
    .job-list .slick-dots {
        left: 50%;
        right: 50%;
        bottom: 0;
        top: auto;
        flex-direction: row;
    }
}
@media (max-width: 767px) {
    .job-list .slick-dots {
        bottom: -20px;
    }
}
.job-list button {
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 100%;
    background-color: white;
    opacity: 0.3;
    text-indent: -9999px;
}
.job-list .slick-dots {
    li.slick-active button {
        opacity: 1;
    }
}
.line-title {
    position: relative;
    padding-bottom: 20px;
    &::after {
        content: '';
        position: absolute;
        width: 80px;
        height: 1px;
        background: white;
        bottom: 0;
        left: 0;
    }
}
@media (max-width: 1023px) {
    .line-title::after {
        right: 0;
        margin: auto;
    }
}
.experience-list .slick-dots {
    display: flex !important;
    margin: 0;
    padding-top: 10px;
    list-style-type: none;
    top: 50%;
    right: 20px;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    margin-top: 40px;
}
.experience-list button {
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 100%;
    background-color: white;
    opacity: 0.3;
    text-indent: -9999px;
}
.experience-list .slick-dots {
    li.slick-active button {
        opacity: 1;
    }
}
.shop-list li {
    padding-left: 20px;
    position: relative;
}
.shop-list li::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: white;
    top: 50%;
    left: 6px;
}
.phoebe-btn {
    padding: 8px 30px;
    border: 1px solid #EEC8AA;
    color: #EEC8AA;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 12px 0 12px 0;
    transition: all 0.3s ease;
}
.phoebe-btn:hover {
    border: 1px solid #FEDFC7;
    color: #FEDFC7;
    border-radius: 0px 0px 0px 0px;
}
.phoebe-contact {
    background: url(/images/phoebe-contact-bg.png?f57e2cafb34c5a954bf9bc7eea062f34);
}

.xpower-video .slick-dots {
    display: flex !important;
    margin: 0;
    padding-top: 10px;
    list-style-type: none;
    top: 50%;
    right: 20px;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    margin-top: 40px;
}
.xpower-video button {
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 100%;
    background-color: #EA0029;
    opacity: 0.3;
    text-indent: -9999px;
}
.xpower-video .slick-dots {
    li.slick-active button {
        opacity: 1;
    }
}
.xpower-shop {
    background: url(/images/shop-bg.png?5841135f387eb7b317256ac49696ecf0);
    background-position: center;
}

.jocelyn-top {
    background: url(/images/top-bg.png?94bd096626ad61e4fb97501e9de11e86);
    background-position: center;
    background-size: cover;
}
@media (max-width: 768px) {
    .jocelyn-top {
        background: url(/images/top-bg-m.png?464dbdcbd0a4effbb2fd3e940bd344a2);
        background-position: center;
        background-size: cover;
    }
}
.jocelyn-about {
    background: url(/images/about-bg.png?103606a506ded246893acf9a3c1de8d8);
    background-position: center;
    background-size: cover;
}
@media (max-width: 768px) {
    .jocelyn-about {
        background: white;
    }
}
.jocelyn-about .line-title::after, .jocelyn-video .line-title::after, .jocelyn-shop .line-title::after, .jocelyn-contact .line-title::after {
    background-color: #33433D;
}

.jocelyn-btn {
    padding: 8px 30px;
    border: 1px solid #33433D;
    background: #33433D;
    color: white;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 12px 0 12px 0;
    transition: all 0.3s ease;
}
.jocelyn-btn:hover {
    border: 1px solid #33433D;
    background: transparent;
    color: #33433D;
}
.jocelyn-video {
    background: url(/images/leaf-2.png?313e558f07f4c3fe0fc9ca6e69c95dcc);
    background-size: 380px 430px;
    background-position: bottom left;
    background-repeat: no-repeat;
}
.jocelyn-video-list .slick-dots {
    display: flex !important;
    margin: 0;
    padding-top: 10px;
    list-style-type: none;
    top: 50%;
    right: 20px;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    margin-top: 40px;
}
.jocelyn-video-list button {
    display: block;
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 100%;
    background-color: #33433D;
    opacity: 0.3;
    text-indent: -9999px;
}
.jocelyn-video-list .slick-dots {
    li.slick-active button {
        opacity: 1;
    }
}
.jocelyn-video-arrow {
    position: absolute;
    z-index: 10;
    width: 100%;
    justify-content: space-between;
    display: flex;
    height: -moz-fit-content;
    height: fit-content;
    align-items: center;
    bottom: 110px;
    top: 0;
    margin: auto;
    padding: 0 2.5px 0 5px;
}
.jocelyn-video-arrow button {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 12px 15px;
    height: -moz-fit-content;
    height: fit-content;
}
@media (max-width: 1023px) {
    .jocelyn-video-arrow {
        padding: 0 4.5px 0 5px;
    }
}
@media (max-width: 768px) {
    .jocelyn-video-arrow {
        padding: 0;
    }
}
.jocelyn-contact {
    background-image: url(/images/contact-bg.png?ee84865039d1adc0512580e602411616);
    background-size: cover;
    background-repeat: no-repeat;
}
@media (max-width: 768px) {
    .jocelyn-contact {
        background-image: url(/images/contact-bg-m.png?3dae91eeab8651c27d7ec1888057ac50);
    }
}

.css-1agkuwq {
    aspect-ratio: 9 / 16;
    border-radius: 8px;
    border: none;
    width: 100%;
    align-self: center;
    transition: all 0.3s ease;
}
.video1-list .slick-current .video-frame {
    transform: scale(1);
    right: 0;
}
.video1-list .slick-slide {
    display: flex;
    justify-content: center;
    height: 100% !important;
    padding: 10px;
}
.video2-list .slick-current .video-frame {
    transform: scale(1);
    right: 0;
}
.video2-list .slick-slide {
    display: flex;
    justify-content: center;
    height: 100% !important;
    padding: 10px;
}
.video1-list .video-frame {
    padding: 15px;
    background: #FFFFFF;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border-radius: 35px;
    transition: all 0.3s ease;
    transform: scale(0.8);
    right: -20px;
    position: relative;
}
.video2-list .video-frame {
    padding: 15px;
    background: #FFFFFF;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border-radius: 35px;
    transition: all 0.3s ease;
    transform: scale(0.8);
    position: relative;
}
.video-frame iframe {
    border-radius: 20px !important;
}
.video1-list img, .video2-list img {
    margin-top: 20px;
    opacity: 0;
    transition: all 0.6s ease;
}
.video1-list .slick-current img, .video2-list .slick-current img {
    opacity: 0.6;
}
.description2-box h3, .description1-box h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 20px;
}
.slick-arrow {
    opacity: 1;
    transition: all 0.3s ease;
}
.slick-arrow:hover {
    opacity: 0.8;
}

@media (max-width: 1023px) {
    .video1-list .video-frame {
        right: 0;
    }
}
.video-frame img {
    opacity: 1 !important;
    margin-top: 0 !important;
}

.swal2-popup {
    border-radius: 16px !important;
}
.swal2-html-container {
    margin: 20px 20px 10px !important;
}
.swal2-close {
    position: absolute !important;
    width: 24px !important;
    height: 24px !important;
    top: 20px !important;
    right: 20px !important;
    border-radius: 20px !important;
    background: #F5F5F5 !important;
    color: #404040 !important;
    font-size: 18px !important;
    line-height: 100% !important;
}

.contact-social-link rect, .contact-social-link path {
    transition: all 0.3s ease;
}

.contact-social-link a:hover {
    & rect {
        stroke: #B7111E;
    }
    & path {
        fill: #B7111E;
    }
}
/*
! tailwindcss v3.3.5 | 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.
*/

html {
  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, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", 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 */
}

/*
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. 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-size: 1em; /* 2 */
}

/*
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 */
  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,
[type='button'],
[type='reset'],
[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] {
  display: none;
}

*, ::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:  ;
}

::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:  ;
}
.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;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
.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-5 {
  bottom: 1.25rem;
}
.bottom-\[-1\%\] {
  bottom: -1%;
}
.bottom-\[-10\%\] {
  bottom: -10%;
}
.bottom-\[-12\%\] {
  bottom: -12%;
}
.bottom-\[-13\%\] {
  bottom: -13%;
}
.bottom-\[-14\%\] {
  bottom: -14%;
}
.bottom-\[-2\%\] {
  bottom: -2%;
}
.bottom-\[-26\%\] {
  bottom: -26%;
}
.bottom-\[-28\%\] {
  bottom: -28%;
}
.bottom-\[-30\%\] {
  bottom: -30%;
}
.bottom-\[-34\%\] {
  bottom: -34%;
}
.bottom-\[-35\%\] {
  bottom: -35%;
}
.bottom-\[-4\%\] {
  bottom: -4%;
}
.bottom-\[-7\%\] {
  bottom: -7%;
}
.bottom-\[-80px\] {
  bottom: -80px;
}
.bottom-\[-90px\] {
  bottom: -90px;
}
.bottom-\[1\%\] {
  bottom: 1%;
}
.bottom-\[10\%\] {
  bottom: 10%;
}
.bottom-\[14\%\] {
  bottom: 14%;
}
.bottom-\[15\%\] {
  bottom: 15%;
}
.bottom-\[178px\] {
  bottom: 178px;
}
.bottom-\[2\%\] {
  bottom: 2%;
}
.bottom-\[24\%\] {
  bottom: 24%;
}
.bottom-\[3\%\] {
  bottom: 3%;
}
.bottom-\[30\%\] {
  bottom: 30%;
}
.bottom-\[38\%\] {
  bottom: 38%;
}
.bottom-\[40\%\] {
  bottom: 40%;
}
.left-0 {
  left: 0px;
}
.left-5 {
  left: 1.25rem;
}
.left-\[-16px\] {
  left: -16px;
}
.left-\[-3\%\] {
  left: -3%;
}
.left-\[-4\%\] {
  left: -4%;
}
.left-\[-6\%\] {
  left: -6%;
}
.left-\[-60px\] {
  left: -60px;
}
.left-\[11\%\] {
  left: 11%;
}
.left-\[132px\] {
  left: 132px;
}
.left-\[15\%\] {
  left: 15%;
}
.left-\[17\%\] {
  left: 17%;
}
.left-\[22\%\] {
  left: 22%;
}
.left-\[24\%\] {
  left: 24%;
}
.left-\[289px\] {
  left: 289px;
}
.left-\[3\%\] {
  left: 3%;
}
.left-\[31\%\] {
  left: 31%;
}
.left-\[33\%\] {
  left: 33%;
}
.left-\[4\%\] {
  left: 4%;
}
.left-\[45\%\] {
  left: 45%;
}
.left-\[479px\] {
  left: 479px;
}
.left-\[49\%\] {
  left: 49%;
}
.left-\[58\%\] {
  left: 58%;
}
.left-\[6\%\] {
  left: 6%;
}
.left-\[69\%\] {
  left: 69%;
}
.right-0 {
  right: 0px;
}
.right-4 {
  right: 1rem;
}
.right-5 {
  right: 1.25rem;
}
.right-\[-17\%\] {
  right: -17%;
}
.right-\[-18\%\] {
  right: -18%;
}
.right-\[-2\%\] {
  right: -2%;
}
.right-\[-21\%\] {
  right: -21%;
}
.right-\[-27\%\] {
  right: -27%;
}
.right-\[-5\%\] {
  right: -5%;
}
.right-\[-50\%\] {
  right: -50%;
}
.right-\[10\%\] {
  right: 10%;
}
.right-\[10px\] {
  right: 10px;
}
.right-\[17\%\] {
  right: 17%;
}
.right-\[19\%\] {
  right: 19%;
}
.right-\[2\%\] {
  right: 2%;
}
.right-\[3\%\] {
  right: 3%;
}
.right-\[31\%\] {
  right: 31%;
}
.right-\[33\%\] {
  right: 33%;
}
.right-\[34\%\] {
  right: 34%;
}
.right-\[38\%\] {
  right: 38%;
}
.right-\[50\%\] {
  right: 50%;
}
.right-\[6\%\] {
  right: 6%;
}
.right-\[60\%\] {
  right: 60%;
}
.right-\[8\%\] {
  right: 8%;
}
.right-\[9\%\] {
  right: 9%;
}
.top-0 {
  top: 0px;
}
.top-5 {
  top: 1.25rem;
}
.top-\[-11\%\] {
  top: -11%;
}
.top-\[-20px\] {
  top: -20px;
}
.top-\[-30px\] {
  top: -30px;
}
.top-\[-40px\] {
  top: -40px;
}
.top-\[-9\%\] {
  top: -9%;
}
.top-\[10\%\] {
  top: 10%;
}
.top-\[107px\] {
  top: 107px;
}
.top-\[11\%\] {
  top: 11%;
}
.top-\[16\%\] {
  top: 16%;
}
.top-\[21\%\] {
  top: 21%;
}
.top-\[24px\] {
  top: 24px;
}
.top-\[25\%\] {
  top: 25%;
}
.top-\[28\%\] {
  top: 28%;
}
.top-\[280px\] {
  top: 280px;
}
.top-\[3\%\] {
  top: 3%;
}
.top-\[32px\] {
  top: 32px;
}
.top-\[40\%\] {
  top: 40%;
}
.top-\[42\%\] {
  top: 42%;
}
.top-\[45\%\] {
  top: 45%;
}
.top-\[50px\] {
  top: 50px;
}
.top-\[60\%\] {
  top: 60%;
}
.top-\[67\%\] {
  top: 67%;
}
.top-\[74\%\] {
  top: 74%;
}
.top-\[76px\] {
  top: 76px;
}
.top-\[85px\] {
  top: 85px;
}
.-z-50 {
  z-index: -50;
}
.z-10 {
  z-index: 10;
}
.z-40 {
  z-index: 40;
}
.z-\[-1\] {
  z-index: -1;
}
.z-\[1\] {
  z-index: 1;
}
.order-first {
  order: -9999;
}
.col-span-1 {
  grid-column: span 1 / span 1;
}
.col-span-2 {
  grid-column: span 2 / span 2;
}
.row-span-1 {
  grid-row: span 1 / span 1;
}
.row-span-2 {
  grid-row: span 2 / span 2;
}
.float-right {
  float: right;
}
.m-5 {
  margin: 1.25rem;
}
.m-auto {
  margin: auto;
}
.mx-0 {
  margin-left: 0px;
  margin-right: 0px;
}
.mx-10 {
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}
.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}
.mx-\[30px\] {
  margin-left: 30px;
  margin-right: 30px;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.-mt-px {
  margin-top: -1px;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-10 {
  margin-bottom: 2.5rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-5 {
  margin-bottom: 1.25rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-7 {
  margin-bottom: 1.75rem;
}
.mb-\[10px\] {
  margin-bottom: 10px;
}
.mb-\[440px\] {
  margin-bottom: 440px;
}
.mb-\[60px\] {
  margin-bottom: 60px;
}
.ml-1 {
  margin-left: 0.25rem;
}
.ml-12 {
  margin-left: 3rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-3 {
  margin-left: 0.75rem;
}
.ml-4 {
  margin-left: 1rem;
}
.ml-5 {
  margin-left: 1.25rem;
}
.ml-6 {
  margin-left: 1.5rem;
}
.mr-0 {
  margin-right: 0px;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mr-4 {
  margin-right: 1rem;
}
.mt-0 {
  margin-top: 0px;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-10 {
  margin-top: 2.5rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-20 {
  margin-top: 5rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-5 {
  margin-top: 1.25rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-\[10px\] {
  margin-top: 10px;
}
.mt-\[120px\] {
  margin-top: 120px;
}
.mt-\[20\%\] {
  margin-top: 20%;
}
.mt-\[60px\] {
  margin-top: 60px;
}
.mt-\[80px\] {
  margin-top: 80px;
}
.block {
  display: block;
}
.flex {
  display: flex;
}
.inline-flex {
  display: inline-flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.hidden {
  display: none;
}
.aspect-square {
  aspect-ratio: 1 / 1;
}
.h-10 {
  height: 2.5rem;
}
.h-12 {
  height: 3rem;
}
.h-16 {
  height: 4rem;
}
.h-5 {
  height: 1.25rem;
}
.h-6 {
  height: 1.5rem;
}
.h-8 {
  height: 2rem;
}
.h-\[200px\] {
  height: 200px;
}
.h-\[300px\] {
  height: 300px;
}
.h-\[30px\] {
  height: 30px;
}
.h-\[340px\] {
  height: 340px;
}
.h-\[380px\] {
  height: 380px;
}
.h-\[40px\] {
  height: 40px;
}
.h-\[42px\] {
  height: 42px;
}
.h-\[54px\] {
  height: 54px;
}
.h-\[60px\] {
  height: 60px;
}
.h-\[660px\] {
  height: 660px;
}
.h-\[70px\] {
  height: 70px;
}
.h-\[720px\] {
  height: 720px;
}
.h-\[800px\] {
  height: 800px;
}
.h-\[80px\] {
  height: 80px;
}
.h-\[94px\] {
  height: 94px;
}
.h-\[calc\(100\%_-_4rem\)\] {
  height: calc(100% - 4rem);
}
.h-fit {
  height: -moz-fit-content;
  height: fit-content;
}
.h-full {
  height: 100%;
}
.h-screen {
  height: 100vh;
}
.max-h-14 {
  max-height: 3.5rem;
}
.min-h-full {
  min-height: 100%;
}
.min-h-screen {
  min-height: 100vh;
}
.w-10 {
  width: 2.5rem;
}
.w-12 {
  width: 3rem;
}
.w-20 {
  width: 5rem;
}
.w-5 {
  width: 1.25rem;
}
.w-6 {
  width: 1.5rem;
}
.w-64 {
  width: 16rem;
}
.w-8 {
  width: 2rem;
}
.w-\[110px\] {
  width: 110px;
}
.w-\[114\%\] {
  width: 114%;
}
.w-\[120px\] {
  width: 120px;
}
.w-\[140px\] {
  width: 140px;
}
.w-\[150px\] {
  width: 150px;
}
.w-\[160px\] {
  width: 160px;
}
.w-\[170px\] {
  width: 170px;
}
.w-\[18\%\] {
  width: 18%;
}
.w-\[180px\] {
  width: 180px;
}
.w-\[18px\] {
  width: 18px;
}
.w-\[19\%\] {
  width: 19%;
}
.w-\[190px\] {
  width: 190px;
}
.w-\[20\%\] {
  width: 20%;
}
.w-\[22\%\] {
  width: 22%;
}
.w-\[23\%\] {
  width: 23%;
}
.w-\[24\%\] {
  width: 24%;
}
.w-\[240px\] {
  width: 240px;
}
.w-\[25\%\] {
  width: 25%;
}
.w-\[26\%\] {
  width: 26%;
}
.w-\[260px\] {
  width: 260px;
}
.w-\[27\%\] {
  width: 27%;
}
.w-\[270px\] {
  width: 270px;
}
.w-\[28\%\] {
  width: 28%;
}
.w-\[30\%\] {
  width: 30%;
}
.w-\[300px\] {
  width: 300px;
}
.w-\[32\%\] {
  width: 32%;
}
.w-\[320px\] {
  width: 320px;
}
.w-\[326px\] {
  width: 326px;
}
.w-\[34\%\] {
  width: 34%;
}
.w-\[340px\] {
  width: 340px;
}
.w-\[35\%\] {
  width: 35%;
}
.w-\[36\%\] {
  width: 36%;
}
.w-\[360px\] {
  width: 360px;
}
.w-\[37\%\] {
  width: 37%;
}
.w-\[39\%\] {
  width: 39%;
}
.w-\[40\%\] {
  width: 40%;
}
.w-\[41\%\] {
  width: 41%;
}
.w-\[412px\] {
  width: 412px;
}
.w-\[42\%\] {
  width: 42%;
}
.w-\[43\%\] {
  width: 43%;
}
.w-\[442px\] {
  width: 442px;
}
.w-\[45\%\] {
  width: 45%;
}
.w-\[50\%\] {
  width: 50%;
}
.w-\[52\%\] {
  width: 52%;
}
.w-\[55\%\] {
  width: 55%;
}
.w-\[56\%\] {
  width: 56%;
}
.w-\[57\%\] {
  width: 57%;
}
.w-\[60\%\] {
  width: 60%;
}
.w-\[60px\] {
  width: 60px;
}
.w-\[65\%\] {
  width: 65%;
}
.w-\[75px\] {
  width: 75px;
}
.w-auto {
  width: auto;
}
.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}
.w-full {
  width: 100%;
}
.min-w-fit {
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.max-w-6xl {
  max-width: 72rem;
}
.max-w-\[100px\] {
  max-width: 100px;
}
.max-w-\[1024px\] {
  max-width: 1024px;
}
.max-w-\[1200px\] {
  max-width: 1200px;
}
.max-w-\[120px\] {
  max-width: 120px;
}
.max-w-\[126px\] {
  max-width: 126px;
}
.max-w-\[130px\] {
  max-width: 130px;
}
.max-w-\[1440px\] {
  max-width: 1440px;
}
.max-w-\[150px\] {
  max-width: 150px;
}
.max-w-\[1580px\] {
  max-width: 1580px;
}
.max-w-\[160px\] {
  max-width: 160px;
}
.max-w-\[166px\] {
  max-width: 166px;
}
.max-w-\[170px\] {
  max-width: 170px;
}
.max-w-\[200px\] {
  max-width: 200px;
}
.max-w-\[210px\] {
  max-width: 210px;
}
.max-w-\[220px\] {
  max-width: 220px;
}
.max-w-\[240px\] {
  max-width: 240px;
}
.max-w-\[270px\] {
  max-width: 270px;
}
.max-w-\[280px\] {
  max-width: 280px;
}
.max-w-\[320px\] {
  max-width: 320px;
}
.max-w-\[340px\] {
  max-width: 340px;
}
.max-w-\[350px\] {
  max-width: 350px;
}
.max-w-\[370px\] {
  max-width: 370px;
}
.max-w-\[400px\] {
  max-width: 400px;
}
.max-w-\[420px\] {
  max-width: 420px;
}
.max-w-\[520px\] {
  max-width: 520px;
}
.max-w-\[540px\] {
  max-width: 540px;
}
.max-w-\[600px\] {
  max-width: 600px;
}
.max-w-\[660px\] {
  max-width: 660px;
}
.max-w-\[800px\] {
  max-width: 800px;
}
.max-w-\[840px\] {
  max-width: 840px;
}
.max-w-full {
  max-width: 100%;
}
.max-w-md {
  max-width: 28rem;
}
.flex-1 {
  flex: 1 1 0%;
}
.-translate-x-full {
  --tw-translate-x: -100%;
  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));
}
.transform {
  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));
}
.cursor-pointer {
  cursor: pointer;
}
.appearance-none {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.grid-rows-4 {
  grid-template-rows: repeat(4, minmax(0, 1fr));
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.flex-col-reverse {
  flex-direction: column-reverse;
}
.flex-wrap {
  flex-wrap: wrap;
}
.items-start {
  align-items: flex-start;
}
.items-end {
  align-items: flex-end;
}
.items-center {
  align-items: center;
}
.justify-end {
  justify-content: flex-end;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-10 {
  gap: 2.5rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-5 {
  gap: 1.25rem;
}
.gap-\[10PX\] {
  gap: 10PX;
}
.gap-\[10px\] {
  gap: 10px;
}
.gap-x-2 {
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.gap-x-5 {
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}
.gap-x-6 {
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
.gap-y-10 {
  row-gap: 2.5rem;
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}
.overflow-auto {
  overflow: auto;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-y-auto {
  overflow-y: auto;
}
.overflow-y-hidden {
  overflow-y: hidden;
}
.overflow-x-clip {
  overflow-x: clip;
}
.text-ellipsis {
  text-overflow: ellipsis;
}
.whitespace-nowrap {
  white-space: nowrap;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-3xl {
  border-radius: 1.5rem;
}
.rounded-\[20\%\] {
  border-radius: 20%;
}
.rounded-\[20px\] {
  border-radius: 20px;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.rounded-t-md {
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}
.border {
  border-width: 1px;
}
.border-\[1px\] {
  border-width: 1px;
}
.border-b-2 {
  border-bottom-width: 2px;
}
.border-r-\[1px\] {
  border-right-width: 1px;
}
.border-t {
  border-top-width: 1px;
}
.border-solid {
  border-style: solid;
}
.border-\[\#33433D\] {
  --tw-border-opacity: 1;
  border-color: rgb(51 67 61 / var(--tw-border-opacity));
}
.border-\[\#404040\] {
  --tw-border-opacity: 1;
  border-color: rgb(64 64 64 / var(--tw-border-opacity));
}
.border-\[\#497DC8\] {
  --tw-border-opacity: 1;
  border-color: rgb(73 125 200 / var(--tw-border-opacity));
}
.border-\[\#DCDDDD\] {
  --tw-border-opacity: 1;
  border-color: rgb(220 221 221 / var(--tw-border-opacity));
}
.border-\[\#EB689F\] {
  --tw-border-opacity: 1;
  border-color: rgb(235 104 159 / var(--tw-border-opacity));
}
.border-\[\#FBE5D4\] {
  --tw-border-opacity: 1;
  border-color: rgb(251 229 212 / var(--tw-border-opacity));
}
.border-gray-200 {
  --tw-border-opacity: 1;
  border-color: rgb(229 231 235 / var(--tw-border-opacity));
}
.border-gray-400 {
  --tw-border-opacity: 1;
  border-color: rgb(156 163 175 / var(--tw-border-opacity));
}
.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
}
.border-zinc-300 {
  --tw-border-opacity: 1;
  border-color: rgb(212 212 216 / var(--tw-border-opacity));
}
.bg-\[\#17271C\] {
  --tw-bg-opacity: 1;
  background-color: rgb(23 39 28 / var(--tw-bg-opacity));
}
.bg-\[\#33433D\] {
  --tw-bg-opacity: 1;
  background-color: rgb(51 67 61 / var(--tw-bg-opacity));
}
.bg-\[\#497DC8\] {
  --tw-bg-opacity: 1;
  background-color: rgb(73 125 200 / var(--tw-bg-opacity));
}
.bg-\[\#B7111E\] {
  --tw-bg-opacity: 1;
  background-color: rgb(183 17 30 / var(--tw-bg-opacity));
}
.bg-\[\#C71C29\] {
  --tw-bg-opacity: 1;
  background-color: rgb(199 28 41 / var(--tw-bg-opacity));
}
.bg-\[\#EA0029\] {
  --tw-bg-opacity: 1;
  background-color: rgb(234 0 41 / var(--tw-bg-opacity));
}
.bg-\[\#EAF7FA\] {
  --tw-bg-opacity: 1;
  background-color: rgb(234 247 250 / var(--tw-bg-opacity));
}
.bg-\[\#EBF8E5\] {
  --tw-bg-opacity: 1;
  background-color: rgb(235 248 229 / var(--tw-bg-opacity));
}
.bg-\[\#EFECDD\] {
  --tw-bg-opacity: 1;
  background-color: rgb(239 236 221 / var(--tw-bg-opacity));
}
.bg-\[\#F2F2F2\] {
  --tw-bg-opacity: 1;
  background-color: rgb(242 242 242 / var(--tw-bg-opacity));
}
.bg-\[\#F5F5F5\] {
  --tw-bg-opacity: 1;
  background-color: rgb(245 245 245 / var(--tw-bg-opacity));
}
.bg-\[\#F6F6F6\] {
  --tw-bg-opacity: 1;
  background-color: rgb(246 246 246 / var(--tw-bg-opacity));
}
.bg-\[\#F8F6F0\] {
  --tw-bg-opacity: 1;
  background-color: rgb(248 246 240 / var(--tw-bg-opacity));
}
.bg-\[\#FAFAFA\] {
  --tw-bg-opacity: 1;
  background-color: rgb(250 250 250 / var(--tw-bg-opacity));
}
.bg-\[\#FBFBFB\] {
  --tw-bg-opacity: 1;
  background-color: rgb(251 251 251 / var(--tw-bg-opacity));
}
.bg-\[\#FDF4F4\] {
  --tw-bg-opacity: 1;
  background-color: rgb(253 244 244 / var(--tw-bg-opacity));
}
.bg-\[\#FFF7EF\] {
  --tw-bg-opacity: 1;
  background-color: rgb(255 247 239 / var(--tw-bg-opacity));
}
.bg-gray-100 {
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity));
}
.bg-gray-200 {
  --tw-bg-opacity: 1;
  background-color: rgb(229 231 235 / var(--tw-bg-opacity));
}
.bg-gray-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(249 250 251 / var(--tw-bg-opacity));
}
.bg-green-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(22 163 74 / var(--tw-bg-opacity));
}
.bg-red-600 {
  --tw-bg-opacity: 1;
  background-color: rgb(220 38 38 / var(--tw-bg-opacity));
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}
.object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}
.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
.p-2 {
  padding: 0.5rem;
}
.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.p-5 {
  padding: 1.25rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-\[10px\] {
  padding: 10px;
}
.p-\[15px\] {
  padding: 15px;
}
.p-\[40px\] {
  padding: 40px;
}
.p-\[60px\] {
  padding: 60px;
}
.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}
.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-2\.5 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.px-\[10\%\] {
  padding-left: 10%;
  padding-right: 10%;
}
.px-\[10px\] {
  padding-left: 10px;
  padding-right: 10px;
}
.px-\[20px\] {
  padding-left: 20px;
  padding-right: 20px;
}
.px-\[35px\] {
  padding-left: 35px;
  padding-right: 35px;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-2\.5 {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.py-24 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-\[10px\] {
  padding-top: 10px;
  padding-bottom: 10px;
}
.py-\[120px\] {
  padding-top: 120px;
  padding-bottom: 120px;
}
.py-\[60px\] {
  padding-top: 60px;
  padding-bottom: 60px;
}
.py-\[6px\] {
  padding-top: 6px;
  padding-bottom: 6px;
}
.py-\[80px\] {
  padding-top: 80px;
  padding-bottom: 80px;
}
.pb-10 {
  padding-bottom: 2.5rem;
}
.pb-20 {
  padding-bottom: 5rem;
}
.pb-5 {
  padding-bottom: 1.25rem;
}
.pb-6 {
  padding-bottom: 1.5rem;
}
.pb-\[10px\] {
  padding-bottom: 10px;
}
.pb-\[60px\] {
  padding-bottom: 60px;
}
.pb-\[80px\] {
  padding-bottom: 80px;
}
.pl-0 {
  padding-left: 0px;
}
.pl-10 {
  padding-left: 2.5rem;
}
.pl-\[14px\] {
  padding-left: 14px;
}
.pl-\[60px\] {
  padding-left: 60px;
}
.pr-10 {
  padding-right: 2.5rem;
}
.pr-\[60px\] {
  padding-right: 60px;
}
.pt-10 {
  padding-top: 2.5rem;
}
.pt-20 {
  padding-top: 5rem;
}
.pt-32 {
  padding-top: 8rem;
}
.pt-5 {
  padding-top: 1.25rem;
}
.pt-8 {
  padding-top: 2rem;
}
.pt-\[100px\] {
  padding-top: 100px;
}
.pt-\[120px\] {
  padding-top: 120px;
}
.pt-\[240px\] {
  padding-top: 240px;
}
.pt-\[60px\] {
  padding-top: 60px;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}
.text-5xl {
  font-size: 3rem;
  line-height: 1;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.font-bold {
  font-weight: 700;
}
.font-extralight {
  font-weight: 200;
}
.font-medium {
  font-weight: 500;
}
.font-normal {
  font-weight: 400;
}
.font-semibold {
  font-weight: 600;
}
.uppercase {
  text-transform: uppercase;
}
.italic {
  font-style: italic;
}
.not-italic {
  font-style: normal;
}
.leading-7 {
  line-height: 1.75rem;
}
.leading-none {
  line-height: 1;
}
.leading-normal {
  line-height: 1.5;
}
.leading-tight {
  line-height: 1.25;
}
.tracking-\[\.3em\] {
  letter-spacing: .3em;
}
.tracking-widest {
  letter-spacing: 0.1em;
}
.text-\[\#404040\] {
  --tw-text-opacity: 1;
  color: rgb(64 64 64 / var(--tw-text-opacity));
}
.text-\[\#4495AF\] {
  --tw-text-opacity: 1;
  color: rgb(68 149 175 / var(--tw-text-opacity));
}
.text-\[\#497DC8\] {
  --tw-text-opacity: 1;
  color: rgb(73 125 200 / var(--tw-text-opacity));
}
.text-\[\#6A9721\] {
  --tw-text-opacity: 1;
  color: rgb(106 151 33 / var(--tw-text-opacity));
}
.text-\[\#A6A6A6\] {
  --tw-text-opacity: 1;
  color: rgb(166 166 166 / var(--tw-text-opacity));
}
.text-\[\#B7111E\] {
  --tw-text-opacity: 1;
  color: rgb(183 17 30 / var(--tw-text-opacity));
}
.text-\[\#CF2828\] {
  --tw-text-opacity: 1;
  color: rgb(207 40 40 / var(--tw-text-opacity));
}
.text-\[\#EA0029\] {
  --tw-text-opacity: 1;
  color: rgb(234 0 41 / var(--tw-text-opacity));
}
.text-\[\#EFECDD\] {
  --tw-text-opacity: 1;
  color: rgb(239 236 221 / var(--tw-text-opacity));
}
.text-\[\#F7813E\] {
  --tw-text-opacity: 1;
  color: rgb(247 129 62 / var(--tw-text-opacity));
}
.text-\[\#FBE5D4\] {
  --tw-text-opacity: 1;
  color: rgb(251 229 212 / var(--tw-text-opacity));
}
.text-\[\#FDEFC8\] {
  --tw-text-opacity: 1;
  color: rgb(253 239 200 / var(--tw-text-opacity));
}
.text-\[\#ffffff\] {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity));
}
.text-gray-200 {
  --tw-text-opacity: 1;
  color: rgb(229 231 235 / var(--tw-text-opacity));
}
.text-gray-300 {
  --tw-text-opacity: 1;
  color: rgb(209 213 219 / var(--tw-text-opacity));
}
.text-gray-400 {
  --tw-text-opacity: 1;
  color: rgb(156 163 175 / var(--tw-text-opacity));
}
.text-gray-500 {
  --tw-text-opacity: 1;
  color: rgb(107 114 128 / var(--tw-text-opacity));
}
.text-gray-600 {
  --tw-text-opacity: 1;
  color: rgb(75 85 99 / var(--tw-text-opacity));
}
.text-gray-700 {
  --tw-text-opacity: 1;
  color: rgb(55 65 81 / var(--tw-text-opacity));
}
.text-gray-900 {
  --tw-text-opacity: 1;
  color: rgb(17 24 39 / var(--tw-text-opacity));
}
.text-red-800 {
  --tw-text-opacity: 1;
  color: rgb(153 27 27 / var(--tw-text-opacity));
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity));
}
.underline {
  text-decoration-line: underline;
}
.no-underline {
  text-decoration-line: none;
}
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.opacity-100 {
  opacity: 1;
}
.opacity-\[30\%\] {
  opacity: 30%;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline {
  outline-style: solid;
}
.blur-\[2px\] {
  --tw-blur: blur(2px);
  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);
}
.blur-sm {
  --tw-blur: blur(4px);
  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);
}
.drop-shadow-md {
  --tw-drop-shadow: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
  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);
}
.filter {
  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 {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.before\:right-0::before {
  content: var(--tw-content);
  right: 0px;
}

.before\:right-auto::before {
  content: var(--tw-content);
  right: auto;
}

.before\:mx-auto::before {
  content: var(--tw-content);
  margin-left: auto;
  margin-right: auto;
}

.before\:border-white::before {
  content: var(--tw-content);
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity));
}

.before\:bg-white::before {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity));
}

.after\:right-0::after {
  content: var(--tw-content);
  right: 0px;
}

.after\:mx-auto::after {
  content: var(--tw-content);
  margin-left: auto;
  margin-right: auto;
}

.after\:bg-\[\#EB689F\]::after {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(235 104 159 / var(--tw-bg-opacity));
}

.hover\:bg-gray-300:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(209 213 219 / var(--tw-bg-opacity));
}

.hover\:bg-green-800:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(22 101 52 / var(--tw-bg-opacity));
}

.hover\:bg-red-800:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(153 27 27 / var(--tw-bg-opacity));
}

.hover\:to-purple-700:hover {
  --tw-gradient-to: #7e22ce var(--tw-gradient-to-position);
}

.focus\:border-blue-500:focus {
  --tw-border-opacity: 1;
  border-color: rgb(59 130 246 / var(--tw-border-opacity));
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:ring-2:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-blue-500:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(59 130 246 / var(--tw-ring-opacity));
}

.focus\:ring-gray-200:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity));
}

@media (prefers-color-scheme: dark) {

  .dark\:border-gray-700 {
    --tw-border-opacity: 1;
    border-color: rgb(55 65 81 / var(--tw-border-opacity));
  }

  .dark\:bg-gray-800 {
    --tw-bg-opacity: 1;
    background-color: rgb(31 41 55 / var(--tw-bg-opacity));
  }

  .dark\:bg-gray-900 {
    --tw-bg-opacity: 1;
    background-color: rgb(17 24 39 / var(--tw-bg-opacity));
  }

  .dark\:text-gray-400 {
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity));
  }

  .dark\:text-gray-500 {
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity));
  }

  .dark\:text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity));
  }
}

@media (max-width: 1440px) {

  .max-\[1440px\]\:bottom-\[18\%\] {
    bottom: 18%;
  }

  .max-\[1440px\]\:bottom-\[21\%\] {
    bottom: 21%;
  }

  .max-\[1440px\]\:bottom-\[35\%\] {
    bottom: 35%;
  }

  .max-\[1440px\]\:bottom-\[43\%\] {
    bottom: 43%;
  }

  .max-\[1440px\]\:bottom-\[44\%\] {
    bottom: 44%;
  }

  .max-\[1440px\]\:bottom-\[5\%\] {
    bottom: 5%;
  }

  .max-\[1440px\]\:bottom-\[57\%\] {
    bottom: 57%;
  }

  .max-\[1440px\]\:left-\[10\%\] {
    left: 10%;
  }

  .max-\[1440px\]\:left-\[15\%\] {
    left: 15%;
  }

  .max-\[1440px\]\:left-\[30\%\] {
    left: 30%;
  }

  .max-\[1440px\]\:left-\[33\%\] {
    left: 33%;
  }

  .max-\[1440px\]\:left-\[39\%\] {
    left: 39%;
  }

  .max-\[1440px\]\:left-\[57\%\] {
    left: 57%;
  }

  .max-\[1440px\]\:left-\[64\%\] {
    left: 64%;
  }

  .max-\[1440px\]\:top-\[39\%\] {
    top: 39%;
  }

  .max-\[1440px\]\:top-\[43\%\] {
    top: 43%;
  }

  .max-\[1440px\]\:mb-\[100px\] {
    margin-bottom: 100px;
  }

  .max-\[1440px\]\:h-\[60vw\] {
    height: 60vw;
  }

  .max-\[1440px\]\:h-\[80px\] {
    height: 80px;
  }

  .max-\[1440px\]\:w-\[220px\] {
    width: 220px;
  }

  .max-\[1440px\]\:w-\[41\%\] {
    width: 41%;
  }

  .max-\[1440px\]\:w-\[45\%\] {
    width: 45%;
  }

  .max-\[1440px\]\:w-\[55\%\] {
    width: 55%;
  }

  .max-\[1440px\]\:p-10 {
    padding: 2.5rem;
  }

  .max-\[1440px\]\:p-\[60px\] {
    padding: 60px;
  }
}

@media (max-width: 1280px) {

  .max-\[1280px\]\:top-0 {
    top: 0px;
  }

  .max-\[1280px\]\:mx-\[10px\] {
    margin-left: 10px;
    margin-right: 10px;
  }

  .max-\[1280px\]\:mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .max-\[1280px\]\:mt-0 {
    margin-top: 0px;
  }

  .max-\[1280px\]\:mt-10 {
    margin-top: 2.5rem;
  }

  .max-\[1280px\]\:h-\[275px\] {
    height: 275px;
  }

  .max-\[1280px\]\:h-\[640px\] {
    height: 640px;
  }

  .max-\[1280px\]\:w-\[100\%\] {
    width: 100%;
  }

  .max-\[1280px\]\:w-\[300px\] {
    width: 300px;
  }

  .max-\[1280px\]\:w-auto {
    width: auto;
  }

  .max-\[1280px\]\:flex-col {
    flex-direction: column;
  }

  .max-\[1280px\]\:items-center {
    align-items: center;
  }

  .max-\[1280px\]\:pr-0 {
    padding-right: 0px;
  }

  .max-\[1280px\]\:text-center {
    text-align: center;
  }
}

@media (max-width: 1024px) {

  .max-\[1024px\]\:relative {
    position: relative;
  }

  .max-\[1024px\]\:bottom-\[-12\%\] {
    bottom: -12%;
  }

  .max-\[1024px\]\:left-0 {
    left: 0px;
  }

  .max-\[1024px\]\:top-0 {
    top: 0px;
  }

  .max-\[1024px\]\:order-first {
    order: -9999;
  }

  .max-\[1024px\]\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .max-\[1024px\]\:row-span-2 {
    grid-row: span 2 / span 2;
  }

  .max-\[1024px\]\:mb-\[10px\] {
    margin-bottom: 10px;
  }

  .max-\[1024px\]\:mb-\[160px\] {
    margin-bottom: 160px;
  }

  .max-\[1024px\]\:mt-10 {
    margin-top: 2.5rem;
  }

  .max-\[1024px\]\:flex {
    display: flex;
  }

  .max-\[1024px\]\:grid {
    display: grid;
  }

  .max-\[1024px\]\:hidden {
    display: none;
  }

  .max-\[1024px\]\:h-\[480px\] {
    height: 480px;
  }

  .max-\[1024px\]\:h-\[65px\] {
    height: 65px;
  }

  .max-\[1024px\]\:h-auto {
    height: auto;
  }

  .max-\[1024px\]\:w-\[195px\] {
    width: 195px;
  }

  .max-\[1024px\]\:w-full {
    width: 100%;
  }

  .max-\[1024px\]\:flex-col {
    flex-direction: column;
  }

  .max-\[1024px\]\:object-top {
    -o-object-position: top;
       object-position: top;
  }

  .max-\[1024px\]\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

@media (max-width: 1023px) {

  .max-\[1023px\]\:w-full {
    width: 100%;
  }
}

@media (max-width: 768px) {

  .max-\[768px\]\:bottom-\[-15\%\] {
    bottom: -15%;
  }

  .max-\[768px\]\:mx-5 {
    margin-left: 1.25rem;
    margin-right: 1.25rem;
  }

  .max-\[768px\]\:mb-10 {
    margin-bottom: 2.5rem;
  }

  .max-\[768px\]\:mt-10 {
    margin-top: 2.5rem;
  }

  .max-\[768px\]\:mt-20 {
    margin-top: 5rem;
  }

  .max-\[768px\]\:block {
    display: block;
  }

  .max-\[768px\]\:flex {
    display: flex;
  }

  .max-\[768px\]\:hidden {
    display: none;
  }

  .max-\[768px\]\:h-\[42px\] {
    height: 42px;
  }

  .max-\[768px\]\:w-\[50\%\] {
    width: 50%;
  }

  .max-\[768px\]\:w-full {
    width: 100%;
  }

  .max-\[768px\]\:min-w-\[300px\] {
    min-width: 300px;
  }

  .max-\[768px\]\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .max-\[768px\]\:flex-col {
    flex-direction: column;
  }

  .max-\[768px\]\:border-b-\[1px\] {
    border-bottom-width: 1px;
  }

  .max-\[768px\]\:border-r-0 {
    border-right-width: 0px;
  }

  .max-\[768px\]\:p-5 {
    padding: 1.25rem;
  }

  .max-\[768px\]\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .max-\[768px\]\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .max-\[768px\]\:px-\[15px\] {
    padding-left: 15px;
    padding-right: 15px;
  }

  .max-\[768px\]\:py-10 {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .max-\[768px\]\:pb-10 {
    padding-bottom: 2.5rem;
  }

  .max-\[768px\]\:pb-\[60px\] {
    padding-bottom: 60px;
  }

  .max-\[768px\]\:pl-0 {
    padding-left: 0px;
  }

  .max-\[768px\]\:pr-0 {
    padding-right: 0px;
  }

  .max-\[768px\]\:pt-10 {
    padding-top: 2.5rem;
  }

  .max-\[768px\]\:pt-20 {
    padding-top: 5rem;
  }

  .max-\[768px\]\:pt-\[340px\] {
    padding-top: 340px;
  }
}

@media (max-width: 767px) {

  .max-\[767px\]\:max-w-\[360px\] {
    max-width: 360px;
  }
}

@media (max-width: 640px) {

  .max-\[640px\]\:mb-2 {
    margin-bottom: 0.5rem;
  }

  .max-\[640px\]\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

@media (min-width: 640px) {

  .sm\:absolute {
    position: absolute;
  }

  .sm\:bottom-\[-20\%\] {
    bottom: -20%;
  }

  .sm\:bottom-\[-3\%\] {
    bottom: -3%;
  }

  .sm\:bottom-\[-5\%\] {
    bottom: -5%;
  }

  .sm\:bottom-\[13\%\] {
    bottom: 13%;
  }

  .sm\:bottom-\[19\%\] {
    bottom: 19%;
  }

  .sm\:left-\[-60px\] {
    left: -60px;
  }

  .sm\:left-\[198px\] {
    left: 198px;
  }

  .sm\:left-\[3\%\] {
    left: 3%;
  }

  .sm\:left-\[32\%\] {
    left: 32%;
  }

  .sm\:left-\[33\%\] {
    left: 33%;
  }

  .sm\:left-\[34px\] {
    left: 34px;
  }

  .sm\:left-\[7\%\] {
    left: 7%;
  }

  .sm\:right-\[-60px\] {
    right: -60px;
  }

  .sm\:right-\[10\%\] {
    right: 10%;
  }

  .sm\:right-\[127px\] {
    right: 127px;
  }

  .sm\:right-\[3\%\] {
    right: 3%;
  }

  .sm\:right-\[30\%\] {
    right: 30%;
  }

  .sm\:right-\[34\%\] {
    right: 34%;
  }

  .sm\:right-\[37px\] {
    right: 37px;
  }

  .sm\:top-\[-330px\] {
    top: -330px;
  }

  .sm\:top-\[-363px\] {
    top: -363px;
  }

  .sm\:top-\[-398px\] {
    top: -398px;
  }

  .sm\:top-\[-4\%\] {
    top: -4%;
  }

  .sm\:top-\[16\%\] {
    top: 16%;
  }

  .sm\:top-\[17\%\] {
    top: 17%;
  }

  .sm\:top-\[176px\] {
    top: 176px;
  }

  .sm\:top-\[195px\] {
    top: 195px;
  }

  .sm\:top-\[3\%\] {
    top: 3%;
  }

  .sm\:top-\[41\%\] {
    top: 41%;
  }

  .sm\:top-\[6\%\] {
    top: 6%;
  }

  .sm\:top-\[98px\] {
    top: 98px;
  }

  .sm\:ml-64 {
    margin-left: 16rem;
  }

  .sm\:block {
    display: block;
  }

  .sm\:hidden {
    display: none;
  }

  .sm\:h-\[80px\] {
    height: 80px;
  }

  .sm\:w-\[10\%\] {
    width: 10%;
  }

  .sm\:w-\[11\%\] {
    width: 11%;
  }

  .sm\:w-\[12\%\] {
    width: 12%;
  }

  .sm\:w-\[14\%\] {
    width: 14%;
  }

  .sm\:w-\[140px\] {
    width: 140px;
  }

  .sm\:w-\[16\%\] {
    width: 16%;
  }

  .sm\:w-\[18\%\] {
    width: 18%;
  }

  .sm\:w-\[190px\] {
    width: 190px;
  }

  .sm\:w-\[230px\] {
    width: 230px;
  }

  .sm\:w-\[240px\] {
    width: 240px;
  }

  .sm\:w-\[26\%\] {
    width: 26%;
  }

  .sm\:w-\[330px\] {
    width: 330px;
  }

  .sm\:w-\[340px\] {
    width: 340px;
  }

  .sm\:max-w-\[130px\] {
    max-width: 130px;
  }

  .sm\:max-w-\[150px\] {
    max-width: 150px;
  }

  .sm\:max-w-\[180px\] {
    max-width: 180px;
  }

  .sm\:max-w-\[200px\] {
    max-width: 200px;
  }

  .sm\:max-w-\[220px\] {
    max-width: 220px;
  }

  .sm\:max-w-\[270px\] {
    max-width: 270px;
  }

  .sm\:max-w-\[290px\] {
    max-width: 290px;
  }

  .sm\:max-w-\[300px\] {
    max-width: 300px;
  }

  .sm\:max-w-\[330px\] {
    max-width: 330px;
  }

  .sm\:translate-x-0 {
    --tw-translate-x: 0px;
    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));
  }

  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:items-center {
    align-items: center;
  }

  .sm\:justify-start {
    justify-content: flex-start;
  }

  .sm\:rounded-lg {
    border-radius: 0.5rem;
  }

  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .sm\:px-\[10px\] {
    padding-left: 10px;
    padding-right: 10px;
  }

  .sm\:pt-0 {
    padding-top: 0px;
  }
}

@media (min-width: 768px) {

  .md\:static {
    position: static;
  }

  .md\:bottom-0 {
    bottom: 0px;
  }

  .md\:bottom-20 {
    bottom: 5rem;
  }

  .md\:bottom-\[-14\%\] {
    bottom: -14%;
  }

  .md\:bottom-\[-17\%\] {
    bottom: -17%;
  }

  .md\:bottom-\[-40\%\] {
    bottom: -40%;
  }

  .md\:bottom-\[-7\%\] {
    bottom: -7%;
  }

  .md\:bottom-\[1\%\] {
    bottom: 1%;
  }

  .md\:bottom-\[17\%\] {
    bottom: 17%;
  }

  .md\:bottom-\[4\%\] {
    bottom: 4%;
  }

  .md\:left-\[-20\%\] {
    left: -20%;
  }

  .md\:left-\[15\%\] {
    left: 15%;
  }

  .md\:left-\[17\%\] {
    left: 17%;
  }

  .md\:left-\[4\%\] {
    left: 4%;
  }

  .md\:left-\[74\%\] {
    left: 74%;
  }

  .md\:right-10 {
    right: 2.5rem;
  }

  .md\:right-\[-20\%\] {
    right: -20%;
  }

  .md\:right-\[-7\%\] {
    right: -7%;
  }

  .md\:right-\[-70\%\] {
    right: -70%;
  }

  .md\:right-\[18\%\] {
    right: 18%;
  }

  .md\:right-\[29\%\] {
    right: 29%;
  }

  .md\:right-\[3\%\] {
    right: 3%;
  }

  .md\:right-\[32\%\] {
    right: 32%;
  }

  .md\:right-\[56\%\] {
    right: 56%;
  }

  .md\:right-\[6\%\] {
    right: 6%;
  }

  .md\:top-\[-15\%\] {
    top: -15%;
  }

  .md\:top-\[-311px\] {
    top: -311px;
  }

  .md\:top-\[-365px\] {
    top: -365px;
  }

  .md\:top-\[-50px\] {
    top: -50px;
  }

  .md\:top-\[-60px\] {
    top: -60px;
  }

  .md\:top-\[138px\] {
    top: 138px;
  }

  .md\:top-\[159px\] {
    top: 159px;
  }

  .md\:top-\[20\%\] {
    top: 20%;
  }

  .md\:top-\[5\%\] {
    top: 5%;
  }

  .md\:top-\[62px\] {
    top: 62px;
  }

  .md\:top-\[80px\] {
    top: 80px;
  }

  .md\:top-\[9\%\] {
    top: 9%;
  }

  .md\:order-none {
    order: 0;
  }

  .md\:mx-10 {
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }

  .md\:mb-0 {
    margin-bottom: 0px;
  }

  .md\:mb-10 {
    margin-bottom: 2.5rem;
  }

  .md\:ml-0 {
    margin-left: 0px;
  }

  .md\:mr-5 {
    margin-right: 1.25rem;
  }

  .md\:mr-\[60px\] {
    margin-right: 60px;
  }

  .md\:mt-0 {
    margin-top: 0px;
  }

  .md\:mt-10 {
    margin-top: 2.5rem;
  }

  .md\:mt-\[60px\] {
    margin-top: 60px;
  }

  .md\:block {
    display: block;
  }

  .md\:flex {
    display: flex;
  }

  .md\:hidden {
    display: none;
  }

  .md\:aspect-auto {
    aspect-ratio: auto;
  }

  .md\:h-12 {
    height: 3rem;
  }

  .md\:h-20 {
    height: 5rem;
  }

  .md\:h-\[180px\] {
    height: 180px;
  }

  .md\:h-\[60px\] {
    height: 60px;
  }

  .md\:h-\[800px\] {
    height: 800px;
  }

  .md\:h-\[80px\] {
    height: 80px;
  }

  .md\:h-\[960px\] {
    height: 960px;
  }

  .md\:w-2\/5 {
    width: 40%;
  }

  .md\:w-20 {
    width: 5rem;
  }

  .md\:w-28 {
    width: 7rem;
  }

  .md\:w-3\/5 {
    width: 60%;
  }

  .md\:w-\[11\%\] {
    width: 11%;
  }

  .md\:w-\[136px\] {
    width: 136px;
  }

  .md\:w-\[14\%\] {
    width: 14%;
  }

  .md\:w-\[15\%\] {
    width: 15%;
  }

  .md\:w-\[160px\] {
    width: 160px;
  }

  .md\:w-\[17\%\] {
    width: 17%;
  }

  .md\:w-\[20\%\] {
    width: 20%;
  }

  .md\:w-\[21\%\] {
    width: 21%;
  }

  .md\:w-\[210px\] {
    width: 210px;
  }

  .md\:w-\[24\%\] {
    width: 24%;
  }

  .md\:w-\[250px\] {
    width: 250px;
  }

  .md\:w-\[280px\] {
    width: 280px;
  }

  .md\:w-\[29\%\] {
    width: 29%;
  }

  .md\:w-\[300px\] {
    width: 300px;
  }

  .md\:w-\[32\%\] {
    width: 32%;
  }

  .md\:w-\[340px\] {
    width: 340px;
  }

  .md\:w-\[36\%\] {
    width: 36%;
  }

  .md\:w-\[38\%\] {
    width: 38%;
  }

  .md\:w-\[390px\] {
    width: 390px;
  }

  .md\:w-\[400px\] {
    width: 400px;
  }

  .md\:w-\[420px\] {
    width: 420px;
  }

  .md\:w-\[60\%\] {
    width: 60%;
  }

  .md\:w-\[8\%\] {
    width: 8%;
  }

  .md\:w-\[80px\] {
    width: 80px;
  }

  .md\:w-\[9\%\] {
    width: 9%;
  }

  .md\:max-w-\[140px\] {
    max-width: 140px;
  }

  .md\:max-w-\[170px\] {
    max-width: 170px;
  }

  .md\:max-w-\[210px\] {
    max-width: 210px;
  }

  .md\:max-w-\[290px\] {
    max-width: 290px;
  }

  .md\:max-w-\[540px\] {
    max-width: 540px;
  }

  .md\:max-w-\[580px\] {
    max-width: 580px;
  }

  .md\:max-w-\[720px\] {
    max-width: 720px;
  }

  .md\:max-w-\[80px\] {
    max-width: 80px;
  }

  .md\:max-w-full {
    max-width: 100%;
  }

  .md\:max-w-none {
    max-width: none;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:flex-nowrap {
    flex-wrap: nowrap;
  }

  .md\:items-start {
    align-items: flex-start;
  }

  .md\:items-center {
    align-items: center;
  }

  .md\:items-baseline {
    align-items: baseline;
  }

  .md\:justify-start {
    justify-content: flex-start;
  }

  .md\:gap-10 {
    gap: 2.5rem;
  }

  .md\:border-l {
    border-left-width: 1px;
  }

  .md\:border-t-0 {
    border-top-width: 0px;
  }

  .md\:p-10 {
    padding: 2.5rem;
  }

  .md\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .md\:px-0\.5 {
    padding-left: 0.125rem;
    padding-right: 0.125rem;
  }

  .md\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .md\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .md\:px-\[5px\] {
    padding-left: 5px;
    padding-right: 5px;
  }

  .md\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .md\:py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .md\:py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .md\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .md\:py-\[120px\] {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .md\:pb-0 {
    padding-bottom: 0px;
  }

  .md\:pb-20 {
    padding-bottom: 5rem;
  }

  .md\:pl-\[20\%\] {
    padding-left: 20%;
  }

  .md\:pr-10 {
    padding-right: 2.5rem;
  }

  .md\:pr-\[60px\] {
    padding-right: 60px;
  }

  .md\:pt-0 {
    padding-top: 0px;
  }

  .md\:pt-10 {
    padding-top: 2.5rem;
  }

  .md\:pt-20 {
    padding-top: 5rem;
  }

  .md\:pt-40 {
    padding-top: 10rem;
  }

  .md\:pt-\[100px\] {
    padding-top: 100px;
  }

  .md\:text-left {
    text-align: left;
  }

  .md\:text-start {
    text-align: start;
  }

  .md\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .md\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }

  .md\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }

  .md\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .md\:tracking-\[\.5em\] {
    letter-spacing: .5em;
  }

  .md\:tracking-\[\.6em\] {
    letter-spacing: .6em;
  }

  .md\:after\:right-auto::after {
    content: var(--tw-content);
    right: auto;
  }

  .md\:after\:mx-0::after {
    content: var(--tw-content);
    margin-left: 0px;
    margin-right: 0px;
  }
}

@media (min-width: 1024px) {

  .lg\:relative {
    position: relative;
  }

  .lg\:bottom-12 {
    bottom: 3rem;
  }

  .lg\:bottom-\[-80px\] {
    bottom: -80px;
  }

  .lg\:bottom-\[15\%\] {
    bottom: 15%;
  }

  .lg\:bottom-\[70px\] {
    bottom: 70px;
  }

  .lg\:left-0 {
    left: 0px;
  }

  .lg\:left-12 {
    left: 3rem;
  }

  .lg\:left-\[-120px\] {
    left: -120px;
  }

  .lg\:left-\[-15\%\] {
    left: -15%;
  }

  .lg\:left-\[-40px\] {
    left: -40px;
  }

  .lg\:left-\[240px\] {
    left: 240px;
  }

  .lg\:left-\[31\%\] {
    left: 31%;
  }

  .lg\:left-\[40\%\] {
    left: 40%;
  }

  .lg\:left-\[9\%\] {
    left: 9%;
  }

  .lg\:left-auto {
    left: auto;
  }

  .lg\:right-0 {
    right: 0px;
  }

  .lg\:right-12 {
    right: 3rem;
  }

  .lg\:right-\[-25\%\] {
    right: -25%;
  }

  .lg\:right-\[-27\%\] {
    right: -27%;
  }

  .lg\:right-\[-40px\] {
    right: -40px;
  }

  .lg\:right-\[19\%\] {
    right: 19%;
  }

  .lg\:right-\[26\%\] {
    right: 26%;
  }

  .lg\:right-\[40\%\] {
    right: 40%;
  }

  .lg\:right-auto {
    right: auto;
  }

  .lg\:top-12 {
    top: 3rem;
  }

  .lg\:top-\[-10\%\] {
    top: -10%;
  }

  .lg\:top-\[-172px\] {
    top: -172px;
  }

  .lg\:top-\[-40px\] {
    top: -40px;
  }

  .lg\:top-\[-80px\] {
    top: -80px;
  }

  .lg\:top-\[10\%\] {
    top: 10%;
  }

  .lg\:top-\[134px\] {
    top: 134px;
  }

  .lg\:top-\[14\%\] {
    top: 14%;
  }

  .lg\:top-\[15\%\] {
    top: 15%;
  }

  .lg\:top-\[3\%\] {
    top: 3%;
  }

  .lg\:top-\[41\%\] {
    top: 41%;
  }

  .lg\:top-\[57\%\] {
    top: 57%;
  }

  .lg\:col-span-7 {
    grid-column: span 7 / span 7;
  }

  .lg\:mx-0 {
    margin-left: 0px;
    margin-right: 0px;
  }

  .lg\:mx-20 {
    margin-left: 5rem;
    margin-right: 5rem;
  }

  .lg\:mb-0 {
    margin-bottom: 0px;
  }

  .lg\:ml-0 {
    margin-left: 0px;
  }

  .lg\:ml-10 {
    margin-left: 2.5rem;
  }

  .lg\:mr-10 {
    margin-right: 2.5rem;
  }

  .lg\:mr-20 {
    margin-right: 5rem;
  }

  .lg\:mr-\[60px\] {
    margin-right: 60px;
  }

  .lg\:mt-0 {
    margin-top: 0px;
  }

  .lg\:mt-10 {
    margin-top: 2.5rem;
  }

  .lg\:block {
    display: block;
  }

  .lg\:flex {
    display: flex;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:h-\[120px\] {
    height: 120px;
  }

  .lg\:h-\[600px\] {
    height: 600px;
  }

  .lg\:h-\[800px\] {
    height: 800px;
  }

  .lg\:w-20 {
    width: 5rem;
  }

  .lg\:w-\[100\%\] {
    width: 100%;
  }

  .lg\:w-\[15\%\] {
    width: 15%;
  }

  .lg\:w-\[160px\] {
    width: 160px;
  }

  .lg\:w-\[220px\] {
    width: 220px;
  }

  .lg\:w-\[340px\] {
    width: 340px;
  }

  .lg\:w-\[360px\] {
    width: 360px;
  }

  .lg\:w-\[40\%\] {
    width: 40%;
  }

  .lg\:w-\[400px\] {
    width: 400px;
  }

  .lg\:w-\[42\%\] {
    width: 42%;
  }

  .lg\:w-\[50\%\] {
    width: 50%;
  }

  .lg\:w-\[540px\] {
    width: 540px;
  }

  .lg\:w-\[60\%\] {
    width: 60%;
  }

  .lg\:w-\[65\%\] {
    width: 65%;
  }

  .lg\:w-\[75\%\] {
    width: 75%;
  }

  .lg\:w-\[90\%\] {
    width: 90%;
  }

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .lg\:flex-row {
    flex-direction: row;
  }

  .lg\:items-start {
    align-items: flex-start;
  }

  .lg\:items-end {
    align-items: flex-end;
  }

  .lg\:justify-start {
    justify-content: flex-start;
  }

  .lg\:gap-5 {
    gap: 1.25rem;
  }

  .lg\:px-0 {
    padding-left: 0px;
    padding-right: 0px;
  }

  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lg\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }

  .lg\:py-40 {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }

  .lg\:py-\[10px\] {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .lg\:pb-10 {
    padding-bottom: 2.5rem;
  }

  .lg\:pb-\[160px\] {
    padding-bottom: 160px;
  }

  .lg\:pl-0 {
    padding-left: 0px;
  }

  .lg\:pl-10 {
    padding-left: 2.5rem;
  }

  .lg\:pl-\[60px\] {
    padding-left: 60px;
  }

  .lg\:pr-0 {
    padding-right: 0px;
  }

  .lg\:pr-10 {
    padding-right: 2.5rem;
  }

  .lg\:pr-5 {
    padding-right: 1.25rem;
  }

  .lg\:pt-0 {
    padding-top: 0px;
  }

  .lg\:pt-40 {
    padding-top: 10rem;
  }

  .lg\:text-left {
    text-align: left;
  }

  .lg\:text-start {
    text-align: start;
  }

  .lg\:text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .lg\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .lg\:text-6xl {
    font-size: 3.75rem;
    line-height: 1;
  }

  .lg\:tracking-\[\.8em\] {
    letter-spacing: .8em;
  }

  .lg\:before\:right-auto::before {
    content: var(--tw-content);
    right: auto;
  }

  .min-\[1024px\]\:flex {
    display: flex;
  }
}

@media (min-width: 1280px) {

  .xl\:bottom-\[10\%\] {
    bottom: 10%;
  }

  .xl\:bottom-\[17\%\] {
    bottom: 17%;
  }

  .xl\:bottom-\[20\%\] {
    bottom: 20%;
  }

  .xl\:bottom-\[21\%\] {
    bottom: 21%;
  }

  .xl\:left-\[-85px\] {
    left: -85px;
  }

  .xl\:left-\[18\%\] {
    left: 18%;
  }

  .xl\:left-\[64\%\] {
    left: 64%;
  }

  .xl\:right-\[-39\%\] {
    right: -39%;
  }

  .xl\:right-\[24\%\] {
    right: 24%;
  }

  .xl\:top-0 {
    top: 0px;
  }

  .xl\:top-\[-39\%\] {
    top: -39%;
  }

  .xl\:top-\[11\%\] {
    top: 11%;
  }

  .xl\:top-\[20\%\] {
    top: 20%;
  }

  .xl\:top-\[28\%\] {
    top: 28%;
  }

  .xl\:top-\[80\%\] {
    top: 80%;
  }

  .xl\:h-\[1080px\] {
    height: 1080px;
  }

  .xl\:h-\[720px\] {
    height: 720px;
  }

  .xl\:w-\[11\%\] {
    width: 11%;
  }

  .xl\:w-\[12\%\] {
    width: 12%;
  }

  .xl\:w-\[13\%\] {
    width: 13%;
  }

  .xl\:w-\[20\%\] {
    width: 20%;
  }

  .xl\:w-\[27\%\] {
    width: 27%;
  }

  .xl\:w-\[28\%\] {
    width: 28%;
  }

  .xl\:w-\[30\%\] {
    width: 30%;
  }

  .xl\:w-\[41\%\] {
    width: 41%;
  }

  .xl\:w-\[48\%\] {
    width: 48%;
  }

  .xl\:w-\[520px\] {
    width: 520px;
  }

  .xl\:w-\[54\%\] {
    width: 54%;
  }

  .xl\:w-\[60\%\] {
    width: 60%;
  }

  .xl\:w-\[72\%\] {
    width: 72%;
  }

  .xl\:w-\[8\%\] {
    width: 8%;
  }

  .xl\:w-\[90\%\] {
    width: 90%;
  }

  .xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .xl\:gap-10 {
    gap: 2.5rem;
  }

  .xl\:px-10 {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }

  .xl\:px-\[120px\] {
    padding-left: 120px;
    padding-right: 120px;
  }

  .xl\:pl-\[10\%\] {
    padding-left: 10%;
  }
}

@media (min-width: 1536px) {

  .\32xl\:bottom-0 {
    bottom: 0px;
  }

  .\32xl\:bottom-\[-3\%\] {
    bottom: -3%;
  }

  .\32xl\:bottom-\[13\%\] {
    bottom: 13%;
  }

  .\32xl\:bottom-\[30\%\] {
    bottom: 30%;
  }

  .\32xl\:left-\[32\%\] {
    left: 32%;
  }

  .\32xl\:top-\[24\%\] {
    top: 24%;
  }

  .\32xl\:top-\[30\%\] {
    top: 30%;
  }

  .\32xl\:top-\[41\%\] {
    top: 41%;
  }

  .\32xl\:w-\[16\%\] {
    width: 16%;
  }

  .\32xl\:w-\[50\%\] {
    width: 50%;
  }

  .\32xl\:w-\[7\%\] {
    width: 7%;
  }

  .\32xl\:w-\[70\%\] {
    width: 70%;
  }

  .\32xl\:py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}
