
* {
    margin: 0;
    padding: 0;
    font-family: "Manrope", sans-serif;
}
html{
    scroll-behavior: smooth;
}
section {
    padding: 40px 20px;
}

/* Start */
header {
    background: #fff;
    padding: 0;
    text-align: center;
}
.header-logo {
    width: 6%;
    height: auto;
    object-fit: cover;
    position: relative;
    margin: 0 5% 0 -5%;
}
nav {
    display: flex;
    padding: 0 6%;
    width: 75%;
    justify-content: space-between;
    align-items: center;
    margin: auto;
}
.nav-link {
    flex: 1;
    text-align: left;
    display: flex;
    width: 65%;
    margin: auto;
}
.nav-link ul{
    margin: auto 0;
}
.nav-link ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}
.nav-link ul li a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}
.nav-link ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #666;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.nav-link ul li:hover::after{
    width: 100%;
}
nav .bi{
    display: none;
}
nav .show{
    display: block;
}
.contact-buttons {
    display: flex;
    justify-content: right;
    width: 25%;
    margin: auto;
}
.contact-buttons .call-now-span{
    padding: 5px 15px;
    border: 1px solid;
    background: rgba(255, 255, 255, 0);
    color: #6BCA7A;
    text-decoration: none;
    border-radius: 5px;
    border-color: #6BCA7A;
    font-size: 16px;
    margin: 0 5px;
    display: flex;
}
.contact-buttons .whatsapp-span{
    padding: 5px 10px;
    border: 1px solid;
    background: #6BCA7A;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    border-color: #6BCA7A;
    font-size: 16px;
    margin: 0 5px;
    display: flex;
    width: 20%;
}
.contact-buttons span i{
    margin: auto 5px;
}
.button.call-now {
    background: rgba(255, 255, 255, 0);
    color: #6BCA7A;
    text-decoration: none;
    font-size: 16px;
    margin: auto 5px;
}
.button.whatsapp {
    background: #6BCA7A;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    margin: 0 5px;
}

/* WhatsApp Icon */
.tooltiptext {
    visibility: hidden;
    padding: 0.25em 0.5em;
    background-color: #F0F0F0;
    color: #6BCA7A;
    text-align: center;
    border-radius: 0.25em;
    white-space: nowrap;
    font-size: 12px;
    border-radius: 20px;
    padding: 5px 30px;
    border: 1px solid #6BCA7A;
    
     /* Position the tooltip */
    position: fixed;
    z-index: 1;
    bottom: 30%;
    right: 100%;
    transition-property: visibility;
    transition-delay: 0s;
}
.whatsapp-contact {
    position: fixed;
    display: block;
    bottom: 2%;
    right: 2%;
    z-index: 9999;
    width: 5%;
    object-fit: cover;
}
.whatsapp-contact:hover {
    scale: 1.1;
    box-shadow: 16px 16px var(--shadow);
    transition: all 0.2s;
}
.whatsapp-contact:hover .tooltiptext {
    visibility: visible;
    transition-delay: 0.2s;
}

/* Media WhatsApp Icon */
@media(max-width: 768px) {
    .whatsapp-contact {
        width: 7%;
    }
}
@media(max-width: 425px) {
    .whatsapp-contact {
        width: 15%;
    }
    .tooltiptext {
        font-size: 8px;
    }
}

/*Banner*/
.hero {
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0;
    background-color: #fff;
    position: relative;
    min-height: 60vh;
    
}
.hero-image {
    width: 65%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.custom-video__video {
    border-radius: 0.2em;
    cursor: pointer;
}
.custom-video__control {
    position: absolute;
    top: 43%;
    left: 46%;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 1em;
    font-weight: 400;
    width: 3em;
    height: 3em;
    white-space: nowrap;
    line-height: 0;
}
video::-webkit-media-controls {
    position: relative;
    z-index: 1;
}
.hero-image .img {
    max-width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.47), rgba(4, 9, 30, 0.47)), url('../img/banner.jpeg');
    background-size: cover;
    position: relative;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-content {
    width: 35%;
    height: auto;
    text-align: center;
    background-color: #070A11;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-info {
    width: 80%;
    margin: auto;
}
.contact-info h5{
    color: #6BCA7A;
    font-size: 16px;
    font-weight: bold;
}
.contact-info h1{
    color: #fff;
    font-size: 48px;
    font-weight: bold;
}
.hero-input {
    width: 100%;
    height: auto;
}
.hero-input input{
    padding: 2% 3%;
    width: 100%;
    margin: 2% 0;
    border: 3px solid #6BCA7A;
    border-radius: 4px;
}
.contact-info button{
    color: #fff;
    background-color: #6BCA7A;
    padding: 2% 3%;
    font-size: 16px;
    border-radius: 8px;
    margin: 2% 0 0 0;
}

