* {
    font-family: 'Radio Canada', sans-serif;
  }

  p {
  font-family: 'Inter', sans-serif;
  }

  .title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
  }

/* Sliders */
.slider-section .carousel-caption {
    background: #0a0a0a87;
    top: 15%;
    left: 9%;
    /* transform: translate(-50% -50%); */
    text-align: left;
    width: fit-content;
    height: fit-content;
    padding: 2px;
  }
  
  .slider-section .carousel-caption h5, .slider-section .carousel-caption p {
    padding: 0 10px;
  }
  
  .carousel .carousel-item {
    max-height: 75vh;
  }

  /* Header */

.top-bar {
    background-color: #E9B824;
}
 
.bottom-bar {
    background-color: #fff;
}

.navbar .navbar-nav .nav-link:hover {
  background-color: #E9B824;
  color: #ffffff !important;
  transition: all 0.5s ease-in-out;
  border-radius: 5px;
}

.container #active-nav-menu {
  background-color: #E9B824;
  border-radius: 5px;
}

.container #active-nav-menu a{
  color: #ffffff !important;
}

.container .navbar-nav .nav-item {
    margin-right: 10px;
}

.custom-button {
  transition: 0.5s ease-in-out;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }

.custom-button:hover {
    background-color: #E9B824 !important;
    border-color: #E9B824 !important;
    /* border: none; */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  }


/* Mobile Header */

.mobile-header {
    background-color: #219C90;
}

.custom-toggler.navbar-toggler {
  background: #fff;
  /* border-color: #fff; */
}

/* Sliders */

