/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/	

:root{
	--primary-color			: #161616;
	--secondary-color		: #FAFAFA;
	--text-color			: #161616;
	--accent-color			: #D9F07F;
	--dark-color			: #161616;
	--white-color			: #FFFFFF;
	--divider-color			: #E3E3E3;
	--dark-divider-color	: #FFFFFF1A;
	--error-color			: rgb(230, 87, 87);
	--default-font			: "New_hero_Medium";
	--accent-font			: "New_hero_Regular";
}

@font-face {
	font-family: New_hero_Medium;
	src: url('/assets/fonts/hero-new/Hero-New-Medium.otf');
}

@font-face {
	font-family: New_hero_Regular;
	src: url('/assets/fonts/hero-new/Hero-New-Regular.otf');
}
@font-face {
	font-family: New_hero_extrabold;
	src: url('/assets/fonts/hero-new/Hero-New-ExtraBold.otf');
}
@font-face {
	font-family: New_hero_semibold;
	src: url('/assets/fonts/hero-new/Hero-New-SemiBold.otf');
}
@font-face {
	font-family: New_hero_light;
	src: url('/assets/fonts/hero-new/Hero-New-Light.otf');
}
@font-face {
	font-family: New_hero_bold;
	src: url('/assets/fonts/hero-new/Hero-New-Bold.otf');
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

html, body{
	background-color: #F6F6F1 !important;
}
.hero{
	background-image: url('/assets/images/hero-bg.webp');
    padding: 100px 0 0;
    margin-top: -100px;
    height: 800px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.checkout-payment-method .checkout-option img{
    border-right: .3px solid #70707073;
    padding-right: 17px;
}

.toggle-switch img{
    width:40px
}

.google-button-container{
    width: 50%;
    margin: auto;
}


    .home .header-sticky .sticky-logo{
	display: none;
  }
    
  .home .header-sticky .logo{
    	display: block;
  }

  .header-sticky.active .logo{
	display: none;
  }

  .header-sticky.active .sticky-logo{
	display: block;
  }
  
  .header-sticky .sticky-logo{
	display: block;
  }
    
  .header-sticky .logo{
    	display: none;
  }
  .esim-data{
    display: flex;
    align-items: center;
    gap: 20px;
  }


body{
	font-family: var(--default-font);
	font-size: 15px;
	font-weight: 400;
	line-height: 1.6em;
	color: var(--text-color);
	background-color: var(--white-color);
}

p{
	line-height: 1.8em;
	margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-family: var(--accent-font);
	font-weight: 600;
	line-height: 1.2em;
	color: var(--primary-color);
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}

.container{
	max-width: 1350px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
    padding-right: 15px;
    padding-left: 15px;
}


.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.row{
    margin-right: -15px;
    margin-left: -15px;
}

.row > *{
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters{
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > *{
    padding-right: 0px;
    padding-left: 0px;
}

.btn-default{
	position: relative;
	display: inline-block;
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.1em;
	text-transform: capitalize;
	background: var(--accent-color);
	color: var(--primary-color);
	border-radius: 100px;
	padding: 12px 25px;
	border: none;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
	z-index: 1;
}

.btn-default:hover{
	background-color: transparent;
	color: var(--white-color);
}

.btn-default:hover::before{
	filter: brightness(0) invert(1);
	transform: translate(-22px, -50%);
}

.btn-default::after{
	content: '';
    display: block;
    position: absolute;
	top: 0;
    left: auto;
	right: 0;
    bottom: 0;
	width: 0;
	height: 100%;
	border-radius: 99px;
    background: var(--primary-color);
    transition: all 0.3s ease-in-out;
	z-index: -1;
}

.btn-default:hover:after{
	width: 100%;
	left: 0;
	right: auto;
}

.btn-default.contact-btn{
	padding: 16px 25px 16px 55px;
}

.btn-default.contact-btn::before{
	right: auto;
	left: 0;
	transform: translate(25px, -50%);
	background: url('../images/icon-contact-btn.svg');
	background-repeat: no-repeat;
    background-position: center center;
	background-size: 16px auto;
}

.btn-highlighted{
	position: relative;
	display: inline-block;
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.1em;
	text-align: center;
	text-transform: capitalize;
	background: var(--accent-color);
	color: var(--primary-color);
	border-radius: 100px;
	padding: 19px 25px;
	border: none;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
	z-index: 1;
}

.btn-highlighted:hover{
	background-color: transparent;
	color: var(--white-color);
}

.btn-highlighted::before{
	content: '';
    display: block;
    position: absolute;
	top: 0;
    left: auto;
	right: 0;
    bottom: 0;
	width: 0;
	height: 100%;
	border-radius: 99px;
    background: var(--primary-color);
    transition: all 0.3s ease-in-out;
	z-index: -1;
}

.btn-highlighted:hover::before{
	width: 100%;
	left: 0;
	right: auto;
}

#magic-cursor{
	position: absolute;
    width: 10px !important;
    height: 10px !important;
    pointer-events: none;
    z-index: 1000000;
}

#ball{
	position: fixed;
	display: block;
	left: 0;
	top: 0;
	transform: translate(-50%, -50%);
	width: 8px !important;
	height: 8px !important;
	background: var(--accent-color);
	margin: 0;
	border-radius: 50%;
	pointer-events: none;
	opacity:1 !important;
}

.about-simply .main{
	margin-left: 50px;
	margin-top: 40px;
}
.about-simply .main .section-title h4{
	color: #161616;
    font-family: New_hero_extrabold;
    font-size: 21px;
}
.about-simply .main .section-title h2{
	margin-top: 50px;
}
.about-simply .main .section-title h3{
	color: #161616;
    font-family: New_hero_extrabold;
    font-size: 23px;
	margin-top: 15px;
	opacity: .55;
}
.about-simply .features-content .section-title .highlight {
    padding-right: 5px;
}
.about-simply .blog-featured-image img{
	height: 308px;
	object-fit: cover;
}
.about-simply .main .col-lg-6 p{
	margin: 0px;
    margin-top: 20px;
    margin-left: 30px;
	margin-right: 30px;
    font-family: 'New_hero_Regular';
    font-size: 13px;
    line-height: 20px;
}
.about-simply .img-section img{
	height: 450px;
	object-fit: cover;
	border-radius: 31px;
}
.about-simply .img-section .col-lg-7{
	padding-right: 0px;
}
.about-simply .together .section-title{
	display: flex;
	justify-content: center;
}
.about-simply .together .section-title h2{
	margin-top: 0px;
}
.about-simply .together .col-lg-6 p:nth-child(1){
	margin-top: 100px;
}
.about-simply .together .col-lg-6 p:nth-child(2){
	margin-top: 50px;
	margin-bottom: 100px;
}
.about-simply .main hr{
    color: #70707059;
	width: 85%;
    margin-left: 50px;
}
.about-simply .main .cta-box-image.qr-box{
	background: transparent;
	padding: 0px;
	width: auto;
    height: auto;
	top: -70px;
}
.about-simply .main .cta-box-content .section-title p{
	font-size: 13px;
	opacity: 1;
	line-height: 20px;
	margin-top: 40px;
}
.about-simply .main .cta-box-content .section-title{
	margin-bottom: 30px;
}
.about-simply .main .cta-box-btn .store-btn img{
    height: 70px;
}
.about-simply .main .cta-box-content {
    margin-left: 50px;
}
.about-simply .main  .cta-box-image img{
	border: none;
	height: 500px;
}
.about-simply .our-features.bg-section {
    background: #FFFFFF;
    padding: 50px 70px;
    margin: 30px 0px;
}
.about-simply .our-features .section-title p{
	font-size: 15px;
	margin-top: 50px;
} 
.about-simply .features-content .section-title h2{
	font-size: 30px;
	margin-top: 30px;
}
.about-simply .view-all-btn-wrapper{
	display: flex;
	align-items: center;
}
.about-simply .view-all-btn2, .about-simply .view-all-btn{
	font-family: 'New_hero_semibold';
	margin-top: 20px !important;
}
.about-simply .our-faqs{
	border: none;
	padding: 80px;
	margin-bottom: 0px;
}
.about-simply .post-featured-image a {
    position: relative;
    display: block;
    border-radius: 31px;
    height: 550px;
    overflow: hidden;
}
.about-simply .post-item p{
	margin-top: 30px;
	margin-bottom: 30px;
	color:#F6F6F1;
	opacity: .61;
	font-family: 'New_hero_regular';
	font-size:16px;
}
.about-simply .post-meta{
	margin-bottom: 20px;
}
.about-simply .post-meta .small{
	font-size: 12px;
	font-family: 'New_hero_Regular';
	color:#F6F6F1;
	opacity: .61;
}
.about-simply .post-item .post-title{
	width: 60%;
}
.about-simply .post-item .post-title a{
	color: #F6F6F1;
    font-size: 35px;
    font-family: 'New_hero_extrabold';
}
.about-simply .main .blog .section-title{
	margin-bottom: 40px;
}
.about-simply .blog .blog-content h3{
	font-family: 'New_hero_extrabold';
	margin-bottom: 15px;
	color: #161616;
}
.about-simply .blog .blog-content p{
	font-family: 'New_hero_regular';
	font-size: 15px;
	color:#161616;
	opacity: .61;
	margin-bottom: 20px;
}
.about-simply .blog-item-body{
	margin-left: 20px;
}
.main-blog .main-footer.bg-section{
	padding-top: 20px;
}
.single-blog .post-title{
	margin-top: 40px !important;
	margin: auto;
	text-align: center;
	font-size: 35px;
	width: 50% !important;
	margin-bottom: 20px;
}
.single-blog .img-fluid{
	height: 400px;
    width: 100%;
    object-fit: cover;
	border-radius: 31px;
}
.about-simply.single-blog .post-meta .small{
	color: #161616 !important;
	display: flex;
	justify-content: center;
}
.single-blog .section-title{
	margin-bottom: 40px;
}
.single-blog .reading-time p{
	margin: 0px !important;
}
.single-blog .reading-time .block{
	display: flex;
	align-items: center;
	margin-top: 5px;
}
.single-blog .reading-time .reading{
	opacity: .61;
}
.single-blog .reading-time .block img{
	margin-right: 5px;
}
.single-blog.about-simply .single-blog-title{
	font-family: 'New_hero_Regular';
	font-size: 16px;
	margin-top: 20px;
    margin-left: 30px;
    margin-right: 30px;
}
.single-blog .main .col-lg-6 .desc{
	font-size: 16px !important;
	opacity: .61;
	padding-bottom: 100px;
}
.device-check-form {
	display: flex;
	align-items: center;
	position: relative;
	max-width: 550px;
	overflow: hidden;
}
  
  .device-check-form input[type="text"]::placeholder{
	color: #1616164f;
  }
  .device-check-form input[type="text"] {
    flex: 1;
    border: none;
    padding: 18px 25px;
    font-size: 16px;
    border-radius: 44px;
    outline: none;
    font-family: 'New_hero_Medium';
    color: #161616;
	z-index: 99;
  }
  
  .device-check-form button {
	padding: 0 40px;
	padding-left: 100px;
	background-color: #D9F07F;
	color: #000;
	font-family: 'New_hero_Medium';
	font-size: 16px;
	height: 60px;
	border: none;
	border-radius:44px;
	cursor: pointer;
	transition: background 0.3s;
	position: relative;
	left: -50px;
	z-index: 1;
  }
  
.device-check-form button:hover {
	background-color: #d6eb70;
}
.about-simply .our-features.device .section-title p{
	margin-left: 0px;
	margin-bottom: 50px;
}
.about-simply .device-title{
	margin: 80px 0px;
	display: flex;
	justify-content: center;
}
.about-simply .device-title h2{
	text-align: center;
}

.device-menu {
	background: #EFEFEF;
	padding: 42px;
	border-radius: 43px;
  }
  
  .device-category {
	margin-bottom: 20px;
	cursor: pointer;
	font-family: 'New_hero_Medium';
    font-size: 18px;
  }
  
  .device-category img{
	margin-left: 20px;
  }

  .device-category.active img{
	transform: rotate(90deg);
  }

  .device-category:last-child{
	margin: 0px;
  }
  
  .device-category ul.sub-menu {
	margin-top: 10px;
	padding-left: 15px;
	display: none;
	list-style: none;
  }
  
  .device-category ul.sub-menu li, .device-content.restrictions ul{
    cursor: pointer;
    opacity: .61;
    color: #161616;
    margin: 5px 0;
    font-family: 'New_hero_regular';
    font-size: 18px;
  }
  
  .device-content {
	display: none;
  }
  
  .device-content.active {
	display: block;
  }
  
  .device-content ul li {
	list-style: none;
	margin-bottom: 10px;
	font-size: 16px;
	display: flex;
	align-items: center;
  }
  
  .device-content ul li .dot {
	width: 8px;
	height: 8px;
	background: #d9f276;
	border-radius: 50%;
	margin-right: 10px;
}
.device .col-lg-8{
	padding-left: 75px;
}
.device .col-lg-8 h2{
	font-size: 30px;
    font-family: 'New_hero_extrabold';
    margin-bottom: 40px;
	margin-top: 30px;
}
.device .col-lg-8 h4{
	font-size: 20px;
    font-family: 'New_hero_medium';
    margin-bottom: 25px;
}
.device .col-lg-8 ul{
	padding: 0;
    font-family: 'New_hero_Regular';
    color: #161616;
    opacity: .61;
    font-size: 16px;
}
.device-content.restrictions{
	display: block;
	margin-top: 100px;
	margin-bottom: 30px;
}
.device-content.restrictions h2{
	margin-bottom: 20px;
}
.device-content.restrictions h4{
	font-family: 'New_hero_Regular';
    font-size: 18px;
    margin-bottom: 30px;
	font-weight: 500;
}
.our-features.device p{
	font-family: 'New_hero_Regular';
    font-size: 16px;
    margin-bottom: 0px;
	font-weight: 500;
}
.device-menu .sub-menu li.active{
	font-weight: 600;
	opacity: 1;
}
.device-check-form img{
	position: absolute;
    z-index: 9999;
    left: 20px;
    width: 30px;
}
.compatibilive .device-check-form input[type="text"]{
	padding-left: 70px;
}
.support-page .support{
	margin-top: 70px;
}
.support-page .highlight3{
	color: #e1fd77;
    display: inline;
    background: linear-gradient(to top, #161616 45%, transparent 45%);
	padding-top: 4px;
}
.support-page .faq-item {
    border-bottom: none;
    padding: 25px 80px !important;
    background: #FFFFFF;
    border-radius: 21px;
    margin-bottom: 10px;
}
.support-page .our-faqs-box{
	width: 80%;
    margin: auto;
}
.support-page .our-faqs-box .faq-answer p{
	text-align: left;
}
.my-esim .header{
	text-align: left;
}
.my-esim .header .tab-nav{
	justify-content: start;
}
.my-esim #h2title{
	font-size: 20px;
	font-family: 'New_hero_semibold';
}
.my-esim .section-title p{
	font-size: 16px;
	font-family: 'New_hero_Regular';
}
.my-esim .view-all-btn{
	margin-left: 0px;
	margin-top: 0px;
	font-family: 'New_hero_medium';
}
.ml-30{
	margin-left: 25px;
}
.my-esim .pb{
	padding-bottom: 150px;
}

.esim-plans {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 25px;
	margin-bottom: 20px;
  }
  
  .plan-box {
	background: #fff;
    border-radius: 18px;
    padding: 17px 25px;
    padding-right: 15px;
	display: flex;
	align-items: center;
	position: relative;
	cursor: pointer;
	transition: box-shadow 0.3s ease;
  }
  .plan-box.active{
	background: #D9F07F;
    border: 1px solid #000000;
  }
  .plan-box.active .plan-gb{
    border: none;
    background: #FFFFFF;
  }
  .plan-box.active input[type="radio"]{
	border: none;
    background: white;
  }
  .plan-box.active input[type="radio"]:checked::before{
	background: #D9F07F;
	border: 1px solid #707070;
  }
  .plan-box.active .plan-duration{
	background-color: white;
  }
  .plan-box.active .plan-price{
	font-family: 'New_hero_bold';
  }
  
  .plan-box input[type="radio"] {
	appearance: none;
	width: 20px;
	height: 20px;
	border: 1px solid #aaa;
	border-radius: 50%;
	margin-left: auto;
	margin-right: 10px;
	position: relative;
  }
  
  .plan-box input[type="radio"]:checked::before {
	content: '';
	position: absolute;
	top: 4px;
	left: 4px;
	width: 12px;
	height: 12px;
	background: #111;
	border-radius: 50%;
  }
  
  .plan-inner {
	display: flex;
	flex-direction: row;
	gap: 10px;
  }
  
  .plan-gb {
	border: 1px solid #24282B;
	padding: 10px 20px;
	border-radius: 9px;
	font-size: 17px;
	font-family: 'New_hero_extrabold';
    display: flex;
    align-items: center;
  }
  
  .plan-price {
	font-size: 16px;
	font-family: 'New_hero_light';
  }
  
  .plan-duration {
	font-size: 8px;
	font-family: 'New_hero_regular';
	background: #0000001b;
	display: inline-block;
	padding: 0px 10px;
	border-radius: 4px;
	font-weight: 500;
	width: fit-content;
  }
  
  .best-badge {
    position: absolute;
    top: 35px;
    right: 60px;
    height: 25px;
  }
  
  .view-all-btn.active {
	background: #000000 !important;
	pointer-events: all !important;
  }
  
  .plan-data hr{
	margin: .3em;
	margin-top: 0;
    color: #707070;
}
  
.esim .our-features .col-lg-7{
	padding-left: 30px;
}
.esim .our-features .col-lg-7 img{
	margin-left: 10px;
}
.esim .our-features .col-lg-7  p{
	font-size: 16px;
	margin-top: 20px;
	margin-bottom: 35px;
	margin-bottom: 35px;
    font-family: 'New_hero_Regular';
}
.about-simply.esim  .our-features.bg-section{
	background: transparent;
	margin: 0px;
}
.about-simply.esim .view-all-btn-wrapper{
	margin-top: 0px;
	margin-bottom: 40px;
	gap: 25px;
}
.about-simply.esim .view-all-btn,.about-simply.esim .view-all-btn2{
	width: 100%;
	font-family: 'New_hero_medium';
	margin-bottom: 0px;
}
.about-simply.esim .esim-block .view-all-btn{
	background-color: #707070;
	color: #D3F26A;
	pointer-events: none;
}
.about-simply.esim .esim-block  .our-faqs{
	padding: 0px;
	padding-top: 40px;
}
.about-simply.esim .line{
	color: #7070704f;
	margin: 0px;
}
.about-simply.esim .esim-block .faq-item{
	padding: 0px;
}
.about-simply.esim .esim-block  .faq-answer{
	display: block;
}
.about-simply.esim .esim-block .faq-answer ul{
	padding-left: 0rem;
	list-style: none;
	font-size: 16px;
	font-family: 'New_hero_Regular';
}
.about-simply.esim .esim-block  .tab-content.device-content{
	display: block;
}
.about-simply.esim .esim-block .our-faqs .tab-nav{
	margin-bottom: 20px;
}
.about-simply.esim .our-services{
	border-radius: 0px;
	padding: 60px 70px;
	padding-bottom: 100px;
}
.about-simply.esim .our-services p{
	font-size: 15px;
    font-family: 'New_hero_Regular';
}
.about-simply.esim .our-services .section-heading{
	margin-bottom: 25px;
}
.about-simply.esim .our-services .country-card{
	background-color: #F6F6F1;
}
.about-simply.esim .our-services .country-card .country-name{
	width: auto;
}
.about-simply.esim .our-services .country-card  .flag {
    width: 44px;
    border-radius: 22px;
    flex-shrink: 0;
    background: #E4E4E4;
    padding: 10px;
}
.about-simply.esim .activate{
	padding-top: 100px;
	padding-bottom: 100px;
}
.bg-green{
	background-color: #D9F07F !important;
}
.esim .activate .cta-box-image img {
    border: none;
    height: 500px;
}
.esim .activate .cta-box-image{
	position: relative;
	top: -70px;
}
.esim .activate .section-title h2{
	margin-top: 50px;
}
.esim .activate .section-title p{
	margin-top: 25px;
	font-size: 15px;
	margin-bottom: 25px;
}
.esim .activate .section-title{
	margin-bottom: 0px;
}
.esim .activate .cta-box-btn .store-btn img {
    height: 70px;
}
.about-simply.esim .our-faqs{
	padding-top: 0px;
}
.esim .esim-block .col-lg-5{
	padding-left: 50px;
}
.modal.fade{
	background-color: #b5b5b200;
}

.header-sticky {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	transition: all 0.3s ease;
	z-index: 999;
  }
  
  .header-sticky.active {
	background: white !important;
  }

  .header-sticky.active .main-menu ul li a{
	color: black;
  }
  .header-sticky.active .main-menu .nav-menu-wrapper{
	border-color: black;
  }
  .header-sticky.active .header-btn .btn-login.lang span{
	color: black;
  }
  .header-sticky.active .header-btn .btn-login{
	color: black;
	border-color: black;
  }

/*home banner*/
  .qr-and-title {
	display: flex;
	align-items: flex-start;
	gap: 24px;
  }
  
  .qr-img {
	width: 160px;
    height: auto;
    outline: 1px solid #707070;
    padding: 5px;
    background: white;
    border: 5px solid #d9f07f;
  }
  
  .hero-text h1 {
	color: white;
	font-size: 60px;
	line-height: 1.2;
	font-weight: 400;
	font-family: New_hero_extrabold;
	letter-spacing: 2px;
	margin: 0;
  }
  
  .hero-text h2 {
	color: white;
	font-size: 32px;
	font-weight: 400;
	margin: 10px 0 20px;
	margin-bottom: 0px;
	font-family: 'New_hero_Regular';
  }

	.hero-text img{
        margin-top: 20px;
	}

  .hero-text h2 span{
	margin-left: 5px;
	font-family: 'New_hero_extrabold';
  }

  .search-icon p{
	margin: 0px;
	font-family: 'New_hero_Regular';
	opacity: .68;
  }

  .search-icon img{
	padding: 5px;
    background: #6f6d6d38;
    border-radius: 37px;
    width: 30px;
    height: 30px;
  }
  
  .hero-text h2 strong {
	font-family: 'New_hero_extrabold';
  }
  
  .hero-text p {
	font-size: 16px;
	max-width: 500px;
	margin: 0;
	color: #333;
  }

  .hero .cta-box-btn{
	margin-top: 30px;
	gap: 15px;
	justify-content: center;
  }

  .home .hero .cta-box-btn img{
	width: 170px;
	height: 70px;
  }
  
  /* Search Bar */
  .search-bar {
	background-image:url('https://simplyesim.app/assets/images/img/search_bg3.png');
    background-size: cover;
    background-position: center;
	padding: 10px;
    padding-left: 35px;
	border-radius: 37px;
	max-width: 500px;
	margin: auto;
	margin-top: 25px;
	z-index:1
  }
  
  .search-icon {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #D9F07F;
    border-radius: 37px;
    width: 150px;
    padding-left: 5px;
    height: 43px;
  }
  .qr-text p{
	margin: 20px 0px;
	opacity: .7;
	font-family: 'New_hero_Regular';
	color: white;
  }
  .search-bar input {
	border: none;
	font-size: 14px;
	opacity:.5;
	width: 100%;
	outline: none;
	font-family: 'New_hero_Regular';
	color: #161616;
	background: transparent;
  }

  .search-bar {
    position: relative;
}

.search-results {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
	background-image:url('https://simplyesim.app/assets/images/img/search_bg3.png');
    background-size: cover;
    background-position: center;
    z-index: 100;
    display: none;
    padding: 10px 0;
    border-radius: 37px;
	padding-top: 80px;
}

.search-form{
	display: flex;
	align-items: center;
	position: relative;
	z-index: 999999;
}

.search-results ul {
    list-style: none;
    padding: 0;
    margin: 0;
	text-align: left;
	padding-left: 20px;
}

.search-results li {
    padding: 8px 15px;
    cursor: pointer;
    color: #333;
}

.search-results li:hover {
    background-color: #f0f0f0;
	width: 98%;
}

.search-results .category-heading {
    font-weight: bold;
    padding: 10px 15px 5px;
    color: #666;
    font-size: 0.9em;
}
  
.phones-img {
	width: 100%;
	max-width: 500px;
	height: auto;
	margin-right: 50px;
}

.data-plan-section {
    background: #f8f7f2;
    padding: 50px 20px;
    padding-bottom:80px;
    text-align: center;
  }

  .section-heading {
    font-size: 35px;
    margin-bottom: 40px;
	font-family: 'New_hero_extrabold';
  }

  .highlight {
	display: inline;
    background: linear-gradient(to top, #e1fd77 45%, transparent 45%);
    padding: 0 5px;
	padding-left: 0px;
  }

  .tab-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    list-style: none;
    padding: 0;
  }

  .tab-btn {
    padding: 12px 70px;
    font-size: 16px;
    border: none;
    border-radius: 999px;
    background: transparent;
    cursor: pointer;
	font-size: 18px;
    transition: all 0.2s ease;
	font-family:  'New_hero_Regular';
	opacity: .6;
	border:none
  }
  .tab-border{
	display:flex;
	border: 1px solid #16161617;
    border-radius: 77px;
  }

  .tab-btn.active {
    background: #D9F07F;
    color: black;
	opacity: 1;
  }

  .tab-pane {
    display: none;
  }

  .tab-pane.active {
    display: block;
  }

  .country-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .country-card {
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 2px solid transparent;
    transition: 0.3s;
    color:black;
  }

  .flag {
    width: 40px;
    border-radius: 6px;
    flex-shrink: 0;
  }

  .info {
    flex: 1;
    margin-left: 12px;
    text-align: left;
  }

  .country-name {
	font-size: 18px;
    font-weight: 500;
    border-bottom: 1px solid #ddd;
    display: inline-block;
    padding-bottom: 4px;
    margin-bottom: 8px;
    font-family: 'New_hero_semibold';
  }

  .price-row {
    display: flex;
    gap: 10px;
    font-size: 14px;
	font-family: 'New_hero_Regular';
	font-weight: 400;
  }
  .price-row strong{
	font-family: 'New_hero_extrabold';
  }
  .price-row span {
    background: #f0f0f0;
    padding: 4px 10px;
    border-radius: 8px;
  }

  .arrow {
    font-size: 20px;
    color: #999;
  }

  .view-all-btn-wrapper {
    margin-top: 67px;
  }

  .view-all-btn {
    background: #e1fd77;
    color: #000;
    border-radius: 77px;
    font-weight: 500;
	font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
	font-family: 'New_hero_Medium';
    width: 300px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
  }

  .view-all-btn:hover {
    opacity: 0.8;
  }

  .view-all-btn2 {
    background: transparent;
	border: 1px solid #161616;
    color: #000;
    border-radius: 77px;
    font-weight: 500;
	font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
	font-family: 'New_hero_Medium';
    width: 300px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
  }

  .view-all-btn2:hover {
	background: #e1fd77;
	border: none;
  }
  .our-services {
	background: #fff;
	padding: 77px 84px;
	padding-bottom: 100px;
	border-radius: 43px;
	margin:0px 60px;
  }

  .our-services .section-title h2 {
	font-size: 35px;
	font-family: 'New_hero_extrabold';
  }

  .step-thumbs {
	display: flex;
	gap: 16px;
	list-style: none;
	padding: 0;
	margin-top: 30px;
  }

  .step-thumbs li {
	flex: 1;
  }

  .step-thumbs .tab-btn {
	background: transparent;
	border: 1px solid transparent;
	padding: 0px;
	width: 100%;
	cursor: pointer;
	transition: border-color 0.3s ease;
	border-radius: 28px;
	opacity: 1;
  }

  .step-thumbs img {
	width: 220px;
	height: 258px;
	border-radius: 28px;
	display: block;
	object-fit: cover;
  }

  #step-content h2 {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 10px;
  }

  #step-content p {
	font-size: 16px;
	max-width: 400px;
	margin-top: 0px !important;
	color: #1f2021;
    opacity: .73;
	font-family: 'New_hero_Regular';
  }
  .esim-work .step-thumbs{
	margin: 0px;
  }	
  .esim-work .section-title.dynamic{
	display: flex;
	align-items: center;
  }
  .esim-work .section-title.dynamic h2{
	margin-bottom: 0px !important;
	margin-right: 8px;
	font-family: 'New_hero_semibold';
    color: #1f2021;
    opacity: .73;
  }
  .step-thumbs .tab-btn.active {
    border-color: #D9F07F;
  }



