
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppis', sans-serif;
}

/* slider section  */

.carousel{
    width: 100%;
    height: 80vh;
    margin-top: 90px;
    overflow: hidden;
    position: relative;
}
.carousel .list .item{
    width: 120px;
    height: 160px;
    position: absolute;
    top: 68%;
    transform: translate(-70%);
    left: 70%;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background-position: 50% 50%;
    background-size: cover;
    z-index: 100;
    transition: 1s;
}

.carousel .list .item:nth-child(1),
.carousel .list .item:nth-child(2){
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}

.carousel .list .item:nth-child(3){
    left: 67%;
}

.carousel .list .item:nth-child(4){
    left: calc(67% + 160px);
}

.carousel .list .item:nth-child(5){
    left: calc(67% + 320px);
}

.carousel .list .item:nth-child(6){
    left: calc(67% + 560px);
}

.carousel .list .item:nth-child(n+7){
    left: calc(67% + 460px);
    opacity: 0;
}



.item .content{
    position: absolute;
    top: 40%;
    left: 100px;
    transform: translateY(-50%);
    width: 600px; /*400px */
    text-align: left;
    color: #fff;
    display: none;
    padding: 25px;
    background-color: rgba(0, 0, 0, 0.3);
    /* border: 2px solid #f47200fe; */
}

.list .item:nth-child(2) .content{
    display: block;
}

.content .title{
    font-size: 40px;
    text-transform: uppercase;
    color: #f47200fe;
    font-weight: bold;
    line-height: 1;

    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.content .name{
    font-size: 80px;
    text-transform: capitalize;
    color: #fff;
    font-weight: bold;
    line-height: 1;
    text-shadow: 3px 4px 4px rgba(255, 255, 255, 0.8);

    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
}

.content .des{
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    margin-left: 5px;

    opacity: 0;
    animation: animate 1s ease-in-out 0.9s 1 forwards;
}

.content .btn{
    margin-left: 5px;

    opacity: 0;
    animation: animate 1s ease-in-out 1.2s 1 forwards;
}

.content .btn button{
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border: 2px solid #fff;
}

.content .btn button:nth-child(1){
    margin-right: 15px;
    background-color: transparent;
    color: #fff;
    border: 2px solid #f47200fe;
    transition: 0.03s;
}

.content .btn button:nth-child(2){
    background: transparent;
    color: #f47200fe;
    border: 2px solid #fff;
    opacity: 0;
    transition: 0.03s;
}


.content .btn button:nth-child(2):hover{   
    background-color: #f47200fe;
    border: 2px solid #f47200fe;
    color: #fff;
  
}

.content .btn button:nth-child(1):hover{
    background-color: #f47200fe;
    border: 2px solid #f47200fe;
    color: #fff; 
}


@keyframes animate {
    from{
        opacity: 0;
        transform: translate(0. 100px);
        filter: blur(33px);
    }

    to{
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}

/* end carousel  */

/* next prev arrows  */
.arrows{
    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
    

}

.arrows button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f47200fe;
    border: none;
    outline: none;
    font-size: 26px;
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
    cursor: pointer;
    color: #fff;
}

.arrows button:hover{
    background: #fff;
    color: #000;
}

/* time running  */

.carousel .timeRunning{
    position: absolute;
    z-index: 100;
    width: 0%;
    height: 4px;
    background-color: #f47200fe;
    left: 0;
    top: 0;
    animation: runningTime 7s linear 1 forwards;
}

@keyframes runningTime {
    from{width: 0%;}
    to{width: 100%;}
}


/* screen responsiveness */

@media screen and (max-width: 999px){
   
   .list .item .content{
        left: 50px;
    }

    .content .title, .content .name{
        font-size: 40px;
    }

    .content .des{
        font-size: 16px;
    }
}
    
@media screen and (max-width: 690px){
   
     .list .item .content{
        top: 40%;
        left: 30px;
        width: 300px;
    }

    .content .title, .content .name{
        font-size: 40px;
    }

    .content .des{
        padding: 10px 15px;
        font-size: 14px;
    }

    
}
    

.intro-wrapper{
    background: url(../image/intro-imahge.jpg);
    /* background-repeat: no-repeat; */
    /* background: rgba(235, 226, 226, 0.551); */
    padding: 80px;
    background-size: cover;
    
}

.product-wrapper{
    background: black;
    padding: 80px;
    color: #949494;
}

.product-wrapper .media-body h3 a{
    color: #fff;
}

.services-wrapper{
    background: #fff;
    padding: 80px;
}

.experience-wrapper{
    background: black;
    padding: 80px;
    color: #fff;
    line-height: 30px;
    text-align: justify;
}

.trusted-client-wrapper{
    background: #fff;
    padding: 80px;
}

.trusted-client-wrapper .partner-logo{
    display: flex;
    /*justify-content: space-between; */
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    row-gap: 20px;
    colum-gap: 30px;
    text-align: center;
   
}

.trusted-client-wrapper .partner-logo img{
    backkgound: red;
    width: 80%;
    padding: 10px;
 
}



.support-wrapper{
    background: url(../image/contact-support.jpg);
    padding: 80px;
    color: #eee;
    background-repeat: no-repeat;
    background-size: cover;
    margin-bottom: 0px;
}

.ole{
    background-color: #eee;
}

.detail-wrapper{
    background: #fff;
    padding: 80px;
}

.img-detail{
    align-items: center;
    
}

.img-detail img{
    align-items: center;
    width: 500px;
}

.brances ol li{
    display: inline-block;
    justify-content: space-between;
    padding: 20px;
}

.about-img img{
   margin: 30px 0px 0px -100px;
    width: 400px;
    height: 460px;
    border-radius: 30px;
}

.page-header-wrapper{ 
    margin-top: -60px;  
    height: 50vh;
}

.aboutus-hadder{
    padding: 70px 0;
    align-content: center;
    margin: auto;
}
.page-header-wrapper h1{
    margin-top: 150px;
    padding-left: 50px;
    color: #fff;
    font-weight: bold;
}
.page-header-wrapper .aboutus-hadder h1 span{
    color: #b3b2b2;
    font-size: 14px;
}

.page-header-wrapper .aboutus-hadder h1 span a{
    color: #b3b2b2;
}

.about-wrapper{
    background: url(../image/about-wrapper0img.jpg);
    background-size: cover;
}

.contactus-wrapper{
    background: url(../image/contactus-wrapper-img.jpg);
    background-size: cover;
}

.objectives ul li{
    letter-spacing: normal;
    line-height: 30px;
}

.objectives ul li:not(:last-child){
    margin-bottom: 15px;
}

.objectives ul li::before{
    content: "\272A";
    font-size: 18px;
    /* content: "\2399"; */
    margin-right: 20px;
}

.classic-space{
    text-align: justify; 
    line-height: 30px;
}

.media{
    display: flex;
    margin-top: 2rem;
    justify-content: center;
    gap: 1rem;
    flex-wrap: nowrap;
}

.media .media-left span img{
    width: 80px;
    border-radius: 10px;
    padding: 10px;
    background-color: #eeeded;
}

.media .media-left span i{
    font-size: 40px;
    background-color: #eeeded;
    padding: 15px;
    border-radius: 50%;
    color: #f47200fe;
}



.img_deg{
    float: right;
    width: 300px;
    height: 300px;
    border-radius: 20px;
}

.clear{
    position: absolute;
    width: 80%;
    left: 10%;
    top: 10%;
    background-color: #ffdfcf;
    padding: 30px;
    color: rgb(115, 0, 0);
    place-items : center;

}

.clear p{
    line-height: 35px;
    font-size: 25px;
}

html{
    scroll-behavior: smooth;
}

#progress{
    position: fixed;
    bottom: 20px;
    right: 10px;
    height: 70px;
    width: 70px;
    display: none;
    place-items: center;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

#progress-value{
    display: block; 
    height: calc(100% - 15px);
    width: calc(100% - 15px);
    background-color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 35px;
    color: #f25100;
}

