/* Imports */
/* Icons */
@import url("https://site-assets.fontawesome.com/releases/v6.0.0/css/all.css");
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
	--white: #fff;
	--black: #000;
	--theme-color: #2e3192;
	--primary: #ed1c24;
	--secondary: #333333;
}

::selection {
	background-color: var(--secondary);
	color: var(--white);
}

/* General Styling Start */
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	text-decoration: none !important;
	list-style-type: none;
	font-family: "Open Sans", sans-serif;
	overflow-wrap: break-word;
}

html {
	scroll-behavior: smooth;
}


body {
	overflow-x: clip;
}

a,
button {
	-webkit-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
	display: inline-block;
}

ul,
ol,
dl,
address,
label,
figure {
	margin-bottom: 0;
	padding: 0;
}

p {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.5;
}

section {
	position: relative;
	padding: 5rem 0;
	overflow: clip;
}

/* General Styling End */

/* Lenis Start */
html.lenis,
html.lenis body {
	height: auto;
}

.lenis.lenis-smooth {
	scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
	overscroll-behavior: contain;
}

.lenis.lenis-stopped {
	overflow: hidden;
}

.lenis.lenis-smooth iframe {
	pointer-events: none;
}

/* Lenis End */

/* Preloader Start */
.preLoader {
	width: 100%;
	height: 100%;
	z-index: 1111;
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
}

.preLoader>img {
	width: 300px;
}

.preLoader.black {
	background-color: var(--white);
	z-index: 11113;
}

.preLoader.white {
	z-index: 11112;
	background-color: var(--primary);
}

/* Preloader End */

/* ThemeBtn Start */
.btnWrapper {
	display: flex;
	gap: 0.5rem;
}

.themeBtn {
	width: fit-content;
	display: block;
	background: var(--primary);
	color: var(--white);
	border: 2px solid transparent;
	border-radius: 0.25rem;
	outline: none;
	font-size: 1rem;
	font-weight: 500;
	text-transform: capitalize;
	padding: 0.5rem 2.25rem;
}

.themeBtn:hover {
	border-color: var(--primary);
	background: var(--white);
	color: var(--primary);
}

/* ThemeBtn End */

/* Headings Start */
.heading {
	font-size: 2.25rem;
	font-weight: 700;
	text-transform: capitalize;
}

.heading span {
	color: var(--primary);
}

.subHeading {
	font-size: 1.25rem;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--primary);
	margin-bottom: 0.25rem;
}

/* Headings End */

/* Header Start */
.header {
	padding: 1rem 0;
}

.header-main__logo {
	width: 200px;
}

.header-main__logo>img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.header-main__nav li a {
	color: var(--black) !important;
	font-size: 1rem;
	font-weight: 500;
	padding: 0;
	text-transform: capitalize;
	position: relative;
	box-shadow: none;
}

.header-main__nav li a:hover {
	color: var(--primary) !important;
}

.header-main__nav {
	gap: 1rem;
}

.navbar-collapse .themeBtn {
	margin-left: 2rem;
}

/* Header End */

