body {
    font-family: 'Outfit', sans-serif;
    background-image: linear-gradient(to right, #ffcb5b26, #ffeded, #ffcb5b26);
}
h1, h2. h3, h4, h5{font-family: 'Oswald', sans-serif;}
img{max-width: 100%;}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
p{
	color: #0c0c0c;
	font-size: 16px;
}
a{text-decoration: none;}
.m-auto{
	margin: 0 auto;
}

/**/
.zoom-in-zoom-out { 
  animation: zoom-in-zoom-out 2s ease-out infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}
.fa-spin {
    -webkit-animation: fa-spin 9s linear infinite !important;
    animation: fa-spin 15s linear infinite !important;
} 
.white-text{color: #fff;} 
.align{
	align-items: center;
} 
   
/**/
/* ===================================
   GOOGLE FONT
=================================== */
 
/* ===================================
   TOP HEADER
=================================== */

.top-header {
    background: #470089;
    border-bottom: 1px solid #e8dfd3;
    padding: 6px 0;
}

.top-contact{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
}

.top-contact a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    transition: .4s;
    font-weight: 500;
    letter-spacing: 1px;
}

.top-contact a i {
    width: 27px;
    height: 27px;
    background: #ffd400;
    border: 1px solid #e3d9cc;
    border-radius: 50%;
    text-align: center;
    line-height: 26px;
    margin-right: 4px;
    color: #000000;
    transition: .4s;
}

.top-contact a:hover{
    color:#ffd400;
}

.top-contact a:hover i{
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(0,0,0,.08);
}

.top-social{
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:12px;
}

.top-social span{
    color:#5f564a;
    font-size:14px;
}
.top-social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    text-decoration: none;
    border: 1px solid #e3d9cc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    transition: .4s;
    background: #ffd400;
}

.top-social a:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 25px rgba(0,0,0,.10);
}

/* ===================================
   MAIN HEADER
=================================== */

.main-header{
    background:#fff;
    position:sticky;
    top:0;
    z-index:999;
    box-shadow:0 5px 30px rgba(0,0,0,.04);
}

.main-header .container {
    padding-top: 8px;
    padding-bottom: 8px;
}
.main-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: end;
    gap: 25px;
}

.main-menu ul li a {
    text-decoration: none;
    color: #111;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    transition: .4s;
}

.main-menu ul li a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0%;
    height:2px;
    background:#470089;
    transition:.4s;
}

.main-menu ul li a:hover,
.main-menu ul li a.active{
    color:#470089;
}

.main-menu ul li a:hover::after,
.main-menu ul li a.active::after{
    width:100%;
}

.header-btn{
    text-align:right;
}
.header-btn a {
    display: inline-block;
    background: #470089;
    color: #fff;
    text-decoration: none;
    padding: 12px 17px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: .4s;
}
.header-btn a:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 25px rgba(185,140,83,.30);
}
.header-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.mobile-toggle{
    display:none;
    border:none;
    background:none;
    font-size:28px;
    color:#470089;
}

.logo-main {
    width: 295px;
}
nav.main-menu {
    width: 75%;
}

/**/

.trust-section {
    margin-top: 50px;
    position: relative;
    z-index: 10;
}

