/*  Form  */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

:root {
	--text-color: #000000;
	--headings-color: #111111;

	--theme-color-white: #ffffff;
  --theme-color-white-rgb: 255,255,255;
  --theme-color-black: #000;
  --theme-color-black-rgb: 0,0,0;

	--theme-color1: #58dc00;
  --theme-color-rgb: 207,244,252;
	--theme-color2: #cff4fc;
	--theme-color3: #1a3757!important;
	--theme-color4: #2290ff;

	--text-red: #ff0000;

	--theme-color1-text-color: #ffffff;
	--theme-color4-text-color: #ffffff;

	--text-font: "Roboto", sans-serif;

	--body-line-height: 2;
	--body-font-weight: 400;



}

* {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
	font-size: 100%;
}

@media (min-width: 1400px) {
	.container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
			max-width: 1150px;
	}
}

body {
	background-color: #fff;
	color: var(--text-color);
	font-family: var(--text-font);
	font-size: 16px;
	font-weight: var(--body-font-weight);
	line-height: var(--body-line-height);
}

.page-wrapper {
	background-color: #1a3757!important;
	overflow-x: hidden;
	justify-content: start;
	display: flex;
	flex-direction: column;
	padding: 0 10px 100px;
}

.page-wrapper.style-two {
	padding-bottom: 100px;
	height: 100vh;
}

.page-wrapper .inner-page {
	padding-top: 92px;
}

a {
	text-decoration: none;
}

li {
	list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: var(--headings-color);
	font-family: var(--text-font);
	font-weight: 500;
	letter-spacing: .01em;
  margin-bottom: 1rem;
}

h1 {
	font-size: 60px;
}
h2 {
	font-size: 45px;
}
h3 {
	font-size: 36px;
}
h4 {
	font-size: 24px;
}
h5 {
	font-size: 20px;
}
h6 {
	font-size: 18px;
}

.theme-btn {
	background-color: var(--theme-color1);
	border-radius: 10px;
	color: var(--theme-color1-text-color);
	display: inline-block;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 1.3px;
	padding: 17px 53.5px;
	transition: .3s ease;
}
@media (max-width: 767.98px) {
	.theme-btn {
		font-size: 14px;
		padding: 13px 25px;
	}
}
.theme-btn:hover{
	background-color: var(--headings-color);
	color: var(--theme-color1);
}
.theme-btn.theme-btn-blue {
	background-color: var(--theme-color4);
	color: var(--theme-color4-text-color);
}
.theme-btn.theme-btn-blue:hover {
	background-color: var(--theme-color1);
	color: var(--theme-color1-text-color);
}

.theme-btn.dark-style {
	background-color: var(--headings-color);
	color: var(--theme-color-white);
	transition: .3s ease;
}
.theme-btn.dark-style:hover{
	background-color: var(--theme-color1);
	color: var(--headings-color);
}

.section-title {
	margin-bottom: 38px;
}

.section-title h2 {
	color: var(--theme-color-white);
	margin-bottom: 0;
}
@media (max-width: 1199.98px) {
	.section-title h2 {
		font-size: 32px;
	}
}

.section-title .text {
	color: var(--theme-color-white);
	font-size: 18px;
	margin-top: 21px;
}
@media (max-width: 1199.98px) {
	.section-title .text {
		font-size: 14px;
		margin-top: 15px;
	}
}
.mb-30{
	margin-bottom: 30px !important;
}
.mb-35{
	margin-bottom: 35px !important;
}
.mb-40{
	margin-bottom: 40px !important;
}
.mb-45{
	margin-bottom: 35px !important;
}
.mb-50{
	margin-bottom: 50px !important;
}

.form-style {
	background-color: var(--theme-color-white);
	border-radius: 10px;
	padding: 53px 50px 60px;
}

@media (max-width: 767.98px) {
	.form-style {
		padding: 25px 15px 40px;
	}
}

.form-style .form-title {
	margin-bottom: 5px;
	margin-top: 28px;
}
@media (max-width: 575.98px) {
	.form-style .form-title {
		font-size: 20px;
	}
}

.form-style .form-text {
	margin-bottom: 14px;
}
@media (max-width: 575.98px) {
	.form-style .form-text {
		font-size: 13px;
	}
}

.form-style .form-box {
	margin-bottom: 16px;
}

