/*
[Master Stylesheet] 
Project:50K Subscriber Deal FE HTML
-------------------------------------------------------------------*/
/********************************************************
1. body start
 *******************************************************/
 body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;	  	
	-webkit-font-smoothing: antialiased;
    overflow-x:hidden;    
    font-family: "Outfit", sans-serif;           
}
html {
  scroll-behavior: smooth;
}
*,*:before,*:after{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
a, a:hover, a:focus{	
	text-transform: capitalize;
	text-decoration: none;
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
h1, h2, h3, h4, h5, h6{	
	-webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
	margin:0;
	padding:0;	
	word-break: break-word;             
}
img, video {
	max-width: 100%;
}
input, textarea, select, button, label, svg, svg path, svg rect, svg polygon, img, a, :after, :before, :hover, :focus, .form-control:focus{
	outline: none !important;
	box-shadow:none;
}
ul{
	padding:0;
	margin:0;
	list-style-type: none;
}
p {
  margin: 0px;
  word-break: break-word;  
}
/* Scroll */
::-webkit-scrollbar {
    width: 5px;
} 
::-webkit-scrollbar-track {
    background-color: #fff;
    -webkit-border-radius: 10px;    
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    height: 100px;    
    background-image:linear-gradient(71deg, #0e96ff 0%, #8e33ff 100%);
}
/* Scroll */
/* Bottom To Top CSS Start */
#scrollToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-image:linear-gradient(71deg, #0e96ff 0%, #8e33ff 100%);    
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -12rem;
    transition: margin-bottom 0.2s;    
    z-index: 9;
    cursor: pointer;
}
#scrollToTop span {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    text-transform: capitalize;
}
#scrollToTop.active{
    margin-bottom: 0;
}
#scrollToTop:hover {
    animation-name: BottomTop;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
@keyframes BottomTop {
    to {
      transform: rotate(2500deg);
    }
  }
/* Bottom To Top CSS End */

/* Common CSS */
.deal_bg_cover{
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.deal_flex{
    display: flex;
    justify-content: center;
    align-items: center;
}
.deal_inline_flex{
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.deal_flex_direction{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/* Heading */
.deal_main_heading {
    background-color: #fff;
    border: 2px dotted #00ccff;
    border-radius: 20px;
    min-height: 160px;
    padding: 0 30px;
    position: relative;
    z-index: 1;
    margin: 30px 0 45px 0;
}
.deal_main_heading h1{
    font-size: 50px;
    color: #26122f;
    font-weight: 800;
    text-transform: capitalize;
}
.dealHeadShape{
    position: absolute;
}
.dealHeadShape1 {
    top: -15px;
    left: 60px;
}
.dealHeadShape2 {
    top: -13px;
    right: 0;
}
.dealHeadShape3 {
    bottom: -8px;
    left: -15px;
}
.dealHeadShape4 {
    bottom: -8px;
    right: 80px;
}
.dealHeadShape5 {
    bottom: -10px;
    right: 5px;
}
.relative{
    position: relative;
}
.deal_arrow_down {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -35px;
    margin: auto;
    z-index: 1;
}
.deal_arrow_down > img{
    filter: drop-shadow(0px 27px 20px rgba(106,53,255,0.2));
    animation: shadow-pulse 2s infinite;
    border-radius: 50%;    
}
@keyframes shadow-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0,228,255,1)
    }
    100% {
        box-shadow: 0 0 0 30px rgb(255 255 0 / 0%);        
    }
}
.deal_btm_shape {
    max-width: 650px;
    width: 100%;
    margin: auto;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    z-index: 1;
}
/* Common CSS */

