/**
* Theme Name: Countr App
* Template:   hello-elementor
*/



@import url('https://fonts.cdnfonts.com/css/helvetica-neue-55');


:root {
	--RE--primary: #9374FE;
	--RE--primary-hover: #000000;
	--RE--secondary:#E6E3DE;
	--RE--primary-100:#F4EADE;
	--RE--secondary-100:#F2F2F2;
	--RE--black-base:#000000; 
	--RE--white-base:#FFF;
	--RE--off-white:#EEEEEE; 
	--RE--heading-base:#32221B; 
	--RE--gray-base:#888888;    
}
/*  */

/*  */
a{
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

/*  */

/* Common CSS */

html {
	scroll-behavior: smooth;
}

body{
	background-color: #FAFAFA;
	color: var(--RE--black-base);
	font-family: "Helvetica", sans-serif;
}


h1,h2,h3,h4,h5,h6{
	margin: 0px;
}
ul{
	margin: 0;
	padding: 0;
}

p{
	padding: 0px;
	margin: 0;
}

.container {
	max-width: 1440px;
	padding: 0 20px !important;
}

h1 {
	font-family: 'Helvetica-Bold';
	font-size: 65px;
	font-weight: 700;
	line-height: 84.5px;

}

h2{
	font-family: 'Helvetica-Bold';
	font-size: 45px;
	font-weight: 700;
	line-height: 67.5px;
}
h3{
	font-family: 'Helvetica-Bold';
	font-size: 35px;
	font-weight: 700;
	line-height: 45.5px;

}
h4{
	font-family: 'Helvetica-Bold';
	font-size: 30px;
	font-weight: 700;
	line-height: 45px;

}

h5{
	font-family: 'Helvetica-Bold';
	font-style: normal;
	font-weight: 700;
	font-size: 22px;
	line-height: 28.6px;
}

h6{
	font-family: 'Helvetica-Bold';
	font-style: normal;
	font-weight: 700;
	font-size: 18px;
	line-height: 22.5px;
}



.font-p1{
	font-family: 'Helvetica';
	font-size: 18px;
	font-weight: 400;
	line-height: 27px;

}

.font-p2{
	font-family: 'Helvetica';
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
}

.font-p3{
	font-family: 'Helvetica';
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 23.4px;
}

.font-p4{
	font-family: 'Helvetica';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 25.6px;
}

.font-p5{
	font-family: 'Helvetica';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 22.4px;
}

.font-p5-small{
	font-family: 'Helvetica';
	font-style: normal;
	font-weight: 400;
	font-size: 14px;
	line-height: 18.2px;
}

.font-p4-small{
	font-family: 'Helvetica';
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 20.8px;    
}

.font-p3-tall{
	font-family: 'Helvetica';
	font-style: normal;
	font-weight: 400;
	font-size: 18px;
	line-height: 28.8px;
}


.fw-700{
	font-weight: 700;
	font-family: 'Helvetica-Bold';
}

.fw-600{
	font-weight: 600;
}

.fw-500{
	font-weight: 500;
}

.fw-400{
	font-weight: 400;
	font-family: 'Helvetica';
}


/* Theme Colors  */

.bg-theme-primary{background-color: var(--RE--primary);}
.bg-theme-secondary{background-color: var(--RE--secondary);}
.bg-off-white{background-color: var(--RE--off-white);}
.bg-secondary-100{background-color: var(--RE--secondary-200);}
.bg-primary-100{background-color: var(--RE--primary-100);}
.bg-white-base{background-color: var(--RE--white-base);}

.text-theme-secondary{color: var(--RE--secondary);}
.text-theme-primary{color: var(--RE--primary)}
.text-primary-100{color: var(--RE--primary-100);}
.text-secondary-100{color: var(--RE--secondary-100);}
.text-white-base{color: var(--RE--white-base);}
.text-off-white{color: var(--RE--off-white);}
.text-black-base{color: var(--RE--black-base);}
.text-heading{color: var(--RE--heading-base);}
.text-theme-gray{color: var(--RE--gray-base)}
.text-op-5{color: rgba(0, 0, 0, 0.5); }
.text-op-7{color: rgba(0, 0, 0, 0.7); }
.text-op-8{color: rgba(0, 0, 0, 0.8);}
/* Theme Colors */

/* Button CSS */

.theme_btn {
	font-family: 'Helvetica-Bold';
	font-size: 15px;
	font-weight: 700;
	line-height: 22.5px;
	text-align: right;
	border-radius: 10px;
	padding: 12px 16px;
	display: flex;
	text-decoration: none;
	align-items: center;
	justify-content: center;
	background-color: var(--RE--primary);
	height: 47px;
	max-width: max-content;
	color: #fff;
}

/* .theme_btn:hover{
background-color: transparent;
border: 1px solid var(--RE--primary);
color: var(--RE--primary);
} */


.btn_white{
	background-color: white;
	color: var(--RE--black-base);
}

.btn_primary_outline{
	border:1px solid var(--RE--primary);
	color: var(--RE--primary);
	background-color: transparent;
}

.btn_white_outline{
	border:1px solid var(--RE--white-base);
	color: var(--RE--white-base);
}

.btn_primary_outline:hover{
	background-color: var(--RE--primary);
	color: var(--RE--white-base);
	transition: all 0.3s ease-in-out;
}
.btn_purple_outline:hover span svg path{
	stroke: white;
	fill: white;
	transition: all 0.3s ease-in-out;
}   

.link_btn {
	font-family: 'Satoshi-Medium';
	font-style: normal;
	font-weight: 500;  
	line-height: 18px;
	font-size: 14px;
	color: var(--RE--text-heading);
	display: inline-flex;
	gap: 8px;
	align-items: center;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
	text-transform: uppercase;
}
.link_btn_white{
	color: var(--RE--white-base);
}

.link_btn:hover svg path{
	transition: all 0.3s ease-in-out;
}
.link_btn:hover {
	color: var(--RE--primary);
}
.link_btn:hover svg path{
	stroke: var(--RE--primary);
}

.nav_btn:hover {
	background-color: var(--RE--primary-hover);
	transition: all 0.3s ease-in-out;
}
.nav-link:hover{
	color: var(--RE--primary-hover);
	transition: all 0.3s ease-in-out;
}

.fw-800{
	font-family: Clarity-ExtraBold;
	font-weight: 800;
}

/* Button CSS End */

.eq_space{
	padding: 100px 0;
}
.pb-140{
	padding-bottom: 140px;
}
.mt-6{
	margin-top: 6px;
}
.ms-12{
	margin-left: 12px;
}
.mt-12{
	margin-top: 12px;
}
.mt-18{
	margin-top: 18px;
}
.mt-20{
	margin-top: 20px;
}
.mt-30{
	margin-top: 30px;
}
.mt-32{
	margin-top: 32px;
}
.mt-40{
	margin-top: 40px;
}
.mb-40{
	margin-bottom: 40px;
}
.mt-60{
	margin-top: 60px;
}
.mt-80{
	margin-top: 80px;
}
.mtb-40{
	margin-top: 40px;
	margin-bottom: 40px;
}
.mtb-60{
	margin-top: 60px;
	margin-bottom: 60px;
}
.mt-18{
	margin-top: 18px;
}
.pl-80{
	padding-left:80px;
}
.pr-80{
	padding-right:80px;
}
.ptb-40{
	padding-top: 40px;
	padding-bottom: 40px;
}
.pt-40{
	padding-top: 40px;
}
.pt-60{
	padding-top: 60px;
}
.pt-100
{
	padding-top: 100px;
}
.pb-40{
	padding-bottom: 40px;
}
.pb-100
{
	padding-bottom: 100px;
}
.pl-20{
	padding-left: 20px;
}

.border-radius-top{
	border-radius: 1rem 1rem 0 0;
}

.border-radius-bottom{
	border-radius: 0 0 1rem 1rem ;
}
.custom-icon{
	width: 80px;
	height: 80px;
}

/* Common CSS END */

/* NavBar styles */

.main-navbar {
    padding: 24px 0px 16px;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 1440px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: transparent;
    position: absolute;
    z-index: 9;
    left: 0;
    right: 0;
}

.nav-icon-container{
	margin-right: 40px;
	display: flex;
	align-items: center;
	gap: 16px;
}

.nav-icon-container a:hover{
	opacity: 0.7;
	cursor: pointer;
	transition: all 0.3s ease-in-out;
}

.main-navbar .contact-btn:hover{
	opacity: 0.8;
	background-color: var(--RE--primary);
	color: #fff;
	transition: all 0.3s ease-in-out;
}

.main-navbar .contact-btn.white:hover{
	background-color:#fff;
	opacity: 0.7;
	color: #000000;
}
/* HEADER SOCIAL ICON STYLE */

a.bg-color span {
	background: var(--RE--primary);
	padding: 11px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	color: white;
}
a.bg-color span i {
	font-size: 20px;
}
.page-template-countr-plus a.bg-color span, .page-template-countr a.bg-color span {
	background: var(--RE--white-base);
	color: #000;
}
.page-template-countr-plus nav.main-navbar .theme_btn, .page-template-countr nav.main-navbar .theme_btn {
	background-color: var(--RE--white-base);
	color: #000;
}

/* --------------------------------------- LANDING PAGE STYLES ------------------------------------------ */

/* .page-wrapper.landing{
overflow: hidden;
} */

.landing_page{ 
	width: 100%;
	height: calc(100vh - 48px);
	position: relative;
}

.landing-video-bg {
	height: 100%;
	width: 100%;
	overflow: hidden;
	z-index: 3;
	background-image: url(https://countr-app.ch/wp-content/uploads/2024/12/landing-page-bg-1.mp4);
	background-size: cover;
	background-position: center;
}

.landing-video-bg video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.landing-gradient{
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
	background:linear-gradient(180deg, rgba(147, 116, 254, 0.025) 0%, rgba(61, 0, 250, 0.3) 100%);
	z-index: 2;
}


/* footer section styles */

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: space-between;
    font-family: 'Helvetica';
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding: 12px 20px;
    /* padding-left: 20px; */
    /* padding-right: 20px; */
    /* margin-left: auto; */
    /* margin-right: auto; */
    background-color: rgba(250, 250, 250, 1);
}

.footer-container a{
	text-decoration: none;
	color: #000000;
}

.footer-container a:hover{
	color: rgba(147, 116, 254, 1);
	text-decoration: underline;
	transition: all 0.3s ease-in;
	cursor: pointer;
}


/* mobile nav styles  */

.main-menu{
	position: fixed;
	bottom: 80px;
	background: transparent;
	left: 0;
	right: 0;
	z-index: 4;
	display: flex;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}
.main-menu.countr-plus {
	bottom: 40px;
}
section.plus_hero_section.countr-main .inner-right img {
	height: 87%;
}
.main-menu .menu-btn{
	background-color: white;
	max-width: 150px;
	width: 100%;
	padding: 16px;
	border-radius: 100px;
	font-family: 'Helvetica-Bold';
	font-size: 15px;
	font-weight: 700;
	line-height: 22.5px;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
}



.main-menu .menu-btn.countr{
	background-color: var(--RE--primary);
	color: #fff;
}

.main-menu .menu-btn.countr:hover{
	background-color: #000000;
}


.main-menu .menu-btn.dark svg path{
	fill: #fff;
	stroke:#fff
}

.main-menu .menu-btn.countr svg path{
	fill: #fff;
	stroke:#fff
}

.main-menu .menu-btn.hide{
	opacity: 0;
	transition: all 0.3s ease-out;
}

.main-menu .menu-btn:hover{
	color: #fff;
	background-color: rgba(147, 116, 254, 1);
	transition: all 0.3s ease-in-out;
}

.main-menu .menu-btn:hover span svg path{
	fill: #fff;
	stroke: #fff;
	transition: all 0.3s ease-in-out;
}

.main-menu .expanded-view{
	position: fixed;
	bottom: -600px;
	background: linear-gradient(138.76deg, #9072FB -2.01%, #5D5CCF 105.35%);
	padding: 32px;
	color: white !important;
	text-decoration: none;
	border-radius: 32px;
	max-width: 500px;
	width: 100%;
	transition: all 0.2s ease-in;
	z-index: 4;
}

.main-menu .expanded-view li{
	padding: 16px 0px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	transition: all 0.3s ease-in-out;
}

.main-menu .expanded-view li:hover, .main-menu .expanded-view li.active {
	background: rgb(255, 255,255,0.2);
	padding-left: 8px !important;
	padding-right: 8px !important;
	border-radius: 2px;
}

.main-menu .expanded-view li a{
	text-decoration: none;
	color: white;
	font-family: 'Helvetica Neue';                                                
	font-size: 18px;
	font-weight: 500;
	line-height: 27px;
	display: flex;
	justify-content: space-between;
}

.main-menu .expanded-view li a .subtitle{
	color: rgba(210, 197, 255, 1);

}

.main-menu .expanded-view.show{
	bottom: 72px;
}

.main-menu .expanded-lang{
	font-family: 'Helvetica';
	font-size: 18px;
	font-weight: 400;
	line-height: 27px;
	display: flex;
	align-items: center;
	gap: 8px;

}

.main-menu .menu-footer{
	display: flex;
	justify-content: space-between;
}

.main-menu .menu-footer .menu-btn:hover{
	opacity: 0.7;
}

.main-menu .expanded-view .menu-btn:hover{
	color: #000000 !important;
	background-color: #fff;
}
.main-menu .expanded-view .menu-btn.close{
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.5);
	background-color: rgba(255, 255, 255, 0.1);    ;
	max-width: 150px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.main-menu .expanded-view .menu-btn.close:hover{
	color: #fff !important;
}


/* scroll up button */

.scroll-up-btn{
	position: fixed;
	bottom: 50px;
	right: 70px;
	z-index: 4;
	background-color: #000000;
	height: 60px;
	width: 60px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	display: none;
}

.scroll-up-btn:hover{
	color: #fff;
	background-color: rgba(147, 116, 254, 1);
	transition: all 0.3s ease-in-out;
}

.scroll-up-btn.countr{
	background-color: var(--RE--primary);
}
.scroll-up-btn.countr:hover{
	background-color: #000000;
}

/* ---------------------------------------------- DOWNLOAD PAGE STYLES --------------------------------------- */

.download_page{
	background-image:url();
	background-color: rgba(73, 63, 136, 1);
	width: 100vw;
	height: calc(100vh - 48px);
	padding-top: 88px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
}

.download_page .container{
	height: 100%;
}

.download-inner-container{
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-bottom: 100px;
}

.download-page-grid{
	max-width: 898px;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 48px;
	grid-row-gap: 0px; 
	margin-left: auto;
	margin-right: auto;
}


.download-box{
	padding: 40px;
	border-radius: 16px;
	background-color: rgba(0, 0, 0, 0.2);
	color: white;
}

.download-box .download-btn{
	height: 56px;
}

.download-box p{
	font-family: 'Helvetica';
	font-size: 18px;
	font-weight: 400;
	line-height: 27px;


}

.download-box .box-2{
	height: 64px;
}

.download-box a{
	max-width: 100%;
	width: 100%;
	font-family: 'Helvetica-Bold';
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
	padding:16px;
	display: flex;
	justify-content: space-between;
}

.download-box a:hover{
	background-color: #fff ;
	color: #000000 !important;
	transition: all 0.2s ease-in-out;
}

.download-box a:hover svg path{
	fill: #000000;
	stroke: #000000;
}


/* ------------------------------------------- COUNTR PLUS PAGE STYLES ----------------------------------- */

/* hero section styles */

.plus_hero_section {
	width: 100%;
	height: 100vh;
	background-image: url('');
	background: linear-gradient(180deg, #000000 0%, #292929 100%);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
	padding-top: 88px;
	overflow: hidden;
}


.line-pattern {
	background-image: url('https://countr-app.ch/wp-content/uploads/2024/12/line-pattern-bdr.svg');
	width: 100%;
	height: 100%;
	background-position: right;
	background-size: cover;
	z-index: 0;
	position: absolute;
	background-repeat: no-repeat;
	top: 0;
	bottom: 0;
}
.line-pattern.countr-plus {
	background-position: left 100px;
}

.hero-shape {
	width: 439.95px;
	height: 836.5px;
	background: rgba(255, 255, 255, 0.04);
	position: absolute;
	top: -230px;
	right: -20px;
	rotate: 30deg;
	border-radius:0px 0px 999px 999px ;
	z-index: -1;
}

.hero-shape.countr{
	top: -225px;
	right: -7px;   

}

.plus_hero_section .container{
	height: 100%;
}

/*  .plus-hero-inner{
margin-top: 40px;
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: 1fr;
grid-column-gap: 0px;
grid-row-gap: 0px; 
max-width: 1200px;
width: 100%;
margin-left: auto;
margin-right: auto;
height: 100%;
position: relative;
z-index: 1;
}  */
.plus-hero-inner {
	/* margin-top: 40px; */
	display: grid;
	grid-template-columns: auto 1fr;
	grid-template-rows: 1fr;
	grid-column-gap: 0px;
	grid-row-gap: 0px;
	/* max-width: 1200px; */
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	height: 100%;
	position: relative;
	z-index: 1;
}

section.plus_hero_section.countr-main .plus-hero-inner {   
	grid-template-columns: repeat(2,1fr);   
}

.plus-hero-inner .inner-left{
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.plus-hero-inner .inner-right{
	display: flex;
	justify-content: center;
}


.plus-hero-inner .inner-left .plus-hero-btn {
	padding: 16px;
	height: 56px;
	margin-left: 30px;
}

.plus-hero-inner .inner-left .plus-hero-btn:hover{
	color: #000000;
	background-color: #fff !important;
}

.plus-hero-inner .inner-left .plus-hero-btn:hover svg path{
	fill: #000000;
	stroke: #000000;
}

.mouse-down{
	font-family: 'Helvetica Neue';
	font-size: 15px;
	font-weight: 500;
	line-height: 22.5px;
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 0px;
	color: #fff;
	padding-top: 132px;
}

.mouse-down img{
	height:40px;
	width: 26px;
	object-fit: cover;
}

/* inner nav section */

.inner-nav{
	padding: 0px;
	z-index: 3;
}

.inner-nav .container{
	background-color: rgba(255, 255, 255, 0.9) !important;
}

.inner-nav-container{
	padding: 16px 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap:1rem ;
	width: 100%;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

.inner-nav-item{
	font-family: 'Helvetica-Bold';
	font-size: 18px;
	font-weight: 700;
	line-height: 27px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 16px 24px;
	border-radius: 16px;
	background-color:rgba(0, 0, 0, 0.05) ;
	cursor: pointer;
	max-height: 64px;
	text-decoration: none;
	color: #000000;
}

.inner-nav-item span svg path{
	/* stroke: black; */
	fill: #000000;

}

.inner-nav-item.active{
	background-color: #000000;
	color: white;
}

.inner-nav-item.active span svg path{
	/* stroke: #fff; */
	fill: #fff;
}

.inner-nav-item:hover{
	background-color: #000000;
	color: white;
}

.inner-nav-item:hover span svg path{
	/* stroke: #fff; */
	fill: #fff;

}

/* counters section styles */


.plus_counters_section{

}

.counter-inner-container{
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

.counter-grid-left{
	/*     background: linear-gradient(180deg, #D5D5D5 0%, rgba(212, 212, 212, 0.05) 100%); */
	display: flex;
	justify-content: center;
	padding-top: 60px;
	max-width: 503px;
	border-radius: 26px 26px 0px 0px;
}

.counter-grid-right{
	padding-left: 48px;
}

.counter-grid-right-2{
	/*     background: linear-gradient(180deg, #D5D5D5 0%, rgba(212, 212, 212, 0.05) 100%); */
	max-width: 323px !important;
	height: 400px;
	display: flex;
	justify-content: center;
	padding-top: 60px;
	max-width: 503px;
	border-radius: 26px 26px 0px 0px;

}

.menu_tab_section.hide, .notifier_tab_section.hide, .feedback_tab_section.hide{
	display: none;
} 



.red-dot{
	height: 8px;
	width: 8px;
	background-color: #9A2D4F;
	display: inline-block;
	border-radius: 999px;
	margin-bottom: 1px;
}

.counter-grid-left.special{
	padding-top: 0px;
	height: 400px;
	align-items: center;
}

.counter-grid-left.special img {
	max-width: 286px;
	height: 338px;
}

/* -------------------------------------------- COUNTR PAGE STYLES -------------------------------------- */

.plus_hero_section.countr-main{
	background:linear-gradient(180deg, #493F88 0%, #3B2F87 100%);

}

.counter-grid-left.countr,.counter-grid-right-2.countr{
	background: linear-gradient(180deg, #C0AAFE 0%, #FFFFFF 100%);
}

.counter-grid-right-2{
	padding-top: 0px;
	align-items: center;
}

.coins-sub{
	font-family: 'Helvetica';
	font-size: 18px;
	font-weight: 400;
	line-height: 27px;
	text-align: center;

	color: rgba(136, 136, 136, 1) ;
}

.plus-hero-inner .inner-left .plus-hero-btn.countr:hover{
	background-color: #3D00FA !important;
	color: #fff;
	/* border-color: 1px solid var(--RE--primary); */
}
.content-width {
	max-width: 505px;
}
.footer-container a:hover {
	color: rgba(147, 116, 254, 1) !important;
	text-decoration: underline !important;
	transition: all 0.3s ease-in !important;
	cursor: pointer !important;
}
.main-menu .expanded-view li:nth-last-of-type(1), .main-menu .expanded-view li:nth-last-of-type(2) {   
	display: none;
}
.main-menu .expanded-view.responsive-screen li:nth-last-of-type(1), .main-menu .expanded-view.responsive-screen li:nth-last-of-type(2) {   
	display: block;
}
.home .main-menu.countr-plus {
	bottom: 80px;
}
/* nav.navbar {
padding-top: 40px;
} */
.line-pattern.countr {
	background-position: left 100px;
}
.border-radius {
	border-radius: 0 0 16px 16px;
}

.line-pattern.download {
	background-position: center top 100px;
}
.page-template-download-app .main-menu.countr-plus {
	bottom: 80px;
}
body.home .main-menu .expanded-view .menu-btn.close {
	color: white;
	border: 1px solid rgba(255, 255, 255, 0.5);
	background-color: rgba(255, 255, 255, 0.1);
	max-width: 150px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.plus-hero-inner .custom-style {
	display: flex;
	justify-content: center;
	position: relative;
}
.second_button {   
	width: max-content;
}
section.plus_hero_section.hero_edit .inner-right img {
	object-fit: contain;
}
/* section.plus_hero_section.hero_edit .inner-right {
display: flex;
align-items: center;
} */

