@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,700;1,400&family=Oswald:wght@400;500;700&display=swap');

* {
    box-sizing: border-box;
}
h1,h2,h3,h4 {
    font-family: "Oswald", sans-serif;
}
a:link {
    text-decoration: none;
    color: #4CB2E9;
}

a:hover {
    color: #4CB2E9;
}

a:visited {
    color:#ddd;
}
html {
  min-height: 100%;
  max-height: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
}
body {
    font-family: 'Montserrat',sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
    width: 100%;
    overflow-x: hidden;
    margin: 0;
}

.page-container {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

.mobile-nav {
  position: fixed;
  top: 1rem;
  right: 1rem;
  width:auto;
  height: auto;
  color: #fff;
  display: flex;
  flex-direction: column;
  transition: top .4s ease;
  overflow: hidden;
  z-index: 100;
  padding: 0;
  margin: 0;
  border-radius: 10px;
  
}

.fa-bars {
  color: #000;
  background-color: #fff;
  position: absolute;
  top:.5rem;
  right: 0rem;
  font-size: 1.8rem;
  width: 2.5rem;
  height: auto;
  text-align: center;
  z-index: 50;
  padding:.4rem .5rem;
  box-shadow: 
      rgba(0, 0, 0, 0.15) 0px 2px 5px inset,
      rgba(0, 0, 0, 0.15) 0px -2px 5px inset;
  border-radius: 13px;
  transform-origin: top right;

}



.drop-down-menu{
  background-color: #fff;
  position: relative;
  top: -1rem;
  right: 0;
  display: flex;
  flex-direction: column;
  transition: transform .5s ease;
  padding: 1rem 1rem 0;
  margin-bottom: 0;
  height: auto;
  list-style-type: none;
  font-size: 1.5rem;
  font-weight: bold;
  box-shadow: 
      rgba(0, 0, 0, 0.15) 0px 2px 5px inset,
      rgba(0, 0, 0, 0.15) 0px -2px 5px inset;
  text-shadow: 
  rgba(255,255,255, 1) 0px 1px 0px,
  rgba(255,255,255, 1) 0px -1px 0px,
  rgba(255,255,255, 1) 1px 0px 0px,
  rgba(255,255,255, 1) -1px 0px 0px;
  transition: transform .5s ease, height 1s ease;
  border-radius: 20px;
  transform-origin: top right;
  transform: scale(0);
}

.drop-down-menu.show {
  transform: scale(1);
}
.mobile-nav ul li {
  padding: .5rem;
  border-bottom: 1px solid #ddd;
}
.mobile-nav ul li a:hover{
  opacity: .7;

}

.banner-section {
    width: 100%;
    height: 100vh;
    position: absolute;
}
.banner-container{

  width: 100%;
  height: 100vh;
  background-color: #fff;
}

.logo-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;

}

