@import url(../fonts/fonts.css);

:root {
	--blackcolor: #000;
	--primarycolor: #ff6d01;
	--whitecolor: #fff;
	--bodyfont: 'Gilroy', sans-serif
}

/* Common CSS 
============== */

html,
body {
	height: 100%;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


body {
	font-family: var(--bodyfont);
	font-size: 18px;
	line-height: 1.4;
	color: var(--blackcolor);
	font-weight: 400;
	position: relative;
	z-index: 1;
	background: #fff;
	overflow-x: hidden;
}


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

a {
	text-decoration: none;
	cursor: pointer;
	color: inherit;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

a:hover {
	color: inherit;
}

.btn:hover {
	background-color: var(--primarycolor) !important;
	border-color: var(--primarycolor) !important;
	color: #fff !important;
}

p {
	margin: 0;
}

p.highlight {
	color: #898a9c;
	font-size: 17px;
	line-height: 27px;
}


button,
input,
textarea,
a:hover,
a:focus,
a:visited {
	text-decoration: none;
	outline: none;
	outline-width: 0 !important;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
	color: transparent;
}

img {
	display: inline-block;
	max-width: 100%;
}

i,
span,
a {
	display: inline-block;
}

ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
}

.form-group {
	margin-bottom: 25px;
}

.form-control {
	background-color: #f5f5f5;
	border-color: #f5f5f5;
	font-size: 20px;
	padding: 15px 30px;
	height: 60px;
	font-family: var(--bodyfont);
	-webkit-transition: .3s;
	transition: .3s;
}

textarea.form-control {
	min-height: 190px;
	resize: none;
}

input::placeholder,
textarea::placeholder {
	font-size: 15px;
	font-weight: 500;
	color: #fff;
}

input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
	color: transparent;
}


/* Pre-Loader CSS 
============== */
#loader {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--blackcolor);
	z-index: 999999;
}

.spinner {
	margin: 100px auto 0;
	width: 70px;
	text-align: center;
}

.spinner>div {
	width: 18px;
	height: 18px;
	background-color: #fff;

	border-radius: 100%;
	display: inline-block;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}

.spinner .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {

	0%,
	80%,
	100% {
		-webkit-transform: scale(0)
	}

	40% {
		-webkit-transform: scale(1.0)
	}
}

@keyframes sk-bouncedelay {

	0%,
	80%,
	100% {
		-webkit-transform: scale(0);
		transform: scale(0);
	}

	40% {
		-webkit-transform: scale(1.0);
		transform: scale(1.0);
	}
}

/* Scroll Top 
============== */
.go-top {
	background-color: var(--blackcolor);
	color: #FFF;
	width: 40px;
	height: 40px;
	bottom: 20px;
	right: 20px;
	font-size: 18px;
	line-height: 30px;
	text-align: center;
	text-decoration: none;
	display: none;
	position: fixed;
	z-index: 1;
	border-radius: 50%;
	box-shadow: none !important;
}

/* Sticky CSS 
============== */

.header-area .is-sticky .sticky-area, .header-area.fixed-header {
	background: #fff;
	box-shadow: 0 3px 16px -2px #d0cece;
	z-index: 999 !important;
	-webkit-animation: slideInDown .6s forwards;
	animation: slideInDown .6s forwards;
	margin-top: 0;
	position: fixed;
	padding: 10px 0;
}

.header-area.fixed-header .logo img {
	max-width: 80px;
}

.header-area.absolute-header .is-sticky .sticky-area {
	background: #10102D;
	-webkit-box-shadow: none;
	box-shadow: none;
	margin-top: 0;
}

@keyframes slideInDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-100%);
		transform: translateY(-100%);
	}

	100% {
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

.slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown;
}

/* Header Top Area
============== */

.header-top {
	background: #1F2437;
	font-size: 14px;
	font-weight: 400;
	color: #fff;
	padding: 15px 0;
}

.contact-info i {
	color: #70C150;
	font-size: 20px;
	margin-right: 2px;
}

/* Header Area 
============== */

.header-area {

	/* height: 90px; */
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	padding: 12px 0;
}

.header-area .logo img {
	max-width: 100px;
}


