@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&display=swap");

@font-face {
  font-family: "Metropolis-Bold";
  src: url("../fonts/Metropolis-Bold.woff2") format("woff2"),
    url("../fonts/Metropolis-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Metropolis";
  src: url("../fonts/Metropolis-Regular.woff2") format("woff2"),
    url("../fonts/Metropolis-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Metropolis-Medium";
  src: url("../fonts/Metropolis-Medium.woff2") format("woff2"),
    url("../fonts/Metropolis-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Metropolis-Light";
  src: url("../fonts/Metropolis-Light.woff2") format("woff2"),
    url("../fonts/Metropolis-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Metropolis-ExtraLight";
  src: url("../fonts/Metropolis-ExtraLight.otf") format("woff2"),
    url("../fonts/Metropolis-ExtraLight.otf") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Metropolis Semi";
  src: url("../fonts/Metropolis-SemiBold.woff2") format("woff2"),
    url("../fonts/Metropolis-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Metropolis-Thin";
  src: url("../fonts/Metropolis-Thin.woff2") format("woff2"),
    url("../fonts/Metropolis-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #b18d56;
  --secondary: #15342a;
  --tertiary: #ffffff;
  --quaternary: #474747;
  --rounded: 0.5rem;
  --text-primary: var(--primary);
  --text-secondary: var(--secondary);
  --text-tertiary: var(--tertiary);
  --text-quaternary: var(--quaternary);
}

/* z-index pattern */
.z-1 {
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

.z-9 {
  z-index: 9;
}

.z-99 {
  z-index: 99;
}

.z-1-1 {
  z-index: -1;
}

.z-2-2 {
  z-index: -2;
}

.z-9-9 {
  z-index: -9;
}

.z-99-99 {
  z-index: -99;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: var(--placeholder);
  opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
  color: var(--placeholder);
  opacity: 1;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: var(--placeholder);
  opacity: 1;
}

.form-control::placeholder {
  color: var(--placeholder);
}

body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  transition: background-color 0.15s ease-in-out;
  font-family: "Cormorant", serif;
  overflow-x: hidden;
  color: var(--text-color);
  letter-spacing: 0.8px;
  -webkit-text-size-adjust: none;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
html {
  overscroll-behavior: none;
  
}

.rounded {
  border-radius: var(--rounded) !important;
  overflow: hidden;
}

.rounded-2x {
  border-radius: 1.3rem !important;
  overflow: hidden;
}

img {
  border: none;
  margin: 0;
  -webkit-user-select: none;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

a,
a:focus,
a:link,
a:visited,
input:focus,
textarea:focus {
  outline: 0;
  text-decoration: none;
  font-size: 16px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px dashed var(--primary);
  outline-offset: 4px;
}

select:focus {
  outline: 0;
}

textarea {
  resize: none;
}

form:not(.content-area),
h1:not(.content-area),
h2:not(.content-area),
h3:not(.content-area),
h4:not(.content-area),
h5:not(.content-area),
h6:not(.content-area),
p:not(.content-area),
ul:not(.content-area) {
  margin: 0;
  padding: 0;
}

input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

iframe {
  display: block;
}

p + p {
  margin-top: 1.5em;
}

article,
aside,
details,
figcaption,
figure,
footer,
topbar,
hgroup,
menu,
nav,
section,
time {
  display: block;
  margin: 0;
  padding: 0;
}

::selection {
  background: #1c1c1c;
  color: #fff;
}

::-moz-selection {
  background: #1c1c1c;
  color: #fff;
}

ul {
  list-style: none;
}

li {
  padding: 0;
  margin: 0;
}

label {
  font-weight: 400 !important;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  letter-spacing: 0;
}

.h1,
h1 {
  font-size: 2.25em;
}

.h2,
h2 {
  font-size: 2em;
}

.h3,
h3 {
  font-size: 1.75em;
}

.h4,
h4 {
  font-size: 1.5em;
}

.h5,
h5 {
  font-size: 1.25em;
}

.h6,
h6 {
  font-size: 1.25em;
}

a {
  color: var(--primary);
}

.underlined {
  padding-bottom: 0.75em;
  margin-bottom: 1em;
  text-align: center;
  text-transform: uppercase;
  position: relative;
}

.underlined:after {
  content: "";
  width: 150px;
  height: 5px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  background-color: var(--danger);
}

@media only screen and (min-width: 991px) {
  .justify-content-md-unset {
    justify-content: unset !important;
  }
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  font-size: 0.8em;
  display: block;
  line-height: 1.5em;
}

.stretched {
  letter-spacing: 1px;
}

.text-default,
.text-default:active,
.text-default:focus {
  color: var(--dark) !important;
}

.text-muted {
  color: #424143 !important;
}

.btn-muted {
  background-color: #bfbfbf !important;
}

.text-primary,
.text-primary:active,
.text-primary:focus {
  color: var(--primary) !important;
}

.text-secondary,
.text-secondary:active,
.text-secondary:focus {
  color: var(--secondary) !important;
}

.text-tertiary,
.text-tertiary:active,
.text-tertiary:focus {
  color: var(--tertiary) !important;
}

.text-quaternary,
.text-quaternary:active,
.text-quaternary:focus {
  color: var(--quaternary) !important;
}

.text-white,
.text-white:active,
.text-white:focus {
  color: var(--white);
}

.text-grey {
  color: #706f6f !important;
}

.tooltip-inner {
  font-size: 0.875em;
}

.bg-primary {
  background: var(--primary) !important;
}

.bg-secondary {
  background: var(--secondary) !important;
}

.bg-tertiary {
  background: var(--tertiary) !important;
}

.bg-quaternary {
  background: var(--quaternary) !important;
}

.bg-white {
  background: var(--white) !important;
}

.bg-dark {
  background: var(--dark) !important;
}

.bg-darkGray {
  background: #333 !important;
}

.bg-dark-gray-news * {
  color: #fff;
}

.bg-opacity {
  background: rgba(245, 245, 245, 0.2);
}

.bg-dgray {
  background: #dedede !important;
}

.grow {
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.grow:hover {
  -moz-transform: scale(1.04);
  -ms-transform: scale(1.04);
  -webkit-transform: scale(1.04);
  transform: scale(1.04);
}

.btn-primary {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  font-size: 0.9rem;
  color: var(--tertiary);
  letter-spacing: 2px;
  line-height: 1rem;
  padding: 0.8rem 2.5rem;
  gap: 0.5rem;
}

.btn-primary:hover {
  color: var(--secondary) !important;
  border-color: var(--primary) !important;
  background-color: var(--tertiary) !important;
}

.btn-primary-outline {
  border-color: var(--primary) !important;
  background-color: var(--tertiary) !important;
  font-size: 0.9rem !important;
  font-weight: 600;
  color: var(--primary) !important;
  letter-spacing: -0.7px;
  line-height: 1rem;
  padding: 0.8rem 1rem;
  gap: 0.5rem !important;
  transition: all 0.3s ease-in-out;
  /* 👈 this is the magic line */
}

.btn-primary-outline:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  font-size: 0.9rem;
  color: var(--tertiary) !important;
  letter-spacing: -0.7px;
  line-height: 1rem;
  padding: 0.8rem 1rem;
  gap: 0.5rem;
  font-weight: 600;
}

.btn-secondary {
  background: var(--secondary) !important;
  border-color: var(--secondary) !important;
}

.btn-secondary:hover {
  background: #ffdb60 !important;
  border-color: #ffdb60 !important;
  color: var(--dark);
}

.btn-tertiary {
  background: var(--tertiary) !important;
  border-color: var(--tertiary) !important;
  color: #fff;
}

.btn-tertiary:hover {
  background: #1e172c !important;
  border-color: #1e172c !important;
  color: #fff;
}

.btn-quaternary {
  background: var(--quaternary) !important;
  border-color: var(--quaternary) !important;
  color: #fff;
}

.btn-light {
  background: var(--light-gray);
  border-color: var(--light-gray);
}

.btn-light:hover {
  background: transparent !important;
  border-color: var(--light-gray) !important;
  color: var(--light-gray) !important;
}

.btn-transparent {
  background: transparent !important;
  border-color: #fff !important;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1rem;
  padding: 0.75rem 1.2rem;
}

.btn-transparent:hover {
  background: var(--gray) !important;
  color: #333;
}

.btn-shape {
  border: 0;
  border-top-right-radius: 1rem;
  border-bottom-left-radius: 1rem;
  padding: 0.75rem 2.2rem;
}

/*style Starting */

section {
  padding: 60px 0;
  overflow: hidden;
}

main {
  overflow-x: hidden;
}
/* 
.container-max {
  width: 90%;
  max-width: 1600px;
  margin: auto;
  position: relative;
  z-index: 9;
} */

.min-vh-70 {
  height: 70vh;
}

.min-vh-60 {
  height: 60vh;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 12px;
  color: var(--tertiary);
  background-color: var(--secondary);
  line-height: 20px;
  letter-spacing: -0.2px;
}

#footer a {
  font-size: 0.9rem;
  font-weight: 500;
  font-family: "Metropolis";
  color: var(--tertiary);
  line-height: 24px;
  letter-spacing: 0;
}

#footer .footer-top h4 {
  font-size: 0.8rem;
  font-family: "Metropolis-Thin";
  letter-spacing: 3px;
  padding: 10px 0;
  color: var(--tertiary);
  position: relative;
  padding: 7px 0 !important;
}

.footer-input {
  border-top: 0;
  border-left: 0;
  border-bottom: 1px solid var(--tertiary);
  border-right: 0px;
  width: 100%;
}

.footer-top .footer-address img {
  transform: translateY(4px);
}

.footer-input input {
  border: none;
  width: 100%;
  background-color: transparent;
}

.footer-input input::placeholder {
  color: var(--tertiary);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: var(--secondary);
}

.footer-contact p {
  line-height: 20px;
  font-size: 12px;
  letter-spacing: -0.2px;
}

#footer .footer-top h3 {
  font-size: 22px;
  font-weight: 600;
  padding: 10px 0;
  color: var(--tertiary);
  position: relative;
}

/*#footer .footer-top .footer-links {
  margin-bottom: 30px;
}*/

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--tertiary);
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: var(--tertiary);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-size: 14px;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: var(--tertiary);
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}
.counter-section .counterpara {
  font-size: clamp(0.5rem, 1.3vw + 0.2rem, 1rem);
  white-space: nowrap;
}

/* Wrapper for custom checkboxes */

.chk-wrap {
  margin-bottom: 36px;
}

.chk-wrap.wrap-flex {
  width: 48%;
  margin-right: 2%;
}
.checkbox-container {
  display: flex;
  gap: 10px;
  align-items: center;
  position: relative;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 12px;
  color: #333;
  user-select: none;
  font-family: "Metropolis-Light", sans-serif;
}

/* Hide the native checkbox */
.checkbox-container input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Custom checkmark box */
.checkbox-container .checkmark {
  position: relative;
  height: 20px;
  min-width: 20px;
  background-color: #fff;
  border: 2px solid var(--primary);
  border-radius: 4px;
  transition: all 0.2s ease;
}

/* Hover effect */
.checkbox-container:hover .checkmark {
  background-color: var(--primary);
}

/* Checked state */
.checkbox-container input:checked ~ .checkmark {
  background-color: var(--primary);
  border-color: var(--primary);
}

/* Checkmark tick */
.checkbox-container .checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark::after {
  display: block;
}

/* Tick shape */
.checkbox-container .checkmark::after {
  left: 5px;
  top: 1px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
#job-filters h4 {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 24px;
  color: var(--primary);
}

.job-item h5 {
  font-family: "Cormorant", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    
    display: block;
    color: var(--primary) !important;
}

.opening-section h3 {
  font-size: 1.3rem;
    letter-spacing: 6px;
    line-height: 30px;
    font-family: "Metropolis-Light", sans-serif;
    color: var(--primary) !important;
    text-transform: uppercase;
    margin-bottom: 40px;
}
.location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 18px;
}

.chk-select {
  display: none;
  border: 1px solid;
  padding: 10px;
  justify-content: space-between;
  align-items: center;
}
.chk-wrap.wrapped .chk-select {
  display: flex;
}
.cc-wrap {
  position: relative;
}

.chk-wrap.wrapped .cc-items {
  margin-top: 10px;
  max-height: 300px;
  overflow: hidden;
  overflow-y: auto;
  border: 1px solid #ccc;
  border-radius: 10px;
}
.chk-wrap.wrapped .checkbox-container {
  padding: 10px 20px;
  margin: 0;
  align-items: flex-start;
  border-top: 1px solid #ccc;
}
.chk-wrap.wrapped .checkbox-container:first-child {
  border: 0;
}
#job-filters {
  padding-right: 50px;
}

.job-item {
  color: #000;
}
.job-meta {
  padding-top: 10px;
  margin-top: 20px;
  border-top: 1px solid #dfcfba;
  font-family: "Metropolis", serif;
    font-size: 13px;
}

.job-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.location {
  margin-bottom: 16px;
}

.chk-select {
  border: 1px solid #efefef;
  border-radius: 10px;
  cursor: pointer;
}
.cc-items:hover {
}
.chk-wrap.wrapped .cc-items {
  display: none;
}

.cc-wrap.active .cc-items {
  display: block;
}

@media (max-width: 767px) {
  .job-filter-container {
    flex-direction: column;
  }
  .job-listings {
    margin-top: 30px;
  }
}
