
/* font */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap');
/* variable */
:root {     
    --alt-font: 'Bebas Neue', sans-serif;
    --primary-font: 'Raleway', sans-serif;
    --title-font:"Indie Flower", cursive;
    --base-color: #338763;
    --yellow: #ffd40c;
    --dark-gray: #0f0f14;
    --medium-gray:#5d5d64;
    --orange:#E43D12;
} 

.title-font {
  font-family: var(--title-font);
}

.bg-section {
  background-color: var(--base-color) !important;
}

/* reset */
body {
    font-size: 17px;
    font-weight: 500;
    background-color: var(--base-color) !important;
}

/*page loader*/
.page-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #338763 !important;
  }

  body {
    overflow: hidden;
  }
 
  .flowercontainer {
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #338763 !important;
  }
  
  .flower {
    position: relative;
    animation: rotation 3000ms ease-in-out infinite;
  }
  .flower__center {
    position: relative;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #FFBB00;
    z-index: 10;
    animation: center 3000ms ease-in-out infinite;
  }
  
  .flower__leaf {
    position: absolute;
    top: 13px;
    left: 14px;
  }

.leaf__1::after {
  animation: leaf_1 3000ms ease-in-out infinite;
}
.leaf__2:after {
  animation: leaf_2 3000ms ease-in-out infinite;
}
.leaf__3:after {
  animation: leaf_3 3000ms ease-in-out infinite;
}
.leaf__4:after {
  animation: leaf_4 3000ms ease-in-out infinite;
}
.leaf__5:after {
  animation: leaf_5 3000ms ease-in-out infinite;
}
.leaf__6:after {
  animation: leaf_6 3000ms ease-in-out infinite;
}
.leaf__7:after {
  animation: leaf_7 3000ms ease-in-out infinite;
}
.leaf__1 {
  transform: rotate(51.4285714286deg);
}
.leaf__2 {
  transform: rotate(102.8571428571deg);
}
.leaf__3 {
  transform: rotate(154.2857142857deg);
}
.leaf__4 {
  transform: rotate(205.7142857143deg);
}
.leaf__5 {
  transform: rotate(257.1428571429deg);
}
.leaf__6 {
  transform: rotate(308.5714285714deg);
}
.leaf__7 {
  transform: rotate(360deg);
}

.leaf::after {
  background: white;
  content: "";
  position: absolute;
  width: 3rem;
  height: 3rem;
  border-radius: 0 100%;
  transform-origin: top left;
  transform: scale(0);
}

