.container-404 {
	background-color: #fff;
	border-radius: 16px;
	border: 1px solid #e5e5e5;
	margin: 50px auto;
	padding: 30px;
	text-align: center;
	max-width: 700px
}

.container-404 h1 {
	color: #ff5733;
	font-size: 150px;
	margin: 0
}

.container-404 h2 {
	color: #333;
	font-size: 36px;
	margin: 0
}

.container-404 p {
	color: #555;
	font-size: 18px
}

.container-404 a {
	color: #007bff;
	text-decoration: none
}

.container-404 a:hover {
	text-decoration: underline
}

body {
	font-family: system-ui;
	background-color: #f7f6fd;
	margin: 0;
	padding: 0;
	word-break: break-word
}

header {}

.h-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	margin: auto;
}

.logo a {
	color: #333;
	font-size: 24px;
	font-weight: bold;
	text-decoration: none;
}

.menu {
	list-style: none;
	margin: auto 0;
	padding: 0;
	display: flex;
	font-size: 18px;
	font-weight: 500;
}

.menu li {
	margin-left: 20px;
}

.menu li a {
	color: #00b558;
	text-decoration: none;
}

.menu.collapsed {
	display: none;
}

.menu-btn {
	display: none;
	background: none;
	border: none;
	font-size: 20px;
	cursor: pointer;
}

a {
	text-decoration: none;
}

footer h4 {
	margin: 0;
	text-align: left;
}

footer {
	background-color: #fff;
	padding-top: 20px;
	bottom: 0;
	width: 100%;
	font-size: 16px;
	border-top: 1px solid #f5f5f5;
}

.f-container {
	display: flex;
	justify-content: space-around;
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px 20px
}

.f-container>div {
	max-width: 33%;
}

.footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
	line-height: 1.7;
	font-weight: 500;
}

.footer-menu li {
	text-align: left;
}

footer a {
	color: #00b558
}

.footer-bottom {
	background-color: #202020;
	text-align: center;
	padding: 0px 10px 20px 10px;
	color: white;
}

.footer-bottom p {
	text-align: center;
	padding-top: 20px;
	color: #fff
}

.search-container {
	margin: 0 auto;
	justify-content: center;
	background-color: #3c5c62;
	position: fixed;
	width: 100%;
	bottom: 0;
	z-index: 100;
	line-height: 1;
	padding: 10px;
	text-align: center;
	font-size: .9em;
	overflow: hidden;
	white-space: no-wrap
}

.search-container p {
	color: #fff;
	font-weight: 700;
	font-size: 1em
}

.search-container p,
.search-container .form-div {
	display: inline-block;
	line-height: .1
}

#search-form {
	display: flex;
	align-items: center;
	margin: auto
}

#search-input {
	padding: 5px;
	border: 1px solid #ccc;
	border-left: none;
	border-radius: 5px 0 0 5px;
	width: 200px;
	font-size: 1em
}

.search-container button {
	padding: 7px 10px;
	background-color: #000;
	color: #fff;
	border: none;
	border-radius: 0 5px 5px 0;
	cursor: pointer;
	font-size: 1em;
	font-weight: 700;
	border:1px solid #ccc;
	border-right: none;
}

.search-page {
	background-image: url(../png/bg.png);
    background-size: cover;
    background-position: center center;
}
.search-box {
	max-width: 1100px;
	padding: 150px 10px 200px;
	margin: auto;
}

.search-box h1 {
	text-align: center;
	margin-top: 50px;
	font-size: 45px
}

.search-box p {
	text-align: center;
	font-size: 20px
}

.search-box form {
	text-align: center;
	margin-top: 20px
}

.search-box input[type=text] {
	padding: 20px 10px;
	font-size: 24px;
	border: none;
	border-radius: 10px 0 0 10px;
	width: 25%;
	font-weight: 700;
	border: 1px solid #ccc;
	border-right: none;

}

.search-box input[type=text]:focus {
	border: none
}

.search-box input[type=button] {
	cursor: pointer;
	background-color: #00b558;
	color: #fff;
	border: 1px solid #ccc;
	border-left: none;
	border-radius: 0 10px 10px 0;
	display: inline-block;
	font-size: 24px;
	width: 20%;
	padding: 20px 10px;
	margin-left: -10px;
	font-weight: 700
}