/* Banner Start */
.banner {
	background: var(--theme-color);
	height: 750px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.banner-content h1 {
	font-size: 4rem;
	font-weight: 700;
	line-height: 1;
	color: var(--white);
	margin: 0;
}

.banner-content h1 span {
	color: var(--primary);
}

.banner-content p {
	font-size: 1.25rem;
	font-weight: 500;
	color: var(--white);
	margin: 1rem 0 1rem;
}

.banner-content ul {
	margin: 0 0 1.5rem 1.25rem;
}

.banner-content ul li {
	font-size: 1.125rem;
	color: var(--white);
	list-style: disc;
}

.banner-content ul li+li {
	margin-top: 0.25rem;
}

.banner-img {
	width: 100%;
	height: 100%;
	position: relative;
}

.banner-img::before {
	content: "";
	position: absolute;
	bottom: 0;
	right: 2rem;
	width: 100px;
	height: 100px;
	background: url("../images/banner-img2.png") no-repeat center center;
	filter: brightness(0) invert(1);
	z-index: 1;
}

.banner-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Banner End */

/* Packages Start */
.packages-head__list {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1rem;
}

.packages-head__list li {
	width: max-content;
	font-size: 1rem;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.packages-head__list li i {
	color: var(--primary);
}

.packages-card {
	background: var(--white);
	border-radius: 0.75rem;
	box-shadow: 0 0 20px 1px #00000020;
	overflow: hidden;
}

.packages-card__head {
	background: var(--primary);
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 2rem;
}

.packages-card__head .title {
	font-size: 2rem;
	font-weight: 600;
	color: var(--white);
	margin: 0;
}

.packages-card__headImg {
	width: 50px;
}

.packages-card__headImg img {
	width: 100%;
}

.packages-card__body {
	padding: 2rem;
}

.packages-card__body .price {
	font-weight: 600;
}

.packages-card__body .price del {
	font-size: 1.125rem;
	color: #00000090;
	text-decoration: 2px red line-through !important;
}

.packages-card__body .price span {
	font-size: 2rem;
	color: var(--primary);
}

.packages-card__body .discount {
	font-size: 1rem;
	font-weight: 600;
	background: rgb(255, 193, 7);
	border-radius: 100px;
	padding: 0.5rem 1rem;
}

.packages-card__body p {
	font-size: 1.125rem;
	margin: 1rem 0;
}

.packages-card__bodyList {
	margin: 0 0 1rem 1.25rem;
}

.packages-card__bodyList li {
	list-style: disc;
}

.packages-card__bodyList li+li {
	margin-top: 0.5rem;
}

.packages-bottom {
	margin-top: 4rem;
}

.packages-bottom .title {
	font-size: 1.25rem;
	font-weight: 700;
	text-align: center;
	color: var(--primary);
	margin-bottom: 1rem;
}

.packages-bottom ul {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
}

.packages-bottom ul li {
	width: 50px;
	box-shadow: 0 0 20px 1px #00000020;
}

.packages-bottom ul li img {
	width: 100%;
}

/* Packages End */

/* Perks Start */
.perks {
	background: #ed1c2415;
}

.perks-card {
	text-align: center;
	padding: 0 1rem;
}

.perks-card__icon {
	font-size: 2rem;
	color: var(--primary);
	margin-bottom: 1rem;
}

.perks-card .title {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 0.5rem;
}

.perks-card p {
	font-size: 1rem;
}

.perks-para {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin: 3rem 0 0;
}

.perks-para :is(i, a) {
	color: var(--primary);
}

.perks-para a {
	text-decoration: underline !important;
}

/* Perks End */

/* About Us Start */
.about .row+.row {
	margin-top: 5rem;
}

.about-img {
	width: 100%;
}

.about-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.about-content ul {
	margin-bottom: 1rem;
}

.about-content ul li {
	display: flex;
	gap: 0.75rem;
}

.about-content ul li i {
	color: var(--primary);
	margin-top: 0.25rem;
}

.about-content ul li+li {
	margin-top: 0.5rem;
}

.esim-logo {
	width: 100px;
	margin-bottom: 1rem;
}

.logo-icon {
	width: 70px;
	aspect-ratio: 1;
	background: var(--primary);
	border-radius: 0.5rem;
	padding: 0.5rem;
	margin-bottom: 1rem;
}

/* About Us End */

/* Reviews Start */
.reviews {
	background: #ed1c2415;
}

.reviews-card {
	height: 250px;
	border: 1px solid #00000020;
	border-radius: 0.5rem;
	padding: 1.5rem;
}

.reviews-card__head {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #00000020;
}

.reviews-card__headContent .name {
	font-size: 1.5rem;
	font-weight: 600;
	color: var(--primary);
	margin-bottom: 0.25rem;
}

.reviews-card__headContent .title {
	font-size: 1.25rem;
	font-weight: 500;
	color: #00000090;
	margin: 0;
}

.reviews-card__body {
	padding: 1rem 0;
}

.reviews-card__body p {
	margin: 0;
}

.reviews-card__body p+p {
	margin-top: 1rem;
}

/* Reviews End */

/* FAQs Start */
.faq-tabs .accordion-item {
	border: 1px solid var(--primary) !important;
	border-radius: 0.5rem;
	overflow: hidden;
}

.faq-tabs .accordion-item+.accordion-item {
	margin-top: 1rem;
}

.faq-tabs .accordion-header {
	box-shadow: none;
	border: none;
}

.faq-tabs .accordion-button {
	box-shadow: none !important;
}

.faq-tabs .accordion-button:not(.collapsed) {
	background: var(--primary);
	color: var(--white);
}

.faq-tabs .accordion-button:not(.collapsed)::after {
	filter: brightness(0) invert(1);
}

.faq-tabs .accordion-body p {
	margin: 0;
}

.faq-tabs .accordion-body :is(p, ul)+ :is(p, ul) {
	margin-top: 1rem;
}

.faq-tabs .accordion-body ul li {
	list-style: disc;
	margin-left: 1rem;
}

.faq-tabs .accordion-body ul li+li {
	margin-top: 0.25rem;
}

/* FAQs End */

/* Steps Start */
.steps {
	background: #ed1c2415;
}

.steps-card__icon {
	width: 60px;
	height: 60px;
	margin-bottom: 1rem;
}

.steps-card__icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.steps-card .title {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.steps-card p {
	font-size: 1rem;
	font-weight: 500;
	margin: 0;
}

/* Steps End */

/* Cta Start */
.cta {
	background: var(--theme-color);
	padding: 4rem 0;
}

.cta-content {
	position: relative;
}

.cta-content :is(.heading, p) {
	color: var(--white);
}

.cta-img {
	width: 100%;
	height: 100%;
	margin-bottom: -7rem;
}

.cta-img img {
	width: 100%;
	height: 100%;
}

/* Cta End */

/* Footer Start */
.footer {
	background: var(--white);
	padding-top: 3rem;
}

.footer-logo img {
	width: 100%;
}

.footer-content h2 {
	font-size: 1.75rem;
	font-weight: 500;
	color: var(--black);
	margin-bottom: 1rem;
}

.footer-content__list li+li {
	margin-top: 0.25rem;
}

.footer-content__list li a {
	font-size: 1rem;
	font-weight: 500;
	color: var(--black);
}

.footer-content__list li a:hover {
	color: var(--primary);
}

.footer-content__list li a strong {
	color: var(--primary);
	display: block;
}

.footer-copyright {
	border-top: 1px solid var(--black);
	text-align: center;
	padding: 1rem 0;
	margin-top: 3rem;
}

.footer-copyright p {
	color: var(--black);
	margin: 0;
}

/* Footer End */

.float-icon {
	width: 55px;
	aspect-ratio: 1;
	background: #25D366;
	color: var(--white);
	border-radius: 100%;
	font-size: 2rem;
	display: grid;
	place-items: center;
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	z-index: 9999;
}