.common-text span {

    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1.2px;
    line-height: 18px;
    text-transform: uppercase;
    color: #c11425;
}

.common-text h2 {
    font-size: 48px;
    color: #0f1b24;
    margin: 10px 0 20px;
}

/* home page css */
.banner-wrapper {
    padding: 0 25px;
}

.banner {
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    position: relative;
    height: 700px;
    border-radius: 30px;
}

.banner::after {
    content: "";
    background: linear-gradient(90deg, #121211ab 12.37%, #c114252b);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
}

.banner1 {
    background-image: url(../../images/home/banner-img04.webp);

}

.banner2 {
    background-image: url(../../images/home/banner-img02.webp);
}

.banner3 {
    background-image: url(../../images/home/banner-img03.webp);
}

.banner4 {
    background-image: url(../../images/home/banner-img01.webp);
}

.banner .banner-text {
    padding: 150px 0 150px 70px;
    position: relative;
    z-index: 1;
}

.banner .banner-text h2,
.banner .banner-text p,
.banner .text-top {
    color: #fff;
}

.banner .text-top {
    font-size: 20px;
}

.banner .banner-text h2 span {
    position: relative;
    color: #ffc000;
    /* border-bottom: 4px solid #ffc000; */
}

.banner .banner-text h2 span::after {
    content: "";
    width: 100%;
    height: 5px;
    background-color: #ffc000;
    position: absolute;
    bottom: 0;
    left: 0;
}

.banner .banner-text h2 {
    font-size: 60px;
}

.banner .banner-text p {
    margin: 20px 0;
}

.banner .banner-text .whatsapp-btn {
    background-color: #c11425;
    border: 1px solid #c11425;
    padding: 10px 30px;
    margin-right: 10px;
    display: inline-block;
}

.banner .banner-text .whatsapp-btn:hover {
    background-color: transparent;
    color: #fff;
    border: 1px solid #ddd;
}

.banner .banner-text .call-btn {
    background-color: transparent;
    padding: 10px 30px;
    border: 1px solid #ddd;
}

.banner .banner-text .call-btn:hover {
    color: #fff;
    background-color: #c11425;
    border: 1px solid #c11425;
}

.banner-wrapper .slick-dots {
    position: absolute;
    top: 50%;
    right: 50px;
    transform: translateY(-50%);
}

.slick-vertical .slick-slide {
    border: none !important;
}

.banner-wrapper .slick-dots li button {
    font-size: 0;
    background-color: #fff;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    cursor: pointer;
    transition: all .5s ease-in-out;
}

.banner-wrapper .slick-dots .slick-active button {
    background-color: #ffc000;
    transform: scale(1.5);
}

/* .latest-service-sec css */

.latest-service-sec {
    padding: 50px 0;
}

.latest-service-sec .common-text {
    text-align: center;
}

.latest-service-sec .tab-wrapper {
    margin: 40px 0;
}

.latest-service-sec .tab-wrapper ul li {
    padding: 14px 30px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.latest-service-sec .tab-wrapper ul li.active {
    background-color: #ffc000;
}

.latest-service-sec .tab-wrapper ul li:hover {
    color: #fff;
    background-color: #c11425;
}

.latest-service-sec .tab-content {
    display: none;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeIn 0.5s ease 1 forwards
}

@keyframes fadeIn {
    100% {
        opacity: 1;
        transform: none;
    }
}

.latest-service-sec .tab-content.active {
    display: block;
}

.latest-service-sec .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.latest-service-sec .col {
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 20px;
    display: block;
    padding: 69px 30px 39px;
    position: relative;
    text-align: center;
    transition: all .5s ease-in-out;
}

.latest-service-sec .col .icon-box {
    align-items: center;
    background-color: #f5f5f5;
    transition: all .5s ease-in-out;
    border-radius: 50%;
    display: flex;
    height: 80px;
    justify-content: center;
    left: 50%;
    position: absolute;
    top: -40px;
    transform: translateX(-50%);
    width: 80px;
    z-index: 1;
}

.latest-service-sec .col .icon-box i {
    font-size: 24px;
}

.latest-service-sec .col .btn {
    display: inline-block;
    padding: 10px 30px;
    margin-top: 40px;
}

/* why-chooseus-sec css */
.why-chooseus-sec {
    padding: 70px 0;
}

.why-chooseus-sec .col {
    width: 44%;
}

.why-chooseus-sec .col:nth-last-of-type(1) {
    width: 50%;
}

.why-chooseus-sec .col p {
    font-size: 18px;
    color: #787878;
    margin-bottom: 20px;
}

.why-chooseus-sec ul {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 20px;
    margin: 20px 0 40px;
}

.why-chooseus-sec ul li {
    display: flex;
    align-items: center;
    font-size: 15px;
}

.why-chooseus-sec ul li i {
    color: #fff;
    width: 24px;
    height: 24px;
    display: inline-block;
    background-color: #c11425;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    margin-right: 10px;
}

.why-chooseus-sec .col .btn {
    padding: 10px 30px;
}

.why-chooseus-sec .col .img-box {
    position: relative;
}

.why-chooseus-sec .col .img-box img {
    width: 100%;
    border-radius: 16px;
}

.why-chooseus-sec .col .img-box .img-text {
    width: 100%;
    background-color: #c11425;
    border-radius: 22px;
    bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 23px;
    max-width: 253px;
    padding: 31px 20px;
    position: absolute;
    right: 10px;
    z-index: 1;
    border: 5px solid #ccc;
}

.why-chooseus-sec .col .img-box .img-text i {
    font-size: 50px;
    color: #f5f5f5;
}

.why-chooseus-sec .col .img-box .img-text p {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    color: #fff;
    margin-bottom: 0;
}

/* trust-wrapper css */
.trust-sec h3 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 40px;
}

.trust-wrapper .trusted-box img:hover {
    opacity: 0.5;
    transition: all 0.5s ease-in-out;
    cursor: pointer;
}

/* about-sec css */
.about-sec {
    padding: 70px 0;
}

.about-sec .col {
    width: 48%;
}

.about-sec .col p {
    color: #787878;
    margin: 20px 0;
}

.about-sec .document-process {
    margin: 50px 0 0;
    position: relative;
}

.about-sec .document-process .process-img {
    position: absolute;
    top: 0;
    left: 50px;
}

.about-sec .col ul {
    margin: 20px 0 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 24px;
}


.about-sec .col ul li {
    font-size: 14px;
    font-weight: 600;
}

.about-sec .col .icon-box {
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    height: 60px;
    justify-content: center;
    position: relative;
    width: 60px;
}

.about-sec .col .icon-box i {
    font-size: 30px;
    color: #c11425eb;
}

.about-sec .col ul li .text {
    margin-top: 20px;
}

.about-sec .btn {
    padding: 10px 30px;
}

.about-sec .img-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    column-gap: 20px;
    position: relative;
}