#loading {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	border-radius: 5px;
	z-index: 9999;
	text-align: center;
	box-shadow: rgba(0, 0, 0, .1) 0 4px 12px;
	min-width: 250px;
	height: 150px;
	font-size: 0.9em;
	font-weight: 500;
	text-wrap: nowrap;
}

.middle {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	position: absolute;
	color: black;
	text-align: center;
}

.bar {
	width: 10px;
	height: 50px;
	background: #fff;
	display: inline-block;
	transform-origin: bottom center;
	border-top-right-radius: 20px;
	border-top-left-radius: 20px;
	animation: loader 3s linear infinite;
}

.bar:nth-child(1) {
	animation-delay: 0.2s;
}

.bar:nth-child(2) {
	animation-delay: 0.4s;
}

.bar:nth-child(3) {
	animation-delay: 0.6s;
}

.bar:nth-child(4) {
	animation-delay: 0.8s;
}

.bar:nth-child(5) {
	animation-delay: 1s;
}

.bar:nth-child(6) {
	animation-delay: 1.2s;
}

.bar:nth-child(7) {
	animation-delay: 1.4s;
}

.bar:nth-child(8) {
	animation-delay: 1.6s;
}

@keyframes loader {
	0% {
		transform: scaleY(0);
		background: rgb(0, 181, 88);
	}

	50% {
		transform: scaleY(1);
		background: rgb(255, 152, 68);
	}

	100% {
		transform: scaleY(0);
		background: rgb(214, 27, 36);
	}
}

#domain-data {
	margin-top: 20px;
	text-align: center;
	font-weight: 700;
	font-size: 1.5em;
	color: red
}

.no-interaction {
	pointer-events: none;
	overflow: hidden
}

#recaptcha-container {
	margin: 10px auto;
	height: 80px;
}

.review-body {
	padding: 10px;
	max-width: 800px;
	flex: 1
}

.container {
	display: flex;
	justify-content: center
}

.last-check {
	background-color: #f2f2f2;
	padding: 8px 10px;
	border-radius: 16px;
	font-size: .7em;
	font-weight: 600;
	margin: 2px;
	display: inline-block
}

.review-body>div {
	text-align: center;
	background-color: #fff;
	margin: 20px 0;
	border-radius: 16px;
	font-size: 17px;
	border: 1px solid #e5e5e5
}

.hero-one,
.hero-slide,
.box-flag,
.site-details,
.check-table,
.faqs,
.extra-info,
.comment-section {
	padding: 30px
}

h1 {
	margin-top: 0;
	font-size: 45px
}

h2 {
	font-size: 40px
}

h3 {
	font-size: 35px
}

h4 {
	text-align: center
}

.hero-slide {
	display: flex;
	justify-content: center;
	gap: 20px;
	padding: 30px 8px;
	color: #fff;
	margin-left: -20px;
	margin-right: -20px
}

.desc-left {
	max-width: 500px;
	margin: auto
}

.desc-right {
	width: 250px;
	text-align: center;
	margin: auto
}

.desc-right p {
	margin: 0;
	font-size: 35px;
	font-weight: 800
}

.trust-score {
	border-radius: 14px;
	width: 200px;
	font-size: 30px;
	padding: 18px 8px;
	margin: auto;
	border: 3px solid green
}

.trust-score p {
	margin: 0;
	font-weight: 900
}

.score {
	font-size: 60px;
	color: green;
	font-weight: 700;
	margin: 0
}

.box-flag p {
	text-align: left;
	padding: 8px 5px
}

.box-flag li {
	text-align: left;
	padding: 10px;
	list-style-position: initial;
	list-style-type: disclosure-closed;
	margin: auto;
	border-radius: 10px;
	margin-left: -40px
}

.detail-boxs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px
}

.sub-box {
	flex: 1 1 200px;
	background-color: #f2f2f2;
	margin: 10px;
	padding: 30px;
	border-radius: 14px;
	background-color: #fff
}

.description {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: auto
}

.description img {
	max-width: 100%;
	height: auto;
	border-radius: 16px;
	box-shadow: rgba(0, 0, 0, .15) 0 2px 8px
}

.green-flag {
	background-color: #a0ffa00a
}

.red-flag {
	background-color: #fcf6f6
}