.sue-main-btn {
    color: white;
    font-size: var(--small-font-size);
    font-weight: 500;
    transition: .3s;
}

.sue-main-btn:hover {
    color: white;
}

.fill-btn{
    background: var(--first-color);
    border: 2px solid var(--first-colo);
    border-radius: 5px;
}

.fill-btn {
    color: white;
}

.contact-form-body{
    position: relative;
    background: none;
    width: 100%;
    padding: 50px;
    margin-top: 30px;
    /box-shadow: 0 0px 0px 0 var(--first-color), 0 0px 2px 0 var(--first-color);
    border-radius: 35px;
}

.contact-form-body h2{
    color: var(--first-color);
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.contact-form-body h2 span{
    color: var(--primary-color);
}

.contact-form-body p{
    font-size: var(--tiny-font-size);
    margin-bottom: 45px;
}

.contact-form-body form{
    display: flex;
    flex-direction: column;
    row-gap: 15px;
}

.contact-form-body form .input-group input,
.contact-form-body form .input-group textarea{
    color: var(--first-color);
    font-size: var(--small-font-size);
    background: hsl(var(--hue) 54%  74% / .1 );
    width: 100%;
    border: 2px solid var(--first-color);
    outline: none;
    padding: 17px 20px;
    border-radius: 10px;
}

.contact-form-body form .input-group textarea{
    height: 175px;
    resize: none;
}

.contact-form-body form .send-message{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.contact-form-body form .input-group button{
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
    width: 200px;
    padding: 16px 30px;
    margin-top: 10px;
    transition: .3s;
}

.contact-form-alert span{
    color: var(--first-color);
    font-size: var(--tiny-font-size);
    font-weight: var(--font-regular);
}

.contact-form-alert i{
    color: var(--first-color);
}