:root {
  font-size: 16px;
}

body {
  font-family: "Work Sans", sans-serif;
  background-color: #f5f7f6;
  overflow-x: hidden;
}

* {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
*:focus {
  outline: none;
}
*::-webkit-scrollbar {
  display: none;
}

header {
  background-color: transparent;
  text-align: center;
  position: sticky;
  top: 0;
  background-color: #ffffff;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.06);
  z-index: 9;
}
header.loginHeader {
  position: unset;
  height: 40vh;
  display: grid;
  align-items: center;
  margin-bottom: 20px;
}
header.loginHeader .container {
  display: flex;
  justify-content: space-evenly;
}
header.loginHeader .container img {
  flex: 0 0 calc(33.333333% - 40px);
  max-width: 200px;
  width: 16vw;
}
header .container {
  padding-top: 10px;
  padding-bottom: 5px;
}
header .logos {
  display: flex;
  justify-content: space-evenly;
}
header img {
  max-width: 100px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

h2 {
  color: #d3a651;
}

.rangeRadio {
  display: flex;
  align-items: flex-end;
  max-width: 100%;
  width: 100%;
}
.rangeRadio label {
  display: block;
  border-radius: 5px;
  width: 100%;
  min-height: 10px;
  height: 100px;
  background-color: #d3a651;
  border: 1px solid #d3a651;
  margin: 1%;
  margin-top: 0;
  cursor: pointer;
}
.rangeRadio label.radioLabel-1 {
  height: 20px;
}
.rangeRadio label.radioLabel-2 {
  height: 40px;
}
.rangeRadio label.radioLabel-3 {
  height: 60px;
}
.rangeRadio label.radioLabel-4 {
  height: 80px;
}
.rangeRadio label.radioLabel-5 {
  height: 100px;
}
.rangeRadio input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
  z-index: -2;
}
.rangeRadio input:checked ~ label {
  background-color: #fff;
  border-color: #bfc2c1;
}
.rangeRadio input:checked + label {
  background-color: #d3a651;
  border-color: #d3a651;
}

.voiceInput {
  display: block;
  margin: auto;
}
.voiceInput .rangeBar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
}

.profilePic {
  width: 100px;
  height: 100px;
  margin-top: -60px;
  margin-bottom: 10px;
}
.profilePic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 10px;
}

.zInp {
  width: 100%;
  border: 1px solid #bfc2c1;
  background-color: #fff;
  border-radius: 5px;
  resize: none;
}
.zInp:-moz-read-only {
  border-color: transparent;
  background-color: #eee;
  color: #aaa;
}
.zInp:read-only {
  border-color: transparent;
  background-color: #eee;
  color: #aaa;
}

.zLbl {
  font-weight: 500;
  margin-bottom: 5px;
}

main {
  padding-bottom: 54px;
}
main .container {
  padding-top: 10px;
  padding-bottom: 40px;
}

.cardWhite.homeCard {
  text-align: center;
  padding: 30px 20px;
}
.cardWhite.homeCard i {
  font-size: 5rem;
  height: 70px;
  margin-top: 30px;
  margin-bottom: 30px;
  color: transparent;
  -webkit-text-stroke: 1px #d3a651;
}
.cardWhite.homeCard .number {
  font-size: 3.125rem;
  margin-top: 30px;
  margin-bottom: 30px;
  color: transparent;
  -webkit-text-stroke: 1px #d3a651;
  font-weight: 700;
}
.cardWhite.homeCard .number span {
  font-size: 0.875rem;
  color: #777;
  -webkit-text-stroke: 0px transparent;
  font-weight: 400;
}
.cardWhite.homeCard h5 {
  font-size: 1rem;
}

.radioInputWrapper {
  display: flex;
  gap: 1px;
  padding: 1px;
  background-color: #bfc2c1;
  border-radius: 5px;
}
.radioInputWrapper .radioInput {
  width: 50%;
}
.radioInputWrapper .radioInput input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.radioInputWrapper .radioInput input:checked + label {
  background-color: #d3a651;
  color: #fff;
}
.radioInputWrapper .radioInput label {
  width: 100%;
  display: grid;
  place-content: center;
  background-color: #fff;
  padding: 5px 5px;
  cursor: pointer;
}
.radioInputWrapper .radioInput:first-child label {
  border-radius: 4px 0 0 4px;
}
.radioInputWrapper .radioInput:last-child label {
  border-radius: 0 4px 4px 0;
}