.green-flag,
.red-flag {
	border: 1px solid #e5e5e5;
	border-radius: 14px;
	text-align: left;
	padding: 5px;
	text-align: left;
	margin: 20px 8px
}

.green-flag ul li {
	list-style: none;
	padding: 10px 30px;
	background-image: url(../jpg/green.jpg);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 20px
}

.red-flag ul li {
	list-style: none;
	padding: 10px 30px;
	background-image: url(../jpg/red.jpg);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 20px
}

.extra-info h4 {
	font-size: 23px;
	padding: 0 4px
}

.extra-info p {
	text-align: left !important
}

.extra-heading {
	background-color: #3c5c62;
	padding: 2px 0 !important;
	color: #fff;
	margin: -30px -30px 0;
	border-radius: 16px 16px 0 0
}

.extra-para {
	padding: 15px
}

.extra-para ul {
	counter-reset: li;
	list-style: none;
	padding: 0;
	text-shadow: 0 1px 0 rgba(255, 255, 255, .5);
	font-size: .9em;
	font-weight: 700
}

.extra-para ul a {
	position: relative;
	display: block;
	padding: .5em .5em .5em 2em;
	margin: .5em 0;
	background: #fff;
	color: #444;
	text-decoration: none;
	border-radius: .3em;
	transition: .3s ease-out;
	box-shadow: rgba(0, 0, 0, .16) 0 1px 4px;
	text-align: left
}

.extra-para ul a:hover {
	background: #f5f5f5
}

.extra-para ul a:hover:before {
	transform: rotate(360deg)
}

.extra-para ul a:before {
	content: counter(li);
	counter-increment: li;
	position: absolute;
	left: -1.3em;
	top: 50%;
	margin-top: -1.3em;
	background: #fff;
	height: 2em;
	width: 2em;
	line-height: 2em;
	border: .2em solid #444343;
	text-align: center;
	font-weight: 700;
	border-radius: 2em;
	transition: all .3s ease-out
}

#load-comments {
	padding: 12px;
	font-weight: 700;
	color: #fff;
	background-color: #02b558;
	border: none;
	box-shadow: -1px 2px 6px 1px #bbb;
	font-size: 16px;
	border-radius: 5px;
	cursor: pointer;
	transition: 0.5s;
}

#load-comments:hover {
	background-color: #202020;
}

table {
	border-spacing: 1;
	border-collapse: collapse;
	overflow: hidden;
	width: 100%;
	position: relative;
	align-self: flex-start
}

table caption {
	color: grey;
	font-weight: 600;
	text-align: left;
	margin: 20px
}

td,
th {
	padding-left: 8px;
	font-size: .8em;
	margin: 10px
}

.site-details td,
.site-details th {
	display: table
}

.site-details tr:last-child {
	border-bottom: none
}

thead tr {
	background: #f5f5f5;
	font-size: 1.1em;
	text-align: left;
	height: 50px;
	border: 1px solid #e5e5e5;
}

tbody tr {
	height: 48px;
	text-align: left;
	border-bottom: 1px solid #e5e5e5
}

tbody,
thead {}

.check-table tr p {
	display: inline;
	line-height: 0.7;
}

.accordion {
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #f5f5f5;
	font-weight: 700;
	padding: 8px;
	margin: 10px -10px;
	font-size: .8em;
	border: 1px solid #e5e5e5
}

.panel {
	display: none;
	padding: 4px 10px
}

.active {
	display: block
}

.icon {
	font-size: 25px
}

.up-icon::before {
	content: "";
	padding: 10px 30px;
	background-image: url(../png/up-arrow.png);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 20px
}

.down-icon::before {
	content: "";
	padding: 10px 30px;
	background-image: url(../png/down-arrow.png);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 20px
}

.faq {
	text-align: left;
	border-bottom: 1px solid #e5e5e5;
}

.question {
	font-weight: 700;
	margin-bottom: 5px
}

.answer {
	margin-bottom: 10px
}

.disclaimer {
	text-align: left;
	font-style: italic;
	font-size: .8em
}

.divider {
	position: relative;
	margin: 40px 0;
	height: 1px;
	display: none
}

.div-transparent:before {
	content: "";
	position: absolute;
	top: 0;
	left: 5%;
	right: 5%;
	width: 90%;
	height: 1px;
	background-image: linear-gradient(to right, transparent, rgb(48, 49, 51), transparent)
}