.header-area li.nav-item .nav-link {
	color: #020E28;
}


.header-area .main-menu .navbar-nav .nav-link.active {
	color: var(--primarycolor);
}

.header-area .main-menu li.nav-item:hover>a {
	color: #777;
}

.header-area .header-btn.main-btn {
	padding: 14px 30px;
}

.header-area.absolute-header {
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 99;
	padding: 20px 0;
	-webkit-transition: .3s;
	transition: .3s;
}

.header-area .btn-primary {
	text-transform: unset;
	background-color: var(--whitecolor);
	border-color: var(--primarycolor);
	box-shadow: none;
	padding: 10px 26px;
	color: #000;
	min-width: auto;
}

.responsive-logo {
	display: none;
}

#header-3 .logo {
	margin-top: 0;
}


/* Header Aside */

#header-aside .aside-content {
	float: right;
	color: #585252;
	margin-top: 10px;
}

#header-aside .aside-content .info-wrap {
	display: table;
	overflow: hidden;
	width: 100%;
}

#header-aside .aside-content .info-i,
#header-aside .aside-content .info-c {
	display: table-cell;
	text-align: left;
	vertical-align: middle;
}

#header-aside .aside-content .info-c span {
	opacity: .5;
}

#header-aside .aside-content .info-i {
	width: 45px;
}

#header-aside .aside-content .info-i span {
	position: relative;
	z-index: 1;
	font-size: 30px;
	color: #70C150;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
	display: inline-block;
	margin-right: 10px;
}

#header-aside .aside-content .info-i span i::before {
	font-size: 36px;
}

#header-aside .aside-content .info-i span:after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	border: 1px dashed transparent;
	background-color: transparent;
}

#header-aside .aside-content .inner>div {
	float: left;
	display: block;
	width: 170px;
	position: relative;
	color: #777;
	font-size: 14px;
	font-weight: 500;
	line-height: 20px;
	margin-left: 25px;
	border-right: 2px solid #eee;
}

#header-aside .aside-content .inner>div:last-child {
	border: 0;
}

/* Main Menu 
============== */

.main-menu .navbar {
	padding: 0;
}

.main-menu li.nav-item {
	position: relative;
	margin-right: 40px;
}


.main-menu li.nav-item:last-child {
	margin-right: 0;
}

.main-menu .navbar-nav .nav-link {
	text-transform: capitalize;
	font-size: 18px;
	color: #d7d7d7;
	display: block;
	/* padding: 22px 0; */
}


.main-menu .navbar-nav .nav-link.active {
	color: #fff;
}

.main-menu li.nav-item:hover>a {
	color: #fff;
}

/*Dropdown Menu */

.sub-menu {
	position: absolute;
	left: 0;
	top: 90px;
	width: 180px;
	background-color: #fff;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 600ms ease;
	transition: all 600ms ease;
	z-index: 99;
	-webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
	box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
}


.sub-menu::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 4px;
	top: 0;
	left: 0;
	background: #70C150;
	visibility: hidden;
	opacity: 0;
}

.main-menu li:hover .sub-menu {
	opacity: 1;
	visibility: visible;
	top: 90px;
}


.main-menu li:hover .sub-menu::after {
	opacity: 1;
	visibility: visible;
}

.main-menu ul.sub-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.main-menu .sub-menu li {
	display: block;
	border-bottom: 1px solid #eee;
}

.main-menu .sub-menu li a {
	font-size: 15px;
	font-weight: 400;
	display: block;
	padding: 12px;
	color: #191919;
	-webkit-transition: .3s;
	transition: .3s;
}

.main-menu .sub-menu li:hover>a {
	color: #70C150;
}

.dropdown-toggle::after {
	display: none !important;
}

.navigation .navbar .navbar-nav .nav-item .sub-nav-toggler {
	display: none;
}


/* Slider CSS 
==================*/
.homepage-slides {
	background: url(../img/banner-bg.jpg)no-repeat top center;
	min-height: 100vh;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	position: relative;
	padding: 100px 0;
	background-size: 100%;
}

.bannerContent img {
	max-height:40px;
}

.bannerContent {
	padding-right: 40px;
}