.sliderContent{
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

/* About Section */

.about-section {
    padding: 70px 0;
    /* box-shadow: inset 0 0 0 2000px rgba(252, 251, 252, 0.3); */
  }
  
  .about-section .about-left {
    color: #000;
    padding: 20px 0 20px 15px;
    border-radius: 5px;
  }
  
  .about-section .about-left .title {
    color: #E9B824;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
  }
  
  .sepretor {
    width: 70px;
    height: 3px;
    background-color: #E9B824;
    margin-bottom: 1.3rem;
  }
  
  .about-section p {
    font-family: 'Inter', sans-serif;
    width: 95%;
  }
  
  .about-section .about-year {
    height: 100%;
  }
  
  .about-section .about-year .number-title {
    color: #fff;
    font-size: 2rem;
    text-align: center;
  }
  
  .about-section .about-year .title {
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
  }
  
  .about-left .list-check {
    list-style: none;
    font-family: 'Inter', sans-serif;
    padding-left: .5rem;
    padding-bottom: 1.3rem;
  }
  
  .about-left .list-check i {
    color: #fff;
    font-size: 20px;
  }
   
  .about-section .custom-button {
    transition: 0.5s ease-in-out;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }
  
  .about-section .custom-button:hover {
      background-color: #219C90;
      border: none;
      box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }
  
  .about-section .about-img figure {
    background-color: transparent;
  }
  
  .about-section .container figure {
    height: 100%;
  }
  
  .about-section .container .about-img {
      transform: scale(1);
  }
  
  .about-section .container .about-img img {
      transition: .8s ease-in-out;
  }
  
  /* .about-section .container .about-img:hover img {
      transform: scale(1.02);
  } */


  /* Solutions Section */

.solutions-section {
    background-color: #7b98ac;
    padding: 70px 0px; 
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
  }
  
  .solutions-section .sepretor {
    width: 250px;
    height: 3px;
    background-color: #E9B824;
    margin-bottom: 1.3rem;
  }
  
  .solutions-section .container  {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
      overflow: hidden;
  }

  .solutions-section .container .card{
    overflow: hidden;
    cursor: pointer;
  }
  

.solutions-section .container .card .card-img {
    height: 400px;
    object-fit: cover;
    transition: all 0.5s ease-in-out;
    position: relative;

}

.solutions-section .container .card .card-img::before{
    content: "";
    position: absolute;
    left: 0; 
    right: 0;
    top: 0; 
    bottom: 0;
    background: red !important;
    width: 550px ;
    height: 550px;
}

.solutions-section .container .card .card-title{
    padding-top: 20px;
    font-size: 30px;
}

.solutions-section .container .card .card-text {
    font-size: 20px;
}

.solutions-section .container .card:hover .card-img {
    transform: scale(1.07);
}

/* Footer Section */

.site-footer .footer-top {
  background-color: #0D6EFD;
  padding: 50px 0;
  color: #fff;
}

.footer-top .footer-about{
  padding-right: 20px;
}

.footer-top .footer-title {
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-top .footer-links {
  margin-left: 25px;
}

.footer-top .footer-links ul {
  padding-left: 0;
  list-style: none;
}

.footer-links ul li {
  padding-bottom: 5px;
}

.footer-links ul li:hover a, .footer-links ul li:hover i {
  color: #E9B824;
}

.footer-links ul li i{
  font-size: 18px ;
  margin-right: 10px;
}

.footer-top .footer-links li a{
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  color: #fff;
}

.footer-top .footer-contact {
  margin-left: 25px;
}

.footer-top .footer-links .footer-title {
  align-self: self-start;
}

.footer-top .footer-contact ul {
  padding-left: 0;
  list-style: none;
}

.footer-contact ul li {
  display: flex;
  gap: 8px;
  cursor: pointer;
}

.footer-contact .round-icon {
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .3s ease-in-out;
}

.footer-contact .round-icon:hover {
  background-color: #E9B824;
}

.footer-contact .round-icon i {
  color: #E9B824;
  font-size: 18px;
}

.footer-contact .round-icon i:hover {
  color: #fff;
}

.footer-top .footer-contact li {
  color: #fff;
  font-family: 'Inter', sans-serif;
}

.footer-bottom {
  background-color: #E9B824;
  padding: 10px 0;
}

.footer-bottom .copyright {
  color: #fff;
}

.footer-contact-link{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Contact */
.contact{
    padding: 70px 0px; 
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;
}

.contact .contact-head .sepretor {
  width: 150px;
  height: 3px;
  background-color: #E9B824;
  margin-bottom: 1.3rem;
}

.contact .contact-info{
  padding: 30px 15px;
  width: 100%;
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #E9B824;
}

.contact .contact-info .phone-icon, .contact .email-icon, .contact .address-icon{
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .contact-info .phone-icon i, .contact .email-icon, .contact .address-icon {
  color: #E9B824;
  font-size: 20px;
}

.contact .contact-info:hover .phone-icon, .contact .contact-info:hover .email-icon, .contact .contact-info:hover .address-icon{
  background-color: #E9B824;
}
.contact .contact-info:hover i{
  color: #fff;
}

/* Media Query */

@media screen and (max-width:758px) {

  /* Header */
  .navbar .navbar-nav .nav-link:hover {
    padding: 10px 10px;
    color: #fff;
    background-color: #E9B824 ;
    transition: all 0.5s ease-in-out;
    border-radius: 5px;
  }
  .container #active-nav-menu {
    background-color: #E9B824 ;
    border-radius: 5px;
  }

  /* Slider */
  .carousel .carousel-item {
    min-height: 400px;
  }

  .carousel .carousel-item img {
    height: 400px;
    object-fit: cover;
  }

  /* Footer */
  .footer-top .footer-links{
    margin-left: 0;
  }
  .footer-top .footer-contact {
    margin-left: 0;
  }

  /* Why Choose Us */
  .advantage-list li {
    width: 100%;
  }
  .advantage-list .top-list {
    margin-bottom: 0;
  }
  .advantage-list li {
    margin-bottom: 2rem;
  }

  /* projects */

  .solutions-section .container, .contact {
    flex-direction: column;
}

/* about */
.about-year-container{
  margin-bottom: 20px;
}

.about-section .about-year {
  height: 100%;
  padding: 10px 0;
}

.contact-container{
  flex-direction: column;
}

}