.hero-one .macbook {
	padding: 4% 6%;
	margin: 0 auto;
	max-width: 800px
}

.hero-one .screen {
	background: #000;
	border-radius: 3% 3% 0.5% 0.5%/5%;
	margin: 0 auto;
	position: relative;
	width: 80%
}

.hero-one .screen:before {
	border: 2px solid #cacacc;
	border-radius: 3% 3% 0.5% 0.5%/5%;
	box-shadow: 0 0 0 1px rgba(0, 0, 0, .8) inset, 0 0 1px 2px rgba(255, 255, 255, .3) inset;
	content: "";
	display: block;
	padding-top: 67%
}

.hero-one .screen:after {
	content: "";
	border-top: 2px solid rgba(255, 255, 255, .15);
	position: absolute;
	bottom: .75%;
	left: .5%;
	padding-top: 1%;
	width: 99%
}

.hero-one .viewport {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	margin: 4.3% 3.2%;
	background: #333
}

.hero-one .base {
	position: relative;
	width: 100%;
	overflow: hidden
}

.hero-one .base:before {
	content: "";
	display: block;
	padding-top: 3.3%;
	background: linear-gradient(#eaeced, #edeef0 55%, #fff 55%, #8a8b8f 56%, #999ba0 61%, #4b4b4f 84%, #262627 89%, rgba(0, 0, 0, 0.01) 98%);
	border-radius: 0 0 10% 10%/0 0 50% 50%
}

.hero-one .base::after {
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0.8) 0.5%, rgba(0, 0, 0, 0.4) 3.3%, transparent 15%, rgba(255, 255, 255, 0.8) 50%, transparent 85%, rgba(0, 0, 0, 0.4) 96.7%, rgba(255, 255, 255, 0.8) 99.5%, rgba(0, 0, 0, 0.5) 100%);
	content: "";
	height: 53%;
	position: absolute;
	top: 0;
	width: 100%
}

.hero-one .notch {
	background: #ddd;
	border-radius: 0 0 7% 7%/0 0 95% 95%;
	box-shadow: -5px -1px 3px rgba(0, 0, 0, .2) inset, 5px -1px 3px rgba(0, 0, 0, .2) inset;
	margin-left: auto;
	margin-right: auto;
	margin-top: -3.5%;
	z-index: 2;
	position: relative;
	width: 14%
}

.hero-one .notch:before {
	content: "";
	display: block;
	padding-top: 10%
}

.hero-one .macbook .viewport {
	transition: background-position 3s ease;
	background-position: 0 0;
	background-size: 100% auto;
	overflow: hidden;
	cursor: pointer
}

.hero-one .macbook:hover .viewport {
	background-position: 0 100%
}

.hero-one .macbook .viewport:after {
	background: radial-gradient(circle at right bottom, transparent 75%, rgba(255, 255, 255, 0.05) 75%, transparent);
	bottom: 0;
	content: "";
	left: 0;
	position: absolute;
	right: 0;
	top: 0
}

.hero-slide .chart {
	position: relative;
	width: 190px;
	height: 190px;
	margin: auto
}

.hero-slide canvas {
	display: block;
	position: absolute;
	top: 0;
	left: 0
}

.hero-slide span {
	color: #fff;
	display: block;
	line-height: 190px;
	text-align: center;
	width: 190px;
	margin-left: 5px;
	font-weight: 800
}

.sidebar {
	margin-top: 20px;
	width: 400px;
	padding: 10px;
}

aside {
	background-color: #fff;
	border-radius: 16px;
	border: 1px solid #e5e5e5;
	text-align: center;
}


.recent-box {
	background-color: #fcfdff;
	padding: 10px;
	border-radius: 12px;
	margin: 10px 0;
	border: 1px solid #e5e5e5;
	color: #000;
	text-align: left;
	display: inline-block;
	width: 80vw;
	max-width: 270px;
	transition: 1s;
	height: -webkit-fill-available;
}

.recent-box:hover {
	background-color: #f5f5f5
}

.time-box {
	font-size: .8em;
	color: #fff;
	background-color: #3c5c62;
	padding: 1px 5px;
	border-radius: 4px
}

a {
	text-decoration: none !important
}

.intro-box h2,
.intro-box h3 {
	font-size: 32px;
	text-align: center;
}

