html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Nunito', sans-serif;
	color: #252525;
	font-size: 14px;
	overflow-x: hidden;
}
.poppins{
    font-family: 'Poppins', sans-serif;
}
.caveat {
    font-family: 'Caveat', cursive;
}
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);
}

.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;
}
.green-clr{
    color: #21AF21;
}
.green-clr2{
    color: #86c63a;
}
.white-clr {
	color: #fff;
}
.green-clr3 {
    color: #21AF21;
}
.blue-clr{
	color: #227AF2;
}

.black-clr {
	color: #252525;
}
.orange-clr{
	color: #FB591B;
}
.red-clr {
    color: #EF3E3A;
}
.theme-gradient{
	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: var(--theme-gradient); */
    border-image-slice: 1;
    width: 100%;
}
.br-gradient1 {
    border-bottom: 2px solid #6137F7;
    /* border-image: var(--theme-gradient); */
    border-image-slice: 1;
    width: 100%;
}
.caveat {
    font-family: 'Caveat', cursive;
}

a.affiliate-link-btn {
	border-radius: 10px;
	border-radius: 10px;
	background: #fff;
	text-decoration: none;
	text-align: center;
	display: block;
    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;
  }
}

.warning-section{
    background-color: #ECF1FF;
    padding: 10px 0px;
}
.offer{
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    flex-direction: row;
}

/* Header Section CSS */
.header-section {
	background: #080a1c;
	padding: 30px 0px 50px 0px;
}

/* .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;
} */


.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;
}

.Magically-text {
    background: #1B1441;
    border-bottom: 1px solid #5136E5;
    display: inline-block;
}
.mainheading-text{
    font-style: italic;
    background: linear-gradient(90deg, #72F3E9 0%, #CFA8FF 50%, #FACEAB 100%);
    border-radius: 10px;
    padding: 0px 10px;
}

/* 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 */
  .purple-brush {
    color: var(--purple-clr);
}

@media(min-width:768px) {
	.header-section {
        background:#fff url(https://cdn.oppyotest.com/launches/gethumanaiforce/traffic/header-bg.webp) no-repeat bottom center;
	    background-size: cover;
		padding: 30px 0px 100px 0px;
	}
	.post-head{
		padding: 10px 25px;
	}
    .Magically-text {
        padding: 0px 7px;
    }
    .mainheading-text{
        font-style: italic;
        background: linear-gradient(90deg, #72F3E9 0%, #CFA8FF 50%, #FACEAB 100%);
        border-radius: 10px;
        padding: 0px 10px;
    }
    a.affiliate-link-btn {
		padding: 10px 28px !important;
        font-size: 24px;
	}
	.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;
    }
}

.theme-btn {
    background: var(--theme-gradient);
    /* border: 2px solid #231865; */
    padding: 15px 14px;
    border-radius: 10px;
    display: inline-block;
    text-decoration: none;
    transition: all .3s ease;
}
.theme-btn1 {
    background: var(--theme-gradient);
    /* border: 2px solid #ffffff; */
    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, .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);
}
@media (min-width: 768px){
.theme-btn, .theme-btn1{
    padding: 35px 20px;
}
}

/* .probtn1 a {
	transition: all .3s ease;
	border-radius: 15px;
	background: var(--theme-gradient);
	text-decoration: none;
	text-align: center;
	display: block;
	padding: 15px 12px;
	color: #ffffff;
	border: none;
	font-weight: 700;
	width: 100%;
	font-size: 24px;
	line-height: 140%;
}

.probtn1 a:hover {
	transition: all .3s ease;
	background: var(--theme-gradient1);
} */
.second-section {
	padding: 30px 0px;
	background: #ffffff;
}
@media (min-width:768px) {
	/* .probtn1 a {
		font-size: 38px;
		padding: 28px 60px;
		display: inline-block;
		width: auto;
		border-radius: 10px;
	} */
	.second-section {
		padding: 100px 0px;
	}
}


.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: #fff;
	border: 3px solid #B5D1FF;
	box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.15);
	border-radius: 15px;
}

.white-section {
	/* background: #fff; */
	padding: 30px 0px 0px;
}

.feature-sec{
    background: #ffffff;
}

.grey-section {
	/* background: #ffffff; */
	padding: 30px 0px 0px;
}
.grey-section1 {
	/* background: #ffffff; */
	padding: 30px 0px 0px;
}

.features-title {
	display: flex;
	align-items: center;
    justify-content: center;
	flex-wrap: nowrap;
	flex-direction: row;
	gap: 15px;
}

.features-title .size {
	max-height: 100px;
}

.features-heading{
    position: relative;
}

