/* -----------------------------------------------
  Project:   Multipurpose one page v1.0
  Author:    Staticmic
------------------------------------------------ */
* {
  box-sizing: border-box;
}

/* Additional Styles */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand img {
  max-width: 150px;
}

.navbar-nav {
  margin-left: auto;
}

.navbar-nav .nav-item {
  margin-left: 10px;
}

.navbar-nav .nav-link:hover {
  color: #0d6efd !important;
}

.footer {
  background-color: #f8f9fa;
}

.btn-go-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  z-index: 9999;
}

@media (max-width: 992px) {
  .navbar-nav {
    flex-direction: column;
  }

  .navbar-nav .nav-item {
    margin-left: 0;
    margin-bottom: 10px;
  }
}

#btn-back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
}

input {
  width: 450px;
  height: 3.5vh;
  margin-bottom: 1rem;
  outline: none;
  color: white;
  border: 30px;
  box-shadow: inset 0 0 0 1px rgba(170, 170, 170, 0.3);
  background: rgba(0, 0, 0, 0.5);
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  border-radius: 3px;
  min-height: 40px;
  padding-left: 10px;
}

input:focus {
  box-shadow: inset 0 0 0 2px blueviolet;
  outline: none !important;
}

form label {
  font-weight: bold;
}

.arrow-up-cls {
  color: #0d6efd;
}

@media (min-width: 992px) {
  .dropdown .dropdown-menu.show {
    display: none;
  }

  .dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0px;
    position: absolute;
  }

  .navbar .dropdown-menu {
    right: auto;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }

  /* arrow symbol */
  .nav-link.dropdown-toggle:hover::after {
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
  }

}

.navbar-toggler {
  padding: 1px 5px;
  font-size: 18px;
  line-height: 0.3;
  background: #0d6efd;
}

/* to define shape and color of the hamburger lines */
.navbar-toggler span {
  display: block;
  background-color: white;
  height: 3px;
  width: 25px;
  margin-top: 5px;
  margin-bottom: 5px;
  position: relative;
  left: 0;
  opacity: 1;
  transition: all 0.34s ease-out;
  transform-origin: center left;
}


/* top line needs a little padding */
.navbar-toggler span:nth-child(1) {
  margin-top: 0.3em;
}


/**
 * Animate collapse into X.
 */

/* top line rotates 45 degrees clockwise and moves up and in a bit to close the center of the X in the center of the button */
.navbar-toggler:not(.collapsed) span:nth-child(1) {
  transform: translate(15%, -33%) rotate(45deg);
}

/* center line goes as transparent */
.navbar-toggler:not(.collapsed) span:nth-child(2) {
  opacity: 0;
}

/* bottom line rotates 45 degrees counter clockwise, in and down a bit to close the center of the X in the center of the button  */
.navbar-toggler:not(.collapsed) span:nth-child(3) {
  transform: translate(15%, 33%) rotate(-45deg);
}

/**
 * Animate collapse open into burger menu
 */

/* top line moves back to initial position and rotates back to 0 degrees */
.navbar-toggler span:nth-child(1) {
  transform: translate(0%, 0%) rotate(0deg);
}

/* middle line goes back to regular color and opacity */
.navbar-toggler span:nth-child(2) {
  opacity: 1;
}

/* bottom line goes back to initial position and rotates back to 0 degrees */
.navbar-toggler span:nth-child(3) {
  transform: translate(0%, 0%) rotate(0deg);
}

/* separate to remove outline  */
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
  outline: 0;
  border: none;
  box-shadow: none;
}

.dropdown-item {
  display: block;
  padding: 0 !important;
  padding-top: 6px !important;
  padding-bottom: 6px !important;
  white-space: nowrap !important;
  position: relative !important;
  /* background: none !important;*/
  font-size: 15px !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;

}

.dropdown-menu {
  background-color: #ffffff;
  border: none;
  list-style: none;
  white-space: nowrap;
}

.dropdown-menu a {
  text-align: center;
}

.company_logo{
  width: 500px;
  height: 100%;
}