.intro-box p {
	font-size: 20px;
}

.intro-box>div {
	padding: 50px;
	margin: auto;
}

.recent-parent {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	margin: auto;
	max-width: 1000px;
	justify-content: space-around;
}

.recent-box p {
	font-size: 1.1em;
	font-weight: 700;
	color: #3c5c62
}
.intro-box {
	display: block;
	max-width: 1200px;
	margin: auto;
}

#loadMoreBtn {
	padding: 12px;
	font-weight: 700;
	color: #fff;
	background-color: #02b558;
	border: none;
	box-shadow: -1px 2px 6px 1px #bbb;
	font-size: 16px;
	border-radius: 5px;
	margin: 25px 0;
	cursor: pointer;
	transition: 0.5s;
}

#loadMoreBtn:hover {
	background-color: #202020;
}

.recent-body {
	background-color: #fff;
	padding: 100px 10px;
	text-align: center
}

.tooltip {
	position: relative;
	display: inline-block;
	left: 99%;
}

@media (max-width: 580px) {
	.tooltip {
		left: 50%;
	}
}

.tooltip a {
	border-bottom: 1px solid white;
	color: white;
}

.tooltip .tooltiptext {
	visibility: hidden;
	width: 250px;
	background-color: #555;
	color: #fff;
	text-align: center;
	padding: 5px 0;
	border-radius: 6px;
	font-size: 15px;
	position: absolute;
	z-index: 1;
	top: -35%;
	right: 20px;
	opacity: 0;
	transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
	visibility: visible;
	opacity: 1;
}

.exclamation-circle {
	position: relative;
	right: 100%;
	top: -5%;
}

.home-page {
	max-width: 1100px;
	margin: auto;
}

.home-page>div {
	margin-top: 45px !important;
}

.home-hero {
	padding: 10px;
}

.hero-flex {
	display: flex;
	align-items: center;
}

.home-page h1 {
	font-size: 45px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 5px;
}

.home-page h3 {
	text-align: center;
}

.buttons {
	margin-top: 20px;
}

.btn {
	display: inline-block;
	background-color: #00b558;
	color: white;
	padding: 12px 20px;
	border: none;
	border-radius: 5px;
	text-decoration: none;
	font-size: 16px;
	margin: 5px;
	cursor: pointer;
	font-weight: 700;
	box-shadow: 1px 1px 1px 1px #aaaaaa;
}

.btn:hover {
	background-color: #089c52;
}

img {
	max-width: -webkit-fill-available;
}

.blog-container {
	padding: 20px;
	text-align: center;
}

.blog-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
}

.blog-post-card {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	transition: transform 0.3s ease;
}

.blog-post-card:hover {
	transform: translateY(-5px);
}

.post-thumbnail img {
	width: 100%;
	height: auto;
}

.post-header {
	padding: 15px;
}

.post-title {
	font-size: 1.3em;
	margin: 0;
}

.post-title a {
	color: #00b558 !important
}

.what-we-do {
	padding: 20px 40px 40px 40px;
	text-align: center;
	background: #fafafa;
	margin: 20px auto;
	border-radius: 20px;
	border: 1px solid #eee;
}

.section-description {
	font-size: 1.2em;
	margin-bottom: 30px;
}

.scam-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	justify-content: center;
}

.scam-item {
	background: white;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: transform 0.3s ease;
	border: 1px solid #eee;
	color: black;
}

.scam-item:hover {
	transform: translateY(-5px);
}

.icon-box {
	font-size: 40px;
	color: #00b558;
	margin-bottom: 10px;
}

.scam-item h3 {
	font-size: 1.2em;
	margin: 0;
}

.slideshow-container {
	padding: 20px 40px 40px 40px;
	text-align: center;
	background: #fafafa;
	margin: 20px auto;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid #eee;
}

.slides {
	display: flex;
	transition: transform 1s ease-in-out;
}

.slide {
	min-width: 33.33%;
	box-sizing: border-box;
	padding: 20px;
	text-align: center;
}

.slide img {
	height: 45px;
	width: auto;
}

.counter-container {
	padding: 20px;
	border-radius: 20px;
	text-align: center;
	margin: auto;
	background-color: #f7fcfe;
}

.counter-text {
	font-size: 24px;
	color: #555;
	margin-bottom: 10px;
	font-weight: bold;
}

