*,
*::after,
*::before {
	margin: 0px;
	padding: 0px;
	-webkit-box-sizing: inherit;
	box-sizing: inherit;
}
@font-face {
	font-family: "Fulgate";
	src:
		url("../fonts/Fulgate-Regular.woff2") format("woff2"),
		url("../fonts/Fulgate-Regular.woff") format("woff");
	font-weight: 400;
	font-display: swap;
}
@font-face {
	font-family: "Fulgate";
	src:
		url("../fonts/Fulgate-Medium.woff2") format("woff2"),
		url("../fonts/Fulgate-Medium.woff") format("woff");
	font-weight: 500;
	font-display: swap;
}
@font-face {
	font-family: "Fulgate";
	src:
		url("../fonts/Fulgate-SemiBold.woff2") format("woff2"),
		url("../fonts/Fulgate-SemiBold.woff") format("woff");
	font-weight: 600;
	font-display: swap;
}
@font-face {
	font-family: "Fulgate";
	src:
		url("../fonts/Fulgate-Bold.woff2") format("woff2"),
		url("../fonts/Fulgate-Bold.woff") format("woff");
	font-weight: 700;
	font-display: swap;
}
@font-face {
	font-family: "Boston";
	src:
		url("../fonts/Boston-Regular.woff2") format("woff2"),
		url("../fonts/Boston-Regular.woff") format("woff");
	font-weight: 400;
	font-display: swap;
}
@font-face {
	font-family: "Boston";
	src:
		url("../fonts/Boston-SemiBold.woff2") format("woff2"),
		url("../fonts/Boston-SemiBold.woff") format("woff");
	font-weight: 600;
	font-display: swap;
}
@font-face {
	font-family: "Boston";
	src:
		url("../fonts/Boston-Bold.woff2") format("woff2"),
		url("../fonts/Boston-Bold.woff") format("woff");
	font-style: 700;
	font-display: swap;
}
body {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: "Boston";
	background: #fff;
	font-weight: 400;
	position: relative;
	overflow-x: hidden;
}
body.blur-body {
	position: relative;
	overflow: hidden;
}
body.blur-body::after {
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(9, 30, 33, 0.8);
	-webkit-backdrop-filter: blur(11px);
	backdrop-filter: blur(11px);
	position: absolute;
	top: 0;
	left: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Fulgate";
	font-weight: 400;
	color: #091e21;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
img,
ins,
kbd,
q,
s,
samp,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	list-style: none;
	vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}
