*{
    padding: none;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 12px;
    box-sizing: border-box;
    scroll-behavior: smooth;
    outline: none;
    text-decoration: none;
}
body{
    background-color: var(--primary-color);
}
#home-page-main-contents{
    position: relative;
    /* width: 100%; */
    height: 100%;
    background-image: url(../assets/images/home-page-banner.png);
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}
#home-page-main-contents>#page-intro-section{
    position: relative;
    width: 100%;
    min-height: 100vh;
}
#page-intro-section::before{
    position: absolute;
    z-index: 25;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    background-color: rgba(0,0,0,0.2);
}
 .service-slides-container{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow-x: hidden;
 }
 .service-slides-container>.service-slides{
    position: relative;
    width: 100%;
    height: 100%;
    /* width: 500%; */
    display: flex;
    align-items: center;
    justify-content: center;
 }
 .service-slides>.service-slide{
    position: relative;
    width: 100%;
    height:100%;
    display: none;
    transition: all 1s linear;
 }
 .service-slide.reveal{
    display: block;
 }

 .defaultSlideItem>.defaultSlideableItem{
    opacity: 0;
    transform: translateX(400px);
    backdrop-filter: blur(40px);
    animation: animateDefaultServiceSlide 2s linear;
    animation-fill-mode: forwards;
    transition: all 2s linear;
 }
 @keyframes animateDefaultServiceSlide {
    0%{
        opacity: 0;
        transform: translateX(400px);
        backdrop-filter: blur(40px);
    }
    100%{
        opacity: 1;
        transform: translateX(-50%);
        backdrop-filter: blur(0px);
    }
 }

 .slideableItem>.slideItem{
    opacity: 0;
    transform: translateX(400px);
    backdrop-filter: blur(40px);
    animation: animateServiceSlide 2s linear;
    animation-fill-mode: forwards;
    transition: all 2s linear;
 }
 /* #slide-item1{
    animation-delay: 3000ms;
 }
 #slide-item2{
    animation-delay: 6000ms;
 }
 #slide-item3{
    animation-delay: 9000ms;
 }
 #slide-item4{
    animation-delay: 12000ms;
 }
 #slide-item5{
    animation-delay: 15000ms;
 } */
 @keyframes animateServiceSlide {
    0%{
        opacity: 0;
        transform: translateX(400px);
        backdrop-filter: blur(40px);
    }
    100%{
        opacity: 1;
        transform: translateX(-50%);
        backdrop-filter: blur(0px);
    }
 }
 .service-slide>.slide-img{
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
 }
 .service-slide>.slide-details-wrapper{
    position: absolute;
    z-index: 30;
    top: 30%;
    left: 50%;
    transform: translate(-30%, -50%);
 }
 .slide-details-wrapper>.slide-details-heading{
    position: relative;
    max-width: 80%;
    line-height: 1.2;
    font-size: 2.5rem;
    text-transform: capitalize;
    /* color: var(--primary-color); */
    background-image: linear-gradient(to right, var(--primary-color) 5%, var(--secondary-color) 70%);
    background-clip: text;
    color: transparent;
    font-weight: bold;
    margin-bottom: 1rem;
    font-weight: bold;
    border-bottom: 4px solid var(--primary-color);
    border-right: 4px solid var(--primary-color);
    padding-right: 0.2rem;
    padding-bottom: 0.7rem;
    border-radius: 10px;
 }
 .slide-details-wrapper>.slide-details-text, .slide-details-wrapper>.slide-details-text.slideableItem{
    position: relative;
    max-width: 85%;
    text-align: justify;
    line-height: 1.2;
    font-size: 1.3rem;
    color: #f8f8f8;
 }

 .contactus-button-wrapper{
    position: relative;
    width: 100%;
    margin-top: 2rem;
 }
 .contactus-button-wrapper>.contactus-button{
    position: relative;
    outline: none;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 1rem 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border-right: 6px solid var(--secondary-color);
    border-bottom: 6px solid var(--secondary-color);
    gap: 0.5rem;
    transition: all 0.5s ease-in;
 }
 .contactus-button-wrapper>.contactus-button>a{
    position: relative;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    text-transform: capitalize;
    color: var(--secondary-color);
 }
 .contactus-button-wrapper>.contactus-button:hover{
    border: 3px solid var(--color-white);
    background-color: transparent;
 }
 .contactus-button-wrapper>.contactus-button:hover>a{
    color: var(--color-white);
 }
@media(max-width: 570px){
   .slide-details-wrapper>.slide-details-heading{
      font-size: 2rem;
   }
   .slide-details-wrapper>.slide-details-text, .slide-details-wrapper>.slide-details-text.slideableItem{
      max-width: 100%;
      font-size: 1.1rem;
   }
   .service-slide>.slide-details-wrapper{
      top: 20%;
      left: 43%;
      transform: translate(-20%, -43%);
   }
}

@media(max-width: 400px){
   .slide-details-wrapper>.slide-details-heading{
      font-size: 1.7rem;
   }
   .slide-details-wrapper>.slide-details-text, .slide-details-wrapper>.slide-details-text.slideableItem{
      width: 100%;
      font-size: 1rem;
   }

   .service-slide>.slide-details-wrapper{
      top: 20%;
      transform: translate(-20%, -50%);
      
   }
   .contactus-button-wrapper>.contactus-button{
      border-right: 3px solid var(--secondary-color);
      border-bottom: 3px solid var(--secondary-color);
      padding: 0.7rem 1rem;
   }

}