* {
    font-family: Montserrat;
}

body {
    /* overflow-x: hidden; */
    width: 100%;
}

.container-fluid>div {
    /* margin-left: 5rem !important;
    margin-right: 5rem !important; */
}

.home-page-heading{
 font-size:3rem;   
}

.home-section-1 {
    background-color: #1B337B;
    width: 100%;
    max-height: 88rem;
    min-height: 88vh;
    height: 88vh;
}

.hp-btn-contact {
    padding: 15px 40px;
    color: #fff;
    font-size: 26px;
    border-radius: 10px;
    background-color: #229d78;
    border: 1px solid #229d78;
    font-weight: 700;
    transition-duration: 0.5s;
}
.hp-btn-contact:hover{
    background: #F8B430;
    border: 1px solid #F8B430;
}

.hp-btn-work {
    padding: 8px 40px;
    color: #ffffff;
    font-size: 18px;
    border-radius: 20px;
    background-color: transparent;
    border: 1px solid #229d78;
    font-weight: 700;
}

.home-side-image {
    width: 100%;
    max-height: 700px;
    /*animation: moveUpDown 2s infinite ease-in-out;*/
}

@keyframes moveUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px); /* Adjust this value to control how far up the image moves */
    }
}


.about-image{
position: relative;
overflow: hidden;
}
.about-image::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: none;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
}
.about-image:hover::before {
    -webkit-animation: shine .75s;
    animation: shine .75s;
    display: block;
}
@keyframes shine {
    100% { 
        left: 100%;
       display: none;
    }
}

.home-section-1-text-area {
    flex-direction: column;
    justify-content: center;
    /* padding-top: calc(10vh + 5rem);
    padding-bottom: calc(10vh + 5rem); */
}

.small-sub-heading {
    font-size: 1.5rem;
}

.large-main-heading {
    font-size: 70px;
}

.home-section-2 {
    background-color: #229d78;
}

.about-us-section {
    background-color: #F2F2F2;
}

.recent-project {
    background-color: #F2F2F2;
}

.rp-card {
    position: relative;
    margin: 0px 1rem;
    z-index: 1;
    border-radius: 10px;
}
.rp-card img{
    border: 1px solid #a9a9a9;
    border-radius: 5px;
}
.rp-card:hover .rp-card-bottom-text{
    bottom:6px;
}
.rp-card-upper-text {
    position: absolute;
    top: 0;
    right: 0;
    margin: 10px;
    font-size: 25px;
    color: #229d78;
    display: none;
    z-index: 11;
}

.rp-card-bottom-text {
      position: absolute;
    bottom: -3px;
    left: 0;
    margin: 10px;
    font-size: 25px;
    color: #000000;
    font-weight: 700;
    background-color: #ffffffb5;
    width: 96%;
   padding-left: 20px; 
    text-align: center;
    transition-duration: 0.5s;
}

.recent-project-carosel>.slick-prev {
    position: absolute;
    bottom: 0px;
    right: 200px;
    border: 1px solid #229d78;
    padding: 5px 10px;
    border-radius: 50%;
}

.recent-project-carosel>.slick-prev:hover {
    background-color: #229d78;
}

.recent-project-carosel>.slick-prev:hover>i {
    color: #fff;
}

.recent-project-carosel>.slick-prev>i {
    color: #229d78;
}


.recent-project-carosel>.slick-next {
    position: absolute;
    bottom: 0px;
    right: 100px;
    border: 1px solid #229d78;
    padding: 5px 10px;
    border-radius: 50%;
}

.recent-project-carosel>.slick-next:hover {
    background-color: #229d78;
}

.recent-project-carosel>.slick-next:hover>i {
    color: #fff;
}

.recent-project-carosel>.slick-next>i {
    color: #229d78;
}





.testimonial-section-card {
    background-color: #F2F2F2;
    margin-left: 20px;
    border-radius: 10px;
    color: #000;
    transition-duration: 1s;
    padding:3rem;
}

.testimonial-section-card:hover {
    background-color: #F4E4C9;
    /*color: #fff;*/
}



