@font-face {
  font-family: ephesis;
  src: url(./Fonts/Ephesis/Ephesis-Regular.ttf);
}
@font-face {
  font-family: roboto;
  src: url(./Fonts/Roboto/Roboto-Black.ttf);
}
@font-face {
  font-family: dancingScript;
  src: url(./Fonts/Dancing_Script/DancingScript-VariableFont_wght.ttf);
}
@font-face {
  font-family: monserat;
  src: url(./Fonts/Montserrat/static/Montserrat-ExtraLight.ttf);
}
@font-face {
  font-family: kanit;
  src: url(./Fonts/Kanit/Kanit-SemiBold.ttf);
}
@font-face {
  font-family: raleway;
  src: url(./Fonts/Raleway/Raleway-VariableFont_wght.ttf);
}

.joinUsPage {
  background-color: transparent;
  width: 100vw;
  display: none;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  grid-template-columns: 55% 45%;
  position: relative;
  background-color: rgb(0, 0, 0);
  color: white;
  margin: 0;
  background-color: #0d0d0d;
  background-image: url(./img/BackgroundNew0.jpg);
  background-size: contain;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-position-y: 35vh;
  min-height: calc(100vh - 7vw);
}

.joinUsPage::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.589) url("./img/loading.gif") center / 4vw
    no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.joinUsPage._sending::after {
  opacity: 1;
  visibility: visible;
}
.joinLeft {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  font-family: raleway;
  justify-content: center;
  animation: logo 0.8s ease-in;
  z-index: 1;
  padding: 0 5vw;
}
.joinLeft h1 {
  font-size: 2.8vw;
  margin-top: 1vw;
  margin-bottom: 1.3vw;
  color: #e2bf6e;
}
.joinLeftText {
  font-size: 1.4vw;
  color: #ffffff;
}
.joinLeftP {
  margin-top: 3vw;
  font-size: 1.7vw;
  text-align: center;
  color: #e2bf6e;
}
/* .joinRight span {
  text-align: center;
  font-size: 1.1vw;
} */
.joinLeftText li {
  margin-bottom: 1.5vw;
}
.joinRightInputs {
  display: flex;
  flex-direction: column;
  margin-top: 1.5vw;
  justify-content: space-between;
  align-items: center;
  width: 75%;
}

.joinInput {
  width: 100%;
  height: 2.8vw;
  margin-bottom: 1.1vw;
  font-size: 1.1vw;
  padding-left: 0.5vw;
  padding-right: 0.5vw;
  box-sizing: border-box;
  background-color: rgb(0, 0, 0);
  border-radius: 0.35vw;
  border: 0.1vw solid #e2bf6eb8;
  color: rgb(255, 255, 255);
  font-family: monserat;
  font-weight: 800;
  transition: outline 0.6s ease, border-bottom 0.6s ease, border 0.6s ease,
    background-color 0.3s ease;
}
.joinInput:focus {
  border: none;
  border-bottom: 0.1vw solid #ffffff;
  outline: none;
  background-color: transparent;
  border-radius: 0;
}
.joinInputRed {
  width: 100%;
  height: 2.8vw;
  margin-bottom: 1.1vw;
  font-size: 1.1vw;
  padding-left: 0.5vw;
  padding-right: 0.5vw;
  box-sizing: border-box;
  background-color: rgb(0, 0, 0);
  border-radius: 0.35vw;
  border: 0.1vw solid rgba(225, 0, 0, 0.772);
  color: rgb(255, 255, 255);
  font-family: monserat;
  font-weight: 800;
  transition: outline 0.6s ease, border-bottom 0.6s ease, border 0.6s ease,
    background-color 0.3s ease;
}
.joinInputRed:focus {
  border: none;
  border-bottom: 0.1vw solid rgba(225, 0, 0, 0.772);
  outline: none;
  background-color: transparent;
  border-radius: 0;
}
.joinTextbox {
  width: 100%;
  max-width: 100%;
  min-height: 9vw;
  height: 9vw;
  max-height: 9vw;
  min-width: 100%;
  box-sizing: border-box;
  padding: 0.5vw 0.5vw;
  font-size: 1.1vw;
  background-color: rgb(0, 0, 0);
  border: 0.1vw solid #e2bf6eb8;
  color: rgb(255, 255, 255);
  font-family: monserat;
  font-weight: 800;
  border-radius: 0.35vw;
  transition: border ease 0.3s;
}
.joinTextbox::-webkit-scrollbar {
  width: 0.4vw;
  background-color: transparent;
}
.joinTextbox::-webkit-scrollbar-thumb {
  background-color: rgb(255, 255, 255);

  border-radius: 0.15vw;
}
.joinTextbox:focus {
  outline: none;
  border: 0.1vw solid #ffffff;
  background-color: transparent;
}
.joinTextboxRed {
  width: 100%;
  max-width: 100%;
  min-height: 9vw;
  height: 9vw;
  max-height: 9vw;
  min-width: 100%;
  box-sizing: border-box;
  padding: 0.5vw 0.5vw;
  font-size: 1.1vw;
  background-color: rgb(0, 0, 0);
  border: 0.1vw solid rgba(225, 0, 0, 0.772) !important;
  color: rgb(255, 255, 255);
  font-family: monserat;
  font-weight: 800;
  border-radius: 0.35vw;
  transition: border ease 0.3s;
}
.joinTextboxRed:focus {
  outline: none;
  border: 0.1vw solid rgba(225, 0, 0, 0.772) !important;
  background-color: transparent;
}