.logo-wrapper::before {
    content: "";
    width: 7%;
    height: 100%;
    background: linear-gradient(to right, transparent, #fff, transparent);
    position: absolute;
    top: 0;
    left: 45%;
    transform: skewX(168deg);
    z-index: 100;
    opacity: .7;
  }


.logo {
    height: 500px;
    width: 500px;
    margin: 0.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem 0;
    border-radius: 50%;
    position: absolute;
    opacity: 1;
  }
  
  .logo::before {
    content: '';
    display: block;
    position: relative;
    height: 500px;
    width: 500px;
    border-radius: 50%;
    animation: spin 5s linear infinite;
    background-image: url("/media/BTClogo1920.png");
    background-size: 100% 100%;
    background-position: center;
  }

  @keyframes spin {
    0% {
      width: 500px;
      box-shadow:
        0 0 0 rgb(0,0,0);
      animation-timing-function: ease-in;
    }
    35% {
        background-color: rgba(0,0,0,0);
    }

    
    49.999% {
      width: 0.1rem;
      box-shadow:
        0.05rem 0 0 1rem rgb(0,0,0),
        0.1rem 0 0 1rem rgb(0,0,0),
        0.15rem 0 0 1rem rgb(0,0,0),
        0.2rem 0 0 1rem rgb(0,0,0),
        0.25rem 0 0 1rem rgb(0,0,0),
        0.3rem 0 0 1rem rgb(0,0,0),
        0.35rem 0 0 1rem rgb(0,0,0),
        0.4rem 0 0 1rem rgb(0,0,0),
        0.45rem 0 0 1rem rgb(0,0,0),
        0.5rem 0 0 1rem rgb(0,0,0),
        0.55rem 0 0 1rem rgb(0,0,0),
        0.6rem 0 0 1rem rgb(0,0,0),
        0.65rem 0 0 1rem rgb(0,0,0),
        0.7rem 0 0 1rem rgb(0,0,0),
        0.75rem 0 0 1rem rgb(0,0,0);
      transform: translateX(-0.375rem);
      background-color: rgba(0,0,0,.75);
      animation-timing-function: linear;
    }
    
    50.001% {
      width: 0.1rem;
      box-shadow:
        -0.05rem 0 0 1rem rgb(0,0,0),
        -0.1rem 0 0 1rem rgb(0,0,0),
        -0.15rem 0 0 1rem rgb(0,0,0),
        -0.2rem 0 0 1rem rgb(0,0,0),
        -0.25rem 0 0 1rem rgb(0,0,0),
        -0.3rem 0 0 1rem rgb(0,0,0),
        -0.35rem 0 0 1rem rgb(0,0,0),
        -0.4rem 0 0 1rem rgb(0,0,0),
        -0.45rem 0 0 1rem rgb(0,0,0),
        -0.5rem 0 0 1rem rgb(0,0,0),
        -0.55rem 0 0 1rem rgb(0,0,0),
        -0.6rem 0 0 1rem rgb(0,0,0),
        -0.65rem 0 0 1rem rgb(0,0,0),
        -0.7rem 0 0 1rem rgb(0,0,0),
        -0.75rem 0 0 1rem rgb(0,0,0);
      transform: translateX(0.375rem);
       background-color: #000;
      animation-timing-function: ease-out;
    }

    70% {
         background-color: rgba(0,0,0,0);
    }
    
    100% {
      width: 500px;
      box-shadow:
        0 0 0 rgb(0,0,0);
    }
  }
  /* Logo Banner End */

  /* Section 2 Banner Start */
  .section-2 {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
     
  }
  .banner {
    position: relative;
    background-image: url('media/hectobg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 80%;
    height: 75%;
    margin: auto;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.10) 0px 5px 20px;
    opacity: 0;
}

  .bg-img {
    position: absolute;
    left:3rem ;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    background-image: url('media/laptopright.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(.2);
    opacity:0;
    z-index: 1;
}


  .section-2-text {
      position: relative;
      top: 1rem;
      left: 3vw;
      color: #4CB2E9;
      font-size: 3.8vw;
      word-wrap: break-word;
      max-width:60%;
      max-height: 60%;
      opacity: 0;
      text-shadow: -2px 1px 4px rgba(0,0,0,0.21);
  }

  .section-2-btn {
      background-color: #4CB2E9;
      color: #dddddd;
      position: relative;
      display: flex;
      justify-content:center;
      left:25vw;
      max-width:150px;
      border-radius: 20px;
      padding-bottom: 2px;
      box-shadow: 
      rgba(255, 255, 255, 0.35) 0px 4px 5px inset,
      rgba(0, 0, 0, 0.35) 0px -4px 5px inset,
      rgba(0, 0, 0, 0.35) 0px 4px 8px ;
      opacity: 0;
      transform: scale(0);
  }

.section-2-btn a:link{
    color: #fff;
}
/* Section 2 Banner End */
/* About Us & Nav Section Start */
.section-3 {
  position: relative;
    width: 100%;
    height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0;
    border-bottom: solid 2px #000;
}

.nav { 
  background-color: #fff;
  width: 100%;
  height: 80px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  z-index: 1;
  font-size: 1.3rem;
  box-shadow: 
      rgba(0, 0, 0, 0.05) 0px 2px 10px inset,
      rgba(0, 0, 0, 0.15) 0px -2px 5px inset;
  text-shadow: 
  rgba(255,255,255, 1) 0px 1px 0px,
  rgba(255,255,255, 1) 0px -1px 0px,
  rgba(255,255,255, 1) 1px 0px 0px,
  rgba(255,255,255, 1) -1px 0px 0px;
  position: absolute;
  top:0;
  left: 0;
  margin-top: 0;
  transition: height .5s ease;
}

.nav ul {
  list-style: none;
  display: flex;
  width: 100%;
  margin: 0 1rem;
  font-family: 'Oswald',sans-serif;
  font-weight: bold;
  justify-content: center;
}

.nav li {
  padding: 0 .7rem;
  border-right: 1px solid #dddddd;
}

.nav ul li:last-child{
  border-right: none;
}

.fixed {
  position: fixed;
  height: 3rem;
}

.section-3 h2 {
  position: relative;
  top: 5rem;
  font-size: 3rem;
  margin-bottom: 0;
}

.about-us {
  position: relative;
  top: 5rem;
  width: 80%;
  font-size: 1.5rem;
}

.about-us span {
  font-weight: 700;
  color: #4CB2E9;
}
/* About Us & Nav Section End */
/* Services Section Start */

.section-4 {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-4 h2 {
  font-size: 3rem;
}

.panels {
  display: flex;
  width: 80vw;
}

.panel {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 65vh;
  border-radius: 50px;
  cursor: pointer;
  flex: 0.5;
  margin: 10px;
  position: relative;
  transition: flex .7s ease-in;
  box-shadow: rgba(0, 0, 0, 0.15) -10px 5px 80px 50px inset, rgba(0, 0, 0, 0.15) -3px 2px 6px 3px;
  overflow: hidden;
}

.panel:nth-of-type(1){
  background-image: url('media/bluepanel.png');
}
.panel:nth-of-type(2){
  background-image: url('media/whitepanel.png');
}
.panel:nth-of-type(3){
  background-image: url('media/greypanel.png');
}
.panel:nth-of-type(4){
  background-image: url('media/blackpanel.png');
}

.panel:hover:not(.active){
  box-shadow: rgba(0, 0, 0, 0.0) -10px 5px 80px 50px inset, rgba(0, 0, 0, 0.15) -3px 2px 6px 3px;
}

.panel h3 {
  position: absolute;
  top: 0;
  left:0;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 3rem;
  
  max-height: 80%;
  word-wrap: break-word;
  font-size: 3.5rem;
  margin:  auto auto;
  background-color: transparent;
  line-height: 3.2rem;
  -webkit-text-stroke: .5px #fff;
  transition: opacity .5s ease;
  
}

.panel.active {
  flex: 5;
}

.panel.active h3 {
  position: absolute;
  width: 80%;
  opacity: 1;
  max-height:4rem;
  letter-spacing: 5px;
  margin: 2rem auto;
  background-color: rgba(255,255,255,.85);
  padding-top: 4px;
}

.features {
  position: absolute;
  display: flex;
  justify-content: space-between;
  width:80%;
  height: 65%;
  top: 4rem;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  overflow: hidden;
  opacity: 0;
  transition: opacity .5s ease;
}

.panel.active .features {
  opacity: 1;
  transition: opacity .3s ease .8s;
}

.description {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60%;
  background-color: rgba(255,255,255,.85);
  font-size: 1.2rem;
}

.description p {
  width: 90%;
  margin:1.5rem auto 0;
}

.perfect-for {
  position: absolute;
  display:flex;
  flex-direction: column;
  align-items: center;
  width: 60%;
  top: 18vh;
  left: 0;
}

.perfect-for h4 {
font-size: 1.2rem;
margin-bottom:0;
}

.perfect-for ul{
  list-style-type: none;
  text-align: center;
  padding: 0;
  font-size: 1.1rem;
}

.checklist {
  width:35%;
  background-color: rgba(255,255,255,.85);
}

.checklist h4 {
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: .5rem;
  text-align: center;
}

.checklist ul {
  list-style-type: none;
  font-size: 1.1rem;
  line-height: 1.5rem;
  width: 90%;
  margin: 0 auto;
  padding: 0;

}

ul li i {
  font-size: .8rem;
  padding-right: .5rem;
}

.choose-tier {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 1.0), rgba(0, 0, 0, .1));
  background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 1.0), rgba(0, 0, 0, .1));
  background: linear-gradient(to top, rgba(0, 0, 0, 1.0), rgba(0, 0, 0, .1));
  padding: 0;
  border-radius: 0px 0px 50px 50px;
  transform: translateY(100%);
  transition: transform .3s ease, opacity .2s ease .3s;
  opacity: 0;
}