.testimonial-section-carosel>.slick-prev {
    position: absolute;
    bottom: 110%;
    right: 200px;
    border: 1px solid #229d78;
    padding: 5px 10px;
    border-radius: 50%;
}

.testimonial-section-carosel>.slick-prev:hover {
    background-color: #229d78;
}

.testimonial-section-carosel>.slick-prev:hover>i {
    color: #fff;
}

.testimonial-section-carosel>.slick-prev>i {
    color: #229d78;
}


.testimonial-section-carosel>.slick-next {
    position: absolute;
    bottom: 110%;
    right: 100px;
    border: 1px solid #229d78;
    padding: 5px 10px;
    border-radius: 50%;
}

.testimonial-section-carosel>.slick-next:hover {
    background-color: #229d78;
}

.testimonial-section-carosel>.slick-next:hover>i {
    color: #fff;
}

.testimonial-section-carosel>.slick-next>i {
    color: #229d78;
}


.accordion-item {
    background-color: #F2F2F2;
    padding: 1rem 2rem;
    margin-bottom: 1rem;
    border-radius: 5px;
}

.accordion-item.active {
    background-color: #f8b43042;
}


.accordion-button {
    background-color: transparent !important;
}

.border-dark {
    border-color: #A6A6A6 !important;
}


/* Youtube */

.vedio-card-area {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    transition-duration: 1s;
}

.vedio-card-area::after {
    position: absolute;
    content: '';
    top: 45%;
    left: 43%;
    background-image: url(/public/front/images/home/download.svg);
    z-index: 3;
    width: 50px;
    height: 50px;
    transition-duration: 1s;
}

.vedio-card-area::before {
    position: absolute;
    content: '';
    z-index: 2;
    height: 100%;
    width: 100%;
    background-color: #1b337b63;
}

.vedio-card-area:hover::after {
    transform: scale(1.3);

}

.vedio-modal-body>iframe {
    min-height: 60vh;
}

.hs2-text {
    font-size: 55px;
    font-weight: 500;
    margin: 0;
}

.color-cahanging-text {
    animation: change-color 6s infinite linear;
}