.counter-number {
	font-size: 50px;
	font-weight: bold;
	color: #00b558;
}

.testimonials {
	max-width: 1000px;
	margin: 10px auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	padding: 20px;
}

.testimonial-card {
	background: white;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	text-align: center;
	transition: transform 0.3s ease-in-out;
	border: 1px solid #eee;
}

.testimonial-card:hover {
	transform: translateY(-5px);
}

.profile-img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #007bff;
}

.name {
	font-size: 18px;
	font-weight: bold;
	margin: 10px 0 5px;
	color: #333;
}

.stars {
	color: #ffc107;
	margin-bottom: 10px;
}

.review {
	font-size: 14px;
	color: #555;
	line-height: 1.5;
}
.search-div {
background-image: url(../bg-2.html);
background-size: cover;
background-position: center center;
padding: 20px;
border-radius: 10px;
text-align: center;
}
.search-div input {
width: 80%;
padding: 10px;
margin: 10px 0;
border: 1px solid #ccc;
border-radius: 5px;
max-width: 350px;
}
.search-div button {
padding: 10px 15px;
background: black;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
transition: 0.5s;
font-weight: 800;
}
.search-div button:hover {
background: #555;
}

.cta-section {
	position: relative;
	padding: 70px 5px;
	text-align: center;
	border-radius: 12px;
	overflow: hidden;
	margin: 30px 5px;
	border: 1px solid #00b558!important
}

.cta-section::before {
	content: "\f3ed";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	position: absolute;
	top: 50%;
	left: 18%;
	font-size: 200px;
	color: rgba(0, 181, 88, 0.1);
	transform: translate(-50%, -50%);
	z-index: 0;
}

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

.cta-heading {
	font-size: 38px;
	font-weight: bold;
	color: #000;
	margin-bottom: 10px;
}

.cta-text {
	font-size: 16px;
	color: #333;
	margin-bottom: 20px;
}

.cta-button {
	display: inline-block;
	padding: 12px 24px;
	background-color: #00b558;
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	border-radius: 6px;
	transition: 0.3s;
}

.cta-button:hover {
	background-color: #008f45;
}

.faq-container {
	margin: auto;
	background: #fff;
	padding: 20px;
	border-radius: 10px;
	background: #fafafa;
	border: 1px solid #eee;
}

.faq-item {
	margin-bottom: 20px;
	background: white;
	min-height: 130px;
	border: 0.5px solid lightgrey;
	border-bottom: 2px solid lightgrey;
}

.faq-flex {
	display: flex;
	gap: 10px;
}

.question {
	font-weight: bold;
	padding: 10px;
}

.answer {
	padding: 10px;
}




.saas-section {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 1100px;
	margin: 50px auto;
	padding: 40px;
	border-radius: 12px;
}

.saas-image {
	flex: 1;
	padding-right: 20px;
}

.saas-image img {
	width: 100%;
	border-radius: 14px;
	box-shadow: 5px 5px 0px #757575;
}

.saas-content {
	flex: 1;
	padding-left: 20px;
}

.saas-content h2 {
	font-size: 28px;
	color: #333;
	margin-bottom: 10px;
}

.saas-content p {
	font-size: 16px;
	color: #666;
	line-height: 1.6;
}

.feature-section {
	padding: 20px 0px;
}

.feature-section h4{
	font-size: 30px;
	font-weight: 700;
	text-align: left;
}

.feature-card {
	display: flex;
	align-items: center;
	margin: 30px auto;
	border-radius: 10px;
	overflow: hidden;
	transition: transform 0.5s;
	padding: 30px;

}

.feature-card:hover {
	transform: translateY(-5px);
}

.feature-card img {
	object-fit: cover;
}

.feature-card .text-section {
	padding: 10px;
}

.green-card {
	background-color: #00b558;
	color: white;
}

.white-card {
  background-color: #fafafa;
color: black;
border: 1px solid #eeeeee;
}

.white-card .text-section {
	order: 1;
}

.white-card img {
	order: 2;
}

