@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
    height: 100%;
    width: 100%;
    position: relative;
    background-color: #efefef;
    font-family: 'Kanit', sans-serif;
}
.dark-mode {
    background-color: #272727;
}

.toggle-darkmode {
    background-color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 0 50px 20px rgba(0, 0, 0, .1);
    line-height: 1;
}
.dark-mode .toggle-darkmode {
    background: #121212;
    color: #fff
}
  
.input {
    display: none;
}
  
.icon {
    grid-column: 1 / 1;
    grid-row: 1 / 1;
    transition: transform 500ms;
}
  
.icon--moon {
    transition-delay: 200ms;
}
  
.icon--sun {
    transform: scale(0);
}
  
#switch:checked + .icon--moon {
    transform: rotate(360deg) scale(0);
}
  
#switch:checked ~ .icon--sun {
    transition-delay: 200ms;
    transform: scale(1) rotate(360deg);
}

#checkbox {
    display: none;
}
  
.toggle {
    position: relative;
    width: 40px;
    cursor: pointer;
    margin: auto;
    display: inline-block;
    height: calc(4px * 3 + 11px * 2);
}
  
.bar {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: calc(4px / 2);
    background: #7b52b9;
    color: inherit;
    opacity: 1;
    transition: none 0.35s cubic-bezier(.5,-0.35,.35,1.5) 0s;
}
  
.bar--top {
    bottom: calc(50% + 11px + 4px/ 2);
    transition-property: bottom,transform;
    transition-delay: calc(0s + 0.35s) * .6;
}
  
.bar--middle {
    top: calc(50% - 4px/ 2);
    transition-property: opacity,transform;
    transition-delay: calc(0s + 0.35s * .3);
}
  
.bar--bottom {
    top: calc(50% + 11px + 4px/ 2);
    transition-property: top,transform;
    transition-delay: 0s;
}
  
#checkbox:checked + .toggle .bar--top {
    transform: rotate(-135deg);
    transition-delay: 0s;
    bottom: calc(50% - 4px/ 2);
}
  
#checkbox:checked + .toggle .bar--middle {
    opacity: 0;
    transform: rotate(-135deg);
    transition-delay: calc(0s + 0.35s * .3);
}
  
#checkbox:checked + .toggle .bar--bottom {
    top: calc(50% - 4px/ 2);
    transform: rotate(-225deg);
    transition-delay: calc(0s + 0.35s * .6);
}


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

}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 8rem;
}


header {
    position: relative;
}

nav {
    background-color: #fff;
}
.dark-mode nav {
    background-color: #121212;
}


nav ul {
    display: flex;
    text-align: center;
    align-items: center;
}

nav ul li {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    text-align: center;
    margin: 0 35px;
}

nav ul li a {
    text-decoration: none;
    color: #565454;
    text-align: center;
    align-items: center;
    font-size: 16px;
    font-weight: 800;
    transition: all 0.3s;
    position: relative;
}

nav ul li a::after {
    content: " ";
    position: absolute;
    height: 3px;
    background-color: #f478c9;
    width: 0;
    bottom: 0;
    left: 0;
    transition: all 0.3s ease;
}

nav ul li a:hover::after {
    width: 70%;

}

.contact_button {
    border: none;
    padding: 20px 40px;
    border-radius: 2rem;
    background-color: #f478c9;
    color: #FFF;
    font-size: 16px;
    transition: all 0.3s;
    cursor: pointer;
}

nav ul li a:hover {
    color: #6d6b6b;
}

.contact_button:hover {
    background-color: #e875c0;
    color: #ffffffc4;
}