.trust-box{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.trust-item{
    text-align:center;
    padding:40px 25px;
    border-right:1px solid #ece7df;
    transition:.4s;
    height:100%;
}

.trust-item:hover{
    transform:translateY(-8px);
}

.border-remove{
    border-right:none;
}

.trust-icon {
    width: 85px;
    height: 85px;
    margin: auto;
    border-radius: 50%;
    background: #470089;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border: solid 1px #4700893d;
}

.trust-icon i{
    font-size:38px;
    color:#ffd400;
}

.trust-item h4{
    font-size:22px;
    font-weight:600;
    margin-bottom:10px;
    color:#222; 
}

.trust-item p {
    color: #323232;
    margin: 0;
    font-size: 16px;
}

.trust-item::after{
    content:'';
    width:55px;
    height:3px;
    background:#ffd400;
    display:block;
    margin:20px auto 0;
    border-radius:30px;
}

/* Tablet */

@media(max-width:991px){

    .trust-item{
        border-right:none;
        border-bottom:1px solid #ece7df;
    }

    .trust-section{
        margin-top:30px;
    }
}

/* Mobile */

@media(max-width:767px){

    .trust-item{
        padding:30px 20px;
    }

    .trust-icon{
        width:70px;
        height:70px;
    }

    .trust-icon i{
        font-size:30px;
    }

    .trust-item h4{
        font-size:22px;
    }
 .trust-item h4 { 
    margin-bottom: 5px; 
}
}

/**/


/* ===================================
   MOBILE MENU
=================================== */

@media(max-width:1199px){
nav.main-menu {
    width: 70%;
}
.main-menu ul { 
    gap: 17px;
}
.main-menu ul li a { 
    font-size: 14px; 
}
}
@media(max-width:991px){
.text-end { 
    justify-content: end;
    display: flex;
}
    .main-header{
        position:relative;
    }

    .logo-area{
        justify-content:center; 
    }

    .main-menu ul{
        flex-wrap:wrap;
        gap:15px;
        margin-bottom:20px;
    }

    .header-btn{
        text-align:center;
    }

     .mobile-toggle{
        display:block;
    }

    .header-wrapper{
        display:block;
    }

    #mainMenu{
        margin-top:20px;
        background:#fff;
        border-radius:15px;
        padding:20px;
        box-shadow:0 10px 30px rgba(0,0,0,.08);
    }

    .main-menu ul{
        flex-direction:column;
        padding:0;
        margin:0;
        gap:0;
    }

    .main-menu ul li{
        width:100%;
        text-align:center;
    }

    .main-menu ul li a{
        display:block;
        padding:14px 0;
        border-bottom:1px solid #d9d9d9;
    }

    .header-btn{
        margin-top:20px;
        text-align:center;
    }

    .header-btn a{
        width:100%;
        display:block;
    }
    .mobile-toggle {
    font-size: 28px;
    color: #470089;
    background: #fff4e0;
    width: 50px;
    height: 50px;
    border: solid 1px #e9e9e9;
}
nav.main-menu {
    width: 100%;
}
.logo-main {
    width: 280px;
}

}

@media(max-width:767px){

    .top-contact{
        justify-content:center;
        margin-bottom:10px;
    }

    .top-social{
        justify-content:center;
    }

    .logo-content h3{
        font-size:24px;
    }

    .main-menu ul{
        flex-direction:column;
        text-align:center;
    }

    .header-btn a{
        width:100%;
    }
    .top-header .top-social {
    display: none;
}
.top-contact { 
    gap: 8px; 
}
.top-contact a i { 
    margin-right: 2px; 
}

} 

@media(max-width:350px){
.top-contact a { 
    font-size: 13px; 
}

} 

 /**/

 .about-section{
    padding:70px 0;
    background:#faf7f2;
    overflow:hidden;
}

.about-img{
    position:relative;
}

.about-img img{
    width:100%;
    border-radius:18px;
    position:relative;
    z-index:2; 
}

.img-shape{
    width:250px;
    height:250px;
    border-radius:50%;
    background:rgba(199,154,87,.08);
    position:absolute;
    top:-40px;
    left:-40px;
    z-index:1;
}

.about-content{
    padding-left:40px;
}
.sub-title {
    color: #ffd400;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: 35px;
    line-height: 1.1;
    color: #222;
    margin-bottom: 20px;
    font-weight: 700;
}

.title-line{
    width:80px;
    height:3px;
    background:#ffd400;
    margin-bottom:25px;
}

.about-content p {
    color: #383838;
    font-size: 16px;
    line-height: 27px;
    margin-bottom: 20px;
}

.about-btn {
    font-size: 18px;
    display: inline-block;
    background: #ffd400;
    color: #111;
    text-decoration: none;
    padding: 14px 20px;
    border-radius: 46px;
    font-weight: 500;
    transition: .4s;
    margin-top: 10px;
    letter-spacing: 1px;
}

.about-btn:hover{
    background:#470089;
    color:#fff;
    transform:translateY(-5px);
    box-shadow:0 15px 25px rgba(199,154,87,.25);
}

/* Tablet */

@media(max-width:991px){

    .about-content{
        padding-left:0;
        margin-top:40px;
    }

    .about-content h2{
        font-size:35px;
    }
}

/* Mobile */
.footer-widget ul li a i {
    color: #fcd200;
}
@media(max-width:767px){

    .about-section{
        padding:40px 0;
    }

    .about-content h2{
        font-size:32px;
    }
 
}


/**/
.services-section {
    padding: 40px 0;
    background: linear-gradient(98deg, #470089 0%, #8e2de7 60%, #470089 100%);
}
.section-title {
    max-width: 700px;
    margin: 0 auto 35px;
}

.section-title span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
}

