/* Description: Master CSS file */

/*****************************************
Table Of Contents:
- General Styles
- Navigation
- Home
- Information
- Button
- Services
- Plans
- Testimonials
- Newsletter
- Back To Top Button
- Extra Pages
- Media Queries
******************************************/


/**************************/
/*     General Styles     */
/**************************/
:root {
	--primary: #1c262f;
	--primary-light: #212d37;
	--secondary: #0ee951;
	--tertiary: #00dabf;
	--gradient: linear-gradient(to right, #0ee951, #00dabf);
}

/* Team Section Styles */
.team {
	background-color: var(--primary);
}

.team-grid {
	justify-content: center;
}

.team-card {
	background: transparent;
	border-radius: 15px;
	padding: 20px;
	margin: 20px 0;
	transition: all 0.3s ease;
	cursor: pointer;
}

.team-card:hover {
	transform: translateY(-10px) scale(1.05);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.team-image-wrapper {
	position: relative;
	margin-bottom: 20px;
	display: inline-block;
}

.team-image {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	border: 4px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}

.team-placeholder {
	background: linear-gradient(135deg, #4a5568, #2d3748);
	color: #ffffff;
}

.team-initials {
	font-size: 24px;
	font-weight: bold;
	text-transform: uppercase;
}

.team-card:hover .team-image {
	border-color: var(--secondary);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.team-card:hover .team-placeholder {
	background: linear-gradient(135deg, var(--secondary), #0ee951);
}

.team-info {
	padding-top: 15px;
}

.team-name {
	font-size: 16px;
	font-weight: bold;
	color: #ffffff;
	margin-bottom: 8px;
	transition: color 0.3s ease;
}

.team-designation {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	margin-bottom: 0;
	transition: color 0.3s ease;
}

.team-card:hover .team-name {
	color: var(--secondary);
}

.team-card:hover .team-designation {
	color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design for Team Section */
@media only screen and (min-width: 1024px) {
	.team-grid .col-xl-3 {
		flex: 0 0 25%;
		max-width: 25%;
	}
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
	.team-grid .col-md-6 {
		flex: 0 0 50%;
		max-width: 50%;
	}

	.team-card {
		margin: 15px 0;
	}

	.team-image {
		width: 120px;
		height: 120px;
	}

	.team-initials {
		font-size: 20px;
	}
}

@media only screen and (max-width: 767px) {
	.team-grid .col-sm-12 {
		flex: 0 0 100%;
		max-width: 100%;
	}

	.team-card {
		margin: 10px 0;
		padding: 15px;
	}

	.team-image {
		width: 100px;
		height: 100px;
	}

	.team-initials {
		font-size: 16px;
	}

	.team-name {
		font-size: 15px;
	}

	.team-designation {
		font-size: 13px;
	}
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Poppins", sans-serif;
}

h1 {
	font-size: 60px;
	font-weight: 500;
}

button {
	font-family: sans-serif;
}

p,
ul,
h4 {
	margin: 0;
	padding: 0;
}

a {
	color: white;
	text-decoration: none;
}

li {
	list-style-type: none;
}

/* Section Layout */
/* Keep hero full-height, let other sections size to content to avoid large gaps */
.home {
	height: 110vh;
	position: relative;
}

.about,
.services,
.work,
.contact {
	position: relative;
	height: auto;
}

@media (min-width: 992px) {
	.contact .contact-image {
		display: block;
		height: auto;
		max-width: 70%;
		margin-left: 0;
		margin-right: 0;
		object-fit: contain;
	}
}

/* Allow plans section to grow with content */
.plans {
	position: relative;
	height: auto;
}

.services,
.work,
.contact,
.testimonial,
.footer,
.pay-bill {
	background-color: var(--primary);
}

.about,
.plans,
.company,
.newsletter,
.location {
	background-color: var(--primary-light);
}

.bottom {
	background-color: black;
}

.payment-icons-container {
	display: flex;
	gap: 10px;
}

.payment-card {
	background-color: white;
	border-radius: 8px;
	padding: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 80px;
	height: 40px;
}

.payment-card.bkash-card img {
	transform: scale(1.2);
}

.payment-card img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.bottom .footer-payment-image {
	height: 40px;
	width: auto;
	object-fit: contain;
	border-radius: 8px;
}

.payment-icon {
	background-color: white;
	border-radius: 4px;
	padding: 5px;
	height: 34px;
	margin-left: 5px;
}

/* Uniform top spacing for main sections – set top padding to 5% */
.about,
.plans,
.services,
.contact,
.pay-bill,
.team {
	padding-top: 5% !important;
	padding-bottom: 48px !important;
}

/* Ensure PAY BILL content aligns to top so top padding defines spacing */
.pay-bill {
	align-items: flex-start !important;
}

/* Pay Bill specific card and logo styling */
.pay-bill .card {
	border: none;
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
	min-height: 200px;
	padding: 0.5rem !important;
}

.pay-bill .payment-media {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.pay-bill .payment-info {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 0.2rem;
}

.pay-bill .payment-info.full {
	flex: 0 0 100%;
	max-width: 100%;
	justify-content: center;
	align-items: center;
}

.pay-bill .payment-logo {
	width: 100%;
	height: auto;
	max-height: 140px;
	object-fit: contain;
	display: block;
}

.pay-bill .qr-image {
	width: auto;
	height: 180px;
	max-width: 100%;
	object-fit: contain;
	display: block;
}

.pay-bill .bkash-new-image {
	width: 100%;
	height: auto;
	max-height: 220px;
	object-fit: contain;
	border-radius: 12px;
}

.pay-bill .cash-new-image {
	width: 100%;
	height: auto;
	max-height: 220px;
	object-fit: contain;
	border-radius: 12px;
}

.pay-bill .payment-logo-small {
	height: 64px;
	width: auto;
	object-fit: contain;
}

/* Larger bKash logo for better visual balance */
.pay-bill .bkash-logo {
	height: 60px;
	width: auto;
	object-fit: contain;
	margin-bottom: 0.25rem;
}

.pay-bill h5 {
	font-size: 1rem;
	margin-bottom: 0.25rem;
}

.pay-bill p {
	font-size: 0.875rem;
	margin-bottom: 0;
}

@media (min-width: 992px) {
	.pay-bill .card {
		min-height: 260px;
	}
}

@media (max-width: 576px) {
	.pay-bill .payment-logo {
		max-height: 110px;
	}

	.pay-bill .payment-logo-small {
		height: 56px;
	}

	.pay-bill .bkash-logo {
		height: 60px;
	}
}

/* Compact gap between media and info inside card */
.pay-bill .card .d-flex {
	gap: 0.5rem !important;
}

/* Stylized Merchant Number */
.pay-bill .merchant-number {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
}

.pay-bill .digit-box {
	width: 44px;
	height: 56px;
	border-radius: 8px;
	background: #ffffff;
	color: #222;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	font-size: 1.25rem;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Gradient Border And Background On Icons */
.home_text,
.home .fas,
.plans .far,
.information .fas,
.work .fas,
.services .fas,
.location .far,
.location .fas {
	padding: 15px 0;
	background: -webkit-gradient(linear,
			left top,
			left bottom,
			from(#0ee951),
			to(#00dabf));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.navbar-nav a:hover,
.footer a:hover,
.footer .fab:hover {
	cursor: pointer;
	background: var(--gradient);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}


/**********************/
/*     Navigation     */
/**********************/
.navbar {
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 0.875rem;
	background-color: var(--primary);
	box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.025);
}

.navbar .navbar-brand {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}

.navbar .logo-image img {
	width: 120px;
	height: auto;
	background-color: transparent;
	padding: 0;
	border-radius: 0;
}

.navbar .logo-text {
	color: #fff;
	font-weight: 500;
	line-height: 1rem;
	font-size: 1.575rem;
	text-decoration: none;
}

.offcanvas-collapse {
	position: fixed;
	top: 2.75rem;
	/* adjusts the height between the top of the page and the offcanvas menu */
	bottom: 0;
	left: 100%;
	width: 100%;
	overflow-y: auto;
	visibility: hidden;
	padding-right: 1rem;
	padding-left: 1rem;
	background-color: var(--primary);
	transition: transform 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.offcanvas-collapse.open {
	visibility: visible;
	transform: translateX(-100%);
}

.navbar .navbar-nav {
	margin-top: 0.75rem;
	margin-bottom: 0.5rem;
}

.navbar .dropdown-menu {
	border: none;
	margin-top: 0.25rem;
	margin-bottom: 0.25rem;
	background-color: var(--primary);
}

.navbar .dropdown-item {
	color: #eee;
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 0.875rem;
	padding-top: 0.625rem;
	text-decoration: none;
	padding-bottom: 0.625rem;
}

.navbar .dropdown-item:hover {
	background-color: var(--primary);
}

.navbar .dropdown-divider {
	width: 100%;
	height: 1px;
	border: none;
	margin: 0.5rem auto 0.5rem auto;
	background-color: var(--primary-light);
}

.navbar .nav-item .nav-link {
	color: #eee;
	text-decoration: none;
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
	transition: all 0.2s ease;
}

.navbar .fa-stack {
	width: 2em;
	font-size: 0.75rem;
	margin-right: 0.25rem;
}

.navbar .fa-stack-2x {
	background: -webkit-gradient(linear,
			left top,
			left bottom,
			from(#0ee951),
			to(#00dabf));
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: all 0.2s ease;
}

.navbar .fa-stack-1x {
	color: #ffffff;
	transition: all 0.2s ease;
}

.navbar .fa-stack:hover .fa-stack-2x {
	color: var(--primary);
}

.navbar .fa-stack:hover .fa-stack-1x {
	color: var(--primary);
}

.navbar .navbar-toggler {
	padding: 0;
	border: none;
	font-size: 1.25rem;
}


/****************/
/*     Home     */
/****************/
.home {
	background-image: url(../assets/images/home_n.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.para {
	width: 50%;
}

.para-light {
	opacity: 0.7;
}


/***********************/
/*     Information     */
/***********************/
.information .container-fluid .row div:first-child {
	background-color: var(--primary);
}

.information .container-fluid .row div:last-child {
	background-color: white;
}

.information .container-fluid .row div:nth-child(2) {
	background-color: var(--primary-light);
}


/******************/
/*     Button     */
/******************/
.btn {
	color: white;
	border-radius: 0;
	border-width: 2px;
	padding: 10px 30px;
	border-image-slice: 1;
	background-image: none;
	background: transparent;
	border-image-source: var(--gradient);
	box-shadow: 5px 5px 0px 0px var(--secondary);
}

.btn:hover {
	color: white;
	box-shadow: none;
	border-radius: 0;
	padding: 10px 30px;
	transform: translate(5px, 5px);
}

/* Email - Newsletter Button */
.btn-secondary {
	color: black;
	border-width: 2px;
	padding: 10px 30px;
	border-image-slice: 1;
	background-image: none;
	background: transparent;
	border-image-source: var(--gradient);
}

.btn-secondary:hover {
	color: black;
	padding: 10px 30px;
	background-image: var(--gradient);
}

/* Other Pages Button */
.btn-tertiary {
	color: black;
	border-radius: 0;
	border-width: 2px;
	padding: 10px 30px;
	border-image-slice: 1;
	background-image: none;
	background: transparent;
	border-image-source: var(--gradient);
	box-shadow: 5px 5px 0px 0px var(--secondary);
}

.btn-tertiary:hover {
	color: black;
	box-shadow: none;
	border-radius: 0;
	padding: 10px 30px;
	transform: translate(5px, 5px);
}


/********************/
/*     Services     */
/********************/
.services .card {
	padding: 20px;
	border-radius: 0;
	border: 2px solid white;
}

.services .card:hover {
	border: 10px solid;
	transform: scale(1.01);
	border-image-slice: 1;
	border-width: 2px;
	border-image-source: var(--gradient);
	box-shadow: 5px 5px 0px 0px #0ee951;
}


/*****************/
/*     Plans     */
/*****************/
.plans .card {
	/* Pricing card redesign to match reference style */
	padding: 20px;
	/* adjusted padding since we're using actual img tags */
	border: none;
	background: #ffffff !important;
	/* override bg-transparent */
	border-radius: 16px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
	position: relative;
	color: #222 !important;
	/* override text-light from container */
	overflow: hidden;
}

/* Align inner texts to the left even if they carry Bootstrap's text-center */
.plans .card .text-center {
	text-align: left !important;
}

/* Style for package images from pack folder */
.plans .card .text-center.mb-3 {
	text-align: center !important;
	/* Negative margins to pull image to edges to remove white space */
	margin-top: -20px !important;
	margin-left: -20px !important;
	margin-right: -20px !important;
	margin-bottom: 20px !important;
	width: calc(100% + 40px) !important;
}

.plans .card .text-center.mb-3 img {
	width: 100%;
	height: auto;
	max-height: 140px;
	object-fit: cover;
	/* Round only top corners to match card border radius */
	border-radius: 16px 16px 0 0 !important;
}

/* Package badge at the top right - positioned over the image */
.plans .card h5:first-of-type {
	position: absolute;
	right: 0px;
	top: 80px;
	/* position at top of card, over image */
	margin: 0;
	padding: 6px 10px;
	background: #39b54a;
	color: #ffffff !important;
	border-radius: 6px;
	font-size: 0.9rem;
	font-weight: 700;
	letter-spacing: 0.2px;
	text-align: right;
	line-height: 1.1;
	z-index: 10;
	/* ensure it's above the image */
}

/* Add speed to badge - assuming it's in the HTML, but for style match */
.plans .card h5:first-of-type::after {
	content: "\a Up to 80Mb/s";
	/* default fallback */
	white-space: pre;
	display: block;
	font-size: 0.8rem;
	font-weight: 500;
}

/* Per-package badge speeds (override the default) */
.plans .card h5.speed-20::after {
	content: "\a Up to 20Mb/s";
}

.plans .card h5.speed-30::after {
	content: "\a Up to 30Mb/s";
}

.plans .card h5.speed-40::after {
	content: "\a Up to 40Mb/s";
}

.plans .card h5.speed-50::after {
	content: "\a Up to 50Mb/s";
}

.plans .card h5.speed-60::after {
	content: "\a Up to 60Mb/s";
}

.plans .card h5.speed-75::after {
	content: "\a Up to 75Mb/s";
}

.plans .card h5.speed-100::after {
	content: "\a Up to 100Mb/s";
}

/* Slightly larger font for speed badges */
.plans .card h5.speed-20::after,
.plans .card h5.speed-30::after,
.plans .card h5.speed-40::after,
.plans .card h5.speed-50::after,
.plans .card h5.speed-60::after,
.plans .card h5.speed-75::after,
.plans .card h5.speed-100::after {
	font-size: 0.95rem;
}

/* Subtitle styling - position at bottom of header (only direct child subtitle, not list items) */
.plans .card>p.small {
	position: absolute;
	left: 16px;
	bottom: 16px;
	top: auto;
	width: 60%;
	color: #ffffff !important;
	opacity: 0.98;
	margin: 0 !important;
	font-weight: 700;
	font-size: 1.1rem;
	line-height: 1.3rem;
	z-index: 2;
}

/* Feature list spacing and icon color */
.plans .card .block {
	padding: 0;
	/* remove vertical padding for ultra-tight stacking */
	margin: 0 !important;
	/* override Bootstrap mb-1 spacing */
}

.plans .card .block.mb-1 {
	margin-bottom: 0 !important;
}

.plans .card .block.mb-3 {
	margin-bottom: 4px !important;
	/* further reduce gap before price */
}

.plans .card .block .fa-check-circle {
	color: #39b54a;
	-webkit-text-fill-color: #39b54a;
	/* override gradient fill */
	background: none;
	line-height: 1;
	/* keep icon from adding vertical space */
}

.plans .card .block p,
.plans .card p,
.plans .card h5 {
	color: #222 !important;
}

/* Reduce line height for feature text to minimize gaps further */
.plans .card p.small {
	line-height: 1.08rem;
}

/* Price styling at the bottom */
.plans .card h5:last-of-type {
	color: #39b54a;
	font-size: 1.75rem;
	font-weight: 700;
	text-align: left;
}

.plans .card h5:last-of-type::before {
	content: "FROM";
	display: block;
	color: #6c757d;
	font-size: 0.875rem;
	margin-bottom: 2px;
	font-weight: 600;
}

.plans .card h5:last-of-type::after {
	content: "";
}

/* View plans link style under each card */
.plans .row .text-center a.btn.btn-sm {
	color: #39b54a;
	border: none;
	background: transparent;
	box-shadow: none;
	padding: 0;
	font-weight: 700;
}

.plans .row .text-center a.btn.btn-sm::after {
	content: " \2192";
	/* right arrow */
}

@media (max-width: 576px) {
	.plans .card {
		border-radius: 12px;
		box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
		padding: 150px 16px 16px;
	}

	.plans .card h5:last-of-type {
		font-size: 1.5rem;
	}

	.plans .card h5:first-of-type {
		font-size: 0.85rem;
		padding: 5px 8px;
	}

	.plans .card p.small {
		font-size: 0.95rem;
		line-height: 1.08rem;
		width: 55%;
	}

	.plans .card h5:first-of-type::after {
		font-size: 0.85rem;
	}
}


/************************/
/*     Testimonials     */
/************************/
.slider-1 {
	padding-top: 8.25rem;
	padding-bottom: 8.5rem;
}

.slider-1 .section-title {
	text-align: center;
}

.slider-1 .h2-heading {
	text-align: center;
	margin-bottom: 3rem;
}

.testimonial-card {
	border: 10px solid;
	border-image-slice: 1;
	border-width: 3px;
	border-image-source: var(--gradient);
}

.slider-1 .slider-container {
	position: relative;
}

.slider-1 .swiper-container {
	width: 86%;
	position: static;
}

.slider-1 .swiper-button-prev,
.slider-1 .swiper-button-next {
	color: var(--primary);
}

.slider-1 .swiper-button-prev:focus,
.slider-1 .swiper-button-next:focus {
	/* even if you can't see it chrome you can see it on mobile device */
	outline: none;
}

.slider-1 .swiper-button-prev {
	left: -14px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
	background-size: 18px 28px;
}

.slider-1 .swiper-button-next {
	right: -14px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
	background-size: 18px 28px;
}

.slider-1 .card {
	border: none;
	position: relative;
	background-color: transparent;
}

.slider-1 .card-image {
	width: 80px;
	height: 80px;
	margin-left: auto;
	margin-right: auto;
	border-radius: 50%;
	margin-bottom: 1.25rem;
}

.slider-1 .card-body {
	padding: 0;
}

.slider-1 .testimonial-text {
	margin-bottom: 0.75rem;
}

.slider-1 .testimonial-author {
	margin-bottom: 0;
	color: #252c38;
}

.slider-1 .avatar {
	width: 70px;
	height: 70px;
	border-radius: 50%;
}

/* Dropdown Menu */
.navbar .dropdown .dropdown-menu {
	animation: fadeDropdown 0.2s;
	/* required for the fade animation */
}

@-webkit-keyframes fadeDropdown {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadeDropdown {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}


/**********************/
/*     Newsletter     */
/**********************/
.form-control-input,
.form-control-textarea {
	width: 100%;
	appearance: none;
	border-radius: 4px;
	font-size: 0.875rem;
	line-height: 1.5rem;
	padding-left: 1.5rem;
	padding-top: 0.775rem;
	padding-bottom: 0.775rem;
}


/******************************/
/*     Back To Top Button     */
/******************************/
#myBtn {
	z-index: 99;
	right: 20px;
	width: 52px;
	height: 52px;
	bottom: 20px;
	border: none;
	outline: none;
	display: none;
	position: fixed;
	cursor: pointer;
	border-radius: 50%;
	background-color: #323137;
}

#myBtn:hover {
	background-color: #0f0f11;
}

#myBtn img {
	width: 18px;
	margin-left: 0.125rem;
	margin-bottom: 0.25rem;
}


/***********************/
/*     Extra Pages     */
/***********************/
.ex-header {
	padding-top: 8.5rem;
	padding-bottom: 4rem;
	background-color: var(--primary);
}

.ex-header h1 {
	color: #fff;
}

.ex-basic-1 .list-unstyled .fas {
	font-size: 0.375rem;
	line-height: 1.625rem;
}

.ex-basic-1 .list-unstyled .flex-grow-1 {
	margin-left: 0.5rem;
}

.ex-basic-1 .text-box {
	padding: 1.25rem 1.25rem 0.5rem 1.25rem;
	background-color: #f7f9fd;
}

.ex-cards-1 .card {
	border: none;
	background-color: transparent;
}

.ex-cards-1 .card .fa-stack {
	width: 2em;
	font-size: 1.125rem;
}

.ex-cards-1 .card .fa-stack-2x {
	color: var(--secondary);
}

.ex-cards-1 .card .fa-stack-1x {
	width: 2em;
	color: #ffffff;
	font-weight: 700;
	line-height: 2.125rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 {
	margin-left: 2.25rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 h5 {
	margin-top: 0.125rem;
	margin-bottom: 0.5rem;
}


/*************************/
/*     Media Queries     */
/*************************/
@media only screen and (max-width: 1024px) {

	.services,
	.work,
	.testimonial,
	.about,
	.contact {
		height: 100%;
	}

	/* Plans section remains auto-height on tablets and smaller */
	.plans {
		height: auto;
	}
}

@media (min-width: 992px) {
	.slider-1 .swiper-container {
		width: 92%;
	}

	.slider-1 .swiper-button-prev {
		left: -16px;
		width: 22px;
		background-size: 22px 34px;
	}

	.slider-1 .swiper-button-next {
		right: -16px;
		width: 22px;
		background-size: 22px 34px;
	}

	/* Navigation */
	.navbar {
		box-shadow: none;
		transition: all 0.2s;
		padding-top: 1.75rem;
		background-color: transparent;
	}

	.navbar.top-nav-collapse {
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
		background-color: var(--primary);
		box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.025);
	}

	.offcanvas-collapse {
		position: static;
		top: auto;
		bottom: auto;
		left: auto;
		width: auto;
		padding-right: 0;
		padding-left: 0;
		background-color: transparent;
		overflow-y: visible;
		visibility: visible;
	}

	.offcanvas-collapse.open {
		transform: none;
	}

	.navbar .navbar-nav {
		margin-top: 0;
		margin-bottom: 0;
	}

	.navbar .nav-item .nav-link {
		padding-right: 0.75rem;
		padding-left: 0.75rem;
	}

	.navbar .dropdown-menu {
		padding-top: 0.75rem;
		padding-bottom: 0.875rem;
		box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.08);
	}

	.navbar .dropdown-divider {
		width: 90%;
	}

	.navbar .social-icons {
		margin-left: 0.5rem;
	}

	.navbar .fa-stack {
		margin-right: 0;
		margin-left: 0.25rem;
	}
}

@media only screen and (max-width: 540px) {
	h1 {
		font-size: 30px;
	}

	.para {
		width: 100%;
	}

	.swiper-container {
		width: 92%;
	}

	.swiper-button-prev {
		left: -16px;
		width: 22px;
		background-size: 22px 34px;
	}

	.swiper-button-next {
		right: -16px;
		width: 22px;
		background-size: 22px 34px;
	}
}