@import url('https://fonts.googleapis.com/css2?family=Familjen+Grotesk:wght@400;600;700&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
ul {
  margin-left: 20px;
}

body {
  font-family: 'Familjen Grotesk', sans-serif;
  background: #000;
  color: #fff;
}

body2 {
  font-family: 'Courier New', monospace;
  background: #000;
  color: #fff;
}

/*menu list item colors*/
a {
  text-decoration: none;
  color: #fff;
}

.stats-container {
  padding-bottom: 70px;
}


ul {
  list-style: none;
}

  /* Header/Navbar */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 98;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  height: 100px;
  padding: 0 30px;
  animation: fadeInUp .5s ease-in-out .05s;
  animation-fill-mode: both;
}/* Logo */
.logo {
  width: 120px;
  height: 113%;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
}

/* Desktop Menu */
.desktop-main-menu {
  margin-right: 50px;
}

/* Desktop Menu list */
.desktop-main-menu ul {
  display: flex;
}

/* Desktop Menu list item*/
.desktop-main-menu ul li {
  position: relative;
  margin-right: 20px;
  padding-bottom: 2px;
}

/* Menu item bottom border animation */
.desktop-main-menu ul li a::after {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  /*underline color on menu list items on hover*/
  background:#fff;
  transform: scaleX(0);
  transition: transform 0s cubic-bezier(0.19, 1, 0.22, 1);
  transform-origin: center;

  
}

/* Menu item bottom border animation on hover */
.desktop-main-menu ul li a:hover::after {
    transform: scaleX(1);
    transform-origin:center;
    transition-duration: 1s;
}

.desktop-main-menu ul li a:hover {
    /*menu list color on hover */
    color: #1d1c1c;
}

/*sections code*/
section{
    position: relative;
    height: 100vh;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    text-transform: uppercase;
    color:#fff;
}

section2{
  position: relative;
  height: 100vh;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  text-transform: uppercase;
  color:#fff;
  padding: 100px;
}

.section-inner{
    position: absolute;
    bottom:200px;
    left: 150px;
    max-width:560px;
    ;
}

.section-inner h4 {
    font-size: 22px;
    margin-bottom: 5%;
    font-weight: 300;
    animation: fadeInUp .5s ease-in-out;
    animation-fill-mode: both;
}

.section-inner h2 {
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: fadeInUp .5s ease-in-out .4s;
    animation-fill-mode: both;  
}

.section-inner a {
    animation: fadeInUp .5s ease-in-out .8s;
    animation-fill-mode: both;
}
/*background images*/
.section-a {
  background-image: none;
  /* background-image: url('../img/section-a.webp');  */ 
}
.section-b {
    background-image: url('../img/clock.jpg');
}
.section-c {
    background-image: url('../img/mountain2.jpg');
}
.section-d {
    background-image: url('../img/river.jpg');
}
.section-e {
    background-image: url('../img/beach.jpg');
}
.section-f {
    background-image: url('../img/sunset.jpg');
}


/*button animation*/
.btn{
    position: relative;
    display: inline-block;
    cursor:pointer;
    text-align: center;
    min-width: 130px;
    padding: 15px 50px;
    margin-top: 10px;
    border: 3px solid #fff;
    text-transform: uppercase;
    font-weight: bold;
    overflow: hidden;
    z-index: 2;
    animation: fadeInUp .5s;
}

/*text color on botton hover*/
.btn:hover span{
    color: #000;
}

.btn .hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: -1;
    transform: translateX(-100%);
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
  }

  .btn:hover .hover{
    transform: translateX(0);
  }

  /*Footer*/
  footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    padding: 8px 0;
    z-index: 97;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }

  footer ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 4px;
  }

  footer ul li {
    color: #aaa;
    text-transform: uppercase;
    font-size: 11px;
    line-height: 1.2;
    white-space: nowrap;
    margin: 0;
    padding: 0;
    text-align: center;
  }

  footer ul li a {
    color: #fff;
    transition: color 0.3s;
    font-size: 11px;
  }

  footer ul li a:hover {
    color:#aaa;
  }

  /* Hamburger Menu */