.section-title h2 {
    font-size: 45px;
    color: #fff;
    margin: 10px 0 15px  0; 
    font-weight: 700;
}
.section-title p {
    color: #eee;
    font-size: 20px;
}

.service-card {
    background: #fff;
    padding: 24px 20px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    transition: .4s;
    box-shadow: 0 10px 25px rgba(0,0,0,.04);
}

.service-icon img {
    border: solid 1px #470089;
    border-radius: 10px;
    margin-bottom: 12px;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.10);
}
 
.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #470089;
    font-weight: 700;
}
.service-card p {
    color: #262626;
    margin: 0;
    font-size: 18px;
}
@media(max-width:991px){
 
    .section-title h2{
        font-size:40px;
    }
}

@media(max-width:767px){

  .section-title h2 {
    font-size: 25px;
    line-height: 1.4;
}
.services-section {
    padding: 30px 0; 
}
.section-title p { 
    font-size: 16px;
    line-height: 1.3;
}


    .service-card{
        padding:30px 20px;
    }

    .service-card h3{
        font-size:22px;
            margin-bottom: 7px;
    }
    .about-btn {
    font-size: 16px; 
}


}

/**/
.why-us-premium {
    padding: 45px 0;
    background: #fffdf8;
    position: relative;
    overflow: hidden;
}
.why-title {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}
.owl-theme .owl-controls .owl-page span { 
    background: #470089 !important;
}
.why-title h4 {
    color: #470089;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}
.why-title h2 {
    font-size: 38px;
    color: #000000;
    margin-bottom: 15px;
    font-weight: 800;
}
.why-title p {
    max-width: 700px;
    margin: auto;
    color: #000000;
    font-size: 18px; 
}
.why-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    height: 100%;
    position: relative;
    transition: .5s;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    border: 2px solid #ffd400;
}
.why-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}
.why-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    background: linear-gradient(98deg, #470089 0%, #8e2de7 60%, #470089 100%);
}
.why-icon:before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px dashed #470089;
    border-radius: 50%;
    animation: rotate 10s linear infinite;
}
.why-icon i{
    color:#fff;
    font-size:35px;
}
.why-card h4 {
    font-size: 22px;
    margin-bottom: 7px;
    color: #470089;
}
.why-card p {
    color: #000000;
    margin: 0;
    line-height: 1.8;
    font-size: 17px;
}
@keyframes rotate{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}
@media(max-width:991px){
.why-title h2{
    font-size:36px;
}
.why-card{
    margin-bottom:20px;
}
}
@media(max-width:576px){
.why-title h2{
    font-size:25px;
}
.why-card{
    padding:30px 20px;
}
}

/* ==========================
FAQ LUXURY SECTION
========================== */

.faq-luxury {
    padding: 40px 0;
    background: #ffffff;
    overflow: hidden;
    border-top: solid 1px #f5dec1;
    border-bottom: solid 1px #f5dec1;
}

/* LEFT SIDE */

.astro-box {
    position: relative;
    width: 450px;
    height: 450px;
    margin: auto;
}
.gold-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: dotted 3px #470089;
    animation: rotateRing 30s linear infinite;
}
.gold-ring::before {
    content: '';
    position: absolute;
    inset: 40px;
    border: 2px dashed #ae8119;
    border-radius: 50%;
}
.astro-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid #470089;
    box-shadow: 0 0 0 15px #be95172e, 0 20px 60px rgba(0, 0, 0, .18);
}

.astro-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.planet {
    position: absolute;
    border-radius: 50%;
    background: #47008930;
}

.p1{
    width:50px;
    height:50px;
    top:80px;
    left:50px;
}

.p2{
    width:25px;
    height:25px;
    top:100px;
    right:80px;
}

.p3{
    width:65px;
    height:65px;
    bottom:90px;
    right:50px;
}

.p4{
    width:30px;
    height:30px;
    bottom:80px;
    left:120px;
}

/* RIGHT SIDE */

.faq-content-box{
    max-width:650px;
}
 
.faq-content-box h2 {
    font-size: 35px;
    margin: 12px 0 15px;
    line-height: 1.15;
    font-weight: 700;
}

.faq-content-box p {
    color: #000000;
    margin-bottom: 22px;
    font-size: 18px;
}

/* FAQ DESIGN */

.custom-faq .accordion-item{
    border:none;
    margin-bottom:18px;
    background:none;
}

.custom-faq .accordion-button {
    position: relative;
    background: #ffd400;
    border-radius: 16px !important;
    min-height: 54px;
    font-size: 19px;
    font-weight: 600;
    color: #111;
    padding: 15px 70px 15px 17px;
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
    border: solid 1px #b88b5252;
}

