@font-face {
  font-family: "College";
  src: url("../fonts/college/College-8aDg.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NeueMontreal";
  src: url("../fonts/neue-montreal/NeueMontreal-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "NeueMontreal";
  src: url("../fonts/neue-montreal/NeueMontreal-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "NeueMontreal";
  src: url("../fonts/neue-montreal/NeueMontreal-BoldItalic.otf")
    format("opentype");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "NeueMontreal";
  src: url("../fonts/neue-montreal/NeueMontreal-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "NeueMontreal";
  src: url("../fonts/neue-montreal/NeueMontreal-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "NeueMontreal";
  src: url("../fonts/neue-montreal/NeueMontreal-LightItalic.otf")
    format("opentype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "NeueMontreal";
  src: url("../fonts/neue-montreal/NeueMontreal-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "NeueMontreal";
  src: url("../fonts/neue-montreal/NeueMontreal-MediumItalic.otf")
    format("opentype");
  font-weight: 500;
  font-style: italic;
}
:root {
  --primary_color: #005f4e;
  --bg_color: #fffef2;
  --white_color: #ffffff;
  --black_color: #000000;
  --border_color: #dddddd;
  --placeholder_color: #808080;
}
html {
  scroll-behavior: smooth;
}
*:not i {
  box-sizing: border-box;
}
.fa,
.fa-brands,
.fa-classic,
.fa-regular,
.fa-solid,
.fab,
.far,
.fas {
  width: auto;
}
body:has(.team_modal.active) {
  overflow: hidden;
}
body {
  background-color: var(--bg_color);
  color: var(--black_color);
}
body,
p,
ul,
button,
label {
  font-family: "NeueMontreal", sans-serif;
  margin: 0;
  line-height: 1.5;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-align: left;
}
h1 {
  font-size: 70px;
  line-height: 1.2;
  font-weight: 700;
  margin: 0;
  letter-spacing: 1.2px;
  text-transform: capitalize;
}
h2 {
  font-size: 60px;
  line-height: 1.2;
  font-weight: 400;
  margin: 0;
  letter-spacing: 1.2px;
  text-transform: capitalize;
}
h3 {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 400;
  margin: 0;
  letter-spacing: 1.2px;
  text-transform: capitalize;
}
h4 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 400;
  margin: 0;
  letter-spacing: 1.2px;
  text-transform: capitalize;
}
h5 {
  font-size: 25px;
  line-height: 1.2;
  font-weight: 400;
  margin: 0;
  letter-spacing: 1.2px;
  text-transform: capitalize;
}
h6 {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 500;
  margin: 0;
  letter-spacing: 1.2px;
  text-transform: capitalize;
  display: flex;
}
img {
  width: 100%;
  max-width: 100%;
  display: block;
}
header,
section,
footer {
  padding: 0 20px;
}
.container {
  max-width: 1440px;
  margin: 0 auto;
}
.container_row {
  display: flex;
  gap: 50px;
}
.container_colm {
  display: flex;
  gap: 50px;
  flex-direction: column;
}
.green_txt {
  color: var(--primary_color);
}
.btn {
  padding: 15px 30px;
  background-color: var(--primary_color);
  border: 2px solid var(--primary_color);
  border-radius: 15px;
  width: max-content;
  color: var(--bg_color);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all ease-in-out 0.2s;
  text-transform: uppercase;
  cursor: pointer;
  margin: auto;
}
.btn:hover {
  background-color: var(--bg_color);
  border: 2px solid var(--primary_color);
  color: var(--primary_color);
}
.btn i {
  transition: all ease-in-out 0.2s;
  transform: rotate(-45deg);
}
.btn:hover i {
  transform: rotate(0);
}
.form_group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.form_control {
  padding: 20px;
  border-radius: 15px;
  border: 2px solid var(--border_color);
  outline: 0;
  line-height: 1.2;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--black_color);
}
.form_control:hover,
.form_control:focus,
.form_control:focus-visible {
  border: 2px solid var(--primary_color);
}
.form_control::placeholder {
  color: var(--placeholder_color);
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* Header Css */
header {
  background-color: var(--primary_color);
  padding: 12px 20px;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 9;
}
header .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
.logo {
  font-family: "College";
  color: var(--white_color);
  font-size: 40px;
  line-height: 1.2;
  text-decoration: none;
}
.nav_menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav_menu .menu_item a {
  color: var(--white_color);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.5rem;
  text-transform: uppercase;
  transition: all ease-in-out 0.2s;
}
.nav_menu .menu_item a:hover,
.header_call:hover span,
.logo:hover {
  color: var(--bg_color);
  opacity: 0.8;
}
.nav_menu .menu_item a::after,
.header_call span::after,
.contact_list a span::after {
  content: "";
  border-bottom: 2px solid transparent;
  display: block;
  width: 0;
  height: 2px;
  transition: all ease-in-out 0.2s;
}
.nav_menu .menu_item.active a::after,
.nav_menu .menu_item a:hover::after,
.header_call:hover span::after {
  border-color: var(--bg_color);
  width: 100%;
}
.header_call {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white_color);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  line-height: 1.5rem;
}
.header_call i {
  padding: 10px;
  border-radius: 40px;
  background-color: var(--bg_color);
  color: var(--primary_color);
  border: 1px solid var(--primary_color);
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header_call:hover i {
  border-color: var(--bg_color);
  background-color: transparent;
  color: var(--bg_color);
}
.header_call::after {
  content: unset !important;
}
/* Hero section css */
.hero_banner {
  padding: 0;
  display: flex;
}
.hero_banner video {
  width: 100%;
}
/* About section css */
.about_section {
  padding: 80px 20px;
  text-align: center;
}
.about_section .container > div {
  position: relative;
  width: 100%;
}
.sec_head {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sub_heading {
  color: var(--primary_color);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.about_section .container img,
.contact_section img {
  border-radius: 15px;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
}
.about_section .container > div:nth-child(2)::before {
  width: 165px;
  height: 165px;
  content: "";
  display: block;
  background-color: var(--bg_color);
  position: absolute;
  left: -1px;
  top: -1px;
  z-index: 1;
  border-radius: 0 0 15px 0;
}
.green_circle {
  position: absolute;
  left: 0;
  top: 0;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary_color);
  border-radius: 100%;
  padding: 15px;
  z-index: 1;
}
.green_circle svg {
  width: 100%;
  height: 100%;
  animation: rotate 10s linear infinite;
  text-transform: uppercase;
  overflow: visible;
}
.green_box {
  background-color: var(--bg_color);
  padding: 20px;
  border-radius: 15px 0 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: absolute;
  bottom: -1px;
  right: -1px;
  align-items: center;
  width: 100%;
  max-width: 250px;
}
.green_box span {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 60px;
}
/* Team section css */
.team_section {
  padding: 80px 20px;
  background-color: rgb(0 95 78 / 15%);
}
.team_section .sec_head,
.contact_section .sec_head {
  align-items: center;
}
.team_section .sec_head p,
.contact_section .sec_head p {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.team_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0;
  list-style: none;
}
.team_box {
  width: calc(100% / 4 - 22.5px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  position: relative;
}
.team_overlay,
.team_img::after {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgb(0 95 78 / 20%);
  opacity: 0;
  transition: all ease-in-out 0.2s;
  display: block;
  content: "";
}
.team_box .team_linkedin {
  position: absolute;
  bottom: 15px;
  display: inline-flex;
  right: 0;
  font-size: 35px;
  color: var(--primary_color);
  text-decoration: none;
  letter-spacing: 0;
  line-height: 1;
  transition: all ease-in-out 0.2s;
  z-index: 2;
}
ul.without_headshot.team_grid {
  margin-top: 0px;
}
ul.without_headshot.team_grid a.team_linkedin {
  position: relative;
  order: 0;
  bottom: auto;
  margin-top: auto;
}
ul.without_headshot.team_grid p.team_position {
  text-align: center;
}
ul.without_headshot.team_grid li.team_box {
  padding: 24px;
  border: 1px solid #005f4e;
  box-sizing: border-box;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}
ul.without_headshot.team_grid li.team_box p.team_position {
  margin: 0px;
}
ul.without_headshot.team_grid > *:not(.team_linkedin) {
  order: 1;
}
.contact_list a:hover,
.foo_menu a:hover {
  opacity: 0.8;
}
.team_grp {
  display: flex;
  gap: 30px;
  flex-direction: column;
  align-items: center;
}
.team_img {
  display: block;
  position: relative;
}
.team_box:hover .team_img::after {
  opacity: 1;
}
.team_box:hover h6,
.team_box:hover p {
  color: var(--primary_color);
}
.team_overlay {
  z-index: 1;
}
.team_img::after {
  z-index: 0;
}
.team_modal {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: rgb(0 0 0 / 50%);
  z-index: 99;
  display: none;
}
.team_body {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: var(--primary_color);
  padding: 20px;
  border-radius: 15px;
  color: var(--bg_color);
  position: relative;
  margin: 0 20px;
}
.team_modal.active {
  display: flex;
}
.team_box:hover .team_body h6,
.team_box:hover .team_body p {
  color: var(--bg_color);
}

.team_position {
  margin-top: -10px;
}

.close_btn {
  position: absolute;
  right: -10px;
  top: -10px;
  background-color: var(--bg_color);
  border-radius: 15px;
  color: var(--primary_color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-size: 14px;
  padding-left: 2px;
  cursor: pointer;
}
.team_body a {
  font-size: 35px;
  color: var(--bg_color);
  text-decoration: none;
  letter-spacing: 0;
  line-height: 1;
}
/* Contact Section css */
.contact_section {
  padding: 80px 20px;
}
.contact_section .container_row {
  flex-wrap: wrap;
}
.contact_section .container_row > div:nth-child(2),
.contact_section .container_row > div:nth-child(3) {
  width: 50%;
  margin: auto;
  text-align: center;
}
.contact_div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact_img {
  align-items: flex-start;
  background-image: none;
  height: 100px;
  /*background-image: url(../images/contact-us.webp);*/
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 15px;
  display: flex;
  align-content: flex-end;
  /*align-items: flex-end;*/
  justify-content: flex-start;
  aspect-ratio: 1;
}
.contact_list a:hover span::after {
  border-color: var(--primary_color);
  width: 100%;
}
.contact_grid {
  display: flex;
  gap: 15px;
  list-style: none;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  padding: 20px;
  background-color: var(--bg_color);
  border-radius: 0 15px 0 0;
  margin-bottom: -1px;
}
.contact_list {
  width: 100%;
  list-style: none;
}
.contact_list a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--black_color);
  text-align: left;
  font-size: 14px;
  font-weight: 500;
}
.contact_list a:hover {
  color: var(--primary_color);
}
.contact_list a i {
  padding: 10px;
  border-radius: 40px;
  background-color: transparent;
  color: var(--primary_color);
  border: 1px solid var(--primary_color);
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  min-width: 15px;
}
.contact_form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
/* Footer Section css */
footer {
  background-color: var(--primary_color);
  padding: 12px 20px;
}
.copright_box {
  display: flex;
  justify-content: center;
  width: 100%;
  color: var(--bg_color);
  font-size: 14px;
  gap: 10px;
}
.copright_box a {
  color: var(--bg_color);
  text-decoration: none;
}
.copright_box a:hover {
  opacity: 0.8;
}
/* Mobile Menu css */
body:has(:not(.nav_menu.active)) .close_menu,
body:has(.nav_menu.active) .open_menu {
  display: none;
}
body:has(.nav_menu.active) .close_menu {
  display: block;
}
.mobile_menu i {
  color: var(--bg_color);
  font-size: 20px;
}
@media (min-width: 1025px) {
  .mobile_menu,
  .nav_menu .menu_item:first-child,
  .mob_video {
    display: none;
  }
}
@media (max-width: 1024px) {
  .nav_menu {
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--primary_color);
    z-index: 10;
    flex-direction: column;
    padding: 10px 0;
    max-width: 0;
    height: 100vh;
    justify-content: flex-start;
    visibility: hidden;
    gap: 10px;
    overflow: auto;
    transform: translateX(-100%);
    visibility: hidden;
    opacity: 0;
    width: 100%;
    transition: transform 0.35s ease, visibility 0.35s ease, opacity 0.35s ease;
  }
  .nav_menu.active {
    transform: translateX(0%);
    visibility: visible;
    max-width: 300px;
    opacity: 1;
    align-items: flex-start;
  }
  ul.nav_menu li.menu_item {
    border-bottom: 1px solid #fffef252;
    padding-bottom: 10px;
    width: 100%;
  }
  .nav_menu a {
    padding: 5px 20px;
    display: inline-flex;
    flex-direction: column;
  }
  .header_call {
    display: none;
  }
  .logo {
    font-size: 26px !important;
    text-transform: none !important;
    letter-spacing: 1.2px !important;
  }
  .logo::after {
    content: unset !important;
  }
  h1 {
    font-size: 55px;
  }
  h2 {
    font-size: 45px;
  }
  h3 {
    font-size: 35px;
  }
  h4 {
    font-size: 25px;
  }
  h5 {
    font-size: 20px;
  }
  h6 {
    font-size: 18px;
  }
  .green_box span {
    font-size: 40px;
  }
  .team_box {
    width: calc(100% / 3 - 20px);
  }
  .desktop_video {
    display: none;
  }
}
@media (max-width: 991px) {
  .container_row {
    flex-direction: column;
  }
  .contact_section .container_row > div:nth-child(3) {
    width: -webkit-fill-available;
    text-align: center;
  }
  .contact_section .container_row > div:nth-child(2) {
    width: 100%;
  }
  .contact_form {
    align-items: center;
  }
  .team_box {
    width: calc(100% / 2 - 15px);
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 45px;
  }
  h2 {
    font-size: 35px;
  }
  h3 {
    font-size: 24px;
  }
  h4 {
    font-size: 23px;
  }
  .container_colm,
  .container_row {
    gap: 50px;
  }
  .about_section,
  .team_section,
  .contact_section {
    padding: 50px 20px;
  }
  .green_box span {
    font-size: 25px;
  }
  .contact_list {
    width: 100%;
  }
  .sec_head,
  .copright_box {
    text-align: center;
    align-items: center;
  }
  .green_circle {
    width: 60px;
    height: 60px;
    padding: 10px;
  }
  .about_section .container > div:nth-child(2)::before {
    width: 90px;
    height: 90px;
  }
  .green_box {
    padding: 15px;
    max-width: 150px;
  }
}
@media (max-width: 600px) {
  .team_box {
    width: 100%;
  }
  .team_body {
    height: 500px;
    overflow: auto;
  }
  .close_btn {
    position: sticky;
    top: -19px;
    right: -20px;
    margin-left: auto;
    margin-right: -20px;
    margin-top: -20px;
    padding: 8px 1px;
  }
}
