@import url("fontawesome-all.min.css");
/*@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');*/


nav {
  background: #171c24;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: 70px;

}

nav .logo {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -1px;
}

nav .nav-items {
  display: flex;
  flex: 1;
  padding: 0 0 0 40px;
}

nav .nav-items li {
  list-style: none;
  padding: 0 15px;
}

nav .nav-items li a {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  font-style: italic;
  font-family: 'Source Sans Pro';
}

nav .nav-items li a.nav__link--active,
.nav__link:hover {
  font-weight: bold;
  color: #6301ed;
}

nav .nav-items li a:hover {
  color: #ff3d00;
}

nav form {
  display: flex;
  height: 40px;
  padding: 2px;
  background: #1e232b;
  min-width: 18% !important;
  border-radius: 2px;
  border: 1px solid rgba(155, 155, 155, 0.2);
}

nav form .search-data {
  width: 100%;
  height: 100%;
  padding: 0 10px;
  color: #fff;
  font-size: 17px;
  border: none;
  font-weight: 500;
  background: none;
}

nav form button {
  padding: 0 15px;
  color: #fff;
  font-size: 17px;
  background: #ff3d00;
  border: none;
  border-radius: 2px;
  cursor: pointer;
}

nav form button:hover {
  background: #e63600;
}

nav .menu-icon,
nav .cancel-icon,
nav .search-icon {
  width: 40px;
  text-align: center;
  margin: 0 50px;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  display: none;
  padding-right: 60px;
}

nav .menu-icon span,
nav .cancel-icon,
nav .search-icon {
  display: none;
}


#titleBar {
            display: block;
            transition: transform 0.5s ease;
            top: 0;
            font-family: 'Font Awesome 5 Free';

        }
    #titleBar .navToggle {
    text-decoration: none;
    width: 80px;
    height: 60px;
}

    #titleBar .navToggle:before {
    content: '\f0c9';
    display: block;
    position: absolute;
    left: 10px;
    top: 10px;
    width: 50px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    color: #fff;
    text-align: center;
    background: rgba(150, 150, 150, 0.75);
    border-radius: 5px;
    font-family: 'Font Awesome 5 Free';
/*    color: #d52349;*/
    font-weight: 900;
}

.notification {
            display: flex;
/*            margin-bottom: 15px;*/
        }

        .notification__body {
            flex: 1;
            margin-top: 10px;
/*            margin-right: 0.5rem;*/
            padding: 0 20px;
            background-color: burlywood;
        }

        .notification__close {
            /* Reset */
/*            background-color: transparent;*/
            border-color: transparent;

            /* Cursor */
            cursor: pointer;

            /* Size */
/*            height: 1rem;*/
/*            width: 1rem;*/

            /* Used to position the inner */
            position: relative;
            margin-top: 10px;
        }

        .notification__close-line {
            /* Background color */
            background-color: #d1d5db;

            /* Position */
            position: absolute;

            /* Size */
            height: 1px;
            width: 100%;
        }

        .notification__close-line--first {
            /* Position */
            left: 0px;
            top: 50%;
            transform: translate(0%, -50%) rotate(45deg);

            /* Size */
            height: 1px;
            width: 100%;
        }

        .notification__close-line--second {
            /* Position */
            left: 50%;
            top: 0px;
            transform: translate(-50%, 0%) rotate(45deg);

            /* Size */
            height: 100%;
            width: 1px;
        }

@media (max-width: 1950px) {
  nav {
    padding: 0 80px;
  }
}

@media (max-width: 1245px) {
  nav {
    padding: 0 50px;
  }
}

@media (max-width: 1140px) {
  nav {
    padding: 0px;
  }

  nav .logo {
    flex: 2;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    font-style: italic;
  font-family: 'Source Sans Pro';
  }

  nav .nav-items {
    position: fixed;
    z-index: 99;
    top: 70px;
    width: 60%;
    left: -60%;
    height: 100%;
    padding: 10px 50px 0 50px;
    text-align: center;
    background: #14181f;
    display: inline-block;
    transition: left 0.3s ease;
    box-shadow: inset -3px 0px 5px 0px rgba(0, 0, 0, 0.35);
  }

  nav .nav-items.active {
    left: 0px;
  }

  nav .nav-items li {
    line-height: 40px;
    margin: 30px 0;
  }

  nav .nav-items li a {
    font-size: 20px;
  }

  nav form {
    position: absolute;
    top: 80px;
    right: 50px;
    opacity: 0;
    pointer-events: none;
    transition: top 0.3s ease, opacity 0.1s ease;
  }

  nav form.active {
    top: 95px;
    opacity: 1;
    pointer-events: auto;
  }

  nav form:before {
    position: absolute;
    content: "";
    top: -13px;
    right: 0px;
    width: 0;
    height: 0;
    z-index: -1;
    border: 10px solid transparent;
    border-bottom-color: #1e232b;
    margin: -20px 0 0;
  }

  nav form:after {
    position: absolute;
    content: '';
    height: 60px;
    padding: 2px;
    background: #1e232b;
    border-radius: 2px;
    min-width: calc(100% + 20px);
    z-index: -2;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  nav .menu-icon {
    display: block;
  }

  nav .search-icon,
  nav .menu-icon span {
    display: block;
  }

  nav .menu-icon span.hide,
  nav .search-icon.hide {
    display: none;
  }

  nav .cancel-icon.show {
    display: block;
  }
}

/*.content{
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
}*/
/*.content header{
  font-size: 30px;
  font-weight: 700;
}
.content .text{
  font-size: 30px;
  font-weight: 700;
}*/
.space {
  margin: 10px 0;
}

nav .logo.space {
  color: red;
  padding: 0 5px 0 0;
}

@media (max-width: 980px) {

  nav .menu-icon,
  nav .cancel-icon,
  nav .search-icon {
    margin: 0 20px;
  }

  nav form {
    right: 30px;
  }
}

@media (max-width: 350px) {

  nav .menu-icon,
  nav .cancel-icon,
  nav .search-icon {
    margin: 0 10px;
    font-size: 16px;
  }

  @media (max-width: 450px) {
    nav .logo {
      font-size: 16px;
    }
  }
}


/*----------------------------New Project-----CSS ShowCase Begin------------------------------------------------------------*/
/* Header Showcase */

.showcase {

  min-height: 100%;
  color: #fff;
  text-align: center;
}

.showcase .bg-image {
  position: absolute;
  background: #333 url("../../img/showcase-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 450px;
  z-index: -1;
  opacity: 0.9;
  min-height: 100%;
  object-fit: cover;
}

.showcase h1 {
  /* padding-top: 100px; */
  padding-bottom: 0;
}

.showcase .title1 {
  padding-top: 100px;
  color: #ff8001;
  font-family: 'Quicksand', sans-serif;
  letter-spacing: 2px;
  font-size: 14px;
}

.showcase .button {
  display: inline-grid;
  padding: 12px 17px;
  border-radius: 5px;
  border: 0;
  font-family: 'Quicksand', sans-serif;
  font-weight: bold;
  background-color: white;
  font-size: 100%;
  letter-spacing: 0.5px;
  margin-top: 5px;
}

.showcase .content__wrap,
.section-a .content__wrap {
  padding: 0 1.5em;
  margin-bottom: 40px;
}

/*----------------------------New Project-----CSS ShowCase End------------------------------------------------------------*/
/*.content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}*/
/*.content header{
  font-size: 30px;
  font-weight: 700;
}
.content .text{
  font-size: 30px;
  font-weight: 700;
}*/
.content .space {
  margin: 10px 0;
}