@charset "utf-8";
/* CSS Document */

/*---------- Google Fonts ----------*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

body {
	font-family: "Inter", sans-serif !important;
	background: #171717;
	overflow-x: hidden;
}

.overflowSection {
	overflow: hidden;
}


:root {
	--Primary: #14509a;
}


.animated {
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

@-webkit-keyframes fadeInUp {
	0% {
		margin-top: 10px;
	}

	100% {
		margin-top: 0;
	}
}

@keyframes fadeInUp {
	0% {
		margin-top: 10px;
	}

	100% {
		margin-top: 0;
	}
}

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

a,
input,
button,
textarea {
	outline: none !important;
}

a {
	transition: all ease-in-out 300ms;
	-webkit-transition: all ease-in-out 300ms;
	-ms-transition: all ease-in-out 300ms;
	-o-transition: all ease-in-out 300ms;
	-moz-transition: all ease-in-out 300ms;
}


.btn-common {

	padding: 14px 22px;
	font-size: 16px;
	line-height: 16px;
	background: #171717 !important;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 30px;
	color: #fff !important;
	border: 2px solid transparent;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
	color: #fff;
	pointer-events: none;
	background-color: #ADCFFF;
}

.btn-common:hover {
	border-color: #191919;
	background: #FFF !important;
	color: #191919 !important;
}

.btn-border {
	border-radius: 40px;
	border: 1px solid #191919;
	background: transparent;
	color: #191919;
}

.btn-border:hover {
	border: 1px solid #191919;
	background: #191919;
	color: #fff;
}

.btn-white-border {
	border-radius: 40px;
	border: 1px solid #fff;
	background: transparent;
	color: #FFFFFF;
}

.btn-white-border:hover {
	border: 1px solid #FFFFFF;
	background: #FFFFFF;
	color: #191919;
}

.btn-link {
	color: #111110;
	text-decoration: none;
	font-size: 20px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	border-bottom: 2px solid #191919;
	display: inline-block;
}

.btn-link:hover {
	color: #BADCFE;
	border-color: #BADCFE;
}

.link {
	color: #000000;
	text-decoration: none;
	display: block;
	text-decoration: none;
	font-size: 18px;
	font-weight: 400;
	line-height: 25px;

}

.link:hover {
	color: #156AFF;
}

.btn-blue {
	padding: 10px 46px;
	border-radius: 20px;
	font-size: 18px;
	font-weight: 400;
	line-height: 21px;


	background: #156AFF;
	border: none;
}

.btn-blue:hover {
	background: #1F1F1F;
	border: none;
	color: #fff;
}

.btn-blue-border {
	padding: 10px 46px;
	border-radius: 20px;
	font-size: 18px;
	font-weight: 400;
	line-height: 21px;
	background: transparent;
	border: 1px solid #156AFF;
	color: #156AFF;
}

.btn-blue-border:hover {
	background: #156AFF;
	border-color: #156AFF;
	color: #fff;
}

p {
	color: #4c4c6e;
	font-size: 16px;
	line-height: 28px;
}

.status {
	font-weight: 500;
	font-size: 12px;
	line-height: 16.8px;
	padding: 4px 6px;
	border-radius: 4px;
	display: inline-flex;
}

.ongoing {
	color: #D28E3D;
	background: #FBF4EC;
}

.private {
	color: #4976F4;
	background: #EDF2FE;
}

.insurance {
	color: #589E67;
	background: #EEF5F0;
}

.completed {
	color: #954BAF;
	background: #F4EDF7;
}

/*==================================================================*/
/*========== Header Start ==========*/
/*==================================================================*/

.main-title {
	font-weight: 700;
	font-size: 50px;
	line-height: 50px;
	color: #171717;
	padding: 0 0 20px;
}

.main-title * {
	font-weight: inherit;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	margin: 0;
}

.sub-title {
	font-weight: 700;
	font-size: 16px;
	line-height: 16px;
	color: #171717;
	padding: 0 0 10px;
}

