@import url(../fonts/roboto/stylesheet.css);
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200;400;700&display=swap");
body {
  font-family: 'robotoregular'; }

.bold {
  font-family: 'robotobold'; }

.black {
  font-family: 'robotoblack'; }

.upper {
  text-transform: uppercase; }

.py-50 {
  padding-top: 50px;
  padding-bottom: 50px; }

.py-100 {
  padding-top: 100px;
  padding-bottom: 100px; }

.pt-50 {
  padding-top: 50px; }

.pb-50 {
  padding-bottom: 50px; }

.pt-100 {
  padding-top: 100px; }

.pb-100 {
  padding-bottom: 100px; }

body {
  font-family: 'Oswald', sans-serif; }

.loader {
  position: fixed;
  top: 0;
  left: 0;
  background: white;
  width: 100%;
  height: 100vh;
  z-index: 11;
  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;
  -webkit-transition: all 1s linear;
  transition: all 1s linear; }
  .loader img {
    max-width: 150px; }

.activities {
  padding: 3px 12px; }
  .activities span {
    margin-left: 2px;
    margin-right: 2px; }

#body {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  #body #logo {
    max-width: 175px;
    height: auto;
    margin-bottom: 50px; }
  #body #contactBtn {
    margin-top: 50px; }
  #body #insta {
    width: 25px;
    height: auto;
    margin-top: 50px; }

#contact {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  background: #b79333;
  height: 100vh;
  padding: 50px;
  -webkit-transition: all .5s linear;
  transition: all .5s linear;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  z-index: 10;
  padding-top: 20px; }
  #contact.active {
    -webkit-transform: translate(0);
            transform: translate(0); }
  #contact a {
    position: absolute;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%); }
  #contact img {
    width: 35px;
    height: auto; }

.btn-gold {
  background: #b79333;
  color: white;
  -webkit-transition: all .5s linear;
  transition: all .5s linear;
  font-weight: 200;
  letter-spacing: 2px; }
  .btn-gold:hover {
    color: white; }

form {
  margin-top: 50px; }

.form-control {
  background: transparent;
  border: none;
  border-radius: 0px !important;
  border-bottom: 1px solid white;
  font-size: .8em;
  color: aliceblue;
  letter-spacing: 1px; }
  .form-control:focus {
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    background: transparent;
    border-bottom: 1px solid white;
    color: aliceblue; }

label {
  font-size: .8em; }

#thanx {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #b79333;
  color: white;
  text-align: center;
  padding: 100px;
  z-index: 11;
  -webkit-transition: all .5s linear;
  transition: all .5s linear;
  -webkit-transform: translateY(35px);
          transform: translateY(35px);
  opacity: 0;
  visibility: hidden; }
  #thanx.active {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
            transform: translateY(0); }

@media only screen and (max-width: 530px) {
  #body {
    padding-left: 0px;
    padding-right: 0px; }

  .activities span {
    font-size: .7em; } }