.bannerContent h1 {
	font-size: 56px;
	font-weight: 900;
	/* margin: 10px 0; */
	margin: 30px 0 40px;
	line-height: 1;
}

.bannerContent p {
	padding: 10px 0 25px;
	display: none;
}

.bannerContent .btn {
	background-color: var(--blackcolor);
	border-color: var(--blackcolor);
	border-radius: 30px;
	padding: 14px 35px;
	font-size: 18px;
	color: #fff;
	font-weight: bold;
}


.bannershape1 {
	position: absolute;
	left: 4%;
	bottom: 2%;
}

.bannershape2 {
	position: absolute;
	right: 8%;
	bottom: 5%;
}

.bannershape3 {
	position: absolute;
	left: 0;
	bottom: 15%;
}


/* Footer Area
======================== */

.footer-area {
	background: var(--blackcolor);
	color: #fff;
}

.footerlink li {
	margin-bottom: 15px;
}

.footerlink li a {
	display: block;
	color: #fefefe;
}

.footerlink li a:hover {
	color: var(--primarycolor);
}

.footer-up {
	padding: 80px 0;
}


.ftlogo img {
	max-width: 106px;
}

.ftsocial {
	margin-top: 25px;
	margin-bottom: 15px;
}

.ftsocial a {
	display: inline-block;
	text-align: center;
	margin-right: 5px;
}

.ftsocial a:hover i {
	background-color: var(--primarycolor);
}

.ftsocial i {
	-webkit-transition: 0.3s;
	transition: 0.3s;
	border-radius: 50%;
	height: 30px;
	width: 30px;
	line-height: 30px;
	font-size: 16px;
	display: block;
}

.ftsocial i[class~="fa-facebook-f"] {
	background-color: #3b5998;
}

.ftsocial i[class~="fa-twitter"] {
	background-color: #00acee;
}

.ftsocial i[class~="fa-instagram"] {
	background-color: #dd2a7b;
}

.ftsocial i[class~="fa-linkedin-in"] {
	background-color: #016793;
}

.ftsocial i[class~="fa-youtube"] {
	background-color: #c4302b;
}

.footer-bottom {
	padding: 20px 0;
	background: var(--whitecolor);
}

.footer-bottom p {
	margin: 0;
	font-weight: 500;
}

.poweredby {
	text-align: right;
}

.poweredby img {
	max-height: 30px;
}