.custom-faq .accordion-button:focus{
    box-shadow:
    0 10px 25px rgba(0,0,0,.06);
}

.custom-faq .accordion-button::after{
    display:none;
}

.custom-faq .accordion-button::before {
    content: "+";
    position: absolute;
    right: 25px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #470089;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.custom-faq .accordion-button:not(.collapsed) {
    color: #fff;
    background: #470089;
}

.custom-faq .accordion-button:not(.collapsed)::before{
    content:"−";
    background:#fff;
    color:#470089;
}

.custom-faq .accordion-body {
    background: #fff;
    margin-top: 10px;
    border-radius: 16px;
    padding: 22px;
    color: #000000;
    box-shadow: 0 10px 25px rgba(0,0,0,.05);
    font-size: 16px;
    border: solid 1px #b88b5252;
}

/* ANIMATION */

@keyframes rotateRing{
    from{
        transform:rotate(0deg);
    }
    to{
        transform:rotate(360deg);
    }
}

/* MOBILE */

@media(max-width:991px){

    .astro-box{
        width:340px;
        height:340px;
        margin-bottom:60px;
    }

    .astro-img{
        width:240px;
        height:240px;
    }

    .faq-content-box h2{
        font-size:34px;
    }
}

/* ==========================
Contact Us
========================== */
.consultation-luxury {
    padding: 40px 0;
    background: #ffd400;
}
.consultation-box{
    background:#fff;
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.08);
}
.consultation-info {
    height: 100%;
    padding: 25px;
    background: #350066;
    color: #fff;
    border-radius: 15px;
}

.small-heading {
    color: #ffc107;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
}
.consultation-info h2 {
    font-size: 30px;
    margin: 10px 0; 
    line-height: 1.2;
}

.consultation-info p {
    color: #ffffff;
    margin-bottom: 35px;
    line-height: 28px;
    font-size: 17px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    margin-bottom: 18px;
    border-radius: 16px;
    background: #500795;
    border: 1px solid #ffffff47;
}

.contact-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #470089;
    font-size: 22px;
    background: #ffffff;
}

.contact-card h6{
    margin:0;
    font-size:18px;
    font-weight:600;
}

.contact-card span {
    color: #ffffff;
    font-size: 18px;
}
.aword {
    border: solid 2px #470089;
    border-radius: 14px;
    margin-bottom: 20px;
}
/* RIGHT FORM */
.consultation-form {
    padding: 20px 40px;
    background: #fff;
}
.form-heading {
    margin-bottom: 25px;
}
.form-heading span {
    color: #470089;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
}
.form-heading h3 {
    font-size: 30px;
    margin-top: 10px;
    font-weight: 800;
}
/* INPUTS */

.input-box{
    position:relative;
    margin-bottom:22px;
}

.input-box i {
    position: absolute;
    left: 18px;
    top: 20px;
    color: #470089;
    font-size: 20px;
}

.input-box input,
.input-box textarea{
    width:100%;
    border:1px solid #e5e5e5;
    border-radius:14px;
    background:#fff;
    padding:16px 18px 16px 50px;
    transition:.3s;
}

.input-box textarea{
    resize:none;
}

.input-box input:focus,
.input-box textarea:focus{
    outline:none;
    border-color:#ff9209;
    box-shadow:0 0 0 4px rgba(255,146,9,.10);
}

.input-box label{
    position:absolute;
    left:50px;
    top:16px;
    color:#777;
    transition:.3s;
    pointer-events:none;
}

.input-box input:focus + label, 
.input-box input:valid + label,
 .input-box textarea:focus + label,
  .input-box textarea:valid + label {
    top: -10px;
    left: 18px;
    background: #fff;
    padding: 0 8px;
    font-size: 13px;
    color: #350066;
    font-weight: 600;
}

/* BUTTON */
.submit-btn {
    width: 225px;
    height: 60px;
    border: none;
    border-radius: 114px;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    transition: .3s;
    background: #470089;
}
.submit-btn:hover {
    background: #fbd000;
    color: #000;
}

.submit-btn i{
    margin-right:8px;
}

/* MOBILE */


