/*****************************************************************
1.  Homepage
******************************************************************/

/*==============================
    Default Style
==============================*/
:root{
	--primary: #1d77ca;
	--secondary: #1e1e1e;
	--red-color: #f40;
	--body-text-color: #343434;
	--white: #ffffff;
	--black: #000000;
    --gray-color: #e3e3e3;

	--heading-1: 54px;
	--heading-2: 44px;
	--heading-3: 30px;
	--heading-4: 26px;
	--heading-5: 22px;
	--heading-6: 18px;

	--font-18:18px;

	--fw-300: 300;
	--fw-400: 400;
	--fw-500: 500;
	--fw-600: 600;
	--fw-700: 700;
	--fw-800: 800;

	--body-font-size: 16px;
	--font-poppins: "Poppins", sans-serif;
	--radius-5: 5px;
	--radius-10: 10px;
	--radius-20: 20px;
	--radius-40: 40px;
	--ease-transition: all 0.3s ease-in-out;
}
/*==============================
    Typography Styles
==============================*/
*{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
body{
	margin: 0;
    font-family: var(--font-poppins);
    font-size: var(--body-font-size);
    font-weight: var(--fw-400);
    line-height: 21px;
    color: var(--body-text-color);
}
a{
    text-decoration: none;
	transition: var(--ease-transition);
	color: var(--primary);
}
h1, h2, h3, h4, h5, h6{
	color: var(--secondary);
}
h1{
	font-size: var(--heading-1);
	line-height: 64px;
	font-weight: var(--fw-800);
}
h2{
	font-size: var(--heading-2);
	line-height: 54px;
	font-weight: var(--fw-800);
}
h3{
	font-size: var(--heading-3);
	line-height: 36px;
	font-weight: var(--fw-700);
}
h4{
	font-size: var(--heading-4);
	line-height: 30px;
	font-weight: var(--fw-700);
}
h5{
	font-size: var(--heading-5);
	line-height: 28px;
	font-weight: var(--fw-500);
}
h6{
	font-size: var(--heading-6);
	line-height: 22px;
	font-weight: var(--fw-500);
}
p{
	font-size: var(--body-font-size);
	line-height: 28px;
}
ul{
    padding: 0;
    margin: 0;
}
img{
	vertical-align: middle;
}
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="date"],
input[type="time"],
select,
textarea{
    font-size: var(--body-font-size);
    padding: 10px 16px;
    width: 100%;
    color: var(--black);
    font-family: var(--font-poppins);
    border: 1px solid #e5e9f2;
	min-height: 48px;
	border-radius: var(--radius-5);
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
select:focus,
textarea:focus{
    outline: none;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}
/*==============================
    Global Elements CSS
==============================*/
.fw-400{
	font-weight: var(--fw-400);
}
.fw-500{
	font-weight: var(--fw-500);
}
.fw-600{
	font-weight: var(--fw-600);
}
.fw-700{
	font-weight: var(--fw-700);
}
.fw-800{
	font-weight: var(--fw-800);
}
.pat-180{
	padding-top: 180px;
}
.pab-180{
	padding-bottom: 180px;
}
.pat-150{
	padding-top: 150px;
}
.pab-150{
	padding-bottom: 150px;
}
.patb-120{
	padding-top: 120px;
	padding-bottom: 120px;
}
.pat-120{
	padding-top: 120px;
}
.pab-120{
	padding-bottom: 120px;
}
.patb-90{
	padding-top: 90px;
	padding-bottom: 90px;
}
.pat-90{
	padding-top: 90px;
}
.pab-90{
	padding-bottom: 90px;
}
.patb-70{
	padding-top: 70px;
	padding-bottom: 70px;
}
.pat-70{
	padding-top: 70px;
}
.pab-70{
	padding-bottom: 70px;
}
.pat-75{
	padding-top: 75px;
}
.pab-75{
	padding-bottom: 75px;
}
.patb-60{
	padding-top: 60px;
	padding-bottom: 60px;
}
.pat-60{
	padding-top: 60px;
}
.pab-60{
	padding-bottom: 60px;
}
.patb-50{
	padding-top: 50px;
	padding-bottom: 50px;
}
.pat-50{
	padding-top: 50px;
}
.pab-50{
	padding-bottom: 50px;
}
.color-primary{
	color: var(--primary);
}
.size-14{
	font-size: 14px;
	line-height: 22px;
}
.turncate-2{
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.turncate-3{
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.img-fit{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.text-center{
	text-align: center;
}
.default-btn{
	background-color: var(--red-color);
	color: var(--white);
	border: none;
	padding: 12px 30px;
    min-width: 130px;
    font-size: 16px;
	border-radius: var(--radius-5);
	cursor: pointer;
	margin-top: 20px;
	font-weight: 600;
	transition: all 350ms ease-in-out;
}
.default-btn:hover{
	background-color: #333;
}
.error.text-danger{
    font-size: 14px;
    color: #f00 !important;
}
.default-btn:disabled{
	cursor: not-allowed;
	opacity: 0.5;
}
.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.all_order_details table{
	border-collapse: collapse;
	border-color: #edf2f5;
}
.all_order_details thead th,
.all_order_details tbody th{
	font-weight: 600 !important;
	color: #121212;
    text-transform: capitalize !important;
    background-color: #F8FAFB !important;
    padding: 15px !important;
	border-right-color: #edf2f5 !important;
}
.all_order_details tbody td{
	font-weight: 400;
    padding: 15px !important;
    color: #121212;
    height: auto !important;
	border-right-color: #edf2f5 !important;
}
.all_order_details tbody th:first-child{
	text-align: right;
}
/*==============================
    1.1 Header Section
==============================*/
.header{
	text-align: center;
	padding: 10px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,0.1);
	z-index: 1;
	position: relative;
}
.header img{
	height: 80px;
}

/*==============================
    1.2 Footer Section
==============================*/
.footer{
	text-align: center;
	border-top: 1px solid #eee;
	padding: 15px;
	background-color: var(--primary);
}
.footer p,
.footer p>a{
	margin: 0;
	color: var(--white);
}
.footer p>a{
	text-decoration: underline;
}
/*==============================
    1.3 Form Section
==============================*/
.fornt-form{
	padding: 50px;
	overflow: hidden;
	background-image: url("../images/dot-pattern-bg.png");
	background-repeat: repeat;
	background-size: cover;
	position: relative;
}
.form-inner{
	max-width: 750px;
	width: 100%;
	margin: 0 auto;
	background-color: rgba(255, 255, 255, 1);
    padding: 35px 35px 25px;
    border-radius: 10px;
    box-shadow: 20px 20px 30px rgba(0,0,0,0.2);
    -webkit-box-shadow: 5px 5px 30px rgba(0,0,0,0.1);
	position: relative;
	z-index: 1;
}
.form-group-madiv{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	column-gap: 24px;
}
.form-group-madiv .form-group{
	flex: 0 0 calc(50% - 12px);
	-webkit-flex: 0 0 calc(50% - 12px);
	max-width: calc(50% - 12px);
}
/*.form-inner::after{
	content: '';
	position: absolute;
	right: -30px;
	top: 0;
	width: 200px;
	height: 50%;
	background-color: var(--primary);
	border-radius: var(--radius-40);
	z-index: -1;
	opacity: 0.05;
	transform: rotate(16deg);
	-webkit-transform: rotate(16deg);
}*/
.form-inner h2{
	font-size: 26px;
	line-height: 32px;
	font-weight: var(--fw-600);
	color: var(--body-text-color);
	text-align: center;
	margin: 0 0 40px;
}
.form-inner h2 span{
	color: var(--red-color);
}
.form-inner .form-group{
	margin-bottom: 16px;
}
.form-inner .form-group>label{
	margin-bottom: 4px;
    display: block;
    font-weight: var(--fw-500);
}
.form-inner .form-group select{
	-webkit-appearance: none;
  	-moz-appearance: none;
  	-o-appearance: none;
  	appearance: none;
	background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="26" height="15" viewBox="0 0 26 15" fill="none"><g clip-path="url(%23clip0_355_2)"><path d="M13.045 14.0454C12.9017 14.0456 12.7598 14.0174 12.6274 13.9625C12.4951 13.9077 12.3749 13.8272 12.2737 13.7258L1.36463 2.81671C0.938354 2.39041 0.938354 1.70011 1.36463 1.27411C1.7909 0.848207 2.48117 0.847907 2.90717 1.27411L13.045 11.412L23.1828 1.27411C23.609 0.847907 24.2993 0.847907 24.7253 1.27411C25.1513 1.70041 25.1516 2.39071 24.7253 2.81671L13.8162 13.7258C13.7151 13.8272 13.5948 13.9077 13.4625 13.9625C13.3301 14.0174 13.1882 14.0456 13.045 14.0454Z" fill="%23343434"/></g><defs><clipPath id="clip0_355_2"><rect width="14" height="25" fill="white" transform="matrix(0 -1 1 0 0.5 14.5)"/></clipPath></defs></svg>');
	background-repeat: no-repeat;
	background-size: 16px;
	background-position: calc(100% - 16px) center;
	padding-right: 40px;
}
.file-add{
	border: 1px dashed var(--gray-color);
	padding: 15px 10px;
	position: relative;
	border-radius: var(--radius-5);
}
.file-add input{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: var(--radius-5);
	opacity: 0;
}
.step2pimg{
    width: 150px;
    height: 100px;
    margin: 0 auto;
    background-color: rgb(201, 232, 190);
    border-radius: 20px;
    overflow: hidden;
}
.image-face,
.image-name{
    color: var(--secondary);
    font-size: 14px;
    line-height: 1.3;
    display: block;
    margin-top: 10px;
	text-align: center;
	word-break: break-all;
}
.dumblle1{
	position: absolute;
	left: 5%;
    bottom: 10%;
    opacity: 0.5;
}
.dumblle1 img{
	width: 60px;
}
.dumblle2{
	position: absolute;
	right: 5%;
    top: 10%;
    opacity: 0.5;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}
.dumblle2 img{
	height: 60px;
}
.dumblle3{
	position: absolute;
	right: 16%;
    bottom: 3%;
    opacity: 0.2;
}
.dumblle3 img{
	width: 70px;
}
.dumblle4{
	position: absolute;
	left: -150px;
    top: 8%;
    opacity: 0.3;
    z-index: -1;
}
.dumblle4 img{
	width: 50px;
    transform: rotate(15deg);
}

.package_detail_bottom_new>h6{
	background-color: #f3f3f3;
	padding: 14px;
	text-align: center;
	border-radius: 5px;
}
.package_detail_bottom_new>h6.mb-4{
	margin-bottom: 20px;
}
.package_detail_bottom_new ul{
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	gap: 30px 20px;
}
.package_detail_bottom_new ul li{
	display: block;
	flex: 0 0 calc(50% - 10px);
	-webkit-flex: 0 0 calc(50% - 10px);
}
.package_detail_bottom_new ul li label{
	font-weight: 600;
	display: block;
	margin-bottom: 5px;
}

.min-height-100{
	min-height: calc(100vh - 159px);
    display: flex;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
}
.payment-bottom-btn{
	margin-top: 40px;
}
.success-ticon svg{
	width: 80px;
	height: 80px;
}
.all-payment{
	color: var(--red-color);
	font-weight: 600;
	font-size: 30px;
	margin: 24px 0 14px;
}
.payment-sucees-msg{
	margin: 0 0 10px;
	color: green;
	font-weight: 600;
}
.payment-error-msg{
	margin: 0 0 10px;
	color: red;
	font-weight: 600;
}
.payment-id-msg{
	font-weight: 600;
}


.plan-details .plan-title {
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    background: #ff440014;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 40px 0px 25px;

}
.plan-details .plan-title span {
    color: #ff4400;
}
.package_features {
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    position: relative;
    margin-bottom: 15px;
    display: inline-block;
}
.plan-details ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    font-size: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 10px;
    column-gap: 20px;
}
#signature-container{
	position: relative;
	width: 100%;
	max-width: 680px;
}
#signature-container .signature-pad{
	border: 1px solid #e5e9f2;
    border-radius: var(--radius-5);
	width: 100%;
	aspect-ratio: auto 644 / 214;
}
#clear-signature{
	position: absolute;
	right: 10px;
	top: 10px;
	background-color: #f00;
	color: var(--white);
    border: none;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: var(--radius-5);
    cursor: pointer;
    font-weight: 600;
    transition: all 350ms ease-in-out;
}
#clear-signature:focus{
	outline: none;
}
.modal-header .modal-title{
	text-transform: capitalize;
	font-weight: 700 !important;
	font-size: 20px;
    color: #000;
}
.modal-body, 
.modal-footer {
    padding: 25px !important;
}
.modal-body{
    padding-top: 15px !important;
}
.modal-header{
    padding: 12px 25px !important;
    align-items: center !important;
}
.modal-footer{
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}
.modal-header .close{
    padding: 0 !important;
    margin: 0 !important;
    opacity: 1;
    width: 35px;
    height: 35px;
    background: #001d3d;
    border-radius: 5px;
	line-height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-header .close span{
    box-shadow: none;
    text-shadow: none;
    color: #fff;
    font-weight: 400;
	height: 22px;
}
.modal-body table{
	width: 100% !important;
}
.modal-body td{
	padding: 0 0 10px !important;
	font-size: 14px;
    font-weight: 400;
    color: #121212;
	line-height: 1.5;
}
.modal-body table:nth-last-of-type(1) td{
	padding-bottom: 0 !important;
}
.inner_lang_select{
	position: absolute;
	right: 50px;
    top: 25px;
}
@media screen and (max-width: 767px){
	.fornt-form{
		padding: 20px;
	}
	.form-inner{
		padding: 30px 20px 20px;
	}
	.form-inner h2{
		font-size: 22px;
    	line-height: 28px;
		margin-bottom: 20px;
	}
	.form-group-madiv .form-group,
	.package_detail_bottom_new ul li{
		flex: 0 0 100%;
		-webkit-flex: 0 0 100%;
		max-width: 100%;
	}
	.package_detail_bottom_new ul{
		gap: 24px 20px;
	}
	.payment-bottom-btn{
		margin-top: 20px;
	}
	.package_detail_bottom_new>h6{
		margin: 20px 0 !important;
	}
	.inner_lang_select{
		right: 20px;
		top: 30px;
	}
	.inner_lang_select select{
		padding: 8px;
        min-height: 40px;
	}
}

@media screen and (max-width:576px) {
    .plan-details ul {
        grid-template-columns: 1fr;
    }
    .plan-details .plan-title {
        font-size: 18px;
        line-height: 28px;
    }
    .package_features {
        font-size: 16px;
        line-height: 26px;
    }
	#clear-signature{
		font-size: 12px;
		line-height: 12px;
	}
	.modal-header, 
	.modal-body{
		padding-left: 15px !important;
        padding-right: 15px !important;
	}
}
