* {
  font-family: 'Barlow', sans-serif;
}

body, html {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

header > * {
  font-weight: bold;
  text-transform: uppercase;
  color: white;
}

.btn {
  font-weight: bold;
  text-transform: uppercase;
  width: 10rem;
  height: 2.8rem;
  font-size: medium;
}

.btn-topper {
  display: inline-block;
  background-color: #FF9800;
  width: 50px;
  text-align: center;
  border-width: inherit;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 15px;
  transition: background-color .3s, opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

.btn-topper:hover {
  cursor: pointer;
  background-color: #333;
}

.btn-topper:active {
  background-color: #555;
}

.btn-topper.show {
  opacity: 1;
  visibility: visible;
}

.animated-icon2 {
  width: 30px;
  height: 20px;
  position: relative;
  margin: 0px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

.animated-icon2 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.animated-icon2 span {
  background: #ffffff;
}

.animated-icon2 span:nth-child(1) {
  top: 0px;
}

.animated-icon2 span:nth-child(2), .animated-icon2 span:nth-child(3) {
  top: 10px;
}

.animated-icon2 span:nth-child(4) {
  top: 20px;
}

.animated-icon2.open span:nth-child(1) {
  top: 11px;
  width: 0%;
  left: 50%;
}

.animated-icon2.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.animated-icon2.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.animated-icon2.open span:nth-child(4) {
  top: 11px;
  width: 0%;
  left: 50%;
}

.navbar-light .navbar-toggler {
  border-color: transparent;
}
.navbar{
  background:transparent;
}
.navbar-light .navbar-nav .nav-link {
  color: #ffffff;
}

.navbar-light .navbar-nav .active .nav-link, .navbar-light .navbar-nav .nav-link:hover {
  color: #c1c1c1;
}

.nav li ul {
  position:absolute;
  left:0;
  top:36px;
  z-index:1;
}
.nav li ul li {
  overflow:hidden;
  height:0;
  -webkit-transition:height 200ms ease-in;
  -moz-transition:height 200ms ease-in;
  -o-transition:height 200ms ease-in;
  transition:height 200ms ease-in;
}
.nav ul > li:hover ul li {
  height:36px;
}

header {
  background-image: url(../../v2/img/bg-home.jpg);
  background-size: cover;
  background-position-y: center;
  background-position-x: 15rem;
}

.hero-text {
  left: -14rem;
}

main {
  padding-top: 4rem;
}

@media screen and (max-width: 768px) {
  header {
    background-position-y: -3rem;
    background-position-x: 5rem;
  }
  .hero-text {
    left: 0;
  }
}

.card .card-badge {
  position: absolute;
  top: 15px;
  right: -8px;
  padding: 10px;
  color: white;
}

@media screen and (max-width: 400px) {
  header {
    background-position-x: center;
  }
  .hero-text {
    left: 0rem;
  }
  .hidden-sm {
    display: none;
  }
  .display-4 {
    font-size: xx-large;
  }
  .lead {
    font-size: small;
  }
}

section.pricing {
  background: rgb(100,98,237);
  background: linear-gradient(125deg, rgba(100,98,237,1) 0%, rgba(35,155,218,1) 30%, rgba(146,58,251,1) 75%, rgba(93,105,228,1) 100%);
}

.pricing .card {
  border: none;
  border-radius: 1rem;
  transition: all 0.2s;
  box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1);
}

.pricing hr {
  margin: 1.5rem 0;
}

.pricing .card-title {
  margin: 0.5rem 0;
  font-size: 0.9rem;
  letter-spacing: .1rem;
  font-weight: bold;
}

.pricing .card-price {
  font-size: 3rem;
  margin: 0;
}

.pricing .card-price .period {
  font-size: 0.8rem;
}

.pricing ul li {
  margin-bottom: 1rem;
}

.pricing .text-muted {
  opacity: 0.7;
}

.pricing .btn:hover {
  opacity: 0.7;
  box-shadow: 0px 5px 15px #cccccc;
  transition: all 0.2s;
}

/* Hover Effects on Card */
@media (min-width: 992px) {
  .pricing .card:hover {
    margin-top: -.25rem;
    margin-bottom: .25rem;
    box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.3);
  }
  .pricing .card:hover .btn {
    opacity: 1;
  }
}