.choose-tier h2 {
  padding: 0;
  margin: .6rem 0;
}


.choose-tier h2:hover {
  transform: scale(1.1);
}

.choose-tier h2:active {
  transform: scale(1.0);
}

.panel.active.pick-me .choose-tier{
  transform: translateY(0);
  opacity: 1;
  transition: transform .3s ease,opacity .2s ease .3s;;

}
/* Services Section End */
/* Portfolio Sectin Start */

.section-5 {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  align-items: center;
}

.example {
  display: flex;
  justify-content: space-between;
  width: 90%;
  height: 50vh;
  margin-bottom: 5rem;
}

.example:nth-of-type(2) {
  flex-direction: row-reverse;
}

.site {
  width: 50%;
}

.site video {
  width: 100%;
  height: 100%;
  min-height: 100%;
  min-width: 100%;
  object-fit: contain;

}

.site-description {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.2rem;
}

.site-description h3 {
  font-size: 2rem;
}

.site-link{
  display: flex;
  align-items: center;
  justify-content: center;
background-color: #4CB2E9;
border-radius: 30px;
box-shadow: 
rgba(255, 255, 255, 0.35) 0px 4px 5px inset,
rgba(0, 0, 0, 0.35) 0px -4px 5px inset,
rgba(0, 0, 0, 0.35) 0px 4px 8px ;

}

