*{
    padding: none;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    box-sizing: border-box;
    scroll-behavior: smooth;
    outline: none;
    text-decoration: none;
}

#home-page-content-cont{
    position: relative;
    z-index: 10;
    width:100%;
    height:auto;
}
.page-intro-section{
    position: relative;
    width: 100%;
    min-height: 100vh;
}
.page-intro-section::before{
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    background-color:rgba(0,0,0,0.3);
}
.page-intro-section-banner-wrapper{
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    right: 0;
}
.page-intro-section-banner-wrapper .page-intro-section-banner{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
    transition: all 1s linear;
}
.page-intro-section .page-intro-section-content{
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 100vh;
    background-color: rgba(0,0,0,0.1);
}

.page-intro-section-inner-content{
    position: relative;
    width: 100%;
    padding-top: 6rem;

}
.page-intro-section-content header>h1,.page-intro-section-content header>h1>.stand-out-heading-text{
    position: relative;
    max-width: 100%;
    font-size: 3rem;
    font-weight: bold;
    color: #f8f8f8;
    text-transform: capitalize;
    text-align: center;
    margin: 1rem;
    margin-bottom: 2rem;
    transform: translateX(-100%);
    opacity: 0;
    filter: blur(30px);
    animation: slideInHomePageIntroHeading 1s linear 2s;
    animation-fill-mode: forwards;
}

@keyframes slideInHomePageIntroHeading {
    0%{
        transform: translateX(-100%);
        opacity: 0;
        filter: blur(30px);
    }
    100%{
        transform: translateX(0);
        opacity: 1;
        filter: blur(0);
    }
}
.page-intro-section-content header>h1>.stand-out-heading-text{
    color: var(--pure-white);
    font-size: 6rem;
}
#home-page-content-cont .page-intro-section-content p{
    font-size: 14px;
    text-align: center;
    color: #f6f6f6;
    width: 60%;
    margin: 0.7rem auto;
    line-height: 1.2;
    transform: translateY(200%);
    opacity: 0;
    filter: blur(10px);
    animation: slideInHomePageIntroText 1s ease-in-out 3s;
    animation-fill-mode: forwards;
}