.hamburger {
    position: fixed;
    top: 34px;
    right: 30px;
    z-index: 99;
    cursor: pointer;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hamburger-top,
  .hamburger-middle,
  .hamburger-bottom {
    position: absolute;
    width: 24px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    transform-origin: center;
  }
  
  .hamburger-top {
    transform: translateY(-6px);
  }

  .hamburger-bottom {
    transform: translateY(6px);
  }

  /*transition hamburger to X when open*/
  .open .hamburger-top {
    transform: rotate(45deg);
    background: #fff;
  }

  .open .hamburger-middle {
    opacity: 0;
  }

  .open .hamburger-bottom {
    transform: rotate(-45deg);
    background: #fff;
  }

  /*dark overlay*/
  .overlay-show {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.5);
    z-index: 3;

  }

  /*stop scrolling when menu is selected*/
  .stop-scrolling {
    overflow: hidden;
  }

  /*hide mobile menu items*/

  .mobile-only {
    display: none;
  }

  /*mobile menu*/
  .mobile-main-menu{
    position: fixed;
    top:0;
    right:0;
    width: 350px;
    height:100%;
    z-index: 4;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;

    /*move menu to open/close */
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.19,1,.22,1);
  }

   /*move menu from right */
   .show-menu{
    transform: translateX(0);
   }
  .mobile-main-menu ul {
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    padding: 50px;
    width: 100%; 
  }

  .mobile-main-menu ul li{
    margin-bottom: 20px;
    font-size: 18px;
    text-transform: uppercase;
    border-bottom: 1px #fff dotted;
    width: 100%;
    text-align: right;
    padding-bottom: 8px;
  }

  /*mobile menu color transition*/
  .mobile-main-menu ul li a{
    color: #fff;
    transition: color 0.6s;
  }

  /*mobile menu color transition on hover to gray*/
  .mobile-main-menu ul li a:hover{
    color: #aaa;
  }

  @media (max-width: 960px) {
    .bg-vid {
      background-image: url('../img/timesquare.jpg');
      background-size: cover;
      background-position: center;
      height: 60vh;
    }
    
    #myVideo {
      display: none;
    }
  }

  /*Inner Pages*/
  .bg-river{
    background-image: url('../img/river.jpg')
  }

  
  .bg-dragon{
    background-image: url('../img/clock.jpg')
  }

  /*Falcon 9 inner page animation*/
  .section-animate{
    animation: fadeIn 2s ease-in;
  }

  /*positions text for inner page*/
  .section-inner-center{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    text-align: center;
    width: 80%;
    z-index: 1;
  }

  /*text in inner page*/
  .section-inner-center h3{
    font-size: 100px;
    margin-bottom: 15px;
    animation: fadeInUp 0.5s ease-in-out;
  }

  .section-inner-center p{
    font-size: 20px;
    animation: fadeInUp 0.5s ease-in-out 0.2s;
    animation-fill-mode: both;
  }

  @media (max-width: 960px) {
    .section-inner-center {
      top: 110px;
      transform: translateX(-50%);
    }
    
    .section-inner-center h3 {
      font-size: 40px;
      margin-bottom: 10px;
    }
    
    .section-inner-center p {
      font-size: 14px;
    }

    .comingsoon-center {
      top: 58vh;
      transform: translate(-50%, -50%);
    }
  }

  /*Stats*/

  .stats{
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    text-transform: uppercase;
    padding: 40px 20px 60px;
  }

   /*Stats span is the actual number*/
   .stats span{
    color: lightgreen;
   }

   .stats div span{
    font-size: 120px;
    line-height: 1;
    display: block;
    margin-bottom: 10px;
  }

  .stats div h4{
    font-size: 20px;
    font-weight: 300;
    line-height: 1.4;
  }



  /* text animations sliding in*/

  .scroll-arrow {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeBounce 2s infinite;
  }

  @keyframes fadeInUp{
    0%{
        opacity: 0;
        transform: translateY(140px);
    }

    100%{
        opacity: 100%;
        transform: translateY(0px);
    }
  }

  @keyframes fadeIn{
    0%{
        opacity: 0;
        
    }

    100%{
        opacity: 100%;
        
    }
  }


  /*scroll down arrow animation*/
  @keyframes fadeBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        opacity: 0;
        transform: translateY(-20px)
    }

    40%{
        opacity:1;
        transform: translateY(0)
    }
    
  }

  /*media queries*/

  @media(max-width: 600px){
    .popup {
      width: 92%;
      padding: 1.25rem;
      margin: 0;
      top: 50%;
      transform: translate(-50%, -50%) translateZ(0);
      -webkit-transform: translate(-50%, -50%) translateZ(0);
    }
    
    .popup p, 
    .popup ul li {
      font-size: 0.8125rem;
      line-height: 1.4;
      margin: 0.5em 0;
      padding-right: 0.3125rem;
    }
    
    .popup h2 {
      font-size: 1.125rem;
      margin: 0 0 0.75em 0;
      padding-right: 0.3125rem;
    }
    
    .popup ul {
      margin: 0.5em 0;
      padding-left: 1em;
    }
    
    .popup button {
      font-size: 1rem;
      padding: 0.75rem 2.5rem;
      margin: 0.3125rem 0;
      width: auto;
      min-width: 120px;
    }
    
    .section-inner {
        bottom: 75px;
        left: 20px;
        padding-bottom: 50px;
    }

    .section-inner h2 {
        font-size: 35px;
    }

    footer {
        padding: 6px 0;
    }

    footer ul {
        gap: 2px;
    }

    footer ul li {
        font-size: 10px;
    }

    footer ul li a {
        font-size: 10px;
    }

    .logo{
        width: 150px;
        margin: auto;
        
    }

    .section-inner-center {
        width: 80%;
    }

    .section-inner-center h3{
        font-size: 50px;
    }

  .section-b {
    background-image: url('../img/big-ben-mobile.jpg');
    background-position: center center;
    background-size: cover;
  }

  .section-b::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 0;
  }

  .section-b .section-inner {
    top: 24%;
    bottom: auto;
    left: 18px;
    right: 18px;
    margin: 0 auto;
    max-width: none;
    transform: none;
    background: rgba(0, 0, 0, 0.72);
    padding: 26px 22px;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    z-index: 1;
  }

  .section-b .section-inner h4,
  .section-b .section-inner h2,
  .section-b .section-inner a {
    position: relative;
    z-index: 2;
  }

  .section-f {
    background-image: url('../img/mountains-mobile.jpg');
    background-position: center center;
    background-size: cover;
  }

  .contact-form-section {
    width: 92%;
    margin: 120px auto 100px;
    padding: 36px 24px 52px;
  }

  .contact-form-section form {
    gap: 16px;
  }

  .contact-form-section .choice-toggle {
    gap: 10px;
  }

  .contact-form-section .choice-toggle label {
    padding: 10px 0;
    font-size: 11px;
  }

  .contact-form-section .form-field label {
    font-size: 11px;
    letter-spacing: 0.04em;
  }

  .contact-form-section input,
  .contact-form-section textarea,
  .contact-form-section select {
    font-size: 14px;
  }

  .contact-form-section textarea {
    min-height: 140px;
  }

    /*stats*/

  .stats{
    flex-direction: column;
    padding-bottom: 60px;
  }

    .stats div{
        margin-bottom: 20px;
    }

    .stats div span {
        font-size: 90px;
        line-height: 1;
    }

    .stats div h4 {
        font-size: 16px;
        margin-top: 5px;
    }

  }

  @media(max-width: 960px){
    /*hide desktop menu*/
    .desktop-main-menu {
        display: none;
    }
    .mobile-only{
        display: block;
    }    
    .hamburger {
        top: 28px;
        right: 20px;
        width: 28px;
        height: 28px;
    }
    .hamburger-top,
    .hamburger-middle,
    .hamburger-bottom {
        width: 20px;
        height: 2px;
        left: 4px;
    }
    .hamburger-top {
        transform: translateY(-5px);
    }
    .hamburger-bottom {
        transform: translateY(5px);
    }
    .open .hamburger-top {
        transform: rotate(45deg);
    }
    .open .hamburger-bottom {
        transform: rotate(-45deg);
    }
    .section-inner-center h3{
        font-size: 75px;
    }

}



 li {
  display: block;
  transition-duration: 1s;
 }
 
 li:hover {
   cursor: pointer;
 }
 
 ul li ul {
   visibility: hidden;
   opacity: 0;
   position: absolute;
   /* transition: all 0.5s ease; */
   transition: margin-right 50s ease-in-out 1.5s;
   margin-top: 1rem;
   left: 0;
   display: none;
 }
 
 ul li:hover > ul,
 ul li:focus-within > ul,
 ul li ul:hover {
   visibility: visible;
   opacity: 1;
   display: block;
 }
 
 ul li ul li {
   clear: both;
   width: 100%;
 } 

 .video-bg {
  /* position:fixed;
  z-index:-1;
  width:100%;
  height:auto; */

  /* position: fixed;
  right: 0;
  bottom: 0; 
  min-width: 100%;
  min-height: 100vh; */

  z-index: -1;
  object-fit: cover;
  position: absolute;
  top: 1000;
  left: 0;
  height: 100%;
  width: 100%;

  /* position: fixed;
  right: 0;
  bottom: 0;
  width: auto;
  min-width: 100%;
  height: auto;
  min-height: 100%;
  background-attachment: fixed;
  z-index: -100;
  background: transparent url(video-bg.jpg); 
  background-size: cover;*/
 }
 video {
  display: block;
}
.video-container {
  z-index: -100;
  width: 100%;
  height: 100%;
  overflow: visible;
  position: fixed;
  top: 0;
  right: 0;
  
}

 .site-footer {
  background: #000;
}

