@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

:root {
    --aBlue: #1F3C88;
    --aRed: #E1251B;
    --aWhite: #ffffff;
    --aLightWhite: #ffffffBF;
    --aLightGray: #F5F5F5;
    --aMediumGray: #9E9E9E;
    --aDarkGray: #212121;
    --aLightBlack: #212121BF;
    --aDarkBlue: #142A66;
    --aLightBlue: #4A6FD6;
    --baiJamjuree: "Bai Jamjuree", sans-serif;
    --inter: "Inter", sans-serif;
}

/* home page css */

/* hero section */
.ap-hero-container {
    margin-bottom: 80px;
}

.ap-hero-section {
    position: relative;
}

.ap-hero-image-container {
    position: relative;
    height: 700px;
}

.ap-hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
    pointer-events: none;
}

.ap-hero-image {
    margin-bottom: unset !important;
    position: relative;
    height: 100%;
}

.ap-hero-image .slick-list,
.ap-hero-image .slick-track,
.ap-hero-image .slick-slide,
.ap-hero-single-image {
    height: 100%;
}


.ap-hero-single-image {
    width: 100%;
}

.ap-hero-single-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.ap-hero-image .slick-dots {
    bottom: 32px !important;
    z-index: 2;
}

.ap-hero-image .slick-dots li button::before {
    content: '';
    width: 28px;
    height: 4px;
    background-color: var(--aLightGray);
    border-radius: 2px;
    opacity: unset !important;
}

.ap-hero-image .slick-dots li.slick-active button::before {
    background-color: var(--aRed) !important;
    opacity: unset !important;
    width: 28px;
    height: 4px;
}