/* Banner center */
.content-center {
    max-width: 80%;
    padding: 40px;
    padding-right: 17vh;
    margin: auto;
}
.content-center h1 {
    font-size: 70px;
    color: #fff;
    margin: 20px 0 0 0;
    font-weight: bold;
}
.content-center p {
    font-size: 17px;
    color: #fff;
    line-height: 1.6;
    margin: 0 0 20px 0;
}
.hero-video {
    margin: 20px 0;
}
.custom-video__container {
    position: relative;
}

/* Medeia Header & Banner */
@media(max-width: 1440px) {
    .contact-buttons .whatsapp-span {
        padding: 5px 10px;
        width: 20%;
    }
    .hero-image {
        height: auto;
    }
    .hero-image .img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .hero-video img{
        width: 80%;
        object-fit: cover;
    }
    .content-center {
        padding-right: 11vh;
    }
    .content-center h1 {
        font-size: 50px;
    }
    .content-center p {
        font-size: 12px;
    }
    .hero-content {
        height: auto;
    }
}
@media(max-width: 1024px) {
    nav {
        width: 80%;
        padding: 0;
    }
    .hero-image .img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .hero-video img{
        width: 100%;
        object-fit: cover;
    }
    .content-center {
        padding: 3%;
    }
    .content-center h1 {
        font-size: 24px;
        margin: 2% 0;
    }
    .content-center p {
        font-size: 12px;
        margin: 2% 0;
    }
}
@media(max-width: 768px) {
    /* Header */
    nav {
        width: 90%;
        padding: 0;
    }
    .header-logo {
        width: 8%;
    }
    .nav-link ul li {
        display: block;
    }
    .nav-link {
        position: fixed;
        background: #248FEF;
        color: #fff;
        height: 100%;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    .nav-link ul li a {
        color: #fff;
    }
    nav .bi{
        display: block;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .contact-buttons {
        display: none;
    }

    /* Banner */
    .hero{
        display: block;
    }
    .header-logo {
        margin: 0;
    }
    .hero-image {
        width: 100%;
        padding-right: 0;
        height: 100%;
    }
    .hero-image .img{
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    .content-center {
        max-width: 95%;
        position: relative;
    }
    .content-center h1 {
        font-size: 47px;
        line-height: 1;
    }
    .content-center p {
        font-size: 11px;
    }
    .hero-content {
        width: 100%;
        height: 80vh;
    }
    
    .contact-info h5{
        font-size: 9.5px;
    }
    .contact-info h1{
        font-size: 28.5px;
    }
    .hero-input {
        width: 100%;
        height: auto;
    }
    .contact-info button{
        font-size: 9.5px;
    }
}
@media(max-width: 425px) {
    .header-logo {
        width: 14%;
    }
    .hero-image{
        width: 100%;
        padding-right: 0;
    }
    .hero-content {
        height: 60vh;
    }
}
@media(max-width: 320px) {
    .hero-image{
        width: 100%;
        padding-right: 0;
    }
}

/* Our Process*/
.howDoes {
    width: 65%;
    margin: auto;
    padding-top: 7em;
    text-align: center;
}
.howDoes-text {
    padding: 0 30%;
}
.howDoes-text h2{
    color: #0B0F19;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 2%;
}
.howDoes-text p{
    color: #565973;
    font-size: 16px;
}
.process-wrapper {
	margin:auto;
    width: 100%;
}
#progress-bar-container {
	position:relative;
	width:100%;
	margin:auto;
	height:26vh;
	margin-top:2%;
}
.bar {
    counter-reset: step;
    counter-increment: step 0;
}
#progress-bar-container ul {
	padding:0;
	margin:0;
	padding-top:15px;
	z-index:9999;
	position:absolute;
	width:100%;
	margin-top: 2%;
}
#progress-bar-container li {
	list-style:none;
	float:left;
	width:33.33333%;
	text-align:center;
	cursor:pointer;
	transition:all ease 0.2s;
	vertical-align:bottom;
	position:relative;
}
#progress-bar-container li .step-inner {
	position:relative;
	width:100%;
    font-size: 24px;
	margin-top: 10%;
    margin-bottom: 3%;
    color: #0B0F19;
    font-weight: bold;
}
#progress-bar-container li::before {
	content: counter(step);
    counter-increment: step;
    width: 50px;
    height: 50px;
    line-height: 45px;
    border: 3px solid #F3F6FF;
    display: block;
    text-align: center;
    margin: auto;
    border-radius: 50%;
    background-color: #FFFFFF;
    color: #0B0F19;
    letter-spacing: 0px;
    font-size: 24px;
    font-weight: bold;
    box-shadow: 0 0 0 4px #F3F6FF;
}
#progress-bar-container li:first-child::after {
	content: none;
}
#progress-bar-container #line {
	width:70%;
	margin:auto;
	background: #E2E5F1;
	height:1px;
	position:absolute;
	left:15%;
	top:65px;
	z-index:1;
	border-radius:50px;
	transition:all ease 0.9s;
}
.step p{
    display: none;
    color: #565973;
    font-size: 16px;
    font-weight: 400;
}
.howDoes-img {
    width: 100%;
    object-fit: cover;
}
.howDoes-img img{
    width: 100%;
}
/* Media Why Does It Work */
@media (max-width: 1440px) {
    #progress-bar-container #line {
        top: 60px;
    }
}
@media (max-width: 1024px) {
    .howDoes-text {
        padding: 0 10%;
    }
    #progress-bar-container {
        height:35vh;
    }
    #progress-bar-container #line {
        top: 52px;
    }
}
@media (max-width: 768px) {
    .howDoes {
        width: 90%;
        padding-top: 3em;
    }
    .howDoes-text {
        padding: 0;
    }
    .howDoes-text h2{
        font-size: 25px;
    }
    #progress-bar-container {
        height:40vh;
    }
    #progress-bar-container li {
        width: 100%;
        margin: 3% 0 3% 5%;
        text-align: left;
    }
    #progress-bar-container li::before {
        margin: auto 0px auto -9%;
    }
    #progress-bar-container li .step-inner {
        display: none;
    }
    #progress-bar-container #line {
        width: 1px;
        height: 50%;
        left: 0;
        top: 65px;
    }
    .step p{
        display: block;
        position: absolute;
        margin-top: -6%;
        margin-left: 5%;
        font-size: 12px;
    }
}
@media (max-width: 425px) {
    #progress-bar-container li::before {
        margin: auto 0px auto -12%;
    }
    #progress-bar-container li {
        width: 100%;
        margin: 6% 0 6% 5%;
        text-align: left;
    }
    .step p{
        position: absolute;
        margin-top: -12%;
        margin-left: 10%;
    }
}
@media (max-width: 375px) {
    #progress-bar-container #line {
        left: 1%;
    }
    #progress-bar-container {
        height: 35vh;
    }
    #progress-bar-container ul {
        padding-top: 0px;
    }
}
@media (max-width: 320px) {
    #progress-bar-container #line {
        left: 3%;
    }
    .step p{
        margin-top: -16%;
        margin-left: 15%;
    }
}

