
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #575757; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #2e3338; 
  border-radius: 10px;
  transition: .25s all ease-in-out;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #343a41; 
}



@keyframes rotate-360 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes rotate360 {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes move-to-left {
  0% {
    transform: translateX(55%) scaleX(1);
    opacity: 0;
  }
  25% {
    transform: translateX(40%) scaleX(0.5);
    opacity: 1;
  }
  50% {
    transform: translateX(55%);
    opacity: 1;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes move-to-left-2 {
  0% {
    transform: translateX(400px);
    opacity: 0;
  }
  50% {
    transform: translateX(400px);
    opacity: 1;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes move-to-left-3 {
  0% {
    transform: translateX(300px);
    opacity: 0;
  }
  50% {
    transform: translateX(300px);
    opacity: 1;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
.animation-pause {
  animation: pause;
}

.preloader-hidden {
  visibility: hidden;
}

.preloader {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: #212529;
  opacity: 1;
  transition: all 0.25s ease-in-out;
}
.preloader .preloader-logo {
  width: 500px;
  height: auto;
  overflow: hidden;
  /* animation: move-to-left-2 2s infinite; */
  animation: move-to-left-2 2s;
}
.preloader .preloader-logo img {
  max-width: 100%;
  /* animation: rotate360 2s infinite; */
  animation: rotate-360 2s;
  /* animation-dela y: 2s; */
}
.preloader .preloader-text {
  /* display: none; */
  font-size: 80px;
  color: #808080;
  margin-left: 50px;
  /* animation: move-to-left 2s infinite; */
  animation: move-to-left 2s;
}

@media screen and (max-width: 1400px) {
  .preloader .preloader-logo {
    animation: move-to-left-3 2s;
  }
}
@media screen and (max-width: 1100px) {
  .preloader {
    flex-wrap: wrap;
  }
  .preloader .preloader-logo {
    animation: none;
  }
  .preloader .preloader-logo img {
    max-width: 100%;
    /* animation: rotate360 2s infinite; */
    animation: rotate360 2s;
    /* animation-dela y: 2s; */
  }
  .preloader .preloader-text {
    margin-left: 0;
    text-align: center;
  }
}
@media screen and (max-width: 700px) {
  .preloader .preloader-text {
    font-size: 70px;
  }
}
@media screen and (max-width: 600px) {
  .preloader .preloader-text {
    font-size: 60px;
  }
}
@media screen and (max-width: 501px) {
  .preloader .preloader-logo {
    width: 95%;
  }
  .preloader .preloader-text {
    font-size: 50px;
  }
}
@media screen and (max-width: 425px) {
  .preloader .preloader-text {
    font-size: 40px;
    margin-top: -100px;
  }
}
@media screen and (max-width: 345px) {
  .preloader .preloader-text {
    font-size: 30px;
    margin-top: -300px;
  }
}
.bg-dark p, .bg-dark span, .bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark h5, .bg-dark h6, .bg-dark label, .bg-dark div {
  color: #fff;
}

.bg-dark a {
  color: #ddd;
}

.bg-dark a:hover, .bg-dark a.active, .bg-dark a:focus {
  color: #fff !important;
}

.bg-dark .navbar a.nav-link {
  position: relative;
}

.bg-dark .navbar a.nav-link::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% - 7px);
  width: 0;
  height: 1px;
  background-color: #ccc;
  transition: all ease-in-out 0.25s;
}

.bg-dark .navbar a.nav-link:hover::before, .bg-dark .navbar a.nav-link.active::before {
  width: 55%;
  background-color: #fff;
}

.slider .slider-inner {
  position: relative;
}
.slider .slider-inner .slider-transition {
  transition: all ease-in-out 0.25s;
}
.slider .slider-inner .slider-transition-stop {
  transition: none !important;
}
.slider .slider-inner .slider-box {
  cursor: grab;
}
.slider .slider-inner .slider-box:active {
  cursor: grabbing;
}
.slider .slider-inner .slider-box .slider-item {
  height: 500px;
  border: 1px solid rgba(221, 221, 221, 0.233);
  overflow: hidden;
  position: relative;
}
.slider .slider-inner .slider-box .slider-item .content-box {
  width: 50%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  transition: left 0.5s ease-in-out;
}
.slider .slider-inner .slider-box .slider-item .img-box img {
  height: 100%;
}
.slider .slider-inner .slider-change-page {
  transition: opacity ease-in-out 0.25s;
}
.slider .slider-inner .slider-change-page .slider-pre, .slider .slider-inner .slider-change-page .slider-next {
  position: absolute;
  top: 1px;
  height: 498px;
  width: 40px;
  background-color: rgba(14, 14, 14, 0.363);
  transition: all ease-in-out 0.5s;
  border: 1px solid rgba(221, 221, 221, 0.233);
}
.slider .slider-inner .slider-change-page .slider-pre i, .slider .slider-inner .slider-change-page .slider-next i {
  color: #ddd;
  font-size: 25px;
}
.slider .slider-inner .slider-change-page .slider-pre {
  left: -40px;
}
.slider .slider-inner .slider-change-page .slider-next {
  right: -40px;
}
.slider .slider-inner:hover .slider-change-page {
  opacity: 1;
}
.slider .slider-inner:hover .slider-change-page .slider-pre {
  left: 1px;
}
.slider .slider-inner:hover .slider-change-page .slider-pre:hover {
  background-color: rgba(14, 14, 14, 0.103);
}
.slider .slider-inner:hover .slider-change-page .slider-next {
  right: 1px;
}
.slider .slider-inner:hover .slider-change-page .slider-next:hover {
  background-color: rgba(14, 14, 14, 0.103);
}
.slider .slider-inner:hover .slider-box .content-box {
  left: 40px;
}
.slider .slider-inner .slider-nav {
  margin-top: 10px;
}
.slider .slider-inner .slider-nav button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 5px;
  background-color: rgba(221, 221, 221, 0.233);
  border: 1px solid rgba(221, 221, 221, 0.233);
}
.slider .slider-inner .slider-nav button.active, .slider .slider-inner .slider-nav button:hover {
  background-color: rgba(221, 221, 221, 0.233);
  border: 1px solid #fff;
}

@media screen and (max-width: 1199px) {
  .slider .slider-inner .slider-box .slider-item {
    height: 450px;
  }
  .slider .slider-inner .slider-change-page .slider-pre, .slider .slider-inner .slider-change-page .slider-next {
    height: 450px;
  }
}
@media screen and (max-width: 991px) {
  .slider .slider-inner .slider-box .slider-item {
    height: 350px;
  }
  .slider .slider-inner .slider-box .slider-item .content-box {
    width: 75%;
  }
  .slider .slider-inner .slider-change-page .slider-pre, .slider .slider-inner .slider-change-page .slider-next {
    width: 30px;
    height: 350px;
  }
  .slider .slider-inner .slider-change-page .slider-pre i, .slider .slider-inner .slider-change-page .slider-next i {
    font-size: 20px;
  }
  .slider:hover .slider-box .slider-item .content-box {
    left: 30px;
  }
}
@media screen and (max-width: 767px) {
  div.section-content {
    font-size: 12px;
    line-height: 15px;
  }
  div h1 {
    font-size: 24px;
  }
  div h2 {
    font-size: 18px;
  }
  div h3 {
    font-size: 14.04px;
  }
  div h4 {
    font-size: 12px;
  }
  div h5 {
    font-size: 9.96px;
  }
  div h6 {
    font-size: 8.04px;
  }
  .slider .slider-inner .slider-box .slider-item {
    height: 250px;
  }
  .slider .slider-inner .slider-box .slider-item .content-box {
    width: 100%;
  }
  .slider .slider-inner .slider-change-page {
    display: none;
  }
  .slider .slider-inner:hover .slider-box .slider-item .content-box {
    left: 0px;
  }
}
.about-us .section-img img {
  max-width: 100%;
}

* {
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none !important;
}

p {
  margin: 0;
  margin-bottom: 0.5rem !important;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.divider-col::before {
  content: "";
  display: block;
  width: 3px;
  height: 95%;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #ddd;
  border-radius: 2px;
}
.divider-col.left-0::before {
  left: 0;
  right: unset;
  margin-right: 10px;
}

.d-flex-center {
  justify-content: center;
  align-items: center;
}

.section-title {
  font-size: 20px;
}

.section-content {
  font-size: 14px;
}

.overlay {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(14, 14, 14, 0.363);
  position: absolute;
  z-index: 1;
}

.content {
  z-index: 1000;
}

@media screen and (min-width: 1400px) {
  .xxl-hidden {
    display: none !important;
  }
  body .xxl-w-5 {
    width: 5% !important;
  }
  body .xxl-w-10 {
    width: 10% !important;
  }
  body .xxl-w-15 {
    width: 15% !important;
  }
  body .xxl-w-20 {
    width: 20% !important;
  }
  body .xxl-w-25 {
    width: 25% !important;
  }
  body .xxl-w-30 {
    width: 30% !important;
  }
  body .xxl-w-35 {
    width: 35% !important;
  }
  body .xxl-w-40 {
    width: 40% !important;
  }
  body .xxl-w-45 {
    width: 45% !important;
  }
  body .xxl-w-50 {
    width: 50% !important;
  }
  body .xxl-w-55 {
    width: 55% !important;
  }
  body .xxl-w-60 {
    width: 60% !important;
  }
  body .xxl-w-65 {
    width: 65% !important;
  }
  body .xxl-w-70 {
    width: 70% !important;
  }
  body .xxl-w-75 {
    width: 75% !important;
  }
  body .xxl-w-80 {
    width: 80% !important;
  }
  body .xxl-w-85 {
    width: 85% !important;
  }
  body .xxl-w-90 {
    width: 90% !important;
  }
  body .xxl-w-95 {
    width: 95% !important;
  }
}
@media screen and (max-width: 1399px) {
  .xl-hidden {
    display: none !important;
  }
  body .xl-w-5 {
    width: 5% !important;
  }
  body .xl-w-10 {
    width: 10% !important;
  }
  body .xl-w-15 {
    width: 15% !important;
  }
  body .xl-w-20 {
    width: 20% !important;
  }
  body .xl-w-25 {
    width: 25% !important;
  }
  body .xl-w-30 {
    width: 30% !important;
  }
  body .xl-w-35 {
    width: 35% !important;
  }
  body .xl-w-40 {
    width: 40% !important;
  }
  body .xl-w-45 {
    width: 45% !important;
  }
  body .xl-w-50 {
    width: 50% !important;
  }
  body .xl-w-55 {
    width: 55% !important;
  }
  body .xl-w-60 {
    width: 60% !important;
  }
  body .xl-w-65 {
    width: 65% !important;
  }
  body .xl-w-70 {
    width: 70% !important;
  }
  body .xl-w-75 {
    width: 75% !important;
  }
  body .xl-w-80 {
    width: 80% !important;
  }
  body .xl-w-85 {
    width: 85% !important;
  }
  body .xl-w-90 {
    width: 90% !important;
  }
  body .xl-w-95 {
    width: 95% !important;
  }
}
@media screen and (max-width: 1199px) {
  .lg-hidden {
    display: none !important;
  }
  body .lg-w-5 {
    width: 5% !important;
  }
  body .lg-w-10 {
    width: 10% !important;
  }
  body .lg-w-15 {
    width: 15% !important;
  }
  body .lg-w-20 {
    width: 20% !important;
  }
  body .lg-w-25 {
    width: 25% !important;
  }
  body .lg-w-30 {
    width: 30% !important;
  }
  body .lg-w-35 {
    width: 35% !important;
  }
  body .lg-w-40 {
    width: 40% !important;
  }
  body .lg-w-45 {
    width: 45% !important;
  }
  body .lg-w-50 {
    width: 50% !important;
  }
  body .lg-w-55 {
    width: 55% !important;
  }
  body .lg-w-60 {
    width: 60% !important;
  }
  body .lg-w-65 {
    width: 65% !important;
  }
  body .lg-w-70 {
    width: 70% !important;
  }
  body .lg-w-75 {
    width: 75% !important;
  }
  body .lg-w-80 {
    width: 80% !important;
  }
  body .lg-w-85 {
    width: 85% !important;
  }
  body .lg-w-90 {
    width: 90% !important;
  }
  body .lg-w-95 {
    width: 95% !important;
  }
}
@media screen and (max-width: 991px) {
  .md-hidden {
    display: none !important;
  }
  body .md-w-5 {
    width: 5% !important;
  }
  body .md-w-10 {
    width: 10% !important;
  }
  body .md-w-15 {
    width: 15% !important;
  }
  body .md-w-20 {
    width: 20% !important;
  }
  body .md-w-25 {
    width: 25% !important;
  }
  body .md-w-30 {
    width: 30% !important;
  }
  body .md-w-35 {
    width: 35% !important;
  }
  body .md-w-40 {
    width: 40% !important;
  }
  body .md-w-45 {
    width: 45% !important;
  }
  body .md-w-50 {
    width: 50% !important;
  }
  body .md-w-55 {
    width: 55% !important;
  }
  body .md-w-60 {
    width: 60% !important;
  }
  body .md-w-65 {
    width: 65% !important;
  }
  body .md-w-70 {
    width: 70% !important;
  }
  body .md-w-75 {
    width: 75% !important;
  }
  body .md-w-80 {
    width: 80% !important;
  }
  body .md-w-85 {
    width: 85% !important;
  }
  body .md-w-90 {
    width: 90% !important;
  }
  body .md-w-95 {
    width: 95% !important;
  }
}
@media screen and (max-width: 767px) {
  .sm-hidden {
    display: none !important;
  }
  body .sm-w-5 {
    width: 5% !important;
  }
  body .sm-w-10 {
    width: 10% !important;
  }
  body .sm-w-15 {
    width: 15% !important;
  }
  body .sm-w-20 {
    width: 20% !important;
  }
  body .sm-w-25 {
    width: 25% !important;
  }
  body .sm-w-30 {
    width: 30% !important;
  }
  body .sm-w-35 {
    width: 35% !important;
  }
  body .sm-w-40 {
    width: 40% !important;
  }
  body .sm-w-45 {
    width: 45% !important;
  }
  body .sm-w-50 {
    width: 50% !important;
  }
  body .sm-w-55 {
    width: 55% !important;
  }
  body .sm-w-60 {
    width: 60% !important;
  }
  body .sm-w-65 {
    width: 65% !important;
  }
  body .sm-w-70 {
    width: 70% !important;
  }
  body .sm-w-75 {
    width: 75% !important;
  }
  body .sm-w-80 {
    width: 80% !important;
  }
  body .sm-w-85 {
    width: 85% !important;
  }
  body .sm-w-90 {
    width: 90% !important;
  }
  body .sm-w-95 {
    width: 95% !important;
  }
}
@media screen and (max-width: 575px) {
  .xs-hidden {
    display: none !important;
  }
  body .xs-w-5 {
    width: 5% !important;
  }
  body .xs-w-10 {
    width: 10% !important;
  }
  body .xs-w-15 {
    width: 15% !important;
  }
  body .xs-w-20 {
    width: 20% !important;
  }
  body .xs-w-25 {
    width: 25% !important;
  }
  body .xs-w-30 {
    width: 30% !important;
  }
  body .xs-w-35 {
    width: 35% !important;
  }
  body .xs-w-40 {
    width: 40% !important;
  }
  body .xs-w-45 {
    width: 45% !important;
  }
  body .xs-w-50 {
    width: 50% !important;
  }
  body .xs-w-55 {
    width: 55% !important;
  }
  body .xs-w-60 {
    width: 60% !important;
  }
  body .xs-w-65 {
    width: 65% !important;
  }
  body .xs-w-70 {
    width: 70% !important;
  }
  body .xs-w-75 {
    width: 75% !important;
  }
  body .xs-w-80 {
    width: 80% !important;
  }
  body .xs-w-85 {
    width: 85% !important;
  }
  body .xs-w-90 {
    width: 90% !important;
  }
  body .xs-w-95 {
    width: 95% !important;
  }
}/*# sourceMappingURL=style.css.map */