@media (min-width: 768px) {
	.white-section,
	.grey-section {
		padding: 40px 0px;
	}
	.grey-section-last{
		padding: 40px 0px 100px;
	}
    .features-heading:before{
        background: url(https://cdn.oppyotest.com/launches/gethumanaiforce/traffic/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/traffic/power-icon-right.webp) no-repeat;
        position: absolute;
        width: 65px;
        height: 65px;
        top:12px;
        right:130px;
        content: '';
    }
    .grey-section1 {
        /* background: #ffffff; */
        padding: 30px 0px 70px;
    }
}

.moneyback-section {
	background: #090317;
    padding: 30px 0px;
}
.hr {
    mix-blend-mode: overlay;
}
@media (min-width: 768px) {
	.moneyback-section {
		padding: 100px 0px;
		background:  url(https://cdn.oppyotest.com/launches/gethumanaiforce/traffic/prize-value.webp) no-repeat center top;
		background-size: 100% 100%;
	}
}

.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/traffic/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/traffic/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 Section Start */

.table-section {
    background: #ECF1FF;
    padding: 30px 0
}

.tablebox2 {
    background: #191919;
    width: 100%;
    float: left;
    border-radius: 32px 32px 23px 23px;
    /* box-shadow: 0px 0px 22px 0px rgb(0 0 0 / 20%); */
    border: 10px solid #232323;
    transform: scale(0.9);
}

.tbbg2 {
    background: #232323;
    padding: 30px;
    background-size: cover;
    border-radius: 16px 16px 0 0;
}

.myfeatureslast {
    float: left;
    padding: 30px;
    width: 100%;
    min-height: 69px;
    color: #fff;
    background: #232323;
    border-radius: 0 0 20px 20px;
    border-top: 0
}

ul.grey-tick-last {
    padding: 0
}

ul.grey-tick-last li {
    background: url(https://cdn.oppyotest.com/launches/gethumanaiforce/traffic/table-tick.webp) no-repeat;
    list-style: none;
    text-align: left;
    padding: 15px 15px 15px 50px;
    background-position: 15px 22px;
    color: #08041e
}


/* ul.vgreytick li:last-child {
    border-bottom: 0
} */

/* ul.vgreytick li:nth-child(odd) {
    background-color: #ffffff;
}

ul.vgreytick li:nth-child(even) {
    background-color: rgba(201, 125, 239, 0.12);
}

ul.vgreytick1 li:nth-child(odd) {
    background-color: #ffffff;
}

ul.vgreytick1 li:nth-child(even) {
    background-color: rgba(201, 125, 239, 0.12);
    color: #000;
} */

.tablebox3 {
    width: 100%;
    height: 100%;
    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;
    float: left;
    border-radius: 32px 32px 23px 23px;
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 15%);
    position: relative;
}

.tbbg3 {
    background: #000;
    padding: 50px 30px 30px 30px;
    background-size: 100% 100%;
    border-radius: 7px 7px 0 0;
}

.tablebox3 ul {
    padding-left: 0;
    color: #010101
}

ul.vgreytick {
    padding: 0
}

.tablebox2 ul {
    padding-left: 0;
    color: #010101;
}

ul.vgreytick li {
    background: url(https://cdn.oppyotest.com/launches/gethumanaiforce/traffic/table-tick.webp) no-repeat;
    list-style: none;
    text-align: left;
    padding: 15px 15px 15px 50px;
    background-position: 15px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    /* background: #000; */
    color: #fff;
}

ul.vgreytick1 li {
    background:#fff url(https://cdn.oppyotest.com/launches/gethumanaiforce/traffic/table-tick.webp) no-repeat;
    list-style: none;
    text-align: left;
    padding: 15px 15px 15px 50px;
    background-position: 18px 17px;
    color: #000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}


/* ul.vgreytick li:last-child {
    border-bottom: 0
} */

.myfeatureslastborder {
    float: left;
    padding: 30px;
    width: 100%;
    border-radius: 0 0 20px 20px;
    min-height: 69px;
    background: #fff
}

.thanks-button a {
    width: 100%;
    display: inline-block;
    text-decoration: none;
    color: #2447a2;
}

.commercial{
    background: #ffffff;
    border-radius: 48px;
    padding: 1% 5%;
    display: inline-block;
}

.commercial1{
    background: #ffffff;
    border-radius: 48px;
    padding: 1% 5%;
    display: inline-block;
}

.table-sale {
    background: url(https://cdn.oppyotest.com/launches/gethumanaiforce/traffic/table-sale.webp) no-repeat;
    background-size: 100% 100%;
    padding: 11px 60px;
    display: inline-block;
}

.mt-top{
    margin-top: -26%;
}

@media(min-width:768px){
    .table-section {
        background: url(https://cdn.oppyotest.com/launches/gethumanaiforce/traffic/table-bg.webp) no-repeat center center;
        background-size: cover;
        background-attachment: fixed;
        padding: 100px 0;
    }
    .gx-6 {
        --bs-gutter-x: 4rem
    }
    .tbbg2 {
        min-height: 235px;
        padding:50px 30px 50px 30px;
        background-size: 100% 100%;
    }
    ul.vgreytick li, ul.vgreytick1 li {
        padding: 20px 15px 20px 62px;
        background-position: 22px 18px;
    }
    .tbbg3 {
        min-height: 235px;
        padding: 50px 30px 50px 30px;
        background-size: 100% 100%;
    }    
    ul.grey-tick-last li {
        padding: 20px 15px 20px 65px;
        background-position: 30px 27px
    }
    .myfeatureslast {
        padding: 30px
    }
    .table-sale {
        padding: 11px 70px;

    }

    .mt-top{
        margin-top: -14.80%;
    }
}

/* Table Section End */

.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;
	}

	.footer-ul li {
		line-height: normal;
	}

}

a.nothank {
	color: #EF3E3A;
	text-decoration: none;
}

/* Presenting Section Start */
.proudly-sec {
    padding: 30px 0px;
	background: #0b0519;
}   
.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){
	.proudly-sec {
		padding: 100px 0px 150px 0px;
		background:#ffffff url(https://cdn.oppyotest.com/launches/gethumanaiforce/traffic/introducing.webp) bottom center no-repeat;
    	background-size: cover;
	}
    .presenting-head {
        background: url(https://cdn.oppyotest.com/launches/gethumanaiforce/traffic/proudly-head.webp) no-repeat;
        background-size: 100% 100%;
        border-radius: unset;
        border: unset;
        padding: 4px 45px 14px;
    }
}

/* Presenting Section End */

.feature-shape {
    border-radius: 10px;
    background: var(--purple-clr);
    padding: 10px 20px;
    display: inline-block;
}

.bonus-title-bg {
    background: var(--purple-clr);
    padding: 16px 40px 12px 40px;
    display: inline-block;
    border-radius: 50px;
    text-align: center;
    color: #fff;
}
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: #F7F2FD;
} */

.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;
}

.header-list-block > div{
	padding: 15px;
}
.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: #000000;
}
.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; */
}
.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){
    .warning-box {
        font-size: 16px;
    }
    .btn-medium {
        padding: 10px 28px;
        font-size: 24px;
    }
    .probtn1 a {
        font-size: 28px;
        padding: 27px 22px;
    }
}

