.sticky-wrapper .site-navbar {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    /* box-shadow: rgb(204 204 204) 0px 0px 10px;
    background: #fff; */
}

.site-navbar .site-navigation .site-menu>li>a {
    color: #030303;
}

.site-navbar .site-navigation .site-menu>li>a:hover {
    color: var(--primary-color);
}

.sticky-wrapper {
    position: inherit;
    z-index: 100;
    width: 100%;
}

section {
    padding: 50px 0px;
    width: 100%;
}

.matrimony-1 h2 {
    width: 100%;
    float: left;
    line-height: 1;
    text-align: left;
    font: italic normal bold 25px Noto Sans;
    letter-spacing: 0px;
    color: #6B3C9A;
    padding: 50px 0;
}


/* Heart Animation */

#hearts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.heart-container {
    float: left;
    position: absolute;
    top: -20px;
    left: -20px;
    -moz-animation-duration: 8s;
    -moz-animation-name: fall;
    -moz-animation-timing-function: linear;
    -webkit-animation-duration: 8s;
    -webkit-animation-name: fall;
    -webkit-animation-timing-function: linear;
}

@-moz-keyframes fall {
    from {
        top: -20px;
    }
    to {
        top: 100%;
    }
}

@-webkit-keyframes fall {
    from {
        top: -10%;
    }
    to {
        top: 100%;
    }
}

.heart {
    overflow: hidden;
    height: 20px;
    width: 20px;
    font-size: 20px;
    text-align: center;
    color: red;
    -moz-animation-duration: 0.5s;
    -moz-animation-name: swing;
    -moz-animation-timing-function: ease-in-out;
    -moz-animation-iteration-count: infinite;
    -moz-animation-direction: alternate;
    -moz-transform-origin: center center;
    -webkit-animation-duration: 0.5s;
    -webkit-animation-name: swing;
    -webkit-animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    -webkit-transform-origin: center center;
}

@-moz-keyframes swing {
    from {
        -moz-transform: rotate(-45deg) translateX(10px);
    }
    to {
        -moz-transform: rotate(45deg) translateX(-10px);
    }
}

@-moz-keyframes spin {
    from {
        -moz-transform: scaleX(1) translateX(5px);
    }
    50% {
        -moz-transform: scaleX(0.1);
    }
    to {
        -moz-transform: scaleX(1) translateX(-5px);
    }
}

@-webkit-keyframes swing {
    from {
        -webkit-transform: rotate(-45deg) translateX(10px);
    }
    to {
        -webkit-transform: rotate(45deg) translateX(-10px);
    }
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: scaleX(1) translateX(5px);
    }
    50% {
        -webkit-transform: scaleX(0.1);
    }
    to {
        -webkit-transform: scaleX(1) translateX(-5px);
    }
}

/* Floating Text */

.floating-text {
    width: 16%;
    text-align: center;
    background: #6B3C9A;
    border-radius: 62px;
    padding: 5px;
    position: fixed;
    bottom: 5%;
    right: 1%;
    border: 5px solid #e776fb;
    animation: float 2s infinite;
    z-index: 999;
}

.floating-text p{
    color: #fff;
    margin: 0px;
    padding: 10px;
    font: italic normal bold 11px Noto Sans;
}

@keyframes float {
    0% {
        transform: translate(0, 0%);
    }
    50% {
        transform: translate(0, 20%);
    }
    100% {
        transform: translate(0, 0%);
    }
}


/*   Responsive   */

@media screen and (max-width: 3072px) and (min-width: 1441px) {}

@media screen and (max-width: 2560px) and (min-width: 1440px) {}

@media screen and (max-width: 1440px) and (min-width: 1281px) {}

@media screen and (max-width: 1280px) and (min-width: 1023px) {}

@media screen and (max-width: 1024px) and (min-width: 785px) {}

@media screen and (max-width: 786px) and (min-width: 479px) {}

@media screen and (max-width: 480px) and (min-width: 0px) {
    .floating-text{
        width: 60%;
    }
    .matrimony-1 img{
        margin-top: 0px !important;
    }
}