*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Montserrat-Regular';
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2'),
        url('../fonts/Montserrat-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat-SemiBold';
    src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2'),
        url('../fonts/Montserrat-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat-Bold';
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2'),
        url('../fonts/Montserrat-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat-Medium';
    src: url('../fonts/Montserrat-Medium.woff2') format('woff2'),
        url('../fonts/Montserrat-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

h1, h2, h3 {
    font-family: 'Montserrat-Bold';
}

h4, h5, h6 {
    font-family: "Montserrat", sans-serif;
}

a, li {
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
}

p{
    font-family: "Montserrat", sans-serif;
    color: #4b4b4b;
    font-size: 16px;
}

:root{
    --primary-color: #0c8242;
    --secondary-color: #2a2a2a;
}

/* navbar-start */
.navbar-sec {
    position: relative;
    padding: 16px 0 20px 4px;
    width: 100%;
    background: #fff;
}

/* sticky-navbar */
.navbar-sec.sticky{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;

    animation: smoothScroll 0.5s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 12px;
}

@keyframes smoothScroll{
    0%{
        transform: translateY(-100%);
    }
    100%{
        transform: translateY(0);
    }
}

.navbar-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo img{
    width: 100%;
    height: auto;
}

.navbar-links ul {
    display: flex;
    align-items: center;
    gap: 35px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navbar-links ul li{
    list-style: none;
	position: relative;
}

.navbar-links ul li a {
    transition: all 0.3s ease-in-out;
    padding-bottom: 2px;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
    color: #000;
    font-weight: 500;
}

.navbar-links ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 10px;
    transition: width 0.3s ease-in-out;
}

.navbar-links ul li a:hover {
    color: var(--primary-color);
}

.navbar-links ul li a:hover::after {
    width: 100%;
}

.navbar-btn a {
    background-color: var(--primary-color);
    padding: 12px 20px;
    border-radius: 50px;
    color: #fff;
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.navbar-btn a i{
    transform: rotate(-40deg);
    transition: all 0.3s ease-in-out;
}

.navbar-btn a:hover {
    background-color: var(--secondary-color);
}

.navbar-btn a:hover i{
    transform: rotate(0deg);
}


/* =========================
   Dropdown
========================= */

.menu-item-has-children{
    position:relative;
}

/* Arrow */

.clk_btn{
    position:absolute;
    right:-22px;
    top:50%;
    transform:translateY(-50%);
    width:22px;
    height:22px;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    z-index:9;
}

.clk_btn i{
    font-size:12px;
    transition:.3s;
}

.menu-item-has-children:hover .clk_btn i,
.menu-item-has-children.open .clk_btn i{
    transform:rotate(180deg);
}

/* Desktop Dropdown */

.custom-dropdown{
    position:absolute;
    top:100%;
    left:0;
    min-width:220px;
    background:#fff;
    border-radius:8px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    padding:10px 0;

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    pointer-events:none;

    transition:.3s;
    z-index:999;
}

.menu-item-has-children:hover>.custom-dropdown{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
    pointer-events:auto;
}

.custom-dropdown li{
    width:100%;
}

.custom-dropdown li {
    display:block;
    padding:12px 20px;
}


/* =========================
   Mobile
========================= */

@media(max-width:991px){

.menu-item-has-children>a{
    display:block;
    padding-right:45px;
}

.clk_btn{
    right:0;
    width:35px;
    height:35px;
}

.custom-dropdown{
    display:none;
    position:static;

    opacity:1;
    visibility:visible;
    transform:none;
    pointer-events:auto;

    width:100%;
    background:#f8f8f8;
    box-shadow:none;
    border-radius:0;
    padding:0;
}

.custom-dropdown li{
    padding:12px 18px;
}

}

/* hero-section-start */
.hero-bg{
    width: 100%;
    height: 570px;
    position: relative;
    background-image: url('images/hero-bg.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-text{
    padding-top: 80px;
    width: 48%;
}

.hero-icon-text{
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.hero-icon-text h5{
    margin-bottom: 0;
    font-size: 18px;
}

.black-line{
    background-color: var(--secondary-color);
    height: 2px;
    width: 14%;
}

.hero-text h3{
    font-size: 48px;
    margin: 10px 0;
    color: var(--primary-color);
    /* letter-spacing: 1px; */
}

.hero-btn{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.hero-btn-one a,
.student-btn a,
.course-btn a{
    background-color: var(--primary-color);
    padding: 12px 20px;
    border-radius: 50px;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.hero-btn-one a i{
    transform: rotate(-40deg);
    transition: all 0.3s ease-in-out;
}

.hero-btn-one a:hover{
    background-color: var(--secondary-color);
}

.hero-btn-one a:hover i{
    transform: rotate(0deg);
}

.hero-btn-two a{
    border: 1px solid var(--secondary-color);
    padding: 12px 20px;
    border-radius: 50px;
    color: var(--secondary-color);
    transition: all 0.3s ease-in-out;
}

.hero-btn-two a i{
    transform: rotate(-40deg);
    transition: all 0.3s ease-in-out;
}

.hero-btn-two a:hover{
    background-color: var(--secondary-color);
    color: #fff;
}

.hero-btn-two a:hover i{
    transform: rotate(0deg);
}

/* easy-section-start */
.padd{
    padding: 60px 0;
}

.easy-sec{
    background: #f7f7f7;
    position: relative;
}

.easy-top-txt-box{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.subtitle{
    font-size: 18px;
    margin-bottom: 0;
}

.title{
    font-size: 38px;
    color: var(--primary-color);
    margin: 10px 0;
}

.center-line-one,
.center-line-two{
    background-color: var(--secondary-color);
    height: 2px;
    width: 8%;
}

.easy-content-box{
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease-in-out;
}

.easy-icon{
    background-color: var(--primary-color);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.easy-icon img{
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.easy-content-text-box h4{
    font-size: 20px;
    transition: all 0.3s ease-in-out;
}

.easy-content-box:hover .easy-content-text-box h4{
    color: var(--primary-color);
}

.easy-content-text-box {
    width: 80%;
    padding: 20px;
    background: #fff;
    border-radius: 30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: all 0.3s ease-in-out;
    align-content: center;
    border: 1px solid transparent;
	height: 170px;
}

.easy-content-box:hover .easy-content-text-box {
    border: 1px solid var(--primary-color);
}
btn{
    margin-top: 30px;
}

.course-btn a{
    border: 1px solid #fff;
    padding: 12px 20px;
    border-radius: 50px;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.course-btn a:hover{
    background-color: var(--secondary-color);
    color: #fff;
    border: 1px solid transparent;
}

/* carrer-section-start */
section.carrer-sec {
  /*   margin-top: -170px; */
}

.carrer-box {
    padding: 30px 30px;
    background: #fff;
    border-radius: 130px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
	gap: 20px;
}

.carrer-box-text {
    position: relative;
    z-index: 3;
    width: 75%;
}

.carrer-box-text h6{
    font-size: 15px;
    color: var(--secondary-color);
}

.carrer-box-text h4{
    font-size: 19px;
    color: var(--primary-color);
	font-family: 'Montserrat-Bold' !important;
	margin-bottom: 2px;
}

.carrer-box-text p{
    font-size: 15px;
    width: 100%;
	margin-bottom: 0;
}

.carrer-btn a{
    background-color: var(--primary-color);
    padding: 6px 20px;
    border-radius: 50px;
    color: #fff;
    transition: all 0.3s ease-in-out;
    font-size: 14px;
}

.carrer-btn a:hover{
    background-color: var(--secondary-color);
}

.carrer-box-img {
    background: #0c8242;
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.carrer-box-img img {
    width: 50px;
    height: 60px;
    object-fit: contain;
    display: block;
	filter: brightness(0) invert(1);
}

.student-box{
    padding: 30px;
    text-align: center;
    position: relative;
    border-radius: 30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: all 0.3s ease;
    background: #fff;
    width: 95%;
}

.student-box:hover{
    background-color: var(--primary-color);
}

.student-box-icon {
    width: 90px;
    height: 90px;
    background-color: var(--primary-color);
    border-radius: 30px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.student-box:hover .student-box-icon{
    background: #fff;
}

.student-box-icon img{
    width: 60px;
    height: 60px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.student-box:hover .student-box-icon img{
    filter: brightness(0) saturate(100%) invert(34%) sepia(96%) saturate(1150%) hue-rotate(125deg) brightness(92%) contrast(92%);
}

.student-box h4{
    color: var(--secondary-color);
    margin-top: 16px;
    transition: all 0.3s ease;
    font-size: 22px;
}

.student-box:hover h4{
    color: #fff;
}

.student-box p{
    transition: all 0.3s ease;
}

.student-box:hover p{
    color: #fff;
}

.student-line-box{
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    border: 1px solid #c9d8ec;
    top: -15px;
    z-index: -1;
    left: 15px;
}

/* testimonial-section */
.testimonial-sec{
    position: relative;
}

.pb-6{
    padding-bottom: 60px;
}

.testimonial-top-text{
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-box{
    background: #f4f4f4;
    padding: 30px;
    border-radius: 30px;
    position: relative;
    transition: all 0.3s ease;
    width: 95%;
    margin: auto;
}

.testimonial-text{
    padding-top: 20px;
}

.student-box{
	height: 310px;
}
.testimonial-box:hover{
    background: var(--primary-color);
}

.testimonial-img-box{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.testimonial-name-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-profile-img img{
    width: 70px;
    height: 70px;
    border-radius: 50px;
	object-fit: cover;
}

.testimonial-icon img{
    filter: brightness(0) saturate(100%) invert(34%) sepia(96%) saturate(1150%) hue-rotate(125deg) brightness(92%) contrast(92%);
    transition: all 0.3s ease;
}

.testimonial-box:hover .testimonial-icon img,{
    filter: brightness(0) invert(1);
}

.testimonial-profile-text h4{
    font-size: 20px;
    margin-bottom: 0;
    transition: all 0.3s ease;
	font-family: 'Montserrat-Bold' !important;
}

.testimonial-box:hover .testimonial-profile-text h4{
    color: #fff;
}

.testimonial-profile-text p{
    color: var(--primary-color);
    font-size: 14px;
    margin: 0;
    transition: all 0.3s ease;
}

.testimonial-box:hover .testimonial-profile-text p{
    color: #fff;
}

.testimonial-box:hover p{
    color: #fff;
}

/* testimonial-buttons-designed */
.testimonial-slider .slick-arrow{
    position: absolute;
    top: -90px;
    right: 0;
    z-index: 9;

    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: all 0.3s ease;
}

/* prev button */
.testimonial-prev{
    right: 70px !important;
    background: #d9d9d9;
    color: #fff;
}

.testimonial-prev:hover{
    background: var(--primary-color);
}

/* next button */
.testimonial-next{
    background: #d9d9d9;
    color: #fff;
}

.testimonial-next:hover{
    background: var(--primary-color);
}

/* hover */
.testimonial-slider .slick-arrow:hover{
    transform: translateY(-3px);
}

/* funder-section */
.funder-sec{
    background: #f7f7f7;
}

.funder-top-text{
    display: flex;
    align-items: center;
    gap: 15px;
}

.funder-btn{
    margin-top: 30px;
}

.funder-btn a{
    background-color: var(--primary-color);
    padding: 12px 20px;
    border-radius: 50px;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.funder-btn a i{
    transform: rotate(-40deg);
    transition: all 0.3s ease-in-out;
}

.funder-btn a:hover{
    background-color: var(--secondary-color);
}

.funder-btn a:hover i{
    transform: rotate(0deg);
}

.funder-right-box{
    position: relative;
    width: 100%;
    height: 520px;
}

.funder-img-one{
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
}

.funder-img-one img {
    width: 300px;
    height: 420px;
    object-fit: cover;
    border-radius: 160px;
    border: 10px solid #fff;
}

.funder-img-two{
    position: absolute;
    right: 40px;
    top: 0;
    z-index: 1;
}

.funder-img-two img {
    width: 300px;
    height: 420px;
    object-fit: cover;
    border-radius: 160px;
}

.funder-right-box::after{
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border: 8px solid var(--primary-color);
    border-top: transparent;
    border-left: transparent;
    border-radius: 50%;
    left: 210px;
    bottom: 20px;
    transform: rotate(40deg);
    z-index: 0;
}

/* faq-section */
.faq-btn{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.faq-btn-one a{
    background-color: var(--primary-color);
    padding: 12px 20px;
    border-radius: 50px;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.faq-btn-one a i{
    transform: rotate(-40deg);
    transition: all 0.3s ease-in-out;
}

.faq-btn-one a:hover{
    background: var(--secondary-color);
}

.faq-btn-one a:hover i{
    transform: rotate(0deg);
}

.faq-btn-two a{
    border: 1px solid var(--secondary-color);
    padding: 12px 20px;
    border-radius: 50px;
    color: var(--secondary-color);
    transition: all 0.3s ease-in-out;
}

.faq-btn-two a i{
    transform: rotate(-40deg);
    transition: all 0.3s ease-in-out;
}

.faq-btn-two a:hover{
    background-color: var(--secondary-color);
    color: #fff;
}

.faq-btn-two a:hover i{
    transform: rotate(0deg);
}

.faq-top-text {
    display: flex;
    align-items: center;
    gap: 15px;
}

.custom-accordion .accordion-item{
    border: none;
    border-radius: 20px !important;
    overflow: hidden;
    margin-bottom: 20px;

    background: #fff;

    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.custom-accordion .accordion-button{
    background: #fff;
    color: #2a2a2a;
    font-size: 16px;
    font-family: 'Montserrat-Bold' !important;
    padding: 16px 26px;
    box-shadow: none !important;
}

.custom-accordion .accordion-button:not(.collapsed){
    background: var(--primary-color);
    color: #fff;
    border-radius: 14px;
}

.custom-accordion .accordion-body{
    padding: 20px 25px;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.custom-accordion .accordion-button::after{
    background-image: none !important;
    content: "\f107";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;

    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-accordion .accordion-button:not(.collapsed)::after{
    content: "\f106";
    transform: rotate(0deg);
    color: #fff;
}

/* footer-section-start */
.footer-sec{
    background-image: url('images/footer-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
}

.footer-logo img{
    max-width: 200px;
    height: auto;
}

.footer-logo-box p{
    margin: 12px 0;
    color: #fff;
}

.social-media-links{
    display: flex;
    align-items: center;
    gap: 6px;
}

.social-media-links a i{
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: all 0.3s ease;
}

.social-media-links a i:hover{
    background-color: #fff;
    color: var(--primary-color);
}

.quick-links-box {
    margin-left: 30px;
}

.quick-links-box h4{
    color: #fff;
}

.quick-links-box ul li::marker{
    color: #fff;
    font-size: 24px;
}

.quick-links-box ul li a{
    color: #fff;
    transition: all 0.3s ease;
}

.quick-links-box ul li a:hover{
    color: #000;
}

.footer-contact-box h4{
    color: #fff;
}

.footer-info-box{
    display: flex;
    align-items: start;
    gap: 12px;
    margin-top: 14px;
}

.footer-info-box i{
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    color: #fff;
}

.footer-info-box a{
    color: #fff;
    width: 80%;
}

.footer-updated-box h4, .footer-updated-box p {
    color: #fff;
}

.footer-form-group label{
    color: #fff;
    font-size: 16px;
    margin-bottom: 8px;
    display: inline-block;
}

.footer-form-group{
    margin-bottom: 20px;
}

.footer-name-field{
    display: flex;
    gap: 12px;
}

.footer-name-field input,
.footer-email-field input{
    width: 100%;
    height: 35px;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 50px;
    background: transparent;
    padding: 0 12px;
    color: #fff;
    outline: none;
}

/* .footer-name-field input{
    width: 50%;
} */


.footer-updated-box input::placeholder{
    color: rgba(255,255,255,0.8);
}

.footer-email-field{
    position: relative;
}

/* .footer-email-field input{
    padding-right: 120px;
} */

.footer-email-field button{
    position: absolute;
    top: 0;
    right: 0;

    width: 70px;
    height: 30px;

    border: none;
    border-radius: 50px;

    background: #7a7a7a;
    color: #fff;

    transition: all 0.3s ease;
}

.footer-email-field button:hover{
    background: #5f5f5f;
}

.footer-btm-content{
    border-top: 1px solid #fff;
    margin-top: 20px;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-btm-para p{
    margin-bottom: 0;
    color: #fff;
}

.footer-btm-para p a{
    color: #fff;
    font-weight: 800;
}

.footer-btm-links a{
    color: #fff;
    transition: all 0.3s ease;
}

.footer-btm-links a:hover{
    color: #000;
}

/* inner-banner-section */
.inner-banner-sec{
    width: 100%;
    height: auto;
    position: relative;
}

.inner-text{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 0;
    flex-direction: column;
}

.inner-text h2{
    color: #fff;
    font-size: 48px;
}

.inner-text ul{
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.inner-text ul li{
    list-style: none;
    color: #fff;
}

.inner-text ul li a{
    color: #fff;
    transition: all 0.3s ease;
}

.inner-text ul li a:hover{
    color: #000;
}

/* about-inner-section */
.about-inner-img{
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.about-inner-img img{
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* .about-inner-img:hover{
    transform: scale(1.05);
}

.about-inner-img::before{
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.5) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
}

.about-inner-img:hover::before{
    animation: shine 1s;
}
 */
@keyframes shine{
    100%{
        left: 125%;
    }
}

.about-inner-left-box {
    width: 95%;
}

.about-inner-top-text{
    display: flex;
    align-items: center;
    gap: 15px;
}

/* mission-section */
.mission-top-text{
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.mission-box{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    padding: 30px;
    transition: all 0.3s ease-in-out;
    position: relative;
	height: 400px;
}

.mission-box:hover{
    background: var(--primary-color);
    transform: translateY(-10px) scale(1.05) rotate(1deg) !important;
}

.mission-icon img{
    width: 70px;
    height: 70px;
    transition: all 0.3s ease-in-out;
}

.mission-box:hover .mission-icon img{
    filter: brightness(0) invert(1);
}

.mission-box h4{
    color: var(--primary-color);
    margin-top: 16px;
    margin-bottom: 6px;
    font-size: 24px;
    transition: all 0.3s ease-in-out;
}

.mission-box:hover h4{
    color: #fff;
}

.mission-box:hover p{
    color: #fff;
}

/* team-section-start */
/* .team-sec{
    background: #f7f7f7;
} */

.team-top-text{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.team-box {
    background-color: #fff;
    padding: 70px 20px 25px;
    border-radius: 30px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-top: 60px;
}

.team-box:hover {
    transform: translateY(-10px) !important;
}

.team-profile {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
}

.team-profile img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.team-box h4 {
    margin-top: 70px;
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 0;
}

.team-box p {
    margin-bottom: 15px;
}

.team-social-media-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social-media-icons a {
    width: 35px;
    height: 35px;
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.3s;
}

.team-social-media-icons a:hover{
    background-color: var(--secondary-color);
}

/* contact-inner-section */
.contact-inner-text{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.contact-inner-box{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    padding: 30px;
    transition: all 0.3s ease-in-out;
    position: relative;
    height: 100%;
}

.contact-inner-box:hover{
    background: var(--primary-color);
    transform: translateY(-10px) scale(1.05) rotate(1deg) !important;
}

.conatct-inner-box-icon i{
    width: 70px;
    height: 70px;
    transition: all 0.3s ease-in-out;
    background: var(--primary-color);
    color: #fff;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}

.contact-inner-box:hover .conatct-inner-box-icon i{
    background: #fff;
    color: var(--primary-color);
}

.contact-inner-box h4{
    color: var(--primary-color);
    margin-top: 16px;
    margin-bottom: 6px;
    font-size: 24px;
    transition: all 0.3s ease-in-out;
}

.contact-inner-box:hover h4{
    color: #fff;
}

.contact-inner-box a{
    color: #4b4b4b;
}

.contact-inner-box:hover a{
    color: #fff;
}

/* contact-form-section-start */
.form-sec{
    background: #f7f7f7;
}

.contact-form-box form {
    background: #fff;
    padding: 30px;
    border-radius: 30px;
    margin-top: 16px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.contact-form-box .form-label{
    font-size: 15px;
    font-weight: 600;
    color: #1d1d1d;
}

.contact-form-box .form-label span{
    color: red;
}

.contact-form-box .form-control,
.contact-form-box .form-select{
    height: 48px;
    border: 1px solid var(--primary-color);
    border-radius: 30px;
    box-shadow: none;
    font-size: 14px;
}

.contact-form-box textarea.form-control{
    height: auto;
    resize: none;
    padding-top: 12px;
}

.contact-form-box small{
    font-size: 12px;
    color: #777;
    margin-top: 6px;
    display: inline-block;
}

.contact-form-box .custom-input{
    position: relative;
}

.contact-form-box .custom-input i{
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    font-size: 14px;
    color: #999;
}

/* .contact-form-box .custom-input input{
    padding-left: 38px;
} */

.contact-form-box .privacy-box h6{
    font-size: 14px;
    line-height: 1.6;
    font-weight: 600;
    color: #1d1d1d;
}

.contact-form-box .privacy-box h6 a{
    color: red;
    text-decoration: none;
}

.contact-form-box .privacy-box .form-check p{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 12px;
}

.contact-form-box .privacy-box .form-check-input{
    box-shadow: none;
    margin-top: 3px;
}

.contact-form-box .privacy-box .form-check-label{
    font-size: 13px;
    line-height: 1.7;
    color: #666;
}

.contact-form-box .contact-submit-btn input.wpcf7-form-control.wpcf7-submit.has-spinner{
    border: none;
    background-color: var(--primary-color);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.contact-form-box .contact-submit-btn input.wpcf7-form-control.wpcf7-submit.has-spinner:hover{
    background-color: #000;
    transform: translateY(-3px);
}

.contact-map-box{
    position: sticky;
    top: 0;
}

.contact-map-box iframe{
    width: 100%;
    height: 600px;
    border-radius: 30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* apply-section-start */
.apply-sec{
    background: #f7f7f7;
    position: relative;
}

.apply-text{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.apply-box{
    padding: 30px;
    background: #fff;
    border-radius: 30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: all 0.3s ease-in-out;
    border: 1px solid transparent;
}

.apply-box-img {
    position: sticky;
    overflow: hidden;
    width: 100%;
    height: 300px;
    border-radius: 30px;
    transition: all 0.3s ease;
    top: 90px;
    object-position: top;
}

.apply-box-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    transition: all 0.3s ease;
}

/* .apply-box-img img:hover{
    transform: scale(1.1);
} */

.apply-box h4{
    font-size: 22px;
    color: var(--primary-color);
}

.apply-text-btm-box {
    width: 100%;
    padding: 0 20px;
}

.apply-text-btm-box ul{
    margin: 0;
    padding: 0;
}

.apply-text-btm-box ul li{
    list-style: none;
    position: relative;
    padding-left: 24px;
    padding-bottom: 6px;
    color: #4b4b4b;
}

.apply-text-btm-box ul li::before{
    content: "\f138";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary-color);
}

.apply-text-btn{
    margin-top: 30px;
}

.apply-text-btn a{
    background-color: var(--primary-color);
    padding: 12px 20px;
    border-radius: 50px;
    color: #fff;
    transition: all 0.3s ease-in-out;
}

.apply-text-btn a i{
    transform: rotate(-40deg);
    transition: all 0.3s ease-in-out;
}

.apply-text-btn a:hover{
    background-color: var(--secondary-color);
}

.apply-text-btn a:hover i{
    transform: rotate(0deg);
}

/* fund-page */
.funder-left-box.fund-page ul{
    margin: 0;
    padding: 0;
}

.funder-left-box.fund-page ul li{
    list-style: none;
    position: relative;
    padding-left: 24px;
    padding-bottom: 6px;
    color: #4b4b4b;
}

.funder-left-box.fund-page ul li::before{
    content: "\f138";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary-color);
}

/* partners-logo-section */
.partners-logo-sec{
    background: #f7f7f7;
}

.partners-logo-img{
    margin: 10px;
}

.partners-logo-img img{
    width: 100%;
    max-width: 220px;
    height: 110px;
    object-fit: contain;
    display: block;
    transition: 0.3s;
    margin: auto;
}

.partner-logo-text{
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

/* institutions-page-section */
section.about-inner-sec.padd.institute-page ul{
    margin: 0;
    padding: 0;
}

section.about-inner-sec.padd.institute-page ul li{
    list-style: none;
    position: relative;
    padding-left: 24px;
    padding-bottom: 6px;
    color: #4b4b4b;
}

section.about-inner-sec.padd.institute-page ul li::before{
    content: "\f138";
    font-family: "Font Awesome 7 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: var(--primary-color);
}

/* stories-section */
.stories-sec{
    background: #f7f7f7;
}

.stories-img-box{
    width: 100%;
    height: 390px;
    padding: 10px;
    border: 3px solid var(--primary-color);
    border-radius: 30px;
    overflow: hidden;
}

.stories-img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.stories-img-box img:hover{
    transform: scale(1.1);
}

.stories-right-box{
    padding: 30px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 30px;
}

.stories-text-content h4{
    color: var(--primary-color);
    margin-bottom: 0;
    font-size: 22px;
    font-family: "Montserrat", sans-serif !important;
}

.stories-text-content small{
    font-size: 15px;
}

.impact-stories-degree-content {
    border-top: 1px solid var(--primary-color);
    padding-top: 20px;
    margin-top: 20px;
}

.impact-stories-degree-box {
    display: flex;
    align-items: start;
    gap: 10px;
}

.impact-stories-degree-icon i {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    color: #fff;
    font-size: 18px;
}

.impact-stories-degree-text p {
    color: #000;
}

.stories-top-text{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* application-form */

.application-form-card {
    background: #fff;
    padding: 30px;
    border-radius: 30px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* Labels */
.application-form label {
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 6px;
  display: block;
}

/* Inputs + Select */
.application-form .form-control {
  width: 100%;
  border-radius: 50px;
  padding: 14px 18px;
  border: 1px solid #000;
  background: #fff;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

/* Focus Effect */
.application-form .form-control:focus {
  background: #fff;
  box-shadow: 0 0 0 2px var(--secondary-color);
}

/* Placeholder */
.application-form ::placeholder {
  color: #9aa3b2;
}

/* Date Input Icon Fix */
.application-form input[type="date"] {
  position: relative;
}

/* Radio Buttons */
.application-form .form-check {
  display: inline-block;
  margin-right: 15px;
}

.application-form .form-check-input {
  accent-color: #5a67d8;
  cursor: pointer;
}

.application-form .form-check-label {
  margin-left: 5px;
  cursor: pointer;
  font-weight: 500;
}

/* Spacing */
.application-form .form-group {
  margin-bottom: 20px;
}

.application-submit-btn{
    padding: 10px 24px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    font-size: 16px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: none;
}

.application-submit-btn:hover{
    background: #000;
}

/* .form-step {
    display: none;
}

.form-step.active {
    display: flex;
} */


.founder-message-content{
    background:#f4f4f4;
    border-radius:30px;
    padding:50px;
}

.founder-img img{
    width:100%;
height: 100%;
    border-radius:25px;
    object-fit:cover;
}

.founder-text .subtitle{
    color:#0c8242;
    font-weight:600;
    margin-bottom:10px;
}

.founder-text .title{
    margin-bottom:20px;
}

.founder-text p{
    margin-bottom:15px;
    color:#555;
    line-height:1.8;
}

.founder-sign{
    margin-top:25px;
    border-left:4px solid #0c8242;
    padding-left:15px;
}

.founder-sign h5{
    margin-bottom:3px;
    color:#0c8242;
    font-weight:700;
}

.founder-sign span{
    color:#666;
    font-size:14px;
}

@media(max-width:767px){
    .founder-message-content{
        padding:25px;
    }
}



    .process-timeline{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.process-step,
.impact-box,
.partner-box,
.option-card{
    background:#f4f4f4;
    padding:30px;
    border-radius:20px;
    text-align:center;
    transition:.3s;
    height:100%;
}

.process-step:hover,
.impact-box:hover,
.partner-box:hover,
.option-card:hover{
    transform:translateY(-5px);
}

.process-step span{
    width:60px;
    height:60px;
    background:#0c8242;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    margin:auto auto 20px;
    font-weight:700;
}

.partner-box h4{
    margin:0;
}

.option-fit-card{
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    box-shadow: rgba(100,100,111,0.15) 0px 7px 29px 0px;
    height: 100%;
    border: 1px solid #eee;
}

.option-fit-card h4{
    font-size: 28px;
    margin-bottom: 18px;
    color: #0c8242;
}

.option-fit-card p{
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.option-fit-card ul{
    padding: 0;
    margin: 0 0 30px;
    list-style: none;
}

.option-fit-card ul li{
    margin-bottom: 14px;
    color: #222;
}

.option-fit-card ul li i{
    color: #0c8242;
    margin-right: 10px;
}

.option-fit-btn{
    display: inline-block;
    background: #0c8242;
    color: #fff;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.option-fit-btn:hover{
    background: #066533;
    color: #fff;
}

.partner-logos{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:40px;
}

.partner-logos img{
    max-height:60px;
    object-fit:contain;
}

@media(max-width:991px){

    .process-timeline{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .process-timeline{
        grid-template-columns:1fr;
    }

}


.partner-type-box {
    background: #f4f4f4;
    padding: 16px 10px;
    border-radius: 25px;
    text-align: center;
    transition: .3s;
    height: 100%;
}

.partner-type-box:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.partner-icon {
    width: 50px;
    height: 50px;
    background: #0c8242;
    color: #fff;
    margin: 0 auto 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.partner-type-box h4 {
    /* margin-bottom: 15px; */
    color: #0c8242;
    font-weight: 700;
    font-size: 18px;
}

.partner-type-box p {
    margin: 0;
    color: #666;
    line-height: 1.7;
    font-size: 15px;
}


.navbar-sec {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 999;
    padding: 15px 0;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.navbar-logo img {
    max-width: 180px;
    width: 100%;
    height: auto;
}

/* Menu */

.menu-toggle {
    display: none;
}


@media (max-width:991px){

    .navbar-content{
        position: relative;
    }

    .menu-toggle{
        display:flex;
        width:45px;
        height:45px;
        justify-content:center;
        align-items:center;
        cursor:pointer;
        font-size:26px;
    }

    .navbar-btn{
        display:none;
    }

    .navbar-links{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#fff;
        padding:20px;
        display:none;
        box-shadow:0 10px 30px rgba(0,0,0,.1);
    }

    .navbar-links.active{
        display:block;
    }

    .navbar-links ul{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }

    .navbar-links ul li{
        width:100%;
    }

    .navbar-links ul li a{
        display:block;
        padding:8px 0;
    }

}

@media(max-width:575px){

    .navbar-logo img{
        max-width:140px;
    }

    .navbar-sec{
        padding:12px 0;
    }

}


@media(max-width:991px){

    .navbar-links{
        display:none;
        width:100%;
    }

    .navbar-links.active{
        display:block;
    }

    .navbar-links ul{
        display:flex;
        flex-direction:column;
    }
}


@media (min-width: 991px) and (max-width:1200px){
	.navbar-btn a {
    	padding: 10px 13px;
    	font-size: 14px;
	}
	
	.navbar-links ul li a {
    	font-size: 13px;
	}
	
	.navbar-logo img {
    	max-width: 150px;
    	width: 100%;
    	height: auto;
	}
	
	.navbar-links ul {
    	gap: 20px;
	}
}


@media (max-width: 991px) {
   
    p {
        font-size: 15px !important;
    }
	
	.hero-bg {
		height: 400px;
	}
	
	.hero-btn{
		margin-top: 0;
	}
	
	.hero-btn-one a, .student-btn a, .course-btn a,
	.hero-btn-two a{
		padding: 10px 15px;
	}
	
	.student-btn.text-end.aos-init.aos-animate {
    	text-align: left !important;
	}
	
	.testimonial-box, .student-box {
    	margin-bottom: 20px;
	}
	
	.about-inner-img img {
		min-height: auto;
	}
	.funder-right-box::after{
		display: none;
	}
	
	.apply-text-btm-box {
    	padding: 0;
	}
	
	.quick-links-box {
    	margin-left: 0px;
	}
	
	.apply-box {
		padding: 20px;
	}
	
	.carrer-box {
    	margin-top: 30px;
	}
}


@media (max-width: 767px) {
   
    p {
        font-size: 15px !important;
        line-height: 1.6;
    }
	
	.hero-text {
    	padding-top: 50px;
    	width: auto;
	}
	
	    .carrer-box {
        border-radius: 20px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
    }
	
	.carrer-box-text {
    	width: 100%;
	}
	
/* 	.carrer-box-img {
    	position: absolute;
    	bottom: 0px;
    	right: 0px;
	}
	
	.carrer-box-img img {
    	width: 100%;
    	height: 147px;
	} */
	
	.testimonial-slider .slick-arrow {
		top: -51px;
	}
	
}


	.montserrat {
  		font-family: "Montserrat", sans-serif;
	}



.mail-img {
    border-radius: 30px;
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top;
}


/* 07.07.2026 */
.student-top-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.start-line {
    height: 2px;
    background-color: var(--secondary-color);
    width: 8%;
}

.course-top-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-icon {
    display: none;
}

.pt-6 {
    padding-top: 60px;
}

.footer-form-group p {
    margin-bottom: 6px;
}

section.easy-sec.padd .our-story-image {
    position: sticky;
    top: 88px;
}

section.easy-sec.padd.waise-mtch-cl .easy-content-text-box.waiser-djh {
    height: 280px;
}

.back-to-top{
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    background: #0c8242;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .3s ease;
    z-index: 9999;
}

.back-to-top:hover{
    background: #000;
    color: #fff;
    transform: translateY(-5px);
}

.back-to-top.active{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 08.07.2026 */
@media only screen and (max-width: 1199px) {
	
	.easy-content-text-box {
    height: 214px;
}
	
	section.easy-sec.padd.waise-mtch-cl .easy-content-text-box.waiser-djh {
    height: 340px;
}

}

@media only screen and (max-width: 991px) {
	
	.hero-text {
    padding-top: 50px;
    width: 80%;
}
	
	.title {
    font-size: 34px;
}
	
	.hero-text h3 {
    font-size: 38px;
}
	
	/* White Overlay */
.hero-bg::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(255 255 255);
    z-index: 1;
}

/* Content overlay ke upar rahe */
.hero-bg .container{
    position: relative;
    z-index: 2;
}
	
	.inner-text h2 {
    font-size: 38px;
}
	
	    section.easy-sec.padd.waise-mtch-cl .easy-content-text-box.waiser-djh {
        height: 260px;
    }
	
	
	section.about-inner-sec.padd.institute-page.educ-intit-pg-img .about-inner-img img {
    height: auto !important;
}
	
	.mail-img {
    height: auto !important;
}
	

}

@media only screen and (max-width: 767px) {
	
	.hero-text {
        padding-top: 40px;
        width: 100%;
    }
	
	.hero-text h3 {
        font-size: 32px;
    }
	
	.hero-bg {
        height: 370px;
    }
	
	.title {
        font-size: 28px;
    }
	
	.easy-content-text-box {
        height: auto;
    }
	
	.student-box {
    height: auto;
}
	
	.testimonial-slider .slick-arrow {
    display: none !important;
}
	
	.footer-btm-content {
    padding: 10px 0;
    flex-direction: column;
}
	
	.mission-box {
    height: auto;
}
	
	.inner-text h2 {
        font-size: 32px;
		text-align: center;
    }
	
	section.easy-sec.padd.waise-mtch-cl .easy-content-text-box.waiser-djh {
        height: auto;
    }

	.funder-right-box {
    height: auto;
}

.funder-img-one {
    position: relative;
}

.funder-img-one img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 2px solid #fff;
}
	
	.funder-img-two img {
    display: none;
}
	
	
}

@media only screen and (max-width: 575px) {
	
	    .hero-text h3 {
        font-size: 28px;
    }
	
	    .title {
        font-size: 26px;
    }
	
	.carrer-box {
        border-radius: 20px;
    }
	


}

@media only screen and (max-width: 414px) {
	
	.testimonial-profile-text p{
    font-size: 12px !important;
}
	
	
}

@media only screen and (max-width: 375px) {
	
	.hero-icon-text h5 {
    font-size: 15px;
}
	
	.hero-bg {
        height: 440px;
    }
	
	.footer-btm-para p {
    text-align: center;
}

}

@media only screen and (max-width: 360px){
	
	    .hero-btn-one a, .student-btn a, .course-btn a, .hero-btn-two a {
        padding: 8px 10px;
        font-size: 14px;
    }
	
	.faq-btn-one a {
    padding: 8px 10px;
    font-size: 15px;
}
	
	.faq-btn-two a {
    padding: 8px 10px;
    font-size: 15px;
}
	
	.hero-icon-text {
    gap: 4px;
}
	
}


/* 11.07.2026 */
.partners-logo-box.new-wai-img-adj .partners-logo-img img {
    height: auto;
    max-width: 500px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 20px;
    object-fit: cover;
}

[data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
}


/* 16.07.2026 */
@media only screen and (max-width: 400px) {
    .hero-bg {
        height: 420px;
    }
}



section.about-inner-sec.padd.institute-page.educ-intit-pg-img .about-inner-img img {
    height: 440px;
}


/* 21.07.2026 */
.waiser-new-hero-img{
    display:none;
}

.waiser-new-hero-img-content{
    text-align:center;
}

/* Mobile */

@media (max-width:991px){

    .waiser-new-hero-img{
        display:block;
        background:#fff;
    }

        .waiser-new-hero-img-content img{
    width:100%;
    max-width:360px !important;
    height:auto !important;
    margin:0 auto;
}

}


a.new-wais-pd-lkk-op {
    background-color: var(--primary-color);
    padding: 12px 20px;
    border-radius: 50px;
    color: #fff;
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

a.new-wais-pd-lkk-op:hover{
	background: #000;
}
