@import url('https://fonts.googleapis.com/css2?family=Crimson+Text&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-image: url(https://i.ibb.co/ZN5q8vq/Parrallex-Background-Tampa-Web-Designer-2.png);
  background-repeat: no-repeat; 
  background-size: cover; 
  background-position: center center;
  background-attachment: fixed;
  overflow-x: hidden;
}

/* Begin CSS for Responsive Navbar */

nav {
  background: #1b1b1b;
  border-bottom: 1px solid gold;
  position: fixed;  /* Use this to make the nav bar sticky*/
  z-index: 1; /* Use this to make the nav bar sticky*/
  width: 100%;
}

nav:after {
  content: '';
  clear: both;
  display: table;
}

nav .logo {
  float: left;
  color: gold;
  font-size: 45px;
  font-weight: 600;
  line-height: 70px;
  padding-left: 60px;
  font-family: 'Dancing Script', cursive;
}

nav ul {
  float: right;
  margin-right: 40px;
  list-style: none;
  position: relative;
}

nav ul li {
  float: left;
  display: inline-block;
  background: #1b1b1b;
  margin: 0 5px;
}

nav ul li a {
  color: white;
  line-height: 70px;
  text-decoration: none;
  font-size: 18px;
  padding: 8px 15px;
  font-family: 'Fraunces', serif;
}

nav ul li a:hover {
  color: cyan;
  border-radius: 5px;
  box-shadow:  0 0 5px #33ffff,
               0 0 10px #66ffff;
}

nav ul ul li a:hover {
  box-shadow: none;
}

nav ul ul {
  position: absolute;
  top: 90px;
  border-top: 3px solid cyan;
  opacity: 0;
  visibility: hidden;
  transition: top .3s;
}

nav ul ul ul {
  border-top: none;
}

nav ul li:hover > ul {
  top: 70px;
  opacity: 1;
  visibility: visible;
}

nav ul ul li {
  position: relative;
  margin: 0px;
  width: 150px;
  float: none;
  display: list-item;
  border-bottom: 1px solid rgba(0,0,0,0.3);
}

nav ul ul li a {
  line-height: 50px;
}

nav ul ul ul li {
  position: relative;
  top: -60px;
  left: 150px;
}

.show,.icon, input[type = "checkbox"] {
  display: none;
}

.fa-plus {
  font-size: 15px;
  margin-left: 40px;
}

@media all and (max-width: 968px) {

  body {
    background-image: url(https://i.ibb.co/ZN5q8vq/Parrallex-Background-Tampa-Web-Designer-2.png);
    background-repeat: no-repeat; 
    background-size: cover; 
    background-position: center center;
    background-attachment: fixed;
    overflow-x: hidden;
  }

  nav ul {
    margin-right: 0px;
    float: left;
  }

  nav .logo {
    padding-left: 30px;
    width: 100%;
  }

  .show + a, ul {
    display: none;
  }

  nav ul li,nav ul ul li {
    display: block;
    width: 100%;
  }

  nav ul li a:hover {
    box-shadow: none;
  }

  .show {
    display: block;
    color: white;
    font-size: 18px;
    padding: 0 20px;
    line-height: 70px;
    cursor: pointer;
  }

  .show:hover {
    color: cyan;
  }

  .icon {
    display: block;
    color: white;
    position: absolute;
    top: 0;
    right: 40px;
    line-height: 70px;
    cursor: pointer;
    font-size: 25px;
  }

  nav ul ul {
    top: 70px;
    border-top: 0px;
    float: none;
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
  }

  nav ul ul a {
    padding-left: 40px;
  }

  nav ul ul ul a {
    padding-left: 80px;
  }

  nav ul ul ul li {
    position: static;
  }

  [id^=btn]:checked + ul {
    display: block;
  }

  nav ul ul li {
    border-bottom: 0px;
  }

 span.cancel:before {
    content: '\f00d';
  }
}

.content {
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
}

header {
  font-size: 35px;
  font-weight: 600;
  padding: 10px 0;
}

/* End CSS for Responsive Navbar */

.contact-section {
  background: transparent;
  padding: 80px 0;
  text-align: center;
  margin-top: -90px;
}

.inner-width {
  max-width: 600px;
  margin: auto;
  padding: 0 20px;
}

.inner-width p {
  color: white;
  font-family: 'Volkhov', serif;
  margin-top: -30px;
}

.contact-section h1 {
  font-size: 36px;
  color: white;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 400;
  font-family: 'Noto Serif', serif;
}

.name,.email,.message {
  background: none;
  border: none;
  outline: none;
  border-bottom: 2px solid gold;
  color: white;
  padding: 10px 6px;
  font-size: 16px;
  margin-bottom: 40px;
  resize: none;
  font-family: 'Noto Serif', serif;
  margin-top: 15px;
}

.name {
  float: left;
  width: 270px;
}

.email {
  float: right;
  width: 270px;
}

.message {
  min-width: 100%;
  max-width: 100%;
}

.contact-section button {
  background: none;
  color: #70a1ff;
  border: 1px solid #70a1ff;
  padding: 12px 40px;
  border-radius: 8px;
  text-transform: uppercase;
  font-size: 14px;
  transition: 0.4s linear;
  cursor: pointer;
  outline: none;
  font-family: 'Nanum Gothic', sans-serif;
  font-weight: bold;
}

.contact-section button:hover {
  background: #70a1ff;
  color: #fff;
}

@media screen and (max-width:600px) {
  .name,.email{
    width: 100%;
  }

  #email {
    width: 100%;
  }
}

.container {
  background-color:rgba(0,0,0,0.4);
  padding: 100px 40px;
  text-align: center;
  color: white;
  margin-top: -1%;
}

.container p {
  max-width: 600px;
  margin: 40px auto;
  font-size: 17px;
  font-weight: 300;
  font-family: 'Volkhov', serif;
}

.container h1 {
  letter-spacing: 4px;
  font-weight: 400;
  font-family: 'Noto Serif', serif;
  text-transform: uppercase;
}

.email-box {
  height: 40px;
  justify-content: center;
  display: inline-flex; 
}

.email-box i {
  background: #2f3542;
  width: 40px;
  line-height: 40px;
}

.tbox,.btn {
  border: none;
  outline: none;
}

.tbox {
  width: 0px;
  transition: 0.6s;
  font-family: 'Noto Serif', serif;
  font-size: 16px;
}

.email-box:hover > .tbox,.tbox:focus {
  width: 300px;
  padding: 0 10px;
}

.btn {
  background: #2f3542;
  color: white;
  padding: 0 10px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Nanum Gothic', sans-serif;
  font-weight: bold;
}

.btn:hover {
  transition: 0.5s;
  background-color: rgb(122, 0, 0);
  color: white;
}

/* Footer */

footer {
  background: #222;
  color: #fff;
  padding: 60px 0;
}

.footer-container {
  width: 100%;
  max-width: 1100px;
  padding: 0 20px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-content h3 {
  font-size: 20px;
  color: rgb(3, 192, 3);
}

.footer-content {
  background-color: white;
}

.end {
  color: white;
  text-align: center;
  font-size: 20px;
  font-family: 'Crimson Text', serif;
}

hr {
  opacity: .3;
}

@media (max-width:640px) {
  .items{
  flex-basis: 80%;
  margin: auto;
 }
}