@keyframes slideInHomePageIntroText {
    0%{
        transform: translateY(200%);
        opacity: 0;
        filter: blur(10px);
    }
    100%{
        transform: translateY(0);
        opacity: 1;
        filter: blur(0);
    }
}
.page-intro-section-content .learn-more-wrapper{
    position: relative;
    width: 100%;
    text-align: center;
    margin-top: 5rem;
    transform: scale(0.15);
    opacity: 0;
    filter: blur(10px);
    animation: fadeInHomePageIntroBtn 1s ease-in-out 4s;
    animation-fill-mode: forwards;
}
@keyframes fadeInHomePageIntroBtn {
    0%{
        transform: scale(0.15);
        opacity: 0;
        filter: blur(10px);
    }
    100%{
        transform: scale(1);
        opacity: 1;
        filter: blur(0);
    }
}
.page-intro-section-content .learn-more-wrapper>.learn-more{
    text-decoration: none;
    background-color: var(--primary-color-deep);
    text-align: center;
    padding: 1.2rem 1.4rem;
    color: #fff;
    font-weight: bold;
    text-transform: capitalize;
    font-size: 1rem;
    border-radius: 10px;
    border-right: 6px solid #f00;
    border-bottom: 6px solid var(--primary-color-light);
    transition: all 0.4s ease-in;
}
.page-intro-section-content .learn-more-wrapper>.learn-more:hover{
    background-color: transparent;
    border: 3px solid var(--primary-color-light);
    border-radius: 0px;
    color: var(--pure-white);

}
.home-page-floating-brand-wrapper{
    position: relative;
    z-index: 5;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 150px;
    background-image: linear-gradient(to right, dodgerblue 10%, #002255 70%);
    overflow: hidden;
    margin-bottom: 2rem;
    border-bottom: 10px solid var(--pure-white);
}
.home-page-floating-brand-wrapper>.home-page-floating-brand{
    position: absolute;
    max-width: 100px;
    height: auto;
    background-color: transparent;
    color: #f8f8f8;
    font-size: 1rem;
    font-weight: bold;
    transform: scale(0) translateY(-90px) rotate(0);
    opacity: 1;
    animation: homePageBgAnimate 6s linear infinite;
    transition: all 1s ease-in-out;
}
.home-page-floating-brand:nth-child(1){
    top: 12%;
    left: 30%;
    animation-delay: 10s;
}
.home-page-floating-brand:nth-child(2){
    top: 17%;
    left: 85%;
    animation-delay: 7s;
}
.home-page-floating-brand:nth-child(3){
    top: 15%;
    left: 15%;
    animation-delay: 6s;
}
.home-page-floating-brand:nth-child(4){
    top: 70%;
    left: 30%;
    animation-delay: 10s;
}
.home-page-floating-brand:nth-child(5){
    top: 70%;
    left: 90%;
    animation-delay: 9s;
}
.home-page-floating-brand:nth-child(5){
    top: 80%;
    left: 67%;
    animation-delay: 12s;
}

.home-page-floating-brand:nth-child(6){
    top: 70%;
    left: 50%;
    animation-delay: 11s;
}

.home-page-floating-brand:nth-child(7){
    top: 40%;
    left: 80%;
    animation-delay: 13s;
}
.home-page-floating-brand:nth-child(8){
    top: 50%;
    left: 20%;
    animation-delay: 16s;
}
.home-page-floating-brand:nth-child(9){
    top: 10%;
    left: 70%;
    animation-delay: 18s;
}
.home-page-floating-brand:nth-child(10){
    top: 70%;
    left: 10%;
    animation-delay: 18s;
}
.home-page-floating-brand:nth-child(11){
    top: 20%;
    left: 60%;
    animation-delay: 20s;
}
.home-page-floating-brand:nth-child(12){
    top: 15%;
    left: 70%;
    animation-delay: 22s;
}
.home-page-floating-brand:nth-child(13){
    top: 10%;
    left: 45%;
    animation-delay: 22s;
}
.home-page-floating-brand:nth-child(14){
    top: 10%;
    left: 50%;
    animation-delay: 22s;
}
@keyframes homePageBgAnimate{
    0%{
        transform: scale(0) translateY(-90px) rotate(0);
        opacity: 1;
    }
    100%{
        transform: scale(1.1) translateY(90px) rotate(360deg);
        opacity: 1;
    }
}


.section-cont{
    opacity: 0;
    transform: translateY(190px);
    filter: blur(30px);
    transition: opacity, transform 800ms linear;
}

.section-cont.PageRevealed{
    transition: opacity, transform 800ms linear;
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.normalize{
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    transition: none;
}

.our-services-section{
    position: relative;
    width: 100%;
    background-color: var(--primary-color-deep);
    padding-top: 5rem;

}
.our-services-section>.our-services-inner-cont{
    position: relative;
    width: 100%;
    margin: 3rem 0;
    background-color: #f6f6f6;
    padding: 1rem;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
.our-services-inner-cont>h2{
    position: relative;
    font-weight: bold;
    font-size: 2rem;
    text-transform: capitalize;
    margin: 0rem 0;
    background: var(--primary-color-deep);
    padding: 0.7rem 1rem;
    max-width: 100%;
    color: #fff;
    border: 1px solid var(--primary-color-deep);
    border-radius: 20px 20px 0 0;
}
.services{
    position: relative;
    width: 90%;
    margin: auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
    flex-direction: row;
    padding-top: 3rem;
    place-items: center;
}



.services .service-products-cont{
    position: relative;
    width: 1000px;
    height: 600px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    flex-direction: row;
    flex-wrap: wrap;
    overflow-y: auto;
}
.service-products-cont>.service-product-wrapper{
    position: relative;
    width: 350px;
    background-color: var(--pure-white);
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    padding: 0.7rem;
    border-radius: 5px;
    overflow-x: auto;
}


.service-products-cont.list-view{
    max-height: 600px;
}
.service-products-cont.list-view>.service-product-wrapper{
    width: 100%;
    height: 100%;
}


.service-product-wrapper>.service-product-img-wrapper{
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.service-product-img-wrapper>.service-product-img{
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.service-product-wrapper>.service-product-name{
    position: relative;
    width: 100%;
    font-size: 14px;
    color: var(--primary-color-light);
    font-weight: bold;
    line-height: 1.2;
    text-transform: capitalize;
    text-align: center;
    padding: 0.7rem;
    padding-bottom: 0;
}

.service-products-cont.list-view .service-product-name{
    position: absolute;
    bottom: 40px;
    color: var(--primary-color-light);
    font-weight: bold;
    font-size: 1.3rem;
    text-transform: uppercase;
}
.services>.service-product-writeups-cont{
    position: relative;
    width: 500px;
    padding: 1rem;
}
.services>.service-product-writeups-cont>h3{
    position: relative;
    width: 100%;
    font-weight: bold;
    text-align: center;
    font-size: 2rem;
    text-transform: uppercase;
    margin: 1rem 0;
    border-bottom: 1px solid var(--primary-color-light);
    padding-bottom: 0.7rem;
}
.service-product-writeups-cont>p{
    font-size: 1.2rem;
    color: var(--gray-color1);
    line-height: 1.3;
    text-align: justify;
}

.service-product-wrapper>.view-mode-contrl-btn-wrapper{
    position: absolute;
    width: 15px;
    height: 15px;
    bottom: 10px;
    right: 15px;
    cursor: pointer;
}

.view-mode-contrl-btn-wrapper>.view-mode-contrl-btn{
    outline: none;
    border: 1px solid var(--primary-color-deep);
}

.view-mode-contrl-btn-wrapper>.view-mode-contrl-btn>.view-mode-btn-icon{
    position: relative;
    font-weight: bold;
    color: var(--primary-color-deep);
}
#other-services{
    position: relative;
    margin-bottom: 4rem;
}
.other-rendered-services-section{
    position: relative;
    width: 100%;
    background-color: var(--primary-color-deep);
    padding: 4rem 0;
    padding-bottom: 8rem;
}
.other-rendered-services-section>h3{
    position: relative;
    margin: 1.5rem;
    font-size: 2rem;
    text-transform: uppercase;
    color: #f8f8f8;
    text-align: center;
}
.other-rendered-services-section>p{
    font-size:15px;
    color: #f7f7f7;
    text-align: center;
    max-width: 50%;
    margin: auto;
}
.other-rendered-services-section>.other-rendered-services-cards{
    position: relative;
    width: 100%;
    margin: 4rem 0;
    padding: 8rem 1rem;
    background-image: url(../images/tractors/4000-serisi-ana-gorsel-min_op-truck.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.7rem;
    flex-wrap: wrap;
}
.other-rendered-services-section>.other-rendered-services-cards::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.7);
}
.other-rendered-services-cards>.other-rendered-service-card{
    position: relative;
    width: 350px;
    padding: 1rem;
    background-color: #f1f1f1;
    border-radius: 10px;
    transition: transform 0.5s ease-in-out;
}

.other-rendered-services-cards>.other-rendered-service-card:hover{
    transform: scale(1.03);
}
.other-rendered-service-card>.other-rendered-service-img-wrapper{
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 0px 20px 0 0;
}
.other-rendered-service-card>.other-rendered-service-img-wrapper.adjust{
    overflow-x: auto;
}
.other-rendered-service-img-wrapper>.other-rendered-service-img{
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
    border-radius: 0px 20px 0 0;
}
.other-rendered-service-card-content{
    position: relative;
    width: 100%;
    background-color: #ffffff;
    padding: 1rem 1rem;
    margin: 0rem auto;
    margin-bottom: 0;
}
.other-rendered-service-card-content>h4{
   position: relative;
    margin: 1rem 0;
    font-size: 1.3rem;
    text-transform: uppercase;
    color: var(--primary-color-deep);
    text-align: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
    border: 2px dotted #f00;
    padding: 0.5rem;
}
.other-rendered-service-card>.other-rendered-service-card-footer{
    position: relative;
    width: 100%;
    padding: 1rem 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.other-rendered-service-card-footer>a{
    text-decoration: none;
    background-color: var(--primary-color-light);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    border: 2px solid var(--primary-color-light);
    transition: all 0.5s ease-in-out;
}
.other-rendered-service-card-footer>a:last-of-type{
    background-color: transparent;
    color: var(--primary-color-light);
}
.other-rendered-service-card-footer>a:first-of-type:hover{
    background-color: transparent;
    color: var(--primary-color-light);
}
.other-rendered-service-card-footer>a:last-of-type:hover{
    background-color: var(--primary-color-light);
    color: #fff;
}


.sample-works-wrapper{
    position: relative;
    width: 100%;
    min-height: 400px;
    background-image: url(../images/backgroundThemes/background-theme2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    padding-top: 2.5rem;
}
.sample-works-wrapper>div>h3{
    position: relative;
    width: 100%;
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    margin: 1rem 0;
    color: #fff;
}
.sample-works-wrapper>div>p{
    color: #ccc;
    text-align: center;
    max-width: 50%;
    margin: auto;
}
.sample-works{
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 4.5rem 0;
    padding-bottom: 2rem;
    min-height: 400px;
    background-image: url(../images/combineHarvesters/combine-harvester-banner-img.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    padding: 4rem 0;
}

.sample-works::before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.4);
}

.sample-works .sample-work{
    position: relative;
    width: 300px;
    background-color: rgba(0,0,0,0.5);
    border: 3px solid rgba(255, 255, 255, 1);
    border-radius: 0 20px 0 20px;
    transition: transform 0.5s linear;
}
.sample-works .sample-work:hover{
    transform: scale(1.05);
}
.sample-work .sample-work-img-wrapper{
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 0px 20px 0 0;
}
.sample-work-img-wrapper>.sample-work-img{
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    overflow: hidden;
    border-radius: 0px 20px 0 0;
}
.sample-work .sample-work-desc{
    position: relative;
    width: 100%;
    background-color: rgba(200, 200, 200, 1);
    padding: 1.2rem;
    border-radius: 0px 0px 0px 20px;
    text-align: center;
}
.sample-work .sample-work-desc>p{
    font-size: 2rem;
    font-weight: bold;
    text-transform: capitalize;
    color: var(--primary-color-deep);
}
.sample-work-desc .sample-number-box{
    background-color: rgba(255, 255, 255, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f00;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: monospace;
    border-right: 4px solid var(--primary-color-light);
    border-bottom: 4px solid var(--primary-color-light);
}

.client-testimonial-section{
    position: relative;
    width: 100%;
    margin: 7rem 0;
    margin-bottom: 0;
    padding: 6rem 0;
    background-color: var(--grey-bgcolor);
    background-color: var(--primary-color-deep);
}
.client-testimonial-section>.our-client-testimonies-intro-wrapper{
    position: relative;
    width: 80%;
    margin: 1rem auto;
    border-bottom: 1px solid #ccc;
    padding-bottom: 1rem;
    text-align: center;
}

.our-client-testimonies-intro-wrapper>h4{
    font-size: 2.2rem;
    color: var(--pure-white);
    text-align: center;
    max-width: 100%;
    margin-bottom: 1.3rem;
    text-transform: uppercase;
}

.our-client-testimonies-intro-wrapper>p{
    font-size: 1.2rem;
    line-height: 1.2;
    width: 100%;
    color: #f6f6f6;
}
.bolded-text{
    font-weight: bolder;
    font-size: 1.3rem;

}
.client-testimonies-container{
    position: relative;
    width: 80%;
    margin: 4rem auto;
    background-color: var(--pure-white);
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 1px 1px 15px 10px rgba(0,0,0,0.1);
    overflow-x: hidden;
}
.client-testimonies-container .client-testimonies{
    position: relative;
    width: 900%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    gap: 0.7rem;
}
.client-testimonies .client-testimony{
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    gap: 0.7rem;
    flex-wrap: wrap;
}
.client-testimonies-container .client-testimonies.transitioned, .client-testimonies .client-testimony.transitioned{
    transition: all 0.3s ease-in;
}

.client-details-wrapper{
    position: relative;
    max-width: 500px;
}
.client-details-wrapper .client-testimony-img-wrapper{
    position: relative;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
    margin-bottom: 1rem;
}
.client-details-wrapper .client-testimony-img-wrapper>.client-testimony-img{
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}
.client-details-wrapper>.client-details{
    position: relative;
    width: 100%;
    text-align: center;
}
.client-details-wrapper>.client-details>.client-name{
    font-weight: bold;
    font-size: 1.5rem;
    color: deepskyblue;
    margin: 1.2rem 0;
    text-transform: capitalize;
}
.client-details-wrapper>.client-details>.client-desc{
    font-weight: normal;
    font-size: 1.2rem;
    color: #888;
    margin: 0.2rem 0;
    text-transform: capitalize;
}
.client-testimony .client-testimony-wrapper{
    position: relative;
    max-width: 500px;
    padding: 1rem;
}
.client-testimony .client-testimony-wrapper>p{
    font-weight: 500;
    font-size: 1.4rem;
    color: #888;
    line-height: 1.2;
    text-align: center;
}
.client-testimony .client-testimony-wrapper>.left-quote-icon, .client-testimony .client-testimony-wrapper>.right-quote-icon{
    display: inline-block;
    font-size: 2rem;
    color: #000;
    margin-left: 4rem;
    margin-bottom: 1.5rem;
}
.client-testimony-wrapper>.right-quote-icon{
    display: inline-block;
    position: absolute;
    left: 80%;
}

.client-testimony-navigation-btns-wrapper{
    position: absolute;
    z-index: 5;
    width: 100%;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -80%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0 1rem;
}
.client-testimony-navigation-btns-wrapper .buttn{
    outline: none;
    border: none;
    padding: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: deepskyblue;
    border: 2px solid deepskyblue;
    box-shadow: 0 0 5px 0 rgba(0,0,0,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease-in;
}
.client-testimony-navigation-btns-wrapper .buttn .view-nav-icon{
    font-size: 1.7rem;
    font-weight: bold;
    color: var(--pure-white);
}
.client-testimony-navigation-btns-wrapper .buttn:hover, .client-testimony-navigation-btns-wrapper .buttn:focus{
    background-color: var(--pure-white);
    color: deepskyblue;
}
.client-testimony-navigation-btns-wrapper .buttn:hover .view-nav-icon, .client-testimony-navigation-btns-wrapper .buttn:focus .view-nav-icon{
    color: deepskyblue;
}

.client-testimony-navigation-btns-wrapper #slide-stop-control{
    transform: rotate(-90deg);
}

.client-testimony-navigation-btns-wrapper #slide-play-control{
    display: none;
}

.client-testimony-indicator-wrapper{
    position: relative;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    gap: 0.7rem;
    padding: 1rem;
}
.client-testimony-indicator-wrapper .client-testimony-indicator{
    position: relative;
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    transition: all 0.4s ease-in;
}
.client-testimony-indicator-wrapper .client-testimony-indicator.active--indicator{
    background-color: #000;
}

@media(max-width:1200px){
    .page-intro-section .page-intro-section-content{
        padding: 2rem;
    }
    
    .page-intro-section-inner-content{
        padding-top: 6rem;
    }

    .page-intro-section-banner-wrapper{
        height: 100vh;
    }
    
}

@media(max-width:1046px){
    .page-intro-section .page-intro-section-content{
        padding: 2rem;
    }
    
    .page-intro-section-content p{
        font-size: 1.5rem;
        width: 85%;
    }

    .page-intro-section-banner-wrapper{
        height: 100vh;
    }
    .page-intro-section .page-intro-section-content{
        height: 100vh;
        padding-top: 3.3rem;
    }
    
}

@media (max-width: 950px){
    .page-intro-section .page-intro-section-content{
        padding: 2.5rem;
    }
    .page-intro-section-content header>h4{
        font-size: 4rem;
    }

    .page-intro-section{
        flex-direction: column;
    }

    .page-intro-section .page-intro-section-content{
        height: auto;
    }

    .page-intro-section::before{
        background-color: rgba(0,0,0,0.5);
    }
    .services{
        flex-direction: column;
    }


    .services>.service{
        flex-direction: column;
    }

    .service .service-img-wrapper{
        position: relative;
        width: 100%;
    }
    .service .service-content{
        width: 100%;
    }

    .services>.service.background-added .service-img-wrapper{
        order: 1;
    }

    .services>.service.background-added .service-content{
        order: 2;
    }
    .page-intro-section-content .learn-more-wrapper{
        margin-bottom: 1.5rem;
    }

}

@media (max-width:905px){
    #home-page-content-cont{
        padding-top: 5rem;
    }

    .page-intro-section-inner-content{
        padding-top: 18rem;
    }
     .sample-works-wrapper>div>p{
        max-width: 70%;
    }
    
    .other-rendered-services-section>p{
        max-width: 70%;
    }

}

@media (max-width:730px){
    .sample-works-wrapper>div>h3{
        font-size: 1.7rem;
    }   
    .sample-works{
        gap: 1.5rem;
    }
    .sample-works-wrapper>div>h3{
        font-size: 2rem;
        
    }
   
    .services{
        position: relative;
        width: 92%;
    }

    .other-rendered-services-section>.other-rendered-services-cards{
        gap: 1.5rem;

    }

    .page-intro-section-content header>h1,.page-intro-section-content header>h1>.stand-out-heading-text{
        font-size: 2rem;
    }
    .page-intro-section-content header>h1>.stand-out-heading-text{
        color: var(--pure-white);
        font-size: 4rem;
    }
    #home-page-content-cont .page-intro-section-content p{
        width: 70%;
    }
    .page-intro-section-content .learn-more-wrapper{
        position: relative;
        width: 100%;
        text-align: center;
        margin-top: 5rem;
    }



}


@media (max-width:610px){ 

    .page-intro-section-content header>h1,.page-intro-section-content header>h1>.stand-out-heading-text{
        font-size: 1.8rem;
    }
    .page-intro-section-content header>h1>.stand-out-heading-text{
        color: var(--pure-white);
        font-size: 2.5rem;
    }
    #home-page-content-cont .page-intro-section-content p{
        width: 90%;
    }
    .page-intro-section-content .learn-more-wrapper{
        /* margin-top: 5rem; */
    }



}


@media (max-width:606px){
    .page-intro-section .page-intro-section-content{
        padding: 2rem;
    }
    .page-intro-section-content header>h4{
        font-size: 3.5rem;
    }
    .page-intro-section-content p{
        font-size: 1.2rem;
        width: 80%;
    }

    .services>.service-product-writeups-cont>h3{
        font-size: 1.7rem;
    }
     .sample-works-wrapper>div>p{
        max-width: 90%;
    }
     
}

@media (max-width:587px){
    .page-intro-section-inner-content{
        padding-top: 20rem;
    }
}

@media (max-width:470px){
    .page-intro-section-content header>h4{
        font-size: 3rem;
    }
    .page-intro-section-content p{
        font-size: 1.2rem;
        width: 90%;
    }
    
    .other-rendered-services-section>p{
        max-width: 60%;
    }

    .client-testimonial-section>.our-client-testimonies-intro-wrapper{
        width: 92%;
    }

    .client-testimonies-container{
        width: 92%;
    }


    .client-testimonies .client-testimony{
        flex-direction: column;
    }
    .client-testimonies-container .client-testimonies.transitioned, .client-testimonies .client-testimony.transitioned{
        transition: all 0.3s ease-in;
    }

    .client-details-wrapper{
        max-width: 100%;
    }
    .client-details-wrapper .client-testimony-img-wrapper{
        width: 190px;
        height: 190px;
    }
    .client-details-wrapper .client-testimony-img-wrapper>.client-testimony-img{
        display: block;
        position: relative;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 50%;
    }
    .client-details-wrapper>.client-details{
        position: relative;
        width: 100%;
        text-align: center;
    }
    .client-details-wrapper>.client-details>.client-name{
        font-size: 1.2rem;
    }
    .client-details-wrapper>.client-details>.client-desc{
        font-size: 1rem;
    }
    .client-testimony .client-testimony-wrapper{
        max-width: 100%;
    }
    .client-testimony .client-testimony-wrapper>p{
        font-size: 1rem;
    }
    .client-testimony .client-testimony-wrapper>.left-quote-icon, .client-testimony .client-testimony-wrapper>.right-quote-icon{
        font-size: 1.7rem;
    }
    .client-testimony-wrapper>.right-quote-icon{
        left: 60%;
    }

    .client-testimony-navigation-btns-wrapper{
        top: 95%;
        transform: translate(-50%, -95%);
    }


    .client-testimony-navigation-btns-wrapper .buttn{
        width: 35px;
        height: 35px;
    }
    .client-testimony-navigation-btns-wrapper .buttn .view-nav-icon{
        font-size: 1.7rem;
    }



    .page-intro-section .page-intro-section-content{
        height: auto;
    }

}

@media (max-width: 450px){

    .services .service-products-cont{
        width: 100%;
    }    
    .service-products-cont>.service-product-wrapper{
        width: 100%;
        overflow-x: auto;
    }

    .services>.service-product-writeups-cont{
        width: 100%;
    }
    .services>.service-product-writeups-cont>h3{
        font-size: 1.5rem;
    }

    .service-product-wrapper>.view-mode-contrl-btn-wrapper{
        /* right: 40%; */
    }
    .other-rendered-services-section>p{
        max-width: 80%;
    }

}
@media (max-width:416px){
    .page-intro-section .page-intro-section-content{
        padding: 2rem;
    }
    .page-intro-section-content header>h4{
        font-size: 2.5rem;
    }
    .page-intro-section-content p{
        font-size: 1.2rem;
        width: 95%;
    }

    .page-intro-section-content .learn-more-wrapper{
        font-size: 0.7rem;
        margin-top: 3rem;
    }

}

@media (max-width:384px){
    .page-intro-section-content header>h1{
        position: relative;
        width: 100%;
    }
    .page-intro-section-content header>h1,.page-intro-section-content header>h1>.stand-out-heading-text{
        font-size: 1.5rem;
    }
    .page-intro-section-content header>h1>.stand-out-heading-text{
        color: var(--pure-white);
        font-size: 2.2rem;
    }
    #home-page-content-cont .page-intro-section-content p{
        width: 97%;
    }
    .page-intro-section-content header>h4{
        font-size: 2rem;
    }

    .service .service-content h1, .service .service-content h2{
        font-size: 2.3rem;
    }

    .other-rendered-services-section>h3{
        font-size: 1.7rem;
    }

    .sample-works-wrapper>div>h3{
        font-size: 1.5rem;
        
    }

}