/* Service */
.service, .approval, .interests, .client {
    width: 65%;
    margin: auto;
    padding-top: 7em;
}
.service {
    padding-top: 3em;
}
.service h2 {
    font-size: 40px;
    margin-bottom: 0.8em;
    font-weight: bold;
}
.service-col {
    flex-basis: 31%;
    margin-bottom: 5%;
    text-align: left;
}
.service-col img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}
.service-col h3 {
    margin-top: 16px;
    margin-bottom: 10px;
    text-align: left;
    font-size: 24px;
    font-weight: bold;
    color: #0B0F19;
}
.service-col ul {
    list-style: none;
    line-height: 1.8;
    margin-bottom: 5%;
    height: 4em;
}
.service-col ul li {
    padding: 0;
    font-size: 14px;
    color: #565973;
    line-height: 1.5;
}
.service-col span {
    display: flex;
    color: #6BCA7A;
}
.apply-now::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #6BCA7A;
    display: block;
    margin: auto;
    transition: 0.5s;
}
.apply-now:hover::after {
    width: 100%;
}
.service-col .bi {
    padding-right: 3%;
}
.service span {
    display: flex;
}
.service span svg {
    margin-top: auto;
    margin-bottom: auto;
}
.service .row a {
    padding-right: 3%;
    text-decoration: none;
    color: #6BCA7A;
    font-weight: bold;
}