.form-style .check-box {
	border: 3px solid var(--theme-color2);
	border-radius: 5px;
	padding: 17px 18px 13px;
	margin-bottom: 44px;
}

.form-style .check-box .form-check {
	border: 3px solid var(--theme-color2);
	border-radius: 5px;
	padding: 6px 18px 5px 38px;
	margin-top: 20px;
}
@media (max-width: 575.98px) {
	.form-style .check-box .form-check {
		padding: 6px 18px 5px 15px;
	}
}

.form-style .check-box .form-check .form-check-input {
	border: 2px solid var(--theme-color4);
	border-radius: 3px;
	height: 23px;
	width: 23px;
	padding: 0;
	margin-right: 12px;
	cursor: pointer;
}
@media (max-width: 575.98px) {
	.form-style .check-box .form-check .form-check-input {
		margin-left: 0;
		margin-bottom: 8px;
	}
}

.form-style .check-box .form-check .form-check-input:checked {
	background-color: var(--theme-color4);
}

.form-style .check-box .form-check .form-check-input:focus {
	box-shadow: none;
	outline: none;
}

.form-style .check-box .form-check .form-check-label {
	cursor: pointer;
	margin-bottom: 0;
}

.form-style.step5-style .heading{
	margin-bottom: 30px;
}
.form-style.step5-style .heading img{
	margin-right: 10px;
}

.form-style.step5-style .title{
	margin-bottom: 0;
}
.form-style.step5-style .form-text{
  font-size: 16px;
  font-family: "Roboto";
  color: rgb(0, 0, 0);
  line-height: 1.995;
}
.form-style.step5-style .text2{
	margin-bottom: 50px;
}
.form-style.step5-style .btn-box{
	margin-top: 0;
}


.form-style .form-title-label {
	font-weight: 500;
	line-height: 1;
	margin-bottom: 0;
}
@media (max-width: 575.98px) {
	.form-style .form-title-label {
		font-size: 14px;
	}
}

.form-style .form-title-label span {
	color: #ff0101;
}

.form-style .form-box .except-label-style {
	margin-top: 32px;
}

.form-style .input-note {
	color: rgba(var(--theme-color-black-rgb), .7);
	margin-top: 0;
}

.form-style .input-note .icon {
	margin-right: 2px;
}
.file-upload-lebel{
	border: 3px solid var(--theme-color2);
	border-radius: 3px;
	color: rgba(var(--theme-color-black-rgb), 0.6);
	cursor: pointer;
	display: block;
	height: 60px;
	line-height: 55px;
	padding-left: 175px;
	width: 100%;
}
@media (max-width: 575.98px) {
	.file-upload-lebel {
		padding-left: 143px;
	}
}
.file-upload-lebel:before{
	background-color: rgba(var(--theme-color-rgb), 0.3);
	border-radius: 3px 0 0 3px;
	border: 1px solid var(--theme-color2);
	bottom: 0;
	content: "";
  height: 60px;
	left: 0;
	position: absolute;
	top: 0;
	width: 142px;
}
.file-upload-lebel:after{
	border-radius: 3px 0 0 3px;
	bottom: 0;
	content: "Choose File";
  height: 60px;
	left: 25px;
	position: absolute;
	top: 0;
	width: 140px;
}
.form-file-upload{
	background:transparent;
	background-color: transparent;
	height: 0;
	width: 0%;
}
.form-file-upload[type="file"]{
  background-color: transparent;
  border: none;
  padding: 0;
  width: 0;
}
input,
select,
.form-control {
  background:transparent;
  border: 3px solid var(--theme-color2);
  border-radius: 5px;
  color: var(--text-color);
  font-size: 16px;
  height: 60px;
  padding: 0 30px;
  width: 100%;
}
.form-check-input[type=radio] {
	padding: 0;
	margin-top: 7px;
}

.form-control:focus {
	border-color: var(--theme-color1);
  box-shadow: none;
  outline: none;
}

.form-control.control-two {
  border-color: var(--text-red);
}

textarea.form-control {
	min-height: 132px;
	height: auto;
}

.form-select {
  border: 3px solid var(--theme-color2);
  border-radius: 5px;
  color: var(--text-color);
  font-size: 16px;
  height: 60px;
  padding: 0 22px;
  width: 100%;
}

.form-select:focus {
	border-color: var(--theme-color1);
  box-shadow: none;
  outline: none;
}