@media(max-width:991px){

    .consultation-info{
        padding:35px 25px;
    }

    .consultation-form{
        padding:35px 25px;
    }

    .consultation-info h2{
        font-size:32px;
    }

    .form-heading h3{
        font-size:25px;
    }
     .form-heading h3 br{
       display: none;
    }
    nav.main-menu {
    background: #fff9ee;
    border: solid 1px #e9e9e9;
    border-radius: 12px;
    margin-top: 6px;
}
.main-menu ul li a {
    color: #000;
    font-size: 17px;
}

}
.review-img {
    border-radius: 12px;
    border: solid 2px #470089;
}
.review {
    padding: 5px;
}

@media(max-width:767px){
.astro-box {
    width: 290px;
    height: 290px;
    margin-bottom: 20px;
}
.faq-content-box h2 {
    font-size: 25px;
}
 #faq {
    text-align: center;
}
#faqAccordion {
    text-align: left !important;
}
.top-header { 
    padding: 4px 0 0 0;
}
.top-contact { 
    margin-bottom: 5px !important;
}
.consultation-info {
    padding: 25px 12px;
}
.consultation-info h2 {
    font-size: 26px;
    font-weight: 700;
}

.consultation-info p { 
    margin-bottom: 20px;
    line-height: 25px;
    font-size: 17px;
}
.contact-card h6 { 
    font-size: 22px; 
}
.contact-card span {
    color: #ffffff;
    font-size: 17px;
}

}

/**/

/* testimonial-section */
.testimonial-section{
    padding:40px 0;
    background:#fff;
}

.testimonial-heading{
    max-width:700px;
    margin:auto;
    margin-bottom:60px;
}

.sub-title{
    color:#470089;
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
}

.testimonial-heading h2 {
    font-size: 40px;
    margin: 15px 0;
    color: #000000;
    font-weight: 800; 
}

.testimonial-heading p {
    color: #000000;
    line-height: 30px;
    font-size: 18px;
    margin-bottom: -30px;
}
/* SLIDER */

.testimonial-slider{
    display:flex;
    align-items:center;
    gap:20px;
}

.testimonial-wrapper{
    display:flex;
    gap:25px;
    overflow:hidden;
    width:100%;
    scroll-behavior:smooth;
}
.testimonial-card {
    flex: 0 0 calc(33.333% - 17px);
    min-width: calc(33.333% - 17px);
    background: #fff;
    border: 3px solid rgba(185, 140, 83, .25);
    border-radius: 10px;
    padding: 18px;
    transition: .3s;
}
.stars {
    color: #470089;
    font-size: 28px;
    margin-bottom: 4px;
    letter-spacing: 3px;
}

.testimonial-card p {
    color: #000000;
    min-height: 120px;
    margin-bottom: 22px;
    font-size: 16px;
}
/* CLIENT */

.client-info{
    display:flex;
    align-items:center;
    gap:15px;

    border-top:1px solid #eee;
    padding-top:20px;
}

.client-info img{
    width:65px;
    height:65px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #470089;
}

.client-info h5 {
    margin: 0;
    color: #470089;
    font-size: 18px;
    font-weight: 700;
}
.client-info span{
    color:#000000;
    font-size:15px;
}

/* BUTTON */

.nav-btn{

    width:55px;
    height:55px;

    border:none;

    border-radius:50%;

    background:#470089;

    color:#fff;

    cursor:pointer;

    flex-shrink:0;

    transition:.3s;
}
.footer-logo {
    background: #fff;
    border-radius: 12px;
    padding: 5px;
}
.nav-btn:hover{
    background:#000;
}

/* TABLET */

@media(max-width:991px){

    .testimonial-card{
        flex:0 0 calc(50% - 13px);
        min-width:calc(50% - 13px);
    }

    .testimonial-heading h2{
        font-size:38px;
    }
}

/* MOBILE */

@media(max-width:767px){

    .testimonial-card{
        flex:0 0 100%;
        min-width:100%;
    }

    .testimonial-heading h2{
        font-size:30px;
    }

    .nav-btn{
        width:45px;
        height:45px;
        display:flex;
        align-items:center;
        justify-content:center;
    }
}
section.ready-sec {
    text-align: center;
    padding: 30px 0;
    background: #ffd400;
}
.head h2 {
    font-size: 40px;
    font-weight: 700;
    color: #470089; 
}
.head p {
    font-size: 18px;
    color: #000000;
}
button.whatsapp-btn {
    padding: 13px 20px;
    background: #470089;
    border-radius: 50px;
    border: none;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
}
button.whatsapp-btn:hover {
    background: #8b622d;
     transition: 0s;
}

/**/

.main-footer {
    background: #470089;
    padding-top: 40px;
    border-top: 1px solid #ece2d4;
}