/* Media Service */
@media (max-width: 1700px) {
    .service-col h3 {
        font-size: 21px;
    }
    .service-col ul {
        height: 6em;
    }
}
@media (max-width: 1440px) {
    .service-col h3 {
        font-size: 21px;
    }
    .service-col ul {
        height: 6em;
    }
}
@media (max-width: 1376px) {
    .service-col h3 {
        height: 2.5em;
    }
}
@media (max-width: 1024px) {
    .service, .approval, .interests, .client {
        width: 80%;
    }
    .service-col ul {
        height: 7em;
    }
}
@media (max-width: 768px) {
    .service .row {
        flex-direction: column;
    }
    .service, .approval, .interests, .client {
        width: 90%;
        margin: auto;
        padding-top: 3em;
    }
    .service h2 {
        font-size: 25px;
    }
    .service-col {
        margin-bottom: 15%;
    }
    .service-col h3 {
        font-size: 21px;
        height: auto;
    }
    .service-col ul {
        height: 3em;
    }
}
@media (max-width: 425px) {
    .service-col ul {
        height: 6em;
    }
    .service-col ul {
        height: 5em;
    }
}
@media (max-width: 320px) {
    .service-col ul {
        height: 6em;
    }
}

/* Approval */
.approval {
    background-color: #FBFBFB;
    padding: 0;
    border: 1px solid rgba(99, 102, 241, 35%);
}
.approval .row {
    margin-top: 0;
}
.approval-content {
    width: 59%;
    margin: auto 10%;
}
.approval-content h2 {
    font-size: 40px;
    color: #0B0F19;
    font-weight: bold;
}
.approval-content .subtitle {
    font-size: 24px;
    color: #6BCA7A;
    font-weight: bold;
    margin: 2% 0;
}
.approval-content p {
    font-size: 16px;
    color: #565973;
}
.approval-content button {
    margin-top: 4%;
    padding: 15px 35px;
    border: none;
    background-color: #6BCA7A;
    color: #fff;
    cursor: pointer;
    border-radius: 8px;
    font-size: 16px;
}
.approval-content button:hover {
    background-color: #59ac66;
}
.approval-img {
    width: 40%;
    margin: auto;
    margin-right: auto;
}
.approval-img img{
    width: 100%;
    height: auto;
}

/* Media Approval */
@media (max-width: 1024px) {
    .approval-content {
        margin: 5% 10%;
    }
}
@media (max-width: 768px) {
    .approval .row {
        display: block;
        text-align: center;
        padding: 5% 5%;
    }
    .approval-content {
        width: 100%;
        margin: auto;
    }
    .approval-img {
        width: 100%;
        margin-bottom: 10%;
    }
    .approval-content h2 {
        font-size: 30px;
    }
    .approval-content .subtitle {
        font-size: 22px;
        margin: 5% 0;
    }
    .approval-content p {
        margin: 8% 0;
    }
}

/* Why Us */
.why-us {
    width: 65%;
    margin: auto;
    text-align: center;
    padding-top: 7em; 
}
.why-us h2 {
    font-size: 40px;
    margin-bottom: 0.3em;
    font-weight: bold;
}
.why-us p{
    color: #565973;
    font-size: 16px;
}
.row {
    margin-top: 3%;
    display: flex;
    justify-content: space-between;
    text-align: left;
}
.course-col{
    flex-basis: 31%;
    border-radius: 8px;
    border: 1px solid;
    border-color: #E2E5F1;
    margin-bottom: 5%;
    padding: 24px;
    box-sizing: border-box;
    margin: 0 1%;
}
.course-col svg{
    color: #6BCA7A;
    margin: 2% 0;
}
.course-col h3{
    font-weight: bold;
    margin: 2% 0;
}
.course-col p{
    color: #565973;
    margin: 2% 0;
}
.why-us button {
    margin-top: 4vh;
    padding: 15px 35px;
    border: none;
    background-color: #6BCA7A;
    color: #fff;
    cursor: pointer;
    border-radius: 8px;
    font-size: 16px;
}
.why-us button:hover {
    background-color: #59ac66;
}