button {
	background: transparent;
	border: 0;
	outline: none;
	cursor: pointer;
}
img {
	max-width: 100%;
}
a {
	text-decoration: none;
	outline: none;
	color: #091e21;
}
a:hover {
	text-decoration: none !important;
	cursor: pointer;
}
.image-wrapper {
	line-height: 0;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
	background-color: transparent !important;
	-webkit-transition: background-color 5000s ease-in-out 0s !important;
	transition: background-color 5000s ease-in-out 0s !important;
	-webkit-text-fill-color: #b98a4b !important;
}
.primary_btn {
	display: block;
	width: 100%;
	max-width: -webkit-max-content;
	max-width: -moz-max-content;
	max-width: max-content;
	padding: 15px 30px;
	background: #144e5a;
	border-radius: 70px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	margin: 3px;
}
@media (max-width: 575px) {
	.primary_btn {
		padding: 15px 30px;
	}
}
.primary_btn::before {
	content: "";
	width: calc(100% + 6px);
	height: calc(100% + 6px);
	border: 1px solid #144e5a;
	border-radius: 70px;
	position: absolute;
	top: -3px;
	left: -3px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.primary_btn span {
	color: #fff;
	text-align: center;
	font-family: "Boston";
	font-size: 18px;
	font-weight: 600;
	line-height: 1.15;
	text-transform: capitalize;
}
@media (max-width: 991px) {
	.primary_btn span {
		font-size: 16px;
	}
}
@media (max-width: 575px) {
	.primary_btn span {
		font-size: 14px;
	}
}
.primary_btn img {
	margin-left: 15px;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.primary_btn.secondary_btn {
	max-width: 100%;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.primary_btn.secondary_btn::before {
	border-color: #fff;
}
.primary_btn.secondary_btn span {
	font-size: 20px;
}
@media (max-width: 480px) {
	.primary_btn.secondary_btn span {
		font-size: 16px;
	}
}
.primary_btn.secondary_btn img {
	margin-left: 20px;
}
.primary_btn:hover {
	background: #b98a4b !important;
}
.primary_btn:hover::before {
	border-color: #b98a4b !important;
}
.primary_btn:hover img {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
p {
	color: rgba(9, 30, 33, 0.8);
	font-family: "Boston";
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
}
@media (max-width: 480px) {
	p {
		font-size: 14px;
	}
}
.title {
	color: #091e21;
	font-family: "Fulgate";
	font-size: 60px;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.6px;
	margin-bottom: 20px;
}
@media (max-width: 1399px) {
	.title {
		font-size: 50px;
	}
}
@media (max-width: 1199px) {
	.title {
		font-size: 40px;
	}
}
@media (max-width: 767px) {
	.title {
		font-size: 35px;
	}
}
@media (max-width: 575px) {
	.title {
		font-size: 30px;
	}
}
@media (max-width: 480px) {
	.title {
		font-size: 25px;
		margin-bottom: 10px;
	}
}
.title.mb-50 {
	margin-bottom: 50px;
}
@media (max-width: 991px) {
	.title.mb-50 {
		margin-bottom: 30px;
	}
}
@media (max-width: 480px) {
	.title.mb-50 {
		margin-bottom: 20px;
	}
}
.title.mb-90 {
	margin-bottom: 90px;
}
@media (max-width: 991px) {
	.title.mb-90 {
		margin-bottom: 50px;
	}
}
@media (max-width: 575px) {
	.title.mb-90 {
		margin-bottom: 30px;
	}
}
@media (max-width: 480px) {
	.title.mb-90 {
		margin-bottom: 10px;
	}
}
h2.title {
	font-weight: 600;
}
.section-gap {
	padding: 60px 0;
}
@media (max-width: 1199px) {
	.section-gap {
		padding: 50px 0;
	}
}
@media (max-width: 767px) {
	.section-gap {
		padding: 40px 0;
	}
}
@media (max-width: 480px) {
	.section-gap {
		padding: 30px 0;
	}
}
.section-gap-top {
	margin-top: 60px;
}
@media (max-width: 1199px) {
	.section-gap-top {
		margin-top: 50px;
	}
}
@media (max-width: 767px) {
	.section-gap-top {
		margin-top: 40px;
	}
}
@media (max-width: 480px) {
	.section-gap-top {
		margin-top: 30px;
	}
}
.section-gap-bottom {
	margin-bottom: 60px;
}
@media (max-width: 1199px) {
	.section-gap-bottom {
		margin-bottom: 50px;
	}
}
@media (max-width: 767px) {
	.section-gap-bottom {
		margin-bottom: 40px;
	}
}
@media (max-width: 480px) {
	.section-gap-bottom {
		margin-bottom: 30px;
	}
}
::-webkit-scrollbar,
::-webkit-scrollbar-width {
	width: 5px;
}
::-webkit-scrollbar-thumb,
::-webkit-scrollbar-color {
	background: #f5e9db;
}
#pricing,
#about,
#services {
	scroll-margin-top: 100px;
}
@media (max-width: 1199px) {
	#pricing,
	#about,
	#services {
		scroll-margin-top: 80px;
	}
}
@media (max-width: 575px) {
	#pricing,
	#about,
	#services {
		scroll-margin-top: 60px;
	}
}
.modal {
	background: rgba(9, 30, 33, 0.8);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}
.modal .modal-dialog {
	max-width: 600px;
}
@media (max-width: 767px) {
	.modal .modal-dialog {
		max-width: 500px;
	}
}
@media (max-width: 575px) {
	.modal .modal-dialog {
		max-width: 100%;
	}
}
.modal .modal-dialog .modal-content {
	background: transparent;
	border: 1px solid #fff;
	border-radius: 50px;
}
@media (max-width: 1199px) {
	.modal .modal-dialog .modal-content {
		border-radius: 40px;
	}
}
@media (max-width: 767px) {
	.modal .modal-dialog .modal-content {
		border-radius: 30px;
	}
}
@media (max-width: 480px) {
	.modal .modal-dialog .modal-content {
		border-radius: 20px;
	}
}
.modal .modal-dialog .modal-content .modal-body {
	padding: 100px 90px;
	position: relative;
}
@media (max-width: 1199px) {
	.modal .modal-dialog .modal-content .modal-body {
		padding: 100px 50px;
	}
}
@media (max-width: 991px) {
	.modal .modal-dialog .modal-content .modal-body {
		padding: 70px 50px;
	}
}
@media (max-width: 767px) {
	.modal .modal-dialog .modal-content .modal-body {
		padding: 50px;
	}
}
@media (max-width: 480px) {
	.modal .modal-dialog .modal-content .modal-body {
		padding: 30px 20px;
	}
}
.modal .modal-dialog .modal-content .modal-body .modal-close {
	cursor: pointer;
	width: 30px;
	height: 30px;
	border-radius: 50px;
	background: rgba(255, 255, 255, 0.2);
	-webkit-backdrop-filter: blur(47px);
	backdrop-filter: blur(47px);
	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: absolute;
	top: 30px;
	right: 30px;
}
@media (max-width: 480px) {
	.modal .modal-dialog .modal-content .modal-body .modal-close {
		top: 10px;
		right: 10px;
	}
}
.modal .modal-dialog .modal-content .modal-body .title {
	color: #fff;
	font-weight: 600;
}
@media (max-width: 480px) {
	.modal .modal-dialog .modal-content .modal-body .title {
		font-size: 22px;
	}
}
.modal .modal-dialog .modal-content .modal-body .heading {
	margin-bottom: 50px;
}
@media (max-width: 575px) {
	.modal .modal-dialog .modal-content .modal-body .heading {
		margin-bottom: 20px;
	}
}
.modal .modal-dialog .modal-content .modal-body .heading .title {
	margin: 0;
}
.modal .modal-dialog .modal-content .modal-body .content {
	max-width: 460px;
	margin: auto;
}
.modal .modal-dialog .modal-content .modal-body p {
	text-align: center;
	color: rgba(255, 255, 255, 0.8);
	font-weight: 600;
}
.modal .modal-dialog .modal-content .modal-body p.agree {
	margin: 30px auto;
}
@media (max-width: 480px) {
	.modal .modal-dialog .modal-content .modal-body p.agree {
		margin: 10px auto 20px;
	}
}
.modal .modal-dialog .modal-content .modal-body p a {
	color: #b98a4b;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	display: inline-block;
}
.modal .modal-dialog .modal-content .modal-body p a:hover {
	opacity: 0.6;
}
.modal .modal-dialog .modal-content .modal-body p a::first-letter {
	text-transform: capitalize;
}
.modal .modal-dialog .modal-content .modal-body .primary_btn {
	margin: auto;
}
.modal .modal-dialog .modal-content .modal-body form .form-group .form-control {
	border-color: #fff;
	color: #fff;
}
.modal .modal-dialog .modal-content .modal-body form .form-group .form-control::-webkit-input-placeholder {
	color: #fff;
}
.modal .modal-dialog .modal-content .modal-body form .form-group .form-control:-ms-input-placeholder {
	color: #fff;
}
.modal .modal-dialog .modal-content .modal-body form .form-group .form-control::-ms-input-placeholder {
	color: #fff;
}
.modal .modal-dialog .modal-content .modal-body form .form-group .form-control::placeholder {
	color: #fff;
}
.modal .modal-dialog .modal-content .modal-body form .form-group .form-control:hover,
.modal .modal-dialog .modal-content .modal-body form .form-group .form-control:focus {
	border-color: #b98a4b;
	color: #b98a4b;
}
.modal .modal-dialog .modal-content .modal-body form .form-group .form-control:hover::-webkit-input-placeholder,
.modal .modal-dialog .modal-content .modal-body form .form-group .form-control:focus::-webkit-input-placeholder {
	color: #b98a4b;
}
.modal .modal-dialog .modal-content .modal-body form .form-group .form-control:hover:-ms-input-placeholder,
.modal .modal-dialog .modal-content .modal-body form .form-group .form-control:focus:-ms-input-placeholder {
	color: #b98a4b;
}
.modal .modal-dialog .modal-content .modal-body form .form-group .form-control:hover::-ms-input-placeholder,
.modal .modal-dialog .modal-content .modal-body form .form-group .form-control:focus::-ms-input-placeholder {
	color: #b98a4b;
}
.modal .modal-dialog .modal-content .modal-body form .form-group .form-control:hover::placeholder,
.modal .modal-dialog .modal-content .modal-body form .form-group .form-control:focus::placeholder {
	color: #b98a4b;
}
.modal.welcome-modal .modal-dialog {
	max-width: 850px;
}
@media (max-width: 1199px) {
	.modal.welcome-modal .modal-dialog {
		max-width: 700px;
	}
}
@media (max-width: 767px) {
	.modal.welcome-modal .modal-dialog {
		max-width: 500px;
	}
}
@media (max-width: 575px) {
	.modal.welcome-modal .modal-dialog {
		max-width: 100%;
	}
}
.modal.forgot-modal .modal-dialog {
	max-width: 770px;
}
@media (max-width: 991px) {
	.modal.forgot-modal .modal-dialog {
		max-width: 700px;
	}
}
@media (max-width: 767px) {
	.modal.forgot-modal .modal-dialog {
		max-width: 500px;
	}
}
@media (max-width: 575px) {
	.modal.forgot-modal .modal-dialog {
		max-width: 100%;
	}
}
.modal.contact-modal .modal-dialog {
	max-width: 850px;
}
@media (max-width: 991px) {
	.modal.contact-modal .modal-dialog {
		max-width: 700px;
	}
}
@media (max-width: 767px) {
	.modal.contact-modal .modal-dialog {
		max-width: 500px;
	}
}
@media (max-width: 575px) {
	.modal.contact-modal .modal-dialog {
		max-width: 100%;
	}
}
.modal.contact-modal input:-webkit-autofill,
.modal.contact-modal input:-webkit-autofill:hover,
.modal.contact-modal input:-webkit-autofill:focus,
.modal.contact-modal textarea:-webkit-autofill,
.modal.contact-modal textarea:-webkit-autofill:hover,
.modal.contact-modal textarea:-webkit-autofill:focus,
.modal.contact-modal select:-webkit-autofill,
.modal.contact-modal select:-webkit-autofill:hover,
.modal.contact-modal select:-webkit-autofill:focus {
	background-color: transparent !important;
	-webkit-transition: background-color 5000s ease-in-out 0s !important;
	transition: background-color 5000s ease-in-out 0s !important;
	-webkit-text-fill-color: #fff !important;
}
#chat-widget-container {
	bottom: -10px !important;
}
.css-ztl6w1 {
	width: 50px;
	height: 50px;
}
#button {
	width: 40px;
	height: 40px;
	background: #144e5a;
	border-radius: 10px;
	-webkit-box-shadow: 0px 13px 33px rgba(185, 185, 185, 0.25);
	box-shadow: 0px 13px 33px rgba(185, 185, 185, 0.25);
	position: fixed;
	bottom: 20px;
	right: 20px;
	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;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	opacity: 0;
}
@media (max-width: 767px) {
	#button {
		width: 30px;
		height: 30px;
		padding: 8px;
		border-radius: 5px;
	}
}
#button img {
	-webkit-filter: brightness(100);
	filter: brightness(100);
	-webkit-transform: rotate(-180deg);
	transform: rotate(-180deg);
}
#button.show {
	opacity: 1;
	z-index: 999;
}
@media (max-width: 575px) {
	.g-recaptcha {
		-webkit-transform: scale(0.77);
		transform: scale(0.77);
		-webkit-transform-origin: 0 0;
		transform-origin: 0 0;
	}
}
header {
	background: transparent;
	position: relative;
	z-index: 99;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
header.fixed-menu {
	position: -webkit-sticky;
	position: sticky;
	top: -120px;
	left: 0;
	-webkit-transition: top 0.5s ease;
	transition: top 0.5s ease;
	background: #f5e9db;
	-webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
}
header.sticky-header {
	top: 0;
}
header.active {
	background: #f5e9db;
}
header .navbar {
	padding: 0;
}
header .navbar .header-wrapper {
	width: 100%;
	position: static;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 35px 0;
	border-bottom: 1px solid #e7e1d8;
}
@media (max-width: 1199px) {
	header .navbar .header-wrapper {
		padding: 20px 0;
	}
}
@media (max-width: 575px) {
	header .navbar .header-wrapper {
		padding: 15px 0;
	}
}
header .navbar .header-wrapper .logo {
	line-height: 0;
}
@media (max-width: 480px) {
	header .navbar .header-wrapper .logo {
		margin-right: 60px;
	}
}
header .navbar .header-wrapper .navbar-toggler {
	overflow-x: hidden;
	position: relative;
	background: #091e21;
	width: 30px;
	height: 30px;
	-webkit-box-shadow: none;
	box-shadow: none;
	display: none;
	padding: 5px;
	border-radius: 5px;
}
@media (max-width: 1199px) {
	header .navbar .header-wrapper .navbar-toggler {
		display: block;
	}
}
header .navbar .header-wrapper .navbar-toggler .icon-bar {
	-webkit-transition: all 0.1 0.3s;
	transition: all 0.1 0.3s;
	background: #b98a4b;
	display: block;
	width: 100%;
	height: 2px;
	-webkit-transition: 0.5s all ease;
	transition: 0.5s all ease;
}
header .navbar .header-wrapper .navbar-toggler .icon-bar + .icon-bar {
	margin-top: 4px;
}
header .navbar .header-wrapper .navbar-toggler .icon-bar:nth-of-type(1) {
	-webkit-transform: rotate(0);
	transform: rotate(0);
	width: calc(100% - 4px);
	margin-right: auto;
	margin-left: auto;
}
header .navbar .header-wrapper .navbar-toggler .icon-bar:nth-of-type(2) {
	opacity: 1;
	filter: alpha(opacity=100);
	position: relative;
}
header .navbar .header-wrapper .navbar-toggler .icon-bar:nth-of-type(2):after {
	display: block;
	content: "";
	-webkit-transition: all 0.1 0.3s;
	transition: all 0.1 0.3s;
	background: #232230;
	display: block;
	width: 8px;
	height: 2px;
	border-radius: 4px;
	background: rgba(255, 255, 255, 0.5);
	position: absolute;
	right: -10px;
	left: auto;
	display: none;
}
header .navbar .header-wrapper .navbar-toggler .icon-bar:nth-of-type(3) {
	-webkit-transform: rotate(0);
	transform: rotate(0);
	position: relative;
	width: calc(100% - 4px);
	margin-right: auto;
	margin-left: auto;
}
header .navbar .header-wrapper .navbar-toggler[aria-expanded="true"] .icon-bar {
	margin-right: -8px;
}
header .navbar .header-wrapper .navbar-toggler[aria-expanded="true"] .icon-bar + .icon-bar {
	margin-top: -3px;
}
header .navbar .header-wrapper .navbar-toggler[aria-expanded="true"] .icon-bar:nth-of-type(1) {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	width: 100%;
	margin-left: 0;
}
header .navbar .header-wrapper .navbar-toggler[aria-expanded="true"] .icon-bar:nth-of-type(2) {
	opacity: 0;
}
header .navbar .header-wrapper .navbar-toggler[aria-expanded="true"] .icon-bar:nth-of-type(3) {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	left: 0;
	top: 2px;
	margin-left: 0;
	width: 100%;
}
header .navbar .header-wrapper .navbar-collapse {
	max-width: -webkit-max-content;
	max-width: -moz-max-content;
	max-width: max-content;
}
@media (max-width: 1199px) {
	header .navbar .header-wrapper .navbar-collapse {
		width: 100%;
		max-width: 100%;
		background: #f5e9db;
		position: absolute;
		top: 77px;
		left: 0;
		z-index: 999;
	}
}
@media (max-width: 1199px) and (max-width: 575px) {
	header .navbar .header-wrapper .navbar-collapse {
		top: 67px;
	}
}
@media (max-width: 1199px) {
	header .navbar .header-wrapper .navbar-collapse .navbar-nav {
		padding: 20px 0;
	}
}
header .navbar .header-wrapper .navbar-collapse .navbar-nav .nav-item {
	margin-right: 50px;
}
@media (max-width: 1399px) {
	header .navbar .header-wrapper .navbar-collapse .navbar-nav .nav-item {
		margin-right: 30px;
	}
}
@media (max-width: 1199px) {
	header .navbar .header-wrapper .navbar-collapse .navbar-nav .nav-item {
		margin: 10px 0;
	}
}
header .navbar .header-wrapper .nav-link {
	padding: 0;
	color: #091e21;
	font-family: "Boston";
	font-size: 18px;
	font-weight: 600;
	line-height: normal;
}
@media (max-width: 1399px) {
	header .navbar .header-wrapper .nav-link {
		font-size: 16px;
	}
}
header .navbar .header-wrapper .nav-link.active,
header .navbar .header-wrapper .nav-link:hover {
	color: #b98a4b;
}
header .navbar .header-wrapper .wrapper a {
	margin-right: 30px;
}
.skiptranslate,
.goog-te-combo {
	display: none !important;
}
body {
	top: 0 !important;
}
.goog-te-gadget {
	display: block !important;
}
#google_translate_element,
select.goog-te-combo {
	position: fixed;
	z-index: 999;
	top: -999px;
}
body .goog-text-highlight {
	background: transparent !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}
#teams-dropdown-menu span.icon .fa {
	display: none;
}
.loader {
	z-index: 999999;
	position: fixed;
	top: 0;
	bottom: 0;
	height: 100vh;
	width: 100%;
	background: #fff;
	left: 0;
}
#teams-dropdown-menu ul li {
	text-transform: capitalize;
}
#teams-dropdown-menu {
	border-radius: 3px;
	position: relative;
	background-color: #ffffff;
	cursor: pointer;
	width: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 36px;
	padding: 10px;
	-webkit-box-shadow: 0px 2px 9px 0px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 2px 9px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 1199px) {
	#teams-dropdown-menu {
		margin-right: 10px;
	}
}
#teams-dropdown-menu .flag-text {
	font-size: 0px;
	color: #000000;
	margin-right: 5px;
}
#teams-dropdown-menu ul {
	background: #fff;
	border-radius: 5px;
	-webkit-box-shadow:
		0 2px 5px #0a0a0a0d,
		0 0 10px 0 #0a0a0a14;
	box-shadow:
		0 2px 5px #0a0a0a0d,
		0 0 10px 0 #0a0a0a14;
	display: none;
	left: 0;
	overflow: hidden;
	padding: 10px 0;
	position: absolute;
	top: 50px;
	width: 135px;
	z-index: 99;
	padding: 0;
	left: unset !important;
	right: 0;
}
#teams-dropdown-menu ul.active {
	display: block;
	-webkit-animation: slidedown 0.2s;
	animation: slidedown 0.2s;
	top: 50px;
	z-index: 9992;
}
@-webkit-keyframes slidedown {
	from {
		margin-top: -25px;
		opacity: 0;
	}
	to {
		margin-top: 0;
		opacity: 1;
	}
}
@keyframes slidedown {
	from {
		margin-top: -25px;
		opacity: 0;
	}
	to {
		margin-top: 0;
		opacity: 1;
	}
}
#teams-dropdown-menu ul li {
	padding: 10px 15px;
	color: #000000;
	font-size: 14px;
	letter-spacing: 0.5px;
	height: auto !important;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-left: 0;
	float: none;
}
#teams-dropdown-menu ul li img {
	margin-right: 10px;
}
#teams-dropdown-menu ul li:hover {
	color: #000 !important;
	background-color: #f0f0f0;
}
#teams-dropdown-menu span.icon:before {
	display: inline-block;
	margin-left: 0.255em;
	vertical-align: 0.255em;
	content: "";
	border-top: 0.3em solid;
	border-right: 0.3em solid transparent;
	border-bottom: 0;
	border-left: 0.3em solid transparent;
	position: relative;
	top: 2px;
}
.fr_wrapper header .navbar .header-wrapper .wrapper a,
.fr_wrapper header .navbar .header-wrapper .navbar-collapse .navbar-nav .nav-item {
	margin-right: 15px;
}
@media (max-width: 1199px) {
	.fr_wrapper header .navbar .header-wrapper .wrapper a,
	.fr_wrapper header .navbar .header-wrapper .navbar-collapse .navbar-nav .nav-item {
		margin: 10px 0;
	}
}
font {
	background-color: transparent !important;
	-webkit-box-shadow: none !important;
	box-shadow: none !important;
}
footer {
	background: #f5e9db;
}
@media (max-width: 991px) {
	footer .footer-section {
		padding: 50px 0 20px;
	}
}
footer .footer-about {
	padding: 100px 0;
	position: relative;
}
@media (max-width: 991px) {
	footer .footer-about {
		padding: 0;
	}
}
footer .footer-about::before {
	content: "";
	width: 1px;
	height: 100%;
	background: #091e21;
	position: absolute;
	top: 0;
	right: -100px;
}
@media (max-width: 1399px) {
	footer .footer-about::before {
		right: -35px;
	}
}
@media (max-width: 991px) {
	footer .footer-about::before {
		display: none;
	}
}
footer .footer-about .logo {
	display: block;
	line-height: 0;
	margin-bottom: 30px;
	margin-right: 50px;
}
@media (max-width: 991px) {
	footer .footer-about .logo {
		margin: 0 auto 30px;
	}
}
@media (max-width: 575px) {
	footer .footer-about .logo {
		margin: 0 50px 30px;
	}
}
footer .footer-about .logo img {
	display: block;
	width: 100%;
}
footer .footer-about p {
	margin-bottom: 30px;
}
footer .footer-about .visa-icons {
	display: block;
	margin-bottom: 30px;
}
@media (max-width: 480px) {
	footer .footer-about .visa-icons {
		margin-bottom: 20px;
	}
}
footer .footer-about .encryption {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	color: #091e21;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
}
@media (max-width: 480px) {
	footer .footer-about .encryption {
		font-size: 14px;
	}
}
footer .footer-about .encryption img {
	margin-right: 5px;
}
@media (max-width: 991px) {
	footer .footer-content {
		padding: 30px 0;
	}
}
@media (max-width: 767px) {
	footer .footer-content {
		padding: 30px 15px;
	}
}
@media (max-width: 991px) {
	footer .footer-content.links {
		border-right: 1px solid #091e21;
	}
}
@media (max-width: 991px) {
	footer .footer-content.contact {
		border-top: 1px solid #091e21;
	}
}
footer .footer-content .footer-title {
	color: #091e21;
	font-family: "Fulgate";
	font-size: 26px;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 0.26px;
	margin-bottom: 30px;
}
@media (max-width: 1199px) {
	footer .footer-content .footer-title {
		font-size: 22px;
		margin-bottom: 20px;
	}
}
@media (max-width: 480px) {
	footer .footer-content .footer-title {
		font-size: 18px;
	}
}
footer .footer-content ul li {
	margin-bottom: 15px;
}
@media (max-width: 480px) {
	footer .footer-content ul li {
		margin-bottom: 10px;
	}
}
footer .footer-content ul li:last-child {
	margin-bottom: 0;
}
footer .footer-content ul li a,
footer .footer-content ul li p {
	font-family: "Boston";
	color: #091e21;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	opacity: 1;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	display: inline-block;
}
@media (max-width: 480px) {
	footer .footer-content ul li a,
	footer .footer-content ul li p {
		font-size: 14px;
	}
}
footer .footer-content ul li a:first-letter,
footer .footer-content ul li p:first-letter {
	text-transform: capitalize;
}
footer .footer-content ul li a.mail:first-letter,
footer .footer-content ul li p.mail:first-letter {
	text-transform: unset;
}
footer .footer-content ul li a:hover {
	color: #b98a4b;
}
footer .copyright {
	padding: 20px;
	border-top: 1px solid #091e21;
}
@media (max-width: 991px) {
	footer .copyright {
		padding: 20px 0 70px 0;
	}
}
footer .copyright p {
	font-family: "Boston";
	font-size: 16px;
	line-height: 1.3;
	font-weight: 600;
	color: #091e21;
	text-align: center;
	opacity: 1;
}
@media (max-width: 1399px) {
	footer .copyright p {
		font-size: 15px;
	}
}
@media (max-width: 1199px) {
	footer .copyright p {
		font-size: 14px;
	}
}
.banner-section {
	padding: 50px 0 0;
	position: relative;
	max-width: 1920px;
	margin: auto;
}
.banner-section::before {
	content: "";
	width: 870px;
	height: 870px;
	background: url(../images/banner-back.svg) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	top: -150px;
	left: -150px;
	z-index: -1;
}
@media (max-width: 1399px) {
	.banner-section::before {
		width: 800px;
		height: 800px;
	}
}
@media (max-width: 1199px) {
	.banner-section::before {
		width: 700px;
		height: 700px;
	}
}
@media (max-width: 991px) {
	.banner-section::before {
		width: 600px;
		height: 600px;
	}
}
@media (max-width: 767px) {
	.banner-section::before {
		width: 500px;
		height: 500px;
	}
}
@media (max-width: 480px) {
	.banner-section::before {
		width: 300px;
		height: 300px;
		top: -100px;
		left: -50px;
	}
}
.banner-section .banner-content .wrapper {
	position: relative;
}
.banner-section .banner-content .wrapper::before,
.banner-section .banner-content .wrapper::after {
	content: "";
	width: 160px;
	height: 45px;
	background: url(../images/cloud.svg) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	bottom: -30px;
	right: 0;
	-webkit-animation: zig-zag 5s infinite cubic-bezier(0.17, 0.09, 0.52, 0.64);
	animation: zig-zag 5s infinite cubic-bezier(0.17, 0.09, 0.52, 0.64);
}
@media (max-width: 991px) {
	.banner-section .banner-content .wrapper::before,
	.banner-section .banner-content .wrapper::after {
		width: 120px;
	}
}
@media (max-width: 767px) {
	.banner-section .banner-content .wrapper::before,
	.banner-section .banner-content .wrapper::after {
		width: 80px;
	}
}
@media (max-width: 575px) {
	.banner-section .banner-content .wrapper::before,
	.banner-section .banner-content .wrapper::after {
		display: none;
	}
}
@-webkit-keyframes zig-zag {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	50% {
		-webkit-transform: translateX(50px);
		transform: translateX(50px);
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}
@keyframes zig-zag {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	50% {
		-webkit-transform: translateX(50px);
		transform: translateX(50px);
	}
	100% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}
.banner-section .banner-content .wrapper::after {
	right: auto;
	left: 100px;
	bottom: auto;
	top: -50px;
}
@media (max-width: 991px) {
	.banner-section .banner-content .wrapper::after {
		left: 50px;
	}
}
@media (max-width: 991px) {
	.banner-section .banner-content .wrapper img {
		max-width: 100px;
	}
}
@media (max-width: 767px) {
	.banner-section .banner-content .wrapper img {
		max-width: 50px;
	}
}
.banner-section .banner-content .wrapper-2 {
	position: relative;
}
.banner-section .banner-content .wrapper-2::before,
.banner-section .banner-content .wrapper-2::after {
	content: "";
	width: 60px;
	height: 80px;
	background: url(../images/stars-2.svg) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	bottom: -100px;
	left: 100px;
	z-index: -1;
}
@media (max-width: 991px) {
	.banner-section .banner-content .wrapper-2::before,
	.banner-section .banner-content .wrapper-2::after {
		left: 0;
		width: 40px;
		height: 60px;
	}
}
@media (max-width: 575px) {
	.banner-section .banner-content .wrapper-2::before,
	.banner-section .banner-content .wrapper-2::after {
		display: none;
	}
}
.banner-section .banner-content .wrapper-2::after {
	background: url(../images/stars.svg) no-repeat;
	background-size: 100% 100%;
	bottom: auto;
	top: -120px;
	left: auto;
	right: 70px;
}
@media (max-width: 991px) {
	.banner-section .banner-content .wrapper-2::after {
		top: -60px;
		right: 0;
	}
}
.banner-section .banner-content .wrapper-2 h1 {
	font-weight: 700;
}
@media (max-width: 375px) {
	.banner-section .banner-content .wrapper-2 h1 {
		font-size: 25px;
	}
}
.banner-section .banner-content h1 {
	color: #091e21;
	font-size: 90px;
	font-weight: 500;
	line-height: normal;
	letter-spacing: 0.9px;
}
@media (max-width: 1399px) {
	.banner-section .banner-content h1 {
		font-size: 70px;
	}
}
@media (max-width: 1199px) {
	.banner-section .banner-content h1 {
		font-size: 55px;
	}
}
@media (max-width: 991px) {
	.banner-section .banner-content h1 {
		font-size: 45px;
	}
}
@media (max-width: 767px) {
	.banner-section .banner-content h1 {
		font-size: 35px;
	}
}
@media (max-width: 480px) {
	.banner-section .banner-content h1 {
		font-size: 25px;
	}
}
@media (max-width: 375px) {
	.banner-section .banner-content h1 {
		font-size: 20px;
	}
}
.banner-section .banner-img {
	margin-top: 80px;
	line-height: 0;
}
@media (max-width: 991px) {
	.banner-section .banner-img {
		margin-bottom: 20px;
	}
}
@media (max-width: 575px) {
	.banner-section .banner-img {
		margin-top: 50px;
	}
}
@media (max-width: 375px) {
	.banner-section .banner-img {
		margin-top: 20px;
	}
}
.banner-section .banner-img img {
	display: block;
	margin: auto;
}
@media (max-width: 575px) {
	.banner-section .banner-img img {
		max-width: 400px;
	}
}
@media (max-width: 480px) {
	.banner-section .banner-img img {
		max-width: 280px;
	}
}
@media (max-width: 991px) {
	.service-section .service-content {
		margin-bottom: 40px;
	}
}
.service-section .service-content p {
	margin-bottom: 40px;
}
@media (max-width: 1199px) {
	.service-section .service-content p {
		margin-bottom: 30px;
	}
}
@media (max-width: 480px) {
	.service-section .service-content p {
		margin-bottom: 10px;
	}
}
.service-section .service-img {
	display: block;
	margin: auto;
	line-height: 0;
}
@media (max-width: 575px) {
	.service-section .service-img {
		max-width: 400px;
	}
}
@media (max-width: 480px) {
	.service-section .service-img {
		max-width: 280px;
	}
}
.cta-section {
	padding: 85px 0 0;
	background: #f5e9db;
	position: relative;
}
@media (max-width: 575px) {
	.cta-section {
		padding: 40px 0 0;
	}
}
.cta-section::before {
	content: "";
	width: 800px;
	height: 140px;
	background: url(../images/cta-cloud.svg) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	top: 0;
	right: 200px;
	z-index: 1;
}
@media (max-width: 1199px) {
	.cta-section::before {
		width: 600px;
	}
}
@media (max-width: 991px) {
	.cta-section::before {
		width: 400px;
	}
}
@media (max-width: 575px) {
	.cta-section::before {
		width: 300px;
		right: 0;
		top: -30px;
	}
}
.cta-section .wrapper {
	position: relative;
}
.cta-section .wrapper::after,
.cta-section .wrapper::before {
	content: "";
	width: 60px;
	height: 80px;
	background: url(../images/stars-2.svg) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	top: -130px;
	left: 0;
}
@media (max-width: 1199px) {
	.cta-section .wrapper::after,
	.cta-section .wrapper::before {
		width: 40px;
		height: 60px;
		top: -100px;
	}
}
@media (max-width: 575px) {
	.cta-section .wrapper::after,
	.cta-section .wrapper::before {
		width: 30px;
		height: 50px;
		top: auto;
		bottom: -30px;
	}
}
.cta-section .wrapper::after {
	background: url(../images/stars.svg) no-repeat;
	background-size: 100% 100%;
	left: auto;
	top: auto;
	right: 0;
	bottom: -100px;
}
@media (max-width: 991px) {
	.cta-section .wrapper::after {
		bottom: -50px;
	}
}
@media (max-width: 575px) {
	.cta-section .wrapper::after {
		bottom: auto;
		top: -60px;
	}
}
.cta-section .cta-content {
	position: relative;
}
.cta-section .cta-content::before {
	content: "";
	width: 120px;
	height: 35px;
	background: url(../images/cta-vector.svg) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	right: 0;
	bottom: 20px;
}
@media (max-width: 1199px) {
	.cta-section .cta-content::before {
		width: 80px;
	}
}
@media (max-width: 991px) {
	.cta-section .cta-content::before {
		bottom: -50px;
	}
}
@media (max-width: 575px) {
	.cta-section .cta-content::before {
		width: 55px;
		height: 15px;
		bottom: -30px;
	}
}
@media (max-width: 991px) {
	.cta-section .cta-content {
		margin-bottom: 60px;
	}
}
@media (max-width: 480px) {
	.cta-section .cta-content {
		margin-bottom: 20px;
	}
}
.cta-section .cta-img {
	line-height: 0;
}
.pricing-section .wrapper {
	position: relative;
}
.pricing-section .wrapper::after,
.pricing-section .wrapper::before {
	content: "";
	width: 60px;
	height: 80px;
	background: url(../images/stars-2.svg) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	top: 0px;
	left: 0;
}
@media (max-width: 1199px) {
	.pricing-section .wrapper::after,
	.pricing-section .wrapper::before {
		width: 40px;
		height: 60px;
	}
}
@media (max-width: 575px) {
	.pricing-section .wrapper::after,
	.pricing-section .wrapper::before {
		width: 30px;
		height: 50px;
		top: auto;
		bottom: -30px;
	}
}
.pricing-section .wrapper::after {
	background: url(../images/stars.svg) no-repeat;
	background-size: 100% 100%;
	left: auto;
	top: auto;
	right: 0;
	bottom: -100px;
}
@media (max-width: 991px) {
	.pricing-section .wrapper::after {
		bottom: -50px;
	}
}
@media (max-width: 575px) {
	.pricing-section .wrapper::after {
		bottom: auto;
		top: -60px;
	}
}
.pricing-section .pricing-content .nav {
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: end;
}
@media (max-width: 991px) {
	.pricing-section .pricing-content .nav {
		display: block;
	}
}
.pricing-section .pricing-content .nav .nav-item {
	width: 100%;
	position: relative;
}
.pricing-section .pricing-content .nav .nav-item::before {
	content: "";
	width: 80px;
	height: 25px;
	background: url(../images/cta-vector.svg) no-repeat;
	background-size: 100% 100%;
	position: absolute;
	top: 50px;
	left: -60px;
}
@media (max-width: 991px) {
	.pricing-section .pricing-content .nav .nav-item::before {
		left: auto;
		right: 50px;
	}
}
@media (max-width: 480px) {
	.pricing-section .pricing-content .nav .nav-item::before {
		right: 5px;
		top: 30px;
	}
}
.pricing-section .pricing-content .nav .nav-item.silver-plan::before {
	background: url(../images/pricing-vector.svg) no-repeat;
	background-size: 100% 100%;
	top: -20px;
	left: auto;
	right: -60px;
}
@media (max-width: 991px) {
	.pricing-section .pricing-content .nav .nav-item.silver-plan::before {
		right: auto;
		left: 0;
		top: 20px;
	}
}
.pricing-section .pricing-content .nav .nav-item .nav-link {
	border-radius: 0;
	background: transparent;
	padding: 40px;
	position: relative;
}
@media (max-width: 480px) {
	.pricing-section .pricing-content .nav .nav-item .nav-link {
		padding: 30px 15px;
	}
}
.pricing-section .pricing-content .nav .nav-item .nav-link::before {
	content: "";
	width: 100%;
	height: 100%;
	background: #f5e9db;
	border: 2px solid transparent;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: -1;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.pricing-section .pricing-content .nav .nav-item .nav-link .primary_btn {
	pointer-events: none;
}
.pricing-section .pricing-content .nav .nav-item .nav-link.active::before {
	height: calc(100% + 40px);
	border: 2px solid #144e5a;
}
@media (max-width: 991px) {
	.pricing-section .pricing-content .nav .nav-item .nav-link.active::before {
		height: 100%;
	}
}
.pricing-section .pricing-content .nav .nav-item .nav-link.active .primary_btn {
	pointer-events: auto;
}
.pricing-section .pricing-content .nav .nav-item .nav-link .tab-content .tab-pane .heading {
	cursor: pointer;
}
.pricing-section .pricing-content .nav .nav-item .nav-link .tab-content .tab-pane .heading .title {
	font-weight: 600;
}
.pricing-section .pricing-content .nav .nav-item .nav-link .tab-content .tab-pane .heading h6 {
	position: relative;
	z-index: 2;
	text-align: center;
	font-family: "Boston";
	color: #091e21;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.45;
}
@media (max-width: 991px) {
	.pricing-section .pricing-content .nav .nav-item .nav-link .tab-content .tab-pane .heading h6 {
		font-size: 22px;
	}
}
@media (max-width: 480px) {
	.pricing-section .pricing-content .nav .nav-item .nav-link .tab-content .tab-pane .heading h6 {
		font-size: 18px;
	}
}
.pricing-section .pricing-content .nav .nav-item .nav-link .tab-content .tab-pane ul {
	margin-bottom: 50px;
}
@media (max-width: 480px) {
	.pricing-section .pricing-content .nav .nav-item .nav-link .tab-content .tab-pane ul {
		margin-bottom: 30px;
	}
}
.pricing-section .pricing-content .nav .nav-item .nav-link .tab-content .tab-pane ul li {
	margin-bottom: 20px;
}
.pricing-section .pricing-content .nav .nav-item .nav-link .tab-content .tab-pane ul li:last-child {
	margin-bottom: 0;
}
.pricing-section .pricing-content .nav .nav-item .nav-link .tab-content .tab-pane ul li p {
	color: #091e21;
	text-align: center;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.4;
}
@media (max-width: 575px) {
	.pricing-section .pricing-content .nav .nav-item .nav-link .tab-content .tab-pane ul li p {
		font-size: 16px;
	}
}
@media (max-width: 480px) {
	.pricing-section .pricing-content .nav .nav-item .nav-link .tab-content .tab-pane ul li p {
		font-size: 14px;
	}
}
.pricing-section .pricing-content .nav .nav-item .nav-link .tab-content .tab-pane ul li p span {
	color: #b98a4b;
}
.pricing-section .pricing-img {
	position: relative;
	z-index: 1;
}
@media (min-width: 992px) {
	.pricing-section .pricing-img {
		max-width: -webkit-max-content;
		max-width: -moz-max-content;
		max-width: max-content;
	}
}
.pricing-section .pricing-img.img-1 {
	margin-right: -250px;
	margin-bottom: -80px;
}
@media (max-width: 1399px) {
	.pricing-section .pricing-img.img-1 {
		margin-right: -80px;
	}
}
.pricing-section .pricing-img.img-2 {
	margin-left: -180px;
	margin-bottom: -80px;
}
@media (max-width: 1399px) {
	.pricing-section .pricing-img.img-2 {
		margin-left: -150px;
	}
}
@media (max-width: 1199px) {
	.pricing-section .pricing-img.img-2 {
		margin-left: -100px;
	}
}
.pricing-section .pricing-img.img-3 {
	margin: auto;
	margin-top: -40px;
}
@media (max-width: 991px) {
	.pricing-section .pricing-img.img-3 {
		margin-top: -300px;
	}
}
@media (max-width: 991px) and (max-width: 767px) {
	.pricing-section .pricing-img.img-3 {
		margin-top: -250px;
	}
}
@media (max-width: 991px) and (max-width: 480px) {
	.pricing-section .pricing-img.img-3 {
		margin-top: -200px;
	}
}
@media (max-width: 991px) and (max-width: 375px) {
	.pricing-section .pricing-img.img-3 {
		margin-top: -150px;
	}
}
@media (max-width: 991px) {
	.pricing-section .pricing-img.img-3 img {
		width: 100%;
	}
}
.about-section {
	max-width: 1920px;
	margin: auto;
}
@media (max-width: 991px) {
	.about-section .about-content {
		margin-bottom: 20px;
	}
}
.about-section .about-content p {
	margin-bottom: 40px;
}
@media (max-width: 991px) {
	.about-section .about-content p {
		margin-bottom: 20px;
	}
}
@media (max-width: 480px) {
	.about-section .about-content p {
		margin-bottom: 10px;
	}
}
.about-section .about-img.main {
	position: relative;
	z-index: -1;
	margin-top: -250px;
}
@media (max-width: 1399px) {
	.about-section .about-img.main {
		margin-top: -200px;
	}
}
.about-section .about-img img {
	width: 100%;
}
@media (max-width: 575px) {
	.about-section .about-img img {
		display: block;
		max-width: 400px;
		margin: auto;
	}
}
@media (max-width: 480px) {
	.about-section .about-img img {
		max-width: 280px;
	}
}
@media (max-width: 991px) {
	#about {
		margin-top: 150px;
	}
}
form .form-group {
	margin-bottom: 30px;
	position: relative;
}
form .form-group .form-control,
form .form-group textarea {
	border: 1px solid #091e21;
	padding: 15px 15px 15px 60px;
	background: transparent;
	border-radius: 50px;
	-webkit-box-shadow: none;
	box-shadow: none;
	color: #091e21;
	font-family: "Boston";
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
form .form-group .form-control::-webkit-input-placeholder,
form .form-group textarea::-webkit-input-placeholder {
	color: #091e21;
	font-family: "Boston";
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
form .form-group .form-control:-ms-input-placeholder,
form .form-group textarea:-ms-input-placeholder {
	color: #091e21;
	font-family: "Boston";
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
form .form-group .form-control::-ms-input-placeholder,
form .form-group textarea::-ms-input-placeholder {
	color: #091e21;
	font-family: "Boston";
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
form .form-group .form-control::placeholder,
form .form-group textarea::placeholder {
	color: #091e21;
	font-family: "Boston";
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
form .form-group .form-control:hover,
form .form-group .form-control:focus,
form .form-group textarea:hover,
form .form-group textarea:focus {
	color: #b98a4b;
	border-color: #b98a4b;
}
form .form-group .form-control:hover::-webkit-input-placeholder,
form .form-group .form-control:focus::-webkit-input-placeholder,
form .form-group textarea:hover::-webkit-input-placeholder,
form .form-group textarea:focus::-webkit-input-placeholder {
	color: #b98a4b;
}
form .form-group .form-control:hover:-ms-input-placeholder,
form .form-group .form-control:focus:-ms-input-placeholder,
form .form-group textarea:hover:-ms-input-placeholder,
form .form-group textarea:focus:-ms-input-placeholder {
	color: #b98a4b;
}
form .form-group .form-control:hover::-ms-input-placeholder,
form .form-group .form-control:focus::-ms-input-placeholder,
form .form-group textarea:hover::-ms-input-placeholder,
form .form-group textarea:focus::-ms-input-placeholder {
	color: #b98a4b;
}
form .form-group .form-control:hover::placeholder,
form .form-group .form-control:focus::placeholder,
form .form-group textarea:hover::placeholder,
form .form-group textarea:focus::placeholder {
	color: #b98a4b;
}
form .form-group .icon {
	width: 45px;
	height: 45px;
	border-radius: 30px;
	background: #72959c;
	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: absolute;
	top: 50%;
	left: 4px;
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
}
.already {
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	line-height: normal;
	margin-top: 25px;
}
.already a {
	color: #b98a4b;
	opacity: 0.7;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.already a:hover {
	opacity: 1;
}
.remember {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 0 0 30px 0;
	margin: 0;
}
@media (max-width: 767px) {
	.remember {
		padding: 0 0 20px 0;
	}
}
.remember .custom-check-box {
	font-size: 16px;
	line-height: 1.2;
	color: #fff;
	display: block;
	position: relative;
	padding-left: 30px;
	font-weight: normal;
	margin-bottom: 0;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	text-transform: inherit;
}
@media (max-width: 767px) {
	.remember .custom-check-box {
		font-size: 14px;
		padding-left: 20px;
	}
}
@media (max-width: 375px) {
	.remember .custom-check-box {
		font-size: 13px;
	}
}
.remember .custom-check-box input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}
.remember .custom-check-box .checkmark {
	position: absolute;
	top: 1px;
	left: 0px;
	background: transparent;
	border: 1px solid #b98a4b;
	width: 18px;
	height: 18px;
	border-radius: 2px;
}
@media (max-width: 767px) {
	.remember .custom-check-box .checkmark {
		width: 16px;
		height: 16px;
		top: 0;
	}
}
.remember .custom-check-box .checkmark:after {
	content: "";
	position: absolute;
	display: none;
	left: 5px;
	top: 2px;
	width: 6px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
@media (max-width: 767px) {
	.remember .custom-check-box .checkmark:after {
		width: 5px;
		height: 8px;
	}
}
.remember .custom-check-box input:checked ~ .checkmark:after {
	display: block;
}
.remember .forgot-pass {
	font-size: 16px;
	line-height: 1;
	padding: 0;
	margin: 0;
	display: inline-block;
	color: #b98a4b;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.remember .forgot-pass:hover {
	color: #fff;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
@media (max-width: 767px) {
	.remember .forgot-pass {
		font-size: 14px;
	}
}
@media (max-width: 375px) {
	.remember .forgot-pass {
		font-size: 13px;
	}
}
.signup-section .signup-text {
	margin-bottom: 50px;
}
@media (max-width: 991px) {
	.signup-section .signup-text {
		margin-bottom: 30px;
	}
}
@media (max-width: 480px) {
	.signup-section .signup-text {
		margin-bottom: 20px;
	}
}
.signup-section .form-content .secondary_btn::before {
	border-color: #091e21;
}
.signup-section .form-content .already {
	color: #091e21;
}
.policy-content {
	font-family: "Boston";
	font-size: 16px;
	line-height: 1.6;
	font-weight: 600;
	color: rgba(9, 30, 33, 0.6);
	position: relative;
	overflow: inherit;
}
@media (max-width: 991px) {
	.policy-content {
		font-size: 14px;
	}
}
.policy-content a {
	color: #b98a4b;
}
.policy-content a:hover {
	color: #144e5a;
}
.policy-content b,
.policy-content h1,
.policy-content h2,
.policy-content h3,
.policy-content h4,
.policy-content h5,
.policy-content h6 {
	font-family: "Boston";
	color: #091e21;
	font-size: 24px;
	line-height: 1.4;
	font-weight: 400;
	margin-bottom: 10px;
}
@media (max-width: 1399px) {
	.policy-content b,
	.policy-content h1,
	.policy-content h2,
	.policy-content h3,
	.policy-content h4,
	.policy-content h5,
	.policy-content h6 {
		font-size: 22px;
	}
}
@media (max-width: 991px) {
	.policy-content b,
	.policy-content h1,
	.policy-content h2,
	.policy-content h3,
	.policy-content h4,
	.policy-content h5,
	.policy-content h6 {
		font-size: 20px;
	}
}
@media (max-width: 767px) {
	.policy-content b,
	.policy-content h1,
	.policy-content h2,
	.policy-content h3,
	.policy-content h4,
	.policy-content h5,
	.policy-content h6 {
		font-size: 18px;
	}
}
@media (max-width: 375px) {
	.policy-content b,
	.policy-content h1,
	.policy-content h2,
	.policy-content h3,
	.policy-content h4,
	.policy-content h5,
	.policy-content h6 {
		font-size: 16px;
	}
}
.policy-content p small {
	display: block;
	font-size: 16px;
	color: rgba(9, 30, 33, 0.6);
	margin-bottom: 30px;
}
@media (max-width: 1399px) {
	.policy-content p small {
		margin-bottom: 20px;
	}
}
@media (max-width: 575px) {
	.policy-content p small {
		font-size: 14px;
	}
}
@media (max-width: 480px) {
	.policy-content p small {
		font-size: 12px;
		margin-bottom: 10px;
	}
}
.policy-content .print {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	background: #091e21;
	padding: 20px 15px;
	border-radius: 12px 0 0 12px;
	-webkit-box-shadow: 0px 12px 30px 0px rgba(255, 149, 140, 0.26);
	box-shadow: 0px 12px 30px 0px rgba(255, 149, 140, 0.26);
	position: -webkit-sticky;
	position: sticky;
	float: right;
	right: 0;
	top: 140px;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	color: #fff;
	font-family: "Boston";
	font-size: 16px;
	line-height: 1.2;
	font-weight: 600;
	z-index: 99;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	cursor: pointer;
}
@media (max-width: 767px) {
	.policy-content .print {
		font-size: 0px;
		padding: 10px;
		top: 70px;
	}
}
.policy-content .print span {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
.policy-content .print img {
	margin-bottom: 10px;
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}
@media (max-width: 767px) {
	.policy-content .print img {
		margin-bottom: 0px;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
	}
}
.policy-content .print:hover {
	background: #144e5a;
	color: #fff;
}
table {
	width: 100%;
	font-size: 12px;
	background: transparent;
	-webkit-box-shadow: none;
	box-shadow: none;
	outline: none;
	border-collapse: separate;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-spacing: 0;
	border-radius: 30px;
	-webkit-box-shadow: 0px 15px 50px 0px rgba(6, 26, 42, 0.1);
	box-shadow: 0px 15px 50px 0px rgba(6, 26, 42, 0.1);
	table-layout: fixed;
}
table:focus {
	outline: none;
}
@media (max-width: 767px) {
	table {
		table-layout: auto;
	}
}
table th {
	border: none;
	background: #091e21;
	padding: 30px;
	color: #fff;
	font-size: 24px;
	line-height: 1.5;
	font-family: "Boston";
	font-weight: 600;
	position: relative;
	border-right: 1px solid rgba(255, 255, 255, 0.5);
	text-transform: capitalize;
}
table th:first-child {
	border-radius: 30px 0 0 0;
}
@media (max-width: 1399px) {
	table th:first-child {
		border-radius: 20px 0 0 0;
	}
}
@media (max-width: 991px) {
	table th:first-child {
		border-radius: 12px 0 0 0;
	}
}
@media (max-width: 480px) {
	table th:first-child {
		border-radius: 8px 0 0 0;
	}
}
table th:last-child {
	border-right: none;
	border-radius: 0 30px 0 0;
}
@media (max-width: 1399px) {
	table th:last-child {
		border-radius: 0 20px 0 0;
	}
}
@media (max-width: 991px) {
	table th:last-child {
		border-radius: 0 12px 0 0;
	}
}
@media (max-width: 480px) {
	table th:last-child {
		border-radius: 0 8px 0 0;
	}
}
@media (max-width: 1399px) {
	table th {
		padding: 20px;
		font-size: 20px;
	}
}
@media (max-width: 991px) {
	table th {
		font-size: 18px;
		padding: 15px;
	}
}
@media (max-width: 767px) {
	table th {
		font-size: 15px;
	}
}
@media (max-width: 480px) {
	table th {
		padding: 10px 5px;
		font-size: 12px;
	}
}
table td {
	padding: 30px 30px 50px;
	font-family: "Boston";
	font-weight: 600;
	font-size: 16px;
	line-height: 1.6;
	color: #000;
	border-right: 1px solid rgba(9, 30, 33, 0.2);
	border-bottom: 1px solid rgba(20, 78, 90, 0.1);
}
table td:last-child {
	border-right: none;
}
@media (max-width: 1399px) {
	table td {
		padding: 20px;
		font-size: 14px;
	}
}
@media (max-width: 991px) {
	table td {
		font-size: 12px;
		padding: 15px;
	}
}
@media (max-width: 480px) {
	table td {
		padding: 10px 5px;
		font-size: 11px;
	}
}
table tr {
	background-color: #fff;
}
table tr td:first-child {
	border-left: 1px solid rgba(9, 30, 33, 0.2);
}
table tr td:last-child {
	border-right: 1px solid rgba(9, 30, 33, 0.2);
}
table tr:last-child td {
	border-bottom: 1px solid rgba(9, 30, 33, 0.2);
}
table tr:last-child td:first-child {
	border-radius: 0 0 0 30px;
}
@media (max-width: 1399px) {
	table tr:last-child td:first-child {
		border-radius: 0 0 0 20px;
	}
}
@media (max-width: 991px) {
	table tr:last-child td:first-child {
		border-radius: 0 0 0 12px;
	}
}
@media (max-width: 480px) {
	table tr:last-child td:first-child {
		border-radius: 0 0 0 8px;
	}
}
table tr:last-child td:last-child {
	border-radius: 0 0 30px 0;
}
@media (max-width: 1399px) {
	table tr:last-child td:last-child {
		border-radius: 0 0 20px 0;
	}
}
@media (max-width: 991px) {
	table tr:last-child td:last-child {
		border-radius: 0 0 12px 0;
	}
}
@media (max-width: 480px) {
	table tr:last-child td:last-child {
		border-radius: 0 0 8px 0;
	}
}
table tr:nth-child(odd) td {
	background-color: rgba(20, 78, 90, 0.1);
}
#pricingplans,
#paymentandbilling,
#deliverypolicy,
#cancellation {
	display: block;
	padding-top: 120px;
	margin-top: -120px;
}
@media (max-width: 1199px) {
	#pricingplans,
	#paymentandbilling,
	#deliverypolicy,
	#cancellation {
		padding-top: 100px;
		margin-top: -100px;
	}
}
@media (max-width: 575px) {
	#pricingplans,
	#paymentandbilling,
	#deliverypolicy,
	#cancellation {
		padding-top: 80px;
		margin-top: -80px;
	}
}
#pricingplans,
#paymentandbilling,
#deliverypolicy,
#cancellation {
	scroll-margin-top: 50px;
}
.support-section .secondary_btn::before {
	border-color: #091e21;
}
.support-section .wrapper {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 50px;
	border-radius: 30px;
	background: rgba(20, 78, 90, 0.2);
}
@media (max-width: 991px) {
	.support-section .wrapper {
		height: auto;
		text-align: center;
		margin-bottom: 30px;
	}
}
@media (max-width: 480px) {
	.support-section .wrapper {
		padding: 30px;
		border-radius: 20px;
	}
}
.support-section .wrapper .block span {
	display: block;
	color: #091e21;
	font-family: "Boston";
	font-size: 24px;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 30px;
}
@media (max-width: 480px) {
	.support-section .wrapper .block span {
		font-size: 18px;
		margin-bottom: 20px;
	}
}
.faq-section .title {
	font-weight: 600;
}
.faq-section .accordion .accordion-item {
	border: 0;
	margin-bottom: 25px;
}
.faq-section .accordion .accordion-item .accordion-header {
	background: rgba(185, 138, 75, 0.2);
	padding: 20px 20px 20px 30px;
	border-radius: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	color: #091e21;
	font-family: "Boston";
	font-size: 18px;
	font-weight: 600;
	line-height: normal;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	cursor: pointer;
}
@media (max-width: 991px) {
	.faq-section .accordion .accordion-item .accordion-header {
		padding: 15px 15px 15px 20px;
		font-size: 16px;
		border-radius: 20px;
	}
}
@media (max-width: 480px) {
	.faq-section .accordion .accordion-item .accordion-header {
		font-size: 14px;
	}
}
.faq-section .accordion .accordion-item .accordion-header .icon {
	width: 100%;
	max-width: 40px;
	height: 40px;
	background: #fff;
	border-radius: 30px;
	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;
	margin-left: 20px;
}
@media (max-width: 991px) {
	.faq-section .accordion .accordion-item .accordion-header .icon {
		max-width: 30px;
		height: 30px;
		padding: 7px;
	}
}
@media (max-width: 480px) {
	.faq-section .accordion .accordion-item .accordion-header .icon {
		max-width: 25px;
		height: 25px;
		padding: 5px;
	}
}
.faq-section .accordion .accordion-item .accordion-header .icon img {
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.faq-section .accordion .accordion-item .accordion-header[aria-expanded="true"] {
	border-radius: 30px 30px 0 0;
	background: #b98a4b;
	color: #fff;
}
@media (max-width: 991px) {
	.faq-section .accordion .accordion-item .accordion-header[aria-expanded="true"] {
		border-radius: 20px 20px 0 0;
	}
}
.faq-section .accordion .accordion-item .accordion-header[aria-expanded="true"] .icon img {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}
.faq-section .accordion .accordion-item .accordion-body {
	padding: 30px 60px 30px 30px;
	border: 1px solid #091e21;
	border-top: 0;
	border-radius: 0 0 30px 30px;
}
@media (max-width: 991px) {
	.faq-section .accordion .accordion-item .accordion-body {
		padding: 20px 50px 20px 20px;
	}
}
.faq-section .accordion .accordion-item .accordion-body p {
	opacity: 0.8;
}
