* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #1a2537;
  --secondary-gold: #bfa579;
  --default-white: #ffffff;
  --text-field: #fffdfd;
  --placeholder-color: #575757;
  --form-backdrop: rgba(0, 0, 0, 0.27);
}

body {
  background: var(--primary-blue);
  overflow-x: hidden;
  font-family: "Inter", sans-serif; 
  font-size: 1rem;
  position: relative;
  color: var(--default-white);
}

.entire-top {
  height: calc(100vh + 10rem);
}

.theBody {
  width: 100%;
  height: calc(100vh + 10rem);
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -10;
}

.logo {
  width: 7rem;
  padding: 1rem;
  margin: 0 2rem;
}

.top-nav-section {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

.opening-block1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 50vw;
  height: calc(100% - 6rem);
}

.provoking-box-img {
  width: 18rem;
}

.text-box {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 50%;
}

.company-adWord {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 16px;
}

.adCopyBodyText {
  font-size: 26px;
  font-family: cursive;
  font-style: italic;
  font-weight: normal;
  width: 90%;
  max-width: 500px;
}

.arrowIconBox img {
  height: 1.2rem;
  width: 5rem;
  cursor: pointer;
  display: none;
}

.navArrw {
  display: none;
}

.formBox h3 {
  text-align: center;
  margin: 0.4rem 0 2rem;
}

.topBannerForm {
  background: var(--primary-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  overflow-x: hidden;
  display: none;
}

.topBannerFormimg {
  width: 100vw;
  max-width: 600px;
}

.formBox {
  background-color: var(--form-backdrop);
  border: 0.5px solid var(--secondary-gold);
  border-radius: 10px;
  box-shadow: 3px 3px 5px var(--secondary-gold);
  height: 100%;
  line-height: 180%;
  padding: 0.5rem 0.8rem;
}

#talkEventForm input {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0.8rem 0;
  height: 51px;
  border-radius: 8px;
  padding: 0 0.8rem;
  font-size: 0.9rem;
  font-weight: bold;
  width: 100%;
  border: none;
  color: var(--placeholder-color);
}

#talkEventForm textarea {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0.8rem 0;
  width: 100%;
  resize: none;
  border-radius: 8px;
  border: none;
  padding: 0.8rem;
  font-size: 0.9rem;
}

.btnsBox {
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#talkEventForm button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0.8rem 0;
  width: 100%;
  border: none;
  padding: 0.8rem 2rem;
  font-weight: bold;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  cursor: pointer;
  border-radius: 8px;
}

.submit:hover,.submit:active{
  opacity: 0.89;
  scale: 0.9;
}
.submit {
  background: var(--secondary-gold);
  color: var(--default-white);
}

#talkEventForm .cancel {
  background: transparent;
  color: var(--default-white);
  width: 50%;
}

#talkEventForm {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.form-block2 {
  max-width: 400px;
  position: absolute;
  width: 40vw;
  z-index: 1;
  margin-top: 4rem;
  top: 0;
  right: 40px;
}

.footerBanner {
  background: var(--primary-blue);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.footerBanner img {
  width: 95vw;
  max-width: 600px;
}

.socialMedias a img {
  width: 1.4rem;
  margin: 0.6rem;
  height: 1.4rem;
}

.poweredByBox {
  text-align: center;
  margin: 1rem 0;
  display: flex;
  flex-direction: column;
  line-height: 200%;
}

.poweredByBox a {
  color: var(--default-white);
}

.centerBox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.9rem 0;
}

footer {
  background: var(--primary-blue);
  margin-top: 1rem;
  margin-bottom: -20px;
  padding-bottom: 20px;
}

@media screen and (max-width: 900px) {

  body {
    background: url('./images/manOnStage.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-size: cover; 
    background-position: center;
  }

  .mainlogo {
    display: none;
  }

  .adCopyBodyText {
    margin-left: 5%;
  }

  .opening-block1 {
    display: absolute;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    transform: translateX(0%);
    background: url("./images/manOnStage.jpg");
    background-repeat: no-repeat;
    background-size: cover; 
    background-position: center;
    top: 0;
    left: 0;
    transition: all 0.5s ease;
    margin: 0;
    width: 100vw;
    height: 104%;
    z-index: 4;
  }

  .form-block2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    right: 50%;
    transform: translateX(50%);
  }

  .arrowIconBox img {
    display: block;
    margin-left: 50%;
    transform: translateX(-60%);
    cursor: pointer;
    animation: push 0.7s ease-in-out infinite;
  }

  @keyframes push {
    0% {
      transform: translateX(-60%);
    }

    50% {
      transform: translateX(-45%);
    }

    100% {
      transform: translateX(-60%);
    }
  }

  .form-block2 {
    z-index: -1;
  }

  .formBox {
    z-index: 0;
    width: 95vw;
  }

  .slideIn {
    transform: translateX(-100%);
  }

  .show {
    z-index: 5;
  }

  .topBannerForm {
    background: var(--primary-blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
  }
  
  .topBannerFormimg {
    width: 100vw;
    max-width: 600px;
  }

  .form-block2 {
    margin-top: -0.5rem;
  }

  .theBody {
    z-index: -1s;
  }
  
}