h3.site-link a{
  font-size: 1.25rem;
  color: #fff;
  margin-top: 0;
  padding:5px 20px;
}

h3.site-link a:hover {
  color: rgba(255,255,255,.8)
}

h3.site-link:active {
  transform: scale(.98);
  transition: transform .2s ease;
}
/* Portfolio Section End */
/* Contact Us Section Start */

.section-6 {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}

.section-6 .section-heading {
  font-size: 3rem;
  margin-bottom:3rem;
}

.form-container {
  width: 65%;
  height: auto;
  background-color: #4CB2E9;
  display: flex;
  box-shadow: 0.5rem 0.5rem .5rem rgba(255, 255, 255, 0.9), -0.1rem -0.1rem 0.4rem rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;

}

.form-img {
  background-image: url('media/form-img.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 40%;
}


.contact-form {
  width: 60%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  box-shadow: 2rem 2rem 4rem rgba(28, 28, 28, 0.10);
  font-family: 'Montserrat', sans-serif;
}
.contact-form h3 {
  font-family: 'Oswald',sans-serif;
}

.contact-form input,
.contact-form textarea {
  margin: .5rem;
  padding: .8rem;
  font-size: 1rem;
  letter-spacing: 0.1rem;
  border: none;
  box-shadow: inset 0.1rem 0.1rem 0.2rem #ddd, inset -0.1rem -0.1rem 0.2rem #ddd;
}

.contact-form textarea {
  font-family: 'Montserrat',sans-serif;
  max-height: 12rem;
  min-height: 6rem;
  max-width: 100%;
  min-width: 70%;
}

.contact-form input[type="submit"] {
  background-color: #4CB2E9;
  color: #fff;
  font-weight: bolder;
  letter-spacing: 0.3rem;
  cursor: pointer;
  transition: opacity 0.3s;
}

.contact-form input[type="submit"]:hover {
  opacity: .8;
}

.checkboxes {
  display: flex;
  flex-wrap: wrap;
}

.contact-form input[type="checkbox"] {
  width:1rem;
  height: 1rem;
  margin: 0 5px 0 15px;
  max-width: 40%;
}

.checkboxes label {
  padding-bottom: 1px;
}
/* Contact Us Section End */
/* Footer Section Start */

.footer {
  position: relative;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  background-color: #000;
  width:100%;
  overflow: hidden;
}
.footer-info {
  display: flex;
  flex-direction: column;
  position: absolute;
  max-width: 500px;
  height: 100%;
  left: 0;
  right: 0;
  margin: auto;
  color: #fff;
  align-items: center;
  justify-content: center;
}

.footer p {
  font-family: 'Oswald',sans-serif;
  font-size: 1.2rem;
  color: #fff;
  margin: 0;
}


.footer-nav ul{
  display: flex;
  list-style-type: none;
  padding-right: 1rem;
}

.footer-nav ul li {
  padding: .5rem;
}
/* Footer Section End */
/* Resosponsiveness Start */

@media screen and (max-width:1300px){
  .section-2 {
  }
  .banner{
    top: 4rem;
    height: 65%;
    
  }
  .bg-img {
    width: 100%;
  }
  .section-3 h2{
    font-size: 2.5rem;
  }
  .about-us {
    font-size: 1.2rem;
  }
  .section-4 h2 {
    font-size: 2.5rem;
  }
  .panel h3 {
    font-size: 2.5rem;
    width: 2rem;
    line-height: 2.7rem;

  }
  .panel.active h3 {
    background-color: rgba(255,255,255,.85);
    width: 90%;
  }

  .features {
    width: 90%;
  }
 .description {
   font-size: 1rem;
  }

  .checklist h4 {
    margin-bottom: 0rem;
  }
  .checklist ul{
    width: 100%;
    padding: .5rem;
  }
  .checklist li{
    font-size: 1rem;
    line-height: 1.4rem;
  }
  .example {
    flex-direction: column;
    height: 100vh;
  }
  .site {
    width: 100%;
    height: 75%;
  }
  .example:nth-of-type(2){
    flex-direction: column;
  }
  .site-description {
    width: 100%;
    height: 25%;
    text-align: center;
  }
  .site-description h3 {
    margin: 0;
  }
  .form-container {
    width: 80%;
  }
  .footer-info {
    margin: 0;
  }
}

@media screen and (max-width:1024px){

  .banner {
    height: 60%;

  }
  .section-2-text {
    top:1rem;
  }

  .section-2-btn {
    top: 1rem;
  }

  .panel.active h3{
    font-size: 2rem;
    line-height: 4rem;
    padding: 0;
    margin-top: 2rem;
  }

  .features {
    margin-top: 3rem;
    background-color: rgba(255,255,255,.85);
    flex-direction: column;
    height: 70%;
  }

  .description {
    font-size: 1rem;
    background-color: rgba(255,255,255,0);
    width: 100%;
    font-size: 1rem;
    display: none;
   }

   .description p {
     margin-top: .5rem;
     text-align: center;
   }

   .checklist {
     display: flex;
     flex-direction: column;
     justify-content: center;
    background-color: rgba(255,255,255,0);
    width: 100%;
  }

.checklist h4 {
  margin-top: 1rem;
  margin-bottom: .2rem;
  font-size: 2rem;
}

.checklist ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 90%;
  margin-bottom: 0;
}

.checklist ul li{
  width: 45%;
  font-size: 1rem;
  word-wrap: break-word;
  line-height: 1.2rem;
  margin-bottom: .5rem;

}
  .perfect-for {
    position: relative;
    top: 0;
    width: 100%;
    padding:0;
    background-color: #4CB2E9;
  }

  .perfect-for h4 {
    margin:0;
  }

  .perfect-for ul{
    margin-top: 0;
    font-size: .9rem;
  } 

  .form-container {
    width: 80%;
    margin-top: 0;
  }

.contact-form input,
.contact-form textarea {
padding: .4rem;
font-size: 1rem;
}

.form-container h3 {
  margin:.3rem 0;
}

.contact-form {
  padding: 1rem;
  width: 65%;
}

.form-img {
  width: 35%;
}

.contact-form input[type="checkbox"] {
  margin:0 5px 0 10px;
}

.contact-form input[type="checkbox"]:nth-of-type(1) {
  margin-left: 0px;
}

h2.section-heading {
 margin-bottom:0rem;
}

.footer {
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
}

.footer-info{
  position: relative;
  height: 50%;
  margin-top: 0;
  padding: 0 0 1rem 0;
}

.footer-info p {
  font-size: .8rem;
}

.footer-info small {
  font-size: .7rem;
}

.footer-nav ul li {
  padding-bottom: 0;
  margin-bottom: 0;
}
}