@media (max-width:321px){
    .page-intro-section .page-intro-section-content{
        padding: 2rem 1rem;
    }   

    .page-intro-section-content header>h1{
        position: relative;
        width: 100%;
    }
    .page-intro-section-content header>h1,.page-intro-section-content header>h1>.stand-out-heading-text{
        font-size: 1.5rem;
    }
    .page-intro-section-content header>h1>.stand-out-heading-text{
        color: var(--pure-white);
        font-size: 2.2rem;
    }
    .page-intro-section-content header>h4{
        font-size: 2rem;
    }
    .page-intro-section-content p{
        font-size: 1.2rem;
        width: 100%;
    }


    .service .service-content h1, .service .service-content h2{
        font-size: 2rem;
    }

     .sample-works-wrapper>div>h3{
        font-size: 1.2rem;
    }
     .sample-works-wrapper>div>p{
        max-width: 97%;
    }
    
    
    .other-rendered-services-section>p{
        max-width: 90%;
    }

}

@media (max-width:300px){
    .page-intro-section .page-intro-section-content{
        padding: 2rem 1rem;
    }
    .page-intro-section-content header>h4{
        font-size: 1.5rem;
        margin: 1rem 0;
    }
    .page-intro-section-content p{
        font-size: 1rem;
        width: 100%;
    }
    .other-rendered-services-section>p{
        max-width: 80%;
    }
    .page-intro-section-content .learn-more-wrapper{
        margin-top: 2rem;
    }
}

