* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /* font-family: "DM Sans", sans-serif; */
    /*font-family: 'Work Sans', sans-serif;*/
    font-family: 'Poppins', sans-serif;
}

.badge, .badge1 {
    display: flex;
    position: absolute;
    align-content: center;
    align-items: center;
    justify-content: flex-start;
    white-space: nowrap;
    width: fit-content;
    height: 25px;
    padding: 0 25px;
    background-color: #F4AC1D;
    font-weight: 700;
    font-size: 10px;
    line-height: 13px;
    letter-spacing: .11em;
    text-transform: uppercase;
    transform: rotate(310deg);
    overflow: hidden;
    /*margin-top: 10px;*/
    /*margin-left: -25px;*/
}
.badge{
 margin-top: 10px;
    margin-left: -25px;   
}

.badge1{
 margin-top: 26px;
    margin-left: -37px;   
}

.card-hover {
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    background-color: #fff;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card-hover:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border: none;
    transform: scale(1.01);
}

.cart-text {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* navbar */

.nav-link {
    color: #000 !important;
    font-size: 16px;
    margin: 0 15px;
    font-weight: 600;
}

@media screen and (max-width: 1200px) {
    .navbar-text {
        display: none;
    }
}

.social-icons i {
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-icons i:hover {
    border: 1px solid #000;
}

.navbar-nav .nav-link {
    position: relative;
    text-decoration: none;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #000;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::before {
    width: 100%;
}

@media screen and (max-width: 480px) {
    .navbar-brand {
        width: 80%;
    }
}

/* testimonials */

.testimonial {
    border-right: 4px solid #3954A5;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    padding: 30px 30px 30px 50px;
    margin: 0 15px 30px 15px;
    overflow: hidden;
    position: relative;
}

.testimonial:before {
    content: "";
    position: absolute;
    bottom: -4px;
    left: -17px;
    border-top: 25px solid #3954A5;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    transform: rotate(45deg);
}

.testimonial:after {
    content: "";
    position: absolute;
    top: -4px;
    left: -17px;
    border-top: 25px solid #3954A5;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    transform: rotate(135deg);
}

.testimonial .description {
    font-size: 15px;
    letter-spacing: 1px;
    color: #6f6f6f;
    line-height: 25px;
    margin-bottom: 15px;
}

.testimonial .title {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #3954A5;
    margin: 0;
}

.testimonial .post {
    display: inline-block;
    font-size: 17px;
    color: #3954A5;
    font-style: italic;
}

.owl-theme .owl-controls .owl-page span {
    border: 2px solid #2a3d7d;
    background: #fff !important;
    border-radius: 0 !important;
    opacity: 1;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls .owl-page:hover span {
    background: #3954A5 !important;
    border-color: #3954A5;
}

@media only screen and (max-width: 767px) {
    .testimonial {
        padding: 20px;
        text-align: center;
    }
}

/* ------testimonial  close-------*/

.wrapper {
    width: 100%;
}

.container1 {
    background-color: white;
    color: black;
    border-radius: 20px;
    box-shadow: 0 5px 10px 0 rgb(0, 0, 0, 0.25);
    margin: 20px 0;
}

.question {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 20px 80px 20px 20px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.question::after {
    content: "\002B";
    font-size: 2.2rem;
    position: absolute;
    right: 20px;
    transition: 0.2s;
}

.question.active::after {
    transform: rotate(45deg);
}

.answercont {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
}

.answer {
    padding: 0 20px 20px;
    line-height: 1.5rem;
}

@media screen and (max-width: 790px) {
    html {
        font-size: 14px;
    }
}

/* responsive */
.p-styling {
    padding: 0 60px;
    text-align: justify;
}

@media screen and (max-width: 950px) {
    .p-styling {
        padding: 0 50px;
    }
}

@media screen and (max-width: 550px) {
    .p-styling {
        padding: 0 10px;
    }
}

/* button */

.button-two {
    background-color: #2ABA91;
    transition: all 0.5s;
}

.button-two span {
    transition: 0.5s;
}

.button-two i {
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.button-two:hover span {
    padding-right: 25px;
}

.button-two:hover i {
    opacity: 1;
    right: 0;
}

/* card-styling  */

.card-styles {
    border: none;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/* portfolio */

.slider {
    width: 60%;
    /* height: 500px; */
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

@media only screen and (max-width: 1200px) {
    .slider {
        width: 70%;
    }
}

@media only screen and (max-width: 700px) {
    .slider {
        width: 90%;
    }
}

@media only screen and (max-width: 500px) {
    .slider {
        width: 100%;
    }
}

.slides {
    width: 500%;
    height: 100%;
    display: flex;
}

.slides input {
    display: none;
}

.slide {
    width: 20%;
    transition: 0.6s;
}

.slide img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.prev,
.next {
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    cursor: pointer;
}

.prev {
    left: 0;
    border-radius: 3px 0 0 3px;
    background-color: rgba(0, 0, 0, 0.8);
}

.next {
    right: 0;
    border-radius: 3px 3px 0 0;
    background-color: rgba(0, 0, 0, 0.8);
}

/* overly */

.slide {
    position: relative;
}

.overlay1{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: white;
    display: flex;
}

.overlay1 .count{
    margin-top: auto;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide:hover .overlay {
    opacity: 1;
}

.overlay .text {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

/* side bar */

.side-call-btn {
    position: fixed;
    top: 44%;
    background-color: #2ABA91;
    border-radius: 100px 0px 0px 100px;
    padding: 8px;
    z-index: 9999;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: 1s;
    display: flex;
    align-items: center;

}
.call-text span:nth-child(1){
    bottom: -25px;
    left: 60px; 
    rotate: 178deg;
}
.call-text span:nth-child(2){
    bottom: -25px;
    left: 49px;
    rotate: 185deg;
}
.call-text span:nth-child(3){
    bottom: -24px;
    left: 37px;
    rotate: 190deg;
}
.call-text span:nth-child(4){
    bottom: -20px;
    left: 21px;
    rotate: 203deg;
}
.call-text span:nth-child(5){
    bottom: -16px;
    left: 16px;
    rotate: 206deg;
}
.call-text span:nth-child(6){
    bottom: -10px;
    left: 4px;
    rotate: 223deg;
}
.call-text span:nth-child(7){
    bottom: -1px;
    left: -4px;
    rotate: 238deg;
}
.call-text span:nth-child(8){
    top: 51px;
    left: -14px;
    rotate: 253deg;
}
.call-text span:nth-child(9){
    top: 38px;
    left: -15px;
    rotate: 270deg;
}
.call-text span:nth-child(10){
    top: 24px;
    left: -15px;
    rotate: 273deg;
}
.call-text span:nth-child(11){
    top: 11px;
    left: -12px;
    rotate: 288deg;
}
.call-text span:nth-child(12){
    top: -1px;
    left: -6px;
    rotate: 300deg;
}
.call-text span:nth-child(13){
    top: -9px;
    left: 1px;
    rotate: 320deg;
}
.call-text span:nth-child(14){
    top: -18px;
    left: 10px;
    rotate: 151deg;
}
.call-text span:nth-child(15){
    top: -21px;
    left: 31px;
    rotate: -10deg;
}
.call-text span:nth-child(16){
    top: -22px;
    left: 43px;
}
.call-text span:nth-child(17){
    top: -22px;
    left: 57px;
}

.call-text span{
    color: #000;
    font-weight: 700;
    position: absolute;
    animation: text-blink 2s infinite ease-in-out;
    opacity: 0;
    
}

@keyframes text-blink {
    0%{
        opacity: 0;
    }
    50%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}


.side-call-btn1 {
    position: fixed;
    top: 21%;
    border-radius: 100px 0px 0px 100px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    transition: 1s;
    right: 0;
    font-size: 10px;
    font-weight: 800;
    line-height: 11px;
    z-index: 9999;

}

.vericaltext {
    width: 1px;
    word-wrap: break-word;
    text-transform: uppercase;
}

.testing {
    position: fixed;
    top: 38%;
    z-index: 99999;
}

@media only screen and (max-width: 768px) {
    .testing {
        display: none;
    }
}



.fa-xmark-my,
.fa-phone-my {
    color: red;
    cursor: pointer;
    font-size: 40px;
    background-color: white;
    text-align: center;
    height: 60px;
    width: 60px;
    line-height: 60px;
    border-radius: 100%;
}

.popup {
    background: #00000091;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0%;
    display: flex;
    z-index: 190000;
    justify-content: center;
}

.popup-body {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding:0rem 3rem 3rem 3rem;
    background-color: #FFF;
    border-radius: 10px;
}



.form-control,
.form-select {
    border: none;
    border-bottom: 1px solid #2AB68B;
}

.form-control:focus {
    box-shadow: none;
    border-color: #2AB68B;
}

.form-select:focus {
    box-shadow: none;
    border-color: #2AB68B;
}

.submit-btn {
    background-color: #2ABA91;
    transition: all 0.5s;
}

.contact-image-area{
    height: 215px;
    max-width:400px;
    width:78%;
}
.contact-image{
width: 100%;
top: -50px;
}
.form-close-btn{
    border: 1px solid #2a3d7d;
    right: -20px;
    top: -15px;
    border-radius: 100px;
    padding: 0px 1rem 0px 1rem;
    color: #fff;
    background-color: #2a3d7d;
    text-align: center;
}
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}


.make-red{
    border: 1px solid red  !important;
}
.submit-btn:disabled{
    background-color: #2aba9185;
}

.success1{
    margin-top:8rem;
}
.fandq-text{
    font-size:60px;
}

@media only screen and (max-width: 767px){
    .form-close-btn{
        padding: 0px 13px 0px 13px;
        text-align: center;
    }
    .contact-image-area {
        height: 180px;
    }
    .success1{
    margin-top:6rem;
}
.fandq-text{
    font-size:45px;
}
}
@media only screen and (max-width: 450px){
   
    .popup-body{
        padding: 0rem 2rem 3rem 2rem;
        margin: 0rem 2rem ;
        width: 300px;
    }
    .contact-image-area {
        height: 130px;
    }
    .success1{
    margin-top:3rem;
}
}

@media only screen and (max-width: 790px){
    .side-call-btn{
        width:264px;
    }
}
@media only screen and (max-width: 1200px){
  .fandq-text{
    font-size:50px;
}
}

.card-btn {
    border-radius: 6px;
    border: 1px solid var(--Light-Gray, #2AB68B);
    padding: 10px 16px;
    background-color: white;
}
.card-btn:hover {
    border: 1px solid var(--Light-Gray, #ADADAD);
}
.live-preview-btn {
    border-radius: 6px;
    border: 2px solid var(--Blue, #24419B);
    padding: 8px 12px;
    color: var(--Blue, #24419B);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.084px;
    text-decoration:none;
}
.live-preview-btn:hover {
    border-radius: 6px;
    background: var(--Blue, #24419B);
    color: #fff;
}




/*Whats app Icon CSS*/
   .whatsapp-icon-box {
   position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
}
.whatsapp-icon-text {
    font-size: 18px;
    font-weight: 600;
    color: #4DC248;
    background-color: white;
    padding: 8px;
    border: 2px solid #4DC248;
    border-radius: 6px;
    display: none;
    margin-right: 8px;
}
.whatsapp-ico {
    fill: white;
    width: 50px;
    height: 50px;
    padding: 3px;
    background-color: #4dc247;
    border-radius: 50%;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    margin-right: 10px;
}
.product-d-heading-discription {
    color: var(--Gray, #707070);
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.5px;
}

