@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Poppins:wght@400;600;700&display=swap');
/*Orange: #F96419
  Gray  : #676767
  Other : #019898
  */
html {
    margin: 0;
    padding: 0;
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    
}

h1{
  font-size: 55px;
    font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #019898;
}
h2{
  font-size: 30px;
    font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #019898;
}

h4,h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #019898;
}

.jumbotron {
    background-image: url('/assets/patterns/Grey.png');
    height: 200px;
    margin-top: 20px;
}

.strip_blue {
  background-image: url('/assets/patterns/Pink\ strip-03.png');
  background-size: 200px, cover;
  background-repeat: repeat-x;
  padding: 0;
}

.strip_pink {
  background-image: url('/assets/patterns/Pink\ strip-03.png');
  background-size: 200px, cover;
  background-repeat: repeat-x;
  padding: 0;
}

.strip_orange {
  background-image: url('/assets/patterns/Orange\ Strip.png');
  background-size: 200px, cover;
  background-repeat: repeat-x;
  padding: 0;

}

nav ,.footer1{
    background-color: #676767 !important;
}

.nav-link,.me-4 {
    color: #fff !important;
    transition: .3s !important;
}

.nav-link:hover,
nav a.active {
    color: #F96419 !important;
}

/*Contact form*/
.contact1{
  justify-content: center;
}
.btn-primary{
  background-color: #F17125 !important;
  box-shadow: none;
}

.form-control {
  height: 36px;
  background: #fff;
  color: rgba(0,0,0,0.8);
  font-size: 14px;
  border-radius: 1px;
  box-shadow: none!important;
  border: 1px solid rgba(0,0,0,0.1);
}

.dff1 {
  color: #019898;
}

ul {
  list-style: none;
}
.contactForm .form-control {
  border: none;
  border-bottom: 1px solid black;
}

.required .form-label:after {
  color: #d00;
  content: "*";
}

.form-label {
  color: #019898; 
}

.image {
  display: block;
  width: 100%;
}

/*Contact form*/
/*Footer*/
.fab{
  color: #fff!important;
}

/*Media*/
@media screen and (min-width: 576px){
    .jumbotron{
      height: 300px;
    }
    .main_logo{
      height: 200px;
    }
  }

@media (min-width: 768px) {
    .carousel-item {
      margin-right: 1px;      
      display: block;
    }
    .carousel-inner {
      display: flex;
    }
  }
.card .img-wrapper {
      max-width: 100%;
      height: 13em;
      display: flex;
      justify-content: center;
      align-items: center;
  }
.card img {
      max-height: 100%;
  }
  @media (max-width: 767px) {
    .card .img-wrapper {
      height: 17em;
    }
  }

 /* carousel */
 .slider-wrapper {
  position: relative;
}

.slider-wrapper .slide-button {
  position: absolute;
  top: 50%;
  outline: none;
  border: none;
  height: 50px;
  width: 50px;
  z-index: 5;
  color: #fff;
  display: flex;
  cursor: pointer;
  font-size: 2.2rem;
  background: #F96419;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}

.slider-wrapper .slide-button:hover {
  background: #F96419;
  opacity: 0.6;
  transition: 0.3s;
}

.slider-wrapper .slide-button#prev-slide {
  left: -25px;
  display: none;
}

.slider-wrapper .slide-button#next-slide {
  right: -25px;
}

.slider-wrapper .image-list {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 15px;
  font-size: 0;
  list-style: none;
  margin-bottom: 30px;
  overflow-x: auto;
  scrollbar-width: none;
}

.slider-wrapper .image-list::-webkit-scrollbar {
  display: none;
}

.slider-wrapper .image-list .image-item {
  width: 200px;
  height: 250px;
  object-fit: cover;
}

.container .slider-scrollbar {
  height: 24px;
  width: 100%;
  display: flex;
  align-items: center;
}

.slider-scrollbar .scrollbar-track {
  background: #ccc;
  width: 100%;
  height: 2px;
  display: flex;
  align-items: center;
  border-radius: 4px;
  position: relative;
}

.slider-scrollbar:hover .scrollbar-track {
  height: 4px;
}

.slider-scrollbar .scrollbar-thumb {
  position: absolute;
  background: #F96419;
  opacity: 0.6;
  top: 0;
  bottom: 0;
  width: 40%;
  height: 100%;
  cursor: grab;
  border-radius: inherit;
  transition: 0.3s;
}

.slider-scrollbar .scrollbar-thumb:active {
  cursor: grabbing;
  height: 8px;
  top: -2px;
}

.slider-scrollbar .scrollbar-thumb::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  bottom: -10px;
}

/* Styles for mobile and tablets */
@media only screen and (max-width: 1023px) {
  .slider-wrapper .slide-button {
    display: none !important;
  }

  .slider-wrapper .image-list {
    gap: 10px;
    margin-bottom: 15px;
    scroll-snap-type: x mandatory;
  }

  .slider-wrapper .image-list .image-item {
    width: 200px;
    height: 300px;
  }

  .slider-scrollbar .scrollbar-thumb {
    width: 20%;
  }
}