/* Media Why-Us */
@media (max-width: 1024px) {
    .why-us {
        width: 80%;
    }
}
@media (max-width: 768px) {
    .why-us {
        width: 90%;
    }
    .why-us h2 {
        font-size: 25px;
    }
    .why-us .row {
        overflow: hidden;
        overflow-x: auto;
        scroll-behavior: smooth;
        width: 100%;
    }
    .course-col {
        min-width: 98%;
        padding: 15px;
    }
}
@media (max-width: 425px) {
    .course-col h3 {
        font-size: 24.38px;
    }
    .course-col p {
        font-size: 19.5px;
    }
}


/* Interests */
.interests {
    padding-top: 5em;
}
.interests-wrap {
    width: 100%;
    display: flex;
}
.interests-wrap::-webkit-scrollbar {
    display: none;
}
.interests-wrap .row {
    width: 100%;
    grid-template-columns: auto auto auto;
    grid-gap: 20px;
    padding: 0;
    flex: none;
    margin-right: 2%;
}
.interests-content {
    width: 49.3999%;
    margin: auto;
}
.interests-content h2 {
    font-size: 35px;
    font-weight: bold;
}
.interests-content-t2 {
    display: flex;
    padding: 5% 0 3% 0;
}
.interests-content-t2 svg {
    margin: auto 0;
    color: #6BCA7A;
}
.interests-content-t2 h3 {
    font-size: 24px;
    font-weight: bold;
}
.interests-content ul {
    list-style: auto;
    padding-left: 3%;
}
.interests-content ul li {
    color: #565973;
    font-size: 16px;
    line-height: 1.5;
}
.interests-img {
    width: 49.3999%;
}
.interests-img img{
    width: 100%;
}
#backBtn, #nextBtn {
    height: 30px;
    width: 30px;
    cursor: pointer;
    border-radius: 50%;
    border: 0;
    color: #33354D;
    font-size: 11px;
    background-color: #fff;
    box-shadow: 0 0 10px #cfcfcf;
    margin-right: 1%;
}
#backBtn:hover, #nextBtn:hover {
    box-shadow: 0 0 20px #bdbdbd;
}

/* Media Tnterests */
@media (max-width: 1440px) {
    .interests-content ul {
        padding-left: 6%;
    }
}
@media (max-width: 768px) {
    .interests-wrap .row {
        flex-direction: column;
    }
    .interests-img {
        width: 100%;
        order: 1;
    }
    .interests-content {
        width: 100%;
        order: 2;
    }
    .interests-content ul {
        padding-left: 5%;
    }
    #backBtn, #nextBtn {
        display: none;
    }
}
@media (max-width: 425px) {
    .interests-content h2 {
        font-size: 25px;
    }
    .interests-content-t2 h3 {
        font-size: 20px;
    }
    .interests-content ul li {
        font-size: 13.5px;
    }
}
@media (max-width: 320px) {
    .interests-content ul {
        padding-left: 7%;
    }
}

/* Logo */
.logo {
    width: 65%;
    margin: auto;
    text-align: center;
}
.logo-wrap {
    display: flex;
    overflow-x: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
}
.logo-wrap img{
    margin-right: 2%;
}

/* Media Logo */
@media (max-width: 1024px) {
    .logo {
        width: 80%;
    }
}
@media (max-width: 768px) {
    .logo {
        width: 90%;
    }
}

