@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.css");
@import url("bootstrap.min.css");
@import url("slick.css");
@import url("slick-theme.css");
@import url("animate.min.css");
@import url("gallery.css");
* {
    outline: none;
}

html,
body,
ul,
ol {
    margin: 0;
    padding: 0;
}

ul {
    list-style-type: none;
}

a {
    color: #B0E355;
}

a:hover,
a:active,
a:focus {
    transition: all ease-in-out 0.3s;
    color: #346D0A;
}

:focus-visible {
    outline: none;
}

button:focus:not(:focus-visible) {
    box-shadow: 0rem 0.1875rem 0.625rem rgba(0, 0, 0, 0.2);
}

a,
a:hover {
    text-decoration: none;
}

a,
span {
    transition: all 0.3s ease 0s;
}

html {
    font-size: 1rem;
}

body {
    font-family: "Baloo 2", cursive;
}

.font-small {
    font-size: 0.875rem;
}

.font-extra-small {
    font-size: 0.75rem;
}

.font-black {
    font-weight: 900;
}

.theme-bg-primary {
    background-color: #B0E355;
}

.theme-bg-secondary {
    background-color: #346D0A;
}

.theme-bg-accent-one {
    background-color: #4A9F00;
}

.theme-bg-accent-two {
    background-color: #e1c4ae;
}

.theme-text-white {
    color: #ffffff;
}

.theme-text-primary {
    color: #B0E355;
}

.theme-text-secondary {
    color: #346D0A;
}

.theme-text-accent-one {
    color: #4A9F00;
}

.theme-text-accent-two {
    color: #e1c4ae;
}

.body-text-dark {
    color: #000000;
}

.body-bg {
    background-color: #000000;
}

.theme-box-shadow {
    box-shadow: 0rem 0.1875rem 0.625rem rgba(0, 0, 0, 0.2);
}

.theme-text-shadow {
    text-shadow: 0 0 1.375rem rgba(52, 109, 10, 0.1);
}

.custom-btn-primary {
    background-color: #B0E355;
    color: #ffffff;
    min-width: 140px;
    min-height: 50px;
    border: 0;
    border-radius: 0.5rem;
}