.ap-hero-text {
    max-width: 720px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0px 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.ap-hero-heading {
    font-family: var(--baiJamjuree);
    font-size: 38px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    color: var(--aWhite);
    margin-bottom: 20px !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ap-hero-description {
    font-family: var(--baiJamjuree);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    max-width: 568px;
    color: var(--aWhite);
    margin-bottom: 36px !important;

}

.ap-read-more-btn,
.ap-read-more-btn-custom {
    text-transform: capitalize;
    display: flex;
    text-decoration: none;
    font-family: var(--baiJamjuree);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    border: 1px solid var(--aRed);
    color: var(--aWhite);
    background-color: var(--aRed);
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.5s;
    max-width: fit-content;
}

.ap-read-more-btn-custom {
    font-size: 12px;

}

.ap-read-more-btn-color-center {
    margin: auto;
}

.ap-read-more-btn img {
    margin-left: 8px;
    transition: opacity 0.3s;
}

.ap-read-more-btn-custom {
    padding: 10px 20px;
}

.ap-read-more-btn .red-up {
    display: none;
}

.ap-read-more-btn:hover .btn-arrow-right {
    display: none;
}

.ap-read-more-btn:hover .red-up {
    display: block;
}

.ap-read-more-btn-custom .red-up {
    display: none;
}

.ap-read-more-btn-custom:hover .btn-arrow-right {
    display: none;
}

.ap-read-more-btn-custom:hover .red-up {
    display: block;
}

.ap-read-more-btn:hover,
.ap-read-more-btn-custom:hover {
    background-color: var(--aWhite);
    color: var(--aRed);
}


@media (max-width: 1024px) {
    .ap-hero-image-container {
        height: 630px;
    }
}

@media (max-width: 992px) {

    .ap-hero-image-container {
        height: 550px;
    }


    .ap-hero-container {
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .ap-hero-image-container {
        height: 480px;
    }

    .ap-hero-heading {
        font-size: 30px;

    }

    .ap-hero-description {
        font-size: 14px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }


    .ap-hero-container {
        margin-bottom: 40px;
    }




}

@media (max-width: 576px) {
    .ap-hero-image-container {
        height: 400px;
    }



    .ap-hero-heading {
        font-size: 26px;
    }

    .ap-read-more-btn,
    .ap-read-more-btn-custom {
        padding: 10px 20px;
        font-size: 12px;
    }

    .ap-hero-image .slick-dots {
        bottom: 12px !important;
    }


}

/* end of hero section */
/* why choose us */

.ap-why-choose-us-section {
    max-width: 1240px;
    margin: auto;
    margin-bottom: 80px;
}


.ap-why-choose-us-section-col-left {
    padding: 120px 0px 120px 36px !important;
    background: linear-gradient(90deg, rgba(0, 18, 42, 0.03) 57%, rgba(0, 18, 42, 0) 100%);
}

.ap-why-choose-us-section-col {
    padding-right: unset !important;
}

.why-choose-us-section-heading {
    font-family: var(--baiJamjuree);
    margin-bottom: 22px !important;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
}

.why-choose-us-section-description {
    font-family: var(--baiJamjuree);
    margin-bottom: 35px !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: #666666;
    max-width: 500px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;

}

.ap-why-choose-us-image {
    height: 450px;
}

.ap-why-choose-us-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}




@media (max-width: 1024px) {
    .why-choose-us-section-description {
        margin-bottom: 30px !important;
        max-width: unset !important;
    }
}

@media (max-width: 992px) {

    .ap-why-choose-us-section {
        margin-bottom: 60px;
    }

    .ap-why-choose-us-section-col-left {
        padding: 120px 20px !important;

    }

    .ap-why-choose-us-section-col {
        padding: unset !important;
    }

    .why-choose-us-section-heading {
        font-size: 28px;
        margin-bottom: 18px !important;
    }

    .ap-why-choose-us-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .why-choose-us-section-description {
        margin-bottom: 28px !important;
    }

    .ap-why-choose-us-section {
        margin-bottom: 40px;
    }

    .ap-why-choose-us-section-col-left {
        padding: 40px 20px !important;
        margin-bottom: 20px;
    }

    .why-choose-us-section-heading {
        font-size: 24px;
        margin-bottom: 14px !important;
    }

    .ap-why-choose-us-image {
        height: 350px;
    }

}

@media (max-width: 576px) {

    .why-choose-us-section-heading {
        margin-bottom: 12px !important;
        font-size: 20px;
    }

    .why-choose-us-section-description {
        font-size: 14px;
        margin-bottom: 20px !important;
    }

    .ap-why-choose-us-image {
        height: 300px;
    }

    .ap-why-choose-us-section-col-left {
        padding: 20px 20px !important;
    }
}

/* end of why choose us */

/* product slider css */



.ap-ab-product-slider-container {
    background: url(../images/nav-slider-background.png);
    background-color: #8c2608;
    padding: 114px 10px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 80px;
}

.ap-ab-product-section {
    max-width: 1240px;
    margin: auto;
}

.ap-product-slider-container {
    max-width: 100%;
    margin: auto;
}

.ap-product-slider-block,
.ap-testinomials-slider-block {
    position: relative;
}

.ap-ab-product-heading-h2 {
    margin-bottom: 40px !important;
    text-align: center;
    font-family: var(--baiJamjuree);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    text-transform: capitalize;
    color: var(--aWhite);
}

.ap-right-arrow,
.ap-right-arrow-black {
    right: 0;
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
    cursor: pointer;
}

.ap-left-arrow img,
.ap-right-arrow img,
.ap-right-arrow-black img,
.ap-left-arrow-black img {
    width: 25px;
    height: 25px;
}

/* 
.ap-right-arrow-black {
  right: -20px;
} */

.ap-left-arrow,
.ap-left-arrow-black {
    left: 0;
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
    cursor: pointer;
}


.ap-single-image {
    color: var(--aDarkGray);
    font-family: var(--baiJamjuree);
    text-decoration: none;
    text-align: center;
}

.ap-product-p-text {
    font-family: var(--baiJamjuree);
    text-transform: capitalize;
    line-height: 1.2;
    color: var(--aWhite);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 18px;
    font-weight: 600;
    padding: 14px 0px;
    margin: auto;
    text-align: center;
}

.ap-home-paint-images-title .ap-product-p-text:hover {
    color: unset;
    text-decoration: none;
}

.ap-product-hover-desc {
    font-family: var(--baiJamjuree);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    text-align: center;
    color: var(--aWhite);
    padding: 20px 16px;
    margin-bottom: 0px !important;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.ap-product-hover-img {
    width: 110px;
    height: 134px;
    margin: auto;
    margin-bottom: 35px;
}

.ap-product-hover-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.ap-read-more-btn-center {
    display: flex;
    justify-content: center;
}

.ap-read-more-btn-center a {
    display: flex;
    gap: 12px;
    text-align: center;
}

.ap-read-more-btn-center img {
    width: 15px;
    height: 15px;
    margin-top: auto;
    margin-bottom: auto;
}

.ap-product-slider {
    max-width: 95%;
    margin: auto;
}

.ap-product-slider .slick-slide {
    margin: auto;
}


.ap-one-product-col {
    margin-bottom: 32px !important;
}

.ap-product-slider .slick-dots li {
    margin: 0px !important;
}

.ap-product-slider .slick-dots li button {
    color: var(--aDarkBlue) !important;
}

.ap-product-slider .slick-dots li button:before {
    font-size: 14px !important;
    color: var(--aDarkBlue) !important;
}

.ap-ab-product-btn {
    text-align: center;
    margin-top: 70px;
}

.ap-ab-product-btn a {
    font-size: 14px !important;
    color: var(--aWhite);
    background-color: var(--aDarkBlue);
    text-decoration: none;
    text-transform: uppercase;
    padding: 12px 24px;
    font-family: var(--baiJamjuree);
    border: 1px solid var(--aWhite);
    transition: 0.3s;
}

.ap-ab-product-btn a:hover {
    background-color: var(--aWhite);
    color: var(--aDarkBlue);
    border: 1px solid var(--aDarkBlue);
}

.ap-paint-img-wrapper {
    width: 100%;
    height: 350px !important;
    position: relative;
}

.ap-home-demo-images {
    max-width: 95%;
    margin: auto;
    height: 100%;
}

.ap-home-img {
    height: 100%;
    margin: auto;
}

.ap-home-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ap-home-paint-images-title {
    position: absolute;
    left: 6px;
    bottom: 0%;
    background-color: var(--aLightBlack);
    width: 96%;
    color: var(--aWhite);
    height: 16%;
    transition: height 1s;
}

/* .ap-home-paint-images-title h2 {
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
} */
.ap-on-hover-card {
    display: none;
}

.ap-home-sm-bucket-images-container {
    display: flex;
    justify-content: center;
}

.ap-on-hover-card>a {
    padding: 8px 24px;
    font-weight: 600;
    color: var(--aWhite);
    background-color: var(--aRed);
    text-decoration: none;
    border: 1px solid var(--aRed);
    margin-top: 8px;
    display: block;
}

.ap-home-sm-bucket-image {
    max-width: 110px;
    height: 100%;
    padding-bottom: 12px;
}

.ap-home-sm-bucket-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.ap-paint-img-wrapper:hover {
    overflow: hidden;
}

.ap-paint-img-wrapper:hover .ap-home-paint-images-title {
    z-index: 100;
    position: absolute;
    bottom: 0%;
    background-color: var(--aLightBlack);
    width: 96%;
    left: 6px;
    height: 100%;
    padding-top: 8px;
}

.ap-paint-img-wrapper:hover .ap-on-hover-card {
    display: block;
}



@media (max-width: 1150px) {

    .ap-ab-product-slider-container {
        padding: 100px 10px;

    }

}

@media (max-width: 1024px) {

    .ap-ab-product-slider-container {
        padding: 80px 10px;
    }

}

@media (max-width: 992px) {

    .ap-ab-product-slider-container {
        padding: 60px 10px;
        margin-bottom: 60px;
    }

    .ap-product-hover-desc {
        padding: 10px 16px;
    }

    .ap-ab-product-heading-h2 {
        font-size: 28px;
        margin-bottom: 30px !important;
    }

}

@media (max-width: 768px) {
    .ap-ab-product-slider-container {
        padding: 40px 10px;
        margin-bottom: 50px;
    }

    .ap-ab-product-heading-h2 {
        font-size: 24px;
        margin-bottom: 20px !important;
    }

    .ap-left-arrow img,
    .ap-right-arrow img,
    .ap-right-arrow-black img,
    .ap-left-arrow-black img {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 576px) {

    .ap-right-arrow-black img,
    .ap-left-arrow,
    .ap-left-arrow-black img {
        width: 15px;
        height: 20px;
    }

}

/* product slider css ended*/

/* FAQ Section starts */
.ap-faq-section {
    position: relative;
    overflow: hidden;
    background-color: var(--aLightGray);
    padding: 80px 0px;
    margin-bottom: 80px;
    z-index: 1;
}

.ap-faq-container {
    max-width: 1240px;
    padding: 0px 24px;
    margin: auto;
}

.section-title {
    position: relative;
    display: block;
    margin-bottom: 49px;
    z-index: 1;
}

.section-title__tagline-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.section-title__tagline {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 15px;
    color: var(--aDarkBlue);
    font-weight: 400;
    text-transform: uppercase;
    font-family: var(--inter);
}

.section-title__tagline-shape {
    position: relative;
    display: block;
    margin-bottom: 3px;
}


.section-title__title {
    color: var(--aDarkGray);
    font-size: 30px;
    line-height: 1.4;
    font-weight: 600;
    margin: 7px 0 0;
    text-transform: uppercase;
    font-family: var(--baiJamjuree);
}


.ap-faq__shape-1 {
    position: absolute;
    top: -100px;
    left: -70px;
    width: 730px;
    height: 765px;
    border-radius: 50%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(23, 26, 192, 0.62) 0%, rgba(19, 18, 34, 0) 100%);
    opacity: 0.4;
    filter: blur(120px);
    z-index: -1;
}

.ap-faq__shape-2 {
    position: absolute;
    bottom: -255px;
    right: 100px;
    width: 730px;
    height: 765px;
    border-radius: 50%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(23, 26, 192, 0.62) 0%, rgba(19, 18, 34, 0) 100%);
    opacity: 0.4;
    filter: blur(120px);
    z-index: -1;
}

.ap-faq__left {
    position: relative;
    display: block;
}

.ap-faq__img-box {
    position: relative;
    display: block;
    margin-right: 252px;
}

.ap-faq__img {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 10px;
}

.ap-faq__img img {
    width: 100%;
    border-radius: 10px;
}

.ap-faq__experience-box {
    position: absolute;
    bottom: 30px;
    right: -70px;
    background: linear-gradient(270deg, #1F3C88 45%, #ffffff 100%);
    max-width: 180px;
    width: 100%;
    text-align: center;
    padding: 30px 0 30px;
    border-radius: 10px;
    z-index: 1;
}

.ap-faq__experience-year {
    position: relative;
    display: block;
}

.ap-faq__experience-year h2 {
    font-size: 50px;
    color: var(--aWhite);
    font-weight: 700;
    line-height: 1.4 !important;
    font-family: 'Poppins', sans-serif;
}

.ap-faq__experience-text {
    color: var(--aWhite);
    font-weight: 500;
}

.ap-faq__right {
    position: relative;
    display: block;
}

.ap-faq-section .ap-faq-accrodion .accrodion {
    position: relative;
    display: block;
    border: 1px solid rgba(19, 18, 34, .15);
    background-color: var(--aWhite);
    border-radius: 20px;
    overflow: hidden;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
}

.ap-faq-section .ap-faq-accrodion .accrodion.active {
    border: 1px solid rgba(19, 18, 34, .15);
    background-color: var(--aWhite);
}

.ap-faq-section .ap-faq-accrodion .accrodion-title {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 8px;
    align-items: center;
    cursor: pointer;
    padding: 23px 25px;
    transition: all 200ms linear;
    transition-delay: 0.1s;
}

.ap-faq-section .ap-faq-accrodion .accrodion-title h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    color: var(--aDarkGray);
    position: relative;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    font-family: var(--baiJamjuree);
}

.ap-faq-section .ap-faq-accrodion .accrodion+.accrodion {
    margin-top: 20px;
}

.ap-accrodion-img {

    padding: 8px;
    border-radius: 100%;
    background-color: var(--aDarkBlue);
}

.ap-accrodion-img img {
    width: 24px;
    height: 24px;
}

.ap-arrow-Right {
    display: block;
}

.ap-arrow-Down {
    display: none;
}

.accrodion.active .ap-arrow-Right {
    display: none;

}

.accrodion.active .ap-accrodion-img {
    background-color: var(--aDarkGray);
}

.accrodion.active .ap-arrow-Down {
    display: block;
    background-color: var(--aDarkGray);
}


.ap-faq-section .ap-faq-accrodion .accrodion-content {
    position: relative;
    padding-bottom: 28px;
    padding-left: 25px;
    padding-right: 25px;
    border-radius: 20px;
}

.ap-faq-section .ap-faq-accrodion .accrodion-content p {
    font-size: 16px;
    font-family: var(--inter);
    margin: 0;
    color: var(--aLightBlack);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    .ap-faq-section {
        padding: 100px 0;
    }

    .ap-faq__img-box {
        margin-right: 0;
    }



    .ap-faq__experience-box {
        right: 0;
    }
}

@media (max-width: 992px) {
    .ap-faq-section {
        padding: 60px 0px;
        margin-bottom: 60px;
    }

    .ap-faq-container {
        padding: 0px 4px;
    }

    .ap-faq__right {
        margin-top: 60px;
    }



    .section-title {
        margin-bottom: 32px;
    }
}

@media (max-width: 768px) {
    .ap-faq-section {
        padding: 40px 0px;
        margin-bottom: 40px;
    }

    .ap-faq-section {
        padding: 60px 0;
    }

    .section-title__title {
        font-size: 24px;
    }

    .ap-faq__img-box {
        margin-right: 0;
    }

    .ap-faq__experience-box {
        bottom: 0;
        right: 0;
    }

    .ap-faq-section .ap-faq-accrodion .accrodion-title {
        padding: 23px 15px;
    }

    .ap-faq-section .ap-faq-accrodion .accrodion-title h4::before {
        right: -35px;
    }

    .ap-faq-section .ap-faq-accrodion .accrodion-title h4 {
        font-size: 18px;
    }

    .ap-faq-section {
        padding: 40px 0;
    }

    .section-title {
        margin-bottom: 24px;
    }
}

@media (max-width: 576px) {

    .section-title {
        margin-bottom: 24px;
    }

    .ap-faq-section .ap-faq-accrodion .accrodion-title h4 {
        font-size: 16px;
    }

    .ap-faq-section .ap-faq-accrodion .accrodion-content p {
        font-size: 14px;
    }

    .ap-accrodion-img img {
        width: 16px;
        height: 16px;
    }

    .ap-faq-section .ap-faq-accrodion .accrodion-title {
        padding: 10px 14px;
    }
}

/* FAQ Section Ends */

/* Say About Different Problems */

.say-about-different-problems-container {
    margin-bottom: 80px;
}

.say-about-different-problems-heading {
    font-family: var(--baiJamjuree);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    max-width: 740px;
    margin: auto !important;
    margin-bottom: 40px !important;
    text-transform: capitalize;
}

.ap-different-problems-blocks {
    max-width: 1240px;
    margin: auto;
    padding: 0px 8px;
    margin-bottom: 40px;
}

.single-problem-section-container {
    display: flex;
    flex-direction: column;
}

.single-problem-section-image {
    height: 350px;
    overflow: hidden;
}

.single-problem-section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
}

.single-problem-section-container:hover .single-problem-section-image img {
    transform: scale(1.05);
}

.single-problem-section-text-container {
    background-color: var(--aWhite);
    max-width: 90%;
    margin: auto;
    padding: 20px 20px 34px;
    border-radius: 4px;
    box-shadow: 0px 0px 8.42px 0px #00205B33;
    margin-top: -28%;
    /* position: relative;  */
    z-index: 1;
}

.single-problem-section-head-text {
    font-family: var(--baiJamjuree);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 16px !important;
    color: #111111;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.single-problem-section-para-text {
    font-family: var(--baiJamjuree);
    margin-bottom: 25px !important;
    color: #111111;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.ap-read-more-btn,
.ap-read-more-btn-custom {
    text-transform: capitalize;
    display: flex;
    text-decoration: none;
    font-family: var(--baiJamjuree);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    border: 1px solid var(--aRed);
    color: var(--aWhite);
    background-color: var(--aRed);
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.5s;
    max-width: fit-content;
}

.ap-read-more-btn-custom {
    font-size: 12px;

}

.ap-read-more-btn-color-center {
    margin: auto;
}

.ap-read-more-btn img {
    margin-left: 8px;
    transition: opacity 0.3s;
}

.ap-read-more-btn-custom {
    padding: 10px 20px;
}

.ap-read-more-btn .red-up {
    display: none;
}

.ap-read-more-btn:hover .btn-arrow-right {
    display: none;
}

.ap-read-more-btn:hover .red-up {
    display: block;
}

.ap-read-more-btn-custom .red-up {
    display: none;
}

.ap-read-more-btn-custom:hover .btn-arrow-right {
    display: none;
}

.ap-read-more-btn-custom:hover .red-up {
    display: block;
}

.ap-read-more-btn:hover,
.ap-read-more-btn-custom:hover {
    background-color: var(--aWhite);
    color: var(--aRed);
}


.single-problem-section-a-tag {
    font-family: var(--baiJamjuree);
    color: var(--aRed);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: 0.08em;
    position: relative;
    max-width: 86px;
    padding-bottom: 10px;
}

.single-problem-section-a-tag::before {
    content: "";
    width: 0px;
    height: 1px;
    background-color: var(--aRed);
    position: absolute;
    bottom: 0;
    transition: width 0.5s;
    ;
}

.single-problem-section-container:hover .single-problem-section-a-tag::before {
    width: 90px;
}

.single-problem-section-container:hover .single-problem-section-a-tag {
    color: var(--aRed);
}

.say-about-different-problems-container-a {
    text-align: center;
}

@media (max-width:992px) {
    .single-problem-section-image {
        height: 300px;
    }

    .say-about-different-problems-container {
        margin-bottom: 60px;
    }

    .say-about-different-problems-heading {
        font-size: 28px;
    }
}

@media (max-width:768px) {
    .single-problem-section-image {
        height: 250px;
    }

    .ap-different-problems-blocks {
        margin-bottom: 20px;
    }

    .say-about-different-problems-container {
        margin-bottom: 50px;
    }

    .say-about-different-problems-heading {
        font-size: 24px;
    }

    .single-problem-section-text-container {
        padding: 20px;
    }

    .single-problem-section-para-text {
        line-height: 1.2;
        margin-bottom: 15px !important;
    }

}

@media (max-width:576px) {
    .say-about-different-problems-heading {
        font-size: 20px;
        margin-bottom: 20px !important;
    }


}

/* Say About Different Problems ended */


/* client slider css starts*/

.ap-clients-wrapper {
    background-color: var(--aLightGray);
    padding: 80px 0px;
}

.ap-clients-container {
    max-width: 1240px;
    margin: auto;
    padding: 0px 24px;
}

.ap-clients-slider {
    position: relative;
}

.ap-client-item {
    padding-left: 15px;
    padding-right: 15px;
}

.ap-client-card {
    background-color: var(--aWhite);
    border-radius: 6px;
    padding: 24px;
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ap-client-img {
    max-height: 96px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 992px) {
    .ap-clients-wrapper {
        padding: 60px 0px;
    }

    .ap-clients-container {
        padding: 0px 16px;
    }
}

@media (max-width: 768px) {
    .ap-clients-wrapper {
        padding: 40px 0px;
    }
}

@media (max-width: 576px) {}

/* client slider css ended*/

/* home page css ends*/