.memberCard {
  text-align: center;
  position: relative;
}
.memberCard .profilePic {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 75px;
}
.memberCard p {
  margin-bottom: 0;
  display: flex;
  gap: 5px;
}
.memberCard p::before {
  color: #d3a651;
  display: grid;
  place-content: center;
  width: 22px;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
}
.memberCard p.phone::before {
  content: "\f095";
}
.memberCard p.mail::before {
  content: "\f0e0";
}
.memberCard p.company::before {
  content: "\f1ad";
}
.memberCard p.address::before {
  content: "\f3c5";
}
.memberCard p.workClass {
  color: #d3a651;
  font-size: 0.75rem;
  text-transform: uppercase;
}
.memberCard .companyName {
  color: #777;
  display: block;
  font-size: 0.875rem;
}
.memberCard .businessClassification {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #d3a651;
}
.memberCard .club {
  display: flex;
  gap: 3px;
  align-items: center;
  position: absolute;
  right: 15px;
  top: 15px;
  font-size: 0.625rem;
  padding: 5px;
  line-height: 1;
  color: #fff;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.6);
}
.memberCard .club::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(../img/rotary.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.cardWhite {
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.06);
  padding: 15px;
  border-radius: 25px;
  background-color: #fff;
  display: block;
  text-decoration: none;
  color: #000000;
}

form {
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.06);
  padding: 15px;
  border-radius: 25px;
  background-color: #fff;
}
form .mandatory .zLbl::after {
  content: "*";
  color: #eda097;
}

.checkBox label {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}
.checkBox label::before {
  content: "";
  display: grid;
  width: 26px;
  flex: 0 0 26px;
  height: 26px;
  background-color: #fff;
  border: 1px solid #bfc2c1;
  border-radius: 5px;
  transition: 0.3s all ease;
}
.checkBox label::after {
  content: "";
  position: absolute;
  border: solid transparent;
  border-width: 0 0 2px 2px;
  width: 0px;
  height: 0px;
  left: 13px;
  top: 13px;
  transform: translate(-50%, -75%) rotate(0deg);
  transition: 0.3s all ease;
}
.checkBox input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.checkBox input:checked + label::before {
  background-color: #d3a651;
  border-color: #d3a651;
}
.checkBox input:checked + label::after {
  width: 15px;
  height: 7px;
  border-color: #fff;
  transform: translate(-50%, -75%) rotate(-45deg);
}

#searchInp {
  width: 100%;
  position: relative;
  display: grid;
}
#searchInp::before {
  content: "\f002";
  color: #d3a651;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  position: absolute;
  z-index: 1;
  right: 0px;
  top: 0px;
  width: 46px;
  height: 100%;
  border-radius: 10px;
  display: grid;
  place-content: center;
}
#searchInp input {
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
}

.mainBtn {
  padding: 10px 20px;
  background-color: #d3a651;
  color: #fff;
  text-decoration: none;
  border-radius: 10px;
  border: 1px solid #d3a651;
  font-weight: 500;
  transition: 0.3s all ease;
  display: inline-block;
}
.mainBtn:hover {
  background-color: #333333;
  border-color: #333333;
  color: #fff;
}
.mainBtn.alt {
  background-color: #f9f0e1;
  color: #d3a651;
  border: 1px solid #f9f0e1;
}
.mainBtn.alt:hover {
  background-color: #d3a651;
  border-color: #d3a651;
  color: #fff;
}
.mainBtn.secondary {
  background-color: #ddd;
  color: #333;
  border: 1px solid #ddd;
}
.mainBtn.secondary:hover {
  background-color: #333;
  border-color: #333;
  color: #fff;
}

.link {
  color: #d3a651;
  text-decoration: none;
  position: relative;
}
.link::before {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  background-color: #d3a651;
  transition: 0.3s all ease-in;
  left: 0;
  bottom: 0;
}
.link:hover {
  color: #d3a651;
  text-decoration: none;
}
.link:hover::before {
  width: 100%;
}

