@font-face {
    font-family: poppins;
    src: url("../fonts/Poppins-Light.ttf");
}

@font-face {
    font-family: poppins-bold;
    src: url("../fonts/Poppins-ExtraBold.ttf");
}

:html {
    font-family: poppins;
}
.font-bold {
    font-family: poppins-bold;
}

.btn {
    padding: 0.75rem 2rem;
    border-radius: 1111111px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

p {
    font-size: 0.8rem;
}

.group-hover-block {
    opacity: 0;
    visibility: hidden;
    z-index: -1000;
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 220ms;
}

.group:hover .group-hover-block {
    opacity: 1;
    visibility: visible;
    z-index: 1000;
}

.video_banner_p:hover .pause {
    opacity: 1;
}

.video_banner_p .pause {
    opacity: 0;
}

.floating_particles1 {
    z-index: 1;
    position: absolute;
    animation: movine_1 50s linear infinite;
}

@keyframes movine_1 {
    0% {
        top: 100%;
        left: 20%;
    }
    100% {
        top: 0;
        left: 100%;
    }
}

.floating_particles2 {
    z-index: 1;
    position: absolute;
    animation: movine_2 50s linear infinite;
}

@keyframes movine_2 {
    0% {
        top: 100%;
        left: 100%;
    }
    100% {
        top: 0;
        left: 0%;
    }
}

.floating_particles3 {
    z-index: 1;
    position: absolute;
    animation: movine_3 50s linear infinite;
}

@keyframes movine_3 {
    0% {
        top: 80%;
        left: 20%;
    }
    100% {
        top: 40;
        left: 100%;
    }
}

.floating_particles4 {
    z-index: 1;
    position: absolute;
    animation: movine_4 50s linear infinite;
}

@keyframes movine_4 {
    0% {
        top: 0%;
        left: 80%;
    }
    100% {
        top: 100;
        left: 20%;
    }
}

.floating_particles5 {
    z-index: 1;
    position: absolute;
    animation: movine_5 50s linear infinite;
}

@keyframes movine_5 {
    0% {
        top: 20%;
        left: 0%;
    }
    100% {
        top: 90;
        left: 70%;
    }
}
.floating_particles6 {
    z-index: 1;
    position: absolute;
    animation: movine_6 50s linear infinite;
}

@keyframes movine_6 {
    0% {
        top: 60%;
        left: 30%;
    }
    100% {
        top: 80;
        left: 10%;
    }
}

.why_use_grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media screen and (min-width: 0px) {
    .why_use_grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(6, 1fr);
        gap: 1rem;
    }

    .why_use_grid .div1 {
        grid-area: 1 / 1 / 5 / 2;
    }
    .why_use_grid .div2 {
        grid-area: 5 / 1 / 7 / 2;
    }
    .why_use_grid .div3 {
        grid-area: 1 / 2 / 7 / 3;
    }
    .why_use_grid .div4 {
        grid-area: 1 / 3 / 4 / 5;
    }
    .why_use_grid .div5 {
        grid-area: 4 / 3 / 7 / 5;
    }
}

.circular_after {
    position: relative;
    z-index: 2;
}
.circular_after::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    height: 3rem;
    border-left-width: 3px;
    border-color: #9085da;
}

.circular_after.gray::after {
    border-style: dashed !important;
    border-color: #ced6f0 !important;
}

.mobile-nav-items:hover,
.mobile-nav-items-active {
    background-color: #f5f5f5;
    border-left-color: #333 !important;
}
.mobile-nav-items {
    transition-duration: 0.3s;
    cursor: pointer;
    border-left: 5px solid;
    border-left-color: transparent;
}


html{
  overflow-x: hidden;
}

@media screen and (max-width:991px) {
  :root{
    font-size: 12px !important;
  }
}

.tag__line{
    clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 6% 50%, 0% 0%);
}

@media (max-width:640px){
    .tag__line{
        clip-path: none;
    }
    
    .tag__line > p {
        text-align: center !important;
    }
}