/*FONTS*/
@import 'https://fonts.googleapis.com/css?family=Lato:300,400,900';
/*GLOBAL*/
body {
	font-family: 'Lato', sans-serif;
    margin: 0;
}
.footer-flex-container {
    display: flex;
    background-color:#3A3955;
    position: -webkit-sticky; /* Safari */
    position: sticky;
    bottom: 0;
    min-width: 100%;
}
.footer-flex-container > div {
    font-size: 10px;
    color: white;
    text-align: center;
    text-decoration-color: white;
    min-width:33.33%;
    max-height: 25px;
    padding-top: 5px;
    padding-bottom: 15px;
}
.insta{
    height: 25px;
    
}
/*Footer Styles End*/
/*Nav bar styles*/
.header-fixed {
    position: fixed;
    top: 0;
    z-index: 1;
    width: 100%;
    background-color: #3A3955;
    box-shadow: 1px 1px 4px 1px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    line-height: 60px;
}

.navbar .logo {
    flex: 3; 
}

.navbar .logo a {
    display: block;
    font-size: 250%;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    margin-left: 50px;
    margin-top: 10px;
}
.navbar .logo a:hover {
  /*color: #777777;*/
}

.navbar nav {
    flex-end: 8;
}

.navbar label {
  user-select: none;
  cursor: pointer;
  padding: 28px 20px;
  position: relative;
  z-index: 3;
}

.navbar label i {
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
  font-style: normal;
  font-weight: normal;
}
.navbar label i:before,
.navbar label i:after {
  content: '';
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}
.navbar label i,
.navbar label i:before,
.navbar label i:after {
  display: block;
  background: #eee;  
}
.navbar label i:before {
  top: 5px;
}
.navbar label i:after {
  top: -5px;
}

.navbar #navbar-toggle {
  display: none;
}

.header #navbar-toggle:checked ~ .menu {
  visibility: visible;
  opacity: 0.99;
}
.header #navbar-toggle:checked ~ label {
  background: #212121;
  border-radius: 50%;    
}
.header #navbar-toggle:checked ~ label i {
  background: transparent;
}
.header #navbar-toggle:checked ~ label i:before {
  transform: rotate(-45deg);
}
.header #navbar-toggle:checked ~ label i:after {
  transform: rotate(45deg);
}
.header #navbar-toggle:checked ~ label:not(.steps) i:before,
.header #navbar-toggle:checked ~ label:not(.steps) i:after {
  top: 0;
}
/*Mobile Styling*/
@media (max-width: 768px) {
    .navbar nav {
      visibility: hidden;
      opacity: 0;
      z-index: 2;
      position: fixed;
      top: 0px;
      left: 0px;
      width: 100%;
      height: 100%;
      transition: all 0.3s ease-out;
      display: table;
      background: #ddd;
    }
    .navbar nav ul {
      margin: 0;
      padding: 20px 0;
      display: table-cell;
      vertical-align: middle;
    }
    .navbar nav li {
      display: block;
      text-align: center;
      padding: 20px 0;
      text-align: center;
      font-size: 50px;
      min-height: 50px;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease-out;
    }
    .navbar nav li:hover {
      background: #3A3955;
    }
    .navbar nav li:hover a {
      color: #fff;
      transition: all 0.3s ease-out;
    }
    .navbar nav li a {
      color: #212121;
    }
}

@media (min-width: 768px) {
    .navbar nav ul {
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: space-around;
      text-align: center;
      list-style: none;
    }
    .navbar nav li {
      flex: 1;
    }
    .navbar nav li a {
      display: block;
      padding: 0 8px;
      font-size: 16px;
      line-height: 60px;
      color: #fff;/*MENU COLOR*/
      text-decoration: none;
    }
    .navbar nav li.active {
      background: #555;  
    }
    .navbar nav li:hover {
      background: #333;
    }
    .navbar label {
      display: none;
    }
}
/*Mobile Styling End*/
/*Nav bar styles End*/

/* If the screen size is 768px or more */
@media only screen and (min-width: 768px) {

    .navbar .logo a {
    font-size: 45px;
    font-weight:500;
    }
    .sliderTitle{
        font-size:425%;
        text-decoration-color:#3A3955; 
        text-align: left;
        position: relative;
        top: 10%;
        /*padding-bottom: 1%;*/
    }
    .frontPage{
        font-size: 600%;
        font-weight: bold;
        position: absolute; 
        top:20%;
        left:10%; 

    }
    .frontSubtext{
        position: absolute; 
        top:35%;
        left:26%; 
    }
    .intro{
    padding-top: 5.5%;
    padding-bottom: 5.5%;
    }
    .imgSizing{
    max-height: 70%;
    max-width: 70%;
    }
}

/* If the screen size is 768px or less*/
@media only screen and (max-width: 768px) {
     .navbar .logo a {
    font-size: 115%;
    }
     .sliderTitle{
        font-size:250%;
        text-decoration-color:#3A3955; 
        text-align: left;
        position: relative;
        top: 20%;
        /*padding-bottom: 1%;*/
      }
     .frontPage{
        font-weight: bold;
        position: absolute; 
        font-size: 300%;
        top:30%;
        left:10%; 
    }
    .frontSubtext{
        position: absolute; 
        font-size: 100%;
        top:35%;
        left:26%; 
    }
    .imgSizing{
        max-height: 90%;
        max-width: 90%;
        }
    .intro{
        padding-top: 2.5%;
        padding-bottom: 2.5%;
        }
    .footer-flex-container > div {
    font-size: 7px;
    max-height: 25px;
}
}