.contactList {
  display: flex;
  padding-left: 0;
  justify-content: space-between;
  margin-bottom: 0;
  list-style-type: none;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.contactList li {
  flex: 1 0 calc(33.333333% - 6px);
}
.contactList li div, .contactList li a {
  display: block;
  background-color: #f9f0e1;
  color: #d3a651;
  text-decoration: none;
  border-radius: 10px;
  padding: 20px 20px 15px;
}
.contactList li div i, .contactList li a i {
  font-size: 1.5rem;
}
.contactList li div span, .contactList li a span {
  display: block;
}

.memberAllCard {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 10px;
}
.memberAllCard img {
  width: 150px;
  flex: 0 0 150px;
  height: 150px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.memberAllCard p.mail,
.memberAllCard p.phone {
  word-break: break-all;
}

.select2-container {
  max-width: 100%;
}

.profList {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.profList li {
  padding-top: 10px;
  padding-bottom: 10px;
}
.profList li:not(:last-child) {
  border-bottom: 1px solid #bfc2c1;
}
.profList p {
  margin-bottom: 0;
}
.profList p::before {
  content: attr(fieldName);
  display: block;
  font-size: 0.75rem;
  color: #777;
}

.navBtn {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 40px;
  height: 40px;
  display: grid;
  place-content: center;
  border: none;
  background-color: #d3a651;
  border-radius: 10px;
  color: #333;
  cursor: pointer;
}

.sideList {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  background-color: #fff;
  padding: 20px;
  position: absolute;
  left: 0;
  top: 100%;
  z-index: -1;
  height: calc(100vh - 100%);
  text-align: left;
  width: 100%;
  max-width: 300px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.06);
  transform: translateX(-100%);
  transition: 0.5s all ease;
}
.sideList.active {
  transform: translateX(0);
}
.sideList li {
  padding: 10px;
}
.sideList li:not(:last-child) {
  border-bottom: 1px solid #bfc2c1;
}
.sideList li a {
  text-decoration: none;
  color: #000000;
}

@media (min-width: 768px) {
  ul.navList {
    width: 100%;
    left: 0;
    bottom: 0;
    list-style-type: none;
    display: flex;
    padding: 5px 5px 0;
    margin-bottom: 0;
    margin-top: 10px;
    border-top: 1px solid #bfc2c1;
  }
  ul.navList li {
    flex: 0 0 20%;
    width: 0 0 20%;
    display: grid;
    position: relative;
  }
  ul.navList li a {
    text-decoration: none;
    color: #999;
  }
  ul.navList li a i {
    display: none;
  }
  ul.navList li a.active {
    color: #000;
  }
}
@media (max-width: 767px) {
  .contactList li {
    flex: 0 0 100%;
  }
  ul.navList {
    position: fixed;
    width: 100%;
    left: 0;
    bottom: 0;
    list-style-type: none;
    display: flex;
    padding: 5px;
    margin-bottom: 0;
    background-color: #fff;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.06);
  }
  ul.navList li {
    flex: 0 0 20%;
    width: 0 0 20%;
    display: grid;
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
  }
  ul.navList li a {
    text-decoration: none;
    color: #999;
    font-size: 0.625rem;
    text-transform: uppercase;
    display: block;
  }
  ul.navList li a::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 5px;
    left: 50%;
    top: -5px;
    transform: translateX(-50%);
    border-radius: 0 0 5px 5px;
    opacity: 0;
    background-color: #d3a651;
  }
  ul.navList li a i {
    display: block;
    font-size: 1.25rem;
  }
  ul.navList li a.active {
    color: #000;
  }
  ul.navList li a.active::before {
    opacity: 1;
  }
  ul.navList li a.active i {
    color: #d3a651;
  }
}
@media (max-width: 576px) {
  :root {
    font-size: 14px;
  }
  .cardWhite.homeCard .number {
    font-size: 8vw;
  }
  .cardWhite.homeCard h5 {
    font-size: 3.8vw;
  }
  header:not(.loginHeader) {
    position: sticky;
    top: 0;
  }
  header:not(.loginHeader) .logos {
    margin-left: auto;
    margin-right: auto;
    max-width: calc(100% - 35px);
    align-items: center;
    gap: 10px;
    justify-content: center;
  }
  header:not(.loginHeader) .logos img {
    flex: 0 0 16%;
    width: 10vw;
    height: 10vw;
  }
  header:not(.loginHeader) .logos img.mainLogo {
    flex: 0 0 40%;
    width: 10vw;
    height: auto;
  }
  header.loginHeader {
    height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  header.loginHeader .container {
    flex-wrap: wrap;
    gap: 10px;
  }
  header.loginHeader .container img {
    flex: 0 0 30%;
    height: 70px;
  }
  header.loginHeader .container img.mainLogo {
    flex: 0 0 100%;
    order: 2;
    height: 50vw;
  }
  .cardWhite.memberCard.memberAllCard {
    flex-direction: row;
    padding: 10px 5px;
    align-items: center;
    border-radius: 0px;
    box-shadow: none;
    background-color: transparent;
  }
  .cardWhite.memberCard.memberAllCard h5 {
    font-size: 1rem;
    margin-bottom: 0;
  }
  .cardWhite.memberCard.memberAllCard img {
    width: 50px;
    flex: 0 0 50px;
    height: 50px;
    border-radius: 25px;
  }
  .cardWhite.memberCard.memberAllCard .clubName {
    font-size: 0.875rem;
    line-height: 1;
  }
  .cardWhite.memberCard:not(.memberAllCard) .club {
    position: unset;
    font-size: 0.875rem;
    text-align: left;
    background-color: #fff;
    color: #d3a651;
    justify-content: center;
  }
  #memberList .col-xxl-3:not(:last-child) {
    border-bottom: 1px solid #e7e7e7;
  }
}/*# sourceMappingURL=style.css.map */