.about-sec .img-box .right-img {
    width: 55%;
}

.about-sec .img-box .right-img img {
    width: 100%;
    height: 528px;
    object-fit: cover;
}

.about-sec .img-box img {
    border-radius: 16px;
}

.about-sec .trusted-box {
    align-items: center;
    background-color: #c11425;
    border: 2px solid #fff;
    border-radius: 20px;
    bottom: 30px;
    display: flex;
    gap: 20px;
    left: 30px;
    max-width: 383px;
    padding: 28px 25px 24px;
    position: absolute;
    width: 100%;
    z-index: 1;
    color: #fff;
}

.about-sec .trusted-box i {
    font-size: 35px;
}

.about-sec .trusted-box span {
    font-size: 24px;
}

/* our-features css */
.our-features {
    padding: 70px 0;
}

.our-features .row {
    display: flex;
    flex-wrap: wrap;
    /* align-items: center; */
    column-gap: 26px;
}

.our-features .col-left {
    width: 40%;
}

.our-features .col-left .img-box {
    position: relative;
}

.our-features .col-left img {
    border-radius: 16px;
}

.our-features .col-right {
    width: 58%;
    background-color: #ffc000;
    border-radius: 50px;
    display: block;
    padding: 60px 30px 40px 45px;
    position: relative;
}

.our-features .col-right ul {
    padding-left: 30px;
    margin: 10px 0;
}

.our-features .col-right ul li {
    list-style: disc;
    margin-bottom: 10px;
}

.our-features .col-right ul li:nth-last-of-type(1) {
    margin-bottom: 0;
}

/* counter css */
.counter {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 10px;
    margin-top: 20px;
}

.counter .counter-box {
    background-color: rgba(255, 255, 255, .2);
    border-radius: 20px;
    display: block;
    max-width: 207px;
    padding: 20px 10px 21px 20px;
    position: relative;
    width: 100%;
}