.form-control::placeholder {
  color: rgba(var(--theme-color-black-rgb), .6);
  opacity: 1;
}

.form-control:placeholder {
  color: rgba(var(--theme-color-black-rgb), .6);
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: rgba(var(--theme-color-black-rgb), .6);
  opacity: 1;
}

.form-control::-ms-input-placeholder {
  color: rgba(var(--theme-color-black-rgb), .6);
  opacity: 1;
}

.form-style .form-floating .form-control {
	padding: 35px 22px 16px;
	min-height: 60px;
	height: 60px;
}

.form-style .form-floating textarea.form-control {
	min-height: 138px;
	height: auto;
}

@media (max-width: 575.98px) {
	.form-style .form-floating textarea.form-control + label {
		font-size: 11px;
	}
}

.form-style .form-floating > label {
	padding: 14px 22px 16px;
	margin-bottom: 0;
	width: 100%;
}

.form-style .btn-box {
	margin-top: 24px;
}

@media (max-width: 575.98px) {
	.form-style .btn-box .theme-btn.dark-style {
		margin-bottom: 10px;
	}
}

.form-style input::placeholder{
  color: rgba(0, 0, 0, 0.6);
}
.form-style .form-floating > label{
  color: rgba(0, 0, 0, 0.6);
}
.form-style.step5-style .check-box .form-check .form-check-input:checked{
  background-color: var(--theme-color1);
  border: none;
  border-radius: 3px;
  height: 23px;
  width: 23px;
}
.form-style.step5-style .btn-box .dark-style{
	margin-right: 20px;
}

.box-style {
	border: 3px solid var(--theme-color2);
	border-radius: 5px;
	padding: 12px 17px 3px;
}

.box-style-two {
	background-color: var(--theme-color2);
	border-radius: 5px;
	padding: 35px 33px 13px;
	margin-bottom: 40px;
}

.box-style-two .icon {
	margin-right: 1px;
  margin-top: -4px;
  margin-left: -26px;
}

@media (max-width: 575.98px) {
	.box-style-two .text {
		font-size: 14px;
	}
}

.call-to-action {
	background-color: var(--theme-color-white);
	border-radius: 10px;
	padding: 55px 48px 51px;
	text-align: center;
	margin-bottom: 80px;
}
@media (max-width: 767.98px) {
	.call-to-action {
		padding: 25px;
	}
}

.call-to-action .inner-box {
	border: 3px solid var(--theme-color2);
	padding: 30px 45px 45px;
}
@media (max-width: 767.98px) {
	.call-to-action .inner-box {
		padding: 20px 15px 25px;
	}
}

.call-to-action .title {
	margin-bottom: 14px;
}

@media (max-width: 767.98px) {
	.call-to-action .title {
		font-size: 30px;
	}
}

.call-to-action .theme-btn {
	margin-top: 31px;
}

.step-list {
	text-align: center;
	margin-bottom: 49px;
}
@media (max-width: 1199.98px) {
	.step-list {
		margin-bottom: 30px;
	}
}

.step-list .list-item {
	border: 1px solid var(--theme-color4);
	border-radius: 26.57px;
	color: var(--theme-color-white);
	display: inline-block;
	font-weight: 500;
	text-align: right;
	text-transform: uppercase;
	cursor: pointer;

    margin-bottom: 10px;
    font-size: 14px;
    min-width: 100px;
    padding: 4px 18px 5px;
    margin-right: 15px;
}

@media (max-width: 1199.98px) {
	.step-list .list-item{
		margin-bottom: 10px;
		font-size: 14px;
		min-width: 100px;
		padding: 4px 8px 5px;
		margin-right: 15px;
	}
}
@media (max-width: 767.98px) {
	.step-list .list-item {
		margin-right: 5px;
		margin-left: 5px;
	}
}
.step-list .list-item.active .count {
	background-color: var(--theme-color1);
}

.step-list .list-item:last-child {
	margin-right: 0;
}

.step-list .list-item .count {
	background-color: var(--theme-color4);
	border-radius: 50%;
	display: inline-block;
	min-width: 38px;
	height: 36px;
	line-height: 36px;
	margin-left: 12px;
	text-align: center;
}
@media (max-width: 1199.98px) {
	.step-list .list-item .count {
		font-size: 14px;
		height: 24px;
		line-height: 24px;
		width: 24px;
		min-width: 24px;
		margin-right: 5px;
	}
}