@media screen and (max-width:768px){
 
  .banner-section {
    position: relative;
    z-index: -1;
    
  }

.section-2 {
  height: 60vh;
}
.bg-img {
  margin: 0 auto;
  opacity: 1;
  transform: scale(1);
  width: 100%;
  height: 50vh;
  top:3rem;
}

.banner {
  margin:0 auto;
  position: absolute;
  opacity: 1;
  height: 40vh;
  width: 90%;
}

.section-2-text {
  top: -1.5rem;
  opacity: 1;
}

.section-2-btn {
  top: -2rem;
  left: 28vw;
  opacity: 1;
  transform: scale(1);
  width: 120px;
  font-size: 1.2rem;
  line-height: 2.1rem;
  padding: 0 5px 2px;
  
} 

.nav {
  display: none;
}

.section-3 {
  height: auto;
  background-color: #eee;
  border: none;
}
.section-3 h2{
  top: 0;
}

.about-us{
  top: 0;
  font-size: 1rem;
  width: 90%;
}
.section-4 {
  height: 100vh;
  padding-bottom: 3rem;
}
.section-4 h2{
  margin-bottom: 3rem;
}

.panel h3{
  width: 65%;
}
.example {
  margin-bottom: 5rem;
  height: auto;
}
.site {
  height: 60%;
}

.site-description {
  height: 40%;
}

.section-6 h2.section-heading{
  font-size: 2.5rem;
  padding-top: 2rem;
}
.form-container {
  width: 90%;
}

}
@media screen and (max-width:600px){
  @keyframes spin {
    0% {
      width: 75vw;
      box-shadow:
        0 0 0 rgb(0,0,0);
      animation-timing-function: ease-in;
    }
    35% {
        background-color: rgba(0,0,0,0);
    }

    
    49.999% {
      width: 0.1rem;
      box-shadow:
        0.05rem 0 0 1rem rgb(0,0,0),
        0.1rem 0 0 1rem rgb(0,0,0),
        0.15rem 0 0 1rem rgb(0,0,0),
        0.2rem 0 0 1rem rgb(0,0,0),
        0.25rem 0 0 1rem rgb(0,0,0),
        0.3rem 0 0 1rem rgb(0,0,0),
        0.35rem 0 0 1rem rgb(0,0,0),
        0.4rem 0 0 1rem rgb(0,0,0),
        0.45rem 0 0 1rem rgb(0,0,0),
        0.5rem 0 0 1rem rgb(0,0,0),
        0.55rem 0 0 1rem rgb(0,0,0),
        0.6rem 0 0 1rem rgb(0,0,0),
        0.65rem 0 0 1rem rgb(0,0,0),
        0.7rem 0 0 1rem rgb(0,0,0),
        0.75rem 0 0 1rem rgb(0,0,0);
      transform: translateX(-0.375rem);
      background-color: rgba(0,0,0,.75);
      animation-timing-function: linear;
    }
    
    50.001% {
      width: 0.1rem;
      box-shadow:
        -0.05rem 0 0 1rem rgb(0,0,0),
        -0.1rem 0 0 1rem rgb(0,0,0),
        -0.15rem 0 0 1rem rgb(0,0,0),
        -0.2rem 0 0 1rem rgb(0,0,0),
        -0.25rem 0 0 1rem rgb(0,0,0),
        -0.3rem 0 0 1rem rgb(0,0,0),
        -0.35rem 0 0 1rem rgb(0,0,0),
        -0.4rem 0 0 1rem rgb(0,0,0),
        -0.45rem 0 0 1rem rgb(0,0,0),
        -0.5rem 0 0 1rem rgb(0,0,0),
        -0.55rem 0 0 1rem rgb(0,0,0),
        -0.6rem 0 0 1rem rgb(0,0,0),
        -0.65rem 0 0 1rem rgb(0,0,0),
        -0.7rem 0 0 1rem rgb(0,0,0),
        -0.75rem 0 0 1rem rgb(0,0,0);
      transform: translateX(0.375rem);
       background-color: #000;
      animation-timing-function: ease-out;
    }

    70% {
         background-color: rgba(0,0,0,0);
    }
    
    100% {
      width: 75vw;
      box-shadow:
        0 0 0 rgb(0,0,0);
    }
  }
  .logo {
    width: 75vw;
    height: 75vw;

  }

  .logo::before {
    width:75vw;
    height:75vw;
  }

.bg-img {
  width: 95%;
}

.section-2-text {
  top: 0;
  left: 2rem;
}
.section-4 {
  height: 400vh;
}
.panels {
  flex-direction: column;
  width: 90%;
  height: 300vh;
}
.panel {
  width: 100%;
  height: 100vh;
  min-height: 90vh;
  flex: 5;
}
.features {
  opacity: 1;
}

.panel h3 {
  position: absolute;
  background-color: rgba(255,255,255,.85);
  font-size: 2rem;
  line-height: 4rem;
  padding: 0;
  margin-top: 2rem;
  width: 90%;
  max-height: 4rem;
  letter-spacing: 5px;
  margin: 2rem auto;
}
.form-container {
  flex-direction: column;
}
.form-img {
  width:100%;
  height: 200px;
  background-image: url('media/mobile-form-img.png');
}
.contact-form {
  padding-top: 1rem;
  width: 100%;
  height: 75%;
  box-shadow: 
  2rem 2rem 3rem rgba(100, 100, 100, 0.08),
  -2rem 2rem 3rem rgba(100, 100, 100, 0.08);
}
.contact-form input[type="submit"]{
  align-self: center;
  width: 200px;
  max-width: 80%;
}
.footer-nav{
  font-size: .9rem;
  margin: 0;
  padding-left: 0;
}

}

@media screen and (min-width:600px){
  .mobile-nav {
    display: none;
  }
}


