@font-face { font-family: MabryPro-Regular; src: url('../fonts/MabryPro-Regular.ttf'); } 
@font-face { font-family: FlyTrap-Extended; src: url('../fonts/FlyTrap-Extended.ttf'); } 

html {
    position: relative;
    height: 100%;
    scroll-behavior: smooth;
}
body{
    font-family: MabryPro-Regular;
    width: 100%;
    overflow-x: hidden;
    padding: 0px;
    margin: 0px;
    background-color: #000000;
    color: #FFFFFF;
}
.nopadding{
    padding: 0px !important;
}
.sec-pad{
    padding: 100px 0px;
}
a, a:hover{
    color: inherit;
    text-decoration: none;
}
p{
    font-size: 23px;
    line-height: 30px;
    color: #D9D9D9;
}


/*header*/
.header{
    background-color: transparent;
    padding: 10px 0px;
    position: relative;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    z-index: 999;
    -webkit-transition: all ease .5s;
    transition: all ease .5s;
}
.sticky-bar{
    position: fixed;
    background-color: #060000;
    padding: 5px 0px;
    border-bottom: 1px solid #2E2E2E;
    -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
}
.logo{
    width: 100%;
    max-width: 130px;
    height: auto;
}
.sticky-bar .logo{
    max-width: 75px;
}
.navbar{
    padding: 0px;
}
.navbar-toggler svg{
    color: rgb(255 255 255 / 80%);
}
#navbar-hamburger.show{
    display: block;
}
#navbar-hamburger, #navbar-close{
    display: none;
}
#navbar-close.show{
    display: block;
}
.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    transition: all ease .5s;
    font-size: 21px;
    color: #D9D9D9;
    position: relative;
}
.nav-link:focus, .nav-link:hover {
    color: #fff;
}
.nav-link.active{
    color: #fff;
}
.navbar-expand-lg .navbar-nav .nav-link {
    margin-right: 30px;
    margin-left: 30px;
}
.header .socials{
    margin-left: 30px;
}
@media (min-width: 1200px){
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0px;
        padding-left: 0px;
        margin-right: 50px;
        margin-left: 50px;
    }
    .header .socials{
        margin-left: 50px;
    }
}

/*content div*/