.footer-logo {
    max-width: 290px;
    margin-bottom: 12px;
}

.footer-widget p {
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-widget h4{
    font-size:25px;
    margin-bottom:25px;
    color:#fad000; 
    font-weight:700;
}

.footer-widget ul{
    margin:0;
    padding:0;
    list-style:none;
}

.footer-widget ul li{
    margin-bottom:12px;
}

.footer-widget ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: .4s;
}

.footer-widget ul li a:hover{
    color:#ffd400;
    padding-left:8px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact a {
    text-decoration: none;
    color: #ffffff;
    transition: .4s;
}

.footer-contact a i {
    color: #ffd400;
    margin-right: 5px;
}

.footer-contact a:hover{
    color:#ffd400;
}

.footer-social{
    display:flex;
    gap:12px;
}
.footer-social a {
    width: 42px;
    height: 42px;
    background: #fed300;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000000;
    transition: .4s;
    box-shadow: 0 5px 15px rgba(0,0,0,.05);
    border: solid 1px #ffd40069;
}
.footer-social a:hover{
    transform:translateY(-5px);
    background:#fff;
    color:#111;
}
.copyright-area {
    margin-top: 25px;
    background: #30005c;
    padding: 7px 0;
    text-align: center;
}
.copyright-area p {
    margin: 0;
    color: #ffffff;
    font-size: 15px;
}

/* Responsive */

@media(max-width:991px){

    .main-footer{
        padding-top:30px;
    }
 

}

@media(max-width:767px){

    .footer-widget h4{
        font-size:24px;
            margin-bottom: 10px;
    }
.head h2 {
    font-size: 24px; 
}
.head p {
    font-size: 16px; 
}
   button.whatsapp-btn { 
    font-size: 16px; 
}
.main-footer .col-lg-3.col-md-6 {
    border-top: solid 1px #ffd400;
    margin-top: 15px;
    padding-top: 16px;
}
.footer-widget ul li {
    margin-bottom: 8px;
}
.g-5, .gy-5 {
    --bs-gutter-y: 2rem !important;
}
.main-footer  .col-lg-2.col-md-6 {
    border-top: solid 1px #ffd400;
    margin-top: 15px;
    padding-top: 16px;
}
.testimonial-slider { 
    gap: 9px;
}
.footer-widget ul li a { 
    font-size: 15px;
}
.sub-title { 
    letter-spacing: 1px; 
}
.about-content h2 {
    font-size: 26px;
}


}


/**/

/*CTA CSS*/
/**/
.align{
    align-items: center !important;
}
.fixed-icon-whatsapp a:nth-child(1){
  left: 20px;
}
.fixed-icon-whatsapp a {
    font-weight: 500;
    font-size: 28px;
    position: fixed;
    right: 20px;
    color: #fff !important;
    text-align: center;
    padding: 0;
    border-radius: 50%;
    display: inline-block;
    z-index: 9999999;
    transition: all .5s ease-in-out;
    text-decoration: none !important;
    bottom: 23px;
    text-transform: capitalize;
    height: 60px;
    width: 60px;
    line-height: 60px;
}
.faq-img {
    border: solid 2px #fcd201;
    border-radius: 10px;
}

.fixed-icon-whatsapp a b {
    z-index: 9;
    position: relative;
    display: inline-block;
    margin: 0px 0 4px -0px;
    filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.5));
    animation-name: rip;
    animation-duration: 0.8s;
    animation-iteration-count: infinite;
    background: #3c9105;
    line-height: 55px;
    border-radius: 50%;
    height: 60px;
    width: 60px;
}
.fixed-icon-whatsapp a:nth-child(1) b {
    background: #470089;
}
.fixed-icon-whatsapp a:nth-child(1) b img{
  filter:brightness(0)invert(1);
}
.fixed-icon-whatsapp a b img {
    height: 40px;
}
@keyframes rip{
    0% {
    box-shadow: 0px 0px 0px 4px rgb(233 160 66);
    }
    20% {
        box-shadow: 0px 0px 0px 6px rgb(234 161 66 / 42%);
    }
    40% {
        box-shadow: 0px 0px 0px 8px rgb(234 161 66);
    }
    60% {
        box-shadow: 0px 0px 0px 10px rgb(234 161 66 / 24%);
    }
    80% {
        box-shadow: 0px 0px 0px 12px rgba(162, 162, 162, 0.1);
    }
    100% {
        box-shadow: 0px 0px 0px 14px rgba(162, 162, 162, 0);
    }
}


/*CTA CSS*/