/* Client Say */
.client {
    padding-bottom: 5em;
}
.client .row {
    width: 100%;
}
.client-content{
    width: 25%;
    padding-right: 10%;
}
.client-content h2 {
    font-size: 32px;
    font-weight: bold;
}
.client-content p {
    margin-top: 10%;
    color: #565973;
    font-size: 12px;
}
.client-say {
    width: 100%;
    margin-right: 5%;
}
.client-say .quotation-marks{
    position: relative;
    margin-left: 1%;
}
.client-comment  {
    padding: 18% 10% 10% 10%;
    box-shadow: 0 0 10px rgba(19, 16, 34, 10%);
    margin-top: -14%;
}
.client-comment p {
    font-size: 16px;
    color: #565973;
    padding-bottom: 5%;
    min-height: 200px;
}
.client-comment i {
    color: #FFBA08;
}
#backBtn-client, #nextBtn-client {
    height: 30px;
    width: 30px;
    cursor: pointer;
    border-radius: 50%;
    border: 0;
    color: #33354D;
    font-size: 11px;
    background-color: #fff;
    box-shadow: 0 0 10px #cfcfcf;
    margin-right: 1%;
    margin-top: 50%;
}
#backBtn-client {
    margin-right: 5%;
}
#backBtn-client:hover, #nextBtn-client:hover {
    box-shadow: 0 0 20px #bdbdbd;
}
.client-info {
    width: 100%;
    display: flex;
    margin-top: 5%;
}
.client-info img{
    width: 25%;
    border-radius: 50%;
    margin: 3%;
}
.client-info div{
    width: 75%;
    padding: 1%;
    margin: auto;
}
.client-info div h3{
    font-size: 14px;
    font-weight: bold;
    color: #0B0F19;
}
.client-info div p{
    font-size: 12px;
    color: #9397AD;
}
.client-say-wrap {
    width: 75%;
    display: flex;
    overflow-x: scroll;
}
.client-say-wrap::-webkit-scrollbar {
    display: none;
}
.client-say-wrap .client-group {
    width: 33.33%;
    grid-template-columns: auto auto auto;
    grid-gap: 20px;
    padding: 0;
    flex: none;
    display: flex;
}

/* Media CLient */
@media (max-width: 1440px) {
    .client-content h2 {
        font-size: 28px;
    }
}
@media (max-width: 768px) {
    .client .row {
        display: block;
        text-align: center;
    }
    .client-content{
        width: 100%;
        padding-right: 0;
    }
    .client-content h2 {
        font-size: 32px;
    }
    .client-say {
        width: 100%;
    }
    .client-say-wrap {
        width: 100%;
    }
    #backBtn-client, #nextBtn-client {
        margin-top: 5%;
        margin-bottom: 10%;
    }
    #backBtn-client {
        margin-right: 10%;
    }
    .client-say-wrap .client-group {
        width: 50%;
    }
    .client-comment {
        text-align: left;
    }
}
@media (max-width: 425px) {
    .client-say-wrap .client-group {
        width: 100%;
    }
}

/* How It Work */
.how-it-works {
    width: 100%;
    background-color: #F3F6FF;
    padding-top: 5em;
}
.how-container {
    width: 65%;
    margin: auto;
    text-align: center;
}
.how-container h2{
    font-size: 40px;
    font-weight: bold;
}
#backBtn-how, #nextBtn-how {
    height: 30px;
    width: 30px;
    cursor: pointer;
    border-radius: 50%;
    border: 0;
    color: #33354D;
    font-size: 11px;
    background-color: #fff;
    box-shadow: 0 0 10px #cfcfcf;
    margin: auto 0;
}
#backBtn-how{
    margin-right: 3%;
}
#nextBtn-how {
    margin-left: 3%;
}
.how-wrap {
    width: 100%;
    display: flex;
    overflow-x: scroll;
}
.how-wrap::-webkit-scrollbar {
    display: none;
}
.how-wrap .how-group {
    width: 33.33%;
    grid-template-columns: auto auto auto;
    grid-gap: 20px;
    padding: 0;
    flex: none;
    display: flex;
}
.how-content {
    width: 100%;
    height: auto;
    margin-right: 3.5%;
}
.how-num {
    float: right;
    margin: 1% 1% 0 0;
    font-size: 20px;
    font-weight: bold;
    color: #000;
    position: relative;
    background-color: #fff;
    padding: 2px 12px;
    border-radius: 50%;
    z-index: 2
}
.how-move {
    top: -15%;
    position: relative;
    background-color: #fff;
    width: 100%;
    box-shadow: 0 5px 10px rgba(19, 16, 34, 10%);
}
.how-text {
    font-size: 20px;
    font-weight: bold;
    color: #33354D;
    padding: 6%;
    min-height: 140px;
}
.how-move span {
    display: flex;
    text-align: center;
    align-items: center;
    padding: 5% 0;
}
.how-move span a {
    margin: auto;
    margin-right: 0;
    color: #6BCA7A;
}
.how-move span svg {
    margin: auto 0;
    margin-right: auto;
    color: #6BCA7A;
}