.counter .counter-icon {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.counter .counter-icon i {
    width: 65px;
    height: 65px;
    background-color: #c11425;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s ease-in-out;
    font-size: 30px;
}

.counter .counter-icon span {
    font-size: 20px;
    font-weight: 700;
    line-height: 48px;
    text-transform: lowercase;
    letter-spacing: 0;
}

.counter .counter-text {
    font-size: 16px;
    font-weight: 500;
    color: #0f1b24;
}

/* Video Icon Wrapper */
.video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    right: 12%;
    width: 65px;
    height: 65px;
    background: #fff;
    text-align: center;
    border-radius: 50%;
    -webkit-animation: pulse 1s linear infinite;
    animation: pulse 1s linear infinite;
    cursor: pointer;
}

.video-btn a {
    font-size: 15px;
    position: relative;
    top: 25px;
    right: 5px;
    color: #c11425;
}

.video-btn a span {
    position: absolute;
    border-left: 12px solid #c11425;
    border-top: 8px solid #fff;
    border-bottom: 8px solid #fff;
}

@keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1), 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1);
    }

    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 100px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1), 0 0 0 20px rgba(255, 255, 255, 0.1), 0 0 0 100px rgba(255, 255, 255, 0);
    }
}

/* .vedio-btn i {
  color: #000cca;
} */

.close-btn {
    position: absolute;
    top: 14%;
    right: 20%;
    padding: 10px;
    background: transparent;
    border: 0;
    font-size: 20px;
    color: #bebbbb;
    cursor: pointer;
}

.modal-container {
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.modal-container.show-modal {
    display: block;
}

.modal {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    position: absolute;
    overflow: hidden;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    animation-name: modalopen;
    animation-duration: 1s;
}

/* review-wrapper css */
.our-customer-review {
    margin: 60px 0;
}

.our-customer-review .common-text {
    margin-bottom: 60px;
}

.review-wrapper .review-box {
    position: relative;
    margin: 0 55px;
}

.review-wrapper .review-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
}

.review-wrapper .review-img img {
    border-radius: 50%;
}

.review-wrapper .review-text {
    border: 1px solid #ccc;
    padding: 40px 10px 30px 64px;
    border-radius: 16px;
}

.review-wrapper .review-text span {
    display: inline-block;
    margin: 5px 0;
    color: #787878;
}

.review-wrapper .review-text p {
    font-size: 14px;
    color: #787878;
    border-top: 1px solid #ccc;
    margin-top: 10px;
    padding-top: 10px;
}

.review-wrapper .slick-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 0;
    background-color: rgb(193 20 37 / 10%);
    position: absolute;
    top: -100px;
    right: 60px;
}

.review-wrapper .slick-prev {
    right: 140px;
}

.review-wrapper .slick-arrow::after {
    content: "\f104";
    position: absolute;
    top: 0;
    left: 0;
    font-family: "font awesome 5 free";
    width: 60px;
    height: 60px;
    z-index: 11;
    display: grid;
    place-items: center;
    font-size: 30px;
    font-weight: 900;
    color: #c11425;
    cursor: pointer;
}

.review-wrapper .slick-next::after {
    content: "\f105";
}

/* why-are-we-sec css */
.why-are-we-sec {
    padding: 70px 0;
}

.why-are-we-sec .row {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
}

.why-are-we-sec .col {
    width: 30%;
}

.why-are-we-sec .col img {
    border-radius: 16px;
}

.why-are-we-sec .col:nth-last-of-type(1) {
    width: 68%;
}

.why-are-we-sec .tracking {
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.why-are-we-sec .tracking .text-icon {
    display: flex;
    align-items: center;
}

.why-are-we-sec .tracking .text-icon .icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #c11425;
    position: relative;
    margin-right: 10px;
    transition: all .5s ease-in-out;
}

.why-are-we-sec .tracking .text-icon .icon i {
    color: #fff;
    font-size: 20px;
}

.why-are-we-sec .tracking .text-icon .text {
    width: 80%;
}

.why-are-we-sec .tracking .text-icon .text h3 {
    font-size: 14px;
}

.why-are-we-sec .tracking .text-icon .text p {
    font-size: 13px;
    color: #000000;
    margin-top: 4px;
}

.why-are-we-sec .img-box {
    margin-top: 24px;
    position: relative;
}

