@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

:root {
  --primFont: "Montserrat";
  --reunionFont: "Open Sans", sans-serif;
  --headWeight: 700;
  --bodyWeight: 400;
  --baseGrey-85: #4b5157;
  --baseWhite: #fff;
  --baseGrey-50: #939699;
  --baseBlue: #00005a;
  --lineHeight: 30px;
  --fontBlue: #4682b4;
}

a {
  text-decoration: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

img {
  object-fit: cover;
}

.section-center {
  max-width: 1280px;
  width: 80vw;
  margin-left: auto;
  margin-right: auto;
}


.main-header {
  background-repeat-x: repeat;
  background-repeat-y: repeat;
  background-image: linear-gradient(180deg,rgba(0,0,0,0.5) 99%,rgba(0,0,0,0) 100%),url(assets/pbhs.png)!important;
  font-family: var(--primFont);
  color: var(--baseWhite);
  height: max-content;
  display: grid;
  place-items: center;
}

.main-header-content {
  margin-top: 16rem;
}

.main-header-text {
  display: grid;
  place-items: center;
  gap: 3rem;
}

.main-header h1 {
  font-weight: 600;
  font-size: 72px;
  animation-name: startAnim;
  animation-duration: 0.7s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.main-header h3 {
  font-size: 26px;
}

.logo-container {
  width: 260px;
  height: 250px;
  margin-top: 8rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 8rem;
}

.white-line {
  background: rgba(255, 255, 255, 0.7);
  width: 120px;
  height: 5px;
  justify-self: flex-start;
}

@media screen and (min-width: 768px) {
  .main-header-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    margin-top: 0;
  }
  .main-header-text {
    justify-items: flex-start;
    text-align: left;
    align-content: center;
    gap: 3rem;
    grid-template-rows: repeat(3, min-content);
  }
  .main-header-text h1 {
    font-size: 80px;
  }
  .main-header {
    height: 100vh;
  }
}

/* =================== */
/* reunion-section */
/* =================== */

.reunion-section {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.reunion-text {
  background-color: #f5f5f5;
  padding: 2rem 1.5rem;
  font-family: var(--reunionFont);
  color: #333333;
  text-align: center;
  position: relative;
}
.reunion-text h1 {
  font-size: 1.5rem;
  margin-bottom: 1.7rem;
}
.reunion-text h2 {
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
}

.quote-img-icon {
  width: 30px;
  position: absolute;
  transform: translate(-50%, -160%);
}

.btn-group {
  display: grid;
  gap: 1.2rem;
  margin-bottom: 4rem;
}

.btn,
.submit-btn {
  font-family: var(--reunionFont);
  font-size: 20px;
  text-align: center;
  padding: 10px 20px;
  background-color: transparent;
  border: 2px solid #2ea3f2;
  border-radius: 3px;
  font-weight: 500;
  transition: 0.3s all ease;
  cursor: pointer;
  box-shadow: 0px 6px 12px #33333330;
}

.btn a {
  color: #2ea3f2;
}

.btn:hover,
.submit-btn:hover {
  border-color: #f5f5f5;
  background-color: #f5f5f5;
}

.chev-icon {
  transform: translateX(0);
  opacity: 1;
  transition: 0.3s all linear;
}

.hide {
  opacity: 0;
  transform: translateX(-100%);
  transition: 0.3s all linear;
}

@media screen and (min-width: 768px) {
  .btn-group {
    grid-template-columns: 1fr 1fr;
    place-items: center;
  }
  .btn:hover {
    transform: scale(1.1);
  }
}

.all-img-container {
  display: grid;
  place-items: center;
  gap: 1.5rem;
}
.img-cont {
  width: 250px;
  height: 150px;
}

@media screen and (min-width: 768px) {
  .all-img-container {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.contact-form-section {
  margin-top: 4rem;
  text-align: center;
  margin-bottom: 4rem;
  font-family: var(--primFont);
}

.contact-form-section p {
  margin-top: 3rem;
  margin-bottom: 2rem;
  font-size: 16px;
  line-height: 26px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  color: #666666;
}

.contact-form-section h1 {
  font-size: 30px;
  color: #333333;
  font-weight: 500;
}

.grid-layout-fields {
  display: grid;
  gap: 0.7rem;
}

.input-field {
  padding: 0.7rem 1rem;
  background-color: #eeeeee;
  border-color: transparent;
}
.input-field::placeholder {
  font-family: var(--primFont);
}

.submit-btn {
  margin-top: 1rem;
  color: #2ea3f2;
  height: max-content;
}

.submit-field {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-items: flex-end;
  width: max-content;
  margin-left: auto;
}

.capcha-para {
  margin: 0;
  padding: 0;
  width: 100px;
}

@media screen and (min-width: 768px) {
  .grid-layout-fields {
    grid-template-areas:
      "a b"
      "c c";
    gap: 2rem;
  }
  .input-field {
    padding: 1rem 0.8rem;
    font-size: 16px;
  }
  .name-fld {
    grid-area: a;
  }
  .subj-fld {
    grid-area: b;
  }
  .msg-fld {
    grid-area: c;
  }
  .table-div {
    overflow-y: hidden;
    overflow-x: hidden;
  }
}

.contacts-section {
  text-align: center;
  font-family: var(--primFont);
}
.contacts-section h1 {
  font-size: 30px;
  color: #333333;
}
.contacts-section p {
  font-size: 16px;
  color: #666666;
  margin-top: 3rem;
  margin-bottom: 2rem;
}
.table-div {
  overflow-y: auto;
}

.styled-table {
  border-collapse: collapse;
  margin: 25px 0;
  font-size: 14px;
  width: 100%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.styled-table th,
.styled-table td {
  padding: 6px 24px;
  text-align: left;
  font-family: var(--reunionFont);
}

.styled-table th {
  background-color: #f2f2f2;
  color: #333;
  padding: 9px 24px;
}

.styled-table tr {
  border: 1px solid rgba(102, 102, 102, 0.15);

  color: #666666;
}

/* .styled-table tr:nth-of-type(even) {
  background-color: #f3f3f3;
}

.styled-table tr:nth-of-type(odd) {
  background-color: #ffffff;
} */

/* .styled-table tr:hover {
  background-color: #f1f1f1;
} */

.styled-table a {
  color: #1a73e8;
  text-decoration: none;
}

.styled-table a:hover {
  text-decoration: underline;
}

footer {
  background-color: #222222;
  height: 150px;
}

.countdown {
  font-family: var(--reunionFont);
  color: #ffffff;
  text-align: center;
  background-size: initial;
  background-repeat: repeat;
  background-image: linear-gradient(180deg,rgba(0,0,0,0.5) 99%,rgba(0,0,0,0) 100%),url(assets/pbhs.png)!important;
  font-weight: lighter;
  padding: 1rem 0.7rem;
  margin-bottom: 10rem;
}

.countdown h1 {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 500;
}

.countdown h2,
.countdown p {
  font-size: 24px;
  font-weight: 500;
}

.countdown h3 {
  font-size: 12px;
  font-weight: 500;
}

.timer {

  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

@media screen and (min-width: 768px) {
  .countdown h1 {
    font-size: 26px;
    margin-bottom: 30px;
    font-weight: 500;
  }

  .countdown {
    padding: 2rem 0.7rem;
    margin-bottom: 4rem;
  }

  .countdown h2,
  .countdown p {
    font-size: 54px;
    font-weight: 500;
  }

  .timer {
    gap: 2rem;
  }
}

@keyframes startAnim {
  0% {
    scale: 0.6;
    transform: translate(-30%, -50%);
  }
  100% {
    scale: 1;
    transform: translate(0, 0);
  }
}