@keyframes change-color {
    0% {
        /* color: #F8B430; */
        color: #229d78;
    }

    50% {
        color: #F8B430;
    }

    100% {
        color: #229d78;
    }
}


    .ss-text{
        font-size:4rem;
    }
    
    .testimonial-section-card:after {
        content: url(https://designbyzonewebsites.com/public/front/images/cotes.svg);
        position: absolute;
        bottom: 80px;
        right: 80px;
    }
    
    .home-selected-industry-area{
        padding:3rem;
    }
    
    .accordion-button.collapsed:after {
            right: -10px;
            top: 4px;
    }
      .accordion-button:before {
        right: -17px;
        top: 11px;
    }

@media (min-width: 1600px) {
    .container {
        max-width: 1528px;
    }
}



.home-section-1-image-area {
    width: 50%;
}

.home-section-1-text-area {
    width: 50%;
}

.home-section-1-paragraph {
    font-size: 18px;
    margin-bottom: 3rem;
}

.slash-line {
    top: -10px;
}

.clint-avtar-area {
    width: 40%;
}

.client-text-area{
    width: 60%;
}
.about-image-sec{
    gap: 6rem;
}
.services-section{
    font-family:'Poppins';
}
.services-section-ul-text{
    font-family: Poppins;
}
.services-section-ul-text>li{
    font-family: Poppins;
    line-height: 27px;
    font-size:15px;
}

@media (max-width: 1400px) {
    .small-sub-heading {
        font-size: 18px;
    }

    .large-main-heading {
        font-size: 50px;
    }

    .home-section-1-paragraph {
        font-size: 16px;
    }

    .hp-btn-contact {
        padding: 6px 30px;
        font-size: 17px;
        font-weight: 600;
    }

    .slash-line {
        top: -7px;
    }
}

@media (max-width: 1200px) {
    .home-section-1-image-area {
        width: 40%;
    }

    .home-section-1-text-area {
        width: 60%;
    }

    .small-sub-heading {
        font-size: 17px;
    }

    .large-main-heading {
        font-size: 40px;
    }

    .home-section-1-paragraph {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .home-section-1-image-area {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .home-section-1-text-area {
        width: 100%;
        margin-top: 2rem;
        text-align: center;
    }

    .small-sub-heading {
        font-size: 16px;
    }

    .large-main-heading {
        font-size: 40px;
    }

    .home-section-1-paragraph {
        font-size: 14px;
        margin-bottom: auto;
    }

    .hp-btn-contact {
        padding: 5px 25px;
        font-size: 16px;
        font-weight: 600;
    }

    .home-section-1 {
        height: auto;
        min-height: auto;
        max-height: none;
        padding-bottom: 2rem;
    }

    .home-side-image {
        width: fit-content;
        max-height: none;
    }

    .clint-avtar-area {
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 1.5rem !important;
        text-align: center;
    }

    .client-text-area {
        width: fit-content;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        margin: auto;
    }

    .client-text-area>.text-light>h6 {
        line-height: normal !important;
    }
    .about-image-sec{
        gap: 1rem;
    }
    .ss-text{
    font-size:3rem;
    }
    .testimonial-section-card{
     padding:2rem;   
    }
    .accordion-button.collapsed:after{
        right: -11px !important;
    }
    .accordion-button:before {
        right: -18px !important;
    }

}

@media (max-width: 768px) {
    .home-selected-industry-area{
    padding:1rem 10px;
     }
    .small-sub-heading {
        font-size: 16px;
    }

    .large-main-heading {
        font-size: 32px;
    }

    .home-section-1-paragraph {
        font-size: 12px;
    }

    .hp-btn-contact {
        padding: 5px 22px;
        font-size: 15px;
        font-weight: 600;
    }

    .home-side-image {
        width: 100%;
    }
    .testimonial-section-card{
     padding:1rem;   
    }
    .home-page-heading{
        font-size:1.6rem;
    }
    .dashed-to-full-new h2 {
    font-size: 21px !important;
    }
    .testimonial-section-card {
    margin-left: 0px;
    }
    .styling-text p{
        text-align:justify;
    }
    
}

@media (max-width: 576px) {

    .large-main-heading {
        font-size: 25px;
    }
 .slash-line {
     display:none;
    }
 
}

/*logo-section css*/
.logo-section {
            background: #fff;
        }

        .logo-card {
            background-color: #fff;
            padding: 30px;
            padding-bottom: 0px;
            border-radius: 10px;
            text-align: center;
            position: relative;
            min-height: 460px;
            overflow: hidden;
            box-shadow: rgb(221, 229, 235) 0px 0px 10px 5px;
            transition-duration: 0.2s;
        }

        .logo-card:hover {
            box-shadow: rgb(221, 229, 235) 0px 0px 10px 5px;
            background-color: #F5F6FA;
        }

        .logo-s-heading {
            font-size: 26px;
            font-weight: 600;
        }

        .logo-direct-anchor {
            color: blue;
        }

        .logo-image-area {
            position: absolute;
            bottom: -24px;
            padding-bottom: 0px;
            left: 0px;
            transition: bottom .2s;
        }

        .logo-card:hover .logo-image-area {
            bottom: 0px;
        }

        .logo-category-icon {
            position: absolute;
            top: 0px;
            left: 0px;
            width: 100%;
            transform: translateY(-50%);
        }

        .logo-category-icon>img {
            height: 64px;
            width: 64px;
            border: 5px solid #fff;
            border-radius: 50%;
            background: #D5D5FF;
        }


        @media screen and (min-device-width: 1200px) and (max-device-width: 1399px) {
            .logo-card {
                min-height: 410px;
            }
        }

        @media screen and (min-device-width: 992px) and (max-device-width: 1200px) {
            .logo-card {
                min-height: 395px;
            }
        }

        @media screen and (min-device-width: 676px) and (max-device-width: 860px) {
            .logo-card {
                min-height: 415px;
            }
        }

        @media screen and (min-device-width: 358px) and (max-device-width: 460px) {
            .logo-card {
                min-height: 410px;
            }
        }
        
        @media screen and (min-device-width: 576px) and (max-device-width: 673px) {
            .logo-card {
                padding: 30px 6px;
            }
        }