/* Media How It Work */
@media (max-width: 1440px) {
    .how-text {
        min-height: 152px;
    }
}
@media (max-width: 1024px) {
    .how-container {
        width: 80%;
    }
    .how-text {
        min-height: 176px;
    }
}
@media (max-width: 768px) {
    .how-it-works {
        background-color: #fff;
        padding: 0 1%;
    }
    .how-container {
        width: 90%;
    }
    .how-container h2{
        font-size: 25px;
    }
    .how-wrap {
        flex-direction: column;
    }
    #backBtn-how, #nextBtn-how {
        display: none;
    }
    .how-wrap .how-group {
        width: 100%;
    }
    .how-move img {
        width: 100%;
    }
    .how-content {
        margin-right: 0;
        margin-bottom: 10%;
    }
}

/* Apply Now */
.apply-now-section {
    padding: 7em 0;
    height: 100%;
    box-sizing: border-box; 
    background-image: url('../img/CTA2.0.png');
    background-size: cover;
    background-position: 70% 20%;
}
.apply-container {
    width: 65%;
    margin: auto;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.circle-position {
    flex-direction: column;
    display: flex;
    height: 100%;
    background-image: url('../img/shape.png');
    background-repeat: no-repeat;
    background-position: right .75rem center;
}
.background-circle {
    margin-top: auto;
    width: 150px; /* 调整图片的宽度 */
    height: 150px; /* 调整图片的高度 */
    background-size: cover;
    pointer-events: none; /* 防止图片遮挡表单的交互 */
}
.apply-container h2{
    font-size: 32px;
    font-weight: bold;
    color: #0B0F19;
}
.apply-container p{
    font-size: 16px;
    color: #9397AD;
    padding: 2% 25%;
}
.apply-form {
    width: 100%;
    display: flex;
    padding: 0 10%;
}
.g-3 {
    --bs-gutter-y: 1rem;
}
.form-group {
    padding-right: 1%;
    padding-left: 1%;
    margin-top: 2%;
}
.form-group label {
    display: inline-block;
    margin-bottom: .5rem;
    font-size: 14px;
    font-weight: bold;
    color: #0B0F19;
}
.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #565973;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-clip: padding-box;
    border: 1px solid #D4D7E5;
    border-radius: 6px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.form-select {
    display: block;
    width: 100%;
    padding: .375rem 2.25rem .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #565973;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"%3e%3cpath fill="none" stroke="%23343a40" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="m2 5 6 6 6-6"/%3e%3c/svg%3e');
    background-repeat: no-repeat;
    background-position: right .75rem center;
    background-size: 16px 12px;
    border: 1px solid #D4D7E5;
    border-radius: 6px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.form-select option {
    color: #565973;
}
.apply-form .row {
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x)* .5);
    padding-left: calc(var(--bs-gutter-x)* .5);
    margin-top: var(--bs-gutter-y);
    flex-wrap: wrap;
}
.btnSend {
    width: 100%;
    text-align: center;
    margin-top: 3%;
}
.submit-btn {
    margin-top: 4vh;
    padding: 15px 35px;
    border: none;
    background-color: #6BCA7A;
    color: #fff;
    cursor: pointer;
    border-radius: 8px;
    font-size: 16px;
}

/* Media Apply */
@media (max-width: 1024px) {
    .apply-container {
        width: 80%;
    }
}
@media (min-width: 769px) {
    .col-md-6 {
        flex: 0 0 auto;
        width: 50%;
    }
}
@media (max-width: 768px) {
    .apply-now-section {
        padding: 0 0 3em 0;
        background-image: url('../img/CTA2.0-mobile2.png');
    }
    .col-md-6 {
        width: 100%;
    }
    .apply-container {
        width: 90%;
    }
    .apply-container h2{
        font-size: 25px;
    }
    .apply-container p{
        font-size: 17px;
        color: #9397AD;
        padding: 2% 0;
    }
    .form-group label {
        font-size: 12.59px;
    }
    .apply-form {
        width: 100%;
        display: flex;
        padding: 0;
    }
}