@media (max-width:286px){
    .page-intro-section-inner-content{
        padding-top: 20rem;
    }  

    .page-intro-section-content header>h1{
        position: relative;
        width: 100%;
    }
    .page-intro-section-content header>h1,.page-intro-section-content header>h1>.stand-out-heading-text{
        font-size: 1.4rem;
    }
    .page-intro-section-content header>h1>.stand-out-heading-text{
        color: var(--pure-white);
        font-size: 2rem;
    }
    .page-intro-section-content p{
        font-size: 0.9rem;
    }
    .service .service-content h1, .service .service-content h2{
        font-size: 1.5rem;
    }
    .other-rendered-services-section>h3{
        font-size: 1.5rem;
    }

    .services>.service-product-writeups-cont>h3{
        font-size: 1.2rem;
    }

     .sample-works-wrapper>div>h3{
        font-size: 1rem;
    }

    .page-intro-section-content header>h1>.stand-out-heading-text{
        color: var(--pure-white);
        font-size: 2rem;
    }
    .page-intro-section-content header>h4{
        font-size: 1.7rem;
    }
    .page-intro-section-content p{
        font-size: 0.6rem;
    }
        
    .emphasized-phrase-color-light{
        font-size: 17px;
    
    }
    
    .other-rendered-services-section>p{
        max-width: 95%;
    }

}

@media (max-width:240px){
    .page-intro-section .page-intro-section-content{
        padding: 2rem 1rem;
    } 
}