.joinTextbox:focus {
  outline: none;
  border: 0.1vw solid #ffffff;
  background-color: transparent;
}

.sendBut {
  margin-top: 1.3vw;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.1vw solid rgb(255, 255, 255);
  height: 2.8vw;
  color: rgba(255, 255, 255, 0.701);
  cursor: pointer;
  transition: color 0.4s ease, border 0.4s ease, background-color 0.4s ease,
    transform 0.2s ease;
  font-family: monserat;
  font-weight: bold;
  border-radius: 0.35vw;
  background-color: transparent;
  font-size: 1.2vw;
}
.sendBut:hover {
  background-color: black;
  border: 0.1vw solid white;
  color: white;
}
.sendBut:active {
  transform: scale(0.98);
  border: 0.1vw solid white;
}

#joinIncorrectData {
  text-align: left;
  width: 100%;
  margin-top: 0.5vw;
  display: none;
  font-family: monserat;
  font-weight: 700;
  font-size: 1.1vw;
}
#joinIncorrectData2 {
  text-align: left;
  width: 100%;
  margin-top: 0.5vw;
  display: none;
  font-family: monserat;
  font-size: 1.1vw;
  font-weight: 700;
}

/*-----------------------------------------------------*/
.joinRight {
  grid-row: 1;
  grid-column: 2;
  z-index: 0;
  /*   background-color: rgba(255, 255, 255, 0.368); */

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: logo 0.8s ease-in forwards;
  animation-delay: 0.5s;
}
.joinRightSpan {
  color: #e2bf6e !important;
  font-size: 1.1vw;
  font-family: raleway;
  width: 29vw;
  text-align: center;
}
.joinLine_2 {
  font-family: monserat;
  text-align: left;
  margin-bottom: 1vw;
  display: flex;
  align-items: center;
  font-size: 1.5vw;
  font-weight: 100 !important;
  line-height: 2vw;
}
.joinText_2 {
  cursor: pointer;
  transition: color ease 0.2s, text-decoration ease 0.2s;
}
/* .joinText_2:hover {
  text-decoration: underline;
  color: #e2bf6e;
} */

.section1Icon_2 {
  width: 2.3vw;
  margin-right: 1vw;
}
.icon2_2 {
  height: 3vw;
  width: 2vw;
  margin-left: 0.15vw;
  margin-right: 1.15vw;
}

.joinjoins {
  padding-left: 5vw;
}

/*--------------------*/