.grtext {
	background: #ffc7d0;
	background: -webkit-linear-gradient(to right, #ffc7d0, #ffffff);
	background: linear-gradient(to bottom, #ffc7d0, #ffffff);
}

.bluegr {
	background: #dbe7fb;
	background: -webkit-linear-gradient(to right, #dbe7fb, #ffffff);
	background: linear-gradient(to bottom, #dbe7fb, #ffffff);
}

.yellowgr {
	background: #ffc053;
	background: -webkit-linear-gradient(to right, #ffc053, #ffffff);
	background: linear-gradient(to bottom, #ffc053, #ffffff);
}

.pinkgr {
	background: #fab7e4;
	background: -webkit-linear-gradient(to right, #fab7e4, #ffffff);
	background: linear-gradient(to bottom, #fab7e4, #ffffff);
}

.titlelg {
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-transform: uppercase;
	font-weight: 900;
	font-size: 106px;
	line-height: 100%;
	margin-bottom: -38px;
}

.sectionTitle h2 {
	line-height: 1;
	font-size: 48px;
	font-weight: 900;
}

.sectionTitle p {
	font-weight: 500;
	margin: 25px 0;
}

.sectionTitle h4 {
	font-size: 24px;
	color: #0008;
	font-weight: 400;
}

.secSpace {
	padding: 90px 0;
}

.serviceSec {
	background-color: #f7f8fa;
}

.serviceSec .sectionTitle h2 {
	font-size: 42px;
	margin-top: 80px;
}

.whatimg img {
	margin-left: -24%;
    z-index: -1;
	margin-bottom: -580px;
	max-width: 145%;
}

.serviceCol>* {
	margin: 15px 0;
}

.serviceBox {
	border-radius: 30px;
	box-shadow: 0 0 24px rgba(0, 0, 0, 0.02);
	background-color: var(--whitecolor);
	padding: 35px;
	height: 100%;
	transition: all 0.3s ease-in-out;
}

.serviceBox:hover {
	box-shadow: 0 0 24px rgba(0, 0, 0, 0.2);
}

.serviceBox h5 {
	font-weight: bold;
	font-size: 24px;
	padding: 15px 0 10px;
}

.serviceBox p {
	color: #0009;
}

.serImg {
	height: 100px;
	flex-wrap: wrap;
	align-items: flex-end;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.serImg img {
	max-height: 100%;
}



.contactBox {
	box-shadow: 0 0 27.5px rgba(0, 0, 0, 0.09);
	border-radius: 25px;
	padding: 55px;
	position: relative;
	background-color: #fff;
}

.contactBox .sectionTitle {
	margin-bottom: 35px;
}

.contactBox .sectionTitle h2 {
	font-weight: bold;
	font-size: 50px;
	margin-bottom: 10px;
}

.formvector {
	position: absolute;
	right: 30px;
	top: -205px;
}

.dotshape {
	position: absolute;
	left: -100px;
	z-index: -1;
	top: -100px;
}

.dotshape1 {
	right: -70px;
	z-index: -1;
	position: absolute;
	top: 100px;
}

.platformSec .sectionTitle h2 {
	max-width: 1050px;
}

.platformTab .nav-tabs {
	background-color: #eee;
	border-radius: 40px;
	border: 0;
	padding: 8px;
	margin: 30px 0;
	pointer-events: none;
}

.platformTab .nav-tabs .nav-link {
	min-width: 209px;
	border: 0;
	border-radius: 30px;
	color: inherit;
	font-size: 20px;
	line-height: 100%;
	padding: 18px 38px;
	text-transform: capitalize;
}

.platformTab .nav-tabs .nav-link.active {
	/* font-weight: bold; */
	background-color: transparent;
}

.platformContent {
	padding: 40px;
}

.platformContent h2 {
	font-size: 42px;
	font-weight: 900;
	margin-bottom: 25px;
}

.platformContent .btn {
	margin-top: 25px;
	background-color: var(--primarycolor);
	border-color: var(--primarycolor);
}

.platformContent .btn:hover, .priceBox .btn:hover {
	background-color: var(--blackcolor) !important;
	border-color: var(--blackcolor) !important;
}

.trustedSec {
	background-color: #e3f0ff;
	padding: 90px 0 0;
	margin-bottom: 220px;
	position: relative;
}

.trustedSec::before {
	position: absolute;
	left: 0;
	content: '';
	bottom: -190px;
	background-color: #e3f0ff;
	height: 100%;
	max-height: 450px;
	border-radius: 50%;
	width: 100%;
	z-index: -1;
}

.trustReview {
	margin-left: 30px;

}

.brandslider {
	position: relative;
}

.brandslider::before {
	position: absolute;
	content: '';
	top: 0;
	width: 150px;
	height: calc(100% - 30px);
	bottom: 0;
	margin: auto;
	left: 0;
	z-index: 1;
	background: #e3f0ff;
	background: -webkit-linear-gradient(right, #e3f0ff00, #e3f0ff);
	background: -moz-linear-gradient(right, #e3f0ff00, #e3f0ff);
	background: linear-gradient(to left, #e3f0ff00, #e3f0ff);
}

.brandslider::after {
	position: absolute;
	content: '';
	top: 0;
	width: 150px;
	height: calc(100% - 30px);
	bottom: 0;
	margin: auto;
	right: 0;
	z-index: 1;
	background: #e3f0ff;
	background: -webkit-linear-gradient(left, #e3f0ff00, #e3f0ff);
	background: -moz-linear-gradient(left, #e3f0ff00, #e3f0ff);
	background: linear-gradient(to right, #e3f0ff00, #e3f0ff);
}

.brandslider .slick-list {
	padding: 0 150px !important;
}

.brandlogo {
	height: 200px;
	background: #fff;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	border-radius: 50px 50px 0 50px;
	padding: 25px;
	margin: 15px;
	box-shadow: 0 0 20px rgb(167 191 219 / 50%);
	width: calc(100%/2 - 30px);
}

.brandflex .brandlogo:nth-child(2) {
	border-radius: 50px 50px 50px 0;
}

.brandlogo img {
	max-width: 100%;
	width: auto;
	filter: grayscale(1);
	height: auto;
	max-height: 100%;
}

.slick-center .brandlogo img {
	filter: grayscale(0);
}

.brandflex {
	display: flex;
	flex-wrap: wrap;
}

/* .trustReview li {
	padding: 0 10px;
} */

.trustReview ul {
	justify-content: center;
	display: flex;
	flex-wrap: wrap;
}

.trustReview p {
	font-weight: 500;
	font-size: 20px;
	margin: 30px 0;
}

.userBox h5 {
	font-size: 24px;
	font-weight: 800;
}

.userBox span {
	display: block;
}

.reviewBox h3 {
	font-weight: 900;
	font-size: 42px;
}

.reviewBox p {
	font-weight: bold;
}

.btn-primary {
	border-radius: 30px;
	/* box-shadow: 0 0 27.5px rgba(227, 55, 48, 0.29); */
	background-color: var(--blackcolor);
	border-color: var(--blackcolor);
	font-size: 18px;
	padding: 15px 34px;
	font-weight: bold;
	text-transform: capitalize;
	min-width: 200px;
}

.landscapeSec, .pricingSec {
	background: url(../img/landscape-bg.png)no-repeat center;
	background-size: 100%;
}

.landscapeBox {
	max-width: 1160px;
	margin: 0 auto;
}

.landscapeDevice {
	margin: 40px 0;
}

.streamSec {
	position: relative;
	padding-top: 150px;
}

.streamSec:before {
	position: absolute;
	content: '';
	top: 0;
	width: 100%;
	height: 200px;
	left: 0;
	background: #FFFFFF;
	background: -webkit-linear-gradient(bottom, #FFFFFF, #e3f0ff);
	background: -moz-linear-gradient(bottom, #FFFFFF, #e3f0ff);
	background: linear-gradient(to top, #FFFFFF, #e3f0ff);
	z-index: -1;
}

.streamSec .sectionTitle h2 {
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 50px;
}

.marketSec .sectionTitle {
	margin-bottom: 30px;
}

.maketList li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
	padding: 20px 0;
}

.mrImg {
	width: 70px;
}

.mrText {
	width: calc(100% - 70px);
	padding-left: 20px;
}

.mrText h4 {
	font-size: 24px;
	font-weight: 800;
}

.audienceSec .sectionTitle {
	padding-bottom: 40px;
}

.audienceSec .sectionTitle p {
	max-width: 600px;
	margin: 15px auto;
}

.accordion-button {
	font-size: 24px;
	font-weight: 700;
	border: 0;
	color: var(--blackcolor) !important;
	background: transparent !important;
	box-shadow: none !important;
	padding: 20px 30px;pointer-events: none;text-align: center;
	justify-content: center;
}

.accordion-button:after {
	display: none;
}

.accordion-item {
	border: 0;
	background: transparent;
}
.accordion-item .accordion-collapse{display: none !important;}
.accordion {
	background: #FFFFFF;
	background: -webkit-linear-gradient(bottom, #FFFFFF, #e3efff);
	background: -moz-linear-gradient(bottom, #FFFFFF, #e3f0ff);
	background: linear-gradient(to top, #FFFFFF, #e3efff);
	margin-left: 50px;
	border-radius: 10px;
}

.accordion-body {
	font-weight: 500;
	color: #0007;
	padding: 10px 30px 20px 30px;
}

.priceMain {
	max-width: 940px;
	margin: 40px auto 0;
	padding-bottom: 50px;
	position: relative;
}

.pricevector {
	position: absolute;
	right: -60px;
	top: 5px;
	z-index: 1;
}

.priceBox {
	border-radius: 10px;
	background-color: #ffffff;
	border: 1px solid #c9c9c9;
	padding: 45px;
	height: 100%;
	position: relative;
	margin: 0 5px;
}

.priceTag {
	font-weight: 600;
	background-color: #efefef;
	border-radius: 20px;
	padding: 5px 20px;
	font-size: 20px;
	display: inline-block;
	text-transform: uppercase;
	min-width: 206px;
}

.priceLabel {
	font-size: 62px;
	font-weight: 900;
	line-height: 100%;
	padding: 25px 0;
	min-height: 112px;
	position: relative;
}

.priceLabel span {
	position: absolute;
	width: 100%;
	height: 62px;
	text-align: center;
	left: 0;
}

.priceLabel sub {
	font-weight: 400;
	font-size: 24px;
	vertical-align: middle;
}

.priceBox ul {
	margin-bottom: 30px;
}

.priceBox li {
	padding-left: 32px;
	font-weight: 600;
	position: relative;
	margin: 18px 0;
	font-size: 20px;
}

.priceBox li:before {
	position: absolute;
	content: '';
	background: url(../img/check.png) no-repeat;
	background-size: 20px;
	width: 20px;
	height: 16px;
	top: 6px;
	left: 0;
}

.priceBox .btn {
	position: absolute;
	bottom: -24px;
	border-radius: 30px;
	font-size: 18px;
	padding: 15px 34px;
	font-weight: bold;
	text-transform: capitalize;
	width: calc(100% - 100px);
	left: 0;
	right: 0;
	margin: auto;
}

.btnpricing {
	background-color: #fff;
	border-color: var(--primarycolor);
	color: var(--primarycolor);
}

.priceBox.active .btnpricing {
	background-color: var(--primarycolor);
	border-color: var(--primarycolor);
	color: #fff;
}

.priceBox.active {
	border-color: var(--primarycolor);
	box-shadow: 0 0 0 2px var(--primarycolor);
}

.priceBox.active .priceTag {
	background-color: var(--primarycolor);
	color: #fff;
}

.priceplan h3 {
	font-size: 24px;
	font-weight: 800;
}

.priceplan p {
	font-size: 15px;
	color: #0005;
}

.priceplan .form-check-input:checked {
	background-color: #000;
	border-color: #000;
}

.priceplan .form-switch {
	padding-left: 0;
	margin: 8px 0;
}

.priceplan .form-switch label {
	font-weight: 500;
	font-size: 16px;
}

.priceplan .form-switch .form-check-input {
	float: none;
	margin-left: 5px;
	margin-right: 5px;
}

.priceplan {
	margin-bottom: 20px;
}

.floating {
	animation-name: floating;
	animation-duration: 3s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
	margin-left: 30px;
	margin-top: 5px;
}

@keyframes floating {
	from {
		transform: translate(0, 0px);
	}

	65% {
		transform: translate(0, 15px);
	}

	to {
		transform: translate(0, -0px);
	}
}

.ftinfo p {
	font-size: 16px;
	margin: 10px 0;
}

.ftinfo h5 {
	margin-bottom: 10px;
	font-size: 18px;
	font-weight: 700;
}

.topbanner {
	padding: 150px 0 50px;
	background-color: #e3efff;
	background-size: cover;
}

.topbanner .innertitle {
	font-weight: 900;
	font-size: 3rem;
	margin-bottom: 25px;
}

.topbanner .breadcrumb-item a {}

.topbanner .breadcrumb-item a:hover {
	color: var(--primarycolor);
}

.topbanner .breadcrumb {
	margin-bottom: 0;
}

.topbanner .breadcrumb .breadcrumb-item.active {
	color: var(--primarycolor);
}

.topbanner .breadcrumb-item+.breadcrumb-item {
	padding-left: 15px;
}

.topbanner .breadcrumb-item+.breadcrumb-item:before {
	content: "";
	padding-right: 15px;
	font-family: "Font Awesome 5 Free";
	font-weight: 700;
	color: var(--primarycolor);
}

.innerpg {
	padding: 60px 0;
}

.innerpg {
	padding: 60px 0;
}

.bt_bb_text p {
	margin-bottom: 1rem;
}

.bt_bb_text ul {
	margin: 0 0 1em 1em;
	padding: 0;
	list-style: disc;
}

.bt_bb_text ul li {
	padding: 7px 0;
	margin: 0 0 0 0.5em;
}

.priceCta {
	padding: 80px 0 0;
}

.priceCta h4 {
	font-weight: 600;
	font-size: 28px;
	margin: 25px 0;
}