@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.2/font/bootstrap-icons.css");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary:#00a0f5;
    --secondary:#008DD2;
    --text_clr:#5c5c5c;
    --white:#fff;
    --light:#eef0f2;
}
*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    color: var(--text_clr);
}
p {
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
}
a {
    text-decoration: none;
    color: var(--primary);
}
img {
    width:100%;
    height:auto;
}
ul, ol {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}
h1 {font-size:2rem; font-weight:700}
h2 {font-size:1.8rem; font-weight:700}
h3 {font-size:1.6rem; font-weight:700}
h4 {font-size:1.4rem; font-weight:700}
h5 {font-size:1.2rem; font-weight:700}
h6 {font-size:1rem; font-weight:700}
.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}
.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
}
.btn-primary:hover {
    color: #fff;
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary:hover {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
}
.bg-theme {
	background:var(--primary)!important
}
section {
    position: relative;
}
header{
    background: var(--primary);
	width:100%;
	padding: 0.6rem;
}
header .logo {
    padding-top:.6rem;
    padding-bottom:.6rem;
}

.banner .banner-area {
    background: var(--light);
    padding: 2rem 0;
    text-align: center;
    border-radius: 0 0 1rem 1rem;
}
.banner .banner-area .page-title h1 {
    color:var(--primary)
}
.title {
    display: block;
    border-bottom: 3px solid var(--primary);
}
.title .page-title {
    background: var(--primary);
    display: inline-block;
	padding:.5rem 1rem
}
.title .page-title h2 {
	color:var(--bs-white);
	margin-bottom:0;
}
.page-content {
	margin-top:1rem
}
.intro{
	display: flex;
	flex-direction:row;
	align-items:flex-start;
	justify-content:space-between;
	flex-wrap:wrap;
}
.instruction {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 20px;
    flex: 1 1 500px;
	
}
.instruction:nth-child(n+3) {
	border-top: 2px solid var(--primary);
}
.instruction:nth-child(2n) {
	border-left: 2px solid var(--primary);
}
.instruction .icon-holder {
	padding-right:15px;
	flex: 0 1 130px;
}
.instruction .info-holder {
	flex: 1 1 100px;
}
ul.list {
	list-style-type: disc;
    padding-left: 17px;
}
.step {
    text-align: center;
	position:relative;
	background: var(--light);
    padding: 1.5rem;
	margin-bottom: 0.5rem;
}

.step + .step::before {
	content: "";
	height:100%;
	width:10px;
	background:#e54938;
	position:absolute;
	top: 0;
    left: 0;
}
.step + .step::after {
	display: inline-block;
    content: "\F231";
    font-family: bootstrap-icons !important;
    line-height: 1;
    font-size: 6rem;
    color: #e54938;
    z-index: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -29px;
}
.step figure img {
    width:130px;
	padding:20px 0;
}



.navigate {
    margin:2rem 0;
}
.prog-bar ul.prog-nav {
    position: relative;
    display: flex;
    justify-content: space-between;
}
.prog-bar ul.prog-nav li {
    position: relative;
    flex: 1;
    text-align: center;
}
.prog-bar ul.prog-nav li:nth-child(-n+2):after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 19px;
    width: 100%;
    height: 3px;
    background-color: #f3f3f3;
    z-index: -1;
}
.prog-bar ul.prog-nav li a {
    display: inline-block;
    text-align: center;
    background:var(--light);
    border-radius: 50%;
    height: 40px;
    width: 40px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 2.5rem;
}
.prog-bar ul.prog-nav li.finish a.nav-link {
    background:var(--primary);
    color:var(--white);
}
.prog-bar ul.prog-nav li.finish:after {
    background:var(--primary);
    color:var(--white);
}
.prog-bar ul.prog-nav li.active a.nav-link {
    background:var(--secondary);
    color:var(--white);
}


.form-floating input[type='file'] {
    height: calc(3.5rem + 2px);
    padding: .75rem .65rem .75rem 4.5rem;
    background: var(--white);
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    width: 100%;
}
.form-floating textarea {
    min-height: 132px;
}

.contact-sec {
    position: relative;
    margin:2rem 0;
}
.contact-details {
    background: var(--light);
    margin-bottom: 1.5rem;
    border-radius: 1rem;
    position: relative;
}
.contact-details h4 {
    font-size: 1rem;
    line-height: 1.2rem;
    color: var(--primary);
    text-transform: uppercase;
    padding-bottom: 0.5rem;
}
.contact-details .contact-holder {
    display: flex;
    flex-direction: row;
    margin-bottom: .5rem;
}
.contact-details .contact-holder .icon {
    padding-right:1rem;
    color: #00a0e3;
    font-size: 1.2rem;
}
.qrcode {
    max-width: 380px;
    width: 100%;
    background: var(--white);
    text-align: center;
    border-radius:1rem ;
    padding:2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 5px 5px 10px #ddd;
}
.qrcode .holder {
    width: 240px;
    height: auto;
    text-align: center;
}
.amount h2 {
    font-size: 2.5rem;
    margin-bottom: .8rem;
    color: var(--primary);
}
.qrcode .link h6 {
    font-size: .8rem;
    font-weight: 600;
    background: var(--light);
    padding: .6rem;
    margin-top: .5rem;
    color: var(--secondary);
    word-break: break-all;
}
.payment-details .detail {
    width: 100%;
    background: var(--white);
    text-align: center;
    border-radius:1rem ;
    padding:1rem;
    box-shadow: 5px 5px 10px #ddd;
    margin: 1.2rem 0;
}

footer .footer {
    background-color: var(--text_clr);
    color: var(--white);
}
footer .footer .copyright p, footer .footer ul li {
    font-size: .9rem;
    line-height: 1.5rem;
    font-weight: 400;
    color: var(--white);
    margin:1rem 0;
}
footer .footer ul li a {
    font-size: .8rem;
    line-height: 1rem;
    font-weight: 300;
    color: var(--secondary);
    margin:1rem 0;
}
footer .footer ul li span {
    color: var(--bs-gray-600);
}
