@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

@font-face {
    font-family: 'scope';
    src: url("Scope-Bold.1d03a5e2e74c.woff") format('woff');
    font-weight: bold;
    font-style: normal;
}

/* Apply Scope Bold font to all heading elements */
h1, h2, h3, h4, h5, h6 {
    font-family:  sans-serif;
}
.scopeFont {
    font-family:  sans-serif;
}

/* sans-serif  */
.sans-serif {
    font-family: 'sans-serif', sans-serif;
}

.lato-thin {
    font-family: "Lato", serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .lato-light {
    font-family: "Lato", serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .lato-regular {
    font-family: "Lato", serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .lato-bold {
    font-family: "Lato", serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .lato-black {
    font-family: "Lato", serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .lato-thin-italic {
    font-family: "Lato", serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .lato-light-italic {
    font-family: "Lato", serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .lato-regular-italic {
    font-family: "Lato", serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .lato-bold-italic {
    font-family: "Lato", serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .lato-black-italic {
    font-family: "Lato", serif;
    font-weight: 900;
    font-style: italic;
  }
  

footer {
  z-index: 1050;
}



#loading-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1050;
  opacity: 0.8;
}
.spinner {
 --gap: 5px;
 --clr: #d62d20;
 --height: 23px;
 width: 100px;
 height: 100px;
 display: flex;
 align-items: center;
 justify-content: center;
 gap: var(--gap);
}

.spinner span {
 background: var(--clr);
 width: 6px;
 height: var(--height);
 animation: grow 1s ease-in-out infinite;
}

.spinner span:nth-child(2) {
 animation: grow 1s ease-in-out 0.15s infinite;
}

.spinner span:nth-child(3) {
 animation: grow 1s ease-in-out 0.3s infinite;
}

.spinner span:nth-child(4) {
 animation: grow 1s ease-in-out 0.475s infinite;
}

@keyframes grow {
 0%,100% {
  transform: scaleY(1);
 }

 50% {
  transform: scaleY(1.8);
 }
}
 
#ul_profileDropdown{
  min-width: 250px;
}


/* service page  */


.description {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(1.2em * 4); /* Assuming 1.2em line height for 3 lines */
  line-height: 1.2em;
}
.shadow-primary {
  box-shadow: 0 4px 8px rgba(13, 110, 253, 0.3); 
}

.shadow-success {
  box-shadow: 0 4px 8px rgba(25, 135, 84, 0.3); 
}

.shadow-danger {
  box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3); 
}

.cursor-pointer{
  cursor: pointer;
}


.project_submit_input {
  border : none;
  background-color: transparent;
}

.img_service{
  height: 100px;
}


.img_project{
  max-height:100px;
  min-height:100px;
}