body{
    font-family: 'Work Sans', sans-serif;
    margin: 0px;
    padding: 0px;
}
:root {
    --primary: #ff4606;
    --primary-s:#ff4606;
    --primary-d:#e53f05;
    --primary-xd:#cc3804;
    --primary-l: #ff6a37;
    --primary-xl: #ff9069;
    --secondary: white;
    --secondary-s:#f8fafc;
    --secondary-d:#f1f5f9;
    --secondary-xd:#e2e8f0;
}
.my-5{
    margin-top: 5px;
    margin-bottom: 5px;
}
.testsize{
    padding: 20px;
    background-color: black;
    color: white;
    border: 2px solid white;
    position: fixed;
    bottom: 20px;
    left: 20px;
}
.testsize::after{
    content: "fullscreen";
}


#nav-bar{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary);
}
.nav-panel{
    margin: 10px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    transition: 0.3s all ease-in;
}
.nav-panel.mobile{
    display: none;
}
.nav-logo{
    width: 40px;
    height: 40px;
    margin-right: 10px;
}
.nav-logo-2{
    text-decoration: none;
    color: var(--secondary);
    font-size: 24px;
}
.nav-item{
    text-decoration: none;
    margin: 10px;
    color: var(--secondary);
    display: block;
}
.nav-item:hover{
    font-weight: bold;
    border-bottom:2px solid var(--secondary);
}
.nav-item.active{
    color: black;
    font-weight: bold;
    border-bottom: 2px solid black;
}
.btn-gold{
    padding: 10px;
    border-radius: 20px;
    border: none;
    background-color: var(--secondary);
    text-decoration: none;
    color: var(--primary);
    margin-left: 20px;
    /* margin-right: 10px; */
    font-weight: bold;
    transition: 0.3s all ease-in;
}
.btn-gold:hover{
    background-color: var(--secondary-dark);
}
.btn-mobile{
    color: var(--secondary);
    background-color: var(--primary);
    border:2px solid var(--secondary);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    transition: 0.3s all ease-in;
    cursor: pointer;
    /* margin: 10px; */
}
.btn-mobile:hover{
    /* color: var(--secondary-xdark); */
    /* border:2px solid var(--secondary-xdark); */
    transform: scale(1.03);
}
.xcopyright{
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 10px;
    padding-bottom: 10px;
    color: white;
    background-color: black;
}
.xfooter{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background-color: var(--primary);
    color: var(--secondary-s);
}
.xfooter-panel-holder{
    flex-grow:1;
    display:flex;
    justify-content:space-around;
    flex-wrap:wrap;
}
.xfooter-panel{
    width: 300px;
    margin: 10px;
}
.xfooter-link{
    text-decoration: none;
    color: white;
    cursor: pointer;
    display: block;
    margin-top: 7px;
    margin-bottom: 7px;
}