.why-are-we-sec .img-box .img-text {
    background-color: #ffc000;
    border-radius: 20px;
    left: -383px;
    max-width: 616px;
    padding: 45px 40px 56px;
    position: absolute;
    top: 76px;
}

.why-are-we-sec .img-box .img-text h4 {
    -webkit-text-stroke: 2px #0f1b24;
    color: #0000;
    font-size: 80px;
    font-weight: 700;
    line-height: 105px;
    text-transform: uppercase;
}

.why-are-we-sec .img-box .img-text p {
    font-size: 18px;
}

/* faq-sec css */
.faq-sec {
    padding: 80px 0;
    background-color: #0f1b24;
    height: 520px;
    margin-bottom: 170px;
}

.faq-sec .col-6:nth-of-type(1) {
    margin-top: -150px;
}

.faq-sec .col-6 span {
    color: #fff;
    font-size: 18px;
}

.faq-sec .col-6 h2 {
    font-size: 28px;
    color: #fff;
}

.common-accordion {
    margin-top: 20px;
}

.accordion-item {
    background: #16222d;
    border-radius: 10px;
    margin: 15px auto;
    width: 600px;
    overflow: hidden;
}

.accordion-title {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 15px 20px;
    transition: all 0.3s ease-in-out;
}

.accordion-title:hover {
    background: #1f2e3d;
}

.accordion-title .icon {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #d22;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

.accordion-title h3 {
    margin: 0;
    font-size: 16px;
    color: #fff;
    flex: 1;
}

.accordion-content {
    display: none;
    background: #101c27;
    color: #ddd;
    padding: 0 20px 15px;
}

.accordion-content p {
    margin: 0;
    padding-top: 15px;
}

.form-wrapper {
    background: #c11425;
    border-radius: 20px;
    box-shadow: 0 4.4px 20px -1px #1310220d;
    margin-top: 74px;
    padding: 60px;
    position: relative;
    z-index: 2;
}

.form-wrapper h3 {
    text-transform: capitalize;
    color: #fff;
    margin-bottom: 40px;
}

.form-wrapper .form-control::placeholder {
    color: #fff;
}

.form-wrapper .form-control {
    color: #fff !important;
}

.form-wrapper textarea {
    min-height: 100px;
    resize: vertical;
}

.form-wrapper .btn {
    padding: 20px 30px;
    background-color: #fff;
    color: #000000;
}

/* testimonial-wrapper css */
.testimonial-sec {
    margin: 40px 0 80px;
}

.testimonial-sec .col {
    width: 50%;

}

.testimonial-sec .col:nth-last-of-type(1) {
    position: relative;
    z-index: 1;
}

.testimonial-sec .col img {
    border-radius: 16px;
}

.testimonial-wrapper {
    margin-left: -130px;
}

.testimonial-wrapper .slick-dots {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 50px;
    left: 90px;
}

.testimonial-wrapper .slick-dots li:not(:nth-last-of-type(1)) {
    margin-right: 10px;
}

.testimonial-wrapper .slick-dots li button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    font-size: 0;
    background-color: #ccc;
    outline: none;
    transition: all .5s ease-in-out;
}

.testimonial-wrapper .slick-dots .slick-active button {
    background-color: #c11425;
    transform: scale(1.5);
}

.testimonial-box {
    background: #fff;
    border-radius: 20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 40px 60px 100px;
    margin: 15px;
}

.testimonial-box .review-text h3 {
    margin: 10px 0 5px;
}

.testimonial-box .review-text span {
    margin-bottom: 10px;
    display: inline-block;
}

.testimonial-wrapper .slick-dots {
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
}

.ratiing ul {
    margin: 10px 0;
}

.ratiing ul li i {
    color: #f0ec02;
}

/* blog-sec */
.blog-sec {
    padding: 80px 0;
    /* margin-top: 40px; */
    background-color: #f5f5f5;
}

.blog-sec .common-text {
    text-align: center;
}

.blog-sec .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
}

.blog-sec .img-box img {
    width: 100%;
    border-radius: 12px 12px 0 0;
}

.blog-sec .content {
    padding: 16px 30px;
    background-color: #fff;
    border-radius: 0 0 12px 12px;
}

.blog-sec .content h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-sec .content p {
    margin: 12px 0 16px;
    color: #787878;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-sec .content .btn {
    width: max-content;
    margin: 0 auto;
    padding: 10px 30px;
}


