@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600&display=swap");
body, header .headerSection .navigations nav ul, .drawMenu .linksPane nav ul, .mainPageTopContainer .heroSection .heroContainer h1, .mainPageTopContainer .heroSection .heroContainer h2, .otherPageTopContainer .heroSection .heroContainer h1, .otherPageTopContainer .heroSection .heroContainer h2, footer .footSection .pageInfoSection p {
  padding: 0;
  margin: 0;
}

@keyframes progressRotate {
  100% {
    transform: rotate(360deg);
  }
}
* {
  font-family: "Poppins", sans-serif;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

body {
  position: relative;
  width: 100%;
  font-family: "Poppins", sans-serif;
}
body button {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

header {
  background-color: rgb(16, 34, 43);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 10;
}
header .headerSection {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 0;
  padding-block: 10px;
}
header .headerSection .pageLogo #siteLogo {
  width: 280px;
}
header .headerSection .navigations nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
header .headerSection .navigations nav ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 70px;
  list-style-type: none;
  font-weight: 400;
  padding-block: 6px;
  transition: border-bottom 100ms ease;
  cursor: pointer;
}
header .headerSection .navigations nav ul li[data-active=Yes] {
  font-weight: 700;
  border-bottom: 4px solid #21E5A7;
}
header .headerSection .navigations nav ul li:hover {
  font-weight: 700;
  border-bottom: 4px solid #21E5A7;
}
header .headerSection .navigations nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 14px;
}
header .headerSection .authButts {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
header .headerSection .authButts button {
  width: 100px;
  padding: 4px;
  background-color: transparent;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: white;
  border: 2px solid #21E5A7;
  border-radius: 8px;
  cursor: pointer;
  transition: all 100ms ease;
}
header .headerSection .authButts button:hover {
  font-weight: 800;
  background-color: #21E5A7;
  border: 2px solid #21E5A7;
  color: rgb(16, 34, 43);
}
header .headerSection .menuButt {
  display: none;
  margin-inline: 20px;
}
header .headerSection .menuButt svg {
  width: 30px;
  height: 30px;
  fill: white;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (max-width: 520px) {
  header .headerSection {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    padding: 10px;
  }
  header .headerSection .navigations {
    display: none;
  }
  header .headerSection .authButts {
    display: none;
  }
  header .headerSection .pageLogo #siteLogo {
    max-width: 200px;
  }
  header .headerSection .menuButt {
    display: flex;
  }
}
@media screen and (min-width: 520px) and (max-width: 912px) {
  header .headerSection {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    padding: 10px;
  }
  header .headerSection .navigations {
    display: none;
  }
  header .headerSection .authButts {
    display: none;
  }
  header .headerSection .menuButt {
    display: flex;
  }
}

.drawMenu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  background-color: rgb(16, 34, 43);
  width: 0;
  visibility: hidden;
  transition: width 0.5s ease;
  z-index: 20;
  overflow: auto;
}
.drawMenu.active {
  width: 300px;
  padding: 10px;
  visibility: visible;
}
.drawMenu.active .linksPane {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
}
.drawMenu.active .linksPane #closeButt {
  opacity: 1;
}
.drawMenu .linksPane {
  width: auto;
  position: relative;
}
.drawMenu .linksPane #closeButt {
  fill: white;
  position: absolute;
  right: 0;
  margin-right: 10px;
  width: 30px;
  height: 30px;
  margin-top: 20px;
  opacity: 0;
  transition: opacity 0.5s ease;
  transition-delay: 0.2s;
}
.drawMenu .linksPane h1 {
  width: auto;
  font-size: 30px;
  text-align: center;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: white;
  margin-top: 60px;
}
.drawMenu .linksPane nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-direction: column;
}
.drawMenu .linksPane nav ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 70px;
  list-style-type: none;
  font-weight: 400;
  padding-block: 6px;
  transition: border-bottom 100ms ease;
  cursor: pointer;
}
.drawMenu .linksPane nav ul li[data-active=Yes] {
  font-weight: 700;
  border-bottom: 4px solid #21E5A7;
}
.drawMenu .linksPane nav ul li:hover {
  font-weight: 700;
  border-bottom: 4px solid #21E5A7;
}
.drawMenu .linksPane nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 14px;
}
.drawMenu .linksPane .authButts {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  justify-content: center;
  gap: 20px;
  margin-block: 20px;
}
.drawMenu .linksPane .authButts button {
  width: 260px;
  padding: 8px;
  background-color: #21E5A7;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: rgb(16, 34, 43);
  border: 2px solid #21E5A7;
  border-radius: 8px;
}
@media screen and (min-width: 520px) and (max-width: 912px) {
  .drawMenu.active {
    width: 400px;
  }
}