.xfooter-link:hover{
    text-decoration: underline;
    color: black;
    font-weight: bold;
}
.newsletter-form-input{
    padding: 5px;
    padding-left: 10px;
    margin-right: 0px;
    outline: none;
    border-radius: 0px;
    border:none;
    font-size: 16px;
}
.newsletter-form-btn{
    background-color: black;
    color: white;
    border: none;
    border-radius: 0px;
    margin: 0px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 16px;
}
/********************************** Index ***********************************/
.index-section-1{
    width: 100%;
    height: 100vh;
    background: url("../../../content/img/bg/bg-1.jpg")  center;
    background-size: cover;
    /* object-fit: fill; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.index-section-1-div{
    width: 400px;
    height: 180px;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}
.index-section-1-div-header{
    font-size: 64px;
}
.index-section-2{
    width: 100%;
    min-height: 96vh;
    padding-top: 2vh;
    padding-bottom: 2vh;
    border-top: 10px solid var(--primary);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.index-service-holder{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.index-service-panel{
    display: flex;
}
.index-servicex{
    width: 200px;
    height: 300px;
    /* background-color: var(--primary); */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* border: 1px solid var(--primary); */
    margin:20px;
    /* box-shadow: 1px 1px 5px var(--primary); */
}
.index-servicex-img{
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
}
.index-servicex-header{
    margin-top: 0px;
    margin-bottom: 10px;
}
.index-servicex-paraghaph{
    margin-top: 0px;
    margin-bottom: 10px;
    height: 90px;
}
.index-servicex-btn{
    width: 100%;
    border: none;
    text-decoration: none;
    background-color: var(--primary);
    color: white;
    border-radius: 5px;
    font-size: medium;
    padding-top: 10px;
    padding-bottom: 10px;
    cursor: pointer;
}
.index-section-3{
    width: 100%;
    min-height: 80vh;
    background-color: var(--primary);
    color: white;
    padding-top: 2vh;
    padding-bottom: 8vh;
    margin-bottom: 20px;
}
.index-section-3-h1{
    margin-left: 40px;
    margin-bottom: 20px;
    font-size: 36px;
}
.index-section-3-child{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.index-section-3-child-45{
    width: 45%;
    margin: 10px;
}
.index-section-3-child-paragraph{
    font-size: 24px;
}
.index-section-3-btn{
    margin-top: 80px;
    padding: 10px;
    padding-left: 30px;
    padding-right: 30px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
}

.index-our-services-container{
    position: relative;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
 }
 .index-our-services-container-btn{
    width: 48px;
    height:48px;
    z-index: 12;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    font-weight: bold;
    background-color: black;
    color: var(--secondary);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease-in;
 }
 .index-our-services-container-btn.left{
    position: absolute;
    left: 20px;
    top: auto;
    bottom: auto;
 }
 .index-our-services-container-btn.right{
    position: absolute;
    right: 20px;
    top: auto;
    bottom: auto;
 }
 .index-our-services-container-btn:hover.left,.index-our-services-container-btn.right:hover{
    background-color: var(--primary);
    transform: scale(1.05);
 }
 .index-our-services-carousel{
    width: 100%;
    overflow: hidden;
    display: flex;
 }
 .index-our-services-slide{
    min-width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
 }
 .index-our-services-project{
    width: 360px;
    height: 360px;
    margin-left: 20px;
    margin-right: 20px;
    background-color: var(--primary);
 }
 .index-our-services-project-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
 }
 .index-our-services-project-img.topx{
    object-position: top;
 }
 #pc-slide{
    display: block;
    width: 100%;
 }
 #mobile-slide{
    display: none;
 }
 .my-slider{
    width: 100%;
 }
 .index-our-services-slidex{
    width: 100%;
    display: flex;
    justify-content: center;
 }

 .btns-cont{
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .tns-outer{
    position: relative;
  }
  .tns-nav{
    position: absolute;
    bottom: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 10;
  }
  button[data-nav]{
    width: 16px;
    height: 16px;
    background-color: rgba(0, 0, 0, 0.1);
    border: 2px solid var(--primary);
    margin: 5px;
    border-radius: 50%;
    transition: 0.3s all ease-in;
  }
  button[data-nav].tns-nav-active{
    background-color: var(--primary);
  }
  #modal{
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 13;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
 }
 .modal-btn-close{
    border: none;
    background-color: red;
    color: var(--secondary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    padding: 0px;
    position: absolute; 
    right:-20px;
    top:-20px;
    font-size: 32px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
 }

@media only screen and (max-width: 1200px) {
    .testsize{
        background-color: #ea580c;
        color: white;
    }
    .testsize::after{
        content: "Extra Large";
    }
    .index-section-3-child-paragraph{
        font-size: 22px;
     }
     .index-section-3-btn{
        margin-top: 20px;
     }
     .index-our-services-project{
        width: 320px;
        height: 320px;
        margin-left: 10px;
        margin-right: 10px;
     }
     .index-our-services-container-btn.left{
        left:10px;
     }
     .index-our-services-container-btn.right{
        right:10px;
     } 
      
}
@media only screen and (max-width: 1024px) {
    .testsize{
        background-color: #be185d;
        color: white;
    }
    .testsize::after{
        content: "Large";
    }
    .index-section-3{
        min-height: 10vh;
     }
     .index-section-3-child-paragraph{
        font-size: 18px;
     }
     .index-our-services-project{
        width: 240px;
        height: 240px;
     }
     .index-our-services-container-btn{
        width: 36px;
        height:36px;
        font-size: 24px;
     }
}
@media only screen and (max-width: 768px) {
    .testsize{
        background-color: #0891b2;
        color: black;
    }
    .testsize::after{
        content: "Medium";
    }
    .index-section-3-child{
        flex-wrap: wrap;
     }
     .index-section-3-child-45{
        width: 90%;
        margin: 0px;
        margin-top: 10px;
        margin-bottom: 10px;
     }
     .index-section-3-child-paragraph{
        text-align: justify;
     }
     .index-our-services-carousel{
        flex-wrap: wrap;
     }
     .index-our-services-slide{
        margin-top: 10px;
        margin-bottom: 10px;
     }
     .index-our-services-project{
        width: 184px;
        height: 184px;
     }
}
@media only screen and (max-width: 	640px) {
    .testsize{
        background-color: #eab308;
        color: black;
    }
    .testsize::after{
        content: "Small";
    }

    .nav-panel.mobile{
        display: flex;
    }
    .nav-panel.menu{
        width: 100%;
        display: none;
    }
    .xfooter-panel{
        width: 250px;
    }
    .newsletter-form-input{
        width: 57%;
    }
    .index-section-1-div{
        width: 400px;
        height: 180px;
        background-color: var(--primary);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .index-section-1-div-header{
        font-size: 54px;
    }
    .index-our-services-slide{
        margin-top: 0px;
        margin-bottom: 0px;
     }
     .index-our-services-project{
        width: 144px;
        height: 144px;
        margin: 5px;
     }
     .index-our-services-container-btn{
        display: none;
     }
     #pc-slide{
        display: none;
     }
     #mobile-slide{
        display: block;
     }
     .modal-btn-close{
        width: 30px;
        height: 30px;
        font-size: 24px;
        position: absolute; 
        right:-15px;top:-15px;
     }
}
@media only screen and (max-width: 480px) {
    .testsize{
        background-color: #64748b;
        color: white;
    }
    .testsize::after{
        content: "Extra Small";
    }
    .xfooter-panel{
        width: 80%;
    }
    .newsletter-form-input{
        width: 60%;
    }
    .xcopyright{
        font-size: 14px;
    }

    .index-section-1-div{
        width: 300px;
        height: 160px;
        background-color: var(--primary);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .index-section-1-div-header{
        font-size: 48px;
    }
    
    .index-section-2{
        min-height: 80vh;
        padding-top: 2vh;
        padding-bottom: 4vh;
    }
    .index-our-services{
        /* margin-top: 10px; */
        margin-bottom: 10px;
    }
    .index-our-services-paragraph{
        margin: 10px;
    }
    .index-service-panel{
        margin-top: 10px;
    }

    .index-servicex{
        width: 140px;
        /* width: 100px; */
        height: 210px;
        /* background-color: var(--primary); */
        margin:5px;
    }
    .index-servicex-img{
        width: 70px;
        height: 70px;
        margin-bottom: 5px;
    }
    .index-servicex-header{
        margin-bottom: 5px;
        font-size: 16px;
    }
    .index-servicex-paraghaph{
        font-size: 11px;
        margin-bottom: 5px;
        height: 55px;
    }
    .index-our-services-project{
        margin: 2px;
        width: 100px;
        height: 100px;
     }
     
}