.sub-title * {
	font-weight: inherit;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	margin: 0;
}

.section-title {
	font-weight: 500;
	font-size: 20px;
	line-height: 24px;
	color: #000000;
	padding: 0 0 24px;
}

.section-title * {
	font-weight: inherit;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	margin: 0;
}

.white-title {
	color: #FFFFFF;
}


.navbar {
	padding: 0;
}


.navbar-brand {
	padding: 0;
	margin: 0;
	position: relative;
	z-index: 9999;
}

.header {
	padding: 33px 47px;
}

.navbar .navbar-nav {
	margin: 0 -11px;
}

.navbar .nav-item {
	padding: 0 1px;
}

.navbar .nav-link {
	font-weight: 400;
	font-size: 17px;
	line-height: 17px;
	padding: 10px 20px !important;
	border-radius: 30px;
}

.navbar .nav-link.active {
	background: #1E1E1E;
	color: #FFFFFF;
}

.navbar .nav-link:focus,
.navbar .nav-link:hover {
	background: #1E1E1E;
	color: #FFFFFF;
}

.right-menu {
	padding: 0;
	margin: 0;
	list-style-type: none;
	display: flex;
}

.right-menu a {
	color: #171717;
	height: 44px;
	width: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.right-menu a svg {
	width: 24px;
}

.form-group {
	margin: 0 0 28px;
}


.form-control::-webkit-input-placeholder {
	/* Chrome/Opera/Safari */
	color: rgb(162 162 162);


}

.form-control::-moz-placeholder {
	/* Firefox 19+ */
	color: rgb(162 162 162);

}

.form-control:-ms-input-placeholder {
	/* IE 10+ */
	color: rgb(162 162 162);

}

.form-control:-moz-placeholder {
	/* Firefox 18- */
	color: rgb(162 162 162);

}

.login-box {
	max-width: 600px;
	margin: 0 auto;
	background: #FFFFFF;
	padding: 50px;
	border-radius: 20px;

}


.form-group label {
	font-size: 18px;
	font-weight: 400;
	line-height: 25px;
	display: block;
	margin: 0 0 5px;
	color: #BBBBBB;
}



.wrapper {
	padding: 92px 40px 20px 280px;
}

.navbar-toggler {
	padding: 0;
	width: 26px;
	margin-top: 0;
	border: none;
	outline: none !important;
	box-shadow: none !important;
	margin-left: auto;
	z-index: 9999;
	position: relative;
}

.navbar-toggler .navbar-toggler-icon {
	width: auto;
	height: auto;
	display: block;
	background: transparent;
}

.navbar-toggler .navbar-toggler-icon .toggle-bar {
	position: relative;
	display: block;
	height: 2px;
	width: 100%;
	background-color: #a7a7a7;
	margin: 0 0 5px;
	transition: 0.4s;
	-webkit-transition: 0.4s;
	-ms-transition: 0.4s;
}

.top-header {
	background: #1f1f1f;
	display: flex;
	align-items: center;
	padding: 12px 48px;
}

.top-header .left a {
	color: #fafafa;
}

.top-header .left a svg {
	width: 20px;
}

.top-header .middle {
	margin: auto;
}

.top-header .middle p svg {
	width: 16px;
	margin-right: 10px;
}

.top-header .middle p {
	display: flex;
	margin: 0;
	font-size: 13px;
	line-height: 13px;
	color: #fafafa;
	align-items: center;
}

.main-wrapper {
	border-radius: 20px;
	background: #ffffff;
}

.download-sec {
	padding: 40px 0;
}

.download-sec ul {
	display: block;
	padding: 0 0 40px;
	margin: 0;
	list-style-type: none;
}

.download-sec ul li {
	display: inline-block;
	padding: 0;
	margin: 0;
	list-style-type: none;
	padding: 16px 12px 0px 0px;
}

.download-sec ul li a {
	padding: 14px 22px;
	font-size: 16px;
	line-height: 16px;
	background: #171717;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 30px;
	color: #fff;
	border: 2px solid transparent;
}

.download-sec ul li a:hover {
	background: #fff;
	color: #171717;
	border-color: #171717;
}

.download-sec h5 a {
	color: #171717;
}

.download-sec h5 {
	color: #171717;
	font-size: 20px;
	line-height: 24px;
}

.download-sec ul li a svg {
	width: 20px;
	/* color: #fff; */
	margin-left: 10px;
}

.service-block {
	display: flex;
}

.service-block h5 {
	font-size: 20px;
	line-height: 20px;
	color: #171717;
	font-weight: 500;
	margin: 0 0 10px;
}

.service-block p {
	font-size: 14px;
	line-height: 17px;
	color: #171717;
	margin: 0 0 10px;
}

.service-block .icon {
	width: 24px;
	flex: 0 0 24px;
	margin-right: 16px;
}

.service-block .icon .fill {
	stroke: none;
	fill: rgba(23, 23, 23, 0.1);
}

.service-sec {
	padding: 0 0 60px;
}

.service-sec .row {
	margin: 0 -30px;
}

.service-sec [class*=col-] {
	border-right: 1px solid rgb(23 23 23 / 10%);
	padding: 0 30px;
}

.service-sec [class*=col-]:last-child {
	border: none;
}

.f-title {
	font-size: 22px;
	line-height: 22px;
	color: #ffffff;
	margin: 0 0 20px;
	font-weight: 700;
}

.f-block {
	padding: 0 0 50px;
}

.f-block ul {
	display: block;
	padding: 0;
	margin: 0;
	list-style: none;
}

.f-block ul li {
	display: block;
	padding: 0 0 10px;
	margin: 0;
	list-style: none;
	display: flex;
}

.f-block a {
	position: relative;
}

.f-block a:after {
	position: absolute;
	bottom: -2px;
	height: 1px;
	background: #fff;
	content: "";
	left: 0;
	right: auto;
	width: 0;
	transition: 0.2s all;
}

.f-block a:hover:after {
	right: 0;
	width: 100%;
}

.f-block ul li a {
	display: block;
	font-size: 16px;
	line-height: 16px;
	color: #ffffff;
	font-weight: 500;
	text-decoration: none;
}

.f-block p {
	font-size: 16px;
	line-height: 16px;
	color: #fff;
	margin: 0;
}

.f-bottom {
	padding: 40px 50px;
	background: #171717;
}

.f-bottom p {
	font-size: 14px;
	line-height: 14px;
	color: #fff;
	margin: 0;
}

.f-bottom p a {
	color: #fff;
}

.f-block ul li p a {
	font-size: 24px;
	line-height: 30px;
	text-decoration: none;
	color: #fff;
	display: inline-block;
}

.f-right .newsletter {
	padding: 50px 0 0;
}

.f-top {
	padding: 60px 0;
	background: #1f1f1f;
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 30px;
}

.f-right {
	height: 100%;
	display: flex;
	flex-direction: column;
	border-left: 1px solid rgba(255, 255, 255, 0.1);
	padding-left: 50px;
}

.f-right .social {
	margin-top: auto;
}

.f-right .social a {
	color: #fafafa;
	width: 20px;
	display: inline-block;
}

.f-right .newsletter .form-group {
	position: relative;
}

.f-right .newsletter .form-control {
	background: rgba(255, 255, 255, 0.1);
	height: 62px;
	border: none !important;
	box-shadow: none !important;
	padding: 20px;
	color: #fff;
	padding-right: 56px;
}

.f-right .newsletter .form-group .btn svg {
	width: 16px;
}

.f-right .newsletter .form-group .btn {
	position: absolute;
	right: 0;
	border-radius: 50%;
	background: #ffffff;
	color: #171717;
	padding: 0;
	height: 40px;
	width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 12px;
	right: 11px;
}

.buttons-box {
	display: flex;
	justify-content: flex-end;
}