/*== Waving Animation == */
.bell-waving,
.hand-waving {
    animation-name: wave-animation;
    animation-duration: 2.5s;
    animation-iteration-count: infinite;
    transform-origin: 70% 70%;
}

.bell-waving {
    transform-origin: top;
}

@keyframes wave-animation {
    0% {
        transform: rotate(0.0deg)
    }

    10% {
        transform: rotate(14.0deg)
    }

    20% {
        transform: rotate(-8.0deg)
    }

    30% {
        transform: rotate(14.0deg)
    }

    40% {
        transform: rotate(-4.0deg)
    }

    50% {
        transform: rotate(10.0deg)
    }

    60% {
        transform: rotate(0.0deg)
    }

    100% {
        transform: rotate(0.0deg)
    }
}

/*== Hero 1 == */
.hero-1 {
    background-image: url(../../../img/bg/gradiant-bg-1.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow-x: clip;
    z-index: 1;
}

.hero-wrap {
    display: grid;
    grid-template-columns: 60% 1fr;
    grid-gap: 30px;
    align-items: center;
    position: relative;
}

@media (max-width: 992px){
    .hero-wrap{
        grid-template-columns: 1fr;
    }
}

.hero-1 .sub-heading {
    background-color: #ffe484;
    display: inline-flex;
    align-items: center;
    column-gap: 5px;
    border-radius: 3px;
    padding: 5px 15px;
    font-size: 16px;
    line-height: 1;
    margin-bottom: 20px;
}

.hero-1 .hand-waving {
    display: flex;
    align-items: center;
}

.hero-1 .hand-waving svg {
    width: 20px;
}

.hero-1 .sg-heading {
    font-weight: 700;
    letter-spacing: -1.5px;
    margin: 0;
}

.hero-content .desc {
    margin-top: 20px;
}

.hero-img-holder {
    width: 100%;
    height: 600px;
    position: relative;
    z-index: 1;
}

.hero-img-holder .animated-shape {
    background: #eceeff99;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    width: 700px;
    height: 700px;
    max-width: inherit;
    position: absolute;
    right: -60%;
    top: -25%;
    opacity: 0.3;
    animation: animated-shape 4s forwards infinite alternate;
}

.hero-img-holder .js-atropos {
    transform: translateY(90px);
}

.hero-img-holder img {
    object-fit: contain;
    object-position: center;
    width: 100%;
    height: 600px;
}

.hero-img-holder .atropos-inner {
    position: relative;
}

.hero-elements {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.hero-elements>div {
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
}

.hero-elements>div:nth-child(1) {
    background-image: url(../../../img/illustrations/hero-element01.png);
    background-position: left top;
    width: 50px;
    height: 55px;
    left: 42%;
    top: 3%;
    animation: softgen_left_right 4s forwards infinite alternate;
}

.hero-elements>div:nth-child(2) {
    background-image: url(../../../img/illustrations/hero-element02.png);
    background-position: right top;
    width: 80px;
    height: 72px;
    right: 0;
    top: 7%;
    animation: softgen_up_down 4s forwards infinite alternate;
}

.hero-elements>div:nth-child(3) {
    background-image: url(../../../img/illustrations/hero-element03.png);
    background-position: right top;
    width: 70px;
    height: 53px;
    right: -10%;
    top: 30%;
    animation: softgen_left_right 4s forwards infinite alternate;
}

.hero-elements>div:nth-child(4) {
    background-image: url(../../../img/illustrations/hero-element04.png);
    background-position: right bottom;
    width: 40px;
    height: 37px;
    right: 5%;
    top: 50%;
    animation: softgen_from_bottom_corner 4s forwards infinite alternate;
}

.hero-elements>div:nth-child(5) {
    background-image: url(../../../img/illustrations/hero-element05.png);
    background-position: left top;
    width: 60px;
    height: 52px;
    left: 22%;
    top: 30%;
    animation: softgen_scale_up_down 3s forwards infinite alternate;
}

@media (max-width: 992px) {
    .hero-1 p br {
        display: none;
    }

    .hero-1 .hero-content {
        margin-bottom: 50px;
        text-align: center;
    }

    .hero-1 .hero-content .sg-heading {
        font-size: 40px;
        line-height: 48px;
    }

    .hero-1 .hero-img-holder .js-atropos {
        transform: translateY(0);
        margin-left: -50px;
    }

    .hero-elements>div:nth-child(2) {
        right: 12%;
    }

    .hero-elements>div:nth-child(3) {
        right: 10%;
    }

    .hero-elements>div:nth-child(4) {
        right: 20%;
    }

    .hero-img-holder .animated-shape {
        right: -10%;
        top: 5%;
    }
}

@media (max-width: 767px) {
    .hero-1 {
        overflow: hidden;
    }

    .hero-wrap{
        grid-gap: 0;
    }

    .hero-1 .hero-content {
        margin-bottom: 0;
    }

    .hero-1 .hero-content .sg-heading {
        font-size: 28px;
        line-height: 36px;
    }

    .hero-1 .hero-img-holder {
        display: none;
    }

    .hero-1 .hexagon-pattern.left {
        width: 70%;
    }
}

@keyframes animated-shape {
    0% {
        border-radius: 40% 60% 59% 41% / 51% 44% 56% 49%;
    }

    100% {
        border-radius: 52% 48% 53% 47% / 52% 38% 62% 48%;
    }

}

/*== Hero 2 == */
.hero-2 {
    background-image: url(../../../img/bg/gradiant-bg-3.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-2 .hero-content .sub-heading {
    background: linear-gradient(90deg, #501E9C 0%, #8069F1 40%, #A45CEE 75%, #FF857F 100%);
    font-family: var(--softgen-primary-font, "Syne");
    display: inline-block;
    letter-spacing: 0;
    color: #fff;
    padding: 8px 20px;
    border-radius: 3px;
    font-size: 16px;
    line-height: 1;
}

.hero-2 .hero-content .sg-heading {
    font-size: 52px;
    font-weight: 700;
    line-height: 48px;
}

.hero-2 .hero-content .sg-heading span b {
    background: linear-gradient(90deg, #501E9C 0%, #8069F1 40%, #A45CEE 75%, #FF857F 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.app-illustrations {
    position: relative;
    height: 100vh;
}

.app-illustrations .hand-illustrations {
    width: auto;
    height: 500px;
    position: absolute;
    right: 20%;
    bottom: 0;
}

.app-illustrations .app-ui {
    position: absolute;
    left: 0;
    top: 28%;
}

.app-illustrations .app-ui img{
    width: 200px;
}

.app-illustrations .app-ui img,
.custom-img-wrap img{
    transition: all 0.3s ease-in-out;
}

.app-illustrations .bell {
    width: 100px;
    position: absolute;
    right: 30%;
    top: 30%;
}

.app-illustrations .notification {
    width: 50px;
    position: absolute;
    right: 25%;
    top: 28%;
}

.app-illustrations .animated-shape {
    background: linear-gradient(45deg, #501E9C 0%, #8069F1 40%, #A45CEE 75%, #FF857F 100%);
    width: 450px;
    height: 450px;
    position: absolute;
    left: -15px;
    top: 90px;
    animation: animated-shape 4s forwards infinite alternate;
}

@keyframes animated-shape {
    0% {
        border-radius: 40% 60% 59% 41% / 51% 44% 56% 49%;
    }

    100% {
        border-radius: 52% 48% 53% 47% / 52% 38% 62% 48%;
    }

}

.app-illustrations .coins img {
    width: 50px;
    height: auto;
    position: absolute;
}

.app-illustrations .coins img:nth-child(1) {
    width: 40px;
    right: 55%;
    bottom: 30%;
}

.app-illustrations .coins img:nth-child(2) {
    width: 45px;
    right: 45%;
    bottom: 24%;
}

.app-illustrations .coins img:nth-child(3) {
    width: 55px;
    right: 50%;
    bottom: 13%;
}

.app-illustrations .coins img:nth-child(4) {
    width: 60px;
    right: 40%;
    bottom: 9%;
}

.app-illustrations .coins img:nth-child(5) {
    width: 65px;
    right: 55%;
    bottom: 0%;
}

@media (max-width: 992px) {

    .app-illustrations {
        height: 500px;
    }

    .app-illustrations .animated-shape {
        left: 50%;
        top: 40px;
        transform: translateX(-50%);
    }

    .app-illustrations .app-ui {
        left: 25%;
        top: 10%;
    }
}

@media (max-width: 767px) {
    .app-hero .hero-content .sg-heading br {
        display: none;
    }

    .hero-2 .hero-content .sg-heading {
        font-size: 32px;
        line-height: 36px;
    }

    .animated-shape {
        width: 300px;
        height: 300px;
    }

    .app-illustrations .app-ui {
        width: 120px;
        left: 5%;
        -webkit-text-outline: 25%;
    }
}

/*== Hero 3 == */
.hero-3 {
    background-color: #1117a0;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-3 .hero-content .sub-heading {
    background-color: #ffe484;
    display: inline-flex;
    align-items: center;
    column-gap: 5px;
    border-radius: 3px;
    padding: 5px 15px;
    font-size: 16px;
    line-height: 1;
    margin-bottom: 20px;
}

.hero-3 .hero-content .sg-heading {
    color: #fff;
    font-size: 45px;
    line-height: 55px;
    font-weight: 700;
}

.hero-3 .hero-content .sg-heading span {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.hero-3 .hero-content .sg-heading span:before {
    background-color: #ffe484;
    content: "";
    width: 100%;
    height: 8px;
    position: absolute;
    left: 0;
    bottom: 5px;
    z-index: -1;
}

.hero-3 .hero-content .desc {
    color: #ddd;
}

.hero-3 .saas-illustrations {
    position: relative;
    padding-top: 80px;
    display: block;
}

.hero-3 .saas-illustrations img {
    width: 400px;
    margin: 0 auto;
}

.hero-3 .saas-illustrations img:nth-child(2) {
    width: 200px;
    position: absolute;
    left: -15%;
    top: 30%;
}

.hero-3 .saas-illustrations img:nth-child(3) {
    width: 200px;
    position: absolute;
    right: 5%;
    bottom: 5%;
}

@media(max-width: 982px) {
    .hero-3 .saas-illustrations {
        text-align: center;
        padding-top: 40px;
    }

    .hero-3 .saas-illustrations img:nth-child(2) {
        left: 0;
    }
}

@media(max-width: 767px) {
    .hero-3 {
        height: auto;
        padding: 120px 0;
    }
}

/*== Hero 4 == */
.hero-4 {
    background-image: url(../../../img/bg/gradiant-bg-2.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-4 .hero-content .sg-heading {
    font-size: 52px;
}

.hero-4 .hero-content .sg-heading span {
    -webkit-text-stroke: 2px var(--softgen-dark-color, #191d28);
    -webkit-text-fill-color: transparent;
}

.hero-4 .hero-content .desc {
    font-size: 18px;
    color: var(--softgen-dark-color, #191d28);
}

.hero-4 .default-btn {
    background: #00c16e;
}

.tech-img-holder {
    position: relative;
    width: 100%;
    height: 100vh;
}

.tech-img-holder img {
    position: absolute;
    right: 0;
    bottom: 0;
}

.tech-img-holder:before {
    background-color: #ffe484;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    content: "";
    position: absolute;
    left: 5%;
    top: 20%;
}

@media (max-width: 992px) {
    .hero-4 {
        height: auto;
    }

    .hero-4 .hero-content {
        padding-top: 120px;
    }

    .tech-img-holder {
        height: 770px;
        margin-top: 40px;
    }

    .it-content-img {
        margin: 0 auto;
    }
}


@media (max-width: 767px) {
    .hero-4 .hero-content .sg-heading {
        font-size: 42px;
        line-height: 48px;
    }

    .tech-hero .hero-content .sg-heading br {
        display: none;
    }

    .tech-hero .hero-content .sg-heading span {
        -webkit-text-stroke: 1px var(--softgen-dark-color, #191d28);
    }

    .tech-img-holder {
        height: 350px;
    }
}