@keyframes center {
  0% {
    transform: scale(0.1) translate(50%, 50%);
  }
  5% {
    transform: translateY(0) scale(1);
  }
  8% {
    transform: translateY(0) scale(1.15);
  }
  9%, 98% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes leaf_1 {
  0%, 4% {
    transform: scale(0) translateY(0);
  }
  12% {
    transform: scale(1) translateY(1%);
  }
  16% {
    transform: scale(1.1) translateY(1%);
  }
  19%, 90% {
    transform: scale(1) translateY(1%);
  }
  91%, 100% {
    transform: scale(0) translateY(0);
  }
}
@keyframes leaf_2 {
  0%, 12% {
    transform: scale(0) translateY(0);
  }
  16% {
    transform: scale(1) translateY(1%);
  }
  22% {
    transform: scale(1.1) translateY(1%);
  }
  25%, 90% {
    transform: scale(1) translateY(1%);
  }
  91%, 100% {
    transform: scale(0) translateY(0);
  }
}
@keyframes leaf_3 {
  0%, 16% {
    transform: scale(0) translateY(0);
  }
  22% {
    transform: scale(1) translateY(1%);
  }
  28% {
    transform: scale(1.1) translateY(1%);
  }
  31%, 90% {
    transform: scale(1) translateY(1%);
  }
  91%, 100% {
    transform: scale(0) translateY(0);
  }
}
@keyframes leaf_4 {
  0%, 22% {
    transform: scale(0) translateY(0);
  }
  28% {
    transform: scale(1) translateY(1%);
  }
  32% {
    transform: scale(1.1) translateY(1%);
  }
  33%, 90% {
    transform: scale(1) translateY(1%);
  }
  91%, 100% {
    transform: scale(0) translateY(0);
  }
}
@keyframes leaf_5 {
  0%, 28% {
    transform: scale(0) translateY(0);
  }
  34% {
    transform: scale(1) translateY(1%);
  }
  40% {
    transform: scale(1.1) translateY(1%);
  }
  43%, 90% {
    transform: scale(1) translateY(1%);
  }
  91%, 100% {
    transform: scale(0) translateY(0);
  }
}
@keyframes leaf_6 {
  0%, 34% {
    transform: scale(0) translateY(0);
  }
  40% {
    transform: scale(1) translateY(1%);
  }
  46% {
    transform: scale(1.1) translateY(1%);
  }
  49%, 90% {
    transform: scale(1) translateY(1%);
  }
  91%, 100% {
    transform: scale(0) translateY(0);
  }
}
@keyframes leaf_7 {
  0%, 40% {
    transform: scale(0) translateY(0);
  }
  46% {
    transform: scale(1) translateY(1%);
  }
  52% {
    transform: scale(1.1) translateY(1%);
  }
  55%, 90% {
    transform: scale(1) translateY(1%);
  }
  91%, 100% {
    transform: scale(0) translateY(0);
  }
}
@keyframes rotation {
  0%, 60% {
    transform: rotate(0deg);
  }
  80% {
    transform: rotate(360deg);
  }
  84% {
    transform: scale(1);
  }
  85% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes leaf {
  0%, 4% {
    transform: scale(0) translateY(0);
  }
  12% {
    transform: scale(1) translateY(1%);
  }
  16% {
    transform: scale(1.1) translateY(1%);
  }
  18%, 85% {
    transform: scale(1) translateY(1%);
  }
  87%, 100% {
    transform: scale(0) translateY(0);
  }
}
/* end preloader */

.bg-orange{
    background-color: var(--orange);
}

.maslilivideo {
    object-fit: cover;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index:-3;
}

.headervideo {
    position: fixed;
    width: 100vw;
    height: 100vh;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
 }

 @keyframes fadeOut {
  0%, 80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeIn {
  0%, 80% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fade-out-title {
  animation: fadeOut 30s linear forwards;
}

.fade-in-title {
  animation: fadeIn 30s linear forwards;
}

 .headervideo span {
    color: var(--green);
    font-family: var(--title-font);
    font-weight: 400;
    font-style: normal;
    font-size: 20vw;
    text-align: center; 
    /*background-color: rgba(256,256,256, 0.4);*/   
  }

.masliliabout {
    background: rgba(0,0,0, 0.4);
    color: white;
    position: fixed;
    width: 100%;
    bottom: 0px;
    padding: 1rem;
    p {
      margin: 0.3rem auto;
      text-align: center;
    }
}

.navbar-toggler {
  font-size: 24px;
  width: 40px;
  height: 20px;
}

.navbar-toggler-line{
    background:white !important;
}

.left-modern-sidebar .toggle-icon {
  position: absolute;
  top: 50%;
  left: 25%;
  z-index: 9;
  -webkit-transform: translate(-12px, -50%);
  transform: translate(-12px, -50%);
}

.contact p{
    margin-bottom:0px !important;
}

a.contact:link, a.contact:visited{
    color: white !important; 
}

a.contact:hover{
    color: var(--dark-gray) !important; 
}

/* primary font */
.primary-font {
    font-family: var(--primary-font) !important;
}
/* section */
section {
    padding-top: 0px;
    padding-bottom: 50px;
}
/* icon */
.icon-double-large {
    font-size: 70px;
}
/* header */
.navbar-nav .nav-item .nav-link:hover{
    color: red !important;
}
.left-modern-menu .left-modern-header .navbar-brand img {
    max-height: 40px;
}
.menu-item-list .nav-link {
    font-size: 30px;
    font-family: var(--title-font);
    line-height: 30px;
    padding: 7px 20px 0 0;
}
.left-modern-menu .left-modern-header .modern-side-menu {
    padding: 75px 0;
    border-left: 1px solid #18181e;
}
.left-modern-menu .left-modern-header .modern-side-menu .mCustomScrollBox .mCSB_container {
    padding: 0;
}
.menu-item-list .menu-item {
    border-bottom: 1px solid #18181e;
    padding: 10px 60px;
}
.menu-item-list .menu-item:last-child {
    border-bottom: 0;
}
.menu-item-list .active .nav-link {
    opacity: 1; 
    color: var(--base-color);
}
.menu-item-list .nav-link:hover {
    opacity: 1;
    color: var(--base-color);
}
/* letter spacing */
.ls-15px {
    letter-spacing: 15px;
}
/* margin top bottom */
.mt-minus-30px {
    margin-top: -30px;
}
.mt-minus-50px {
    margin-top: -50px;
}
/* font size */
.fs-460 {
    font-size: 460px;
}
/* word break normal */
.word-break-normal {
    word-break: normal;
}
/* text color */
.text-black-russian-gray {
    color: #1d1d23;
}
/* bg color */
.bg-black-russian-gray {
    background-color: #1d1d23;
}
.bg-payne-gray {
    background-color: #45454a;
}
/* portfolio creative */
.portfolio-creative .portfolio-box .portfolio-title::after {
    letter-spacing: 0;
    font-size: 145px;
    top: 0;
}
.portfolio-creative .portfolio-box .portfolio-title::before {
    top: 20px; 
}
.portfolio-creative .grid-item .popup-vimeo {
    display: block;
}
.portfolio-creative .portfolio-box i {
    margin-left: 3px;
}
/* tracklist style */
.tracklist-style:hover {
    background-color: #17171d;
}
/* countdown style 03 */
.countdown-style-03 .countdown-box {
    width: 90px;
    margin: 0 5px;
    text-align: left;
}
.countdown-style-03 .countdown-box .number {
    color: var(--white);
    font-size: 63px;
    line-height: 65px;
    font-weight: 400;
    letter-spacing: 1px;
}
.countdown-style-03 .countdown-box span {
    font-size: 14px;
    line-height: 16px;
    font-weight: 700;
    position: relative;
    top:-14px;
}
/* swiper number pagination progress */
.swiper-number-pagination-progress .swiper-pagination-wrapper .swiper-pagination-progress {
    background-color: #212128;
}
.swiper-number-pagination-progress .swiper-pagination-wrapper .number-prev, .swiper-number-pagination-progress .swiper-pagination-wrapper .number-next {
    color: var(--white); 
}
.services-box-style-01 .icon-box {
    margin-top: 0;
}
/* stack box */
.stack-box {
    height: 200vh;
}
/* footer */
.footer-navbar a {
    color: var(--white);
    text-transform: uppercase;
    font-size: 15px;
    padding: 0 30px;
}
footer {
    padding-top: 100px;
    padding-bottom: 100px;
}
.playicon {
    bottom: 50px;
}
/* media query responsive */
@media (max-width: 1600px){
    section {
        padding-top: 0px;
        padding-bottom: 110px;
    }
}
@media (max-width: 1399px) {
    .fs-460 {
        font-size: 370px;
    }
}
@media (max-width: 1199px) {
    .cover-background {
        background-position: 62% 0 !important;
    }
    .fs-460 {
        font-size: 270px;
    }
    section {
        padding-bottom: 95px;
    }
}
@media (max-width: 991px) {
    .cover-background {
        background-position: 65% 0 !important;
    }
    .countdown-style-03 .countdown-box {
        width: 85px;
    }
    .countdown-style-03 .countdown-box .number {
        font-size: 60px;
        line-height: 62px;
    }
}
@media (max-width: 767px) {
    section {
        padding-top: 50px;
        padding-bottom: 70px;
    }
    .mt-minus-50px {
        margin-top: -10px;
    }
    .menu-item-list .menu-item {
        padding: 10px 35px;
    }
    .menu-item-list .nav-link {
        font-size: 30px;
        line-height: 34px;
    }
    .left-modern-menu .left-modern-header .modern-side-menu {
        padding: 40px 0;
    }
}
@media (max-width: 575px) {
    .cover-background {
        background-position: 62% 0 !important;
    }
    .playicon {
        bottom: -10px;
    }
    .video-icon-box{
        width: 30px;
        height: 30px;
    }
    .countdown-style-03 .countdown-box {
        width: 45%;
    }
    .countdown-style-03 .countdown-box .number {
        text-align: center;
    }
    .countdown-style-03 .countdown-box span {
        text-align: center;
        width: 100%;
        display: block;
        margin-top: 5px;
    }
}