.mainPageTopContainer .headerMaker {
  background-color: #21E5A7;
  padding: 5px;
}
.mainPageTopContainer .heroSection {
  display: flex;
  position: relative;
  height: 500px;
  background-image: url("/assets/images/boardImg.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  filter: grayscale(0.6);
  overflow: hidden;
}
.mainPageTopContainer .heroSection .heroShadow {
  position: absolute;
  left: 0;
  right: 0;
  background-color: rgb(12, 11, 11);
  height: 100%;
  opacity: 0.8;
  z-index: 1;
}
.mainPageTopContainer .heroSection .heroBottomCard {
  background: url("/assets/images/backcurvewhite.png");
  background-size: 120% 100%;
  background-position: 100%;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  color: white;
  height: 100px;
  width: 160%;
  z-index: 10;
}
.mainPageTopContainer .heroSection .heroContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-direction: column;
  width: 100%;
  height: 90%;
  color: white;
  z-index: 2;
}
.mainPageTopContainer .heroSection .heroContainer h1 {
  width: 70%;
  font-size: 30px;
  text-align: center;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
}
.mainPageTopContainer .heroSection .heroContainer h2 {
  width: 80%;
  font-size: 18px;
  text-align: center;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
.mainPageTopContainer .heroSection .heroContainer button {
  width: 300px;
  padding: 12px;
  margin-block: 10px;
  background-color: #21E5A7;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: rgb(16, 34, 43);
  border: 2px solid rgb(16, 34, 43);
  border-radius: 8px;
  cursor: pointer;
  transition: padding 100ms ease, font-weight 100ms ease;
}
.mainPageTopContainer .heroSection .heroContainer button:hover {
  padding: 14px;
  font-weight: 700;
}
@media screen and (max-width: 520px) {
  .mainPageTopContainer .heroSection .heroContainer h1 {
    width: 70%;
    font-size: 18px;
    text-align: center;
    font-weight: 800;
    font-family: "Poppins", sans-serif;
  }
  .mainPageTopContainer .heroSection .heroContainer h2 {
    width: 80%;
    font-size: 14px;
    text-align: center;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
  }
  .mainPageTopContainer .heroSection .heroContainer button {
    width: 250px;
    padding: 10px;
    font-size: 12px;
  }
}
@media screen and (min-width: 520px) and (max-width: 912px) {
  .mainPageTopContainer .heroSection .heroContainer h1 {
    width: 70%;
    font-size: 30px;
    text-align: center;
    font-weight: 800;
    font-family: "Poppins", sans-serif;
  }
  .mainPageTopContainer .heroSection .heroContainer h2 {
    width: 80%;
    font-size: 14px;
    text-align: center;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
  }
  .mainPageTopContainer .heroSection .heroContainer button {
    width: 280px;
    padding: 10px;
    font-size: 12px;
  }
}

.otherPageTopContainer .headerMaker {
  background-color: #21E5A7;
  padding: 5px;
}
.otherPageTopContainer .heroSection {
  display: flex;
  position: relative;
  height: 440px;
  background-image: url("/assets/images/boardImg.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  filter: grayscale(0.6);
  overflow: hidden;
}
@media screen and (max-width: 520px) {
  .otherPageTopContainer .heroSection {
    height: 350px;
  }
}
.otherPageTopContainer .heroSection .heroShadow {
  position: absolute;
  left: 0;
  right: 0;
  background-color: rgb(12, 11, 11);
  height: 100%;
  opacity: 0.8;
  z-index: 1;
}
.otherPageTopContainer .heroSection .heroBottomCard {
  background: url("/assets/images/backcurvewhite.png");
  background-size: 120% 100%;
  background-position: 100%;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  color: white;
  height: 100px;
  width: 160%;
  z-index: 10;
}
.otherPageTopContainer .heroSection .heroContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-direction: column;
  width: 100%;
  height: 90%;
  color: white;
  z-index: 2;
}
.otherPageTopContainer .heroSection .heroContainer h1 {
  width: 70%;
  font-size: 50px;
  text-align: center;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
}
.otherPageTopContainer .heroSection .heroContainer h2 {
  width: 80%;
  font-size: 20px;
  text-align: center;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 520px) {
  .otherPageTopContainer .heroSection .heroContainer h1 {
    width: 70%;
    font-size: 18px;
    text-align: center;
    font-weight: 800;
    font-family: "Poppins", sans-serif;
  }
  .otherPageTopContainer .heroSection .heroContainer h2 {
    width: 80%;
    font-size: 14px;
    text-align: center;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
  }
}
@media screen and (min-width: 520px) and (max-width: 912px) {
  .otherPageTopContainer .heroSection .heroContainer h1 {
    width: 70%;
    font-size: 30px;
    text-align: center;
    font-weight: 800;
    font-family: "Poppins", sans-serif;
  }
  .otherPageTopContainer .heroSection .heroContainer h2 {
    width: 80%;
    font-size: 14px;
    text-align: center;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
  }
}

footer .partnerSection {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-direction: column;
  gap: 30px;
  padding: 40px;
}
footer .partnerSection h1 {
  font-size: 40px;
  margin-bottom: 0;
}
footer .partnerSection .partLogo {
  display: grid;
  grid-template-columns: repeat(auto-fit,160px);
  grid-template-rows: auto;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 20px;
  margin-bottom: 30px;
}
footer .partnerSection .partLogo img {
  width: 60%;
  max-height: 50px;
}
@media screen and (max-width: 520px) {
  footer .partnerSection {
    padding: 10px;
  }
  footer .partnerSection h1 {
    font-size: 20px;
    margin-bottom: 0;
  }
  footer .partnerSection .partLogo {
    display: grid;
    grid-template-columns: repeat(auto-fit,80px);
    grid-template-rows: auto;
  }
  footer .partnerSection .partLogo img {
    width: 100%;
    max-height: 40px;
  }
}
@media screen and (min-width: 520px) and (max-width: 912px) {
  footer .partnerSection h1 {
    font-size: 20px;
    margin-bottom: 0;
  }
  footer .partnerSection .partLogo {
    display: grid;
    grid-template-columns: repeat(auto-fit,80px);
    grid-template-rows: auto;
  }
  footer .partnerSection .partLogo img {
    width: 100%;
    max-height: 40px;
  }
}
footer .footSection {
  background-color: rgb(16, 34, 43);
}
footer .footSection .newsLetterSection {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 0;
  height: 100px;
  padding: 20px;
  gap: 10px;
  background-color: rgba(16, 34, 43, 0.651);
  box-shadow: 0px 0px 10px black;
}
footer .footSection .newsLetterSection h1 {
  width: auto;
  font-size: 18px;
  text-align: center;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: white;
}
footer .footSection .newsLetterSection .letterbox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}
footer .footSection .newsLetterSection .letterbox .emailbox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  height: 45px;
  border-radius: 10px;
  outline: 2px solid rgba(199, 195, 202, 0.705);
  overflow: hidden;
}
footer .footSection .newsLetterSection .letterbox .emailbox svg {
  margin-inline: 10px;
  margin-right: 5px;
  width: 25px;
  height: 25px;
}
footer .footSection .newsLetterSection .letterbox .emailbox .newsletterform {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  height: 50px;
}
footer .footSection .newsLetterSection .letterbox .emailbox .newsletterform input {
  width: auto;
  font-size: 14px;
  text-align: start;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  width: 100%;
  background-color: rgb(16, 34, 43);
  border: transparent;
  color: white;
  caret-color: white;
}
footer .footSection .newsLetterSection .letterbox .emailbox .newsletterform input:focus {
  outline: transparent;
}
footer .footSection .newsLetterSection .letterbox .emailbox .newsletterform .subButton {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: auto;
  font-size: 14px;
  text-align: center;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  background-color: #21E5A7;
  color: rgb(16, 34, 43);
  width: 200px;
  height: 100%;
  border: 0px;
  gap: 2px;
  margin-left: 2px;
  cursor: pointer;
}
footer .footSection .newsLetterSection .letterbox .emailbox .newsletterform .subButton svg {
  display: none;
  fill: rgb(16, 34, 43);
  width: 16px;
  height: 16px;
}
footer .footSection .newsLetterSection .letterbox .emailbox .newsletterform .subButton.active svg {
  display: flex;
  animation: progressRotate 1s infinite linear;
}
footer .footSection .newsLetterSection .successNote {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background-color: #21E5A7;
  padding: 10px;
  padding-inline: 20px;
  border-radius: 50px;
  display: none;
}
footer .footSection .newsLetterSection .successNote.active {
  display: flex;
}
footer .footSection .newsLetterSection .successNote svg {
  fill: rgb(16, 34, 43);
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
footer .footSection .newsLetterSection .successNote span {
  width: auto;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: rgb(16, 34, 43);
}
footer .footSection .newsLetterSection .failNote {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background-color: rgb(255, 77, 79);
  padding: 10px;
  padding-inline: 20px;
  border-radius: 50px;
  display: none;
}
footer .footSection .newsLetterSection .failNote.active {
  display: flex;
}
footer .footSection .newsLetterSection .failNote svg {
  fill: rgb(168, 7, 26);
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
footer .footSection .newsLetterSection .failNote span {
  width: auto;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: rgb(168, 7, 26);
}
@media screen and (max-width: 520px) {
  footer .footSection .newsLetterSection {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-direction: column;
    height: auto;
  }
  footer .footSection .newsLetterSection h1 {
    font-size: 18px;
  }
  footer .footSection .newsLetterSection .letterbox {
    width: 95%;
    margin-block: 10px;
  }
  footer .footSection .newsLetterSection .letterbox .emailbox {
    height: 40px;
  }
  footer .footSection .newsLetterSection .letterbox .emailbox .newsletterform input {
    font-size: 12px;
  }
  footer .footSection .newsLetterSection .letterbox .emailbox .newsletterform .subButton {
    font-size: 12px;
    width: 160px;
  }
  footer .footSection .newsLetterSection .letterbox .emailbox .newsletterform .subButton svg {
    width: 12px;
    height: 12px;
  }
  footer .footSection .newsLetterSection .successNote,
  footer .footSection .newsLetterSection .failNote {
    margin-block: 10px;
    width: 80%;
  }
}
@media screen and (min-width: 520px) and (max-width: 912px) {
  footer .footSection .newsLetterSection {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-direction: column;
    height: auto;
  }
  footer .footSection .newsLetterSection h1 {
    font-size: 18px;
  }
  footer .footSection .newsLetterSection .letterbox {
    width: 95%;
    margin-block: 10px;
  }
}
footer .footSection .pageInfoSection {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto;
  align-items: start;
  padding: 60px;
  gap: 70px;
}
footer .footSection .pageInfoSection p {
  width: auto;
  font-size: 30px;
  text-align: start;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: white;
  margin-bottom: 10px;
}
footer .footSection .pageInfoSection a {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  text-align: start;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: white;
  text-decoration: none;
  border-bottom: 1px solid white;
}
footer .footSection .pageInfoSection span {
  width: auto;
  font-size: 14px;
  text-align: start;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: white;
}
footer .footSection .pageInfoSection .aboutPane {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
}
footer .footSection .pageInfoSection .aboutPane span {
  margin-block: 5px;
}
footer .footSection .pageInfoSection .quicklinksPane .linksPane {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
}
footer .footSection .pageInfoSection .contactPane {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
}
footer .footSection .pageInfoSection .contactPane div {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto;
  justify-content: start;
  align-items: center;
  margin-block: 5px;
  gap: 10px;
}
footer .footSection .pageInfoSection .contactPane div svg {
  fill: white;
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 520px) {
  footer .footSection .pageInfoSection {
    display: grid;
    grid-template-columns: repeat(auto-fit,100%);
    grid-template-rows: auto;
    padding: 20px;
    gap: 20px;
  }
  footer .footSection .pageInfoSection p {
    width: auto;
    font-size: 18px;
    text-align: start;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
  }
  footer .footSection .pageInfoSection span {
    width: auto;
    font-size: 12px;
    text-align: start;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
  }
  footer .footSection .pageInfoSection a {
    width: -moz-fit-content;
    width: fit-content;
    font-size: 12px;
    text-align: start;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
  }
  footer .footSection .pageInfoSection .quicklinksPane .linksPane {
    display: grid;
    grid-template-columns: repeat(5, auto);
    grid-template-rows: auto;
    justify-content: center;
    gap: 10px;
  }
  footer .footSection .pageInfoSection .contactPane div svg {
    width: 20px;
    height: 20px;
  }
}
@media screen and (min-width: 520px) and (max-width: 912px) {
  footer .footSection .pageInfoSection {
    display: grid;
    grid-template-columns: repeat(auto-fit,1fr);
    grid-template-rows: auto;
    gap: 10px;
  }
  footer .footSection .pageInfoSection .aboutPane {
    width: 80%;
  }
}
footer .footSection .copyrightSection {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 100%;
  padding-bottom: 20px;
}
footer .footSection .copyrightSection .holderPane {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  width: 80%;
  border: 1px solid rgba(33, 229, 167, 0.5960784314);
  border-radius: 20px;
  padding: 10px;
  margin-bottom: 30px;
}
footer .footSection .copyrightSection .holderPane img {
  width: auto;
}
footer .footSection .copyrightSection .holderPane span {
  width: auto;
  font-size: 14px;
  text-align: start;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: white;
  margin-right: 20px;
}
@media screen and (max-width: 520px) {
  footer .footSection .copyrightSection .holderPane {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
    justify-content: center;
    align-items: center;
  }
  footer .footSection .copyrightSection .holderPane img {
    width: 150px;
  }
  footer .footSection .copyrightSection .holderPane span {
    width: auto;
    font-size: 12px;
    text-align: center;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
    margin-right: 0;
    margin-block: 10px;
  }
}

main .emailSection {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-template-rows: auto;
  gap: 20px;
  padding: 30px;
  color: rgb(16, 34, 43);
}
main .emailSection .emailHeroCard {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-direction: column;
  padding: 20px;
  box-shadow: 0px 0px 10px rgba(16, 34, 43, 0.05);
}
main .emailSection .emailHeroCard h1 {
  width: auto;
  font-size: 20px;
  text-align: center;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
}
main .emailSection .emailHeroCard h2 {
  width: auto;
  font-size: 18px;
  text-align: center;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
}
main .emailSection .emailHeroCard .iconHolder {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-direction: column;
  padding: 20px;
}
main .emailSection .emailHeroCard .iconHolder svg {
  fill: rgb(16, 34, 43);
  width: 250px;
  height: 250px;
}
main .emailSection .emailFormCard {
  padding: 20px;
  box-shadow: 0px 0px 10px rgba(16, 34, 43, 0.05);
}
main .emailSection .emailFormCard h1 {
  width: auto;
  font-size: 20px;
  text-align: center;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
}
main .emailSection .emailFormCard .emailForm {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-direction: column;
}
main .emailSection .emailFormCard .emailForm label {
  width: 80%;
  font-size: 14px;
  text-align: start;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
main .emailSection .emailFormCard .emailForm .formInput {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0;
  flex-direction: row;
  width: 400px;
  border: 1px solid rgba(16, 34, 43, 0.3);
  border-radius: 8px;
  padding: 5px;
}
main .emailSection .emailFormCard .emailForm .formInput:nth-child(8) {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 0;
}
main .emailSection .emailFormCard .emailForm .formInput:focus-within {
  border: 3px solid rgba(16, 34, 43, 0.3);
}
main .emailSection .emailFormCard .emailForm .formInput svg {
  width: 30px;
  height: 30px;
  margin-inline: 10px;
}
main .emailSection .emailFormCard .emailForm .formInput input {
  width: auto;
  font-size: 14px;
  text-align: start;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
}
main .emailSection .emailFormCard .emailForm .formInput textarea {
  width: auto;
  font-size: 14px;
  text-align: start;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  height: 100px;
  width: 100%;
  border: none;
  outline: none;
  resize: none;
}
main .emailSection .emailFormCard .emailForm .mailButtNoteHolder {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin-block: 10px;
}
main .emailSection .emailFormCard .emailForm .mailButtNoteHolder .mailSendButt {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: auto;
  font-size: 18px;
  text-align: center;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  width: 300px;
  padding: 8px;
  gap: 10px;
  background-color: rgb(16, 34, 43);
  font-family: "Poppins", sans-serif;
  color: white;
  border: 2px solid rgb(16, 34, 43);
  border-radius: 8px;
  cursor: pointer;
  transition: width 100ms ease, font-weight 100ms ease;
}
main .emailSection .emailFormCard .emailForm .mailButtNoteHolder .mailSendButt svg {
  display: none;
  fill: white;
  width: 18px;
  height: 18px;
}
main .emailSection .emailFormCard .emailForm .mailButtNoteHolder .mailSendButt.active svg {
  display: flex;
  animation: progressRotate 1s infinite linear;
}
main .emailSection .emailFormCard .emailForm .mailButtNoteHolder .mailSendButt:hover {
  width: 320px;
  font-weight: 700;
  outline: 3px solid rgba(16, 34, 43, 0.3);
}
main .emailSection .emailFormCard .emailForm .mailButtNoteHolder .mailsuccessNote {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background-color: #21E5A7;
  padding: 10px;
  padding-inline: 20px;
  border-radius: 50px;
  display: none;
}
main .emailSection .emailFormCard .emailForm .mailButtNoteHolder .mailsuccessNote.active {
  display: flex;
}
main .emailSection .emailFormCard .emailForm .mailButtNoteHolder .mailsuccessNote svg {
  fill: rgb(16, 34, 43);
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
main .emailSection .emailFormCard .emailForm .mailButtNoteHolder .mailsuccessNote span {
  width: auto;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: rgb(16, 34, 43);
}
main .emailSection .emailFormCard .emailForm .mailButtNoteHolder .mailfailNote {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  background-color: rgb(255, 77, 79);
  padding: 10px;
  padding-inline: 20px;
  border-radius: 50px;
  display: none;
}
main .emailSection .emailFormCard .emailForm .mailButtNoteHolder .mailfailNote.active {
  display: flex;
}
main .emailSection .emailFormCard .emailForm .mailButtNoteHolder .mailfailNote svg {
  fill: rgb(168, 7, 26);
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
main .emailSection .emailFormCard .emailForm .mailButtNoteHolder .mailfailNote span {
  width: auto;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: rgb(168, 7, 26);
}
@media screen and (max-width: 520px) {
  main .emailSection {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
    gap: 20px;
    padding: 10px;
    color: rgb(16, 34, 43);
  }
  main .emailSection .emailHeroCard {
    padding: 10px;
    margin: 0;
  }
  main .emailSection .emailHeroCard h1 {
    width: auto;
    font-size: 18px;
    text-align: center;
    font-weight: 800;
    font-family: "Poppins", sans-serif;
  }
  main .emailSection .emailHeroCard h2 {
    width: auto;
    font-size: 14px;
    text-align: center;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
  }
  main .emailSection .emailHeroCard .iconHolder svg {
    width: 150px;
    height: 150px;
  }
  main .emailSection .emailFormCard {
    padding: 10px;
  }
  main .emailSection .emailFormCard h1 {
    width: auto;
    font-size: 18px;
    text-align: center;
    font-weight: 800;
    font-family: "Poppins", sans-serif;
  }
  main .emailSection .emailFormCard .emailForm .formInput {
    width: 95%;
  }
}
@media screen and (min-width: 520px) and (max-width: 912px) {
  main .emailSection {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
    gap: 20px;
    padding: 10px;
    color: rgb(16, 34, 43);
  }
  main .emailSection .emailHeroCard {
    padding: 10px;
    margin: 0;
  }
  main .emailSection .emailHeroCard h1 {
    width: auto;
    font-size: 18px;
    text-align: center;
    font-weight: 800;
    font-family: "Poppins", sans-serif;
  }
  main .emailSection .emailHeroCard h2 {
    width: auto;
    font-size: 14px;
    text-align: center;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
  }
  main .emailSection .emailHeroCard .iconHolder svg {
    width: 150px;
    height: 150px;
  }
  main .emailSection .emailFormCard {
    padding: 10px;
  }
  main .emailSection .emailFormCard h1 {
    width: auto;
    font-size: 18px;
    text-align: center;
    font-weight: 800;
    font-family: "Poppins", sans-serif;
  }
  main .emailSection .emailFormCard .emailForm .formInput {
    width: 80%;
  }
}
main .extraContact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-direction: column;
}
main .extraContact h1 {
  width: 90%;
  font-size: 18px;
  text-align: start;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
main .extraContact .contactCardContainer {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-template-rows: auto;
  gap: 40px;
  margin-block: 20px;
}
main .extraContact .contactCardContainer .contactCard {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  grid-auto-flow: column;
  justify-content: start;
  align-items: center;
  width: 350px;
  background-color: rgb(16, 34, 43);
  padding: 10px;
  border-radius: 10px;
}
main .extraContact .contactCardContainer .contactCard .cardIcon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 60px;
  height: 60px;
  background-color: white;
  padding: 10px;
  border-radius: 8px;
}
main .extraContact .contactCardContainer .contactCard .cardIcon svg {
  fill: rgb(16, 34, 43);
  width: 60px;
  height: 60px;
  margin-inline: 10px;
}
main .extraContact .contactCardContainer .contactCard .cardDetail {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  gap: 10px;
  margin-left: 10px;
}
main .extraContact .contactCardContainer .contactCard .cardDetail span {
  width: 100%;
  font-size: 14px;
  text-align: start;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: white;
}
main .extraContact .contactCardContainer .contactCard .cardDetail span:nth-child(1) {
  width: 100%;
  font-size: 18px;
  text-align: start;
  font-weight: 800;
  font-family: "Poppins", sans-serif;
}
main .extraContact .contactCardContainer .contactCard .cardDetail a {
  width: 100%;
  font-size: 14px;
  text-align: start;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: white;
}
@media screen and (max-width: 520px) {
  main .extraContact h1 {
    width: 90%;
    font-size: 14px;
    text-align: start;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
  }
  main .extraContact .contactCardContainer {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
    gap: 10px;
    justify-content: center;
    align-items: center;
  }
  main .extraContact .contactCardContainer .contactCard {
    width: 98%;
    padding: 10px;
  }
  main .extraContact .contactCardContainer .contactCard .cardIcon {
    width: 40px;
    height: 40px;
  }
  main .extraContact .contactCardContainer .contactCard .cardDetail span {
    width: auto;
    font-size: 12px;
    text-align: start;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
  }
  main .extraContact .contactCardContainer .contactCard .cardDetail span:nth-child(1) {
    width: auto;
    font-size: 12px;
    text-align: start;
    font-weight: 800;
    font-family: "Poppins", sans-serif;
  }
  main .extraContact .contactCardContainer .contactCard .cardDetail a {
    width: auto;
    font-size: 12px;
    text-align: start;
    font-weight: 800;
    font-family: "Poppins", sans-serif;
  }
}
@media screen and (min-width: 520px) and (max-width: 912px) {
  main .extraContact h1 {
    width: 90%;
    font-size: 18px;
    text-align: start;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
  }
  main .extraContact .contactCardContainer {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
    gap: 10px;
    justify-content: center;
    align-items: center;
  }
  main .extraContact .contactCardContainer .contactCard {
    width: 400px;
    padding: 10px;
  }
  main .extraContact .contactCardContainer .contactCard .cardIcon {
    width: 40px;
    height: 40px;
  }
  main .extraContact .contactCardContainer .contactCard .cardDetail span {
    width: auto;
    font-size: 15px;
    text-align: start;
    font-weight: 500;
    font-family: "Poppins", sans-serif;
  }
  main .extraContact .contactCardContainer .contactCard .cardDetail span:nth-child(1) {
    width: auto;
    font-size: 14px;
    text-align: start;
    font-weight: 800;
    font-family: "Poppins", sans-serif;
  }
  main .extraContact .contactCardContainer .contactCard .cardDetail a {
    width: auto;
    font-size: 14px;
    text-align: start;
    font-weight: 800;
    font-family: "Poppins", sans-serif;
  }
}/*# sourceMappingURL=contact.css.map */