.instructions-container {
	  border-radius: 2px;
	  margin: 50px auto;
	  text-align: left;
	  background: white;
	  border-radius: 20px;
		  }
  
		  .instructions-container h2,  .instructions-container > p {
			  text-align: center;
		  }		  
		  .steps {
			  display: flex;
			  flex-direction: row;
			  gap: 20px;
			  margin-top: 20px;
			  margin-left: auto; 
			  margin-right: auto;
			  flex-basis: 100%;
		  }
		  
		  .step-card {
			  background-color: #ffffff;
			  color: #000000;
			  padding: 15px;
			  border-radius: 10px;
			  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
			  margin: 15px auto;
			  flex-basis: 100%;
		  }
		  
		  .step-card h4 {
			  margin: 0 0 10px;
			  font-size: 1.1em;
			  text-align: left;
		  }
		  .faq-icon {
		  display: inline-block;
	  background-color: #00b558;
	  color: white;
	  border-radius: 20px;
	  text-align: center;
	  font-weight: bold;
	  height: 25px;
	  width: 30px;
	  font-size: 1em;
	  vertical-align: middle;
	  padding-top: 5px;
		  }

@media(max-width:1150px) {
	.container {
		display: block
	}

	.sidebar {
		width: -webkit-fill-available;
		max-width: 800px;
	}
}

@media(min-width:768px) {
	header {
		display: flex;
		justify-content: space-evenly;
		background-color: #fff;
		box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
		padding: 10px 20px;
		border-bottom: 1px solid #eaeaea;
	}

	.div-table {
		display: flex;
		flex-wrap: wrap;
		gap: 30px
	}

	.div-table table {
		width: 320px
	}

	.flag {
		display: flex
	}

	.green-flag,
	.red-flag {
		width: 50%
	}

	.desc-left {
		margin-top: -40px;
	}

	

}
@media(max-width:768px) {
	.f-container {
		display: block;
	}
	.f-container>div {
		max-width: none;
		margin: 15px 0px;
	}
	nav {
		background-color: #fff;
		box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
		padding: 10px 20px;
		border-bottom: 1px solid #eaeaea;
	}
	.menu {
		display: none
	}

	.menu-btn {
		display: block;
		background-color: #000;
		color: #fff;
		font-size: 28px;
		padding: 20px;
		border-radius: 3px;
		background-image: url(../png/3-lines.png);
		background-repeat: no-repeat;
		background-position: center center;
		background-size: 20px
	}

	.menu.collapsed {
		position: relative;
		display: block;
		background-color: #f9f9f9;
		right: 0;
		width: 100%;
		line-height: 2;
		font-size: 1em;
		border: 1px solid #e5e5e5;
		z-index: 99
	}

	.search-box input[type=text] {
		font-size: 20px;
		width: 55vw;
	}

	.search-box input[type=button] {
		display: inline-block;
		font-size: 20px;
		width: 90px
	}

	.intro-box>div {
		padding: 20px
	}

	#search-input {
		width: 150px
	}

	.search-container {
		padding: 2px 0
	}

	.search-container p,
	.search-container .form-div {
		display: grid
	}

	.recent-body {
		padding: 30px 5px;
	}

	.hero-slide {
		flex-wrap: wrap
	}

	.blog-grid {
		grid-template-columns: 1fr;
	}

	.hero-flex {
		display: block;
		text-align: center;
		padding-top: 40px;
	}
	.image-right {
		display: none;
	}

	.testimonials {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	}

	.faq-flex {
		display: block;
		min-height: none;
	}

	.saas-section {
		flex-direction: column-reverse;
		text-align: center;
		padding: 20px;
	}

	.saas-image {
		padding-right: 0;
		padding-bottom: 20px;
	}

	.saas-content {
		padding-left: 0;
	}

	.scam-list {
		grid-template-columns: 1fr;
	}
	.feature-card, .steps {
        display: block;
    }
}

@media (max-width: 600px) {

	.btn {
		font-size: 14px;
		padding: 10px 16px;
	}

	.image-placeholder {
		height: 150px;
	}

	.container {
		display: block;
	}

	.slide {
		min-width: 70%;
		padding: 20px 10px;
	}

	.slide p {
		font-size: 0.9em;
	}
}

@media(max-width:414px) {
	.search-box {
		padding: 70px 0px;
	}

	h1 {
		margin-top: 0;
		font-size: 30px
	}

	h2 {
		font-size: 28px
	}

	h3 {
		font-size: 24px
	}

	h4 {
		text-align: center;
		font-size: 21px
	}

	.hero-one .macbook {
		padding: 0
	}
}