.bs-icon {
  --bs-icon-size: .75rem;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-size: var(--bs-icon-size);
  width: calc(var(--bs-icon-size) * 2);
  height: calc(var(--bs-icon-size) * 2);
  color: var(--bs-primary);
}

.bs-icon-xs {
  --bs-icon-size: 1rem;
  width: calc(var(--bs-icon-size) * 1.5);
  height: calc(var(--bs-icon-size) * 1.5);
}

.bs-icon-sm {
  --bs-icon-size: 1rem;
}

.bs-icon-md {
  --bs-icon-size: 1.5rem;
}

.bs-icon-lg {
  --bs-icon-size: 2rem;
}

.bs-icon-xl {
  --bs-icon-size: 2.5rem;
}

.bs-icon.bs-icon-primary {
  color: var(--bs-white);
  background: var(--bs-primary);
}

.bs-icon.bs-icon-primary-light {
  color: var(--bs-primary);
  background: rgba(var(--bs-primary-rgb), .2);
}

.bs-icon.bs-icon-semi-white {
  color: var(--bs-primary);
  background: rgba(255, 255, 255, .5);
}

.bs-icon.bs-icon-rounded {
  border-radius: .5rem;
}

.bs-icon.bs-icon-circle {
  border-radius: 50%;
}

.fit-cover {
  object-fit: cover;
}

body {
  background: #FFFFFF;
}
body input + label {
  position: fixed;
  top: 40px;
  right: 40px;
  height: 20px;
  width: 15px;
  z-index: 5;
}
body input + label span {
  position: absolute;
  width: 100%;
  height: 2px;
  top: 50%;
  margin-top: -1px;
  left: 0;
  display: block;
  background: #020304;
  transition: 0.5s;
}
body input + label span:first-child {
  top: 3px;
}
body input + label span:last-child {
  top: 16px;
}
body label:hover {
  cursor: pointer;
}
body input:checked + label span {
  opacity: 0;
  top: 50%;
}
body input:checked + label span:first-child {
  opacity: 1;
  transform: rotate(405deg);
}
body input:checked + label span:last-child {
  opacity: 1;
  transform: rotate(-405deg);
}
body input ~ nav {
  background: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 3;
  transition: 0.5s;
  transition-delay: 0.5s;
  overflow: hidden;
}
body input ~ nav > ul {
  text-align: center;
  position: absolute;
  top: 25%;
  left: 20%;
  right: 20%;
}
body input ~ nav > ul > li {
  opacity: 0;
  transition: 0.5s;
  transition-delay: 0s;
}
body input ~ nav > ul > li > a {
  text-decoration: none;
  text-transform: uppercase;
  color: #020304;
  font-weight: 700;
  font-family: sans-serif;
  display: block;
  padding: 20px;
}
body input:checked ~ nav {
  height: 100%;
  transition-delay: 0s;
}
body input:checked ~ nav > ul > li {
  opacity: 1;
  transition-delay: 0.5s;
}/* Works on Firefox */

#container-scroll > .row {
  scrollbar-width: thin;
  scrollbar-color: white black;
  border-radius: 6px;
}

/* Works on Chrome, Edge, and Safari */

#container-scroll > .row::-webkit-scrollbar {
  width: 11px;
  height: 6px;
}

#container-scroll > .row::-webkit-scrollbar-track {
  background: #000;
}

#container-scroll > .row::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 0px;
  border: 1px solid #000;
}

body {
  padding: 0px;
  margin: 0px;
  font-family: 'Roboto';
  font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Condensed';
  font-weight: 300;
  letter-spacing: -1px;
}

nav > ul {
  list-style-type: none;
  font-size: 2.1em;
}

@media (max-width: 768px) {
  nav > ul {
    list-style-type: none;
    font-size: 1.2em;
    left: 0%!important;
    right: 0%!important;
  }
}

@media (max-width: 768px) {
  nav > ul > li > a {
    padding: 20px 0px!important;
  }
}

.hero-heading {
  font-size: 60px;
}

@media (max-width: 576px) {
  .hero-heading {
    font-size: 45px;
  }
}



.carousel-inner > .carousel-item {
  -webkit-transition: -webkit-transform 21s linear !important;
  -o-transition: -o-transform 21s linear !important;
  transition: transform 21s linear !important;
}

@media (max-width: 768px) {
  #services h1 {
    font-size: 21px!important;
  }
}

