html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Nunito', sans-serif;
	color: #000000;
	font-size: 14px;
	overflow-x: hidden;
}
.caveat {
    font-family: 'Caveat', cursive;
}

.letter-spacing{
    letter-spacing: 1px;
}
html::-webkit-scrollbar {
    width: 10px; 
 }

html::-webkit-scrollbar-thumb {
    background: var(--purple-clr);
    border-radius: 25px;
  }
/* Color CSS */

:root{
    --purple-clr: #FA7224;
	--theme-gradient: #64FE4B;
	/* --theme-gradient: linear-gradient(91.28deg, #6137F7 0%, #4D7FFA 100%);
    --theme-gradient1: linear-gradient(91.28deg, #4D7FFA 0%, #6137F7 100%); */
}
.purple-clr{
    color: var(--purple-clr);
}

.white-clr {
	color: #fff;
}
.green-clr{
    color: #21AF21;
}
.green-clr2{
    color: #86c63a;
}
.black-clr {
	color: #000;
}
.red-clr {
	color: #EF3E3A;
}
.orange-clr{
    color:#FD433C;
}
.red-clr a{
	color: #EF3E3A;
    text-decoration: none;
}
.theme-clr{
    color: var(--purple-clr);
    /* background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}
.theme-clr1{
    background: var(--theme-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.br-gradient {
    border-bottom: 2px solid var(--purple-clr);
    border-image-slice: 1;
    width: 100%;
}

.br-gradient2 {
    border-bottom: 2px solid var(--theme-gradient);
    border-image-slice: 1;
    width: 100%;
}
.warning-section{
    background: #ECF1FF;
    padding: 10px 0px;
}
.offer {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    flex-direction: row;
}

/* Header CSS */
.header-section {
	background: #080a1c;
	padding: 30px 0px 50px 0px;
}

.preheadline {
    border-radius: 10px;
    border: 1px solid #43C5ED;
    padding: 9px 20px;
    display: inline-block;
    background: linear-gradient(to right, rgba(67, 197, 237,20%) 0%, rgba(67, 237, 184,10%) 100%);
}
.video-box{
    position: relative; 
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(217, 217, 217, 0.03) 100%);
	backdrop-filter: blur(5px); 
    border-radius: 15px;
    border: 5px solid #227AF2;
}
.hr{
	mix-blend-mode: overlay;
}
.thank-section {
    background: #ECF1FF;
    padding: 30px 0px;
}

