@import url('https://fonts.googleapis.com/css?family=Poppins:500&display=swap');

.loader-bg {
  position: fixed;
  z-index: 999999;
  align-content: center;
  background: #fff;
  width: 100%;
  height: 100%;
}

.loader {
  border: 0 solid transparent;
  border-radius: 50%;
  width: 150px;
  height: 150px;
  position: absolute;
  top: calc(50vh-75px);
  left: calc(50vw-75px);
  top: 40%;
  left: 40%;
}

.loader::before,
.loader::after {
  content: '';
  border: 5px solid #ff5733;
  border-radius: 50%;
  width: inherit;
  height: inherit;
  position: absolute;
  top: 0px;
  left: 0px;
  animation: loader 2s linear infinite;
  opacity: 0;
}

.loader::before {
  animation-delay: .5s;
}

@keyframes loader {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}


.navbar-brand img {
  height: 70px;
  width: 200px;
  margin-left: 25%;
}

@media (max-width:768px) {
  .navbar-brand img {
    height: 60px;
    width: 150px;
    margin: 0;
    padding: 0;
  }

  .navbar-toggler {
    padding-right: 20px;
    line-height: 30px;
    font-size: 25px;
  }

  .navbar-toggler i {
    padding-right: 20px;
    font-size: 25px;
    color: #f05136;
  }
}

.carousel-item img {
  width: 100%;
  height: 100%;
}

.carousel-caption button {
  height: 50px;
  width: 150px;
  border: #f05136;
  background-color: #f05136;
  border-radius: 5px;
  opacity: 0.8;
  margin-bottom: 20px;
}

.carousel-caption button a {
  color: white;
  font-size: 20px;
}

.carousel-caption button a:hover {
  text-decoration: none;
}

.carousel-caption button:hover {
  text-decoration: none;
  background-color: #11db43;
  transition: 0.5s ease;
}



.navbar {
  background-color: white;
  opacity: 1;

}

.navbar-color .navbar-nav .nav-item {
  margin: 0 8px 0 8px;
  line-height: 40px;
}

.nav-link {
  font-weight: bolder;
  font-size: 17px;

  font-family: 'Poppins', sans-serif;
  color: black;
  font-weight: 400;
}



.nav-link::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #f05136;
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
  transition: width 0.3s;

}

.btn::after {
  display: none;

}

.nav-link:hover {
  color: #f05136;
}

.navbar-nav {
  margin-right: 20px;
}

.contact-btn {

  box-shadow: none;

  border-radius: 40px;

  text-decoration: none;
  background: #f05136;
  border: 2px solid #f05136;
  overflow: hidden;
}

.contact-btn a {
  color: white;
}

.contact-btn:hover {
  background: white;
  color: #f05136;
  transition: 0.2s;
}

.contact-btn:hover a {
  color: #f05136;
}


.header-top {
  background-color: #f05136;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  line-height: 50px;
}

.mail,
.number {
  color: white;
  text-decoration: none;
}

.mail:hover,
.number:hover {
  color: white;
  text-decoration: none;
}

@media (max-width:500px) {

  .colan,
  .number {
    display: none;
    visibility: hidden;
  }

  .email {
    padding-left: 20px;
  }
}