/* Footer */
.footer {
    background-color: #0B0F19;
}
.footer-container {
    width: 65%;
    margin: auto;
}
.footer-container .row {
    display: block;
    margin-top: 0;
}
.footer-top {
    width: 100%;
    display: flex;
    padding: 5% 0;
}
.footer-left {
    width: 33.33%;
}
.footer-left img{
    width: 20%;
}
.footer-left p{
    color: #fff;
    font-size: 14px;
    margin: 2% 0;
    opacity: 70%;
}
.contact {
    margin-top: 10%;
}
.contact div{
    display: flex;
    margin: 2% 0;
}
.contact label {
    color: #fff;
    font-size: 14px;
}
.contact input {
    background-color: rgba(0, 0, 0, 0.0);
    color: rgba(255, 255, 255, 2%);
    border: 1px solid rgba(255, 255, 255, 18%);
    border-radius: 6px;
    padding: 2% 3%;
    font-size: 14px;
    width: 70%;
}
.contact button {
    padding: 10px 15px;
    border: none;
    background-color: #6BCA7A;
    color: #fff;
    cursor: pointer;
    border-radius: 6px;
    font-size: 14px;
}
.footer-middle {
    width: 33.33%;
}
.footer-middle ul{
    color: #fff;
    font-size: 16px;
    width: 100%;
    padding-left: 50%;
    line-height: 2;
    margin-bottom: 5%;
    opacity: 85%;
}
.footer-right {
    width: 33.33%;
}
.footer-contact-info {
    width: 100%;
    padding-left: 50%;
    color: #fff;
    font-size: 16px;
    line-height: 2;
}
.footer-contact-info a{
    color: #6BCA7A;
}
.footer-bottom {
    color: #FFFFFF;
    opacity: 50%;
    font-size: 12px;
    padding: 5% 0;
}

/* Media Footer */
@media (max-width: 1024px) {
    .footer-container {
        width: 80%;
    }
}
@media (max-width: 768px) {
    .footer-container {
        width: 90%;
        padding: 0 1%;
    }
    .footer-top {
        flex-direction: column;
    }
    .footer-left {
        width: 100%;
    }
    .footer-left img {
        display: none;
    }
    .footer-left p{
        text-align: center;
        font-size: 20px;
    }
    .footer-middle {
        width: 100%;
    }
    .footer-right {
        width: 100%;
        display: none;
    }
    .footer-middle ul{
        padding-left: 0;
        margin: 5% 0;
    }
    .footer-bottom {
        text-align: center;
        font-size: 16px;
    }
    .contact {
        margin-top: 5%;
    }
    .contact label {
        display: none;
    }
}

/* Pop Up */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.popup-content {
    position: relative;
    background-image: url('../img/popup-background.png');
    background-size: cover;
    padding: 3% 8%;
    border-radius: 5px;
    width: 80%;
    max-width: 100vh;
    text-align: center;
}
.close {
    position: relative;
    float: right;
    margin-left: auto;
    font-size: 30px;
    cursor: pointer;
    margin-top: -8%;
    margin-right: -20%;
}
.popup-content h2 {
    padding: 0 10%;
    font-size: 42px;
    font-weight: bold;
    color: #161616;
}
.popup-content p {
    font-size: 16px;
    text-align: left;
    color: #565973;
}
.popup-content ul {
    list-style: none;
    line-height: 1.8;
    margin: 1% 0;
    text-align: left;
}
.popup-content ul li {
    padding: 0;
    font-size: 14px;
    color: #565973;
    line-height: 1.5;
}
.popup-content span {
    display: flex;
    color: #565973;
}
.popup-content input {
    width: 80%;
    padding: 1.5% 1.1%;
    border: 1px solid #161616;
    border-radius: 5px;
    margin: 1% 0;
}
.popup-content button {
    float: right;
    display: block;
    background-color: #f9ca24;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin-top: 10px;
    font-weight: bold;
}

/* Media Pop Up */
@media (max-width: 425px) {
    .popup-content {
        padding: 3% 6%;
    }
    .popup-content h2 {
        font-size: 28px;
        padding: 0;
    }
    .popup-content p {
        font-size: 14px;
    }
    .popup-content ul li {
        font-size: 12px;
    }
    .close {
        font-size: 28px;
        margin-top: -4%;
        margin-right: -6%;
    }
    .popup-content button {
        font-size: 12px;
    }
    
}