.form-section {
	padding: 144px 0;
}

.form-style.step4-style .form-check{
	margin-top: 0;
}
.form-style.step4-style .check-box .form-check{
	border: none;
	padding-left: 30px;
}
@media (max-width: 575.98px) {
	.form-style.step4-style .check-box .form-check {
		padding-left: 0;
	}
}
.form-style.step4-style .form-check-label{
  color: rgb(0, 0, 0);
  font-family: "Roboto";
	font-size: 18px;
	font-weight: 500;
  line-height: 1.2;
}
.form-style.step4-style .text{
	margin-bottom: 0;
}
.form-style.step4-style .ordering-list{
	padding-left: 0;
}
.form-style.step5-style .heading{
	margin-bottom: 30px;
}
.form-style.step5-style .heading img{
	margin-right: 10px;
}

.form-style.step5-style .title{
	margin-bottom: 0;
}
.form-style.step5-style .form-text{
  font-size: 16px;
  font-family: "Roboto";
  color: rgb(0, 0, 0);
  line-height: 1.995;
}
.form-style.step5-style .text2{
	margin-bottom: 50px;
}
.form-style.step5-style .btn-box{
	margin-top: 0;
}

.step5-header .title{
	margin-bottom: 15px;
}

@media (min-width: 1200px) {
	.step5-header .title{
		font-size: 41px;
	}
}
.step5-header .subtitle{
  font-size: 18px;
  color: var(--theme-color-white);
  line-height: 1.773;
}
@media (max-width: 575.98px) {
	.step5-header .subtitle{
		font-size: 14px;
	}
}

.step5-header .wrapper{
	background-color: var(--theme-color2);
	border-radius: 20px;
	margin-bottom: 45px;
	margin-top: 45px;
	padding: 40px 50px;
}
@media (max-width: 575.98px) {
	.step5-header .wrapper {
		padding: 30px 15px;
	}
}
.step5-header .wrapper .text-2{
	margin-bottom: 0;
}
.form-style.step4-style .check-box .form-check .form-check-input:checked,
.form-style.step5-style .check-box .form-check .form-check-input:checked{
  background-color: var(--theme-color1);
  border: none;
  border-radius: 3px;
  height: 23px;
  width: 23px;
}
.form-style.step5-style .btn-box .dark-style{
	margin-right: 20px;
}
@media (max-width: 399.98px) {
	.form-style.step5-style .btn-box .dark-style{
		margin-bottom: 10px;
	}
}
.form-style.step5-style .check-box .label-1,
.form-style.step5-style .check-box .label-2{
	margin-bottom: 35px;
}
.form-style.step5-style .check-box .label-2,
.form-style.step5-style .check-box .label-3{
	margin-left: 10px;
}
.form-style.step5-style .form-select{
	padding-left: 25px;
}
.form-style.step5-style .check-box.step5-style,
.form-style.step5-style .check-box.step5-style .form-check{
	border: none;
	padding: 0;
}
.form-style.step5-style .check-box.step5-style .form-check{
	padding-left: 25px;
}
@media (max-width: 575.98px) {
	.form-style.step5-style .check-box.step5-style .form-check {
		padding-left: 0;
	}
}

.owner-app-field{
	background-color: var(--theme-color-white);
	margin-top: 50px;
	position: relative;
}
.owner-app-field .title{
	border-bottom: 1px solid #ddd;
	margin-bottom: 40px;
	padding-bottom: 15px;
	padding-top: 15px;
}
.owner-info-list .list-group-item{
	background-color: #fafafa;
	font-weight: 600;
}
.owner-info-list .list-group-item span{
	color: rgba(var(--theme-color-black-rgb), 0.7);
	font-weight: 400;
}

label.validate-error {
	display: none !important;
}
.validate-error {
	border-color: #ff0000 !important;
}
.valid {
	border-color: #58dc00 !important;
}
.field-disabled {
	border-color: var(--bs-secondary-bg);
}
.file-upload-lebel:has(+.validate-error) {
	border-color: #ff0000 !important;
}

@media (max-width: 575.98px) {
	.file-upload-lebel {
			font-size: 11px;
			padding-left: 110px;
	}
	.file-upload-lebel:before {
    width: 101px;
	}
}