/* GLOBAL STYLES
-------------------------------------------------- */
/* Padding below the footer and lighter body text */

:root{
  --header-height: calc(56px + 100px);
  --footer-height: 40px;
  --border-height: 4px;
}

body {
  color: #000000;
}

header{
  height: var(--header-height);
  border-bottom: var(--border-height) solid #000000;
}

footer{
  height: var(--footer-height);
  border-top: var(--border-height) solid #000000;
}

.my-6{
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.circles_bg{
    position:relative;
}

.circles_bg:before{
  content: ' ';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.36;
  background-image: url(img/circles.svg);
  background-position: center;
  background-size: 35%;
  background-repeat: no-repeat;
}

/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

/* Since positioning the image, we need to help out the caption */
.carousel-caption {
  bottom: 3rem;
  z-index: 10;
}

/* Declare heights because of positioning of img element */
.carousel-item,
.group-container {
  min-height: calc(100vh - var(--header-height) - var(--footer-height));
}
.carousel-item > img {
  position: absolute;
  top: 0;
  left: 50%;
  right: 0;
  transform: translateX(-50%);
  height: 72rem;
  min-height: calc(100vh - var(--header-height) - var(--footer-height) - 2 * var(--border-height));
}


/* MARKETING CONTENT
-------------------------------------------------- */

/* Center align the text within the three columns below the carousel */
.marketing .col-lg-4 {
  margin-bottom: 1.5rem;
  text-align: center;
}
.marketing h2 {
  font-weight: 400;
}
/* rtl:begin:ignore */
.marketing .col-lg-4 p {
  margin-right: .75rem;
  margin-left: .75rem;
}
/* rtl:end:ignore */
.navbar-nav{
    flex-direction:row!important;
}
.navbar-dark .navbar-nav .nav-link{
  color:  #000000!important;
}

.navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .show>.nav-link{
  color: #ffffff!important;
  background-color: #000000!important;
}
.navbar{
  padding: 0!important
}
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 1.5rem!important;
    padding-left: 1.5rem!important;
  }
  .navbar>.container-fluid{
      justify-content: center!important;
  }

/* RESPONSIVE CSS
-------------------------------------------------- */

@media (min-width: 40em) {
  /* Bump up size of carousel content */
  .carousel-caption p {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
    line-height: 1.4;
  }

  .featurette-heading {
    font-size: 50px;
  }
}

@media (min-width: 62em) {
  .featurette-heading {
    margin-top: 7rem;
  }
}



@media (max-width: 768px){
  .carousel-item > img {
    min-height: 34rem;
  }
  header .navbar>.container-fluid>div{
      width:100%;
      overflow-x: auto;
  }
  header .navbar-nav{
      width: 562px;
  }
}