@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){
	.header-list-block > div{
		padding: 30px;
	}
    .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);
}
.brown-frame1 {
    background: url(https://cdn.oppyotest.com/launches/gethumanaiforce/traffic/brown-frame1.webp) no-repeat;
    background-size: 100% 100%;
    display: inline-block;
    padding: 10px 20px;
}

@media (max-width : 767px){
    .yellow-border-card{
        padding: 15px;
    }
    .brown-frame1 {
        padding: 0px 20px;
    }
}
/* 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;
    }
}

/* revenue-sec start */
.revenue-sec{
    background: #ECF1FF;
    padding: 30px 0px;
}

@media (min-width: 768px){
    .revenue-sec{
        padding: 100px 0px;
    }
}
/* revenue-sec end */

/* offer-sec start */
.offer-sec{
    background: #ffffff;
    padding: 30px 0px;
}

.offer-h{
    background: #ebf0ff;
    display: inline-block;
    border: 3px solid #2d5ff9;
    border-radius: 10px;
    padding: 10px;  
}

@media (min-width: 768px){
    .offer-sec{
        padding: 100px 0px;
    }
    .offer-h{
        background: url(https://cdn.oppyotest.com/launches/gethumanaiforce/traffic/offers-h.webp) no-repeat;
        background-size: 100% 100%;
        border: unset;
        border-radius: 0px;
        padding: 25px 30px;
    }
}
/* offer-sec end */

/* End section start */

.end-sec{
    background:#ECF1FF;
    padding: 30px 0px;
}

.end-h{
    background: var(--theme-gradient);
    border: 1px solid var(--theme-gradient);
    border-radius: 20px;
    display: inline-block;
    padding: 10px;
}

.end-bottom{
    background: #ffffff;
    border: 1px solid #7f8fbc;
    display: inline-block;
    border-radius: 10px;
    padding: 10px;
}

@media (min-width: 768px){
    .end-sec{
        padding: 100px 0px 70px;
    }
    .end-h{
        padding: 20px 97px 24px 96px;
    }
    .end-bottom{
        background: url(https://cdn.oppyotest.com/launches/gethumanaiforce/traffic/end-bottom.webp) no-repeat;
        background-size: 100% 100%;
        border: unset;
        border-radius: 0px;
        padding: 20px 39px;
    }
    
}

/* End section end */