/* responsive css */
@media (max-width:1300px) {
    .our-features .col-right {
        width: 57%;
    }
}

@media (max-width:1280px) {
    .about-sec .img-box .right-img {
        width: 53%;
    }
}

@media (max-width:1240px) {
    .about-sec .img-box .right-img {
        width: 50%;
    }

    .our-features .col-right {
        padding: 20px;
    }

    .counter .counter-icon span {
        font-size: 32px;
    }
}

@media (max-width:1200px) {
    .banner {
        height: 650px;
    }

    .accordion-item {
        width: 100%;
    }
}

@media (max-width:1180px) {
    .about-sec .img-box .right-img {
        width: 48%;
    }

    .about-sec .document-process .process-img {
        position: absolute;
        top: 9px;
        left: 50px;
        width: 62%;
    }
}

@media (max-width:1140px) {
    .about-sec .img-box .right-img {
        width: 47%;
    }

    .counter .counter-icon i {
        width: 50px;
        height: 50px;
        font-size: 24px;
        color: #f5f5f5;
    }

    .why-chooseus-sec ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-are-we-sec .img-box .img-text {
        top: 36px;
        left: -338px;
    }

    .blog-sec .content h3 {
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        display: -webkit-box;
        overflow: hidden;
    }
}

@media (max-width:1100px) {
    .common-text h2 {
        font-size: 42px;
    }

    .about-sec .img-box .right-img {
        width: 46%;
    }
}

@media (max-width:1080px) {
    .about-sec .img-box .right-img {
        width: 44%;
    }

    .why-are-we-sec .img-box .img-text {
        top: 24px;
        left: -320px;
    }
}

@media (max-width:1040px) {
    .common-text h2 {
        font-size: 38px;
    }

    .about-sec .img-box .right-img {
        width: 40%;
    }

    .why-are-we-sec .row {
        row-gap: 30px;
    }

    .why-are-we-sec .col {
        width: 100% !important;
    }

    .why-are-we-sec .col img {
        width: 100%;
    }

    .why-are-we-sec .img-box .img-text {
        top: auto;
        left: 50%;
        bottom: -81px;
        transform: translateX(-50%);
        width: 100%;
    }
}