.chooseFileSection {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-family: raleway;
  margin-top: 1.1vw;
  height: 2.8vw;
}
.chooseFileName {
  text-align: center;
  font-size: 1.1vw;
  padding: 0 1vw;
  width: 50%;
}
.chooseFile {
  width: 50%;
  height: 2.8vw;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2vw;
  border-radius: 0.35vw;
  background-color: transparent;
  border: 0.05vw solid #e2bf6e;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.625);
  transition: 0.3s background-color ease, 0.3s color ease;
}
.chooseFile:hover {
  background-color: black;
  color: white;
}
.chooseFileInput {
  position: absolute;
  visibility: hidden;
}
/*----------------------*/
.joinsentMessageSection {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.935);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.joinsentMessage {
  background-color: #0d0d0d;
  padding: 2vw 4vw;
  border-radius: 1vw;
  font-family: raleway;
  color: white;
  font-weight: bold;
  border: 0.1vw solid #e2bf6e;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  animation: scaleTo1 0.4s ease;
}
.jointickImg {
  width: 12vw;
  margin-top: 2vw;
}
.joinsentMessage h3 {
  font-size: 2.2vw;
  margin-top: 2vw;
  margin-bottom: 1vw;
  color: #e2bf6e;
}
.joinsentMessage span {
  margin-bottom: 1vw;
  font-size: 1.1vw;
}

