h1,h2,h3{
    font-family: 'Ubuntu' !important;
}
.container1 {
    width: 100%;
    height: 75vh;
    position: relative;
    top:107px;
    background: #cfad76;
    overflow: hidden;
    margin-bottom:150px;
}

.container1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    animation: fade 1s;
}

.container1 .arrow {
    z-index: 10;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 1.5rem;
    font-size: 1.5rem;
    color: #eb9449;
    opacity: 0.5;
    transition: opacity 1s;
}

.container1 .arrow:hover {
    cursor: pointer;
    opacity: 1;
}

.container1 .arrow-left1 {
    left: 2%;
}

.container1 .arrow-right1 {
    right: 2%;
}

.container1 .dots {
    position: absolute;
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.container1 .dots .dot {
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: cornsilk;
}

.container1 .caption {
    position: absolute;
    top: 64%;
    left: 0%;
    /*transform: translateX(-50%);*/
    color: white;
    /*background: rgba(0, 0, 0, 0.5);*/
    padding: 50px;
    border-radius: 5px;
    font-size: 3.8rem;
    text-align: left;
    opacity: 0;
    /* Initially hidden */
    transition: opacity 0.5s;
    /* Transition for fading in */
font-family: 'Ubuntu' !important;
    text-shadow: 2px 3px 5px black;

}

.container1 .caption1 {
    position: absolute;
    top: 54%;
    left: 0%;
    /*transform: translateX(-50%);*/
    color: #c29b6c;
    /*background: rgba(0, 0, 0, 0.5);*/
    padding: 50px;
    border-radius: 5px;
    font-size: 1.8rem;
    text-align: left;
    opacity: 0;
    /* Initially hidden */
    transition: opacity 0.5s;
    /* Transition for fading in */
    text-transform: uppercase;
    text-shadow: 2px 3px 5px black;


}

@keyframes fade {
    from {
        opacity: 0.1;
    }

    to {
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 900px) {
    .container1 .caption {
        font-size: 1rem;
        /* Smaller font size on mobile */
        padding: 8px;
        transform: translate(46px, -20px);
        /* Less padding */
    }
    .container1 .caption1 {
    
    top: 40%;
    }

    .container1 .arrow {
        font-size: 1.2rem;
        /* Smaller arrows */
        width: 1.2rem;
        height: 1.2rem;
    }
    .about-style{
        margin-top: 25px !important;
    }

    /*          .container1 {*/
    /*width: 100%;*/
    /*height: 50%;}*/
    /*      }*/
}
    @media (max-width: 480px) {
        .container1 .caption {
            font-size: 0.9rem;
            /* Even smaller font size */
        }

        /*          .container1 {*/
        /*width: 100%;*/
        /*height: 50%;}*/
    }

    .main-menu__left {
        gap: 0px !important;
    }



    .marquee-container {
        width: 100%;
        /* Full width of the container */
        overflow: hidden;
        /* Hide the overflow */
        white-space: nowrap;
        /* Prevent text wrapping */
        box-sizing: border-box;
        padding: 1;
        /* Ensure no padding */
        margin: 1;
        /* Ensure no margin */
    }

    .marquee {
        display: inline-block;
        animation: scroll 10s linear infinite;
        /* Speed and looping of the marquee */
        white-space: nowrap;
        /* Prevent text wrapping */
        padding: 1;
        /* Remove padding */
        margin: 1;
        /* Remove margin */
    }

    @keyframes scroll {
        0% {
            transform: translateX(0%);
            /* Start just outside the right edge */
        }

        100% {
            transform: translateX(-10%);
            /* End when the text is fully outside the left edge */
        }
    }

    @media only screen and (max-width: 900px) {
        .element {
            position: relative;
            animation: slide 2s ease-out infinite;
        }
    
        @keyframes slide {
            0% {
                transform: translateX(100%);  /* Start just outside the right edge */
            }
    
            100% {
                transform: translateX(-100%); /* End when the element is fully off the left edge */
            }
        }
    }



    .skill-one {
        padding: 120px 0
    }
    
    .skill-one,.skill-one__left {
        position: relative;
        display: block
    }
    
    .skill-one__left {
        margin-right: 60px
    }
    
    .skill-one__text-2 {
        padding-top: 33px
    }
    
    .skill-one__progress {
        width: 100%;
        margin-top: 41px
    }
    
    .skill-one__progress,.skill-one__progress-single {
        position: relative;
        display: block
    }
    
    .skill-one__progress-title {
        font-size: 14px;
        font-weight: 600;
        line-height: 30px;
        color: var(--erepair-white);
        font-family: var(--erepair-font);
        padding-left: 15px
    }
    
    .skill-one__progress .bar {
        position: relative;
        width: 100%;
        height: 30px;
        background-color: var(--erepair-extra);
        border-radius: 0;
        margin-bottom: 20px
    }
    
    .skill-one__progress .bar-inner {
        position: relative;
        display: block;
        width: 0;
        height: 30px;
        border-radius: 0;
        background-color: var(--erepair-base);
        transition: all 1.5s ease
    }
    
    .skill-one__progress .count-text {
        position: absolute;
        right: 15px;
        bottom: 1px;
        color: var(--erepair-white);
        line-height: 24px;
        font-size: 14px;
        text-align: center;
        font-weight: 600;
        opacity: 1;
        transition: all .5s ease
    }
    
    .skill-one__progress .bar-inner.counted .count-text {
        opacity: 1
    }
    
    .skill-one__progress .bar.marb-0 {
        margin-bottom: 0
    }
    
    .skill-one__right {
        margin-left: 145px
    }
    
    .skill-one__right,.skill-one__right-img,.skill-one__right-img-box {
        position: relative;
        display: block
    }
    
    .skill-one__right-img {
        border-radius: 7px;
        
    }
    
    .skill-one__right-img img {
        width: 100%;
        border-radius: 7px;
        mix-blend-mode: multiply
    }
    
    .skill-one__video-link {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%)
    }
    
    .skill-one__video-icon {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 70px;
        height: 70px;
        line-height: 70px;
        text-align: center;
        font-size: 17px;
        color: var(--erepair-base);
        background-color: rgba(var(--erepair-white-rgb),.3);
        border-radius: 50%;
        transition: all .5s ease;
        -moz-transition: all .5s ease;
        -webkit-transition: all .5s ease;
        -ms-transition: all .5s ease;
        -o-transition: all .5s ease;
        z-index: 1
    }
    
    .skill-one__video-icon:hover {
        color: var(--erepair-white)
    }
    
    .skill-one__video-icon:before {
        position: absolute;
        top: 10px;
        left: 10px;
        right: 10px;
        bottom: 10px;
        background-color: var(--erepair-white);
        border-radius: 50%;
        content: "";
        transition: all .5s ease;
        -moz-transition: all .5s ease;
        -webkit-transition: all .5s ease;
        -ms-transition: all .5s ease;
        -o-transition: all .5s ease;
        z-index: -1
    }
    
    .skill-one__video-icon:hover:before {
        background-color: var(--erepair-base)
    }
    
    .skill-one__video-icon .ripple:after,.skill-one__video-icon .ripple:before,.skill-one__video-link .ripple {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 75px;
        height: 75px;
        transform: translate(-50%,-50%);
        -ms-box-shadow: 0 0 0 0 rgba(var(--erepair-white-rgb),.3);
        -o-box-shadow: 0 0 0 0 rgba(var(--erepair-white-rgb),.3);
        box-shadow: 0 0 0 0 rgba(var(--erepair-white-rgb),.3);
        animation: ripple 3s infinite;
        border-radius: 50%
    }
    
    .skill-one__video-icon .ripple:before {
        animation-delay: .9s;
        content: "";
        position: absolute
    }
    
    .skill-one__video-icon .ripple:after {
        animation-delay: .6s;
        content: "";
        position: absolute
    }
    
    .skill-one__video-content {
        position: absolute;
        top: 50%;
        left: -98px;
        max-width: 195px;
        background-color: var(--erepair-white);
        box-shadow: 0 8px 29px 0 rgba(0,0,0,.1);
        padding: 52px 24px;
        border-radius: 6px;
        transform: translateY(-50%);
        z-index: 2
    }
    
    .skill-one__video-content p {
        font-size: 20px;
        font-weight: 600;
        line-height: 30px;
        color: var(--erepair-black)
    }




    .feature-section {
        margin-bottom: 50px;
        position: relative;
        overflow: hidden;
        padding: 20px;
      }
      
      .text-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
      }
      
      .image-section img {
        border-radius: 15px;
        box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
        clip-path: polygon(35% 0, 100% 0, 100% 100%, 0% 100%);
        margin-top: 5%;
        width: 100%;
        object-fit: cover;
      }
      .img-2{
        clip-path: polygon(0% 0, 75% 0, 100% 100%, 0% 100%) !important;
      }
      
      /* Custom background elements */
      /*.feature-section::before {*/
      /*  content: "";*/
      /*  position: absolute;*/
      /*  top: -30px;*/
      /*  right: -30px;*/
      /*  width: 150px;*/
      /*  height: 150px;*/
      /*  background: #d0b07e;*/
      /*  border-radius: 50%;*/
      /*  opacity: 0.5;*/
      /*  z-index: -1;*/
      /*}*/
      
      /*.feature-section:nth-child(even)::before {*/
      /*  left: -30px;*/
      /*  right: auto;*/
      /*  background: #d0b07e;*/
      /*}*/
      
     
      .feature-section .btn-primary {
        background-color: #00bfa5;
        border: none;
        font-weight: 500;
        margin-top: 15px;
        padding: 10px 20px;
      }
      
      .feature-section .btn-primary:hover {
        background-color: #009688;
      }
      
      /* Responsive adjustments */
      @media (max-width: 900px) {
        .feature-section {
          text-align: center;
        }
        .feature-section img {
          margin-top: 20px;
        }
        .right h3 {
    padding-left: 4%;
     margin-top: 2%; 
    padding-top: 1%;
    padding-top: 10%;
    padding-bottom: 5%;
}

.conetnt-img {
    width: 110%;
    /* transform: translateY(7px); */
    transform: translateX(-14px);
    border-radius: 21px;
    border: 11px solid #e5d5bd;
}

.content-box-right,.content-box{
    border-radius:2%;
    padding:7% important;
}

.conetnt-img-right {
   
    transform: translateX(-10px)!important;
}


      }
    
    