.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--dark-divider-color) transparent var(--dark-divider-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}

.bg-section{
	width: 100%;
	max-width: 1540px;
	margin: 0 auto;
	border-radius: 40px;
}

.section-row{
	margin-bottom: 80px;
}

.section-row .section-title{
	margin-bottom: 0;
	margin-right: 20px;
}

.section-btn{
	text-align: end;
}

.section-title{
	margin-bottom: 60px;
}

.section-title-content p{
	margin: 0;
}

.section-title h1{
	font-size: 56px;
	margin-bottom: 0;
	cursor: default;
}

.section-title h2{
	font-size: 35px;
	font-family: New_hero_extrabold;
	margin-bottom: 0;
	cursor: default;
}

.section-title p{
	margin-top: 30px;
	margin-bottom: 0;
}

.help-block.with-errors ul{
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li{
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

.topbar{
	position: relative;
	background-color: var(--accent-color);
	padding: 10px 0;
	z-index: 2;
}

.topbar-info-content{
	text-align: center;
}

.topbar-info-content p{
	margin: 0;
	color: var(--primary-color);
}

.topbar-info-content p img{
	max-width: 20px;
	margin-right: 4px;
}

.topbar-info-content p a{
	color: inherit;
	font-weight: 700;
	transition: all 0.3s ease-in-out;
}

.topbar-info-content p a:hover{
	color: var(--dark-color);
}

header.main-header{
	border-bottom: 1px solid var(--dark-divider-color);
	position: relative;
	z-index: 100;
}

.home header.main-header{
	border: none;
}

header.main-header .header-sticky{
	position: relative;
	top: 0;
	z-index: 100;
}

header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
    transform: translateY(0);
	background: var(--dark-color);
	border-bottom: 1px solid var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
}

.navbar{
	padding: 20px 0;
	align-items: center;
	background: transparent;
	transition: all 0.5s ease-in-out;
}

.home .navbar{
	padding: 20px 0px;
}
.navbar-brand{
	padding: 0;
	margin: 0;
}
.navbar-brand img{
	width: 80px;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	margin-left: 40px;
}

.home .main-menu .nav-menu-wrapper{
	margin-left: 30px;
    border-left: 1px solid #ffffff52;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu ul li{
	margin: 0 6px;
	position: relative;
}

.main-menu ul li a{
	font-family: var(--accent-font);
	font-size: 14px;
	font-weight: 500;
	padding: 3px 14px !important;
	color: #1F2021;
	transition: all 0.3s ease-in-out;
}

.home .main-menu ul li a{
	color: white;
}

.home .main-menu ul li a:hover{
	color: #d9f07f !important;
}
.main-menu ul li a:hover{
	color: #1F2021 !important;
}

.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: #1A75F0;
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 230px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background-color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul{
    width: 230px;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}
.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after{
    content: '\f105';
    float: right;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a{
	color: var(--primary-color);
	padding: 8px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus{
	color: var(--white-color);
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}

.header-btn{
	align-items: center;
}

.language-selector {
    position: relative;
    display: inline-block;
}

.language-selector .btn-login.lang {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.language-dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 100;
    border-radius: 5px;
    top: 100%; /* Position right below the main language button */
    left: 0;
    /* REMOVED: margin-top: 5px; <--- This often creates the gap */
    overflow: hidden;
}

.language-dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.language-dropdown-content a:hover {
    background-color: #ddd;
}

.language-dropdown-content a img {
    width: 20px;
    height: 20px;
}

.language-selector:hover .language-dropdown-content {
    display: block;
}

.header-btn .btn-login{
	font-family: var(--accent-font);
	font-size: 14px;
	font-weight: 500;
	color: #1F2021;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 10px;
    border: 1px solid #16161652;
    border-radius: 58px;
	padding: 7px 40px;
	margin-right: 15px;
    text-transform: none;
	transition: all 0.3s ease-in-out;
}

.home .header-btn .btn-login{
	color: white;
	border-color: white;
}

.home .header-btn .btn-login img{
	background: #ffffff6b;
    padding: 5px;
    border-radius: 50px;
}

.header-btn .btn-login.lang span{
	opacity: .45;
	text-transform: none;
}

.home .header-btn .btn-login.lang span{
	opacity: 1;
	color: white;
}
.header-btn .btn-login.lang{
	border: none;
	padding: 0px;
	margin-left: 15px;
	gap: 5px;
}
.header-btn .btn-login.lang .arrow{
	margin-left: 5px;
}

.header-btn .btn-login:hover{
	color: #cde279;
}

.responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	top: 0;
	position: relative;
}

.slicknav_btn{
	background: black;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 8px;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--accent-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child{
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child{
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1){
    transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2){
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3){
    transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu{
	position: absolute;
    width: 100%;
	padding: 0;
	background: var(--accent-color);
}

.slicknav_menu ul{
	margin: 5px 0;
}

.slicknav_menu ul ul{
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	position: relative;
	font-family: var(--accent-font);
	font-size: 15px;
	font-weight: 500;
	text-transform: capitalize;
	padding: 10px 20px;
	color: var(--primary-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover{
	background-color: transparent;
	color: var(--white-color);
}

.slicknav_menu ul ul li a{
    padding: 10px 20px 10px 30px;
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--primary-color);
	position: absolute;
	right: 15px;
    top: 15px;
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: rotate(-180deg);
	color: var(--white-color);
}

/*Auth pop up design*/

.signup-modal {
	border-radius: 32px;
	background: #fff;
	padding: 40px;
	border: none;
	position: relative;
  }
  
  .signup-modal .modal-title {
	font-family: 'New_hero_extrabold';
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 30px;
  }
  
  .signup-modal .custom-input {
	background: #f8f8f2;
	color: #1f2021;
	border: none;
	border-radius: 33px;
	padding: 16px 20px;
	font-size: 14px;
	margin-bottom: 20px;
  }

  .modal.show .modal-dialog {
    max-width: 600px;
	margin-top: 50px;
}

  .signup-modal .custom-input::placeholder{
	color: #1f20215d;
	font-family: 'New_hero_medium';
  }
  
  .signup-modal .btn-signup {
	background-color: #e1fd77;
	border-radius: 30px;
	padding: 14px 0;
	font-weight: 600;
	font-size: 18px;
	border: none;
	color: #000;
  }
  
  .signup-modal .close-btn, #EsimDetailsModal .close-btn {
    position: absolute;
    top: -60px;
    right: 0px;
    background: #FFFFFF;
    width: 50px;
    height: 50px;
    display: flex;
    line-break: auto;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    border: none;
  }
  
  .signup-modal .divider {
	position: relative;
    text-align: center;
    width: 75%;
    margin: 30px auto !important;
  }
  
  .signup-modal .divider span {
	background: #fff;
	padding: 0 10px;
	position: relative;
	z-index: 1;
  }

  .social-login{
	gap: 20px;
  }
  
  .signup-modal .divider::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	border-top: 1px solid #ccc;
	z-index: 0;
  }
  
  .social-login .social-btn {
	flex: 1;
	padding: 15px;
	font-size: 14px;
	border-radius: 23px;
	background: #f5f5f5;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border: none;
	font-weight: 500;
	transition: 0.3s ease;
	font-family: 'New_hero_Medium';
	color:black;
  }
  
  .social-login .social-btn img {
	width: 20px;
	height: 20px;
  }
  
  .signup-modal .forgot-password a {
	font-size: 13px;
	color: #000;
  }
  
  .signup-modal .terms-text {
    font-size: 14px;
    color: #999;
    font-family: 'New_hero_light';
    margin-top: 40px;
  }
  
  .signup-modal .terms-text a {
	color: #3A54FF;
	text-decoration: none;
  }

  .otp-inputs input.otp-box {
	width: 60px;
	height: 60px;
	border-radius: 16px;
	background: #fafaf3;
	border: none;
	font-size: 28px;
	text-align: center;
	font-weight: 500;
	outline: none;
  }
  
  .subtitle {
	font-size: 18px;
	font-weight: 500;
	font-family: 'New_hero_Medium';
  }
  
  .resend-info {
	font-size: 12px;
    color: #1F2021;
    margin-top: 20px;
    font-family: 'New_hero_Medium';
    opacity: .63;
  }

  .static-data .support{
	margin-top: 50px;
    padding-top: 40px;
    padding-bottom: 40px !important;
  }

  .static-data .section-heading{
	margin-bottom: 40px;
	font-size: 25px;
  }
  
  .static-data .data-plan-section .date{
    position: absolute;
    right: 80px;
    opacity: .42;
    font-family: 'New_hero_Regular';
  }

  .static-data .data-plan-section{
	border: 1px solid #7070705e;
    max-width: 1350px;
    margin: auto;
    border-radius: 23px;
    margin-top: 34px;
	text-align: left;
	padding-left: 80px;
	padding-right: 80px;
  }

  .static-data .data-plan-section .content p{
	font-family: 'New_hero_regular';
	font-size: 16px;
	margin-bottom: 20px;
  }

  .static-data .data-plan-section .content h2{
	font-family: 'New_hero_extrabold';
    font-size: 25px;
    margin-bottom: 20px;
  }

  .static-data .data-plan-section .content ul,  .static-data .data-plan-section .content li{
	padding-left: 0;
    list-style: none;
    font-size: 16px;
    font-family: 'New_hero_Regular';
	padding-bottom: 20px;
  }

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero .col-md-12{
	text-align: center;
	margin-top: 80px;
}

.hero.hero-image::before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    opacity: 70%;
    width: 100%;
    height: 100%;
	z-index: 1;
}

.hero.hero-image.hero-video .hero-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video .hero-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-image.hero-slider-layout{
	background: none;
	padding: 0;
}

.hero.hero-image.hero-slider-layout .hero-slide{
	position: relative;
    padding: 250px 0 155px;
}

.hero.hero-image.hero-slider-layout .hero-slide::before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
	background-color: var(--primary-color);
    opacity: 70%;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero.hero-image.hero-slider-layout .hero-slide .hero-slider-image{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-image.hero-slider-layout .hero-slide .hero-slider-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-image.hero-slider-layout .hero-pagination{
	position: absolute;
    bottom: 60px;
	text-align: center;
	z-index: 2;
}

.hero.hero-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: var(--white-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero.hero-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active{
    background-color: var(--accent-color);
}

.hero.hero-image .hero-content{
	width: 100%;
	max-width: 850px;
	margin: 0 auto;
	text-align: center;
}

.hero.hero-image .hero-content .section-title h1{
	font-size: 62px;
}

.hero.hero-image .hero-content .hero-content-btn .btn-default{
	margin-right: 30px;
}

.hero-content{
	position: relative;
	margin-right: 20px;
	z-index: 2;
}

.hero-content .section-title p,
.hero-content .section-title h1{
	color: var(--white-color);
}

.hero-content .section-title h3{
	color: var(--accent-color);
}

.hero-content .section-title h3::before{
	background: url('../images/icon-sub-heading-accent.svg');
}

.hero-content-form .form-group{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border: 1px solid var(--accent-color);
	border-radius: 100px;
	position: relative;
	z-index: 1;
}

.hero-content-form .form-group .form-control{
	width: 60%;
	padding: 14px 25px;
	background: transparent;
	border: none;
	color: var(--white-color);
}

.hero-content-form .form-group .form-control:focus{
	outline: none;
	box-shadow: none;
}

.hero-content-form .form-group .form-control::placeholder{
	color: var(--white-color);
}

.hero-images{
	position: relative;
}

.hero-counter-box{
	margin-left: 30px;
}

.hero-counter-item{
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.hero-counter-item:last-child{
	border-bottom: none;
	margin-bottom: 0px;
	padding-bottom: 0px;
}

.hero-counter-item h2{
	font-size: 56px;
	color: var(--accent-color);
	margin-bottom: 10px;
}

.hero-counter-item p{
	color: var(--white-color);
	margin: 0;
}

/************************************/
/***       06. About Us css	      ***/
/************************************/

.about-us{
	border-radius: 0;
	padding: 100px 0 50px;
}

.about-company-item{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.about-company-item .icon-box{
	position: relative;
	background-color: var(--accent-color);
	width: 60px;
	height: 60px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 30px;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}

.about-company-item .icon-box::before{
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	top: 0;
	left: 0;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	border-radius: 16px;
}

.about-company-item:hover .icon-box:before{
	transform: scale(1);
}

.about-company-item .icon-box img{
	position: relative;
	max-width: 40px;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.about-company-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.about-company-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.about-company-content p{
	margin: 0;
}

.about-video-image{
	position: relative;
	margin-top: 30px;
}

.about-us-video{
	height: 600px;
}

.about-us-video figure{
	position: relative;
	border-radius: 40px;
	height: 100%;
	overflow: hidden;
}

.about-us-video figure::before{
	content: '';
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    opacity: 30%;
    width: 100%;
    height: 100%;
}

.about-us-video video{
	width: 100%;
	border-radius: 40px;
	height: 100%;
	object-fit: cover;
}

.video-play-button{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.video-play-button a{
	position: relative;
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
	border: 1px solid var(--white-color);
	border-radius: 50%;
	width: 100px;
	height: 100px;
	margin: 0 auto;	
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: default;
}

/************************************/
/***     07. Our Services css	  ***/
/************************************/


.our-services .col-lg-4:nth-child(even) .service-box{
	background: var(--dark-color);
}

.service-box{
	background: var(--secondary-color);
	border-radius: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px 30px 0 30px;
}

.service-box-header{
	margin-bottom: 30px;
}

.service-box-tag{
	margin-bottom: 20px;
}

.service-box-tag a{
	display: inline-block;
	background-color: var(--accent-color);
	color: var(--primary-color);
	border-radius: 50px;
	font-size: 14px;
	line-height: 1.2em;
	text-transform: capitalize;
	padding: 10px 20px;
}

.service-box-title h3{
	font-size: 20px;
}

.our-services .col-lg-4:nth-child(even) .service-box .service-box-title h3{
	color: var(--white-color);
}

.service-box-image img{
	border-radius: 43px;
	width: 346px;
	height: 471px;
	object-fit: cover;
}
.esim-work .section-title{
	margin-bottom: 35px;
}

/************************************/
/***     08. Our Expertise css	  ***/
/************************************/

.our-expertise.bg-section{
	background-color: var(--secondary-color);
	overflow: hidden;
	padding: 100px 0;
}

.our-tab-nav{
	margin-bottom: 60px;
	text-align: center;
}

.our-tab-nav .nav-tabs{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	border: none;
	list-style: none;
	padding: 0;
	margin: 0;
}

.our-tab-nav ul li{
	width: calc(25% - 22.5px);
}

.our-tab-nav ul li .nav-link{
	width: 100%;
	background-color: var(--white-color);
	border: none;
	border-radius: 100px;
}

.our-tab-nav ul li .nav-link:hover{
	border: none;
}

.our-tab-nav ul li .nav-link.btn-highlighted:before{
	background-color: var(--dark-color);
}

.our-tab-nav ul li .nav-link.active{
	background-color: var(--dark-color);
	color: var(--white-color);
	border: none;
}

.expertise-content{
	background-color: var(--white-color);
	border-radius: 30px;
	padding: 40px;
}

.expertise-content-header{
	margin-bottom: 40px;
}

.expertise-content-header h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.expertise-content-header p{
	margin: 0;
}

.expertise-content-body{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 40px;
}

.expertise-list-item{
	width: 100%;
	display: flex;
	align-items: center;
}

.expertise-list-item .icon-box{
	margin-right: 20px;
}

.expertise-list-item .icon-box img{
	max-width: 24px;
}

.expertise-list-content{
	width: calc(100% - 44px);
}

.expertise-list-content p{
	color: var(--primary-color);
	text-transform: capitalize;
	margin: 0;
}

.expertise-image figure{
	display: block;
	border-radius: 30px;
	overflow: hidden;
}

.expertise-image img{
	width: 100%;
	aspect-ratio:  1 / 0.75;
	object-fit: cover;
	border-radius: 30px;
}

/************************************/
/***     09. Why Choose Us css	  ***/
/************************************/

.why-choose-us{
	padding: 100px 0 70px;
}

.why-choose-item{
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.why-choose-image{
	position: relative;
}

.why-choose-image figure{
	border-radius: 30px;
	overflow: hidden;
}

.why-choose-image img{
	width: 100%;
	aspect-ratio: 1 / 1.24;
	object-fit: cover;
	border-radius: 30px;
	transition: all 0.4s ease-in-out;
}

.why-choose-item:hover .why-choose-image img{
	transform: scale(1.1);
}

.why-choose-no{
	position: absolute;
	top: 20px;
	left: 20px;
}

.why-choose-no h3{
	background-color: var(--accent-color);
	border-radius: 50%;
	font-size: 20px;
	width: 56px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.why-choose-item:hover .why-choose-no h3{
	background-color: var(--dark-color);
	color: var(--white-color);
}

.why-choose-body{
	position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
    border-radius: 15px;
    overflow: hidden;
    padding: 20px;
}

.why-choose-body::before{
    content: '';
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    opacity: 20%;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.why-choose-content{
	position: relative;
	z-index: 1;
}

.why-choose-content h3{
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 10px;
}

.why-choose-content p{
	color: var(--white-color);
	margin: 0;
}

.why-choose-btn{
	position: relative;
	opacity: 0;
	visibility: hidden;
	height: 0;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.why-choose-item:hover .why-choose-btn{
	opacity: 1;
	visibility: visible;
	margin-top: 20px;
	height: 50px;
}

.readmore-btn{
	display: inline-block;
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover{
	background-color: var(--dark-color);
}

.readmore-btn img{
	max-width: 24px;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover img{
	filter: brightness(0) invert(1);
}

/************************************/
/***     10. Our Approach css	  ***/
/************************************/

.our-approach.bg-section{
	background: var(--dark-color) url('../images/approach-bg-shape.svg');
	background-repeat: no-repeat;
	background-position: top 220px center;
	background-size: 100% auto;
	overflow: hidden;
	padding: 100px 0;
}

.our-approach.bg-section .section-row{
	margin-bottom: 100px;
}

.our-approach.bg-section .section-title h3{
	color: var(--accent-color);
}

.our-approach.bg-section .section-title h3::before{
	background: url(../images/icon-sub-heading-accent.svg);
}

.our-approach.bg-section .section-title-content p,
.our-approach.bg-section .section-title h2{
	color: var(--white-color);
}

.approach-item{
	background-color: var(--white-color);
	border-radius: 20px;
	overflow: hidden;
}

.approach-btn{
	display: flex;
	justify-content: end;
}

.approach-tags a{
	display: inline-block;
	background-color: var(--accent-color);
	border-radius: 50px;
	line-height: 1.2em;
	color: var(--primary-color);
	text-transform: capitalize;
	padding: 8px 20px;
}

.approach-content h3{
	font-size: 20px;
}

.approach-content p{
	margin: 0;
}

.approach-image img{
	width: 100%;
}

.approach-item.approach-box-1 .approach-image::before,
.approach-item.approach-box-4 .approach-image::before{
	content: '';
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    right: 0;
	background: linear-gradient(0deg, var(--white-color) 5%, transparent 55%);
    width: 100%;
    height: 100%;
    z-index: 0;
}

.approach-item.approach-box-1{
	background-color: var(--white-color);
	border-radius: 20px;
	padding: 20px;
}

.approach-item.approach-box-1 .approach-image{
	position: relative;
	padding-bottom: 20px;
}

.approach-item.approach-box-1 .approach-tags{
	margin-bottom: 20px;
}

.approach-item.approach-box-1 .approach-content h3{
	margin-bottom: 10px;
}

.approach-item.approach-box-2 .approach-content{
	margin-bottom: 10px;
	padding: 20px;
}

.approach-item.approach-box-3 .approach-header{
	display: flex;
	justify-content: space-between;
	padding: 20px;
}

.approach-item.approach-box-3 .approach-content{
	margin-bottom: 10px;
}

.approach-item.approach-box-3 .approach-btn{
	margin-left: 10px;
}

.approach-item.approach-box-4 .approach-body,
.approach-item.approach-box-4 .approach-btn{
	padding: 20px;
}

.approach-item.approach-box-4 .approach-image{
	position: relative;
}

.approach-item.approach-box-4 .approach-image img{
	width: auto;
}

/************************************/
/***    11. Company Wisdom css	  ***/
/************************************/

.company-wisdom{
	padding: 100px 0;
}

.company-wisdom-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.company-wisdom-item,
.company-wisdom-image{
	width: calc(25% - 22.5px);
}

.company-wisdom-image figure{
	display: block;
	height: 100%;
	border-radius: 30px;
	overflow: hidden;
}

.company-wisdom-image img{
	aspect-ratio: 1 / 0.99;
	object-fit: cover;
	border-radius: 30px;
}

.company-wisdom-box .company-wisdom-item{
	display: flex;
	flex-wrap: wrap;
	align-content: space-between;
	background: var(--accent-color);
	border-radius: 30px;
	padding: 30px;
}

.company-wisdom-box .company-wisdom-item:nth-child(7),
.company-wisdom-box .company-wisdom-item:nth-child(2){
	background: url('../images/company-wisdom-bg.svg') no-repeat;
	background-position: center center;
	background-size: cover;
}

.company-counter-title{
	width: 100%;
	margin-bottom: 10px;
}

.company-counter-title h3{
	font-size: 20px;
}

.company-wisdom-counter{
	width: 100%;
}

.company-wisdom-counter h2{
	font-size: 56px;
}

/************************************/
/***    12. Our Features css	  ***/
/************************************/

.our-features.bg-section{
	background: #F6F6F1;
    overflow: hidden;
    padding: 90px 0;
}

.features-content .section-title h3{
	color: var(--accent-color);
}

.features-content .section-title h3::before{
	background: url('../images/icon-sub-heading-accent.svg');
}

.features-content .section-title h2{
	color: #161616;
	font-family: New_hero_extrabold;
	font-size: 35px;
}
.features-content .section-title .highlight{
	padding-right: 60px;
}
.home .features-content .section-title .highlight{
    padding-right:0px;
}
.col-lg-6.right{
	text-align: right;
}
.our-features .section-title p,.our-features .section-title .spantext{
	font-size: 18px;
    font-family: 'New_hero_Regular';
    width: 100%;
}
.our-features .section-title p{
	margin-bottom: 50px;
}
.our-features .section-title .spantext a{
	text-decoration: underline;
	color: #2D78F9;
}
.our-features .view-all-btn{
	margin: inherit;
}

/************************************/
/***   	 13. Our Prcing css	      ***/
/************************************/

.our-pricing{
	padding: 100px 0;
}

.pricing-box{
	background-color: var(--secondary-color);
	border-radius: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px;
}

.pricing-box.highlighted-box{
	background-color: var(--dark-color);
}

.pricing-box-header{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.pricing-box.highlighted-box .pricing-box-header{
	border-color: var(--dark-divider-color);
}

.pricing-box-title{
	margin-bottom: 20px;
}

.pricing-box-title p{
	color: var(--primary-color);
	text-transform: capitalize;
	margin: 0;
}

.pricing-box.highlighted-box .pricing-box-title p{
	color: var(--white-color);
}

.pricing-box-price{
	margin-bottom: 20px;
}

.pricing-box-price h2{
	font-size: 56px;
}

.pricing-box.highlighted-box .pricing-box-price h2{
	color: var(--white-color);
}

.pricing-box-price h2 sub{
	font-size: 15px;
	font-weight: 400;
	text-transform: capitalize;
	bottom: 0;
}

.pricing-box-content p{
	margin: 0;
}

.pricing-box.highlighted-box .pricing-box-content p{
	color: var(--white-color);
}

.pricing-box-body{
	margin-bottom: 30px;
}

.pricing-box-body ul{
    padding: 0;
    margin: 0;
    list-style: none;
}

.pricing-box-body ul li{
    position: relative;
	color: var(--primary-color);
    padding-left: 35px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.pricing-box.highlighted-box .pricing-box-body ul li{
	color: var(--white-color);
}

.pricing-box-body ul li:last-child{
	margin-bottom: 0;
}

.pricing-box-body ul li:before{
    content: '\f058';
	font-family: 'FontAwesome';
    background-color: transparent;
    color: var(--accent-color);
    font-size: 20px;
    font-weight: 400;
    position: absolute;
    top: 0;
    left: 0;
}

.pricing-box-footer .btn-highlighted{
	width: 100%;
}

/************************************/
/***   	   14. CTA Box css	      ***/
/************************************/

.cta-box {
	background-color: #D9F07F;
	padding-bottom: 30px;
  }

  .cta-box-image.qr-box {
	width: 357px;
	height: 450px;
	margin: auto;
	background: #fff;
	border-radius: 38px;
	padding: 76px 40px;
	text-align: center;
	position: relative;
    top: -50px;
    left:50px;
  }

  .cta-box-image.qr-box p {
    font-size: 18px;
    color: #161616;
    font-weight: 500;
    font-family: 'New_hero_Regular';
    margin: 0px !important;
  }

  .cta-box-content .section-title h2 {
	font-size: 36px;
	font-weight: 700;
	color: #000;
  }

  .cta-box-content p {
	font-size: 16px;
	color: #222;
	max-width: 500px;
	margin-top: 20px;
  }

  .highlight2 {
	display: inline;
    background: linear-gradient(to top, #fff 45%, transparent 45%);
	padding: 0 5px;
	padding-left: 0px;
  }

  .cta-box-btn {
	display: flex;
	gap: 24px;
	margin-top: 0px;

  }
.cta-box-image.qr-box .cta-box-btn{
    	margin:auto;
}
  .cta-box .section-title{
	margin-bottom: 50px;
  }

  .cta-box-btn .store-btn img {
	transition: 0.3s;
  }

  .cta-box-btn .store-btn:hover img {
	transform: scale(1.05);
  }

.cta-box-image img{
	border-radius: 30px 30px 0 0;
}

.cta-box-content{
	margin-left: 30px;
}

.cta-box-content .section-title h3{
	color: var(--accent-color);
}

.cta-box-content .section-title h3::before{
	background: url('../images/icon-sub-heading-accent.svg');
}

.cta-box-content .section-title h2{
	color: #161616;
	font-family: New_hero_extrabold;
	font-size: 35px;
}
.cta-box-content .section-title p{
	color: #161616;
    font-family: New_hero_Regular;
    font-size: 18px;
    opacity: .74;
    line-height: 25px;
    margin-top: 40px;
}

.cta-box-btn .btn-highlighted.btn-cta-2{
	background: var(--white-color);
	margin-left: 30px;
}

.cta-box-btn .btn-highlighted.btn-cta-2:hover{
	background: transparent;
}

/************************************/
/***    15. Our Testimonial css	  ***/
/************************************/

.our-testimonial {
	padding: 100px 0;
  }
  
  .testimonial-slider {
	position: relative;
  }
  
  .swiper-slide {
	transition: all 0.3s ease;
	transform: scale(0.95);
	opacity: 1;
  }
  
  .swiper-slide.swiper-slide-active {
	transform: scale(1);
	opacity: 1;
  }
  
  .testimonial-item {
	padding: 35px 40px;
	border-radius: 23px;
	min-height: 160px;
	transition: background-color 0.3s ease, color 0.3s ease;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
  }
  
  .swiper-slide.swiper-slide-active .testimonial-item {
	  background-color: #040404;
  }
  .swiper-slide.swiper-slide-active .testimonial-content p {
	  color: white;
  }
  
  .swiper-slide:not(.swiper-slide-active) .testimonial-item {
	background-color: #D9F07F;
  }
  
  .testimonial-content p {
	font-size: 18px;
	line-height: 1.6;
	margin: 0;
  }
  
  .testimonial-body {
    margin-top: 0px;
    margin-left: 40px;
    gap: 20px;
    position: relative;
    top: -25px;
  }
  
  .testimonial-body img {
	  width: 100px;
	  height: 100px;
	  object-fit: cover;
	  border-radius: 13px;
	  max-width: max-content;
  }
  
  .testimonial-body h3 {
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	margin: 0;
  }
  
  .testimonial-body p {
	font-size: 14px;
	margin: 0;
  }
  
  /* Arrows */
  .testimonial-btn {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin-top: 20px;
  }
  
  .testimonial-button-prev,
  .testimonial-button-next {
	background: #e1fd77;
	color: #000;
	font-size: 24px;
	padding: 10px 15px;
	border-radius: 50%;
	cursor: pointer;
	user-select: none;
  }
  
  /* Dots */
  .testimonial-pagination {
	text-align: center;
	margin-top: 40px;
  }
  
  .testimonial-pagination .swiper-pagination-bullet {
	background-color: #000;
	width: 15px;
    height: 5px;
    border-radius: 5px;
  }
  
  .testimonial-pagination .swiper-pagination-bullet-active {
	opacity: 1;
	width: 50px;
  }

.testimonial-header{
	margin-bottom: 35px;
}

.testimonial-content p{
	font-family: var(--accent-font);
	font-size: 18px;
	color: var(--primary-color);
	font-family: New_hero_light;
	margin: 0;
}

.testimonial-body{
    display: inline-flex;
    align-items: center;
}

.author-image{
    margin-right: 20px;
}

.author-content{
	text-align: left;
    width: calc(100% - 100px);
	margin-top: 30px;
}

.author-content h3{
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
	font-family: New_hero_Regular;
}

.author-content p{
	font-family: New_hero_Regular;
	text-transform: capitalize;
	margin: 0;
	opacity: .51;
}

.testimonial-btn{
	position: absolute;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: right;
	margin-top: 30px;
	z-index: 1;
}

.testimonial-slider .testimonial-button-next,
.testimonial-slider .testimonial-button-prev{
	position: relative;
	width: 56px;
	height: 56px;
	background-color: var(--accent-color);
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-next{
	margin-left: 20px;
}


.testimonial-slider .testimonial-button-next:hover,
.testimonial-slider .testimonial-button-prev:hover{
	background-color: var(--secondary-color);
}

.testimonial-slider .testimonial-button-next::before,
.testimonial-slider .testimonial-button-prev::before{
	content: '';
	position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url("../images/icon-arrow.svg") no-repeat center center;
    background-size: 26px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-prev::before{
	transform: rotate(180deg);
}

.testimonial-counter-box{
	margin-left: 100px;
}

.testimonial-counter-item{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.testimonial-counter-item:last-child{
	border-bottom: none;
	margin-bottom: 0px;
	padding-bottom: 0px;
}

.testimonial-counter-item h2{
	font-size: 56px;
	color: var(--primary-color);
	margin-bottom: 5px;
}

.testimonial-counter-item p{
	color: var(--text-color);
	margin: 0;
}

/************************************/
/***       16. Our FAQs css  	  ***/
/************************************/

.our-faqs.bg-section{
	background: var(--secondary-color);
	overflow: hidden;
	padding: 100px 0;
}

.client-logo{
	text-align: center;
}

.client-logo img{
	max-width: 200px;
	max-height: 40px;
}

.faqs-client-slider{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 80px;
	margin-bottom: 80px;
}

.our-faqs .tab-nav{
	justify-content: start;
}

.our-faqs .section-title{
	margin-bottom: 50px;
	margin-left: 10px;
}

.faqs-item{
	width: calc(50% - 15px);
}

.faqs-item-content h3{
	font-size: 20px;
	margin-bottom: 10px;
}

.faqs-item-content p{
	margin: 0;
}

.our-faqs{
	border: 1px solid #70707059;
    border-radius: 43px;
    padding: 80px 100px;
    margin:0px 60px;
    margin-bottom: 120px;
}
.our-faqs .tab-nav{
	gap: 100px;
}
.our-faqs .tab-btn{
	background: transparent;
	padding: 0px;
}
.our-faqs .tab-btn.active{
	display: inline;
    background: linear-gradient(to top, #e1fd77 45%, transparent 45%);
}
.navbar-nav .nav-link.active{
	display: inline;
    background: linear-gradient(to top, #e1fd77 45%, transparent 45%);
}
.navbar-nav .nav-link::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    top: 18px;
    height: 8px;
    width: 0;
    background-color: #D9F07F;
    transition: width 0.3s ease;
    margin: 0px 10px;
}
.navbar-nav .nav-link:hover::after {
    width: 80%;
}
.faq-item {
	border-bottom: 1px solid #7070702b;
    padding: 30px 0;
  }
  .faq-item:last-child{
	border: none;
	padding-bottom: 0px;
  }

  .faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
  }

  .faq-question h3 {
	font-size: 21px;
	font-family: 'New_hero_Regular';
	margin: 0;
	font-weight:500;
  }

  .faq-answer {
	display: none;
	margin-top: 10px;
	color: #444;
	font-size: 15px;
	line-height: 1.6;
  }
  
  .faq-answer p{
	margin: 0px;
    margin-top: 30px;
    font-family: 'New_hero_Regular';
    font-size: 14px;
    color: #161616;
    opacity: .62;
  }

  .faq-item.open .faq-answer {
	display: block;
  }

  .faq-question .arrow {
	transform: rotate(1deg);
	transition: transform 0.3s ease;
  }

  .faq-item.open .faq-question .arrow {
	transform: rotate(90deg);
  }

/************************************/
/***     17. Latest Posts css     ***/
/************************************/

.latest-posts{
	padding: 100px 0 70px;
}

.post-item{
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.post-featured-image a{
    position: relative;
    display: block;
    border-radius: 30px;
    cursor: default;
    overflow: hidden;
}

.post-featured-image a:before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 38.97%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.post-featured-image img{
    width: 100%;
    aspect-ratio: 1 / 0.97;
    object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img{
	transform: scale(1.1);
}

.post-item-body{
	position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    padding: 20px;
	z-index: 1;
}

.why-choose-body::before{
    content: '';
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    opacity: 20%;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.post-meta{
	margin-bottom: 10px;
}

.post-meta ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.post-meta ul li a{
	color: var(--white-color);
	text-transform: capitalize;
}

.post-meta ul li a i{
	font-size: 16px;
	margin-right: 5px;
}

.post-item-content h3{
	color: var(--white-color);
	font-size: 20px;
	line-height: 1.4em;
	text-transform: capitalize;
}

.post-item-content h3 a{
	color: inherit;
}

.post-btn{
    opacity: 0;
    visibility: hidden;
    height: 0;
    transition: all 0.4s ease-in-out;
}

.post-item:hover .post-btn{
	opacity: 1;
	visibility: visible;
	margin-top: 20px;
	height: 50px;
}
.support{
	padding: 30px 50px;
    border-radius: 23px;
    max-width: 1350px;
    margin: auto;
}
.support h2{
	font-size: 35px;
    text-transform: capitalize;
	line-height: 61px;
    font-family: 'New_hero_extrabold';
}
.support p{
	margin: 0;
    font-size: 16px;
	line-height: 21px;
    font-family: 'New_hero_light';
	margin-left: 70px;
}
.support .view-all-btn-wrapper {
    margin-top: 0px;
}
.support .view-all-btn{
	background: #161616;
    color: #D9F07F;
	font-family: 'New_hero_Regular';
	margin-right: 0px
}
.no-padding{
	padding: 0px;
}
/************************************/
/***     18. Our Footer css       ***/
/************************************/

.main-footer.bg-section{
	background: transparent;
	padding: 80px 0 0;
}

.main-footer hr{
	margin-bottom: 50px;
    color: #7070708f;
	margin-left: 100px;
    width: 80%;
}

.footer-logo{
	margin-bottom: 25px;
}

.footer-logo img{
	max-width: 130px;
    width: 100px;
}

.about-footer-content p{
	color: black;
	margin: 0;
}

.footer-links h3{
	font-size: 18px;
	font-weight: 600;
	text-transform: none;
	font-family: 'New_hero_bold';
	color: #161616;
	margin-bottom: 30px;
}

.footer-links ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-links ul li{
	text-transform: capitalize;
	margin-bottom: 15px;
}

.footer-links ul li:last-child{
	margin-bottom: 0;
}

.footer-links ul li a{
	color: #161616;
    transition: all 0.3s ease-in-out;
    font-family: 'New_hero_Regular';
    font-size: 16px;
}


.footer-links ul li a span{
	color:#1A75F0;
	text-decoration: underline;
}

.footer-links ul li:hover a{
	color: var(--accent-color);
}

.footer-copyright{
    padding: 15px 0;
    margin-top: 45px;
    background: #D9F07F;
}

.footer-copyright-text p{
    color: #161616;
    margin: 0;
    text-align: left;
    margin-left: 60px;
    font-size: 15px;
    font-family: 'New_hero_Regular';
}

.footer-social-links.pay img{
	margin-right: 23.4px;
}

.footer-social-links.pay ul{
	justify-content: end;
    margin-right: 80px;
}

.footer-social-links{
	text-align: right;
}

.footer-social-links ul{
	display: flex;
	list-style: none;
	line-height: 1em;
	padding: 0;
	margin: 0;
}

.footer-social-links ul li{
	display: inline-block;
	margin-right: 6px;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:last-child{
	margin-right: 0;
}

.footer-social-links ul li a{
	border: none;
	background: black;
	color: white;
	border-radius: 50%;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a:hover{
	border-color: var(--white-color);
	color: var(--white-color);
}

.footer-social-links ul li a i{
	font-size: 14px;
	color: inherit
}

/************************************/
/***     19. About Us Page css    ***/
/************************************/

.page-header{
	position: relative;
	background: radial-gradient(50.37% 27.86% at 49.08% 54.61%, rgba(17, 74, 67, 0) 0.01%, #114A43 100%), url('../images/section-bg.svg');
    background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 220px 0 120px;
	margin-top: -100px;
}

.page-header-box{
	position: relative;
	text-align: center;
	z-index: 1;
}

.page-header-box h1{
	display: inline-block;
	font-size: 56px;
    font-weight: 600;
	color: var(--white-color);
	margin-bottom: 10px;
}

.page-header-box ol{
	margin: 0;
	padding: 0;
    justify-content: center;
}

.page-header-box ol li.breadcrumb-item{
	font-family: var(--accent-font);
	font-size: 15px;
	font-weight: 500;
	color: var(--white-color);
	text-transform: capitalize;
}

.page-header-box ol li.breadcrumb-item.active{
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
    color: var(--white-color);
}

.about-approach{
    padding: 50px 0 100px;
}

.about-approach-images{
    position: relative;
    background-color: var(--secondary-color);
    border-radius: 40px;
    margin-right: 70px;
    padding: 55px 60px;
}

.about-approach-chart{
	margin-bottom: 100px;
}

.about-approach-chart img{
    border-radius: 20px;
}

.approach-counter-box{
	width: 200px;
    background-color: var(--white-color);
    border-radius: 20px;
    padding: 15px;
    display: inline-block;
    text-align: center;
}

.approach-counter-box h2{
    font-size: 46px;
    color: var(--accent-color);
	margin-bottom: 5px;
}

.approach-counter-box p{
	text-transform: capitalize;
    margin: 0;
}

.about-approach-investment{
    position: absolute;
    bottom: 0;
    right: -70px;
    transform: translateY(-100%);
    animation: investmentmoveobject 4s infinite linear alternate;
}

@keyframes investmentmoveobject{
	50%{
		right: -20px;
	}
}

.about-approach-investment img{
	border-radius: 20px;
}

.our-tab-nav.vision-mission-tab .nav-tabs .nav-item{
	width: calc(33.33% - 20px);
}

.our-tab-nav.vision-mission-tab ul li .nav-link{
	background-color: var(--secondary-color);
	color: var(--primary-color);
}

.our-tab-nav.vision-mission-tab ul li .nav-link.btn-highlighted:hover{
	color: var(--white-color);
}

.our-tab-nav.vision-mission-tab ul li .nav-link.btn-highlighted::before{
	background: var(--dark-color);
}

.our-tab-nav.vision-mission-tab ul li .nav-link.active{
	background-color: var(--dark-color);
	color: var(--white-color);
}

.about-approach-box-title{
	margin-bottom: 30px;
}

.about-approach-box-title p{
	margin: 0;
}

.about-approach-content-info{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.about-approach-info-list{
	width: calc(50% - 15px);
}

.about-approach-info-list ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.about-approach-info-list ul li{
    position: relative;
	color: var(--primary-color);
    padding-left: 35px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

.about-approach-info-list ul li:last-child{
	margin-bottom: 0;
}

.about-approach-info-list ul li:before{
    content: '\f058';
	position: absolute;
    top: 0;
    left: 0;
	font-family: 'FontAwesome';
    color: var(--accent-color);
    font-size: 20px;    
}

.about-approach-image-counter{
	width: calc(50% - 15px);
	display: flex;
	align-items: center;
}

.about-approach-progress-circle{
	width: 40%;
	margin-right: 20px;
}

.about-approach-progress-circle img{
	max-width: 120px;
}

.about-approach-progress-counter{
	width: 60%;
}

.about-approach-progress-counter h2{
	font-size: 46px;
}

.about-approach-progress-counter p{
	text-transform: capitalize;
	margin: 0;
}

.our-benefits.bg-section{
	background-color: var(--secondary-color);
    overflow: hidden;
    padding: 100px 0 70px;
}

.benefits-item{
	background-color: var(--white-color);
	border-radius: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px; 
}

.benefits-item-content{
	margin-bottom: 30px;
}

.benefits-item.benefits-box-2 .benefits-item-content{
	margin-bottom: 0;
	margin-top: 30px;
}

.benefits-item-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.benefits-item-content p{
	margin: 0;
}

.benefits-item-image img{
	border-radius: 20px;
}

.company-success{
    padding: 100px 0;
}

.company-success-body{
    display: flex;
	align-items: center;
    margin-bottom: 60px;
}

.company-client-images{
    display: flex;
	margin-right: 30px;
}

.company-client-images .client-image{
    display: inline-block;
    margin-left: -20px;
    border: 1px solid var(--white-color);
    border-radius: 100px;
    overflow: hidden;
}

.company-client-images .client-image:first-child{
    margin: 0;
}

.company-client-images .client-image img{
    max-width: 60px;
}

.client-image.add-client a{
    display: flex;
    justify-content: center;
    align-items: center;
	background-color: var(--accent-color);
    height: 60px;
    width: 60px;
}

.client-image.add-client a i{
    font-size: 30px;
    color: var(--primary-color);
}

.company-success-info h3{
    font-size: 20px;
}

.company-success-images{
    position: relative;
    margin-left: 40px;
}

.company-success-image figure{
	display: block;
	border-radius: 40px;
	overflow: hidden;
}

.company-success-image img{
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1.073;
    border-radius: 40px;
}

.company-success-chart{
    position: absolute;
    bottom: 30px;
    right: 30px;
    overflow: hidden;
    z-index: 2;
	animation: successmoveobject 3s infinite linear alternate;
}

@keyframes successmoveobject{
	50%{
		right: 70px;
	}
}

.company-success-chart img{
    width: 100%;
	max-width: 260px;
	border-radius: 15px;
}

.our-team{
    padding: 100px 0 70px;
}

.team-item{
    position: relative;
	border-radius: 30px;
	height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.team-image a{
	position: relative;
	display: block;
}

.team-image a::before{
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(20, 32, 46, 0) 68.44%, rgba(20, 32, 46, 0.5) 83.58%);
    z-index: 0;
}

.team-image figure,
.team-image img{
    width: 100%;
    aspect-ratio: 1 / 1.24;
    object-fit: cover;
}

.team-content{
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    text-align: center;
    z-index: 1;
}

.team-content h3{
    font-size: 20px;
    color: var(--white-color);
    text-transform: capitalize;
}

.team-content h3 a{
	color: inherit;
}

.team-content p{
	font-family: var(--accent-font);
    font-size: 16px;
    text-transform: capitalize;
    color: var(--accent-color);
    margin-bottom: 0;
}

.team-social-list{
    position: absolute;
    top: 50%;
    left: 10px;
    right: 10px;
	transform: translateY(0);
    text-align: center;
	opacity: 0;
	visibility: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.team-item:hover .team-social-list{
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%);
}

.team-social-list ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.team-social-list ul li{
    display: inline-block;
    margin-right: 10px;
}

.team-social-list ul li:last-child{
    margin-right: 0;
}

.team-social-list ul li a{
    color: var(--primary-color);
    background: var(--accent-color);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.team-social-list ul li a:hover{
    background: var(--dark-color);
    color: var(--accent-color);
}

.team-social-list ul li a i{
    font-size: 24px;
}

.our-process.bg-section{
    background: radial-gradient(53.2% 49.55% at 49.2% 49.75%, rgba(17, 74, 67, 0) 0.01%, #114A43 100%), url('../images/section-bg.svg');
    background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
    padding: 100px 0;
    overflow: hidden;
}

.our-process-content .section-title h3{
    color: var(--accent-color);
}

.our-process-content .section-title h3::before{
    background: url(../images/icon-sub-heading-accent.svg) no-repeat;
}

.our-process-content .section-title p,
.our-process-content .section-title h2{
    color: var(--white-color);
}

.process-counter{
    display: flex;
    flex-wrap: wrap;
    gap: 20px 60px;
	margin-bottom: 60px;
}

.process-counter-item{
	width: calc(33.33% - 40px);
    position: relative;
    text-align: center;
}

.process-counter-item::before{
    content: '';
    position: absolute;
    display: block;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    height: 70%;
    width: 1px;
    background-color: var(--dark-divider-color);
}

.process-counter-item:last-child::before,
.process-counter-item:nth-of-type(3n + 3)::before{
    display: none;
}

.process-counter-item h2{
    font-size: 46px;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.process-counter-item p{
    color: var(--white-color);
	text-transform: capitalize;
    margin-bottom: 0;
}

.our-process-steps{
    margin-left: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px 0;
}

.process-step-item{
	width: 100%;
    background-color: var(--white-color);
    border-radius: 20px;
    padding: 20px 55px 20px 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.process-step-item:nth-of-type(odd){
    margin-left: 120px;
}

.process-step-item:nth-of-type(even){
    margin-right: 120px;
}

.step-item-number{
    background-color: var(--accent-color);
    height: 56px;
    width: 56px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
}

.step-item-number h2{
    font-size: 20px;
    color: var(--primary-color);
}

.step-item-content{
    width: calc(100% - 76px);
}

.step-item-content h3{
    font-size: 20px;
    text-transform: capitalize;
    color: var(--primary-color);
	margin-bottom: 5px;
}

.step-item-content p{
    margin-bottom: 0;
}

/************************************/
/***     20. Services Page css    ***/
/************************************/

.page-services{
	padding: 100px 0 70px;
}

.service-item{
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.service-image{
	position: relative;
}

.service-image figure{
	border-radius: 30px;
	overflow: hidden;
}

.service-image img{
	width: 100%;
	aspect-ratio: 1 / 1.24;
	object-fit: cover;
	border-radius: 30px;
	transition: all 0.4s ease-in-out;
}

.service-item:hover .service-image img{
	transform: scale(1.1);
}

.service-body{
	position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
    border-radius: 15px;
    overflow: hidden;
    padding: 20px;
}

.service-body::before{
    content: '';
    position: absolute;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    opacity: 20%;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.service-content{
	position: relative;
	z-index: 1;
}

.service-content h3{
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 10px;
}

.service-content p{
	color: var(--white-color);
	margin: 0;
}

.service-btn{
	position: relative;
	opacity: 0;
	visibility: hidden;
	height: 0;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.service-item:hover .service-btn{
	opacity: 1;
	visibility: visible;
	margin-top: 20px;
	height: 50px;
}

.company-success.bg-section{
	background: var(--secondary-color);
	overflow: hidden;
}

/************************************/
/***    21. Service Single css    ***/
/************************************/

.page-service-single{
	padding: 100px 0;
}

.service-sidebar{
	position: sticky;
	top: 20px;
	margin-right: 20px;
}

.service-catagery-list{
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 30px;
	margin-bottom: 60px;
}

.service-catagery-list h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 30px;
}

.service-catagery-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.service-catagery-list ul li{
	margin-bottom: 20px;
}

.service-catagery-list ul li:last-child{
	margin-bottom: 0;
}

.service-catagery-list ul li a{
	display: block;
    position: relative;
	text-transform: capitalize;
	line-height: normal;
    background-color: var(--white-color);
	color: var(--text-color);
	border-radius: 10px;
	padding: 16px 40px 16px 16px;
	transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a{
	background-color: var(--dark-color);
	color: var(--white-color);
}

.service-catagery-list ul li a::after{
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
	transform: translateY(-50%);
	line-height: normal;
    background: url('../images/icon-arrow.svg') no-repeat;
	background-position: right center;
	background-size: 18px auto;
    width: 18px;
    height: 18px;
    transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a::after{
	filter: brightness(0) invert(1);
}

.sidebar-cta-box{
	background: var(--dark-color);
	border-radius: 30px;
	padding: 30px;
}

.sidebar-cta-content{
	margin-bottom: 30px;
}

.sidebar-cta-content h3{
	font-size: 20px;
	color: var(--white-color);
}

.service-featured-image{
	margin-bottom: 30px;
}

.service-featured-image figure{
	display: block;
}

.service-featured-image img{
	aspect-ratio: 1 / 0.55;
    object-fit: cover;
	border-radius: 30px;
}

.service-entry{
	margin-bottom: 60px;
}

.service-entry .section-title h2{
	margin-bottom: 0;
}

.service-entry h2{
	font-size: 46px;
	margin-bottom: 20px;
}

.service-entry h3{
	font-size: 20px;
	margin-bottom: 20px;
}

.service-entry p{
	margin-bottom: 20px;
}

.service-entry p:last-child{
	margin-bottom: 0px;
}

.service-entry ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.service-entry ul li{
	position: relative;
    width: 100%;
	color: var(--primary-color);
	padding-left: 30px;
}

.service-entry ul li:before{
	content: '\f058';
    font-family: 'FontAwesome';
    background-color: transparent;
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 400;
    position: absolute;
    top: 0;
    left: 0;
}

.service-list-image{
	background-color: var(--secondary-color);
	border-radius: 30px;
	padding: 40px;
	margin-bottom: 60px;
	margin-top: 20px;
}

.service-List-img figure{
	display: block;
}

.service-List-img img{
	width: 100%;
	aspect-ratio: 1 / 0.57;
    object-fit: cover;
	border-radius: 20px;
}

.service-entry-title{
	margin-bottom: 30px;
}

.why-choose-service-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 60px;
}

.why-choose-service-item{
	width: calc(50% - 15px);
	display: flex;
	align-items: center;
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 20px;
}

.why-choose-service-no h3{
	background-color: var(--accent-color);
    height: 56px;
    width: 56px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
	margin-bottom: 0;
}

.why-choose-service-no h2{
    font-size: 20px;
    color: var(--primary-color);
}

.why-choose-service-content{
    width: calc(100% - 76px);
}

.why-choose-service-content h3{
    font-size: 20px;
    text-transform: capitalize;
    color: var(--primary-color);
	margin-bottom: 5px;
}

.why-choose-service-content p{
    margin-bottom: 0;
}

.service-features{
	margin-bottom: 40px;
}

.service-features-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 20px;
}

.service-features-list ul li{
	position: relative;
    width: calc(33.33% - 13.33px);
	color: var(--primary-color);
	padding-left: 30px;
}

.service-features-list ul li:before{
	content: '\f058';
    font-family: 'FontAwesome';
    background-color: transparent;
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 400;
    position: absolute;
    top: 0;
    left: 0;
}

.service-entry-img figure{
    display: block;
	border-radius: 20px;
}

.service-entry-img img{
    aspect-ratio: 1 / 0.88;
    object-fit: cover;
    border-radius: 20px;
}

.our-faqs-box.service-faqs-box .faqs-item{
	width: 100%;
}

/************************************/
/***    22. Blog Archive css      ***/
/************************************/

.page-blog{
    padding: 100px 0;
}

.blog-item{
    height: calc(100% - 40px);
    margin-bottom: 40px;
}

.blog-featured-image{
    margin-bottom: 30px;
	border-radius: 30px;
    overflow: hidden;
}

.blog-featured-image a{
	cursor: default;
}

.blog-featured-image img{
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 0.8;
    transition: all 0.4s ease-in-out;
}

.blog-item:hover .blog-featured-image img{
    transform: scale(1.1);
}

.blog-meta{
    margin-bottom: 15px;
}

.blog-meta ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.blog-meta ul li{
	position: relative;
	display: inline-block;
	padding: 0 16px 0 8px;
}

.blog-meta ul li:last-child{
	padding-right: 0;
}

.blog-meta ul li:first-child{
	padding-left: 0;
}

.blog-meta ul li::before{
	content: '';
    position: absolute;
    top: 50%;
    right: 0;
	transform: translateY(-50%);
    background: var(--accent-color);
	border-radius: 50%;
    width: 6px;
    height: 6px;
}

.blog-meta ul li:last-child::before{
	display: none;
}

.blog-meta ul li a{
	color: #161616;
	font-family: 'New_hero_semibold';
	font-size: 12px;
	text-transform: uppercase;
}

.blog-content{
    margin-bottom: 20px;
}

.blog-content h3{
    font-size: 20px;
}

.blog-content h3 a{
    color: inherit;
}

.page-pagination{
    margin-top: 20px;
    text-align: center;
}

.page-pagination ul{
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span{
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    color: var(--primary-color);
	border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
	line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a, 
.page-pagination ul li a:hover{
    background: var(--accent-color);
}

/************************************/
/***      23. Blog Single css	  ***/
/************************************/

.page-single-post{
	padding: 100px 0;
}

.post-image{
	position: relative;
	margin-bottom: 30px;
}

.post-image figure{
	display: block;
}

.post-image figure,
.post-image img{
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 40px;
}

.post-content{
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after{
    content: '';
    display: block;
    clear: both;
}

.post-entry a{
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
	margin: 0 0 0.6em;
}

.post-entry h1 span,
.post-entry h2 span{
	font-weight: 400;
}

.post-entry h1{
	font-size: 56px;
}

.post-entry h2{
	font-size: 46px;
}

.post-entry h3{
	font-size: 40px;
}

.post-entry h4{
	font-size: 30px;
}

.post-entry h5{
	font-size: 24px;
}

.post-entry h6{
	font-size: 18px;
}

.post-entry p{
	margin-bottom: 20px;
}

.post-entry p:last-child{
	margin-bottom: 0;
}

.post-entry p strong{
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol{
    margin: 0 0 30px;
}

.post-entry ol li{
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}

.post-entry ul{
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ul li{
	font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    position: relative;
    margin-bottom: 15px;
}

.post-entry ul li:last-child{
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul{
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child{
    margin-bottom: 0;
}

.post-entry blockquote{
	background: var(--secondary-color) url(../images/icon-blockquote.svg) no-repeat;
	background-position: 35px 30px;
    background-size: 58px;
    border-radius: 20px;
    padding: 30px 30px 30px 100px;
    margin-bottom: 30px;
}

.post-entry blockquote p{
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--primary-color);
}

.post-entry blockquote p:last-child{
	margin-bottom: 0;
}

.tag-links{
	font-family: var(--accent-font);
	font-size: 24px;
	font-weight: 600;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.post-tags .tag-links a{
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    background-color: var(--accent-color);
    color: var(--primary-color);
	border-radius: 100px;
    padding: 10px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover{
	background: var(--primary-color);
	color: var(--white-color);
}

.post-social-sharing{
    text-align: right;
}

.post-social-sharing ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.post-social-sharing ul li{
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child{
	margin-right: 0;
}

.post-social-sharing ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	background-color: var(--accent-color);
    color: var(--primary-color);
	border-radius: 50%;
    width: 38px;
    height: 38px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a{
	background-color: var(--primary-color);
	color: var(--white-color);
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: inherit;
}

/************************************/
/***      24. Project Page Css	  ***/
/************************************/

.page-project{
	padding: 100px 0 70px;
}

.project-nav{
	margin-bottom: 60px;
}

.project-nav ul{
	list-style: none;
	text-align: center;
	padding: 0;margin: 0;
}

.project-nav ul li{
	display: inline-block;
}

.project-nav ul li a{
	position: relative;
	display: inline-block;
	background-color: transparent;
	color: var(--text-color);
	font-weight: 500;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
	padding: 0 30px;
    overflow: hidden;
}

.project-nav ul li:first-child a{
	padding-left: 0;
}

.project-nav ul li:last-child a{
	padding-right: 0;
}

.project-nav ul li a::before{
    content: '/';
    position: absolute;
    right: 0;
    top: 0;
    transition: all 0.3s ease-in-out;
    height: 100%;
    z-index: 0;
	color: var(--divider-color);
}

.project-nav ul li:last-child a::before{
	display: none;
}

.project-nav ul li a.active-btn,
.project-nav ul li a:hover{
	color: var(--accent-color);
}

.project-item{
    position: relative;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    overflow: hidden;
}

.project-image a{
	display: block;
	border-radius: 30px;
    overflow: hidden;
    cursor: default;
}

.project-image img{
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1.09;
    transition: all 0.4s ease-in-out;
}

.project-item:hover .project-image img{
    transform: scale(1.1);
}

.project-item-body{
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    transform: translateY(100%);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
	justify-content: space-between;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.project-item:hover .project-item-body{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.project-item-body::before{
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 20%;
}

.project-item-content{
    position: relative;
    z-index: 1;
}

.project-item-content a{
    color: inherit;
}

.project-item-content h3{
    font-size: 20px;
	line-height: 1.4em;
    text-transform: capitalize;
    color: var(--white-color);
}

.project-item-btn{
    position: relative;
    text-align: right;
	margin-left: 20px;
    z-index: 1;
}	

/************************************/
/***    25. Project Single Css    ***/
/************************************/

.page-project-single{
	padding: 100px 0;
}

.project-sidebar{
	position: sticky;
	top: 20px;
	margin-right: 20px;
}

.project-detail-box{
    background-color: var(--secondary-color);
    border-radius: 20px;
    padding: 30px;
	margin-bottom: 60px;
}

.project-deatil-item{
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
}

.project-deatil-item:last-child{
    margin: 0;
}

.project-detail-header{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.project-detail-header .icon-box{
    margin-right: 10px;
}

.project-detail-header .icon-box img{
    max-width: 24px;
}

.project-detail-title{
    width: calc(100% - 34px);
}

.project-detail-title h3{
    font-size: 20px;
    text-transform: capitalize;
}

.project-detail-body p{
    text-transform: capitalize;
    margin-bottom: 0;
}

.project-featured-image{
	margin-bottom: 30px;
}

.project-featured-image figure{
	display: block;
	border-radius: 30px;
	overflow: hidden;
}

.project-featured-image img{
	width: 100%;
	aspect-ratio: 1 / 0.55;
    object-fit: cover;
	border-radius: 30px;
}

.project-entry{
	margin-bottom: 60px;
}

.project-entry .section-title h2{
	margin-bottom: 0;
}

.project-entry h2{
	font-size: 46px;
	margin-bottom: 20px;
}

.project-entry h3{
	font-size: 20px;
	margin-bottom: 20px;
}

.project-entry p{
	margin-bottom: 20px;
}

.project-entry p:last-child{
	margin-bottom: 0px;
}

.project-entry ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.project-entry ul li{
	position: relative;
    width: 100%;
	color: var(--primary-color);
	padding-left: 30px;
}

.project-entry ul li:before{
	content: '\f058';
    font-family: 'FontAwesome';
    background-color: transparent;
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 400;
    position: absolute;
    top: 0;
    left: 0;
}

.quality-project-title{
	margin-bottom: 40px;
}

.quality-project-list-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.quality-project-item{
	width: 100%;
	display: flex;
	align-items: center;
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 20px;
}

.quality-project-item .icon-box{
	position: relative;
	background-color: var(--accent-color);
    height: 80px;
    width: 80px;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
	overflow: hidden;
}

.quality-project-item .icon-box::before{
    content: '';
    display: block;
    position: absolute;
	top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-color);
	border-radius: 50%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.quality-project-item:hover .icon-box::before{
	transform: scale(1);
}

.quality-project-item .icon-box img{
	position: relative;
	max-width: 40px;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.quality-project-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.quality-project-content{
    width: calc(100% - 100px);
}

.quality-project-content h3{
    font-size: 20px;
    text-transform: capitalize;
    color: var(--primary-color);
	margin-bottom: 5px;
}

.quality-project-content p{
    margin-bottom: 0;
}

/************************************/
/***   26. Case Study Page Css    ***/
/************************************/

.page-case-study{
    padding: 100px 0 70px;
}

.case-study-item{
    height: calc(100% - 40px);
    margin-bottom: 40px;
}

.case-study-image{
    margin-bottom: 30px;
    border-radius: 30px;
    overflow: hidden;
}

.case-study-image a{
    cursor: default;
}

.case-study-image img{
    width: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 0.8;
    transition: all 0.4s ease-in-out;
}

.case-study-item:hover .case-study-image img{
    transform: scale(1.1);
}

.case-study-body{
    display: flex;
    align-items: center;
	justify-content: space-between;
}

.case-study-content{
    width: 100%;
	max-width: 250px;
}

.case-study-content a{
    color: inherit;
}

.case-study-content h3{
    font-size: 20px;
    text-transform: capitalize;
}

.case-study-btn{
	margin-left: 20px;
	text-align: right;
}

/************************************/
/***   27. Case Study Single Css  ***/
/************************************/

.page-case-study-single{
	padding: 100px 0;
}

.case-study-sidebar{
	position: sticky;
	top: 20px;
	margin-right: 20px;
}

.case-study-detail-box{
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 30px;
	margin-bottom: 60px;
}

.case-study-deatil-content{
	background-color: var(--white-color);
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 20px;
}

.case-study-deatil-content:last-child{
	margin-bottom: 0;
}

.case-study-deatil-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.case-study-deatil-content p{
	margin: 0;
}

.case-study-featured-image{
	margin-bottom: 30px;
}

.case-study-featured-image figure{
	display: block;
}

.case-study-featured-image img{
	aspect-ratio: 1 / 0.55;
    object-fit: cover;
	border-radius: 30px;
}

.case-study-entry h2{
	font-size: 46px;
	margin-bottom: 20px;
}

.case-study-entry h3{
	font-size: 20px;
	margin-bottom: 20px;
}

.case-study-entry p{
	margin-bottom: 20px;
}

.case-study-entry p:last-child{
	margin-bottom: 0px;
}

.case-study-entry ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.case-study-entry ul li{
	position: relative;
    width: 100%;
	color: var(--primary-color);
	padding-left: 30px;
}

.case-study-entry ul li:before{
	content: '\f058';
    font-family: 'FontAwesome';
    background-color: transparent;
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 400;
    position: absolute;
    top: 0;
    left: 0;
}

.case-study-approch-box{
	margin: 40px 0 60px 0;
}

.case-study-approch-title{
	margin-bottom: 30px;
}

.case-study-approch-item{
	margin-bottom: 30px;
}

.case-study-approch-item:last-child{
	margin-bottom: 0px;
}

.case-study-approch-item h3{
	position: relative;
	font-size: 20px;
	margin-bottom: 15px;
	padding-left: 30px;
}

.case-study-approch-item h3:before{
    content: '\f058';
    font-family: 'FontAwesome';
    background-color: transparent;
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 400;
    position: absolute;
    top: 0;
    left: 0;
}

/************************************/
/***      28. Team Page css       ***/
/************************************/

.page-team{
	padding: 100px 0 70px;
}

/************************************/
/***     29. Team Single css      ***/
/************************************/

.page-team-single{
	padding: 100px 0;
}

.team-member-details{
	background-color: var(--secondary-color);
	border-radius: 20px;
	overflow: hidden;
	margin-right: 20px;
}

.team-member-image img{
	width: 100%;
	aspect-ratio: 1 / 1.24;
    object-fit: cover;
	border-radius: 20px 20px 0 0;
}

.team-member-intro{
	padding: 40px;
}

.team-member-body,
.team-member-info,
.team-member-title{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.team-member-title h2{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.team-member-title p{
	color: var(--accent-color);
	text-transform: capitalize;
	margin: 0;
}

.team-member-info ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.team-member-info ul li{
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.team-member-info ul li:last-child{
	margin-bottom: 0;
}

.team-member-info ul li span{
	width: 40%;
	font-weight: 500;
	color:  var(--primary-color);
	text-transform: capitalize;
}

.team-member-skillbar-title{
	margin-bottom: 20px;
}

.team-member-skillbar-title h3{
	font-size: 20px;
	text-transform: capitalize;
}

.skills-progress-bar .skillbar{
	margin-bottom: 30px;
}

.skills-progress-bar .skillbar:last-child{
	margin-bottom: 0;
}

.skills-progress-bar .skill-data{
	display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.skills-progress-bar .skill-data .skill-title{
	text-transform: capitalize;
}

.skills-progress-bar .skill-data .skill-no{
	color: var(--primary-color);
}

.skills-progress-bar .skillbar .skill-progress{
	position: relative;
	width: 100%;
	height: 14px;
	background: var(--white-color);
	border-radius: 99px;
    overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: var(--accent-color);
	border-radius: 99px;
}

.member-social-list ul{
    margin: 0;
    padding: 0;
    list-style: none;
}

.member-social-list ul li{
    display: inline-block;
    margin-right: 10px;
}

.member-social-list ul li:last-child{
    margin-right: 0;
}

.member-social-list ul li a{
    color: var(--primary-color);
    background: var(--accent-color);
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.member-social-list ul li a:hover{
    background: var(--dark-color);
    color: var(--accent-color);
}

.member-social-list ul li a i{
    font-size: 24px;
}

.team-member-entry{
	margin-bottom: 60px;
}

.team-member-entry h2{
	font-size: 46px;
	margin-bottom: 20px;
}

.team-member-entry h3{
	font-size: 20px;
	margin-bottom: 20px;
}

.team-member-entry p{
	margin-bottom: 20px;
}

.team-member-entry p:last-child{
	margin-bottom: 0px;
}

.team-member-entry ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 20px;
}

.team-member-entry ul li{
	position: relative;
    width: 100%;
	color: var(--primary-color);
	padding-left: 30px;
}

.team-member-entry ul li:before{
	content: '\f058';
    font-family: 'FontAwesome';
    background-color: transparent;
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 400;
    position: absolute;
    top: 0;
    left: 0;
}

.team-member-Capabilities{
	margin: 40px 0 0px 0;
}

/************************************/
/*** 30. Company History Page css ***/
/************************************/

.page-company-history{
	padding: 100px 0;
}

.company-history-item{
	position: relative;
	display: flex;
	align-items: center;
	margin-top: -6px;
}

.company-history-item:first-child{
	padding-top: 50px;
}

.company-history-item:first-child::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: calc(50% - 6px);
	background: url('../images/icon-company-history.svg') no-repeat;
	background-position: top center;
	background-size: cover;
	width: 64px;
	height: 64px;
}

.company-history-item:last-child{
	padding-bottom: 10px;
}

.company-history-item:last-child::after{
	content: '';
	position: absolute;
	top: auto;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background: var(--accent-color);
	border-radius: 50%;
	width: 30px;
	height: 30px;
}

.company-history-item:nth-of-type(even){
	flex-direction: row-reverse;
}

.company-history-info{
	border: 6px solid var(--accent-color);
	border-right: none;
	border-radius: 500px 0 0 500px;
	padding: 85px;
}

.company-history-item:nth-of-type(even) .company-history-info{
	border-right: 6px solid var(--accent-color);
	border-left: none;
	border-radius: 0 500px 500px 0;
}

.company-history-info{
	width: 50%;
}

.company-history-year{
	margin-bottom: 10px;
}

.company-history-year h2{
	font-size: 60px;
    color: var(--white-color);
    background: -webkit-linear-gradient(270deg, #1D4E49 0%, rgba(255, 255, 255, 0) 127.56%);
    -webkit-text-stroke: 2px transparent;
}

.company-history-content h3{
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.company-history-content p{
	margin: 0;
}

.company-history-image{
	width: 50%;
}

.company-history-image{
	text-align: right;
	padding-left: 190px;
}

.company-history-item:nth-of-type(even) .company-history-image{
	text-align: left;
	padding-left: 0px;
	padding-right: 190px;
}

.company-history-image figure{
	display: block;
	border-radius: 30px;
	overflow: hidden;
}

.company-history-image img{
	width: 100%;
	aspect-ratio: 1 / 0.56;
	object-fit: cover;
	border-radius: 30px;
}

/************************************/
/***     31. Pricing Page css     ***/
/************************************/

.page-pricing{
	padding: 100px 0 70px;
}

/************************************/
/***     32. Client Page css      ***/
/************************************/

.page-client{
	padding: 100px 0 70px;
}

.company-logo{
    height: calc(100% - 30px);
    background-color: var(--secondary-color);
    border-radius: 30px;
	text-align: center;
    padding: 70px 75px;
    margin-bottom: 30px;
}

.company-logo img{
    width: 100%;
    height: 60px;
}

/************************************/
/***   33. Testimonial Page css   ***/
/************************************/

.page-testimonial{
    padding: 100px 0;
}

.page-testimonial-item{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 40px;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 100px;
}

.page-testimonial-item:last-child{
    margin-bottom: 0;
}

.page-testimonial-item:nth-of-type(even){
    flex-direction: row-reverse;
}

.page-testimonial-content{
    width: calc(60% - 20px);
}

.page-testimonial-header{
    margin-bottom: 40px;
}

.page-testimonial-header p{
    font-size: 18px;
    margin-bottom: 0;
}

.page-testimonial-author h3{
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
} 

.page-testimonial-author p{
    font-family: var(--accent-font);
    font-size: 16px;
    text-transform: capitalize;
    margin-bottom: 0;
}

.page-testimonial-image{
    width: calc(40% - 20px);
    background: url(../images/testimonial-quotes.svg);
    background-repeat: no-repeat;
    background-position: left 3% top 42%;
    background-size: 158px auto;
    text-align: end;
    max-width: 425px;
}

.page-testimonial-item:nth-of-type(even) .page-testimonial-image{
    background-position: left 3% top 43%;
    text-align: start;
}

.page-testimonial-image img{
    width: 100%;
}

/************************************/
/***     34. Image Gallery css    ***/
/************************************/

.page-gallery{
	padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a{
	cursor: default;
}

.page-gallery-box .photo-gallery figure{
	border-radius: 30px;
}

.page-gallery-box .photo-gallery img{
	aspect-ratio: 1 / 0.92;
	object-fit: cover;
	border-radius: 30px;
}

/************************************/
/***     35. Video Gallery css    ***/
/************************************/

.page-video-gallery{
	padding: 100px 0 70px;
}

.video-gallery-image{
	border-radius: 30px;
	overflow: hidden;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.video-gallery-image a{
	position: relative;
	display: block;
	cursor: default;
}

.video-gallery-image a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
    border-radius: 40px;
    opacity: 0%;
    visibility: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before{
    opacity: 30%;
    visibility: visible;
    transform: scale(1);
}

.video-gallery-image a::after{
    content: 'play';
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	border: 1px solid var(--white-color);
	color: var(--white-color);
    border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
}

.video-gallery-image:hover a::after{
    opacity: 1;
    visibility: visible;
}

.video-gallery-image img{
	aspect-ratio: 1 / 0.92;
	object-fit: cover;
	border-radius: 30px;
}

/************************************/
/***      36. FAQs Page css       ***/
/************************************/

.page-faqs{
    padding: 100px 0;
}

.faq-section{
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 100px;
    padding-bottom: 100px;
}

.faq-section:last-child{
    margin: 0;
    padding: 0;
    border-bottom: none;
}

/************************************/
/***    37. Contact us Page css   ***/
/************************************/

.page-contact-us{
    padding: 100px 0;
}

.contact-us.bg-section{
    background: var(--secondary-color);
    padding: 70px 0;
	margin-bottom: 100px;
}

.contact-information{
    display: flex;
    flex-wrap: wrap;
    gap: 25px 140px;
}

.contact-info-item{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: calc(33.33% - 93.33px);
}

.contact-info-item::before{
    content: '';
    position: absolute;
    display: block;
    top: 0;
    right: -70px;
    bottom: 0;
    height: 100%;
    width: 1px;
    background-color: var(--divider-color);
}

.contact-info-item:nth-of-type(3n + 3):before,
.contact-info-item:last-child:before{
    display: none;
}

.contact-info-item .icon-box{
	position: relative;
    background-color: var(--accent-color);
    border-radius: 16px;
	height: 80px;
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
	overflow: hidden;
}

.contact-info-item .icon-box::before{
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    top: 0;
    left: 0;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
    border-radius: 16px;
}

.contact-info-item:hover .icon-box::before{
	transform: scale(1);
}

.contact-info-item .icon-box img{
	position: relative;
    max-width: 40px;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.contact-info-content{
    width: calc(100% - 100px);
}

.contact-info-content h3{
    font-size: 20px;
    text-transform: capitalize;
    color: var(--primary-color);
	margin-bottom: 5px;
}

.contact-info-content p{
    margin-bottom: 0;
}

.google-map{
	height: 650px;
    margin-right: 40px;
}

.google-map iframe{
    width: 100%;
    height: 650px;
    border-radius: 40px;
    filter: grayscale(1);
    transition: all 0.4s ease-in-out;
}

.google-map iframe:hover{
    filter: grayscale(0);
}

.contact-form-title{
    margin-bottom: 40px;
}

.contact-form-title h2{
	font-size: 30px;
}

.contact-form .form-control{
    font-family: var(--default-font);
    font-size: 15px;
    line-height: 1.2em;
    color: var(--text-color);
    background-color: var(--secondary-color);
    border: none;
    box-shadow: none;
    padding: 16px;
    border-radius: 10px;
}

.contact-form form .btn-highlighted{
    width: 100%;
}

/************************************/
/*** 	   38. 404 Page css       ***/
/************************************/

.error-page{
	padding: 100px 0;
}

.error-page-image{
	text-align: center;
	margin-bottom: 30px;
}

.error-page .error-page-content{
	text-align: center;
}

.error-page-content-heading{
	margin-bottom: 30px;
}

.error-page-content-heading h2{
	font-size: 40px;
	cursor: default;
}

.error-page-content-heading h2 span{
	font-weight: 700;
	color: var(--accent-color);
}

.error-page-content-body p{
	margin-bottom: 30px;
}

.checkout .section-title .highlight{
	font-size: 35px;
}

.checkout-container {
    background: #f7f6f2;
    padding: 40px;
    font-family: 'Helvetica Neue', sans-serif;
  }
  .checkout-title {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .checkout-subtitle {
	font-size: 20px;
    margin-bottom: 30px;
    color: #000000;
    font-family: 'New_hero_extrabold';
  }
  .checkout-payment-method label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid transparent;
    border-radius: 17px;
    padding: 15px 25px;
    margin-bottom: 10px;
    gap: 10px;
    cursor: pointer;
  }
  .checkout-option span{
	font-size: 15px;
    font-family: 'New_hero_Regular';
	display: flex;
	align-items: center;
	gap: 20px;
  }
  .checkout-payment-method label.active {
    border:.3px solid #707070;
  }
  .checkout-add-card {
    width: 100%;
    margin-top: 15px;
    padding: 15px;
    background: #D9F07F;
    border-radius: 999px;
    border: none;
    cursor: pointer;
	justify-content: center;
	font-family: 'New_hero_semibold';
	font-size: 18px;
  }
  .checkout-card-form{
	margin-top: 20px;
  }
  .checkout-card-form label{
	font-family: 'New_hero_regular';
	font-size: 15px;
	opacity: .6;
	margin-bottom: 10px;
  }
  .checkout-card-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background: #f7f6f2;
  }
  .checkout-promo {
    display: flex;
	align-items: center;
    gap: 10px;
    margin-top: 80px;
	position: relative;
  }
  .checkout-promo input {
    font-size: 14px;
    flex: 1;
    padding: 15px 30px;
    border-radius: 12px;
    border: none;
    font-family: 'New_hero_Regular';
    padding-left: 50px;
	position: relative;
  }
  .checkout-promo input::placeholder{
	font-family: 'New_hero_Regular';
	color:#1F2021
  }
  .checkout-promo img{
	position: absolute;
	left: 15px;
	z-index: 999;
  }
  .checkout-promo button {
    background: #D9F07F;
    padding: 12px 20px;
    border-radius: 12px;
    border: none;
    font-weight: bold;
    display: none;
  }
  .about-simply.checkout.thank-you .checkout-subtitle {
    margin-bottom: 20px;
    font-family: 'New_hero_regular';
	font-weight: 500;
}
.about-simply.checkout.thank-you .checkout-left h5{
	font-family: 'New_hero_regular';
	font-size: 15px;
	margin-bottom: 15px;
	font-weight: 500;
}
.about-simply.checkout.thank-you .checkout-left p{
	font-family: 'New_hero_regular';
	font-size: 12px;
	margin-bottom: 25px;
	font-weight: 500;
}
.about-simply.checkout.thank-you .checkout-left p span{
	opacity: .5;
}
.checkout.thank-you .faq-item{
	background: #FFFFFF;
    padding: 18px 25px;
    border-radius: 12px;
    border: none;
	margin-bottom: 7px;
}
.checkout.thank-you .faq-question h3 {
    font-size: 15px;
    font-family: 'New_hero_medium';
}
.checkout.thank-you .faq-question span{
	margin-right: 22px;
}
.checkout.thank-you .faq-item.open .faq-question{
	border-bottom: .3px solid #707070;
	padding-bottom: 14.5px;
}
.checkout.thank-you .row .faq-answer p{
	margin-top: 14.5px;
    margin-bottom: 14.5px;
	font-size:14px
}
.checkout.thank-you .row .success_footer p{
	margin-top: 40px;
    margin-bottom: 30px;
    font-size: 15px;
}
.checkout.thank-you .faq-item:last-child{
	margin: 0px;
}
.checkout.thank-you .buttons{
	width: 100%;
	display: flex;
	align-items: center;
	gap: 15px;
}
.checkout.thank-you .buttons .btn-esim{
	width: 100%;
	display: flex;
	align-items: center;
	color: #000000;
	background: #D9F07F;
	padding: 17px 0px;
	justify-content: center;
	gap: 22px;
	font-size: 14px;
	font-family: 'New_hero_Regular';
	border-radius: 25px;
}
.checkout.thank-you .buttons .btn-support{
	width: 100%;
	display: flex;
	align-items: center;
	color: #000000;
	background: transparent;
	border:.6px solid #161616;
	padding: 17px 0px;
	justify-content: center;
	gap: 22px;
	font-size: 14px;
	font-family: 'New_hero_Regular';
	border-radius: 25px;
}
  html .toggle_active .checkout-coin-amount{
	background: #D9F07F !important;
	border: .6px solid #707070;
	font-family: 'New_hero_bold' !important;
  }
  .simply_coin{
	display: flex;
	align-items: center;
	background: #D9F07F;
	border-radius: 9px;
	gap: 5px;
	padding: 7px 4px;
	padding-right: 10px;
  }
  .simply_coin img{
	width: 25px;
  }
  .simply_coin .price{
	font-family: 'New_hero_bold';
    font-size: 13px;
    margin: 0px;
  }
  .checkout-coins {
    margin-top: 20px;
  }
  .toggle-switch {
    display: flex;
    align-items: center;
    background: white;
    padding: 15px;
    border-radius: 12px;
    border: none;
  }
  .toggle-switch img{
	position: relative;
	left: -4px;
  }
  .toggle-switch span {
    display: flex;
    align-items: center;
    gap: 3px;
	font-family: 'New_hero_Regular';
	margin-right: 50px;
  }
  .toggle-btn {
    width: 50px;
    height: 26px;
    border-radius: 999px;
    background: #ccc;
    position: relative;
    cursor: pointer;
	margin-left: auto;
    transition: background 0.3s;
  }
  .toggle-btn::before {
    content: '';
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: all 0.3s;
  }
  .toggle-btn.toggle_active {
    background: #D9F07F;
  }
  .toggle-btn.toggle_active::before {
    left: 26px;
  }
  .checkout .checkout-coin-amount {
    background: #e0e0e0;
    padding: 5px 10px;
    border-radius: 8px;
    font-family: 'New_hero_Regular' !important;
  }
  .terms-text p, .terms-text a{
	margin-top: 20px;
    font-family: 'New_hero_Regular';
    font-size: 13px;
    color: #10101B;
    opacity: .53;
	margin-bottom: 0px;
  }
  .col-md-6.checkout-right{
	padding-left: 100px;
  }
  .terms-text a{
	text-decoration: underline;
	opacity: 1;
  }
  .checkout-summary {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
	position: relative;
	z-index: 1;
  }
  .checkout-flag {
	display: flex;
	justify-content: center;
  }
  .checkout-flag img{
    border-top-left-radius: 21px;
    border-top-right-radius: 21px;
    position: relative;
    top: 10px;
    z-index: revert-layer;
  }
  .checkout-details .data {
    display: flex;
	align-items: center;
    background: #F6F6F1;
    margin-bottom: 10px;
    padding: 10px 20px;
    border-radius: 12px;
    justify-content: space-between;
	color: #000000;
  }
  .checkout-details .data.without-bg{
	background: transparent;
    font-family: 'New_hero_Regular';
    color: #000000;
    border-bottom: .5px solid #70707029;
    border-radius: 0px;
    margin: 0px 30px;
    padding: 10px 0px;
  }
  .checkout-details .data.without-bg:last-child{
	border: none;
  }
  .qr-scan{
	display: grid;
	justify-content: center;
  }
  .checkout-details .data strong{
	font-size: 13px;
	font-family: 'New_hero_Regular';
	opacity: .66;
  }
  .checkout-details .data img{
	margin-right: 10px;
  }
  .checkout-details .data span{
	font-size: 13px;
	font-family: 'New_hero_bold';
  }
  .checkout-pay-button {
    width: 100%;
    margin-top: 20px;
    background: #D9F07F;
    padding: 15px;
    border: none;
    border-radius: 77px;
	font-size: 18px;
    font-family: 'New_hero_semibold';
  }

  .business .features-content .section-title .highlight{
	padding-right: 0px;
  }


  .business {
	font-family: Arial, sans-serif;
  }
  
  /* Why Choose Section */
  .business-choose {
	padding: 60px 20px;
	text-align: center;
  }
  
  .business-choose h2 {
	font-size: 32px;
	margin-bottom: 40px;
  }
  
  .business-features {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
  }
  
  .feature-card {
	background: #fff;
	border: 1px solid #eee;
	border-radius: 12px;
	padding: 20px;
	width: 220px;
	text-align: center;
  }
  
  .feature-card img {
	width: 50px;
	margin-bottom: 15px;
  }
  
  .feature-card h3 {
	margin: 10px 0;
	font-size: 18px;
  }
  
  /* Trusted Section */
  .business-trusted {
	background: #f8f8f8;
	padding: 40px 20px;
	text-align: center;
	position: relative;
  }
  
  
  .partner-slider {
	overflow: hidden;
	width: 100%;
	position: relative;
	margin-top: 70px;
	margin-bottom: 50px;
  }
  
  .partner-track {
	display: flex;
	gap: 40px;
	will-change: transform;
  }
  
  .partner-track img {
	width: 120px;
	height: auto;
	flex-shrink: 0;
  }
  
  
  /* Partner With Us */
  .business-partner {
	background: #d7f280;
	padding: 60px 20px;
	border-radius: 30px 30px 0 0;
  }
  
  .partner-container {
	display: flex;
	gap: 30px;
	max-width: 1200px;
	margin: auto;
  }
  
  .partner-left {
	flex: 1;
	background: white;
	border-radius: 20px;
  }
  
  .partner-form {
	flex: 1;
  }
  
  .partner-form h3 {
	font-size: 24px;
	margin-bottom: 20px;
  }
  
  .form-row {
	display: flex;
	gap: 10px;
	margin-bottom: 15px;
  }
  
  .form-row input,
  .form-row textarea {
	flex: 1;
	padding: 12px;
	border: none;
	border-radius: 8px;
  }
  
  .privacy-note {
	font-size: 12px;
	margin-top: 10px;
  }
  
  .submit-btn {
	background: black;
	color: white;
	padding: 12px 30px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	margin-top: 15px;
  }
  
  /* Contact Section */
  .business-contact {
	padding: 40px 20px;
	text-align: center;
  }
  
  .contact-info {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
  }

  .esim-card {
	background: #fff;
	padding: 20px;
	border-radius: 16px;
	width: 30%;
	display: flex;
	flex-direction: column;
	gap: 10px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }
  
  .esim-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
  }
  
  .esim-info {
	display: grid;
	align-items: center;
	gap: 10px;
  }
  .esim-country{
	display: flex;
	align-items: center;
	gap: 10px;
  }
  
  .esim-flag {
	width: 24px;
	height: 24px;
	border-radius: 50%;
  }
  
  .esim-name {
	font-size: 16px;
	font-family: 'New_hero_Medium';
  }
  
  .esim-data-circle {
	width: 100px;
	height: 100px;
	position: relative;
  }
  
  .circle-svg {
	width: 100%;
	height: 100%;
	transform: rotate(-90deg);
  }
  
  .my-esim .inactive.active{
	background: black;
	color: #D9F07F;
  }

  .esim-data-circle {
    position: relative;
    width: 120px; /* Or whatever fixed size your container needs */
    height: 120px;
    display: flex; /* For centering the text */
    justify-content: center;
    align-items: center;
    text-align: center;
}

.circle-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.circle-bg,
.circle-progress {
    fill: none;
    stroke-width: 0; /* Make these invisible as segments will define the circle */
}

  .circle-text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	font-family: Arial, sans-serif;
  }
  
  .circle-text .used {
    font-size: 10px;
    color: #222;
    font-family: 'New_hero_extrabold';
  }
  
  .circle-text hr {
	margin: 0px 0;
	border: none;
	height: 1px;
	background: #ccc;
	width: 30px;
  }
  
  .circle-text .total {
	font-size: 10px;
    color: #26282B;
    font-family: 'New_hero_Medium';
  }  
  
  .circle-text div {
	font-weight: bold;
  }
  
  .esim-valid {
	font-size: 14px;
	color: #161616;
	text-align: left;
	font-family: 'New_hero_Regular';
  }

  .esim-valid.countries span{
	text-decoration: underline;
	text-underline-offset: 4px;
    text-decoration-color: #707070;
  }
  .countries-list p{
	opacity: .5;
	font-family: 'New_hero_Regular';
	font-size: 14px;
	margin-top: 10px;
  }
  .countries-list{
	display: none;
	width: 200px;
  }
  .esim-valid.countries.active .countries-list{
	display: block;
  }

  .esim-valid .expired{
	color: #EF5A5A;
  }

  .esim-valid span{
	opacity: .5;
  }
  .esim-valid .duration{
	opacity: 1;
  }
  
  .esim-buttons {
	display: flex;
	gap: 10px;
  }
  
  .btn-light {
    flex: 1;
    background: #F6F6EE;
    border: none;
    border-radius: 15px;
    font-size: 14px;
    cursor: pointer;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'New_hero_Medium';
    color: #1F2021;
  }
  
  .btn-install {
	background: #d8f47a;
	border: none;
	padding: 14px;
	width: 100%;
	margin-top: 0px;
	border-radius: 15px;
	font-family: 'New_hero_Medium';
	font-size: 15px;
	cursor: pointer;
  }

  .refer {
    background-color: #d9f07f;
    padding: 40px 20px;
    border-radius: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px auto;
    max-width: 1300px;
	margin-bottom: 0px;
}

.refer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.refer-left {
    flex: 1;
    max-width: 40%;
}

.refer-left img {
    width: 100%;
    max-width: 300px;
}

.refer-right {
    flex: 1;
    max-width: 55%;
    text-align: left;
}

.refer-right h2 {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
}

.refer-right p {
    font-size: 16px;
    margin-bottom: 20px;
}

.referral-code-wrapper {
    display: flex;
    border-radius: 37px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 500px;
    max-width: 100%;
	padding-left: 30px;
}

.referral-input-container {
    flex-grow: 1;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.referral-label {
    font-size: 12px;
    color: #a0a0a0;
    margin-bottom: 2px;
}

.referral-code-input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    padding: 0;
    width: 100%;
}

.copy-button {
    background-color: #111;
    color: #fff;
    border: none;
    border-radius: 37px;
    padding: 10px 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.copy-button:hover {
    background-color: #333;
}

.copy-button .copy-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

  

/*My account*/
	.simply-account-page-container {
		display: flex;
		border-radius: 12px;
		width: 100%;
		max-width: 1350px;
		overflow: hidden;
	}
	
	    .simply-info-row {
    background:white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.simply-info-label {
  font-size: 16px;
  font-weight: 500;
  color: #222;
  width: 120px;
}

.simply-info-value {
  flex: 1;
  display: flex;
}

.simply-select {
  width: 100%;
  font-size: 16px;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='16' viewBox='0 0 24 24' width='16' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  border:none;
}

	.simply-account-sidebar {
		width: 300px;
		background-color: transparent;
		padding: 30px 20px;
		display: flex;
		flex-direction: column;
		border-right: 1px solid #eee;
		flex-shrink: 0;
	}

	.simply-account-sidebar-header {
		display: flex;
		align-items: center;
		padding-bottom: 20px;
		margin-bottom: 20px;
		border-bottom: 1px solid #e0e0e0;
	}

	.simply-account-sidebar-avatar {
		width: 48px;
		height: 48px;
		border-radius: 50%;
		background-color: #AEE800;
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 24px;
		color: #fff;
		margin-right: 12px;
		flex-shrink: 0;
	}

	.simply-account-sidebar-info .simply-account-email {
		font-weight: 600;
		color: #333;
		font-size: 16px;
		margin-bottom: 4px;
	}

	.simply-account-sidebar-info .simply-account-balance {
		font-size: 14px;
		color: #666;
		display: flex;
		align-items: center;
	}

	.simply-account-balance-currency-icon {
		width: 16px;
		height: 16px;
		margin-right: 4px;
	}

	.simply-account-nav-list {
		list-style: none;
		padding: 0;
		margin: 0;
		flex-grow: 1;
	}

	.simply-account-nav-item {
		margin-bottom: 8px;
	}

	.simply-account-nav-link {
		display: flex;
		align-items: center;
		font-size: 14px;
		padding: 12px 15px;
		border-radius: 8px;
		text-decoration: none;
		color: #555;
		font-weight: 500;
		transition: background-color 0.2s ease, color 0.2s ease;
	}

	.simply-account-nav-link {
		background-color: white;
		color: #333;
	}

	.simply-account-nav-link.active {
		background-color: #e1fd76;
		color: #1a1a1a;
	}

	.my-account .simply-app{
		margin-top: 130px;
	}

	.simply-account-nav-icon {
		width: 20px;
		height: 20px;
		margin-right: 12px;
	}

	.simply-account-content {
		flex-grow: 1;
		padding: 30px;
		display: flex;
		flex-direction: column;
	}

	.simply-account-section {
		display: none;
		animation: fadeIn 0.3s ease-out;
		min-height: 400px;
	}

	.simply-account-section.active {
		display: block;
	}

	@keyframes fadeIn {
		from { opacity: 0; transform: translateY(10px); }
		to { opacity: 1; transform: translateY(0); }
	}

	.simply-info-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
		gap: 20px;
		margin-bottom: 30px;
	}

	.simply-info-item {
		display: flex;
		flex-direction: column;
		gap: 8px;
	}

	.simply-info-label {
		font-size: 14px;
		color: #888;
		font-weight: 500;
	}

	.simply-info-value {
		border: 1px solid #e0e0e0;
		border-radius: 8px;
		padding: 10px 15px;
		font-size: 16px;
		color: #333;
		background-color: #fcfcfc;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
	}

	.simply-info-value input {
		border: none;
		outline: none;
		flex-grow: 1;
		background-color: transparent;
		color: #333;
		font-size: 16px;
	}

	.simply-info-value .simply-dropdown-trigger {
		background: none;
		border: none;
		padding: 0;
		display: flex;
		align-items: center;
		cursor: pointer;
		color: #555;
		font-size: 16px;
	}

	.simply-info-value .simply-dropdown-trigger img {
		width: 24px;
		height: 18px;
		margin-right: 8px;
		border-radius: 2px;
	}

	.simply-info-value .simply-dropdown-trigger svg {
		width: 16px;
		height: 16px;
		margin-left: 8px;
		transition: transform 0.2s ease;
	}

	.simply-info-value .simply-dropdown-trigger.active svg {
		transform: rotate(180deg);
	}

	.simply-toggle-container {
		display: flex;
		align-items: center;
		margin-bottom: 30px;
		margin-top: 20px;
	}

	.simply-toggle-switch {
		position: relative;
		display: inline-block;
		width: 50px;
		height: 28px;
		margin-right: 15px;
	}

	.simply-toggle-switch input {
		opacity: 0;
		width: 0;
		height: 0;
	}

	.simply-toggle-slider {
		position: absolute;
		cursor: pointer;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: #ccc;
		transition: 0.4s;
		border-radius: 28px;
	}

	.simply-toggle-slider:before {
		position: absolute;
		content: "";
		height: 20px;
		width: 20px;
		left: 4px;
		bottom: 4px;
		background-color: white;
		transition: 0.4s;
		border-radius: 50%;
	}

	.simply-toggle-switch input:checked + .simply-toggle-slider {
		background-color: #AEE800;
	}

	.simply-toggle-switch input:checked + .simply-toggle-slider:before {
		transform: translateX(22px);
	}

	.simply-save-changes-btn {
		background-color: #e1fd76;
		color: #1a1a1a;
		padding: 12px 25px;
		border-radius: 37px;
		font-weight: 600;
		border: none;
		cursor: pointer;
		transition: background-color 0.2s ease;
		display: flex;
		align-items: center;
		justify-content: center;
		margin: auto;
		width: 200px;
	}

	.simply-save-changes-btn:hover {
		background-color: black;
		color: white;
	}

	.simply-delete-account-section {
		margin-top: 40px;
		padding-top: 30px;
		border-top: 1px solid #eee;
	}

	.simply-delete-account-text {
		color: #555;
		font-size: 14px;
		margin-bottom: 15px;
	}

	.simply-delete-account-btn {
		color: #ff4a4a;
		text-decoration: none;
		font-weight: 500;
		cursor: pointer;
	}

	.simply-custom-dropdown-content {
		display: none;
		position: absolute;
		background-color: #fff;
		min-width: 180px;
		box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
		z-index: 1000;
		border-radius: 8px;
		margin-top: 5px;
		overflow: hidden;
		right: 0;
	}

	.simply-custom-dropdown-content a {
		color: #333;
		padding: 10px 15px;
		text-decoration: none;
		display: flex;
		align-items: center;
		gap: 10px;
		transition: background-color 0.2s ease;
	}

	.simply-custom-dropdown-content a:hover {
		background-color: #f0f0f0;
	}

	.simply-custom-dropdown-content a img {
		width: 24px;
		height: 18px;
		border-radius: 2px;
	}

	.simply-billing-cards-section {
		background-color: #fcfcfc;
		padding: 20px;
		border-radius: 12px;
		box-shadow: 0 2px 5px rgba(0,0,0,0.05);
		margin-bottom: 25px;
	}

	.simply-billing-cards-section h3 {
		font-size: 18px;
		font-weight: 600;
		color: #333;
		margin-bottom: 15px;
	}

	.simply-billing-card-item {
		display: flex;
		align-items: center;
		background-color: #fff;
		border: 1px solid #e0e0e0;
		border-radius: 10px;
		padding: 15px 20px;
		margin-bottom: 15px;
		justify-content: space-between;
		box-shadow: 0 1px 3px rgba(0,0,0,0.03);
		transition: border-color 0.2s ease;
	}

	.simply-billing-card-item.default-card {
		border-color: #AEE800;
		background-color: #f9fff0;
	}

	.simply-billing-card-info {
		display: flex;
		align-items: center;
		gap: 15px;
	}

	.simply-billing-card-info .simply-card-icon {
		width: 35px;
		height: 25px;
		object-fit: contain;
	}

	.simply-billing-card-details {
		display: flex;
		flex-direction: column;
	}

	.simply-billing-card-details .simply-card-type {
		font-weight: 600;
		color: #333;
		font-size: 15px;
	}

	.simply-billing-card-details .simply-card-number {
		font-size: 14px;
		color: #777;
	}

	.simply-billing-card-actions {
		display: flex;
	}

	.simply-billing-card-actions .simply-card-delete-btn {
		color: #ff4a4a;
		text-decoration: none;
		font-size: 13px;
		font-weight: 500;
		cursor: pointer;
		transition: color 0.2s ease;
	}

	.simply-billing-card-actions .simply-card-delete-btn:hover {
		color: #cc0000;
	}

	.simply-custom-radio-container {
		display: block;
		position: relative;
		padding-left: 30px;
		cursor: pointer;
		font-size: 16px;
		user-select: none;
	}

	.simply-custom-radio-container input {
		position: absolute;
		opacity: 0;
		cursor: pointer;
	}

	.simply-custom-radio-checkmark {
		position: absolute;
		top: 0;
		left: 0;
		height: 20px;
		width: 20px;
		background-color: #eee;
		border-radius: 50%;
		transition: background-color 0.2s ease;
	}

	.simply-custom-radio-container input:checked ~ .simply-custom-radio-checkmark {
		background-color: #AEE800;
	}

	.simply-custom-radio-checkmark:after {
		content: "";
		position: absolute;
		display: none;
	}

	.simply-custom-radio-container input:checked ~ .simply-custom-radio-checkmark:after {
		display: block;
	}

	.simply-custom-radio-container .simply-custom-radio-checkmark:after {
		top: 6px;
		left: 6px;
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background: white;
	}

	.simply-billing-actions {
		display: flex;
		justify-content: flex-end;
		gap: 15px;
		margin-top: 20px;
	}

	.simply-billing-btn {
		padding: 12px 25px;
		border-radius: 8px;
		font-weight: 600;
		border: none;
		cursor: pointer;
		transition: background-color 0.2s ease;
	}

	.simply-billing-btn.simply-select-default {
		background-color: #AEE800;
		color: #1a1a1a;
	}

	.simply-billing-btn.simply-select-default:hover {
		background-color: #9cd600;
	}

	.simply-billing-btn.simply-add-new-card {
		background-color: #e0e0e0;
		color: #333;
	}

	.simply-billing-btn.simply-add-new-card:hover {
		background-color: #ccc;
	}

	.simply-add-card-form {
		background-color: #fcfcfc;
		padding: 20px;
		border-radius: 12px;
		box-shadow: 0 2px 5px rgba(0,0,0,0.05);
		display: none;
		margin-bottom: 25px;
	}

	.simply-add-card-form h3 {
		font-size: 18px;
		font-weight: 600;
		color: #333;
		margin-bottom: 20px;
	}

	.simply-add-card-form-grid {
		display: grid;
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.simply-form-group {
		display: flex;
		flex-direction: column;
		gap: 8px;
	}

	.simply-form-group label {
		font-size: 14px;
		color: #555;
		font-weight: 500;
	}

	.simply-form-group input {
		border: 1px solid #e0e0e0;
		border-radius: 8px;
		padding: 10px 15px;
		font-size: 16px;
		color: #333;
		background-color: #fff;
		width: 100%;
	}

	.simply-form-row {
		display: flex;
		gap: 15px;
	}

	.simply-form-row .simply-form-group {
		flex: 1;
	}

	.simply-add-card-buttons {
		display: flex;
		justify-content: flex-end;
		gap: 10px;
		margin-top: 25px;
	}

	.my-account .cta-box {
    	margin-top: 70px;
		padding: 20px 50px;
		border-radius: 23px;
		margin: auto;
		background-color: #e1fd77;
		padding-bottom: 30px;
		margin-right: 40px;
		margin-bottom: 30px;
	}

	.my-account .cta-box h2{
		font-size: 35px;
		text-transform: capitalize;
		line-height: 61px;
		font-family: 'New_hero_extrabold';
		text-align: center;
	}

	.simply-add-card-buttons .simply-cancel-btn {
		background-color: #eee;
		color: #555;
	}

	.simply-add-card-buttons .simply-submit-btn {
		background-color: #AEE800;
		color: #1a1a1a;
	}

	.simply-coins-gifts-grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 25px;
	}

	.simply-coin-gift-card {
		background-color: #fcfcfc;
		padding: 20px;
		border-radius: 12px;
		box-shadow: 0 2px 5px rgba(0,0,0,0.05);
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.simply-coin-gift-card-header {
		width: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-bottom: 15px;
		padding-bottom: 15px;
		border-bottom: 1px solid #eee;
	}

	.simply-coin-gift-card-header img {
		max-width: 100%;
		height: auto;
		border-radius: 8px;
	}

	.simply-coin-gift-card h3 {
		font-size: 20px;
		font-weight: 700;
		color: #333;
		margin-top: 15px;
		margin-bottom: 10px;
	}

	.simply-coin-gift-balance {
		font-size: 16px;
		color: #555;
		margin-bottom: 20px;
	}

	.simply-progress-bar-container {
		width: 100%;
		height: 10px;
		background-color: #e0e0e0;
		border-radius: 5px;
		margin-bottom: 15px;
		position: relative;
	}

	.simply-progress-bar {
		height: 100%;
		background-color: #AEE800;
		border-radius: 5px;
		width: 0%;
		transition: width 0.5s ease-out;
	}

	.simply-progress-labels {
		display: flex;
		justify-content: space-between;
		font-size: 12px;
		color: #666;
		margin-bottom: 25px;
		width: 100%;
	}

	.simply-history-toggle {
		display: flex;
		align-items: center;
		cursor: pointer;
		font-weight: 600;
		color: #333;
		margin-bottom: 15px;
		gap: 8px;
		transition: color 0.2s ease;
	}

	.simply-history-toggle:hover {
		color: #AEE800;
	}

	.simply-history-toggle svg {
		width: 18px;
		height: 18px;
		transition: transform 0.2s ease;
	}

	.simply-history-toggle.active svg {
		transform: rotate(180deg);
	}

	.simply-history-list {
		list-style: none;
		padding: 0;
		margin: 0;
		width: 100%;
		display: none;
	}

	.simply-history-list.active {
		display: block;
	}

	.simply-history-item {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 10px 0;
		border-bottom: 1px dashed #eee;
		font-size: 14px;
		color: #555;
	}

	.simply-history-item:last-child {
		border-bottom: none;
	}

	.simply-history-item-value {
		font-weight: 600;
		color: #1a1a1a;
	}

	.simply-explore-plans-btn {
		background-color: #AEE800;
		color: #1a1a1a;
		padding: 10px 20px;
		border-radius: 8px;
		font-weight: 600;
		border: none;
		cursor: pointer;
		margin-top: 20px;
		width: fit-content;
	}

	.simply-referral-wrapper {
		display: flex;
		flex-direction: column;
		gap: 25px;
		align-items: center;
		text-align: center;
	}

	.simply-referral-intro-card {
		background-color: #fcfcfc;
		padding: 25px;
		border-radius: 12px;
		box-shadow: 0 2px 5px rgba(0,0,0,0.05);
		display: flex;
		align-items: center;
		gap: 25px;
		width: 100%;
		max-width: 600px;
		text-align: left;
	}

	.simply-referral-intro-card-img {
		width: 120px;
		height: auto;
		flex-shrink: 0;
	}

	.simply-referral-intro-text h3 {
		font-size: 18px;
		font-weight: 600;
		color: #333;
		margin-bottom: 10px;
	}

	.simply-referral-intro-text p {
		font-size: 14px;
		color: #555;
		line-height: 1.5;
		margin-bottom: 10px;
	}

	.simply-referral-intro-text a {
		color: #AEE800;
		text-decoration: none;
		font-weight: 500;
		font-size: 14px;
	}

	.simply-referral-code-wrapper {
		display: flex;
		border-radius: 50px;
		overflow: hidden;
		background-color: #fff;
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
		width: 350px;
		max-width: 100%;
	}

	.simply-referral-input-container {
		flex-grow: 1;
		padding: 10px 20px;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}

	.simply-referral-label {
		font-size: 12px;
		color: #a0a0a0;
		margin-bottom: 2px;
	}

	.simply-referral-code-input {
		border: none;
		outline: none;
		background: transparent;
		font-size: 18px;
		font-weight: bold;
		color: #333;
		padding: 0;
		width: 100%;
	}

	.simply-copy-button {
		background-color: #111;
		color: #fff;
		border: none;
		border-radius: 0 50px 50px 0;
		padding: 10px 20px;
		font-size: 16px;
		font-weight: bold;
		cursor: pointer;
		display: flex;
		align-items: center;
		gap: 8px;
		flex-shrink: 0;
		transition: background-color 0.3s ease;
	}

	.simply-copy-button:hover {
		background-color: #333;
	}

	.simply-copy-button .copy-icon-svg {
		width: 18px;
		height: 18px;
		stroke: currentColor;
	}


	.simply-orders-section {
		background-color: #fcfcfc;
		padding: 20px;
		border-radius: 12px;
		box-shadow: 0 2px 5px rgba(0,0,0,0.05);
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
		min-height: 400px;
	}

	.simply-no-orders-illustration {
		width: 150px;
		height: auto;
		margin-bottom: 25px;
	}

	.simply-no-orders-title {
		font-size: 20px;
		font-weight: 600;
		color: #333;
		margin-bottom: 10px;
	}

	.simply-no-orders-text {
		font-size: 14px;
		color: #666;
		line-height: 1.5;
		max-width: 400px;
		margin-bottom: 25px;
	}

	.simply-orders-list-container {
		width: 100%;
	}

	.simply-order-item {
		display: flex;
		justify-content: space-between;
		align-items: center;
		background-color: #fff;
		border: 1px solid #eee;
		border-radius: 10px;
		padding: 15px 20px;
		margin-bottom: 12px;
		box-shadow: 0 1px 3px rgba(0,0,0,0.03);
	}

	.simply-order-info {
		display: flex;
		align-items: center;
		gap: 15px;
	}

	.simply-order-flag {
		width: 30px;
		height: 20px;
		border-radius: 3px;
	}

	.simply-order-details span {
		display: block;
		font-size: 15px;
		color: #333;
		font-weight: 500;
	}

	.simply-order-details small {
		font-size: 12px;
		color: #777;
	}

	.simply-order-price-date {
		text-align: right;
	}

	.simply-order-price {
		font-size: 16px;
		font-weight: 600;
		color: #1a1a1a;
	}

	.simply-order-date {
		font-size: 13px;
		color: #777;
	}

	.simply-custom-modal-overlay {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.5);
		backdrop-filter: blur(3px);
		z-index: 2000;
		justify-content: center;
		align-items: center;
	}

	.simply-custom-modal-content {
		background-color: #fff;
		padding: 30px;
		border-radius: 12px;
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
		max-width: 450px;
		width: 90%;
		text-align: center;
		position: relative;
		animation: modalFadeIn 0.3s ease-out;
	}

	@keyframes modalFadeIn {
		from { opacity: 0; transform: translateY(-20px); }
		to { opacity: 1; transform: translateY(0); }
	}

	.simply-modal-close-btn {
		position: absolute;
		top: 15px;
		right: 15px;
		background: none;
		border: none;
		font-size: 24px;
		color: #aaa;
		cursor: pointer;
	}

	.simply-modal-icon-wrapper {
		width: 60px;
		height: 60px;
		border-radius: 50%;
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 0 auto 20px auto;
	}

	.simply-delete-modal-icon-wrapper {
		background-color: #ffe0e0;
	}

	.simply-logout-modal-icon-wrapper {
		background-color: #e0f0ff;
	}

	.simply-modal-icon {
		width: 30px;
		height: 30px;
		color: #ff4a4a;
	}
	.simply-logout-modal-icon {
		color: #4a90ff;
	}


	.simply-modal-title {
		font-size: 22px;
		font-weight: 700;
		color: #333;
		margin-bottom: 15px;
	}

	.simply-modal-text {
		font-size: 15px;
		color: #666;
		line-height: 1.5;
		margin-bottom: 25px;
	}

	.simply-modal-buttons {
		display: flex;
		justify-content: center;
		gap: 15px;
	}

	.simply-modal-btn {
		padding: 10px 25px;
		border-radius: 8px;
		font-weight: 600;
		border: none;
		cursor: pointer;
		transition: background-color 0.2s ease;
	}

	.simply-modal-btn.simply-confirm-btn {
		background-color: #ff4a4a;
		color: #fff;
	}

	.simply-modal-btn.simply-confirm-btn:hover {
		background-color: #cc0000;
	}

	.simply-modal-btn.simply-cancel-btn {
		background-color: #e0e0e0;
		color: #555;
	}

	.simply-modal-btn.simply-cancel-btn:hover {
		background-color: #ccc;
	}

/*how to use*/
	.simply-esim-guide-container {
		display: flex;
		background-color: #ffffff;
		border-radius: 12px;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
		width: 100%;
		max-width: 900px;
		min-height: 500px;
		overflow: hidden;
	}

	.simply-esim-guide-left {
		flex: 1;
		background-color: #f7f7f7;
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 20px;
	}

	.simply-esim-guide-left-image {
		max-width: 80%;
		height: auto;
		object-fit: contain;
		border-radius: 10px;
		box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	}

	.simply-esim-guide-right {
		flex: 1.5;
		padding: 40px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		text-align: left;
	}

	.simply-esim-guide-title {
		font-size: 28px;
		font-weight: 700;
		color: #333;
		margin-bottom: 20px;
	}

	.simply-esim-guide-step-text {
		font-size: 16px;
		font-weight: 600;
		color: #AEE800;
		margin-bottom: 10px;
		padding: 8px 15px;
		background-color: #f0f8d9;
		border-radius: 20px;
		display: inline-block;
	}

	.simply-esim-guide-description {
		font-size: 16px;
		color: #555;
		line-height: 1.6;
		margin-bottom: 30px;
	}

	.simply-esim-guide-navigation {
		display: flex;
		gap: 20px;
		width: 100%;
		justify-content: flex-start;
	}

	.simply-esim-guide-nav-button {
		background-color: #AEE800;
		color: #1a1a1a;
		padding: 12px 25px;
		border-radius: 8px;
		font-weight: 600;
		border: none;
		cursor: pointer;
		transition: background-color 0.2s ease, opacity 0.2s ease;
		min-width: 120px;
		text-align: center;
	}

	.simply-esim-guide-nav-button:hover {
		background-color: #9cd600;
	}

	.simply-esim-guide-nav-button.back {
		background-color: #e0e0e0;
		color: #333;
	}

	.simply-esim-guide-nav-button.back:hover {
		background-color: #ccc;
	}

	.simply-esim-guide-nav-button:disabled {
		opacity: 0.5;
		cursor: not-allowed;
	}
  
/************************************/
/***      39. Responsive css	  ***/
/************************************/

/*Mobile Responsive*/
@media only screen and (max-width: 1024px){
	.hero .col-md-12{
		margin-top: 20px;
	}
	.hero-text h1{
		font-size: 35px;
	}
	.hero-text h2, .section-heading, .our-services .section-title h2{
		font-size: 25px;
	}
	.qr-text p {
		margin: 20px 0px;
		font-size: 14px;
	}
	.hero{
		background-position:left
	}
	.hero .cta-box-btn{
		margin-top: 40px;
	}
	.search-bar input{
		font-size: 12px;
	}
	.search-icon img{
		width: 25px;
    	height: 25px;
	}
	.search-icon{
		gap: 10px;
	}
	.data-plan-section .tab-btn{
		padding: 12px 25px;
	}
	.country-grid{
		grid-template-columns: repeat(1, 1fr);
	}
	.esim-work .section-title{
		margin-bottom: 25px;
    	margin-top: 25px;
	}
	#step-content p{
		font-size: 14px;
	}
	.our-services.esim-work .step-thumbs li {
    	flex: none;
	}
	.our-services.esim-work .step-thumbs .tab-btn{
		width: auto;
	}
	.our-services.esim-work .step-thumbs img{
		width: 80px;
    	height: 80px;
	}
	.features-content .section-title h2{
		font-size: 25px;
		margin-bottom: 15px;
	}
	.view-all-btn-wrapper {
    	margin-top: 30px;
	}
	.features-images img{
		margin-top: 50px;
	}
	.our-faqs {
		padding: 50px 20px;
		margin-bottom: 50px;
	}
	.our-faqs .tab-nav {
    	gap: 40px;
	}
	.faq-question h3, .our-features .section-title p, .our-features .section-title .spantext{
		font-size: 16px;
	}
	.cta-box{
		padding-top: 30px;
	}
	.cta-box-content .section-title h2{
		font-size: 25px;
	}
	.cta-box-content .section-title p{
		margin-top: 25px;
		font-size: 15px;
	}
	.cta-box .section-title {
    	margin-bottom: 25px;
	}
	.cta-box-image.qr-box{
		display: none;
	}
	.support h2{
		font-size: 25px;
		line-height: 35px;
	}
	.support p{
		margin-left: 0px;
		font-size: 15px;
		margin: 15px 0px;
	}
	.support p br{
		display: none;
	}
	.support .view-all-btn{
		width: 250px;
    	height: 50px;	
		margin-left: 0px;
        font-size: 16px;
	}
	.support{
		padding: 30px 15px;
	}
	.footer-links h3{
		font-size: 15px;
	}
	.footer-links ul li a{
		font-size: 14px;
	}
}

/*Laptop Responsive*/
@media only screen and (min-device-width: 768px) and (max-device-width: 1600px){
    .main-footer.bg-section .container{
        margin:0px 60px;
    }
    .home .cta-box-image.qr-box{
        width: 269px;
        height: 340px;
        padding: 57px 40px;
        left:0px;
    }
    .cta-box .cta-box-btn{
        width:40%;
    }
    .cta-box-image.qr-box .section-title{
        margin-bottom:35px;
    }
    
    .home .cta-box-image.qr-box img{
        margin-bottom: 21px;
    }
    .cta-box-image.qr-box p{
        font-size:15px;
    }
    .our-faqs{
        padding: 60px 80px !important;
    }
    .our-faqs .tab-nav{
        margin-bottom:10px;
    }
    .price-row span{
        font-size:10px;
    }
    .home .hero .col-md-12{
        margin-top:60px;
    }
    .home .flag{
        width: 35px;
    }
    .footer-links ul li{
        margin-bottom:5px;
    }
    .home .our-services{
        padding:60px;
        height: 487px;
    }
    .home .service-box-image img{
        width: 260px;
        height: 350px;
    }
    .home .step-thumbs img{
        width: 130px;
        height: 175px;
    }
    .home .step-thumbs .tab-btn.active{
        width: 130px;
        height: 175px;
    }
    .home .esim-works{
        gap:30px
    }
    .home .view-all-btn-wrapper{
        margin-top:40px;
    }
    .home .country-card{
        padding:15px;
    }
    .home .country-grid{
        gap: 10px;
        width: 80%;
        margin: auto;
    }
    .home .features-content p br{
        display:none;
    }
	.header-btn .btn-login{
		font-size: 12px;
		height: 30px;
		width: 85px;
		align-items: center;
		justify-content: center;
		display: flex;
		margin-right: 10px;
		padding: 0px;
	}
	.header-btn .btn-default{
		font-size: 12px;
		height: 30px;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0px;
		width: 130px;
		font-family: 'New_hero_Medium';
	}
	.main-menu ul li a{
		font-size: 12px;
	}
	.data-plan-section .tab-btn{
		font-size: 16px;
	    padding: 12px 65px !important;
	    text-transform:lowercase;
	}
	.country-name{
		font-size: 14px;
	}
	.price-row{
		font-size: 12px;
	}
	.view-all-btn{
		font-size: 16px;
		width:250px;
		height:50px;
	}
	.our-services .section-title h2, .features-content .section-title h2, .section-title h2,.cta-box-content .section-title h2, .support h2{
		font-size: 30px;
	}
	#step-content p{
		font-size: 14px;
	}
	.our-features .section-title p, .our-features .section-title .spantext, .cta-box-content .section-title p, .support p{
		font-size: 15px;
	}
	.faq-question h3{
		font-size: 18px;
	}
	.footer-links h3{
		font-size: 15px;
	}
	.footer-links ul li a{
		font-size: 14px;
	}
}







@media only screen and (max-width: 1540px){

	.bg-section{
		max-width: 100%;
		border-radius: 0px;
	}
}

@media only screen and (max-width: 1024px){
	
	.main-menu ul li{
		margin: 0;
	}
}

@media only screen and (max-width: 991px){
	
	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }

	.responsive-menu,
    .navbar-toggle{
        display: block;
    }

	.header-btn{
		display: none;
	}

	.btn-highlighted{
		padding: 15px 20px;
		border: none;
		transition: all 0.5s ease-in-out;
		overflow: hidden;
		z-index: 1;
	}

	.section-row{
		margin-bottom: 50px;
	}

	.section-row .section-title{
		margin-right: 0px;
	}

	.section-title{
		margin-bottom: 40px;
	}

	.section-title h3{
		margin-bottom: 15px;
	}

	.section-title h1{
		font-size: 46px;
	}

	.section-title h2{
		font-size: 36px;
	}

	.section-title p{
		margin-top: 20px;
	}

	.section-title-content{
		margin-top: 15px;
	}

	.section-btn{
		text-align: left;
		margin-top: 15px;
	}

	.hero{
		padding: 140px 0 0;
		margin-top: -85px;
	}

	.hero.hero-image{
		padding: 180px 0 100px;
	}

	.hero.hero-image .hero-content .section-title h1{
		font-size: 44px;
	}

	.hero.hero-image.hero-slider-layout .hero-slide{
		padding: 180px 0 100px;
	}

	.hero.hero-image.hero-slider-layout .hero-pagination{
		bottom: 40px;
	}

	.hero-content{
		margin-right: 0;
	}

	.hero-content-form .form-group .form-control{
		width: 50%;
		padding: 10px 15px;
	}

	.hero-counter-box{
		margin-left: 0px;
	}

	.hero-counter-item{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.hero-counter-item h2{
		font-size: 46px;
		margin-bottom: 5px;
	}

	.hero-images{
		width: 100%;
		max-width: 55%;
		margin: 0 auto;
		margin-top: 30px;
	}

	.hero-img img{
		aspect-ratio: 1 / 1.3;
	}

	.scrolling-ticker-box{
		--gap: 20px;
	}

	.our-scrolling-ticker{
		padding: 20px 0;
	}
	
	.scrolling-content span{
		font-size: 20px;
	}

	.scrolling-content span img{
		max-width: 16px;
		margin-right: 20px;
	}

	.about-us{
		padding: 50px 0 25px;
	}

	.about-company-item .icon-box{
		margin-bottom: 20px;
	}

	.about-company-content h3{
		font-size: 18px;
		margin-bottom: 10px;
	}

	.about-video-image{
		margin-top: 10px;
	}

	.about-us-video{
		height: 400px;
	}

	.video-play-button a{
		width: 80px;
		height: 80px;
	}

	.our-services{
		padding: 25px 0 20px;
	}

	.service-box{
		padding: 20px 20px 0 20px;
	}

	.service-box-header{
		margin-bottom: 20px;
	}

	.service-box-tag{
		margin-bottom: 15px;
	}

	.service-box-tag a{
		padding: 8px 15px;
	}

	.our-expertise.bg-section{
		padding: 50px 0;
	}

	.our-tab-nav{
		margin-bottom: 40px;
	}

	.our-tab-nav .nav-tabs{
		gap: 10px;
	}

	.our-tab-nav ul li{
		width: calc(25% - 7.5px);
	}

	.our-tab-nav ul li .nav-link.btn-highlighted{
		font-size: 14px;
		padding: 15px 6px;
	}

	.expertise-content{
		padding: 30px;
		margin-bottom: 30px;
	}

	.expertise-content-header{
		margin-bottom: 30px;
	}

	.expertise-content-header h3{
		margin-bottom: 15px;
	}

	.expertise-content-body{
		margin-bottom: 30px;
	}

	.expertise-image img{
		aspect-ratio: 1 / 0.55;
	}

	.why-choose-us{
		padding: 50px 0 20px;
	}

	.why-choose-no h3{
		font-size: 18px;
		width: 46px;
		height: 46px;
	}

	.why-choose-body{
		padding: 15px;
	}

	.readmore-btn{
		width: 40px;
		height: 40px;
	}

	.readmore-btn img{
		max-width: 20px;
	}

	.why-choose-content h3{
		font-size: 18px;
	}

	.our-approach.bg-section{
		padding: 50px 0 20px;
	}

	.our-approach.bg-section .section-row{
		margin-bottom: 50px;
	}

	.approach-item{
		margin-bottom: 30px;
	}

	.approach-item.approach-box-1 .approach-tags{
		margin-bottom: 15px;
	}

	.company-wisdom{
		padding: 50px 0;
	}

	.company-wisdom-item,
	.company-wisdom-image{
		width: calc(33.33% - 20px);
	}

	.company-wisdom-box .company-wisdom-item{
		padding: 20px;
	}

	.company-wisdom-counter h2{
		font-size: 46px;
	}

	.our-features.bg-section{
		padding: 50px 0;
	}

	.features-item{
		padding: 20px;
	}

	.features-body{
		margin-bottom: 30px;
	}

	.features-item .icon-box{
		width: 80px;
		height: 80px;
		margin-right: 20px;
	}

	.features-item .icon-box img{
		max-width: 45px;
	}

	.features-item-content{
		width: calc(100% - 100px);
	}

	.features-images{
        margin-left: 0px;
        max-width: 80%;
		margin: 0 auto;
    }

	.our-pricing{
		padding: 50px 0;
	}

	.pricing-box{
		padding: 20px;
	}

	.pricing-box-header{
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.pricing-box-title{
		margin-bottom: 15px;
	}

	.pricing-box-price h2{
		font-size: 46px;
	}

	.pricing-box-body{
		margin-bottom: 20px;
	}

	.pricing-box-body ul li{
		padding-left: 30px;
		margin-bottom: 15px;
	}

	.pricing-box-body ul li:before{
		font-size: 18px;
	}

	.cta-box.bg-section{
		padding: 50px 0 0;
	}

	.cta-box-content{
		margin-left: 0px;
		margin-bottom: 30px;
	}

	.cta-box-image{
		text-align: center;
	}

	.our-testimonial{
		padding: 50px 0;
	}

	.testimonial-slider{
		margin-bottom: 40px;
	}

	.testimonial-header{
		margin-bottom: 30px;
	}

	.testimonial-content p{
		font-size: 20px;
	}

	.author-image img{
		width: 70px;
		height: 70px;
	}

	.author-content{
		width: calc(100% - 90px);
	}

	.testimonial-counter-box{
		margin-left: 0px;
	}

	.testimonial-counter-item{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.testimonial-counter-item h2{
		font-size: 46px;
	}

	.testimonial-slider .testimonial-button-next,
	.testimonial-slider .testimonial-button-prev{
		width: 46px;
		height: 46px;
	}

	.testimonial-slider .testimonial-button-next::before,
	.testimonial-slider .testimonial-button-prev::before{
		background-size: 22px auto;
	}

	.our-faqs.bg-section{
		padding: 50px 0;
	}

	.faqs-client-slider{
		padding-bottom: 40px;
		margin-bottom: 40px;
	}

	.faqs-item-content::before{
		background-size: 20px auto;
		width: 40px;
		height: 40px;
	}

	.our-faqs-box{
		gap: 30px 20px;
	}

	.faqs-item{
		width: calc(50% - 10px);
	}

	.faqs-item-content{
		padding-left: 50px;
	}

	.faqs-item-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.latest-posts{
		padding: 50px 0 20px;
	}

	.post-featured-image img{
		aspect-ratio: 1 / 1.1;
	}

	.post-item-body{
		bottom: 20px;
		left: 20px;
		right: 20px;
		padding: 15px;
	}

	.post-item-content h3{
		font-size: 18px;
	}

	.main-footer.bg-section{
		padding: 50px 0 0;
		margin-bottom: 0px;
	}

	.about-footer{
		margin-bottom: 40px;
	}

	.footer-links h3{
		margin-bottom: 20px;
	}

	.footer-copyright{
		padding: 20px 0;
		margin-top: 40px;
	}

	.page-header{
        padding: 160px 0 80px;
    }
    
    .page-header-box h1{
        font-size: 46px;
    }

	.about-approach{
		padding: 25px 0 50px;
	}

	.about-approach-images{
		margin-right: 50px;
		padding: 25px 30px;
		margin-bottom: 30px;
	}

	.about-approach-chart{
		margin-bottom: 50px;
	}

	.about-approach-investment{
		right: -30px;
		transform: translateY(-100%);
	}

	@keyframes investmentmoveobject{
		50%{
			right: 20px;
		}
	}

	.approach-counter-box h2{
		font-size: 36px;
	}

	.about-approach-progress-counter h2{
		font-size: 36px;
	}

	.our-benefits.bg-section{
		padding: 50px 0 20px;
	}

	.benefits-item{
		padding: 20px;
	}

	.benefits-item-content{
		margin-bottom: 20px;
	}

	.benefits-item.benefits-box-2 .benefits-item-content{
		margin-top: 20px;
	}

	.benefits-item-content h3{
		margin-bottom: 10px;
	}

	.company-success{
		padding: 50px 0;
	}

	.company-success-content{
		margin-bottom: 30px;
	}

	.company-success-body{
		margin-bottom: 40px;
	}

	.company-success-images{
		margin-left: 0px;
	}

	.company-success-image img{
		aspect-ratio: 1 / 0.8;
	}

	.our-team{
		padding: 50px 0 20px;
	}

	.our-process.bg-section{
		padding: 50px 0;
	}

	.our-process-content{
		margin-bottom: 30px;
	}

	.process-counter{
		margin-bottom: 40px;
	}

	.process-counter-item h2{
		font-size: 36px;
	}

	.our-process-steps{
		margin-left: 0px;
		gap: 30px 0;
	}

	.process-step-item:nth-of-type(odd){
		margin-left: 80px;
	}

	.process-step-item:nth-of-type(even){
		margin-right: 80px;
	}

	.page-services{
		padding: 50px 0 20px;
	}

	.service-body{
		padding: 15px;
	}

	.page-service-single{
		padding: 50px 0;
	}

	.service-sidebar{
		position: initial;
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.service-catagery-list{
		padding: 20px;
		margin-bottom: 40px;
	}

	.service-catagery-list h3{
		margin-bottom: 20px;
	}

	.sidebar-cta-box{
		padding: 20px;
	}

	.service-entry{
		margin-bottom: 40px;
	}

	.service-entry h2{
		font-size: 36px;
		margin-bottom: 15px;
	}

	.service-entry p{
		margin-bottom: 15px;
	}

	.service-list-image{
		padding: 30px;
		margin-bottom: 40px;
		margin-top: 10px;
	}

	.service-entry-title{
		margin-bottom: 20px;
	}

	.why-choose-service-box{
		margin-bottom: 40px;
	}

	.why-choose-service-item{
		padding: 15px;
	}

	.service-features-list ul{
		gap: 20px 10px;
	}

	.service-features-list ul li{
		width: calc(33.33% - 6.66px);
		color: var(--primary-color);
		padding-left: 20px;
	}

	.service-features-list ul li:before{
		font-size: 16px;
	}

	.page-blog{
		padding: 50px 0;
	}

	.blog-item{
		height: calc(100% - 30px);
		margin-bottom: 30px;
	}

	.blog-featured-image{
		margin-bottom: 20px;
	}

	.blog-meta{
		margin-bottom: 10px;
	}
	
	.blog-content{
		margin-bottom: 15px;
	}

	.page-pagination{
		margin-top: 10px;
	}

	.page-single-post{
		padding: 50px 0;
	}

	.post-image{
		margin-bottom: 20px;
	}

	.post-entry blockquote{
		background-position: 25px 25px;
        background-size: 50px;
        padding: 25px 25px 25px 90px;
        margin-bottom: 20px;
	}

	.post-entry blockquote p{
		font-size: 18px;
	}

	.post-entry h2{
		font-size: 36px;
	}

	.post-entry ul li{
		font-size: 16px;
	}

	.post-tags{
		margin-bottom: 20px;
	}

	.post-social-sharing ul{
		text-align: left;
	}

	.post-tags .tag-links a{
		font-size: 16px;
		padding: 8px 15px;
	}

	.page-project{
		padding: 50px 0 20px;
	}

	.project-nav{
		margin-bottom: 40px;
	}

	.project-nav ul li a{
		padding: 0 20px;
	}

	.project-item-body{
		padding: 15px;
	}

	.project-item-content h3{
		font-size: 18px;
	}

	.page-project-single{
		padding: 50px 0;
	}

	.project-sidebar{
		position: initial;
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.project-detail-box{
		padding: 20px;
		margin-bottom: 30px;
	}

	.project-deatil-item{
		padding: 15px;
		margin-bottom: 15px;
	}

	.project-featured-image{
		margin-bottom: 20px;
	}

	.project-entry{
		margin-bottom: 40px;
	}

	.project-entry h2{
		font-size: 36px;
		margin-bottom: 15px;
	}

	.quality-project-item{
		padding: 15px;
	}

	.project-entry p{
		margin-bottom: 15px;
	}

	.page-case-study{
		padding: 50px 0 20px;
	}

	.case-study-item{
		height: calc(100% - 30px);
		margin-bottom: 30px;
	}

	.case-study-image{
		margin-bottom: 20px;
	}

	.page-case-study-single{
		padding: 50px 0;
	}

	.case-study-sidebar{
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.case-study-detail-box{
		padding: 20px;
		margin-bottom: 30px;
	}

	.case-study-deatil-content{
		padding: 15px;
	}

	.case-study-entry p{
		margin-bottom: 15px;
	}

	.case-study-approch-box{
		margin: 30px 0 30px 0;
	}

	.case-study-entry h2{
		font-size: 36px;
		margin-bottom: 15px;
	}

	.case-study-approch-item{
		margin-bottom: 20px;
	}

	.case-study-entry ul{
		gap: 15px;
	}

	.page-team{
		padding: 50px 0 20px;
	}

	.page-team-single{
		padding: 50px 0;
	}

	.team-member-details{
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.team-member-image img{
		aspect-ratio: 1 / 1.13;
	}

	.team-member-intro{
		padding: 30px;
	}

	.team-member-body,
	.team-member-info,
	.team-member-title{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.team-member-info ul li{
		margin-bottom: 20px;
	}

	.member-social-list ul li a{
		width: 40px;
		height: 40px;
	}

	.member-social-list ul li a i{
		font-size: 20px;
	}

	.team-member-entry{
		margin-bottom: 40px;
	}

	.team-member-entry h2{
		font-size: 36px;
		margin-bottom: 15px;
	}

	.team-member-entry p{
		margin-bottom: 15px;
	}

	.team-member-Capabilities{
		margin: 10px 0 0px 0;
	}

	.page-company-history{
		padding: 50px 0;
	}

	.company-history-info{
		width: 55%;
		padding: 40px 20px 40px 70px;
	}

	.company-history-year h2{
		font-size: 50px;
	}

	.company-history-image{
		width: 45%;
		padding-left: 0;
	}

	.company-history-item:nth-of-type(even) .company-history-image{
		padding-right: 0px;
	}

	.company-history-image img{
		max-width: 100%;
	}

	.company-history-item:first-child{
		padding-top: 30px;
	}

	.company-history-item:first-child::before{
		left: 50%;
		transform: translate(65%, -15%);
		width: 50px;
		height: 50px;
	}

	.company-history-item:last-child::after{
		transform: translateX(50%);
	}

	.page-pricing{
		padding: 50px 0 20px;
	}

	.page-client{
		padding: 50px 0 20px;
	}

	.company-logo{
        padding: 20px 30px;
    }

	.company-logo img{
		width: 100%;
		height: 60px;
	}

	.page-testimonial{
        padding: 50px 0;
    }

    .page-testimonial-item{
        margin-bottom: 50px;
    }

    .page-testimonial-content{
        width: calc(55% - 20px);
    }

    .page-testimonial-header{
        margin-bottom: 30px;
    }

	.page-testimonial-header p{
		font-size: 16px;
	}
    
    .page-testimonial-image{
        width: calc(45% - 20px);
        background-size: 120px auto;
        background-position: left 3% top 43%;
    }
    
    .page-testimonial-image img{
        max-width: 345px;
    }

	.page-gallery{
		padding: 50px 0 20px;
	}

	.page-gallery-box .photo-gallery img{
		aspect-ratio: 1 / 0.8;
	}

	.page-video-gallery{
		padding: 50px 0 20px;
	}

	.video-gallery-image img{
		aspect-ratio: 1 / 0.8;
	}

	.page-faqs{
		padding: 50px 0;
	}
	
	.faq-section{
		margin-bottom: 50px;
		padding-bottom: 50px;
	}

	.page-contact-us{
		padding: 50px 0;
	}

	.contact-us.bg-section{
		padding: 50px 0;
		margin-bottom: 50px;
	}

	.contact-information{
		gap: 30px;
	}

	.contact-info-item{
		display: block;
		text-align: center;
		width: calc(33.33% - 20px);
	}

	.contact-info-item::before{
		right: -15px;
	}

	.contact-info-item .icon-box{
		height: 60px;
		width: 60px;
		margin: 0 auto;
		margin-bottom: 15px;
	}

	.contact-info-item .icon-box img{
		max-width: 34px;
	}

	.contact-info-content{
		width: 100%;
	}

	.contact-info-content h3{
		font-size: 18px;
	}

	.google-map{
		height: 500px;
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.google-map iframe{
		height: 500px;
	}

	.contact-form-title{
		margin-bottom: 30px;
	}
	
	.contact-form-title h2{
		font-size: 26px;
	}

	.error-page{
		padding: 50px 0;
	}
	
	.error-page-image{
		margin-bottom: 20px;
	}

	.error-page-image img{
		max-width: 80%;
	}

	.error-page-content-heading{
		margin-bottom: 20px;
	}
	
	.error-page-content-heading h2{
		font-size: 34px;
	}	

	.error-page-content-body p{
		margin-bottom: 20px;
	}
}

@media only screen and (max-width: 767px){

	.topbar-info-content p{
		font-size: 14px;
	}

	.topbar-info-content p img{
		max-width: 16px;
		margin-right: 0px;
	}

	.section-row{
		margin-bottom: 30px;
	}

	.section-title{
		margin-bottom: 30px;
	}

	.section-title h3{
		margin-bottom: 10px;
	}

	.section-title h1{
		font-size: 36px;
	}

	.section-title h2{
		font-size: 26px;
	}

	.section-title p{
		margin-top: 10px;
	}

	.section-title-content{
		margin-top: 10px;
	}

	.hero.hero-image .hero-content .section-title h1{
		font-size: 30px;
	}

	.hero.hero-image .hero-content .hero-content-btn .btn-default{
		margin-right: 20px;
		margin-bottom: 10px;
	}

	.hero-content{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.hero-counter-item h2{
		font-size: 36px;
	}

	.hero-images{
		max-width: 100%;
	}

	.payment-method-image{
		left: 60px;
	}

	@keyframes paymentmoveobject{
		50%{
			left: 30px;
		}
	}

	.our-scrolling-ticker{
		padding: 15px 0;
	}

	.scrolling-content span{
		font-size: 18px;
	}

	.about-company-item .icon-box{
		width: 50px;
		height: 50px;
	}

	.about-company-item .icon-box img{
		max-width: 34px;
	}

	.about-us-video{
		height: 300px;
	}

	.service-box-title h3{
		font-size: 18px;
	}

	.our-tab-nav{
        margin-bottom: 30px;
    }

	.our-tab-nav .nav-tabs{
        gap: 15px 10px;
    }

	.our-tab-nav ul li{
        width: calc(50% - 5px);
    }

	.our-tab-nav ul li .nav-link.btn-highlighted{
        font-size: 12px;
		padding: 12px 6px;
    }

	.expertise-content{
        padding: 20px;
    }

	.expertise-content-header{
        margin-bottom: 20px;
    }

	.expertise-content-header h3{
        font-size: 18px;
    }

	.expertise-list-item .icon-box{
		margin-right: 10px;
	}

	.expertise-list-content{
		width: calc(100% - 34px);
	}

	.expertise-list-content p{
		font-size: 13px;
	}

	.expertise-image img{
        aspect-ratio: 1 / 0.7;
    }

	.approach-tags a{
		font-size: 13px;
		padding: 6px 15px;
	}

	.approach-content h3{
		font-size: 18px;
	}

	.company-wisdom-item,
	.company-wisdom-image{
        width: calc(50% - 15px);
    }

	.company-wisdom-box .company-wisdom-item{
        padding: 15px;
    }

	.company-counter-title h3{
		font-size: 16px;
	}

	.company-wisdom-counter h2{
        font-size: 36px;
    }

	.features-item{
		display: block;
        padding: 15px;
    }

	.features-item .icon-box{
        width: 60px;
        height: 60px;
        margin-right: 0px;
		margin-bottom: 20px;
    }

	.features-item .icon-box img{
        max-width: 35px;
    }

	.features-item-content{
        width: 100%;
		margin-bottom: 15px;
    }

	.features-item-content h3{
		font-size: 18px;
		margin-bottom: 10px;
	}

	.features-images{
        max-width: 100%;
    }

	.pricing-box-price h2{
        font-size: 36px;
    }

	.cta-box-btn .btn-highlighted.btn-cta-1{
		margin: 0 10px 10px 0;
	}

	.cta-box-btn .btn-highlighted.btn-cta-2{
		margin-left: 0;
	}

	.testimonial-slider{
        margin-bottom: 30px;
    }

	.testimonial-content p{
        font-size: 18px;
    }

	.author-image img{
        width: 60px;
        height: 60px;
    }

	.author-content{
        width: calc(100% - 80px);
    }

	.author-content h3{
		font-size: 18px;
	}

	.testimonial-slider .testimonial-button-next,
	.testimonial-slider .testimonial-button-prev{
        width: 36px;
        height: 36px;
    }

	.testimonial-slider .testimonial-button-next::before,
	.testimonial-slider .testimonial-button-prev::before{
        background-size: 18px auto;
    }

	.testimonial-counter-item h2{
        font-size: 36px;
    }

	.client-logo img{
		max-width: 130px;
	}

	.faqs-item{
        width: 100%;
    }

	.footer-links{
        margin-bottom: 30px;
    }

	.footer-links h3{
        margin-bottom: 15px;
    }

	.footer-links ul li{
		margin-bottom: 10px;
	}

	.footer-copyright{
        padding: 15px 0;
        margin-top: 10px;
    }

	.footer-copyright-text{
		text-align: center;
		margin-bottom: 10px;
	}

	.footer-social-links{
		text-align: center;
	}

	.page-header-box h1{
        font-size: 36px;
    }

	.about-approach-images{
        margin-right: 0px;
        padding: 20px 20px 80px 20px;
        margin-bottom: 90px;
    }

	.about-approach-investment{
		right: 70px;
		transform: translate(0%, 50%);
	}

	@keyframes investmentmoveobject{
		50%{
			right: 30px;
		}
	}	

	.skills-progress-bar .skillbar{
		margin-bottom: 20px;
	}

	.about-approach-content-info{
		display: block;
	}

	.about-approach-info-list{
		width: 100%;
		margin-bottom: 30px;
	}

	.about-approach-image-counter{
		width: 100%;
	}

	.about-approach-progress-counter h2{
        font-size: 28px;
    }

	.benefits-item-content h3{
        font-size: 18px;
    }

	.company-success-body{
		display: block;
		margin-bottom: 30px;
	}

	.company-client-images{
		display: block;
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.company-success-info h3{
		font-size: 18px;
	}

	.company-success-chart{
		bottom: 20px;
		right: 20px;
	}

	@keyframes successmoveobject{
		50%{
			right: 50px;
		}
	}

	.company-success-image img{
        aspect-ratio: 1 / 1.1;
    }

	.company-success-chart img{
		max-width: 200px;
	}

	.team-image figure, .team-image img{
		aspect-ratio: 1 / 1.14;
	}

	.team-content{
		bottom: 20px;
		left: 20px;
		right: 20px;
	}

	.process-counter{
		gap: 20px;
		margin-bottom: 30px;
	}

	.process-counter-item{
		width: calc(33.33% - 13.33px);
	}

	.process-counter-item::before{
		right: -10px;
	}

	.process-counter-item h2{
        font-size: 26px;
    }

	.process-counter-item p{
		font-size: 12px;
	}

	.process-step-item:nth-of-type(odd){
        margin-left: 20px;
    }

	.process-step-item:nth-of-type(even){
        margin-right: 20px;
    }

	.process-step-item{
		padding: 15px;
	}

	.step-item-number{
		height: 46px;
		width: 46px;
		margin-right: 14px;
	}

	.step-item-number h2{
		font-size: 18px;
	}

	.step-item-content{
		width: calc(100% - 60px);
	}

	.step-item-content h3{
		font-size: 18px;
	}
	
	.service-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.service-catagery-list{
        margin-bottom: 30px;
    }

	.service-catagery-list ul li a{
		padding: 14px 40px 14px 16px;
	}

	.service-featured-image{
		margin-bottom: 20px;
	}

	.service-featured-image img{
		aspect-ratio: 1 / 0.75;
	}

	.service-entry{
        margin-bottom: 30px;
    }

	.service-entry h2{
        font-size: 26px;
    }

	.service-entry ul{
		gap: 15px;
	}

	.service-list-image{
        padding: 20px;
        margin-bottom: 30px;
    }

	.service-List-img{
		margin-bottom: 20px;
	}

	.why-choose-service-box{
		gap: 20px;
		margin-bottom: 30px;
	}

	.why-choose-service-item{
		width: 100%;
	}

	.why-choose-service-content h3{
		font-size: 18px;
	}

	.service-features{
		margin-bottom: 30px;
	}

	.service-features-list ul{
        gap: 10px;
    }

	.service-features-list ul li{
        width: 100%;
		padding-left: 25px;
    }

	.blog-content h3{
		font-size: 18px;
	}

	.post-image figure,
	.post-image img{
		aspect-ratio: 1 / 0.70;
	}

	.post-entry blockquote{
		background-position: 20px 20px;
        padding: 70px 20px 20px 20px;
	}
	
	.post-entry h2{
		font-size: 26px;
	}

	.tag-links{
		font-size: 20px;
	}

	.project-nav{
        margin-bottom: 30px;
    }

	.project-detail-title h3{
		font-size: 18px;
	}

	.project-featured-image img{
		aspect-ratio: 1 / 0.75;
	}

	.project-entry{
		margin-bottom: 30px;
	}

	.project-entry h2{
        font-size: 26px;
    }

	.quality-project-item{
		display: block;
	}

	.quality-project-title{
		margin-bottom: 30px;
	}

	.quality-project-item .icon-box{
		height: 70px;
		width: 70px;
		margin-right: 0px;
		margin-bottom: 15px;
	}

	.quality-project-item .icon-box img{
		max-width: 36px;
	}

	.quality-project-content{
		width: 100%;
	}

	.quality-project-content h3{
		font-size: 18px;
	}

	.case-study-content{
		max-width: 220px;
	}

	.case-study-content h3{
		font-size: 18px;
	}

	.case-study-deatil-content h3{
		font-size: 18px;
	}

	.case-study-featured-image{
		margin-bottom: 20px;
	}

	.case-study-featured-image img{
		aspect-ratio: 1 / 0.75;
	}

	.case-study-entry h2{
        font-size: 26px;
    }

	.case-study-approch-item h3{
		font-size: 18px;
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.team-member-intro{
        padding: 20px;
    }
	
	.team-member-title h2{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.team-member-info ul li{
        margin-bottom: 10px;
    }

	.team-member-skillbar-title h3{
		font-size: 18px;
	}

	.team-member-entry{
        margin-bottom: 30px;
    }

	.team-member-entry h2{
        font-size: 26px;
    }

	.company-history-item{
		display: block;
		margin-top: 0px;
		margin-bottom: 30px;
	}

	.company-history-item:last-child,
	.company-history-item:first-child{
        padding: 0px;
    }

	.company-history-item:last-child::after,
	.company-history-item:first-child::before{
        display: none;
    }

	.company-history-info{
        width: 100%;
        padding: 0;
		border: none;
		margin-bottom: 20px;
    }

	.company-history-item:nth-of-type(even) .company-history-info{
		border: none;
	}

	.company-history-year h2{
        font-size: 40px;
    }

	.company-history-content h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.company-history-image{
        width: 100%;
    }

	.company-logo{
		border-radius: 15px;
        padding: 15px 20px;
    }

	.company-logo img{
        height: 100%;
    }

	.page-testimonial-item{
        display: block;
    }
    
    .page-testimonial-content{
        width: 100%;
        margin-bottom: 20px;
    }

	.page-testimonial-header{
        margin-bottom: 20px;
    }

	.page-testimonial-author h3{
		font-size: 18px;
		margin-bottom: 5px;
	}

    .page-testimonial-image{
        max-width: 100%;
        width: 100%;
    }
    
    .page-testimonial-image,
    .page-testimonial-item:nth-of-type(even) .page-testimonial-image{
        text-align: center;
        background-position: left 5% top 42%;
    }

	.faq-section{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.contact-info-item{
        width: 100%;
    }

	.google-map{
        height: 350px;
    }

	.google-map iframe{
        height: 350px;
    }

	.contact-form-title h2{
        font-size: 22px;
    }

	.error-page-content-heading h2{
        font-size: 28px;
	}
}