/*** Mixins & Default Styles ***/

ol.carousel-indicators {
    display: none;
}


body {
overflow-x: hidden; 
}

/*** Color Variables ***/
/*** Centering Hack ***/
/*** Header Styles ***/
header {
/*  width: 100vw;
  height: 100vh; 
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;*/
}




/*** Navigation Styles ***/
nav {
  width: 100vw;
  height: 100px;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: fixed;
  z-index: 10;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
ol, ul { 
    padding-right: 70px;
}
nav.navShadow {
  -webkit-box-shadow: 0 4px 30px -5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 30px -5px rgba(0, 0, 0, 0.2);
  height: 105px;
}
nav.navShadow #word-mark {
  opacity: 0;
}

#brand,
#menu,
ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#brand {
  padding-left: 50px;
}

#logo {
/**  width: 175px;
  height: 55px;
  background: #fff; **/
  cursor: pointer;
}


/*** Menu Styles ***/
#menu {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}


div#menu-toggle {
    margin-right: 70px;
}

li {
  margin-left: 20px;
}
li a {
  width: max-content;
  height: 15px; 
  display: block;
 padding-left: 20px;
font-weight:900;
letter-spacing: 1px;
color: #333;
}
li a:focus {
color: #17a5cd;
text-decoration:none;
}
li a:hover {
    color: #17a5cd;
text-decoration:none;
}

#menu-toggle {
  width: 55px;
  height: 55px;
  background: #17a5cd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  cursor: pointer;
  display: none;
}
#menu-toggle:hover .bar {
  width: 25px;
}
#menu-toggle.closeMenu .bar {
  width: 25px;
}
#menu-toggle.closeMenu .bar:first-child {
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}
#menu-toggle.closeMenu .bar:nth-child(2) {
  -webkit-transform: scale(0);
          transform: scale(0);
}
#menu-toggle.closeMenu .bar:last-child {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}

.bar {
  width: 25px;
  height: 2px;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.bar:nth-child(2) {
  width: 20px;
  margin: 5px 0;
}
.bar:last-child {
  width: 15px;
}




@media screen and (max-width: 1380px) {
li a {
 padding-left: 10px;

 }
.h1, h1 {
    font-size: 36px !important;
}



/*** Responsive Menu For Smaller Device ***/
/** @media screen and (max-width: 992px) { **/
@media screen and (max-width: 1415px) { 
  #menu-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  ul {
margin-top:0px;
    display: inline-block;
    width: 100vw;
    height: 0;
    background: #fff;
    position: absolute;
    top: 100px;
    -webkit-transform: translate(, );
            transform: translate(, );
    -webkit-box-shadow: 0 5px 30px -4px rgba(0, 0, 0, 0.2);
            box-shadow: 0 5px 30px -4px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  ul.showMenu {
/***    height: auto; ***/
height: 385px;
  }
  ul.showMenu li {
    height: 30px;
    opacity: 1;
    visibility: visible;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  li {
    width: 50%;
    height: 50px;
    padding-left: 50px;
    opacity: 0;
    visibility: hidden;
    margin-left: 0;
    -webkit-transition: all 0.3s 0.1s;
    transition: all 0.3s 0.1s;
  }
  li a {
padding-left: 0px;
color: #333;
}
li a:focus {
color: #17a5cd;
text-decoration:none;
}
li a:hover {
    color: #17a5cd;
text-decoration:none;
}

//***  li:first-child, li:nth-child(2) {
    margin-top: 20px;
  } ***//

  #head-line {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}




@media screen and (max-width: 576px) {
div#menu-toggle {
    margin-right: 90px ;
}
}


@media screen and (max-width: 425px) {
div#menu-toggle {
    margin-right: 50px;
}
}

@media screen and (max-width: 375px) {
div#menu-toggle {
    margin-right: 30px;
}
}