@font-face{font-family:'Gotham';src:url('../fonts/Gotham-Book.ttf') format('ttf');font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:'Gotham';src:url('../fonts/Gotham-Bold.ttf') format('ttf'),url('../fonts/Gotham-Bold.otf') format('otf');font-weight:700;font-style:normal;font-display:swap}
@font-face{font-family:'Gotham';src:url('../fonts/Gotham-Black.ttf') format('ttf'),url('../fonts/Gotham-Black.otf') format('otf');font-weight:900;font-style:normal;font-display:swap}
@font-face{font-family:'Gotham';src:url('../fonts/Gotham-Light.ttf') format('ttf'),url('../fonts/Gotham-Light.otf') format('otf');font-weight:300;font-style:normal;font-display:swap}
@font-face{font-family:'Gotham';src:url('../fonts/Gotham-Medium.ttf') format('ttf');font-weight:500;font-style:normal;font-display:swap}
:root{
    --primary: #041e42;
    --hover: #a17d5c;
    --secondary: #4172a0;
    --font-family: 'Gotham',sans-serif;
    --font-base: 14px;
    --font-bold: 600;
    --font-normal: 500;
}
html { scroll-behavior: smooth; }
body{
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    font-size: var(--font-base);
    font-weight: 500;
}
.text-primary{ color: var(--primary) !important;}
.text-secondary{ color: var(--secondary) !important;}
.bg-primary{ background-color: var(--primary) !important;}
.bg-secondary{ background-color: var(--secondary) !important;}
.bg-light{ background-color: #f2f2f2;}
.btn{ border-radius: 0px; font-weight: 600;}
.font-normal{ font-weight: 500;}
a{ color: var(--primary); text-decoration: none;}
a:hover{ color: var(--secondary); }
h1,h2,h3,h4,h5,h6{ font-weight: var(--font-bold);}
button:focus{ box-shadow: none !important;}
.heading-title { font-size: 24px; font-weight: 700; margin-bottom: 40px; color: var(--primary); text-transform: capitalize;}
.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}
.btn-primary:hover{
    background: var(--secondary);
    border-color: var(--secondary);
}
.btn-secondary {
    background: var(--secondary);
    border-color: var(--secondary);
}
.btn-outline-primary {
    background: #fff;
    border-color: var(--primary);
    color: var(--primary);
}
.btn-outline-primary:hover{
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.steps-section, .apply-section, .testimonials-section, .apply-confidence-section{ 
    padding: 50px 0;
}

.top-nav { background: var(--primary);}
.top-nav ul.top-navbar {
    flex-direction: row;
    display: flex;
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}
.top-nav .top-navbar li > a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    padding: 6px 12px;
    font-weight: var(--font-bold);
    display: block;
    border-radius: 16px;
}
.top-nav .top-navbar li {padding: 10px 12px;}
.top-nav .top-navbar li:first-child {padding: 10px 10px 10px 0;}
.top-nav .top-navbar li > a:hover { background: var(--secondary);}
.language-dropdown img{ height: 20px; }
.language-dropdown .dropdown-menu .icon img{ height: 20px; }
.language-dropdown .dropdown-menu .text{ margin-left: 10px; font-weight: 500;}
.language-dropdown .dropdown-menu li a.dropdown-item{ padding: 8px 20px;  font-size: 14px; }
.language-dropdown a.dropdown-toggle{padding: 14px 0px;display: block;text-decoration: none;color: #ffffff;}
.dropdown .dropdown-toggle::after {
    content: '\f078';
    font-family: "Fontawesome";
    border: none;
    vertical-align: middle;
}
.language-dropdown:hover a.dropdown-toggle::after {
    transform: rotate(180deg);
}
.dropdown .dropdown-menu { border-radius: 0;}
.navbar .nav-link{
    color: var(--primary);
    font-weight: var(--font-bold);
    font-size: 1rem;
}
.navbar .nav-link:hover{ color: var(--secondary); }
.login-btn .icon img { height: 22px; }
.login-btn { 
    text-decoration: none; 
    color: var(--primary); 
    font-weight: var(--font-bold); 
    font-size: 1rem; 
    line-height: 20px;
    display: flex;
    align-items: center;
}
.login-btn:hover{ color: var(--secondary);}
.login-btn:hover .icon svg path{ fill: var(--secondary);}
.alert.alert-info{
    background-color: var(--secondary);
    color: #fff;
    margin-bottom: 3px;
    border-radius: 0;
    padding: 8px;
    border-color: var(--secondary);
}
.alert.alert-info a{ color: #ffffff; }
.navbar .navbar-toggler {
    border: none;
}
header{ box-shadow: 0px 0px 6px 2px rgb(0 0 0 / 6%);}

.navbar .navbar-toggler:focus {
    box-shadow: none;
}
.alert.alert-info .btn-close {
    background: transparent url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffff'><path d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/></svg>") center/0.8em auto no-repeat;
    opacity: 1;
}
.banner .text-section {
    background: var(--primary);
    padding: 30px;
    height: 100%;
    color: #fff;
}
.banner .text-section h3 {
    font-weight: 600;
    font-size: 26px;
    line-height: 40px;
}
.banner .text-section p {
    font-weight: 500;
    font-size: 18px;
    margin-top: 25px;
}
.banner .text-section .btn {
    border: 2px solid #fff;
    color: #fff;
    border-radius: 0;
    font-weight: 600;
    width: 65%;
    padding: 12px 20px;
}
.banner .text-section .btn:hover {
    color: #fff;
    background: var(--secondary);
    border-color: var(--secondary);
}
.banner .sign-up-section {
    padding: 20px 25px;
}
.banner .sign-up-section h3 {
    font-weight: 700;
    color: var(--primary);
}
.banner .banner_img {
    height: 100%;
}
.banner .sign-up-section .sign-up-btn{
    display: flex;
    align-items: center;
    margin: 20px 0;
}
.banner .sign-up-section .sign-up-btn .icon img{ height: 16px;}
.banner .sign-up-section .sign-up-btn .link { font-weight: 700; font-size: 18px;}
.banner .sign-up-section .sign-up-btn .link .icon{ font-size: var(--font-base); }
.banner .sign-up-section p{color: #000; padding-right: 50px;}
.banner .sign-up-section a{ font-weight: 600;}

.steps-section .step .icon, .apply-section .step .icon, .apply-confidence-section .step .icon{
    width: 120px;
    height: 120px;
    display: inline-block;
    line-height: 120px;
    border: 2px solid var(--primary);
    text-align: center;
    border-radius: 50%;
}
.steps-section .step .icon:hover{
    background-color: var(--primary);
    transition: .3s;
}
.apply-section .step .icon:hover svg path, .apply-confidence-section .step .icon:hover svg path{
    fill: #ffffff;
}
.steps-section .step, .apply-section .step, .apply-confidence-section .step { text-align: center;}
.steps-section .step .icon > img, .apply-section .step .icon > img, .apply-confidence-section .step .icon > img { height: 65px;}
.steps-section .step .step-title ,.apply-section .step .step-title, .apply-confidence-section .step .step-title {
    margin: 15px 0 0px;
    font-weight: 600;
    font-size: 1rem;
}
.steps-section .step {
    padding: 10px;
    min-height: 205px;
    border-radius: 8px;
}
.steps-section .step:hover .icon{ background: #fff;}
.steps-section .step:hover{ background-color: var(--primary); transition: 1.2s;}
.steps-section .step:hover .step-title{ color: #fff;}
.steps-section .step:hover .icon svg {
    transform: scale(1.1);
    transition: 0.3s;
}
.apply-section .box.step .icon{ background-color: #fff; border-color: #fff;}
.apply-confidence-section .box.step .icon{ background-color: var(--secondary); border-color: var(--secondary);}
.apply-section .step .icon:hover, .apply-confidence-section .step .icon:hover{
    background-color: var(--primary);
    border-color: var(--primary);
    transition: .3s;
}
.apply-section .box {
    padding: 30px;
    background: var(--secondary);
    color: #fff;
    border-radius: 8px;
    height: 100%;
}
.review-block {
    background-image: url('../images/inactive.svg');
    background-size: contain;
    background-repeat: no-repeat;
    padding: 30px 35px;
    width: 350px;
    height: 350px;
    margin: auto;
    line-height: 350px;
    text-align: center;
    display: flex;
    align-items: end;
}
.review-block p { line-height: 1.5;}
.customer-name {
    line-height: 1.5;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
}
.review-block .flag .icon > img {
    width: 35px;
    border-radius: 50%;
    height: 35px;
}
.review-block .flag {
    display: flex;
    align-items: center;
    justify-content: center;
}
.testimonial-carousel .owl-item.active.center {
    transform: scale(1.2);
    height: 100%;
}
.testimonial-carousel .owl-item.active.center .review-block {
    background-image: url('../images/active.svg');
    transition: 0.3s;
    color: #fff;
}
.testimonial-carousel .owl-stage-outer{ padding: 50px 0;}
.testimonial-carousel .owl-nav .owl-prev{ left: -15px; }
.testimonial-carousel .owl-nav .owl-next{ right: -15px; }

.testimonial-carousel .owl-nav button i{
    color: #999999;
    font-size: 32px;
}
.testimonial-carousel .owl-nav [class*=owl-]:hover{
    background: transparent;
}
.call-section{
    background-color: var(--primary);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color:#fff;
    text-align: center;
}
.call-section{ padding: 40px 0;}
.call-section p{ font-size: 18px; font-weight: 500;}
.call-section .btn{ margin-top: 20px; padding: 12px 16px; box-shadow: 0px 0px 10px 3px rgb(0 0 0 / 8%);}
.call-section .btn:hover{ background-color: #fff; border-color: #fff; color: var(--primary);}
.apply-confidence-section .step .step-title {font-weight: 700;}
.apply-confidence-section .btn{
    font-weight: 700;
    border-width: 2px;
    padding: 12px 20px;
    min-width: 250px;
}

footer{
    padding: 120px 0 50px;
    background: #FBFBFB url('../images/footer-bg.svg');
    background-size: cover;
    background-repeat: no-repeat;
    color: #fff;
}
footer .footer-title h4{ font-weight: 600; margin-bottom: 15px;font-size: 20px;}
footer .footer-title ul{ padding-left: 0;}
footer .footer-title li{ list-style: none; margin-bottom: 5px;}
footer .footer-title li a{ color: #fff;}
footer .footer-title li a:hover { color: #8bb0d2;}

.footer-bottom .social-icons a {
    border: 1px solid var(--primary);
    height: 36px;
    width: 36px;
    display: inline-block;
    border-radius: 50%;
    line-height: 36px;
    margin-right: 15px;
    text-align: center;
}
.footer-bottom .social-icons a:hover { border: 1px solid var(--secondary); background-color: var(--secondary); color: #fff;}
.footer-bottom .social-icons a:last-child { margin-right:0;}
.btn-scroll-top {
    display: block;
    position: fixed;
    right: 2rem;
    bottom: 1.25rem;
    width: 2.75rem;
    height: 2.75rem;
    line-height: 2.74rem;
    transition: right .4s cubic-bezier(.68,-.55,.265,1.55),opacity .3s,background-color .25s ease-in-out;
    border-radius: 50%;
    background-color: rgba(43,52,69,.25);
    color: #fff;
    text-align: center;
    opacity: 0;
    z-index: 1025;
}
.btn-scroll-top:hover{ background-color: var(--primary);}
.btn-scroll-top:hover i{ color: #fff;}
.btn-scroll-top.show{ opacity: 1;}
/* sign up */
.section-card {
	padding: 60px 0;
}
.section-card .card {
	background: white;
	padding: 30px;
	border-radius: 8px;
    border: 0;
}
.form-control, .form-select{ padding: 12px 20px;}
.form-control:focus, .form-select:focus {
    border-color: var(--secondary);
    outline: 0;
    box-shadow: none;
}
.form-check-input:focus{ box-shadow: none;}
.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}
header.sticky {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 9;
}
header.sticky + .banner {padding-top: 185px;}
.content-section {
    padding: 80px 0;
}
.content-section p strong{ font-size: 1.2rem;}
.content-section a{ color: var(--secondary);}
.contact-us .steps-section .step .icon{ font-size: 28px; width: 100px; height: 100px; line-height: 100px; }
.contact-us .steps-section .step{ min-height: auto; margin-bottom: 15px;}
.contact-us .steps-section .step a {
    font-size: 20px;
    font-weight: 600;
}
.contact-us .steps-section .step:hover a , .contact-us .steps-section .step:hover p{ color: #fff;}
.language-dropdown .dropdown-menu {
    border: 0;
    box-shadow: 0px 2px 4px #a9a9a98c;
    padding: 0;
    border-radius: 4px;
}
.language-dropdown .dropdown-menu li { border-bottom: 1px solid #ededed;}
header .navbar-nav .dropdown-menu {
    border: 0;
    padding: 0;
}
.content-section h2{ color: var(--primary); font-weight: var(--font-bold); font-size: 24px;}
.content-section h3{ color: var(--primary); font-weight: var(--font-bold); font-size: 22px;}
/* dashboard sidebar */
aside.sidebar .nav .nav-link >.icon svg path { fill: #f0f0f0;}
aside.sidebar .nav .nav-link >.icon svg, aside.sidebar .nav .nav-link >.icon img {
    width: 24px;
    height: 24px;
}
aside.sidebar .nav .nav-link .icon {
    margin-right: 10px;
}
aside.sidebar .nav .nav-link{ padding: 10px 20px; color: #fff; font-weight: 600; border-radius: 0;}
aside.sidebar .nav .nav-item{ 
    width: 100%;
}
aside.sidebar .nav .nav-item.active a{ 
    border-left: 5px solid #fff;
    color: var(--primary);
    font-size: 18px;
    border-radius: 4px;
    padding: 12px 20px;
}
aside.sidebar .nav .nav-item.active{ 
   background-color: var(--secondary);
}
aside.sidebar .nav .nav-item a:hover{ 
    background-color: var(--secondary);
    transition: .4s;
}
.dashboard{ background-color: #fbfbfb;}
.dashboard .wrapper .card{
    border: 0;
    box-shadow: none;
    padding: 20px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 16px;
}
.sidebar .wrapper .btn.btn-primary{ border-radius: 4px; min-width: 150px;}
.bg-login{
    background-image: linear-gradient(to bottom, rgb(33 57 80 / 80%), rgb(65 114 160 / 70%)), url('../images/login-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    min-height: 100vh;
}
.sec-register{ color: #fff;}
.sec-register ul{ padding-left: 20px;}
.btn-register{
    background-color: #fff;
    border-color: #fff;
    color: var(--secondary);
    padding: 10px 15px;
    min-width: 180px;
}
.btn-register:hover{
    background-color: var(--secondary);;
    border-color: var(--secondary);;
    color: #fff;
}
.section-card .btn{ border-radius: 4px;}
.login-icons .icon {
    border: 1px solid #707070;
    height: 45px;
    width: 45px;
    line-height: 45px;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
}

.login-icons .icon img {
    width: 25px;
}

.login-icons .icon:hover {
    border: 1px solid #f7f7f7;
    background: #f7f7f7;
}
.progress-circle {
    font-size: 16px;
    margin: 0;
    position: relative;
    padding: 0;
    width: 5em;
    height: 5em;
    background-color: #F2E9E1;
    border-radius: 50%;
    line-height: 5em;
    float: left;
 }
 .progress-circle:after{
    border: none;
    position: absolute;
    top: 0.35em;
    left: 0.35em;
    text-align: center;
    display: block;
    border-radius: 50%;
    width: 4.3em;
    height: 4.3em;
    background-color: white;
    content: " ";
 }
 /* Text inside the control */
 .progress-circle span {
     position: absolute;
     line-height: 5em;
     width: 5em;
     text-align: center;
     display: block;
     color: #151515;
     font-weight: 600;
     z-index: 2;
 }
 .left-half-clipper { 
    /* a round circle */
    border-radius: 50%;
    width: 5em;
    height: 5em;
    position: absolute; /* needed for clipping */
    clip: rect(0, 5em, 5em, 2.5em); /* clips the whole left half*/ 
 }
 .value-bar {
    /*This is an overlayed square, that is made round with the border radius,
    then it is cut to display only the left half, then rotated clockwise
    to escape the outer clipping path.*/ 
    position: absolute; /*needed for clipping*/
    clip: rect(0, 2.5em, 2em, 0);
    width: 5em;
    height: 5em;
    border-radius: 50%;
    border: 0.45em solid var(--secondary); /*The border is 0.35 but making it larger removes visual artifacts */
    /*background-color: #4D642D;*/ /* for debug */
    box-sizing: border-box;
   
 }
 /* Progress bar filling the whole right half for values above 50% */
 .progress-circle.over50 .first50-bar {
    /*Progress bar for the first 50%, filling the whole right half*/
    position: absolute; /*needed for clipping*/
    clip: rect(0, 5em, 4em, 2.5em);
    background-color: var(--secondary);
    border-radius: 50%;
    width: 5em;
    height: 5em;
 }
 .progress-circle:not(.over50) .first50-bar{ display: none; }
 
 
 /* Progress bar rotation position */
 .progress-circle.p0 .value-bar { display: none; }
 .progress-circle.p1 .value-bar { transform: rotate(4deg); }
 .progress-circle.p2 .value-bar { transform: rotate(7deg); }
 .progress-circle.p3 .value-bar { transform: rotate(11deg); }
 .progress-circle.p4 .value-bar { transform: rotate(14deg); }
 .progress-circle.p5 .value-bar { transform: rotate(18deg); }
 .progress-circle.p6 .value-bar { transform: rotate(22deg); }
 .progress-circle.p7 .value-bar { transform: rotate(25deg); }
 .progress-circle.p8 .value-bar { transform: rotate(29deg); }
 .progress-circle.p9 .value-bar { transform: rotate(32deg); }
 .progress-circle.p10 .value-bar { transform: rotate(36deg); }
 .progress-circle.p11 .value-bar { transform: rotate(40deg); }
 .progress-circle.p12 .value-bar { transform: rotate(43deg); }
 .progress-circle.p13 .value-bar { transform: rotate(47deg); }
 .progress-circle.p14 .value-bar { transform: rotate(50deg); }
 .progress-circle.p15 .value-bar { transform: rotate(54deg); }
 .progress-circle.p16 .value-bar { transform: rotate(58deg); }
 .progress-circle.p17 .value-bar { transform: rotate(61deg); }
 .progress-circle.p18 .value-bar { transform: rotate(65deg); }
 .progress-circle.p19 .value-bar { transform: rotate(68deg); }
 .progress-circle.p20 .value-bar { transform: rotate(72deg); }
 .progress-circle.p21 .value-bar { transform: rotate(76deg); }
 .progress-circle.p22 .value-bar { transform: rotate(79deg); }
 .progress-circle.p23 .value-bar { transform: rotate(83deg); }
 .progress-circle.p24 .value-bar { transform: rotate(86deg); }
 .progress-circle.p25 .value-bar { transform: rotate(90deg); }
 .progress-circle.p26 .value-bar { transform: rotate(94deg); }
 .progress-circle.p27 .value-bar { transform: rotate(97deg); }
 .progress-circle.p28 .value-bar { transform: rotate(101deg); }
 .progress-circle.p29 .value-bar { transform: rotate(104deg); }
 .progress-circle.p30 .value-bar { transform: rotate(108deg); }
 .progress-circle.p31 .value-bar { transform: rotate(112deg); }
 .progress-circle.p32 .value-bar { transform: rotate(115deg); }
 .progress-circle.p33 .value-bar { transform: rotate(119deg); }
 .progress-circle.p34 .value-bar { transform: rotate(122deg); }
 .progress-circle.p35 .value-bar { transform: rotate(126deg); }
 .progress-circle.p36 .value-bar { transform: rotate(130deg); }
 .progress-circle.p37 .value-bar { transform: rotate(133deg); }
 .progress-circle.p38 .value-bar { transform: rotate(137deg); }
 .progress-circle.p39 .value-bar { transform: rotate(140deg); }
 .progress-circle.p40 .value-bar { transform: rotate(144deg); }
 .progress-circle.p41 .value-bar { transform: rotate(148deg); }
 .progress-circle.p42 .value-bar { transform: rotate(151deg); }
 .progress-circle.p43 .value-bar { transform: rotate(155deg); }
 .progress-circle.p44 .value-bar { transform: rotate(158deg); }
 .progress-circle.p45 .value-bar { transform: rotate(162deg); }
 .progress-circle.p46 .value-bar { transform: rotate(166deg); }
 .progress-circle.p47 .value-bar { transform: rotate(169deg); }
 .progress-circle.p48 .value-bar { transform: rotate(173deg); }
 .progress-circle.p49 .value-bar { transform: rotate(176deg); }
 .progress-circle.p50 .value-bar { transform: rotate(180deg); }
 .progress-circle.p51 .value-bar { transform: rotate(184deg); }
 .progress-circle.p52 .value-bar { transform: rotate(187deg); }
 .progress-circle.p53 .value-bar { transform: rotate(191deg); }
 .progress-circle.p54 .value-bar { transform: rotate(194deg); }
 .progress-circle.p55 .value-bar { transform: rotate(198deg); }
 .progress-circle.p56 .value-bar { transform: rotate(202deg); }
 .progress-circle.p57 .value-bar { transform: rotate(205deg); }
 .progress-circle.p58 .value-bar { transform: rotate(209deg); }
 .progress-circle.p59 .value-bar { transform: rotate(212deg); }
 .progress-circle.p60 .value-bar { transform: rotate(216deg); }
 .progress-circle.p61 .value-bar { transform: rotate(220deg); }
 .progress-circle.p62 .value-bar { transform: rotate(223deg); }
 .progress-circle.p63 .value-bar { transform: rotate(227deg); }
 .progress-circle.p64 .value-bar { transform: rotate(230deg); }
 .progress-circle.p65 .value-bar { transform: rotate(234deg); }
 .progress-circle.p66 .value-bar { transform: rotate(238deg); }
 .progress-circle.p67 .value-bar { transform: rotate(241deg); }
 .progress-circle.p68 .value-bar { transform: rotate(245deg); }
 .progress-circle.p69 .value-bar { transform: rotate(248deg); }
 .progress-circle.p70 .value-bar { transform: rotate(252deg); }
 .progress-circle.p71 .value-bar { transform: rotate(256deg); }
 .progress-circle.p72 .value-bar { transform: rotate(259deg); }
 .progress-circle.p73 .value-bar { transform: rotate(263deg); }
 .progress-circle.p74 .value-bar { transform: rotate(266deg); }
 .progress-circle.p75 .value-bar { transform: rotate(270deg); }
 .progress-circle.p76 .value-bar { transform: rotate(274deg); }
 .progress-circle.p77 .value-bar { transform: rotate(277deg); }
 .progress-circle.p78 .value-bar { transform: rotate(281deg); }
 .progress-circle.p79 .value-bar { transform: rotate(284deg); }
 .progress-circle.p80 .value-bar { transform: rotate(288deg); }
 .progress-circle.p81 .value-bar { transform: rotate(292deg); }
 .progress-circle.p82 .value-bar { transform: rotate(295deg); }
 .progress-circle.p83 .value-bar { transform: rotate(299deg); }
 .progress-circle.p84 .value-bar { transform: rotate(302deg); }
 .progress-circle.p85 .value-bar { transform: rotate(306deg); }
 .progress-circle.p86 .value-bar { transform: rotate(310deg); }
 .progress-circle.p87 .value-bar { transform: rotate(313deg); }
 .progress-circle.p88 .value-bar { transform: rotate(317deg); }
 .progress-circle.p89 .value-bar { transform: rotate(320deg); }
 .progress-circle.p90 .value-bar { transform: rotate(324deg); }
 .progress-circle.p91 .value-bar { transform: rotate(328deg); }
 .progress-circle.p92 .value-bar { transform: rotate(331deg); }
 .progress-circle.p93 .value-bar { transform: rotate(335deg); }
 .progress-circle.p94 .value-bar { transform: rotate(338deg); }
 .progress-circle.p95 .value-bar { transform: rotate(342deg); }
 .progress-circle.p96 .value-bar { transform: rotate(346deg); }
 .progress-circle.p97 .value-bar { transform: rotate(349deg); }
 .progress-circle.p98 .value-bar { transform: rotate(353deg); }
 .progress-circle.p99 .value-bar { transform: rotate(356deg); }
 .progress-circle.p100 .value-bar { transform: rotate(360deg); }

 /*Process Steps*/
.process-steps {text-align: center;margin: 10px 10px 30px;}
.process-steps ul {
	padding: 0;
	margin: auto;
	max-width: 1000px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
    align-items: center;
}
.process-steps ul li {
	width: 100px;
	list-style: none;
	position: relative;
}
.process-steps ul li::before {
	content: '';
	top: 16px;
	left: 2px;
	right: 0;
	margin: auto;
	position: absolute;
	background: #F0F0F0;
	width: 100px;
	height: 3px;
}
.process-steps ul li:first-child, .process-steps ul li:last-child, .process-steps ul li:first-child a, .process-steps ul li:last-child a  {
    background-color: transparent;
    border: none;
}
.process-steps ul li:nth-last-child(2)::before{
  display: none;
}
.process-steps ul li:first-child::before,
.process-steps ul li:last-child::before{
    display: none;
}
.process-steps ul li a {
    background: #F0F0F0;
    z-index: 1;
    display: block;
    position: relative;
    width: 45px;
    height: 45px;
    border-radius: 100%;
    border: 3px solid #F0F0F0;
}
.process-steps ul li a span {
	margin: auto;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	font-weight: 600;
}
.process-steps ul li:focus::before,
.process-steps ul li:active::before,
.process-steps ul li.active::before {
	background: var(--secondary);
}
.process-steps ul li:focus a,
.process-steps ul li:active a,
.process-steps ul li.active a {
	border-color: var(--secondary);
	background: var(--secondary);
    color: #fff;
}
.process-steps ul li:last-child {
    width: auto;
}
.process-steps ul li:first-child, .process-steps ul li:nth-last-child(2) {
    width: 80px;
}
.rotate-180{ transform: rotate(180deg);}

.questionaire h6{ font-weight: 500; font-size: 20px; }
.questionaire label.btn{
    border-radius: 50%;
    height: 50px;
    width: 50px;
    padding: 0;
    line-height: 50px;
    background: #F3F3F3;
    border-color: #F3F3F3;
    color: #151515;
}
.text-area{ display: none;}
header .navbar .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='rgba(0, 0, 0, 0.55)' d='M19.8,5.8l-1.6-1.6L12,10.4L5.8,4.2L4.2,5.8l6.2,6.2l-6.2,6.2l1.6,1.6l6.2-6.2l6.2,6.2l1.6-1.6L13.6,12 L19.8,5.8z'/></svg>");
}
.procedure-steps .step{
    height: 88px;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: center;
}
.procedure-steps .step .title{
    max-width: 250px;
    color: #fff;
    padding: 20px;
    text-align: center;
}
.plan-card{ background: #E4E4E4; border-radius: 12px;}
.plan-card .ribbon-pop {
    background: var(--secondary);
    display: inline-block;
    padding: 10px 40px 10px 20px;
    color: white;
    position: relative;
    margin-left: -34px;
    border-radius: 0 5px 5px 0;
    font-weight: 600;
    font-size: 24px;
    width: 200px;
}
.plan-card .ribbon-pop:before {
    height: 0;
    width: 0;
    border-top: 15px solid #294f73;
    border-left: 15px solid transparent;
    bottom: -15px;
    position: absolute;
    content: "";
    left: 0;
}
#picture__input { display: none;}
  .picture {
    width: 180px;
    aspect-ratio: 10/10;
    background: #fbfbfb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border: 2px dashed var(--secondary);
    border-radius: 12px;
    cursor: pointer;
    font-family: sans-serif;
    transition: color 300ms ease-in-out, background 300ms ease-in-out;
    outline: none;
    overflow: hidden;
  }
  
  .picture:hover {
    background: #e4e4e4;
  }
  
  .picture:active {
    border-color: var(--primary);
    color: var(--primary);
    background: #eee;
  }
  
  .picture:focus {
    background: rgb(225, 225, 225);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.189);
  }
  
  .picture__img {
    max-width: 100%;
  }
  

@media(max-width: 1400px){
    .review-block {
        width: 300px;
        height: 300px;
        line-height: 300px;
        padding: 25px;
    }
    .banner .text-section{ padding: 25px;}
    .banner .sign-up-section .sign-up-btn{ margin: 10px 0;}
    .banner .sign-up-section p {
        padding-right: 30px;
    }
    .banner .banner_img img {
        height: 100%;
        min-height: 375px;
    }
    .banner .sign-up-section{ padding: 20px;}
    .testimonial-carousel .owl-nav .owl-prev{ left: -32px; }
    .testimonial-carousel .owl-nav .owl-next{ right: -32px; }
}
@media(min-width: 1201px) and (max-width: 1320px){
    .banner .sign-up-section p {
        padding-right: 0px;
    }
    .banner .text-section h3 {
        font-size: 24px;
        line-height: 36px;
    }
    .banner .sign-up-section {
        padding: 16px 20px 10px;
    }
    .banner .banner_img img{ min-height: 300px}
    aside.sidebar .sidebar-logo{ max-width: 200px;}
}

@media(max-width: 1200px){
    .review-block {
        width: 280px;
        height: 280px;
        line-height: 280px;
        padding: 15px;
    }
    .banner .text-section h3 {
        font-size: 24px;
        line-height: 36px;
    }
    .banner .banner_img img{ min-height: 300px; object-fit: cover;}
    .banner .sign-up-section p{padding-right: 0px; margin-bottom: 10px;}
    .banner .text-section{ padding: 24px;}
    .testimonial-carousel .owl-nav .owl-prev{ left: -20px; }
    .testimonial-carousel .owl-nav .owl-next{ right: -20px; }
    .banner .sign-up-section h3{ font-size: 22px;}
    .banner .sign-up-section .sign-up-btn .link { font-size: 16px;}
}
@media( min-width:1024px) and (max-width: 1100px){
    .banner .sign-up-section, .banner .text-section {
        padding: 16px;
    }
    .banner .text-section h3 {
        font-size: 22px;
        line-height: 32px;
    }
}
@media(max-width: 1024px){
    .banner .text-section h3 {
        font-size: 22px;
        line-height: 36px;
    }
    header.sticky + .banner {padding-top: 110px;}
    .steps-section .step {margin-bottom: 15px;}
    .steps-section .step .step-title, .call-section p{ font-size: 16px;}
}
@media(max-width: 992px){
    header .navbar .nav-link{ border-bottom: 1px solid #ededed;}
    header .navbar-nav .dropdown-menu li {
        padding: 8px 2px;
        border-bottom: 1px solid #ededed;
    }
    .font-normal{ font-weight: 500 !important;}
    .alert.alert-info{ margin-bottom: 0;}
}
@media(max-width: 768px){
    .review-block {
        width: 280px;
        height: 280px;
        line-height: 280px;
        padding: 20px;
    }
    .content-section {
        padding: 50px 0;
    }
    .process-steps ul li,.process-steps ul li::before { width: 100%; }
    .steps-section .step {min-height: 184px;}
    .testimonial-carousel .owl-nav .owl-prev{ left: 0px; }
    .testimonial-carousel .owl-nav .owl-next{ right: 0px; }
    .call-section{ padding: 30px 0;}
    .footer-bottom .footer-logo{ text-align: center;}
    .footer-bottom .social-icons {margin-top: 20px;}
    .heading-title { font-size: 20px; margin-bottom: 20px;}
    .steps-section .step .icon, .apply-section .step .icon, .apply-confidence-section .step .icon{
        width: 100px;
        height: 100px;
        line-height: 100px;
    }
    .steps-section .step .icon > img, .apply-section .step .icon > img, .apply-confidence-section .step .icon > img { height: 55px;}
}

@media(min-width: 390px) and (max-width: 575px){
    .steps-section .step {
        min-width: 170px;
    }
}
@media(min-width: 370px) and (max-width: 390px){
    .steps-section .step {
        min-width: 150px;
    }
}

@media (min-width: 992px){
    .dropdown:hover>.dropdown-menu {
        display: block;
        -webkit-animation: slide-up .25s ease-in-out;
        animation: slide-up .25s ease-in-out;
    }
    .alert.alert-info{ font-size: 1rem;}
    .navbar .nav-link{
        font-size: 1rem;
        padding-left: 26px !important;
        padding-right: 26px !important;
    }
    .testimonial-carousel .owl-nav button{ position: absolute; top: 50%;}
}
@media (max-width: 575px){
    .sidebar .sidebar-logo svg { width: 70px;}
    .sidebar .sidebar-logo svg text{ display: none;}
    aside.sidebar .nav .nav-link {
        padding: 18px 20px;
    }
}