/*disclaimer*/

*,
*:before,
*:after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.popup {
    background-color: rgba(0, 0, 0, 0.95);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(0);
    width: 92%;
    max-width: 600px;
    max-height: 85vh;
    border-radius: 8px;
    display: none;
    padding: 1.25rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 99999;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overscroll-behavior: contain;
    will-change: transform;
    -webkit-transform: translate(-50%, -50%) translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.popup .btn-container {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 15px;
    padding: 5px 0;
}

.popup button {
    position: relative;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    min-width: 120px;
    padding: 12px 40px;
    margin: 0;
    border: 2px solid #fff;
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
    background: transparent;
    font-family: 'Familjen Grotesk', sans-serif;
    font-size: 0.9375rem;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 100000;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.popup button:hover {
    background-color: #fff;
    color: #000;
}

.popup button .hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: -1;
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.popup button:hover .hover {
    transform: translateX(0);
}

.popup p {
    font-size: 0.8125rem;
    text-align: justify;
    color: #fff;
    margin: 0.5em 0;
    line-height: 1.4;
    font-family: 'Familjen Grotesk', sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    padding-right: 0.3125rem;
}

.popup ul li {
    font-size: 0.8125rem;
    text-align: justify;
    color: #fff;
    margin: 0.5em 0;
    line-height: 1.4;
    display: flex;
    word-wrap: break-word;
    overflow-wrap: break-word;
    position: relative;
    padding-left: 0.3em;
    padding-right: 0.3125rem;
    list-style: none;
}

.popup ul li::before {
    content: '';
    position: relative;
    width: 3px;
    height: 3px;
    background-color: #fff;
    border-radius: 50%;
    margin-right: 0.75em;
    margin-top: 0.6em;
    flex-shrink: 0;
    opacity: 0.8;
}

.popup ul {
    padding-left: 0.5em;
    margin: 0.5em 0;
    list-style-position: outside;
}

.popup h2 {
    font-size: 1.125rem;
    text-align: left;
    color: #fff;
    margin: 0 0 0.75em 0;
    line-height: 1.3;
    font-family: 'Familjen Grotesk', sans-serif;
    text-transform: uppercase;
    padding-right: 0.3125rem;
}

#myVideo {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  object-fit: cover;
  touch-action: none;
}


input,
textarea,
label {
  font-family: 'Poppins',
      sans-serif;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.center:hover {
  transform: scale(1.02);
}

.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.modal-content {
  max-width: 95%;
  max-height: 95vh;
  margin: auto;
  display: block;
  position: relative;
}

.modal-content img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 95vh;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 5px 10px;
  z-index: 10000;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: #aaa;
}

/* Mobile-specific modal enhancements */
@media (max-width: 768px) {
  .image-modal {
    padding: 5px;
    background-color: rgba(0, 0, 0, 0.98);
  }
  
  .modal-content {
    max-width: 100%;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  
  .modal-content img {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
}

.contact-form-section {
  position: relative;
  width: min(90%, 520px);
  margin: 150px auto 140px;
  padding: 48px 36px 64px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}

.contact-form-section form {
  max-width: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form-section .form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form-section .form-field label {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #f5f5f5;
}

.contact-form-section textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form-section select {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid #828282;
  border-radius: 4px;
  padding: 12px 10px;
  color: #fff;
}

.contact-form-section select:focus {
  outline: 1px solid #f5f5f5;
}

.contact-form-section .choice-toggle {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.contact-form-section .choice-toggle input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-form-section .choice-toggle label {
  flex: 1;
  text-align: center;
  padding: 12px 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #f5f5f5;
  letter-spacing: 0.08em;
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form-section .choice-toggle label:hover {
  background: rgba(255, 255, 255, 0.14);
}

.contact-form-section .choice-toggle input[type=radio]:checked + label {
  background: #fff;
  color: #000;
  border-color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.contact-form-section .submit-field {
  margin-top: 8px;
}

.contact-form-section .submit-field input[type=submit] {
  width: 100%;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 5% 5% calc(5% + 60px) 5%;
}

.container li {
  color:#FFF;
}

form {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
  padding: 20px 0;
}

input,
textarea,
label {
  display: block;
  margin: 0 auto;
  width: 100%;
  color: white;
  font-size: 10px;
}

input,
textarea {
  background-color: transparent;
  border: 0;
  border-bottom: 2px solid #828282;
}

input[type=submit] {
  background-color: #545557;
  padding: 15px 0;
  color: white;
  font-size: 10px;
  border-bottom: none;
  margin-top: 30px;
  cursor: pointer;
  transition: all .3s ease;
}

input[type=submit]:hover {
  background: #FFF;
  color: #1b1c1e;
}

input,
textarea {
  color: white;
  font-size: 10px;
  padding: 10px;
}

input:focus,
textarea:focus {
  outline: 1px solid #828282;
}