.title-line{
    display: block;
    font-size: 20px;
    line-height: 20px;
    font-family: FlyTrap-Extended;
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.title{
    font-size: 55px;
    line-height: 50px;
    font-family: FlyTrap-Extended;
    margin-bottom: 50px;
}
.hero-content .title-line{
    font-size: 23px;
    line-height: 25px;
}
.hero-content .title{
    font-size: 60px;
    line-height: 55px;
}
.hero-img-box{
    box-shadow: 0px 10px 23px #FF4C4C59;
    border: 15px solid #161616;
    border-radius: 10px;
    max-width: 580px;
    height: auto;
    display: inline-block;
}
.users-div{
    display: inline-flex;
    align-items: center;
    text-align: left;
}
.user-imgs{
    margin-right: 20px;
}
.user-imgs img{
    display: inline-block;
    margin-left: -35px;
}
.user-imgs img:first-child{
    margin-left: 0px;
}
.users-count{
    font-size: 25px;
    line-height: 25px;
    font-family: FlyTrap-Extended;
    margin-bottom: 0px;
    color: #fff;
}
.users-text{
    font-size: 20px;
    margin-bottom: 0px;
}
.carousel-item {
    transition: transform 0s ease-in-out;
}
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    transition: opacity 0s 0s;
}
.theme-btn{
    background: linear-gradient(262deg, #7AC943 0%, #FF0000 100%);
    border-radius: 50px;
    border: none;
    display: inline-flex;
    align-items: center;
    color: #fff!important;
    font-size: 18px;
    line-height: 20px;
    padding: 18px 40px;
    box-shadow: none!important;
    outline: 0!important;
    position: relative;
    overflow: hidden;
}
.theme-btn span{
    display: inline-block;
    margin-top: -3px;
}
.theme-btn:after {
    background: #fff;
    content: "";
    height: 155px;
    left: -75px;
    opacity: .2;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 2s cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
    z-index: 99;
}
.theme-btn:hover:after {
    left: 120%;
    transition: all 2s cubic-bezier(0.19, 1, 0.22, 1);
}
.collection-img-div{
    display: inline-block;
    background-color: #000;
    border: 1px solid #3A3A3A;
    margin-bottom: 20px;
}
.white-bg{
    background-color: #fff;
}
.btn-close{
    box-shadow: none!important;
    outline: 0!important;
}

/*footer*/

.footer{
    background-color: #060000;
    border: 1px solid #2E2E2E;
    padding: 30px 0px;
}
.footer ul{
    display: block;
    text-align: center;
    padding: 20px 0px;
}
ul.links li{
    list-style: none;
    display: inline-block;
    padding: 0px 50px;
    font-size: 21px;
}
ul.links li a:hover{
    text-decoration: underline;
}
ul.socials li{
    list-style: none;
    display: inline-block;
    padding: 0px 20px;
    transition: all ease .5s;
}
ul.socials li:hover{
    transform: rotate(360deg);
}


/*backgrounds*/

.relative-div{
    position: relative;
    overflow: hidden;
}
.relative-9{
    position: relative;
    z-index: 9;
}
.blur-layer{
    background-color: rgb(0 0 0 / 78%);
    backdrop-filter: blur(50px);
    -webkit-backdrop-filter: blur(50px);
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.red-bg-div{
    height: 700px;
    width: 700px;
    background-color: #FF0000;
    border-radius: 50%;
    opacity: 0.7;
    position: absolute;
    z-index: 0;
}
.green-bg-div{
    height: 600px;
    width: 1000px;
    background-color: #7AC943;
    border-radius: 288px;
    opacity: 0.86;
    position: absolute;
    z-index: 0;
}
.about-bg1{
    right: -300px;
    top: 40px;
}
.about-bg2{
    left: -300px;
    bottom: 100px;
}
.collections-bg1{
    left: -300px;
    top: 80px;
}
.collections-bg2{
    right: -300px;
    top: 20%;
}
.home-bg1{
    left: -300px;
    bottom: 80px;
}
.home-bg2{
    right: -300px;
    top: 0px;
    height: 750px;
}

.leaf-img{
    position: absolute;
    z-index: 2;
    opacity: .22;
}
.hero-leaf1{
    right: 80px;
    top: 0px;
}
.hero-leaf2{
    right: 50%;
    top: 100px;
}
.hero-leaf3{
    right: 48%;
    bottom: 50px;
}
.hero-leaf4{
    left: 100px;
    top: 150px;
}
.hero-leaf5{
    left: -45px;
    bottom: 30px;
}
.hero-leaf6{
    right: -110px;
    bottom: 0px;   
}
.about-leaf1{
    left: 80px;
    top: 120px;
}
.about-leaf2{
    left: 50%;
    top: 200px;
}
.about-leaf3{
    left: 35%;
    bottom: 10px;
}
.about-leaf4{
    right: 180px;
    top: 50%;
}
.about-leaf5{
    right: -45px;
    bottom: 30px;
}
.about-leaf6{
    left: -110px;
    bottom: 0px;   
}
.collection-leaf1{
    right: 80px;
    top: 200px;
}
.collection-leaf4{
    left: 100px;
    top: 10%;
}
.collection-leaf5{
    left: -45px;
    bottom: 30%;
}
.collection-leaf6{
    right: -50px;
    bottom: 10%;   
}


.bobbleReverse {
    animation-name: bobbleReverse;
    animation-iteration-count: infinite;
    animation-duration: 4s;
    animation-timing-function: linear;
    animation-direction: alternate-reverse;
    pointer-events: none;
}
.bobble{
    animation-name: bobble;
    animation-iteration-count: infinite;
    animation-duration: 4s;
    animation-timing-function: linear;
    animation-direction: alternate-reverse;
}
.zoomeffect{
    animation-name: zoomeffect;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}
.floating{
    animation-name: floating;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}
@keyframes bobbleReverse {
   0% {
         transform: translate3d(0, 0, 0px);
         animation-timing-function: ease-in;
   }
   100% {
         transform: translate3d(-20px, -30px, 0px);
   }
}
@keyframes bobble {
   0% {
       transform: translate3d(0, 0, 0px);
       animation-timing-function: ease-in;
   }
   100% {
       transform: translate3d(30px, 50px, 0px);
   }
}
@keyframes floating {
    from { transform: translate(0,  0px); }
    65%  { transform: translate(0, 20px); }
    to   { transform: translate(0, -0px); }    
}
@keyframes zoomeffect{
    0%{
        transform:scale(1,1);
    }
    50%{
        transform:scale(1.1,1.1);
    }
    100%{
        transform:scale(1,1);
    }
}