/* Buttton CSS Start */
.deal_btn {
    min-height: 70px;
    min-width: 150px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 60px;
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
    background: linear-gradient(0deg, #ee0000 0%, #ffa417 70%);
    border-radius: 60px;
    position: relative;
    overflow: hidden;
    z-index: 9;
    transition: all 0.3s;
}
.deal_btn span {
    position: relative;
    pointer-events: none;
  }
.deal_btn::before{
    content: '';
    position: absolute;
    --size: 0px;
    left: var(--x);
    top: var(--y);
    width: var(--size);
    height: var(--size);
    background: radial-gradient(circle closest-side, #4405f7, transparent);    
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    transition: width .6s ease, height .6s ease;        
}
.deal_btn:hover::before {
    --size: 400px;
  }
/* Buttton CSS End*/

/* Banner CSS Start */
.deal_banner_main_wrapper {
    background-image: url(../images/main-banner-bg.jpg);
    padding: 15px 30px 80px 30px;
}
.dealflashtext{    
    font-size: 24px;    
    color: #6c38fc;
    font-weight: 700;    
    text-align: center;
    position: relative;
    z-index: 1;
}
.deal_banner_parent {
    background-image: url(../images/banner-bg.png);
    background-position: top;
    position: relative;
    border-radius: 30px;
    padding-bottom: 130px;
}
.deal_banner_content {
    padding-top: 60px;
    margin-top: -21px;
    padding-bottom: 25px;
}
.deal_banner_content h2 {
    background-image: url(../images/banner-head-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    max-width: 710px;
    width: 100%;
    min-height: 80px;
    margin: auto;
    padding: 0 10px;
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    text-align: center;
}
.deal_video_parent {
    max-width: 850px;
    width: 100%;
    height: 485px;
    margin: auto;
    background-color: #8d65ff;
    border: 1px dashed #ffffff;
    border-radius: 20px;
    position: relative;
}
.deal_video_inner {
    position: absolute;
    top: 13px;
    right: 13px;
    bottom: 13px;
    left: 13px;
    border-radius: 20px;
}
.deal_video_inner iframe {
    border-radius: 20px;
}
.deal_video_parent .dealHeadShape1 {
    top: -9px;
    left: -10px;
}
.deal_video_parent .dealHeadShape2 {
    top: -10px;
    right: 10px;
}
.deal_video_parent .dealHeadShape4 {
    bottom: -8px;
    right: -10px;
}
.deal_banner_content .deal_banner_arrow_down {
    padding-top: 30px;
}
.deal_banner_arrow_down > img{
    filter: drop-shadow(0px 27px 20px rgba(106,53,255,0.5));
    animation: shadow-pulse 2s infinite;
    border-radius: 50%;
}
.dealBannerShape{
    position: absolute;
}
.dealBannerShape1 {
    top: 40%;
    left: 300px;
    animation: float 3s linear .5s infinite alternate both;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(15px); }
    100% { transform: translateY(30px); }
}
.dealBannerShape2 {
    top: 55%;
    right: 300px;
    animation: float2 3s linear .5s infinite alternate both;
}
@keyframes float2 {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(-30px); }
}
.dealBannerShape3 {
    bottom: 0px;
    left: 100px;
    animation: 2.5s rotate linear infinite;
}
@keyframes rotate {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(20deg);
	}
}
.dealBannerShape4 {
    bottom: 30px;
    right: 200px;
    animation: float3 3s linear .5s infinite alternate both;
}
@keyframes float3 {
    0% { transform: translateX(0px); }
    50% { transform: translateX(-15px); }
    100% { transform: translateX(-30px); }
}
.dealMetaGroupLink {
    display: inline-block;
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    color: #fff;
    text-transform: capitalize;
    padding: 20px 0 10px 0;
    text-decoration: underline;
    transition: all 0.3s;
}
.dealMetaGroupLink:hover{
    text-decoration: underline;
    letter-spacing: 1px;
}
.deal_sale_arrow {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
.deal_sale_arrow > img:nth-child(2){
    filter: drop-shadow(0px 27px 20px rgba(106,53,255,0.2));
    animation: shadow-pulse 2s infinite;
    border-radius: 50%;  
}
.deal_sale_arrow > img:nth-child(1), .deal_sale_arrow > img:nth-child(3){
    opacity: 0.5;
}
/* Banner CSS End */

/* Logo Section CSS Start */
p.jumptext {
    padding: 0px 0 15px 0;
    text-align: center;
}
.deal_logo_wrapper .container{
    max-width: 1200px;
}
.deal_logo_head_section {
    margin-top: -70px;
    margin-bottom: 60px;
}
.deal_logo_head_box{
    position: relative;
    z-index: 1;
}
.deal_logo_head_box::before{
    content: '';
    background-image: linear-gradient(71deg, #1c74f2 0%, #5f12c0 100%);
    border-radius: 70px;
    transform: rotate(4deg);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    transition: all 0.4s;
}
.deal_logo_head_box:hover::before{
    transform: rotate(-4deg);
}
.deal_logo_heading {
    background-image: linear-gradient(71deg, #0e96ff 0%, #8e33ff 100%);
    border: 1px dashed #ffffff;
    border-radius: 70px;
    min-height: 130px;
    padding: 0 40px;    
}
.deal_logo_heading h2{
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}
.dealHeadArrow1, .dealHeadArrow2{
    position: absolute;
    top: 50%;
}
.dealHeadArrow1{        
    left: -50px;
}
.dealHeadArrow2{    
    right: -50px;
}
.deal_logo_box a{
    display: block;
    filter: drop-shadow(0 0 20px rgba(59,34,131,0.1));    
}
.deal_logo_box:hover a{    
    -webkit-animation-name: wobble-horizontal;
    animation-name: wobble-horizontal;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}
@keyframes wobble-horizontal {
    16.65% {
        -webkit-transform: translateX(8px);
        transform: translateX(8px);
    }
    33.3% {
        -webkit-transform: translateX(-6px);
        transform: translateX(-6px);
    }
    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px);
    }
    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }
    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
/* Logo Section CSS End */

/* Sale Section CSS Start */
.deal_sale_wrapper{
    background-image: url(../images/flash-sale-main-bg.jpg);
    padding: 80px 0;    
}
.deal_sale_wrapper .container{
    max-width: 1600px;
}
.deal_sale_head img{
    position: relative;
}
.deal_sale_head h1 {
    min-height: 90px;
    background-image: linear-gradient(71deg, #0e96ff 20%, #8e33ff 50%);
    border-radius: 40px 60px 60px 0px;
    padding: 0 40px 0 60px;
    font-size: 46px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    font-style: italic;
    margin-left: -47px;
}
.deal_sale_parent{
    padding-top: 50px;
}
.deal_sale_flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.deal_sale_box:nth-of-type(2n+2) .deal_sale_flex{
    flex-direction: row-reverse;
}
.deal_sale_content{
    max-width: 745px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 40px;
}
.deal_sale_content_head {
    position: absolute;
    top: -50px;
    left: 40px;
}
.deal_sale_content_head h4 {
    background: #1da5d7;
    min-height: 65px;
    border-radius: 20px 60px 60px 0;
    padding: 0 30px 0 40px;
    font-size: 40px;
    font-weight: 800;
    color: #fff;
    margin-left: -34px;
}
.dealSaleBox2 .deal_sale_content_head h4{
    background: linear-gradient(53deg, #09d5ed 0%, #c515d1 100%);
}
.dealSaleBox3 .deal_sale_content_head h4{
    background: linear-gradient(53deg, #04ddc6 0%, #05cbed 100%);
}
.dealSaleBox4 .deal_sale_content_head h4{
    background: linear-gradient(53deg, #f57f1b 0%, #ed4121 100%);
}
.dealSaleBox5 .deal_sale_content_head h4{
    background: linear-gradient(85deg, #5f00a3 0%, #eb6bf1 100%);
}
.dealSaleBox6 .deal_sale_content_head h4{
    background: linear-gradient(53deg, #d359e1 0%, #c515d1 100%);
}
.dealSaleBox7 .deal_sale_content_head h4{
    background: linear-gradient(53deg, #0f5ba9 0%, #c3198d 100%);
}
.dealSaleBox8 .deal_sale_content_head h4{
    background: #ff7523;
}
.dealSaleBox9 .deal_sale_content_head h4{
    background: #c59bf3;
}
.dealSaleBox10 .deal_sale_content_head h4{
    background: linear-gradient(53deg, #00bbf0 0%, #0d7ff3 100%);
}
.dealSaleBox11 .deal_sale_content_head h4 {
    background: linear-gradient(0deg, #c31a8d 0%, #8e3aea 100%);
}
.dealSaleBox12 .deal_sale_content_head h4{
    background: linear-gradient(to left, rgba(255,39,181,0.99) 0%, rgba(157,0,255,0.99) 100%, rgba(255,39,181,0.99) 100%)
}
.dealSaleBox13 .deal_sale_content_head h4{
    background: linear-gradient(to left, rgba(255,39,181,0.99) 0%, rgba(157,0,255,0.99) 100%, rgba(255,39,181,0.99) 100%)
}
.dealSaleBox14 .deal_sale_content_head h4{
    background: linear-gradient(90deg, rgba(75,85,213,0.99) 0%, rgba(235,101,247,0.99) 100%)
}
.dealSaleBox15 .deal_sale_content_head h4{
    background: #f5b70d;
}
.dealSaleBox16 .deal_sale_content_head h4{
    background: linear-gradient( 20deg, #9929ea 0%, rgb(88,8,251) 100%);
}
.dealSaleBox17 .deal_sale_content_head h4 {
    background: #e1810b;
}
.deal_sale_content_head img{
    position: relative;
}
.deal_sale_content p{
    font-size: 18px;
    font-weight: 400;
    color: #2e1f42;
    padding-top: 30px;
}
.deal_sale_content p.dealfirstchild {
    padding-top: 10px;
}
.dealSaleContentLogo { 
    display: block;
    margin-left: auto;
}
.dealSaleBox11 .dealSaleContentLogo{
    width: 150px;
    height: auto;
}
.dealSaleContnShpe{
    position: absolute;
}
.dealSaleContnShpe1 {
    top: -10px;
    right: 50px;
}
.dealSaleContnShpe2 {
    bottom: 60px;
    left: -10px;
}
.dealSaleContnShpe3 {
    bottom: -10px;
    left: 150px;
}
.dealSaleContnShpe4{
    bottom: 30px;
    right: -10px;
}
.deal_sale_video {
    max-width: 750px;
    width: 100%;
    height: 422px;
    border-radius: 10px;
    font-size: 0;
    position: relative;
}
.deal_sale_video video {
    border-radius: 10px;
    width: 100%;
    height: 100%;
}
.dealSaleOffer {
    position: absolute;
    bottom: -50px;
    right: -50px;
    z-index: 1;
}
.deal_sale_box:nth-of-type(2n+2) .deal_sale_flex .dealSaleOffer{
    right: auto;
    left: -50px;
}
.deal_sale_video .dealSaleContnShpe1 {
    right: 100px;
}
.deal_sale_video .dealSaleContnShpe2 {
    bottom: 100px;
    left: -13px;
}
.deal_sale_video .dealSaleContnShpe3 {
    left: 100px;
}
.deal_sale_video .dealSaleContnShpe4 {
    top: 20px;
    right: -15px;
}
.deal_sale_price {
    padding: 50px 0 100px 0;
}
.dealSaleBox10 .deal_sale_price {
    padding-bottom: 20px;
}
.deal_sale_price h1 {
    font-size: 56px;
    font-weight: 700;
    color: #17055a;
    text-transform: capitalize;
    gap: 15px;
}
.deal_sale_price h1 span.dealLogoColor{
    color: #1da5d7;
}
.dealSaleBox2 .deal_sale_price h1 span.dealLogoColor, .dealSaleBox2 .deal_sale_price h4 span{
    color: #e320f2;
}
.dealSaleBox3 .deal_sale_price h1 span.dealLogoColor, .dealSaleBox3 .deal_sale_price h4 span{
    color: #00d2f5;
}
.dealSaleBox4 .deal_sale_price h1 span.dealLogoColor, .dealSaleBox4 .deal_sale_price h4 span{
    color: #f3621e;
}
.dealSaleBox5 .deal_sale_price h1 span.dealLogoColor, .dealSaleBox5 .deal_sale_price h4 span{
    color: #aa25ed;
}
.dealSaleBox6 .deal_sale_price h1 span.dealLogoColor, .dealSaleBox6 .deal_sale_price h4 span{
    color: #e320f2;
}
.dealSaleBox7 .deal_sale_price h1 span.dealLogoColor, .dealSaleBox7 .deal_sale_price h4 span{
    color: #c72a95;
}
.dealSaleBox8 .deal_sale_price h1 span.dealLogoColor, .dealSaleBox8 .deal_sale_price h4 span{
    color: #ff7523;
}
.dealSaleBox9 .deal_sale_price h1 span.dealLogoColor, .dealSaleBox9 .deal_sale_price h4 span{
    color: #c59bf3;
}
.dealSaleBox10 .deal_sale_price h1 span.dealLogoColor, .dealSaleBox10 .deal_sale_price h4 span{
    color: #0d84f3;
}
.dealSaleBox11 .deal_sale_price h1 span.dealLogoColor, .dealSaleBox11 .deal_sale_price h4 span{
    color: #c31a8d;
}
.dealSaleBox12 .deal_sale_price h1 span.dealLogoColor, .dealSaleBox12 .deal_sale_price h4 span{
    color: #ff27b5fc;
}
.dealSaleBox13 .deal_sale_price h1 span.dealLogoColor, .dealSaleBox13 .deal_sale_price h4 span{
    color: #9d00fffc;
}
.dealSaleBox14 .deal_sale_price h1 span.dealLogoColor, .dealSaleBox14 .deal_sale_price h4 span{
    color: #4b55d5fc;
}
.dealSaleBox15 .deal_sale_price h1 span.dealLogoColor, .dealSaleBox15 .deal_sale_price h4 span{
    color: #f5b70d;
}
.dealSaleBox16 .deal_sale_price h1 span.dealLogoColor, .dealSaleBox16 .deal_sale_price h4 span{
    color: #9929ea;
}
.dealSaleBox17 .deal_sale_price h1 span.dealLogoColor, .dealSaleBox17 .deal_sale_price h4 span{
    color: #e1810b;
}
.deal_sale_price h1 p {
    font-size: 40px;
    font-weight: 700;
    color: #9c94c0;
    text-decoration: line-through;
}
.deal_sale_price h1 span.dealOrngClr{
    color: #ff9c00;
}
.deal_sale_price h4 {
    min-height: 56px;
    border-radius: 10px;
    background-color: #faf9ff;
    border: 1px dotted #c7bfeb;
    padding: 0 20px;
    font-size: 30px;
    color: #17055a;
    font-weight: 400;
    text-transform: capitalize;
    gap: 5px;
    margin: 20px 0 20px 0;
}
.deal_sale_price p {
    padding-bottom: 15px;
}
.deal_sale_price h4 span{
    color: #1da5d7;
    font-weight: 700;
}
/* Sale Section CSS End */

/* Gaurantee Section CSS Start */
.deal_grntee_wrapper{
    background-image: url(../images/grntee-main-bg.jpg);
    padding: 80px 0;
}
.deal_grntee_wrapper .container{
    max-width: 1200px;
}
.deal_grnte_head h2{
    min-height: 60px;
    background-image: linear-gradient(6deg, #0e96ff 0%, #8e33ff 100%);
    border-radius: 30px;
    border-radius: 60px;
    padding: 0 30px;
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
}
.deal_grnte_head .deal_main_heading h1{
    color: #17055a;
}
.deal_grnte_box {
    padding-top: 20px;
    z-index: 1;
}
.dealGrntShape {
    position: absolute;
    z-index: 1;
}
.dealGrntShape1{
    top: 100px;
    left: -30px;
    animation: float 3s linear .5s infinite alternate both;
}
.dealGrntShape2{
    bottom: 200px;
    right: -30px;
    animation: float2 3s linear .5s infinite alternate both;
}
.deal_grnt_inner {
    background-color: #170825;
    border-radius: 20px;
    text-align: center;
    padding: 0 15px 60px 15px;
    position: relative;
    overflow: hidden;
}
.deal_grnt_content {
    margin-top: -160px;
}
.deal_grnt_content h4{
    font-size: 30px;
    font-weight: 700;
    color: #fff;
}
.deal_grnt_content p {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    max-width: 600px;
    width: 100%;
    margin: auto;
    padding-top: 5px;
}
.deal_grnt_content p.dealGrntMidText {
    padding: 25px 0;
}
.deal_grnt_img {
    margin-top: -40px;
}
/* Gaurantee Section CSS End */

/* Logo Dark Section CSS Start */
.deal_dark_logo_wrapper {
    background-color: #170825;
    padding: 80px 0 50px 0;
}
.deal_dark_logo_wrapper > .container{
    max-width: 1200px;
}
.deal_dark_logo_wrapper .deal_logo_head_section {
    margin-top: 20px;    
}
/* Logo Dark Section CSS End */

/* Faq Section CSS Start */
.deal_faq_wrapper {
    padding-top: 80px;
}
.deal_faq_head h2 {
    min-height: 70px;
    background-image: linear-gradient(6deg, #0e96ff 0%, #8e33ff 100%);
    border-radius: 30px;
    border-radius: 60px;
    padding: 0 30px;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
}
.deal_faq_main {
    margin-top: 80px;
}
div#accordionExample {
    margin-right: 20px;
}
.accordion-header{
    position: relative;
}
.accordion-header img {
    position: absolute;
    top: -25px;
    left: -17px;
    z-index: 3;
}
.accordion-item {
    background-color: #17092b;
    border: 2px solid #716df2;
    color: #fff;
    border-radius: 10px !important;
    margin-bottom: 50px;
}
.accordion-item:not(:first-of-type) {
    border-top: 2px solid #716df2;
}
.accordion-button {
    border-radius: 10px;
    background-color: #17092b;
    border: none;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    border-radius: 10px !important;
    line-height: 1.5;
    padding: 24px 15px 24px 25px;
}
.accordion-body{
    background-color: #291744;
    border-radius: 8px;
    padding: 15px;
    margin: 10px;
    font-size: 20px;
    font-weight: 400;
    color:#fff;
}
.accordion-button::after{    
    background-image: url(../images/faq-arrow.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    width: 36px;
    height: 36px;
    margin-left: auto;
}
.accordion-button:not(.collapsed)::after{
    background-image: url(../images/faq-arrow.png);    
}
.accordion-button .collapsed::after{
    background-image: url(../images/faq-arrow.png);    
    transform: rotate(180deg);
}
.accordion-button:focus {   
    border: none;    
    box-shadow: none;
}
.accordion-button:not(.collapsed) {
    background-color: #17092b;
    color: #fff;
    border: none;
    box-shadow: none;
}
/* FAQ Section CSS End */

/* Footer CSS Start */
.deal_footer_wrapper{
    background-image: url(../images/footer-main-bg.jpg);
    padding: 80px 0;
}
.deal_footer_wrapper .container{
    max-width: 1200px;
}
.deal_footer_text p {
    max-width: 876px;
    width: 100%;
    margin: auto;
    font-size: 20px;
    font-weight: 400;
    color: #220f3c;
    padding: 20px 0 45px 0;
    text-align: center;
}
.deal_footer_box {
    max-width: 1070px;
    width: 100%;
    margin: auto;
    background-image: linear-gradient(#fff, #fff),linear-gradient(150deg, #8e35ff, #7776ff);
    border: 2px solid transparent;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    padding: 20px 20px 30px;
    border-radius: 10px;
    filter: drop-shadow(0 0 40px rgba(152,75,239,0.2));
}
.deal_footer_box .dealHeadShape1 {    
    left: -30px;
}
.deal_footer_box .dealHeadShape2 {    
    right: 150px;
}
.deal_footer_box .dealHeadShape3 {
    bottom: -15px;
    left: -10px;
}
.deal_footer_box .dealHeadShape4 {    
    right: -20px;
}
.deal_footer_box .dealHeadShape5 {
    top: -20px;
    right: -10px;
}
.deal_footer_box p {
    font-size: 20px;
    font-weight: 400;
    color: #220f3c;
    padding-top: 10px;
}
.deal_footer_box h4{
    max-width: 640px;
    width: 100%;
    margin: 25px auto 40px auto;
    border-radius: 50px;
    background-color: #f6efff;
    font-size: 20px;
    font-weight: 400;
    color: #220f3c;
    padding: 12px 20px 9px 50px;
    position: relative;
}
.deal_footer_box h4 > img {
    position: absolute;
    top: 1px;
    left: 0;
}
.deal_footer_box ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
.deal_footer_box ul li, .deal_footer_box ul li a {
    font-size: 19px;
    font-weight: 400;
    color: #3a3e5d;
    text-transform: capitalize;
}
.deal_footer_box ul li a {
    text-decoration: underline;
    transition: all 0.3s;
}
.deal_footer_box ul li a:hover{
    color: #8e33ff;
}
/* Footer CSS End */