.btn-gradient {
    white-space: nowrap;
    color: #fff;
    outline: 0;
    text-align: center;
    vertical-align: middle;
    font-size: 16px;
    padding: 15px 50px;
    border-radius: 30px;
    border: 0px solid;
    background: linear-gradient(101.05deg, #ff64ef 0%, #9e34c1 100%);
    transition: 0.2s ease-in-out 0s;
    -webkit-transition: all 0.5s;
    box-shadow: none;
    cursor: pointer;
    text-decoration: none;
    font-weight: 300;
    background-size: 100%;
}

.btn-gradient:hover {
    color: #fff;
    background-color: #343641;
    background-size: 200%;
}

.section-title {
    text-align: center;
    font-weight: 500;
    letter-spacing: 3px;
    color: #1c1c1c;
    font-size: 70px;
}
.dark-mode .section-title {
    color: #fff;
}

.section-subtitle {
    text-align: center;
    color: #2b2b2b;
    font-size: 20px;
    font-weight: 400;
}
.dark-mode .section-subtitle {
    color: #fff;
}

/* Main-------------------------- */
main {
    height: 20%;
    margin: 0 10%;
}

/* ------------home---------------- */
.home {
    padding: 100px 0px;
}
.dark-mode .home {
    color: #ffff;
}

.hero_section {
    color: #565454;
    margin: 15% 0;
}

.main_hero_text {
    font-size: 5rem;
    line-height: 5rem;
}

.hero_text {
    line-height: 1.5rem;
    font-size: 20px;
    margin: 5% 0 10%;
    max-width: 80%;
}

.hero_btn {
    padding: 1.5rem 4rem;
    font-size: 20px;
    border: none;
    border-radius: 2rem;
    background-color: #f478c9;
    color: #FFF;
    cursor: pointer;
    text-decoration: none;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    transition: all 0.3s;
}

.hero_btn:hover {
    background-color: #e875c0;
    color: #ffffffc4;
}

.hero_img {
    animation: float 3s ease-in-out infinite;
}


/*-------------------------features -------------------------- */

.features-title {
    font-size: 5rem;
    margin-bottom: 3rem;
}

.features-info {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
}

.features-box {
    display: flex;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    padding: 1rem;
}
.dark-mode .features-box {
    color: #8f8f8f;
}

.features-subtitle {
    color: #202020;
    font-size: 30px;
    margin-bottom: 20px;
    line-height: 2rem;
    font-weight: 600;
}
.dark-mode .features-subtitle {
    color: #fff;
}

.features-text {
    font-size: 18px;
    color: #636363;
    text-align: center;
    font-weight: 300;
}
.dark-mode .features-text {
    color: #8f8f8f;
}



/* ss */
.card {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    padding: 40px;
    transition: all .3s ease-in;
    border: none;
    background: #fff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    display: flex;
    align-items: center;
}
.dark-mode .card {
    background: #121212;
}

.card::before {
    content: "";
    height: 100px;
    width: 100px;
    position: absolute;
    top: -40%;
    left: -20%;
    border-radius: 50%;
    border: 35px solid rgba(255, 255, 255, 0.102);
    transition: all .8s ease;
    filter: blur(.5rem);
}

.card:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.card i {
    font-size: 60px;
    color: #f560eb;
    text-align: center;
    margin-bottom: 40px;
}


.icons {
    display: flex;
    justify-items: center;
    align-items: center;
    width: 250px;
    border-radius: 0px 0px 15px 15px;
    overflow: hidden;
}

.svg-icon {
    width: 25px;
    height: 25px;
    stroke: rgb(38, 59, 126);
}

.card:hover::before {
    width: 140px;
    height: 140px;
    top: -30%;
    left: 50%;
    filter: blur(0rem);
}


/* product card */
.products {
    margin: 10% 0;
}

.product-title {
    font-size: 5rem;
    margin-bottom: 3rem;
    color: #565454;
}

.products-category{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1rem 0;
}

.category-button{
    padding: 1rem 2rem;
    border-radius: 2rem;
    border: 1px solid #e875c0;
    background-color: transparent;
    color: #e875c0;

    font-size: 15px;
    font-weight: 600;
    width: 180px;
    min-width: 120px;
    
    transition: all .3s ease-in;
    margin: 5px;
}



/*product card*/
.product_content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.product-box{
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
    min-width: auto;
    height: auto;
    min-height: auto;
    padding: 1.5rem;
    background-color: #e875c0;
    background-image: linear-gradient(316deg, #6247aa 0%, #e875c0 74%);
    border: 1px solid #e875c0;
    
    opacity: 0.7;
    border-radius: 1rem;
    transition: all .4s ease;
}

.product-box button {
    width: 100%;
    margin-top: auto;
    white-space: nowrap;
    color: #ffffffc4;
    border: 1px solid white;
    outline: 0;
    text-align: center;
    vertical-align: middle;
    font-size: 16px;
    padding: 10px 50px;
    border-radius: 30px;
    background: none;
    font-weight: 500;
    text-transform: uppercase;
    transition: background 0.5s ease-in-out, transform 0.2s ease, color 0.5s ease;
    box-shadow: none;
    cursor: pointer;
    text-decoration: none;
    background-size: 100%;
    position: relative;
    overflow: hidden;
}

.product-box button::after {
    content: '';
    position: absolute;
    top: 0; 
    left: -100%; /* Start from the left, outside of the button */
    width: 100%; 
    height: 100%; 
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease; /* Animate the left property */
    border-radius: 30px; /* Match the button's border-radius */
    pointer-events: none;
}

.product-box button:hover::after {
    left: 100%; /* Move the gloss effect across the button to the right */
}

.product-box button:hover {
    background: none;
    color: #ffffffc4;
    border: 1px solid white;
    transform: translateY(-4px);
}


.product-box:hover {
    opacity: 1;

    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    border: 1px solid #c6aef4;
}

.product_prices {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
}

.product_name {
    font-weight: 700;
    font-size: 30px;
    color: #fff;
}

.product_list {
    list-style: none;
    margin-block: 40px;
    padding: 0px;
    width: 100%;
}

.product_list_text {
    font-size: 18px;
    color: #fff;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.product_list_text i{
    color: #fff;
    font-size: 20px;
}


.product_btn {
    padding: 1rem 3rem;
    border-radius: 2rem;
    border: none;
    background-color: #c6aef4;
    color: #FFE6E6;

    font-weight: 500;
    font-size: 25px;
    transition: all .7s ease;
}

.product_btn:hover {
    background-color: #f478c9;
}

/* feedback */
.feedback {
    margin: 5% 0 10%;
}

.feedback_title {
    color: #565454;
    font-size: 5rem;
    margin-bottom: 3rem;
}
.dark-mode .feedback_box {
    color: #fff;
}

.feedback_layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.feedback_box {
    background-color: #6247aa;
    background-image: linear-gradient(316deg, #6247aa 0%, #a594f9 74%);

    width: 45%;
    min-width: 25rem;
    min-height: 25rem;

    margin: 10px;
    padding: 2rem;

    border-radius: 2rem;

    transition: all 0.3s ease;
}
.dark-mode .feedback_box {
    color: #121212;
}

.feedback_box:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.feedback_name {
    font-size: 50px;
    font-weight: 600;
    color: #202020;
    line-height: 6rem;
}
.dark-mode .feedback_name {
    color: #fff;
}

.feedback_text {
    font-size: 25px;
    color: #272727b7;
}
.dark-mode .feedback_text {
    color: #fff;
}


.Stars {
    --percent: calc(var(--rating) / 5 * 100%);

    display: inline-block;
    font-size: 40px;
    line-height: 1;

    &::before {
        content: 'â˜…â˜…â˜…â˜…â˜…';
        letter-spacing: 3px;
        background: linear-gradient(90deg, #fc0 var(--percent), #fff var(--percent));
        -webkit-text-fill-color: transparent;
    }
}

.feedback_link {
    font-size: 20px;
    margin: 10px;
    color: #1c1c1c;

    text-align: center;
}
.dark-mode .feedback_link {
    color: #fff;
}

.feedback_link a {
    /* text-decoration: none; */
    color: #f478c9;
    text-decoration: none;
    cursor: pointer;
}

.feedback_link a:hover {
    color: #e875c0;
}

.tp-widget-wrapper {
    font-size: 0;
    text-align: center;
}
.tp-widget-wrapper {
    height: 100%;
    margin: 0 auto;
    max-width: 750px;
    position: relative;
}
.dark a {
    color: #fff;
}
a {
    color: #191919;
    text-decoration: none;
}
@media screen and (min-width: 145px){
    .tp-widget-rating {
        font-size: 14px;
    }
}
.tp-widget-rating, .tp-widget-logo {
    display: inline-block;
    font-size: 13px;
    line-height: 15px;
    margin: 0 4px 3px;
    vertical-align: bottom;
}

@media screen and (max-width: 768px){
    .cstm-mb-view{
        width:50%;
    }
}
@media screen and (min-width: 769px){
    .cstm-mb-view{
        width:15%;
    }
}


/* contact */
.contact {
    margin-bottom: 4rem;
}

.contact_box {
    padding: 5rem;
    border-radius: 1rem;

    background-color: #6247aa;
    background-image: linear-gradient(316deg, #6247aa 0%, #a594f9 74%);


    border: 1px solid #e875c0;
    opacity: 0.7;
    transition: all 0.3s ease;
    display: flex;
    flex-wrap: wrap;

    position: relative;
    max-height: 26rem;
}

.contact_box:hover {
    opacity: 1;
    border: 1px solid #f478c9;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.contact_title {
    text-align: center;
    font-weight: 500;
    letter-spacing: 3px;
    color: #1c1c1c;
    font-size: 70px;
}
.dark-mode .contact_title {
    color: #fff;
}

.contact_text {
    margin-bottom: 20px;
    text-align: center;
    color: #2b2b2b;
    font-size: 20px;
    font-weight: 400;
}
.dark-mode .contact_text {
    color: #fff;
}

.contact-card .buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
}

.contact_btn {
    padding: 1.5rem 4rem;
    font-size: 20px;
    border: none;
    border-radius: 2rem;

    background-color: #f478c9;
    color: #FFF;

    cursor: pointer;

    margin: 10px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    transition: all 0.3s;

}

.contact_btn:hover {
    background-color: #e875c0;
    color: #ffffffc4;
}

.contact_info {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;

    width: 55%;
}


.img_hero {

    position: absolute;
    top: 0;
    width: 30rem;
    height: 23rem;
}


/* footer */
.footer {
    margin-top: 5rem;
}

/* js script */
.product_content {
    display: none;
}

.highlighted {
    background-color: #e875c0;
    color: white;
}

.loading {
    animation: fadeIn 0.5s ease-in-out;
}

/* animation */
@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}




a.navbar-brand {
    font-size: 32px;
    font-weight: 500;
    color: #fff;
    margin-right: 60px;
    line-height: 32px;
}

a.navbar-brand img {
    width: 200px;

}

.navbar-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}
.dark-mode .navbar-wrapper {
    color: #fff
}


.contact-card {
    background: #ffffff;
    width: 100%;
    height: 100%;
    padding: 50px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.dark-mode .contact-card {
    background: #121212;
    color: #fff
}


.contact-card .wumpus{
    position: absolute;
    width: 644px;
    z-index: 2;
    right: -65px;
    top: 0;
    transition: all 0.3s ease-in-out;
    opacity: 0.6;
}

.contact-card .content{
    z-index: 3;
    position: relative;
}

.review-card{
    background: #ffffff;
    width: 100%;
    height: 100%;
    padding: 25px;
    border-radius: 15px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.dark-mode .review-card {
    background: #121212;
    color: #fff
}
  
  .review-container{
    display: flex;
    flex-wrap: wrap;
    gap: 3%;
  }
  
  .review-card-header{
    display: flex;
    justify-content: space-between;
  }
  .review-card-header-right-icon{
    color: #f560eb;
  }
  
  .review-card-header-right-text p{
    text-align: right;
  }
  
  .review-card-header-left-text p{
    font-size: 12px;
    color: #f560eb;
    text-transform: uppercase;
  }


section.footer{
    padding: 25px 0;
    border-top: 1px solid #838383;
    text-align: center;
}

i.fa-solid.fa-heart {
    font-size: 12px;
    color: red;
}

  
.footer .links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 100%;
}

.footer .links a {
    color: #1c1c1c;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s ease-in-out 0s;
}

.footer .links a:hover {
    color: #f560eb;
}

.footer .social {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    height: 100%;
}

.footer .social a {
    color: #1c1c1c;
    background: none;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s ease-in-out 0s;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #1c1c1c;
    font-size: 12px;
}

.footer .social a:hover {
    color: #f560eb;
    border: 1px solid #f560eb;
}


.logo img {
    width: 200px;
}

.site-text {
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-text p {
    font-size: 14px;
    color: #1c1c1c;
    margin: 0;
}
.dark-mode .site-text p {
    color: #fff;
}

@media (max-width: 991px) {
    .hero_img{
        width: 100%;
    }
    .hero_text{
        max-width: 100%;
    }
    .navbar-wrapper {
        flex-wrap: wrap;
    }
    a.btn.btn-gradient {
        width: 100%;
        margin-top: 20px;
    }

    .contact-card .buttons {
        flex-wrap: wrap;
    }

    .logo {
        text-align: center;
        margin-bottom: 20px;
    }

    .social {
        justify-content: center !important;
        margin-bottom: 40px;
    }

    .site-text {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }
    .contact-card .wumpus {
        right: -435px;
    }
}


.animate__animated.animate__slower {
  animation-duration: 1;
}

.animate__fadeInDown {
  animation-name: fadeInDown;
}

.animate__animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@media (min-width: 1024px) {
  .box {
    padding-left: 0;
    padding-right: 0;
  }
}

.box {
  display: block;
  position: relative;
  background: #fff;
  padding: 1rem 1.25rem;
}

.glowing:before {
  content: "";
  position: absolute;
  left: -2px;
  top: -2px;
  background: linear-gradient(45deg, rgba(233, 247, 77, 0.404), rgba(255, 102, 0, 0.851), rgba(0, 255, 102, 0.369), rgba(19, 255, 19, 0.408), #ad27ad, #bd2681, #6512b9, rgba(255, 51, 0, 0.871), rgba(90, 171, 222, 0.659));
  background-size: 400%;
  width: calc(100% + 5px);
  height: calc(100% + 6px);
  z-index: -1;
  animation: glower 5s linear infinite;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

@keyframes glower {
  0%, 100% {
    background-position: 0 0;
  }
  50% {
    background-position: 100% 0;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.navbar.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000; /* Adjust as needed */
}
     


.snowflake {
  color: #a1efff;
  font-size: 1em;
  font-family: Arial, sans-serif;
  text-shadow: 0 0 5px #000;
}
 
.snowflake,.snowflake .inner{animation-iteration-count:infinite;animation-play-state:running}@keyframes snowflakes-fall{0%{transform:translateY(0)}100%{transform:translateY(110vh)}}@keyframes snowflakes-shake{0%,100%{transform:translateX(0)}50%{transform:translateX(80px)}}.snowflake{position:fixed;top:-10%;z-index:9999;-webkit-user-select:none;user-select:none;cursor:default;animation-name:snowflakes-shake;animation-duration:3s;animation-timing-function:ease-in-out}.snowflake .inner{animation-duration:10s;animation-name:snowflakes-fall;animation-timing-function:linear}.snowflake:nth-of-type(0){left:1%;animation-delay:0s}.snowflake:nth-of-type(0) .inner{animation-delay:0s}.snowflake:first-of-type{left:10%;animation-delay:1s}.snowflake:first-of-type .inner,.snowflake:nth-of-type(8) .inner{animation-delay:1s}.snowflake:nth-of-type(2){left:20%;animation-delay:.5s}.snowflake:nth-of-type(2) .inner,.snowflake:nth-of-type(6) .inner{animation-delay:6s}.snowflake:nth-of-type(3){left:30%;animation-delay:2s}.snowflake:nth-of-type(11) .inner,.snowflake:nth-of-type(3) .inner{animation-delay:4s}.snowflake:nth-of-type(4){left:40%;animation-delay:2s}.snowflake:nth-of-type(10) .inner,.snowflake:nth-of-type(4) .inner{animation-delay:2s}.snowflake:nth-of-type(5){left:50%;animation-delay:3s}.snowflake:nth-of-type(5) .inner{animation-delay:8s}.snowflake:nth-of-type(6){left:60%;animation-delay:2s}.snowflake:nth-of-type(7){left:70%;animation-delay:1s}.snowflake:nth-of-type(7) .inner{animation-delay:2.5s}.snowflake:nth-of-type(8){left:80%;animation-delay:0s}.snowflake:nth-of-type(9){left:90%;animation-delay:1.5s}.snowflake:nth-of-type(9) .inner{animation-delay:3s}.snowflake:nth-of-type(10){left:25%;animation-delay:0s}.snowflake:nth-of-type(11){left:65%;animation-delay:2.5s}



.navbar {
transition: background-color 0.5s ease;
}

.custom_nb.transparent {
background-color: transparent !important;
backdrop-filter: blur(10px);
}



.animate__slower {
    position: relative;
}

.custom_nb {
    position: relative;
    margin-top: 0.7%;
}

@media (min-width: 769px) {
    .custom_nb {
        margin-top: 0.2%;
    }
}

.feedback {
    margin-top: -10rem;
}

@media (min-width: 200px) and (max-width: 991px) {
    .feedback {
        margin-top: 5%;
    }
}       
.features {
    margin-top: -15rem;
}

@media (min-width: 200px) and (max-width: 991px) {
    .features {
        margin-top: -5%;
    }
}