/* button border animation css start */
@property --border-gradient-angle {
    syntax: "<angle>";
    inherits: true;
    initial-value: 0turn;
  }
  /* .btn-border{
    border: 10px solid #A6FF004D;
    display: inline-block;
    border-radius: 20px;
    transition: ease 0.3s;
    } */
    .btn-border:hover{
        transform: scale(1.1);
    }
    .btn-border {
        padding: 4px;
        border-radius: 10px;
        transition: ease 0.3s;
        display: inline-block;
        position: relative;
        background-image: conic-gradient(from var(--border-gradient-angle) at 50% 50%, transparent, #4AFFFF4D 14%, #4AFFFF 19%, transparent 17%);
        background-size: contain;
        background-color:transparent;
        animation: rotateBG 5s linear infinite;
    }
    .btn-border1 {
        padding: 4px;
        border-radius: 10px;
        transition: ease 0.3s;
        display: inline-block;
        position: relative;
        background-image: conic-gradient(from var(--border-gradient-angle) at 50% 50%, transparent, #4AFFFF4D 14%, #4AFFFF 19%, transparent 17%);
        background-size: contain;
        background-color:#ffffff;
        animation: rotateBG 5s linear infinite;
    }
  
  @keyframes rotateBG {
    0% {
      --border-gradient-angle: 0turn;
    }
    100% {
      --border-gradient-angle: 1turn;
    }
  }

  /* button border animation css end */

/* .probtn1{
    border: 10px solid rgba(253, 67, 60, 0.20);
    border-radius: 20px;
    display: inline-block;
} */
/* .probtn1 a {
    transition: all .3s ease;
    border-radius: 15px;
    border-radius: 10px;
    background: var(--theme-gradient);
    text-decoration: none;
    text-align: center;
    display: block;
    padding: 12px 12px;
    color: #ffffff;
    border: none;
    font-weight: 800;
    width: 100%;
    font-size: 24px;
    line-height: 140%;
    border-radius: 10px;
    
}
.probtn1 a:hover {
    transition: all .3s ease;
    background: var(--theme-gradient1);
} */

a.affiliate-link-btn {
	border-radius: 10px;
	border-radius: 10px;
	background: #fff;
	text-decoration: none;
	text-align: center;
    display: inline-block;
	padding: 10px 28px;
	font-size: 18px;
	color: var(--black-clr);
	transition: all .3s ease;
	animation: blink 1.5s linear infinite;
}

@keyframes blink {
  0%{
    color: #fff;
  }  
  100%{
    color: #000;
  }
} 

.theme-btn {
    background: var(--theme-gradient);
    padding: 15px 6px;
    border-radius: 10px;
    display: inline-block;
    text-decoration: none;
    transition: all .3s ease;
}
.theme-btn1 {
    background: var(--theme-gradient);
    padding: 15px 14px;
    border-radius: 10px;
    display: inline-block;
    text-decoration: none;
    transition: all .3s ease;
}
/* .btn-border{
    border: 10px solid rgba(166, 255, 0, 0.3);
    display: inline-block;
    border-radius: 20px;
    transition: ease 0.5s;
} */
.btn-border:hover{
    transform: scale(1.1);
}
.btn-border1:hover{
    transform: scale(1.1);
}
.theme-btn:hover{
    color: #000000;
    background: var(--theme-gradient);
}
.theme-btn1:hover{
    color: #000000;
    background: var(--theme-gradient);
}

.feature-box{
    border: 10px solid #ffffff;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.icon-box-p{
    border-radius: 10px 10px 0px 0px;
    padding: 10px;
}

.icon-box1{
    background: #DFFAFE;
}
.icon-box2{
    background: #F2E8FF;
}
.icon-box3{
    background: #FEE5E4;
}
.icon-box4{
    background: #CAD3FF;
}
.icon-box5{
    background: #E4FFD8;
}
.icon-box5{
    background: #E4FFD8;
}
.icon-box6{
    background: #F3F2D2;
}
.text-box{
    background: #252525;
    border-radius: 0px 0px 5px 5px;
    padding: 25px;
}
.text-box1{
    background: #252525;
    border-radius: 0px 0px 5px 5px;
    padding: 25px;
}
.reason-section{
    background-color: #ECF1FF;
    padding: 30px 0px;
}
.reason-text{
    background: var(--theme-gradient);
    padding: 10px;
    border-radius: 20px;
    display: inline-block;
}


@media (max-width: 767px){
    .mainheading-text{
        font-style: italic;
        background: linear-gradient(90deg, #72F3E9 0%, #CFA8FF 50%, #FACEAB 100%);
        border-radius: 10px;
        padding: 0px 10px;
    }
}

@media(min-width:768px){
	.header-section {
        background:#080a1c url(https://cdn.oppyotest.com/launches/gethumanaiforce/unlimited/header-bg.webp) no-repeat center center;
	    background-size: cover;
		padding: 30px 0px 100px 0px;
	}
    .mainheading-text{
        font-style: italic;
        background: linear-gradient(90deg, #72F3E9 0%, #CFA8FF 50%, #FACEAB 100%);
        border-radius: 10px;
        padding: 0px 10px;
    }
    .preheadline{
        padding: 10px 50px;
	  }
      .theme-btn, .theme-btn1{
        padding: 25px 30px;
    }
    a.affiliate-link-btn {
		padding: 10px 28px !important;
        font-size: 24px;
	}
    .icon-box-p{
        padding: 43px 65px;
    }
    .text-box{
        padding: 33px 25px;
    }
    .text-box1{
        padding: 16px 25px 14px;
    }
    .reason-section{
        padding: 100px 0px;
    }
	/* .probtn1 a {
        font-size: 30px;
        padding: 35px 30px;
        display: inline-block;
        width: auto;
    } */
    .thank-section {
        padding: 100px 0px;
    }
    .reason-text{
        background: url("https://cdn.oppyotest.com/launches/gethumanaiforce/unlimited/frame-1.webp") no-repeat;
        background-size: 100% 100%;
        padding: 11px 35px 9px 40px;
        border-radius: 0px;
    }
}

/* List-section */
.header-list-block {
    border-radius: 20px;
    /* padding: 20px 0px; */
    border: double 2px var(--purple-clr);
    /* background-image: linear-gradient(#fff, #fff), #A6FF00;
    background-origin: border-box;
    background-clip: content-box, border-box; */
    box-shadow: 0px 0px 19.8px 2.2px rgb(0 0 0 / 15%);
    margin: 0px;
}

.converting-shape {
    background-color: #ffb703;
    padding: 10px 30px;
    display: inline-block;
    border: 2px dashed #020d13;
    line-height: 30px;
	 border-radius: 65px;
}
@media (min-width: 768px) {
	.converting-shape {
    padding: 15px 40px 15px 40px;
    line-height: 100%;
}
    .highlihgt-heading {
        position: relative;
        padding: 15px 20px;
    }
	/* .header-list-block {
    padding: 80px 30px 30px;
} */
}

.second-section {
    padding: 30px 0px;
	background: #ffffff;
}

.formbg {
    padding: 20px;
}

@media(min-width:768px) {
    .second-section {
        padding: 100px 0px;
    }
    .formbg {
        padding: 50px;
    }
}
/* .video-box {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
    backdrop-filter: blur(5px);
    border-radius: 20px;
} */


.feature-list {
	padding: 15px;
    margin-top: 30px;
    list-style-type: none;
    min-height: 100px;
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 15px;
    background: #FFEED6;
    border: 3px solid #FFFFFF;
    box-shadow: -5px 5px 15px rgb(0 0 0 / 15%);
    border-radius: 15px;
}

.grey-section1 {
    background: #ffffff;
    padding: 40px 0px;
}
.inner-box{
    background: #ffffff;
    padding: 8px;
    border-radius: 10px;
}
.unlimited-box1{
    background: #dffafe;
    padding: 20px 50px;
    border-radius: 10px 10px 0px 0px;
}

.black-box{
    background: #000000;
    padding: 20px 0px;
    border-radius: 0px 0px 10px 10px;
}

@media (min-width: 768px){
.grey-section1 {
    padding: 100px 0px 60px;
}
}
/* List section End */

.third-section {
	padding: 30px 0px 30px 0px;
    background: #ffffff;
}

.third-list li{
    background: url(https://cdn.oppyotest.com/launches/gethumanaiforce/unlimited/vgreytick.webp) no-repeat;
    list-style: none;
    text-align: left;
    padding: 20px 10px 0px 50px;
    background-position: 15px 19px;
    line-height: 150%;
    color: #fff;
}

.exciting-inner-sec {
	background: url(https://cdn.oppyotest.com/launches/gethumanaiforce/unlimited/exiciting-inner-bg.webp) no-repeat center center;
	background-size: cover;
	padding: 20px 15px;
	backdrop-filter: blur(3px);
	border-radius: 15px;
	max-width: 95%;
	margin: 0px auto;
}

@media (min-width: 768px) {
	.third-section {
		padding: 100px 0px 100px 0px;
	}

	.exciting-inner-sec {
		padding: 100px 0px;
		border-radius: 50px;
		width: 95%;
	}
}

@media(min-width:1600px) {
	.exciting-inner-sec {
		max-width: 85%;
	}
}

/* Presenting Section Start */
.presenting-sec{
    background: #0b0519;
	padding: 40px 0px;
	position: relative;
}
.presenting-head {
    border-radius: 30px;
    background: #ffffff;
    border: 1px solid #FA7224;
    backdrop-filter: blur(4px);
    display: inline-block;
    padding: 8px 26px
}

@media(min-width:768px){
	.presenting-sec {
        background:#ffffff url(https://cdn.oppyotest.com/launches/gethumanaiforce/unlimited/introducing.webp) no-repeat bottom center;
        background-size: cover;
		padding: 80px 0px 150px;
	}
    .presenting-head {
        background: url(https://cdn.oppyotest.com/launches/gethumanaiforce/unlimited/proudly-head.webp) no-repeat;
        background-size: 100% 100%;
        border-radius: unset;
        border: unset;
        padding: 4px 45px 14px;
    }
}

/* Presenting Section End */


/********features*********/

.white-section {
	/* background: #fff; */
	padding: 30px 0px 0px;
}

.grey-section {
	/* background: #FEF1E1; */
	padding: 30px 0px 0px;
}

.feature-sec{
    background: #ffffff;
}

.features-title {
	display: flex;
	align-items: center;
    justify-content: center;
	flex-wrap: nowrap;
	flex-direction: row;
	gap: 15px;
}
.features-heading{
    position: relative;
}

.features-title .size {
	max-height: 100px;
}

.grey-section-last{
    padding: 30px 0px;
}

@media (min-width:768px) {
	.white-section {
		padding: 40px 0;
	}
    .features-heading:before{
        background: url(https://cdn.oppyotest.com/launches/gethumanaiforce/unlimited/power-icon-left.webp) no-repeat;
        position: absolute;
        width: 65px;
        height: 65px;
        top:12px;
        left:130px;
        content: '';
    }
    .features-heading:after{
        background: url(https://cdn.oppyotest.com/launches/gethumanaiforce/unlimited/power-icon-right.webp) no-repeat;
        position: absolute;
        width: 65px;
        height: 65px;
        top:12px;
        right:130px;
        content: '';
    }

	.grey-section {
		padding: 40px 0;
	}
    .grey-section-last{
        padding: 40px 0px 100px;
    }
}


/* Good Section Start */

.good-section {
    background: linear-gradient(90deg, #EAFAF8 0%, #F7F2FE 50%, #FDF4ED 100%);
	padding: 30px 0px;
}

ul.good-list {
	padding: 0px;
	margin: 0px;
}

ul.good-list li {
	background: url(https://cdn.oppyotest.com/launches/gethumanaiforce/unlimited/point-icon.webp) no-repeat;
	list-style: none;
	text-align: left;
	padding: 20px 10px 20px 40px;
	background-position: 0px 22px;
}

@media (min-width: 768px) {
	.good-section {
		padding: 100px 0px;
	}
}

.moneyback-section {
    background: #090317;
    background-position: center center;
    background-size: cover;
    padding: 30px 0 30px;
}
.brown-frame1 {
    background: url(https://cdn.oppyotest.com/launches/gethumanaiforce/unlimited/brown-frame1.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 10px 20px;
}

@media (min-width: 768px) {
	.moneyback-section {
		padding: 100px 0 100px 0px;
		background: url(https://cdn.oppyotest.com/launches/gethumanaiforce/unlimited/moneyback-bg.webp) no-repeat;
		background-position: center center;
		background-size: cover;
	}
    .brown-frame1 {
        padding: 0px 20px;
    }
}
.bonus-section {
	background: #f1effb;
	padding: 30px 0;
}

.bonus-section-shape {
    /* display: inline-block; */
    border-radius: 10px;
    border: 1px solid var(--purple-clr);
    background: #ffffff;
    /* backdrop-filter: blur(25px); */
    height: 100%;
    padding: 20px;
}
.bonus-headline-top {
    padding: 4px 55px;
    display: inline-block;
    text-align: center;
    background: url(https://cdn.oppyotest.com/launches/gethumanaiforce/unlimited/bonus-head.webp) no-repeat center center;
    background-size: 100% 100%;
}
.margin-t-30 {
    margin-top: -30px;
}

.img-box img{
    width: 70%;
}

.img-box1 img{
    width: 90%;
}


@media (min-width: 768px) {
	.bonus-section {
		background: url(https://cdn.oppyotest.com/launches/gethumanaiforce/unlimited/bonus-bg.webp) no-repeat center bottom;
		background-size: cover;
		padding: 70px 0px 100px 0px;
	}
    .bonus-section-shape {
        padding: 55px 30px 30px;
    }
    .margin-t-78 {
        margin-top: -66px;
    }
}


/*Table CSS Start*/

.table-section{
    background: #ECF1FF;
    padding: 30px 0px;
}

/* 
ul.vgreytick {
    padding: 0px 0px;
}

ul.vgreytick li {
    background: url(https://cdn.oppyotest.com/launches/gethumanaiforce/unlimited/vgreytick.png) no-repeat;
    list-style: none;
    text-align: left;
    padding: 20px 10px 20px 40px;
    background-position: 20px 28px;
    line-height: 150%;
    border-bottom: 1px solid #e7e7e7;
    color: #000;
}

ul.vgreytick li:last-child {
    border-bottom: 0px;
}

ul.vgreytick li:nth-child(odd) {
    background-color: #fcf5fd;
}

ul.vgreentick li {
    background: #ffffff url(https://cdn.oppyotest.com/launches/gethumanaiforce/unlimited/vgreentick.png) no-repeat;
    list-style: none;
    text-align: left;
    padding: 20px 10px 20px 55px;
    background-position: 20px 25px;
    line-height: 150%;
    color: #000;
} */

.bought-text {
    background: #ffeb09;
    padding: 8px 10px;
}

.lightcolor {
    color: #eaab26;
}

.bg-white{
    background-color: #ffffff;
}


.tablebox2 {
    /* border: 1px solid #074281; */
    box-shadow: 0px 0px 22px 0px rgb(0 0 0 / 20%);
    width: 100%;
    float: left;
    border-radius: 20px;
}
.tbbg2 {
    background: #ffffff;
    padding: 80px 30px 60px 30px;
    background-size: 100% 100%;
    border-radius: 10px 10px 0px 0px;
}
ul.vgreytick {
    padding: 0px 0px;
    margin: 0px;
}
ul.vgreytick li:nth-child(odd) {
    background-color: #fcf5fd;
}
ul.vgreytick li {
    background: url("https://cdn.oppyotest.com/launches/gethumanaiforce/unlimited/vgreytick.webp") no-repeat;
    list-style: none;
    text-align: left;
    padding: 20px 10px 20px 50px;
    background-position: 20px 28px;
    line-height: 150%;
    border-bottom: 1px solid #e7e7e7;
    color: #000;
}
/* tbbg3 */
.tablebox3 {
    width: 100%;
    float: left;
    /* background: #200d68; */
    border-radius: 25px 25px 20px 20px;
    border: double 10px transparent;
    background-image: linear-gradient(#ffffff, #ffffff), linear-gradient(90deg, #0177FA 0%, #00AFF1 100%);
    background-origin: border-box;
    background-clip: content-box, border-box;
    /* box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 15%); */
    position: relative;
}
.tbbg3 {
    background: url(https://cdn.oppyotest.com/launches/gethumanaiforce/unlimited/premium-table.webp) no-repeat;
    background-size: 100% 100%;
    padding: 15px 20px 80px 20px;
    border-radius: 15px 15px 0px 0px;
    min-height: 250px;
}

.commercial {
    background: #FCBB2F;
    border-radius: 48px;
    padding: 1% 5%;
    display: inline-block;
}

ul.vgreytick-1 li {
    background:#fff url("https://cdn.oppyotest.com/launches/gethumanaiforce/unlimited/vgreytick.webp") no-repeat;
    list-style: none;
    text-align: left;
    padding: 20px 10px 20px 50px;
    background-position: 20px 24px;
    line-height: 150%;
    border-bottom: 1px solid #e7e7e7;
    color: #000;
}
ul.vgreytick-1 li.headline {
    background: var(--theme-gradient);
    padding: 26px 0px 20px 0px;
    background-position: 0px 18px;
    list-style: none;
    margin: 0px;
    border-bottom: none !important;
    font-weight: 700;
    text-align: center;
    color: #fff !important;
}
@media (min-width: 768px) {
    ul.vgreytick li {
        padding: 24px 10px 24px 50px;
    }

    .tbbg3 {
        background:#ffffff url(https://cdn.oppyotest.com/launches/gethumanaiforce/unlimited/premium-table.webp) no-repeat;
        background-size: 100% 100%;
        padding: 60px 20px 80px 20px;
        border-radius: 27px 27px 0px 0px;
        min-height: 500px;
    }

    .tablebox3 {
        border-radius: 40px 40px 20px 20px;
    }

       ul.vgreytick-1 li {
    padding: 24px 10px 24px 50px;
    background-position: 13px 26px;
      }

    .mt-sm-170 {
        margin-top: 170px
    }
    .mt-sm-90 {
        margin-top: 90px
    }
    .probtn a {
    font-size: 42px;
    padding: 28px 30px;
    }

}

.buypad {
    padding: 4% 3%;
}

.myfeatures {
    float: left;
    padding: 25px 6px;
    width: 100%;
    min-height: 69px;
    border-bottom: 1px solid #ded7d7;
}

.myfeaturess {
    background: #f5f5f5;
    float: left;
    padding: 37px 6px;
    width: 100%;
    min-height: 69px;
}

.myfeatureslast {
    float: left;
    padding: 15px;
    width: 100%;
    min-height: 69px;
    background: #ffffff;
    border-radius: 0px 0px 15px 15px;
}

.ribbonimg {
    position: absolute;
    top: 100px;
    right: 0px;
    height: 50px;
}

.xs-height125 {
    height: 125px;
}

.xs-height50 {
    height: 55px;
}

.ribbonimg {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 90px;
}

.thanks-button a {
    width: 100%;
    display: inline-block;
    text-decoration: none;
    color: #240f75;
}
.probtn1 a {
    border-radius: 10px;
    transition: all 0.3s ease-in-out ;
    background: var(--theme-gradient);
    text-decoration: none;
    text-align: center;
    display: inline-block;
    padding: 15px 12px;
    color: #000;
    border: none;
    font-weight: 700;
    width: 100%;
    font-size: 22px;
    line-height: 140%;
    position: relative;
}
.probtn1 a:hover {
    background: var(--theme-gradient);
    text-decoration: none;
}


@media(min-width:768px) {
    .highlihgt-heading {
        position: relative;
        padding: 25px 25px 20px;
        transform: skew(-7deg);
    }
    .rotate-5 {
        transform: skew(7deg);
    }
    .ribbonimg {
        position: absolute;
        top: -153px;
        right: -65px;
        height: 162px;
        z-index: 10;
    }
    .table-section{
        background: url(https://cdn.oppyotest.com/launches/gethumanaiforce/unlimited/table-bg.webp) no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
        padding: 100px 0px;
    }
    .probtn1 a {
        font-size: 28px;
        padding: 27px 22px;
    }
    .f-md-100 {
        font-size: 100px !important;
    }
}


/*Table CSS Enad*/

.footer-section {
	background: #000000;
	padding: 30px 0;
}

.footer-ul {
	padding: 0
}

.footer-ul li {
	display: inline;
	line-height: 130%;
}

.footer-ul li:hover a {
	color: #fff;
}

@media(min-width:768px) {
	.footer-section {
		padding: 50px 0px;
	}

}

a.nothank {
	color: #EF3E3A;
	text-decoration: none;
}

.feature-shape {
    border-radius: 10px;
    background: var(--purple-clr);
    padding: 10px 20px;
    display: inline-block;
}


.post-head{
    border-radius: 10px;
    /* border: 1px solid rgba(74, 255, 255, 0.5); */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(50px);
    padding: 10px;
    display: inline-block;
}
@media(min-width:768px){
.post-head{
    padding: 10px 25px;
}
}

/* ========SWIPE SECTION=========== */
.template-section {
	background: #F1F1F1;
    padding: 0px 0px 30px 0px;
}
@media(min-width:768px){
	.template-section {
		padding: 0px 0px 100px 0px;
	}
}

/* ================AMAZING SECTION======== */
.amazing-section {
    padding: 30px 0;
    background: #1d1140;
}
@media(min-width:768px){
	.amazing-section {
        background: url(https://cdn.oppyotest.com/launches/gethumanaiforce/unlimited/moneyback-bg.webp) no-repeat center center;
        background-size: cover;
		padding: 90px 0;
	}
}

/* scroll section */
.swiper-section{
	background: #F1F1F1;
	padding: 30px 0px 10px;
}
.purple-brush{
    color: var(--purple-clr);
}
@media (min-width:768px) {
	.swiper-section{
		padding: 100px 0px 30px;
	}
    .purple-brush {
        /* background: linear-gradient(180deg, rgba(250, 114, 36, 0) 40%, #FA7224 100%); */
        color: #ffffff;
        position: relative;
        padding: 0px 5px;
        z-index: 1;
    }
    .purple-brush::after {
        content: '';
        background: linear-gradient(180deg, rgba(250, 114, 36, 0) 0%, #FA7224 100%);
        position: absolute;
        bottom: 4px;
        right: 0px;
        width: 100%;
        height: 30px;
        z-index: -1;
    }
}
/* scroll section */

.bonus-title-bg {
    background: #7c58ff;
    padding: 16px 40px 12px 40px;
    display: inline-block;
    border-radius: 50px;
    text-align: center;
    color: #fff;
}


.bussiness-card .item, .owl-carousel .item{
   
    box-shadow:15px 0px 20px rgba(0, 0, 0, 0.20);
    }

.video-frame video{
    /* border: 2px solid rgba(0, 0, 0, 0.2); */
    border-radius: 10px;
}    

.logos-effect img:hover {
    transform: scale(1.1);
}

.logos-effect img {
    transition: 0.3s;
}

img.vert-move {
    animation: mover 1s infinite  alternate;
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}
/* ul.vgreytick li:nth-child(odd) {
    background-color: #ffffff;
} */
.warning-box img {
    min-width: 52px;
    max-height: 50px;
    margin-right: 14px;
}
.warning-box {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 24px;
}
.fixed-top-bar{
    position: sticky;
    top: 0;
    z-index: 99;
}
.btn-accent {
    background: var(--theme-gradient);
    color: #000;
}
.btn-medium {
    padding: 0px 18px;
    /* border: 2px solid #6137F7 !important; */
    font-size: 18px;
    line-height: 33px;
    border-radius: 10px;
    text-transform: uppercase;
    border: 0;
    /* animation: blink 1.5s linear infinite; */
}

@media (min-width: 768px){
    .warning-box {
        font-size: 16px;
    }
    .btn-medium {
        padding: 10px 28px;
        font-size: 24px;
    }
}


@keyframes blink {
  0%{
    color: #fff;
  }  
  100%{
    color: #000;
  }
}
.btn-accent:hover {
    color: #000;
}
.step-group {
    text-align: center;
    position: relative;
    overflow: hidden;
}
.tp-step .highlighted.style4 {
    position: relative;
    z-index: 2;
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    background: #89ADE2;
    border-radius: 20px;
    color: #fff;
}
@media (min-width: 768px){
    .step-group:after {
        content: "";
        width: 100%;
        height: 2px;
        border-top: 2px dashed rgba(237, 108, 104, 0.4);
        position: absolute;
        left: 50%;
        top: 15px;
        transform: translatex(-50%);
        -webkit-transform: translatex(-50%);
        -moz-transform: translatex(-50%);
        -ms-transform: translatex(-50%);
        -o-transform: translatex(-50%);
    }
}

/* new featur css */

.yellow-border-card{
    /* border: 1px solid #6137F7; */
    padding: 40px;
    border-radius: 10px;
    background: #191919;
    backdrop-filter: blur(25px);
}
@media (max-width : 767px){
    .yellow-border-card{
        padding: 15px;
    }
}
/* new featur css */

#scroll {
    position:fixed;
    right:10px;
    bottom:10px;
    cursor:pointer;
    width:50px;
    height:50px;
    background: var(--purple-clr);
    text-indent:-9999px;
    display:none;
    -webkit-border-radius:60px;
    -moz-border-radius:60px;
    border-radius:60px
}
#scroll span {
    position:absolute;
    top:50%;
    left:50%;
    margin-left:-8px;
    margin-top:-12px;
    height:0;
    width:0;
    border:8px solid transparent;
    border-bottom-color:#ffffff;
}
#scroll:hover {
    background: var(--purple-clr);
    opacity:1;filter:"alpha(opacity=100)";
    -ms-filter:"alpha(opacity=100)";
}

/* success start */
.success-sec{
    background: #fff;
    padding: 30px 0px;
}

.inter-btn a {
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    background: #03CF0B;
    box-shadow: 0px 6px 14px -1px rgb(0 0 0 / 45%);
    text-decoration: none;
    text-align: center;
    display: inline-block;
    padding: 15px 12px;
    color: #ffffff;
    border: none;
    font-weight: 700;
    width: 100%;
    font-size: 24px;
    line-height: 140%;
    position: relative;
}
.inter-btn a:hover{
    color: #fff;
}
.inter-btn-1 a {
    background-color: #FF2929;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 6px 14px -1px rgb(0 0 0 / 45%);
    text-decoration: none;
    text-align: center;
    display: inline-block;
    padding: 15px 12px;
    color: #ffffff;
    border: none;
    font-weight: 700;
    width: 100%;
    font-size: 24px;
    line-height: 140%;
    position: relative;
}

.inter-btn-1 a:hover{
    color: #fff;
}
.inter-btn a:hover{
    background-color: #00a806;
}
.inter-btn-1 a:hover{
    background-color: #eb0a0a;
}
@media (min-width: 768px){
    .success-sec{
        padding: 60px 0px 100px;
    } 
    .inter-btn a , .inter-btn-1 a {
        font-size: 30px;
        padding: 28px 30px;
    }
}
