html,body{
  margin: 0;
  padding: 0;
}
.fixSize-logo{
  height: 95px !important;
  width: fit-content;
  margin: 10px 0px;
}
.starthere-btn{
  appearance: button;
  color: white;
  background-color: blue;
  padding: 10px;
  border-radius: 2rem;
  transition: all 100ms;
  -webkit-transition: all 100ms;
  font-size: 26px;
  /* margin-top: 20px; */
}
.starthere-btn:hover{
  color: white;
  text-decoration: none;
  border-radius: 0;
}
#mainContentArea{
  height: calc(100vh - 115px);
  background-color: rgba(0,0,0, 0.55);
}
.fixed-center{
  position: relative;
  transform: translateY(100%);
  top: 50%;
  text-align: center;
}
.bg-trans-white{
  margin-top: 120px;
  background: rgba(255,255,255, 0.80);
}
.select-control{
  border-radius: 0px;
  height: 64px;
  border: 1px solid #999;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  background: rgb(180, 180, 180);
  border-bottom: 2px solid green;
}
.nav-link {
  font-size: 16px;
  color: black !important;
  font-weight: 500;
  padding-left: 12px !important;
  padding-right: 12px !important;
}
.bottomFixed{
  position: fixed;
  bottom: 0;
  width: 100%;
}
@media screen and (max-width: 568px) {
  .fixSize-logo{
    width: 125px !important;
    height: auto !important;
    margin: 10px 0px;
  }
}
@media screen and (max-width: 767px) {
  .fixed-center{
    position: relative;
    transform: translateY(50%);
    top: 20%;
    text-align: center;
  }
}
@media screen and (max-width: 991px) {
  .bottomFixed{
    position: unset;
    width: 100%;
  }
  #mainContentArea{
    height: auto;
    padding-bottom: 100px;
  }
}