.joinsentCross {
  position: absolute;
  top: 1vw;
  right: 1vw;

  display: flex;
  justify-content: center;
  align-items: center;
  width: 2vw;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.joinsentCross:hover {
  transform: scale(1.05);
}
.joinsentCross:active {
  transform: scale(0.95);
}

@media (min-width: 667px) and (orientation: portrait) {
  .joinUsPage {
    background-color: transparent;
    width: 100vw;
    display: none;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    grid-template-columns: 60% 40%;
    position: relative;
    background-color: rgb(0, 0, 0);
    color: white;
    margin: 0;
    background-color: #0d0d0d;
    background-image: url(./img/BackgroundNew0.jpg);
    background-size: contain;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-position-y: 35vh;
    min-height: calc(100vh - 14vw);
  }

  .joinUsPage::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.589) url("./img/loading.gif") center / 4vw
      no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
  }

  .joinUsPage._sending::after {
    opacity: 1;
    visibility: visible;
  }
  .joinLeft {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    font-family: raleway;
    justify-content: center;
    animation: logo 0.8s ease-in;
    z-index: 1;
    padding: 0 5vw;
  }
  .joinLeft h1 {
    font-size: 3.5vw;
    margin-top: 1vw;
    margin-bottom: 1.9vw;
    color: #e2bf6e;
  }
  .joinLeftText {
    font-size: 2vw;
    color: #ffffff;
    line-height: 2.8vw;
  }
  .joinLeftP {
    margin-top: 3.8vw;
    font-size: 2.3vw;
    text-align: center;
    color: #e2bf6e;
  }

  .joinLeftText li {
    margin-bottom: 1.5vw;
  }
  .joinRightInputs {
    display: flex;
    flex-direction: column;
    margin-top: 1.5vw;
    justify-content: space-between;
    align-items: center;

    width: 88%;
  }

  .joinInput {
    width: 100%;
    height: 4.4vw;
    margin-bottom: 1.8vw;
    font-size: 1.8vw;
    padding-left: 0.5vw;
    padding-right: 0.5vw;
    box-sizing: border-box;
    background-color: rgb(0, 0, 0);
    border-radius: 0.35vw;
    border: 0.1vw solid #e2bf6eb8;
    color: rgb(255, 255, 255);
    font-family: monserat;
    font-weight: 800;
    transition: outline 0.6s ease, border-bottom 0.6s ease, border 0.6s ease,
      background-color 0.3s ease;
  }
  .joinInput:focus {
    border: none;
    border-bottom: 0.1vw solid #ffffff;
    outline: none;
    background-color: transparent;
    border-radius: 0;
  }
  .joinInputRed {
    width: 100%;
    height: 4.4vw;
    margin-bottom: 1.8vw;
    font-size: 1.8vw;
    padding-left: 0.5vw;
    padding-right: 0.5vw;
    box-sizing: border-box;
    background-color: rgb(0, 0, 0);
    border-radius: 0.35vw;
    border: 0.1vw solid rgba(225, 0, 0, 0.772);
    color: rgb(255, 255, 255);
    font-family: monserat;
    font-weight: 800;
    transition: outline 0.6s ease, border-bottom 0.6s ease, border 0.6s ease,
      background-color 0.3s ease;
  }
  .joinInputRed:focus {
    border: none;
    border-bottom: 0.1vw solid rgba(225, 0, 0, 0.772);
    outline: none;
    background-color: transparent;
    border-radius: 0;
  }
  .joinTextbox {
    width: 100%;
    max-width: 100%;
    min-height: 15vw;
    height: 15vw;
    max-height: 15vw;
    min-width: 100%;
    box-sizing: border-box;
    padding: 0.5vw 0.5vw;
    font-size: 1.8vw;
    background-color: rgb(0, 0, 0);
    border: 0.1vw solid #e2bf6eb8;
    color: rgb(255, 255, 255);
    font-family: monserat;
    font-weight: 800;
    border-radius: 0.35vw;
    transition: border ease 0.3s;
  }
  .joinTextbox::-webkit-scrollbar {
    width: 0.4vw;
    background-color: transparent;
  }
  .joinTextbox::-webkit-scrollbar-thumb {
    background-color: rgb(255, 255, 255);

    border-radius: 0.15vw;
  }
  .joinTextbox:focus {
    outline: none;
    border: 0.1vw solid #ffffff;
    background-color: transparent;
  }
  .joinTextboxRed {
    width: 100%;
    max-width: 100%;
    min-height: 15vw;
    height: 15vw;
    max-height: 15vw;
    min-width: 100%;
    box-sizing: border-box;
    padding: 0.5vw 0.5vw;
    font-size: 1.8vw;
    background-color: rgb(0, 0, 0);
    border: 0.1vw solid rgba(225, 0, 0, 0.772) !important;
    color: rgb(255, 255, 255);
    font-family: monserat;
    font-weight: 800;
    border-radius: 0.35vw;
    transition: border ease 0.3s;
  }
  .joinTextboxRed:focus {
    outline: none;
    border: 0.1vw solid rgba(225, 0, 0, 0.772) !important;
    background-color: transparent;
  }

  .joinTextbox:focus {
    outline: none;
    border: 0.1vw solid #ffffff;
    background-color: transparent;
  }

  .sendBut {
    margin-top: 1.8vw;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.1vw solid rgb(255, 255, 255);
    height: 4.4vw;
    color: rgba(255, 255, 255, 0.701);
    cursor: pointer;
    transition: color 0.4s ease, border 0.4s ease, background-color 0.4s ease,
      transform 0.2s ease;
    font-family: monserat;
    font-weight: bold;
    border-radius: 0.35vw;
    background-color: transparent;
    font-size: 1.6vw;
  }
  .sendBut:hover {
    background-color: black;
    border: 0.1vw solid white;
    color: white;
  }
  .sendBut:active {
    transform: scale(0.98);
    border: 0.1vw solid white;
  }

  #joinIncorrectData {
    text-align: left;
    width: 100%;
    margin-top: 0.5vw;
    display: none;
    font-family: monserat;
    font-weight: 700;
    font-size: 1.6vw;
  }
  #joinIncorrectData2 {
    text-align: left;
    width: 100%;
    margin-top: 0.5vw;
    display: none;
    font-family: monserat;
    font-size: 1.6vw;
    font-weight: 700;
  }

  /*-----------------------------------------------------*/
  .joinRight {
    grid-row: 1;
    grid-column: 2;
    z-index: 0;
    /*   background-color: rgba(255, 255, 255, 0.368); */

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    animation: logo 0.8s ease-in forwards;
    animation-delay: 0.5s;
  }

  .joinRightSpan {
    color: #e2bf6e !important;
    font-size: 1.8vw;
    font-family: raleway;
    width: 34.5vw;
    text-align: center;
  }

  .joinLine_2 {
    font-family: monserat;
    text-align: left;
    margin-bottom: 1vw;
    display: flex;
    align-items: center;
    font-size: 1.5vw;
    font-weight: 100 !important;
    line-height: 2vw;
  }
  .joinText_2 {
    cursor: pointer;
    transition: color ease 0.2s, text-decoration ease 0.2s;
  }
  /* .joinText_2:hover {
    text-decoration: underline;
    color: #e2bf6e;
  } */

  .section1Icon_2 {
    width: 2.3vw;
    margin-right: 1vw;
  }
  .icon2_2 {
    height: 3vw;
    width: 2vw;
    margin-left: 0.15vw;
    margin-right: 1.15vw;
  }

  .joinjoins {
    padding-left: 5vw;
  }

  /*--------------------*/

  .chooseFileSection {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-family: raleway;
    margin-top: 1.8vw;
    height: 4.4vw;
  }
  .chooseFileName {
    text-align: center;
    font-size: 1.8vw;
    padding: 0 1vw;
    width: 50%;
  }
  .chooseFile {
    width: 50%;
    height: 4vw;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6vw;
    border-radius: 0.35vw;
    background-color: transparent;
    border: 0.05vw solid #e2bf6e;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.625);
    transition: 0.3s background-color ease, 0.3s color ease;
  }
  .chooseFile:hover {
    background-color: black;
    color: white;
  }
  .chooseFileInput {
    position: absolute;
    visibility: hidden;
  }
  /*----------------------*/
  .joinsentMessageSection {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.935);
    display: none;
    align-items: center;
    justify-content: center;
  }

  .joinsentMessage {
    background-color: #0d0d0d;
    padding: 2vw 4vw;
    border-radius: 1vw;
    font-family: raleway;
    color: white;
    font-weight: bold;
    border: 0.1vw solid #e2bf6e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    animation: scaleTo1 0.4s ease;
  }
  .jointickImg {
    width: 20vw;
    margin-top: 4vw;
  }
  .joinsentMessage h3 {
    font-size: 3.5vw;
    margin-top: 4vw;
    margin-bottom: 1vw;
    color: #e2bf6e;
  }
  .joinsentMessage span {
    margin-bottom: 2vw;
    font-size: 2vw;
  }

  .joinsentCross {
    position: absolute;
    top: 1.7vw;
    right: 1.7vw;

    display: flex;
    justify-content: center;
    align-items: center;
    width: 3.3vw;
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  .joinsentCross:hover {
    transform: scale(1.05);
  }
  .joinsentCross:active {
    transform: scale(0.95);
  }
}
@media only screen and (max-width: 666px) and (orientation: portrait) {
  .joinUsPage {
    background-color: transparent;
    width: 100vw;
    display: none;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    grid-template-rows: 120vw 100vw;
    grid-template-columns: 100%;
    position: relative;
    background-color: rgb(0, 0, 0);
    color: white;

    background-color: #0d0d0d;
    background-image: url(./img/BackgroundNew0.jpg);
    background-size: contain;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-position-y: 35vh;
    min-height: calc(100vh - 14vw);
  }

  .joinUsPage::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.589) url("./img/loading.gif") center / 4vw
      no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
  }

  .joinUsPage._sending::after {
    opacity: 1;
    visibility: visible;
  }
  .joinLeft {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    align-items: center;
    flex-direction: column;
    font-family: raleway;
    margin-top: 10vw;
    animation: logo 0.8s ease-in;
    z-index: 1;
    padding: 0 5vw;
  }
  .joinLeft h1 {
    font-size: 7vw;
    margin-top: 22vw;
    margin-bottom: 3vw;
    color: #e2bf6e;
  }
  .joinLeftText {
    font-size: 3.3vw;
    color: #ffffff;
    line-height: 4.5vw;
  }
  .joinLeftP {
    margin-top: 8vw;
    font-size: 3.8vw;
    text-align: center;
    color: #e2bf6e;
  }

  .joinLeftText li {
    margin-bottom: 1.5vw;
  }
  .joinRightInputs {
    display: flex;
    flex-direction: column;
    margin-top: 3vw;
    justify-content: space-between;
    align-items: center;
    width: 85%;
  }

  .joinInput {
    width: 100%;
    height: 8vw;
    margin-bottom: 1.8vw;
    font-size: 2.8vw;
    padding-left: 2vw;
    padding-right: 2vw;
    box-sizing: border-box;
    background-color: rgb(0, 0, 0);
    border-radius: 0.8vw;
    border: 0.3vw solid #e2bf6eb8;
    color: rgb(255, 255, 255);
    font-family: monserat;
    font-weight: 800;
    transition: outline 0.6s ease, border-bottom 0.6s ease, border 0.6s ease,
      background-color 0.3s ease;
  }
  .joinInput:focus {
    border: none;
    border-bottom: 0.1vw solid #ffffff;
    outline: none;
    background-color: transparent;
    border-radius: 0;
  }
  .joinInputRed {
    width: 100%;
    height: 8vw;
    margin-bottom: 1.8vw;
    font-size: 2.8vw;
    padding-left: 2vw;
    padding-right: 2vw;
    box-sizing: border-box;
    background-color: rgb(0, 0, 0);
    border-radius: 0.8vw;
    border: 0.3vw solid rgba(225, 0, 0, 0.772);
    color: rgb(255, 255, 255);
    font-family: monserat;
    font-weight: 800;
    transition: outline 0.6s ease, border-bottom 0.6s ease, border 0.6s ease,
      background-color 0.3s ease;
  }
  .joinInputRed:focus {
    border: none;
    border-bottom: 0.1vw solid rgba(225, 0, 0, 0.772);
    outline: none;
    background-color: transparent;
    border-radius: 0;
  }
  .joinTextbox {
    width: 100%;
    max-width: 100%;
    min-height: 25vw;
    height: 25vw;
    max-height: 25vw;
    min-width: 100%;
    box-sizing: border-box;
    padding: 2vw 2vw;
    font-size: 2.8vw;
    background-color: rgb(0, 0, 0);
    border: 0.3vw solid #e2bf6eb8;
    color: rgb(255, 255, 255);
    font-family: monserat;
    font-weight: 800;
    border-radius: 0.8vw;
    transition: border ease 0.3s;
  }
  .joinTextbox::-webkit-scrollbar {
    width: 0.4vw;
    background-color: transparent;
  }
  .joinTextbox::-webkit-scrollbar-thumb {
    background-color: rgb(255, 255, 255);

    border-radius: 0.15vw;
  }
  .joinTextbox:focus {
    outline: none;
    border: 0.1vw solid #ffffff;
    background-color: transparent;
  }
  .joinTextboxRed {
    width: 100%;
    max-width: 100%;
    min-height: 25vw;
    height: 25vw;
    max-height: 25vw;
    min-width: 100%;
    box-sizing: border-box;
    padding: 2vw 2vw;
    font-size: 2.8vw;
    background-color: rgb(0, 0, 0);
    border: 0.3vw solid rgba(225, 0, 0, 0.772) !important;
    color: rgb(255, 255, 255);
    font-family: monserat;
    font-weight: 800;
    border-radius: 0.8vw;
    transition: border ease 0.3s;
  }
  .joinTextboxRed:focus {
    outline: none;
    border: 0.1vw solid rgba(225, 0, 0, 0.772) !important;
    background-color: transparent;
  }

  .joinTextbox:focus {
    outline: none;
    border: 0.1vw solid #ffffff;
    background-color: transparent;
  }

  .sendBut {
    margin-top: 1.8vw;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.1vw solid rgb(255, 255, 255);
    height: 8vw;
    color: rgba(255, 255, 255, 0.701);
    cursor: pointer;
    transition: color 0.4s ease, border 0.4s ease, background-color 0.4s ease,
      transform 0.2s ease;
    font-family: monserat;
    font-weight: bold;
    border-radius: 0.35vw;
    background-color: transparent;
    font-size: 2.8vw;
  }
  .sendBut:hover {
    background-color: black;
    border: 0.1vw solid white;
    color: white;
  }
  .sendBut:active {
    transform: scale(0.98);
    border: 0.1vw solid white;
  }

  #joinIncorrectData {
    text-align: left;
    width: 100%;
    margin-top: 0.5vw;
    display: none;
    font-family: monserat;
    font-weight: 700;
    font-size: 2.8vw;
  }
  #joinIncorrectData2 {
    text-align: left;
    width: 100%;
    margin-top: 0.5vw;
    display: none;
    font-family: monserat;
    font-size: 2.8vw;
    font-weight: 700;
  }

  /*-----------------------------------------------------*/
  .joinRight {
    grid-row: 2;
    grid-column: 1;
    z-index: 0;
    /*   background-color: rgba(255, 255, 255, 0.368); */

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: logo 0.8s ease-in forwards;
    animation-delay: 0.5s;
    margin-top: 15vw;
  }

  .joinRightSpan {
    color: #e2bf6e !important;
    font-size: 2.8vw;
    font-family: raleway;
    width: 88vw;
    text-align: center;
  }

  .joinLine_2 {
    font-family: monserat;
    text-align: left;
    margin-bottom: 1vw;
    display: flex;
    align-items: center;
    font-size: 1.5vw;
    font-weight: 100 !important;
    line-height: 2vw;
  }
  .joinText_2 {
    cursor: pointer;
    transition: color ease 0.2s, text-decoration ease 0.2s;
  }
  /* .joinText_2:hover {
    text-decoration: underline;
    color: #e2bf6e;
  } */

  .section1Icon_2 {
    width: 2.3vw;
    margin-right: 1vw;
  }
  .icon2_2 {
    height: 3vw;
    width: 2vw;
    margin-left: 0.15vw;
    margin-right: 1.15vw;
  }

  .joinjoins {
    padding-left: 5vw;
  }

  /*--------------------*/

  .chooseFileSection {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-family: raleway;
    margin-top: 1.8vw;
    height: 8vw;
  }
  .chooseFileName {
    text-align: center;
    font-size: 2.8vw;
    padding: 0 1vw;
    width: 50%;
  }
  .chooseFile {
    width: 50%;
    height: 8vw;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.8vw;
    border-radius: 0.35vw;
    background-color: transparent;
    border: 0.05vw solid #e2bf6e;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.625);
    transition: 0.3s background-color ease, 0.3s color ease;
  }
  .chooseFile:hover {
    background-color: black;
    color: white;
  }
  .chooseFileInput {
    position: absolute;
    visibility: hidden;
  }
  /*----------------------*/
  .joinsentMessageSection {
    position: absolute;
    top: 17vw;
    left: 0;
    width: 100%;
    height: calc(100% - 17vw);
    background-color: rgba(0, 0, 0, 0.935);
    display: none;
    align-items: center;
    justify-content: center;
  }

  .joinsentMessage {
    width: 55vw;
    height: 60vw;
    background-color: #0d0d0d;
    padding: 2vw 2vw;
    border-radius: 3vw;
    font-family: raleway;
    color: white;
    font-weight: bold;
    border: 0.1vw solid #e2bf6e;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    animation: scaleTo1 0.4s ease;
  }
  .jointickImg {
    width: 30vw;
    margin-bottom: 5vw;
  }
  .joinsentMessage h3 {
    font-size: 5.5vw;
    margin-top: 2vw;
    margin-bottom: 1vw;
    color: #e2bf6e;
  }
  .joinsentMessage span {
    margin-bottom: 1vw;
    font-size: 3vw;
    text-align: center;
  }

  .joinsentCross {
    position: absolute;
    top: 3vw;
    right: 3vw;

    display: flex;
    justify-content: center;
    align-items: center;
    width: 6vw;
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  .joinsentCross:hover {
    transform: scale(1.05);
  }
  .joinsentCross:active {
    transform: scale(0.95);
  }
}
@keyframes logo {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleTo1 {
  from {
    transform: scale(0.5);
  }
  to {
    transform: scale(1);
  }
}