.custom-btn-secondary {
    min-width: 100px;
    min-height: 50px;
    border: 0;
    border-radius: 0.5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.custom-link {
    background-color: #e1c4ae;
    color: #B0E355;
    min-width: 120px;
    min-height: 40px;
}

.custom-link:hover {
    background-color: transparent;
    color: #346D0A;
    border: 2px solid #B0E355;
}

.theme-border-radius {
    border-radius: 0.5rem;
}

.theme-border {
    border: 1px solid #B0E355;
}

.custom-button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-effect {
    display: block;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button-effect::before {
    background: #346d0a;
    content: "";
    position: absolute;
    z-index: -1;
}

.button-effect::after {
    height: 0;
    left: 0;
    top: 0;
    width: 100%;
    background: #346d0a;
    content: "";
    position: absolute;
    z-index: -1;
    transition: all 0.3s;
}

.button-effect:hover {
    color: #ffffff;
    background-color: #B0E355;
    transition: all 0.2s ease;
}

.button-effect:hover::after {
    height: 100%;
}

.img-effect img {
    transition: all 0.3s ease;
}

.img-effect:hover img {
    transform: scale(1.1);
}

.product-quick-view {
    position: relative;
    transition: all 0.5s ease-in-out;
}

.product-quick-view .view {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease-in-out;
}

.product-quick-view .view span,
.product-quick-view .view i {
    color: #ffffff;
}

.product-quick-view:hover {
    filter: grayscale(100%);
}

.product-quick-view:hover .view {
    opacity: 1;
    cursor: pointer;
}

.bottom .add-cart {
    cursor: pointer;
}

.bottom .add-cart .add {
    position: relative;
    display: inline-block;
}

.bottom .add-cart .add:hover {
    transform: translateY(-3px);
}

.slick-arrow {
    background-color: rgba(255, 255, 255, 0);
    box-shadow: 0rem 0.1875rem 0.625rem rgba(0, 0, 0, 0.2);
    background-repeat: no-repeat;
    background-position: center;
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #B0E355;
    transition: all 0.2s ease-out;
    z-index: 1;
}

.slick-arrow i {
    color: #B0E355;
}

.slick-arrow.slick-next {
    right: 20px;
}

.slick-arrow.slick-next:before {
    content: "\f285";
    font-family: "bootstrap-icons";
    color: #000000;
}

.slick-arrow.slick-prev {
    left: 20px;
}

.slick-arrow.slick-prev:before {
    content: "\f284";
    font-family: "bootstrap-icons";
    color: #000000;
}

.slick-arrow:hover {
    background-color: #B0E355;
}

.slick-arrow:hover i {
    color: #ffffff;
}

.slick-dots li:hover,
.slick-dots li:active,
.slick-dots li:focus {
    box-shadow: none;
}

.slick-dots li button {
    box-shadow: none;
}

.slick-dots li button:hover,
.slick-dots li button:active,
.slick-dots li button:focus {
    box-shadow: none;
}

.slick-dots li button::before {
    border: 1px solid #000000;
    background-color: rgba(255, 255, 255, 0.5);
    width: 1rem;
    height: 1rem;
    display: inline-block;
    border-radius: 0.5rem;
    font-family: initial;
    content: "";
}

.slick-dots li.slick-active button {
    box-shadow: none;
}

.slick-dots li.slick-active button:hover,
.slick-dots li.slick-active button:active {
    box-shadow: none;
}

.slick-dots li.slick-active button::before {
    background-color: white;
}

.high-text {
    position: relative;
    display: flex;
    width: 15px;
    height: 15px;
    background: #4A9F00;
    margin: auto;
    align-items: end;
    text-align: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.high-text::before {
    content: "";
    display: flex;
    width: 40px;
    height: 2px;
    background: #4A9F00;
    position: absolute;
    right: 65px;
}

.high-text::after {
    content: "";
    display: flex;
    width: 40px;
    height: 2px;
    background: #4A9F00;
    position: absolute;
    left: 65px;
}

.grow-box {
    display: inline-block;
    transition-duration: 0.3s;
    transition-property: transform;
    -webkit-tap-highlight-color: transparent;
    transform: translateZ(0);
    width: 100%;
}

.grow-box:hover {
    transform: scale(1.1);
}

.max {
    max-width: 650px;
    margin: auto;
}

.img-lt {
    filter: grayscale(100%);
    transition: 0.5s ease-in-out;
}

.img-lt:hover {
    filter: grayscale(0%);
}

.set-bg {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

.btn-wrapper {
    height: auto;
}

.btn-wrapper .menu-toggle {
    min-height: 40px;
    padding: 0.25rem 0.5rem;
}

.btn-wrapper .menu-toggle .icon-bars {
    display: block;
    width: 2rem;
    height: 2px;
    background-color: #ffffff;
    position: relative;
    transition: transform 0.3s ease-in, background-color 0.2s ease;
}

.btn-wrapper .menu-toggle .icon-bars::before,
.btn-wrapper .menu-toggle .icon-bars::after {
    display: block;
    width: 2rem;
    height: 2px;
    background-color: #ffffff;
    content: "";
    position: absolute;
    left: 0;
    transition: top 0.3s 0.3s ease-in, transform 0.3s ease-in, background-color 0.2s ease;
}

.btn-wrapper .menu-toggle .icon-bars::before {
    top: 0.5em;
}

.btn-wrapper .menu-toggle .icon-bars::after {
    top: -0.5em;
}

.btn-wrapper .menu-toggle:active .icon-bars {
    transition: transform 0.3s 0.2s ease-in, background-color 0.2s ease;
    transform: rotate3d(0, 0, 1, 135deg);
}

.btn-wrapper .menu-toggle:active .icon-bars::before {
    transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
    transform: rotate3d(0, 0, 1, 90deg);
    top: 0;
}

.btn-wrapper .menu-toggle:active .icon-bars::after {
    transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
    transform: rotate3d(0, 0, 1, 90deg);
    top: 0;
}

.menu--is-revealed .menu-toggle .icon-bars {
    transition: transform 0.3s 0.2s ease-in, background-color 0.2s ease;
    transform: rotate3d(0, 0, 1, 135deg);
}

.menu--is-revealed .menu-toggle .icon-bars::before {
    transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
    transform: rotate3d(0, 0, 1, 90deg);
    top: 0;
}

.menu--is-revealed .menu-toggle .icon-bars::after {
    transition: top 0.2s ease-in, transform 0.3s 0.2s ease-in, background-color 0.2s ease;
    transform: rotate3d(0, 0, 1, 90deg);
    top: 0;
}

.page-loader {
    width: 100%;
    height: 100%;
    position: fixed;
    background: #ffffff;
    z-index: 9999;
    overflow: visible;
}

.page-loader .spinner {
    position: relative;
    top: 35%;
    width: 5rem;
    height: 5rem;
    margin: 0 auto;
    background-color: #B0E355;
    border-radius: 100%;
    animation: sk-scaleout 1s infinite ease-in-out;
}

@keyframes sk-scaleout {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.info-top {
    background-color: #ffffff;
    box-shadow: 0rem 0.1875rem 0.625rem rgba(0, 0, 0, 0.2) inset;
}

.info-top .btn {
    color: #e1c4ae;
    text-decoration: none;
}

.info-top .btn i {
    color: #ffffff;
}

.info-top .social a,
.info-top .social .botom-link {
    color: #4A9F00;
}

.info-top .social a:hover,
.info-top .social .botom-link:hover {
    color: #B0E355;
}

.header {
    background-color: #ffffff;
    z-index: 2;
    width: 100%;
    position: absolute;
}

@media screen and (max-width: 992px) {
    .header .navbar-collapse {
        height: 200px;
        overflow: auto;
    }
}

.header .navbar-nav .nav-item .nav-link {
    color: #000000;
    padding: 1.2rem 2rem;
    font-weight: 600;
}

.header .navbar-nav .nav-item .nav-link:hover {
    color: #B0E355;
}

@media screen and (max-width: 992px) {
    .header .navbar-nav .nav-item .nav-link {
        padding: 0.8rem 0rem;
        border-bottom: 1px solid #e1c4ae;
    }
}

.header .navbar-nav .nav-item .dropdown-menu {
    border-radius: 0;
    border: 0;
    padding: 0;
    box-shadow: 0rem 0.1875rem 0.625rem rgba(0, 0, 0, 0.2);
}

.header .navbar-nav .nav-item .dropdown-menu .dropdown-item {
    color: #4A9F00;
    padding: 0.8rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.header .navbar-nav .nav-item .dropdown-menu .dropdown-item:hover {
    background-color: #B0E355;
    color: #ffffff;
}

.header .navbar-nav .active a {
    color: #B0E355 !important;
}

.header .navbar-nav .active a::before {
    content: "";
    width: 1.25rem;
    height: 2px;
    background: #B0E355;
    position: absolute;
    bottom: 7%;
    display: block;
    left: 43%;
    border-radius: 3rem;
}

@media screen and (max-width: 992px) {
    .header .navbar-nav .active a::before {
        left: 0;
    }
}

.header .navbar-nav .active .dropdown-item {
    color: #346D0A !important;
}

.nav-effect {
    position: relative;
}

.nav-effect::before {
    content: "";
    position: absolute;
    bottom: 7%;
    left: 43%;
    width: 1.25rem;
    height: 2px;
    background: #B0E355;
    transform-origin: center center;
    transform: scale(0, 1);
    transition: transform 0.4s cubic-bezier(1, 0, 0, 1);
    border-radius: 3rem;
}

@media screen and (max-width: 992px) {
    .nav-effect::before {
        left: 0%;
    }
}

.nav-effect:hover:before {
    transform-origin: center center;
    transform: scale(3, 1);
}

.hero {
    position: relative;
    margin-top: 60px;
}

@media screen and (max-width: 992px) {
    .hero {
        margin-top: 0px;
    }
}

.hero .carouselhero {
    margin-bottom: 0;
}

.hero .carouselhero .slider-item {
    min-height: 780px;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 575px) {
    .hero .carouselhero .slider-item {
        min-height: 640px;
    }
}

.hero .carouselhero .slider-item:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    position: absolute;
    z-index: 0;
}

.hero .carouselhero .slick-arrow {
    opacity: 0;
    visibility: hidden;
}

.hero .carouselhero:hover .slick-arrow {
    opacity: 1;
    visibility: visible;
}

.hero .carouselhero .slick-dots {
    bottom: 3rem;
}

.product-banner {
    position: relative;
}

.product-banner .box {
    position: relative;
    max-height: 300px;
    height: 300px;
    background-color: #4A9F00;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 0.5rem;
}

.product-banner .box::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.product-banner .box .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    z-index: 1;
}

.product-banner .box .content p {
    text-transform: uppercase;
    font-size: 1.5rem;
}

.product-banner .box .content .btn-shop {
    background-color: #B0E355;
    color: #ffffff;
}

.product-banner .product01 {
    background-image: url(../images/product/product-banner01.jpg);
}

.product-banner .product02 {
    background-image: url(../images/product/product-banner02.jpg);
}

.product-banner .product03 {
    background-image: url(../images/product/product-banner03.jpg);
}

.features .left-icon {
    position: relative;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
}

.features .left-icon:hover .icon {
    transform: translateY(-5px);
    transition-duration: 0.3s;
}

.features .left-icon:hover .icon:before {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    content: "";
    display: block;
    background-color: #B0E355;
    position: absolute;
    left: 43%;
    top: 15%;
    z-index: -1;
}

.features .left-icon .icon {
    transition-duration: 0.3s;
    position: relative;
}

.features .left-icon .icon img {
    width: auto;
    height: auto;
}

.features .left-icon .text {
    padding: 2rem;
}

.features .left-icon .text h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.features .left-icon .text p {
    margin-bottom: 0;
    font-size: 0.875rem;
}

.features .left-icon .text a {
    display: block;
    font-size: 1rem;
    padding-top: 1rem;
    font-weight: bold;
    color: #000000;
}

.features .left-icon .text a:hover {
    color: #346D0A;
}

.topCategories .nav-pills li {
    margin: 0 0.5rem;
}

.topCategories .nav-pills li .nav-link {
    border: 1px solid #B0E355;
    color: #346D0A;
    font-weight: bold;
    border-radius: 50rem;
}

.topCategories .nav-pills li .active {
    background-color: transparent;
    color: #B0E355;
}

.topCategories .card-wrap {
    background-color: #f5f5f5;
}

.topCategories .card-wrap .con-img-wrap {
    position: relative;
}

.topCategories .card-wrap .small-img {
    min-height: 120px;
    justify-content: center;
    display: flex;
    align-items: center;
}

.topCategories .card-wrap .con-wrap .text {
    font-weight: 700;
}

.topCategories .card-wrap .con-wrap .text a {
    color: #346D0A;
}

.topCategories .card-wrap .con-wrap .text a:hover {
    color: #B0E355;
}

.topCategories .card-wrap .con-wrap .rating-cover i {
    color: #B0E355;
}

.topCategories .card-wrap .con-wrap .product-price span,
.topCategories .card-wrap .con-wrap .product-price i {
    color: #e1c4ae;
}

.topCategories .card-wrap .con-wrap a {
    background: #e1c4ae;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    color: #ffffff;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.topCategories .card-wrap .con-wrap a:hover {
    background: #346D0A;
}

.deal-to-action {
    background-color: rgba(176, 227, 85, 0.1);
    background-image: url(../images/section/Bg-Deals.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    min-height: 600px;
    background-position: center center;
    position: relative;
    padding: 5rem 0 0rem 0;
}

.deal-to-action::before {
    content: "";
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.deal-to-action .video-frame {
    position: absolute;
    width: 100%;
    z-index: 1;
    left: 0;
}

.deal-to-action .group {
    display: flex;
    background-image: url(../images/section/video-bg.png);
    background-position: center top;
    background-size: cover;
    min-height: 650px;
    border-radius: 0.5rem;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.deal-to-action .group::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.2);
}

.deal-to-action .video-icon {
    border-radius: 50%;
    background-color: #346D0A;
    color: #346D0A;
    line-height: 60px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulseBig infinite 4s linear;
}

.deal-to-action .video-icon i {
    color: #B0E355;
    font-size: 1.5rem;
}

@keyframes pulseBig {
    0% {
        box-shadow: 0 0 0 0 #ffffff;
    }
    50% {
        box-shadow: 0 0 0 20px rgba(0, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.about-us {
    padding: 5rem 0 5rem 0;
}

.why-us {
    padding: 2rem 0 8rem 0;
}

.why-us .left-icon {
    position: relative;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
}

.why-us .left-icon:hover .icon {
    transform: translateY(-5px);
    transition-duration: 0.3s;
    background: #346D0A;
}

.why-us .left-icon .icon {
    background: #f5f5f5;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    margin: auto;
    transition-duration: 0.3s;
}

.why-us .left-icon .icon img {
    width: 50px;
    height: 50px;
}

.why-us .left-icon .text h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
}

.why-us .left-icon .text p {
    margin-bottom: 0;
    font-size: 0.75rem;
}

.testimonials {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    background-position: center center;
    position: relative;
}

.testimonials .test-con {
    padding-top: 3rem;
}

.testimonials .test-con .col img {
    margin: 0 auto;
    transition: all 0.2s ease-in;
}

.testimonials .test-con .col:hover img {
    transform: scale(0.9);
}

.testimonials .review-wrap {
    padding: 1rem;
    margin-right: 1rem;
    margin-left: 1rem;
}

.testimonials .client-pic {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.testimonials .client-pic .avatar {
    overflow: hidden;
    width: 9rem;
    height: 9rem;
    border-radius: 50%;
    background: #f5f5f5;
}

.testimonials .client-pic .avatar::before {
    content: "";
    background-image: url(../images/icons/qotes-icon.svg);
    width: 50px;
    height: 38px;
    position: absolute;
}

.testimonials .client-con {
    text-align: center;
    font-size: 0.875rem;
}

.testimonials .slick-arrow {
    top: 30%;
}

.blog .blog-card .cat {
    color: #B0E355;
    cursor: pointer;
}

.blog .blog-card .cat:hover {
    color: #346D0A;
}

.blog .blog-card .link-more {
    position: relative;
}

.blog .blog-card .link-more:before {
    position: absolute;
    content: "";
    width: calc(100% - 13px);
    height: 1px;
    left: 0;
    bottom: 4px;
    background-color: #B0E355;
    transition: all 0.3s ease;
}

.blog .blog-card .link-more:hover:before {
    width: 0;
}

.partner {
    position: relative;
}

.gallery-sec {
    padding: 23rem 0 4rem 0;
}

.gallery-sec .project-card {
    position: relative;
    width: 100%;
}

.gallery-sec .project-card figure {
    position: relative;
    overflow: hidden;
    margin: 0px;
    width: 100%;
    height: auto;
    text-align: center;
    cursor: pointer;
    min-height: 250px;
}

.gallery-sec .project-card figure img {
    position: relative;
    display: block;
    min-height: 100%;
    min-width: 100%;
    opacity: 0.8;
}

.footer {
    position: relative;
    padding: 3rem 0 1rem 0;
}

.footer:before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: whitesmoke;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.footer p {
    line-height: 2rem;
}

.footer .footer-link li {
    line-height: 2.5rem;
}

.footer .footer-link li i {
    color: #000000;
    font-size: 1.5rem;
    line-height: normal;
    vertical-align: middle;
}

.footer .footer-link li a {
    color: #000000;
    font-size: 0.875rem;
    padding: 0 0 0.5rem 0;
}

.footer .footer-link li a:hover {
    color: #B0E355;
    letter-spacing: 0.5px;
    padding-left: 0.5rem;
}

.footer .social a {
    color: #000000;
    background: #ffffff;
    margin-right: 4px;
    border-radius: 50%;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    width: 35px;
    height: 35px;
}

.footer .social a:hover {
    background: #B0E355;
}

.footer .form-subcriber {
    border-radius: 0.5rem;
    position: relative;
}

.footer .form-subcriber input {
    box-shadow: none;
    width: 100%;
    border: 0;
    border-radius: 0.5rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.footer .form-subcriber button {
    margin-left: 0.5rem;
}

.scrollup {
    overflow: hidden;
    position: fixed;
    height: 3.5rem;
    width: 3.5rem;
    line-height: 3.5rem;
    bottom: -5rem;
    right: 3rem;
    text-align: center;
    z-index: 2;
    background-color: rgba(52, 109, 10, 0.8);
    display: block;
    color: #ffffff;
    transition: all 0.5s cubic-bezier(0, 0, 0.15, 1.88);
    border-radius: 0.5rem;
}

.scrollup i {
    font-size: 1.5rem;
    display: inline-block;
    transition: all 0.5s ease-out;
}

.scrollup i:hover,
.scrollup i:focus {
    animation: toBottomFromTop 0.5s forwards;
}

.scrollup:hover,
.scrollup:focus {
    color: #B0E355;
}

.scrollup.back-top {
    bottom: 20px;
}

@keyframes toBottomFromTop {
    49% {
        transform: translateY(-20%);
    }
    50% {
        opacity: 0;
        transform: translateY(20%);
    }
    51% {
        opacity: 0;
    }
    80% {
        opacity: 1;
    }
}

/*# sourceMappingURL=main.css.map */