@media (max-width:992px) {
    .banner .banner-text h2 {
        font-size: 32px;
    }

    .banner {
        height: 600px;
    }

    .banner .banner-text h2 {
        font-size: 42px;
    }

    .latest-service-sec .col {
        padding: 68px 10px 39px;
    }

    .about-sec .row,
    .why-chooseus-sec .row {
        flex-direction: column-reverse;
        row-gap: 30px;
    }

    .about-sec .col,
    .our-features .col-left,
    .our-features .col-right,
    .why-chooseus-sec .col {
        width: 100% !important;
    }


    .about-sec .document-process .process-img {
        width: 67%;
    }

    .about-sec .document-process .process-img img {
        width: 100%;
    }

    .about-sec .img-box .right-img {
        width: 66%;
    }

    .our-features .row {
        row-gap: 30px;
    }

    .our-features .col-left img {
        width: 100%;
    }

    .form-wrapper .form-group {
        width: 100%;
    }

    .faq-sec {
        height: 100%;
    }

    .faq-sec .col-6:nth-of-type(1) {
        margin: 0;
    }

    .form-wrapper {
        margin: 0;
        padding: 20px;
    }

    .testimonial-sec .col {
        width: 100%;
    }

    .testimonial-sec .col:nth-of-type(1) {
        display: none;
    }

    .testimonial-wrapper {
        margin: 0;
    }

    .blog-sec .row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:850px) {
    .banner {
        height: 360px;
    }

    .banner .banner-text {
        padding: 44px 0;
    }

    .about-sec .img-box .right-img {
        width: 62%;
    }

    .latest-service-sec .row {
        gap: 75px 60px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:767px) {
    .common-heading h2 br {
        display: none;
    }

    .banner .banner-text h2 {
        font-size: 30px;
    }

    .counter {
        column-gap: 12px;
    }

    .why-are-we-sec .img-box .img-text h4 {
        font-size: 50px;
        line-height: 1.5;
    }

    .about-sec .img-box .right-img {
        width: 50%;
    }

    .why-are-we-sec .img-box .img-text {
        position: static;
        transform: translateX(0);
        margin-top: 30px;
    }

    .why-are-we-sec .tracking {
        flex-wrap: wrap;
        row-gap: 30px;
    }

    .why-are-we-sec .tracking .text-icon {
        width: 48%;

    }

    .faq-sec {
        margin-bottom: 40px;
    }


    .faq-sec .row {
        row-gap: 30px;
    }

    .faq-sec .col-6 {
        width: 100%;
    }

    .blog-sec .content {
        padding: 14px;
    }
}

@media (max-width:580px) {

    .common-heading h2,
    .common-text h2 {
        font-size: 28px;
        line-height: 1.5;
    }

    .banner .banner-text {
        padding: 40px 40px 40px 0;
    }

    .latest-service-sec .row {
        grid-template-columns: repeat(1, 1fr);
    }

    .about-sec,
    .why-are-we-se {
        padding: 0;
    }

    .counter {
        gap: 14px;
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-sec .row {
        grid-template-columns: repeat(1, 1fr);
    }

    .about-sec .img-box .left-img,
    .about-sec .img-box .right-img {
        width: 47%;
    }

    .about-sec .img-box .right-img img {
        height: 447px;
    }

    .why-are-we-sec .tracking .text-icon .text {
        width: 67%;
    }

    .why-are-we-sec .img-box .img-text {
        padding: 40px;
    }

    .why-are-we-sec .img-box .img-text h4 {
        font-size: 38px;
        text-align: center;
    }

    .why-chooseus-sec {
        padding-top: 0;
    }

    .why-chooseus-sec .col .img-box .img-text {
        padding: 15px;
    }

    .why-chooseus-sec .col .img-box .img-text i {
        font-size: 32px;
    }

    .why-chooseus-sec .col .img-box .img-text p {
        font-size: 20px;
        line-height: 1.3;
    }
}

@media (max-width:480px) {

    .common-heading h2,
    .common-text h2 {
        font-size: 24px;
    }

    .common-text {
        text-align: center;
    }

    .banner {
        height: 360px;
    }

    .banner .banner-text .whatsapp-btn,
    .banner .banner-text .whatsapp-btn {
        padding: 10px 16px;
    }

    .banner .banner-text {
        padding: 40px 26px 40px 0;
    }

    .banner .banner-text h2 {
        font-size: 24px;
    }

    .banner h2 br {
        display: none;
    }

    .banner .banner-text p {
        font-size: 14px;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        display: -webkit-box;
        overflow: hidden;
    }

    .latest-service-sec .tab-wrapper ul li {
        padding: 12px 14px;
        font-size: 15px;
        font-weight: 600;
    }

    .about-sec .trusted-box {
        max-width: 290px;
        gap: 10px;
        padding: 10px 15px 10px;
        left: 20px;
        border-radius: 14px;
        bottom: 12px;
    }

    .about-sec .trusted-box i {
        font-size: 20px;
    }

    .about-sec .trusted-box span {
        font-size: 18px;
    }

    .about-sec .img-box .right-img img,
    .about-sec .img-box .left-img img {
        width: 100%;
        height: 245px;
    }

    .our-features {
        padding-bottom: 0;
    }

    .counter {
        grid-template-columns: repeat(1, 1fr);
        justify-self: center;
    }

    .counter .counter-box {
        padding: 20px 40px;
        display: unset;
        width: unset;
        max-width: unset;
    }

    .counter .counter-icon span {
        font-size: 32px;
    }

    .counter .counter-icon i {
        width: 50px;
        height: 50px;
        font-size: 24px;
        color: #f5f5f5;
    }

    .why-are-we-sec .tracking {
        justify-content: center;
    }

    .why-are-we-sec .tracking .text-icon {
        width: 100%;
        justify-content: center;
    }

    .faq-sec .col-6 span,
    .faq-sec .col-6 h2 {
        text-align: center;
        display: block;
    }

    .form-wrapper h3 {
        margin-bottom: 16px;
    }

    .common-heading {
        margin-bottom: 30px;
    }

    .testimonial-box {
        padding: 30px 16px;
    }

}

@media (max-width:380px) {
    .banner {
        height: 320px;
    }

    .about-sec .img-box .right-img {
        display: none;
    }

    .about-sec .img-box .left-img {
        width: 100%;
    }

    .about-sec .img-box .left-img img {
        height: 340px;
        object-fit: cover;
        object-position: top;
    }

    .about-sec .trusted-box {
        bottom: 30px;
    }
}

@media (max-width:px) {}