@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@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;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap");
*::-webkit-scrollbar {
  width: 6px;
}

*::-webkit-scrollbar-thumb {
  background-color: #F47216;
  border-radius: 100px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

*::-webkit-scrollbar-thumb {
  background-color: #F47216;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Smooth scroll stuff */
html {
  overflow-x: hidden;
  overflow-y: scroll;
}

.link {
  text-decoration: none;
  color: #F47216;
  position: relative;
  display: inline-block;
}
.link::after {
  content: "";
  display: block;
  transform: scale(0);
  opacity: 0;
  transform-origin: left bottom;
  width: 100%;
  height: 1px;
  background-color: #00A650;
  position: relative;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}
.link:hover::after {
  transform: scale(1);
  opacity: 1;
}

.link-with-text {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
}
.link-with-text i {
  height: 40px;
  width: 40px;
  border-radius: 40px;
  border: thin solid white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.link-with-text span {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  text-transform: uppercase;
  width: calc(100% - 56px);
}
.link-with-text span a {
  font-size: 16px;
  font-weight: bold;
  text-transform: lowercase;
}

.link-cta {
  background-color: #005529;
  display: block;
  padding: 1rem;
  color: white;
}
.link-cta::after {
  display: none;
}
.link-cta:hover {
  background-color: #F47216;
}

.blend-difference {
  mix-blend-mode: difference;
}

.section {
  padding: 100px 0;
  background-color: white;
}
.section:nth-last-of-type(odd) {
  background-color: #eee;
}
.section .section-title {
  font-weight: bolder;
  position: relative;
  margin-bottom: 1.5rem;
}
.section .section-title small {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  display: block;
  color: #F44316;
  margin-bottom: 8px;
}
.section .section-title strong {
  display: block;
  font-size: 14px;
}
.section .section-img {
  display: block;
  margin: auto;
  width: 80%;
}

.featured-section {
  background-image: url("../img/slider/slider_img_5.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
}
.featured-section::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-backdrop-filter: blur(50px);
          backdrop-filter: blur(50px);
}
.featured-section .container {
  background-color: white;
  border-radius: 1rem;
  overflow: hidden;
  padding: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 0rem 4rem rgba(0, 0, 0, 0.6);
}
.featured-section .container img {
  display: block;
  width: 100%;
}
.featured-section .container .row {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
  padding: 1rem;
}
@media (max-width: 991px) {
  .featured-section .container .row {
    position: relative;
  }
}
.featured-section .container .section-title {
  font-weight: 700;
}
@media (max-width: 767px) {
  .featured-section {
    background-image: unset;
  }
  .featured-section .container {
    box-shadow: none;
  }
  .featured-section::before {
    display: none;
  }
}
@media (max-width: 575px) {
  .featured-section {
    padding: 0;
  }
  .featured-section .container {
    border-radius: 0;
  }
}

.block {
  position: relative;
  overflow: hidden;
}
.block * {
  transition: all 0.3s ease-in-out;
}
.block .img {
  display: block;
  width: 100%;
  transform: scale(1.1);
}
.block .content {
  background-image: linear-gradient(45deg, #F44316, #F47216);
  padding: 1rem;
  position: relative;
}
.block .content::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  width: 0%;
  background-image: linear-gradient(45deg, #005529, #00A650);
  transition: all 0.3s ease-in-out;
}
.block .content h4 {
  font-size: 16px;
  font-weight: 600;
  color: white;
  margin: 0 0 8px;
}
.block .content p {
  margin: 0;
  color: white;
  font-size: 14px;
  line-height: 20px;
}
.block:hover .content {
  background-image: linear-gradient(45deg, #F47216, #F44316);
}
.block:hover .content::before {
  width: 100%;
}
.block:hover .img {
  transform: scale(1);
}

.block-toggle-content {
  overflow: hidden;
}
.block-toggle-content * {
  transition: all 0.3s ease-in-out;
}
.block-toggle-content .img {
  transform: scale(1.1);
}
.block-toggle-content .content {
  position: absolute;
  bottom: -50%;
  left: 0;
  right: 0;
  padding: 1rem;
  height: 50%;
  display: flex;
  align-items: flex-end;
  background-image: linear-gradient(transparent, #F47216);
}
.block-toggle-content .content h4 {
  position: relative;
  z-index: 1;
}
.block-toggle-content .content h4 {
  margin: 0;
}
.block-toggle-content:hover .content {
  bottom: 0%;
}
.block-toggle-content:hover .img {
  transform: scale(1);
}

.block-col-plain {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.block-col-plain img {
  display: block;
  height: 200px;
}
.block-col-plain .content {
  background: none;
}
.block-col-plain .content p {
  color: black;
}
.block-col-plain:hover .content {
  background: none;
}

.mouse-stalker {
  width: 20px;
  height: 20px;
  background-color: #3498db;
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease-out;
  z-index: 999;
  position: absolute;
}

.gallery img {
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.gallery img:hover {
  transform: scale(1.05);
}

@keyframes fadeInBox {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInZoomImg {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 1000;
  animation: fadeInBox 0.3s ease-in-out;
}
.lightbox .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: white;
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.lightbox .close::before {
  content: "Press Esc to close";
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
}
.lightbox .lightbox-content {
  display: flex;
  flex-direction: column;
}
.lightbox .lightbox-content img {
  display: block;
  width: 100%;
  height: calc(100vh - 150px);
  -o-object-fit: contain;
     object-fit: contain;
}
.lightbox .lightbox-content .controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 1;
  justify-content: center;
  align-items: center;
  margin: auto;
  display: flex;
  padding: 1rem;
  gap: 1rem;
}
.lightbox .lightbox-content .controls button {
  display: flex;
  background-color: rgba(0, 0, 0, 0.3);
  border: none;
  outline: none;
  color: white;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1rem;
}
.lightbox .lightbox-content .controls button:hover {
  background-color: rgba(0, 0, 0, 0.6);
}
.lightbox .lightbox-content .controls button:active {
  background-color: black;
}
@media (max-width: 991px) {
  .lightbox .lightbox-content .controls button {
    flex-grow: 1;
  }
}

.open {
  display: flex;
}

.page-header-section {
  padding: 0 0 80px;
  height: 350px;
  display: flex;
  align-items: flex-end;
  background-image: url("../img/bg-page-header.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: -1;
}
.page-header-section .page-title {
  font-size: clamp(24px, 10vw, 3rem);
  font-weight: bolder;
  text-align: center;
  color: white;
}
.page-header-section .site-map {
  padding: 0;
  margin: 1rem auto 0;
  list-style: none;
  display: flex;
  gap: 1rem;
  color: white;
  justify-content: center;
}
.page-header-section .site-map li {
  font-weight: bold;
  position: relative;
  display: flex;
  gap: 1rem;
  align-items: center;
}
.page-header-section .site-map li::after {
  content: "";
  display: block;
  position: relative;
  height: 16px;
  width: 1px;
  background-color: white;
}
.page-header-section .site-map li a {
  color: white;
  font-weight: lighter;
  opacity: 0.5;
}
.page-header-section .site-map li:last-child::after {
  display: none;
}

.page-cover {
  background-image: url("../img/bg-page-header.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: -1;
}
.page-cover img {
  display: block;
  width: 100%;
}
@media (max-width: 991px) {
  .page-cover {
    padding-top: 50px;
  }
}

.add-heading {
  display: block;
  font-weight: bold;
  margin-bottom: 1rem;
}
.add-heading small {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: normal;
}

.two-col {
  position: relative;
}
.two-col .img-mobile {
  display: none;
}
.two-col::before, .two-col::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
}
.two-col::after {
  right: 0;
  width: 55%;
  background-image: linear-gradient(-45deg, #F44316, #F47216);
}
.two-col::before {
  left: 0;
  width: 45%;
  background-image: url("../img/img-personal-details.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.two-col .container {
  position: relative;
  z-index: 1;
}
.two-col .personal-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.two-col .personal-details strong {
  display: block;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 0.5rem;
  position: relative;
  padding-right: 24px;
}
.two-col .parents {
  display: flex;
  flex-wrap: wrap;
}
.two-col .parents strong {
  flex-grow: 1;
  width: 100%;
}
.two-col .parents .img {
  display: flex;
}
@media (max-width: 767px) {
  .two-col {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
    background-color: #F47216 !important;
  }
  .two-col .img-mobile {
    display: block;
  }
  .two-col::before, .two-col::after {
    display: none;
  }
  .two-col .col-sm-12:last-child {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.gallery {
  position: relative;
}
.gallery .tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  position: sticky;
  top: 92px;
  z-index: 10;
  background-color: white;
  border-radius: 1rem;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
  margin: 0 auto 1rem;
}
.gallery .tabs .tab {
  background-color: transparent;
  border: none;
  padding: 1rem 2rem;
  display: block;
  text-decoration: none !important;
  color: black;
}
.gallery .tabs .tab:hover {
  background-color: #f5f5f5;
}
.gallery .tabs .active {
  border-bottom: thin solid #F47216;
  color: #F47216;
  font-weight: 500;
  background-color: #f5f5f5;
}
@media (max-width: 767px) {
  .gallery .tabs {
    width: 100%;
    overflow: auto;
    flex-wrap: nowrap;
    justify-content: start;
    border-radius: 0;
  }
  .gallery .tabs .tab {
    padding: 0.8rem;
    white-space: nowrap;
    font-size: 14px;
  }
}
.gallery .panels {
  display: block;
}
.gallery .panels .panel {
  display: none;
  gap: 1rem;
  flex-wrap: wrap;
}
.gallery .panels .panel .item {
  width: clamp(250px, 10vw, 520px);
  flex-grow: 1;
}
.gallery .panels .active {
  display: flex;
}
.gallery .item {
  transition: grid-row-start 300ms linear;
  transition: transform 300ms ease;
  transition: all 0.5s ease;
  cursor: pointer;
}
.gallery .item img {
  display: block;
}

.bullet-list {
  margin: 0;
}

.res-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: white;
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.1);
}
.res-card h4 {
  padding: 0 1rem;
  text-align: center;
  margin: 0;
  font-weight: bold;
  font-size: 1rem;
}
.res-card .btns {
  display: flex;
  justify-content: space-between;
  border-top: thin solid #eee;
}
.res-card .btns a {
  text-decoration: none;
  padding: 1rem;
  text-align: center;
  display: block;
  flex-grow: 1;
  color: black;
}
.res-card .btns a:hover {
  background-color: #f9f9f9;
}
.res-card .btns a:last-child {
  color: #F47216;
}

.marquee {
  box-sizing: border-box;
  display: flex;
  overflow: hidden;
  border-top: thin solid #F47216;
}
.marquee .content {
  display: flex;
  flex-wrap: nowrap;
  animation: marquee 10s linear infinite running;
}
.marquee .tag {
  display: block;
  height: 200px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translate(-50%);
  }
}
body {
  font-family: "Poppins", sans-serif;
}

header {
  position: fixed;
  z-index: 1000;
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  justify-content: space-between;
  padding: 2rem 2rem 0;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 999px) {
  header {
    padding: 1rem 1rem 0;
  }
}
header .logo {
  display: block;
}
header .logo img {
  display: block;
  height: 60px;
}
header .header-options {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
@media (max-width: 999px) {
  header .header-options {
    gap: 1rem;
  }
}
@media (max-width: 999px) {
  header .header-options .link-with-text {
    display: none;
  }
}
@media (max-width: 767px) {
  header .link-cta {
    padding: 0.5rem 0.8rem;
    font-size: 14px;
  }
}
header .btn-Menu {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
header .btn-Menu span {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  header .btn-Menu span {
    display: none;
  }
}
header .btn-Menu i {
  font-size: 2rem;
}

.bg-element {
  background-image: url("../img/bg_element.svg");
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
}

.scrolled {
  background-color: white;
  padding: 1rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}
.scrolled .link-with-text {
  color: black !important;
}
.scrolled .link-with-text i {
  border-color: black;
}
.scrolled .btn-Menu {
  color: black;
}

.offcanvas {
  background-color: #080909;
}
.offcanvas .offcanvas-header {
  padding: 2rem;
}
.offcanvas .offcanvas-body {
  padding: 0 2rem 2rem;
}
.offcanvas .offcanvas-body .link-with-text {
  display: none;
  margin-top: 1rem;
}
@media (max-width: 999px) {
  .offcanvas .offcanvas-body .link-with-text {
    display: flex;
  }
}
.offcanvas .offcanvas-body .link-with-text a {
  font-size: 16px;
}
.offcanvas .offcanvas-body .social-media-links {
  color: white;
  margin-top: 1rem;
  border-top: thin solid #222;
  padding-top: 1rem;
  display: flex;
  gap: 16px;
  row-gap: 8px;
  flex-wrap: wrap;
}
.offcanvas .offcanvas-body .social-media-links span {
  width: 100%;
  flex-grow: 1;
  display: block;
}
.offcanvas .offcanvas-body .social-media-links a {
  font-size: 18px;
}
.offcanvas .logo-offcanvas {
  display: block;
  height: 40px;
}
.offcanvas .btnClose {
  color: white;
  background-color: transparent;
  border: none;
  outline: none;
}
.offcanvas .btnClose i {
  font-size: 1.24rem;
}
.offcanvas .offcanvas-menu {
  display: flex;
  flex-direction: column;
  counter-reset: section;
}
.offcanvas .offcanvas-menu .link {
  color: white;
  text-decoration: none;
  padding: 1rem 0;
  border-top: thin solid #222;
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.offcanvas .offcanvas-menu .link:last-child {
  border-bottom: thin solid #222;
}
.offcanvas .offcanvas-menu .link::before {
  counter-increment: section;
  content: "0" counter(section) ".";
  font-size: 12px;
  font-weight: 300;
  opacity: 0.5;
  transition: all 0.3s ease-in-out;
}
.offcanvas .offcanvas-menu .link:hover {
  padding: 1rem 1rem;
  background-color: #000;
}
.offcanvas .offcanvas-menu .link:hover::before {
  color: #F47216;
  opacity: 1;
}
.offcanvas .offcanvas-menu .active {
  padding: 1rem 1rem;
  background-color: #000;
}
.offcanvas .offcanvas-menu .active::before {
  color: #F47216;
  opacity: 1;
}
.offcanvas .offcanvas-menu .active::after {
  transform: scale(1);
  opacity: 1;
}

.parallax-bg {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: url("../img/hero-section-bg.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  z-index: 0;
  filter: brightness(50%);
}
@media (max-width: 767px) {
  .parallax-bg {
    background-size: cover;
    background-position: top right;
    opacity: 0.5;
  }
}

.sticky-control {
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  position: fixed;
  bottom: 2rem;
  left: 0;
  right: 0;
  z-index: 100;
}
.sticky-control .social-media-links {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.sticky-control .social-media-links span {
  color: #666;
}
.sticky-control .social-media-links .link {
  text-decoration: none;
  color: white;
  font-size: 16px;
}
@media (max-width: 991px) {
  .sticky-control .social-media-links {
    bottom: 1rem;
    left: 1rem;
  }
}
.sticky-control .scroll-down {
  text-decoration: none;
  color: #999;
}
@media (max-width: 991px) {
  .sticky-control .scroll-down {
    bottom: 1rem;
    right: 1rem;
  }
}

.hero-section {
  height: 100vh;
}
@media (max-width: 999px) {
  .hero-section {
    height: -moz-fit-content;
    height: fit-content;
  }
}
.hero-section .item {
  position: relative;
  background-color: black;
}
.hero-section .item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background-image: linear-gradient(black, transparent);
  z-index: 1;
}
.hero-section .item img {
  opacity: 0.8;
  display: block;
  height: 100vh;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.hero-section .item .mobile {
  display: none;
}
@media (max-width: 991px) {
  .hero-section .item .mobile {
    display: block;
    height: auto;
  }
  .hero-section .item .desk {
    display: none;
  }
}
.hero-section .item .content {
  position: absolute;
  bottom: 0;
  width: 50%;
  right: 0;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  background-image: linear-gradient(45deg, #F44316, #F47216);
  padding: 2rem;
  border-left: 8px solid #005529;
}
@media (max-width: 999px) {
  .hero-section .item .content {
    padding: 1rem 1rem 4rem;
    width: 100%;
    border-top: 8px solid #005529;
    border-left: none;
  }
}
.hero-section .item .content .title {
  font-size: 32px;
  line-height: 1.32;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-section .item .content .title small {
  font-weight: 200;
  font-style: italic;
  font-size: 1rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-section .item .content .title small::before {
  content: "";
  display: block;
  position: relative;
  width: 24px;
  height: 1px;
  background-color: white;
}
@media (max-width: 767px) {
  .hero-section .item img {
    height: calc(100vh - 200px);
    -o-object-position: top left;
       object-position: top left;
  }
  .hero-section .item .content {
    position: relative;
    border-top-width: 4px;
  }
  .hero-section .item .content .title {
    font-size: 1rem;
  }
  .hero-section .item .content .title small {
    font-size: 14px;
  }
}
.hero-section .owl-carousel {
  position: relative;
}
.hero-section .owl-carousel .owl-dots {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  z-index: 10;
}
.hero-section .owl-carousel .owl-dots button {
  height: 8px;
  width: 8px;
  display: flex;
  background-color: #F47216;
}
.hero-section .owl-carousel .owl-nav {
  position: absolute;
  z-index: 10;
  bottom: 0;
  right: 0;
  display: flex;
}
.hero-section .owl-carousel .owl-nav button {
  display: flex;
  padding: 1rem 2rem !important;
  color: white;
  font-size: 16px;
  background-color: #00A650;
}
.hero-section .owl-carousel .owl-nav button:active {
  filter: brightness(80%) !important;
}
.hero-section .owl-carousel .owl-nav button:hover {
  background-color: #005529;
}

.h-title {
  text-align: center;
  display: block;
  margin: 2rem auto 1rem;
  position: relative;
}
.h-title b {
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
  font-weight: 600;
  background-color: #eeeeee;
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}
.h-title::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 11px;
  height: 1px;
  border-top: thin solid #ddd;
}

.positions {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 25% 25% 25% 25%;
  margin-top: 2rem;
  position: relative;
}
@media (max-width: 999px) {
  .positions {
    grid-template-columns: 50% 50%;
  }
}
@media (max-width: 767px) {
  .positions {
    grid-template-columns: auto;
  }
}
.positions li {
  position: relative;
  text-align: center;
  padding: 0 1rem;
}
.positions li::before {
  content: "";
  display: block;
  height: 12px;
  width: 12px;
  border-radius: 100%;
  background-color: #ccc;
  margin: 0 auto 1rem;
  z-index: 1;
  position: relative;
}
.positions li:hover::before {
  background-color: #00A650;
}
.positions li h4 {
  font-size: 16px;
  line-height: 1.24;
}
.positions li h4 span {
  color: #F44316;
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
}
.positions li p {
  font-size: 14px;
  color: #666;
}
.positions li:first-child::before {
  background-color: #00A650;
}

.previous-position {
  opacity: 0.5;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}
@media (max-width: 999px) {
  .previous-position {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .previous-position {
    grid-template-columns: repeat(1, 1fr);
  }
}
.previous-position li h4 span {
  color: black;
}
.previous-position li:hover::before {
  background-color: #000;
}
.previous-position li:first-child::before {
  background-color: #ccc;
}
.previous-position li:first-child:hover::before {
  background-color: #000;
}

.h-scroll-container {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
}
.h-scroll-container article {
  position: relative;
  display: flex;
  flex-shrink: 0;
  overflow: hidden;
}
.h-scroll-container article img {
  display: block;
  height: 100vh;
  width: 100vw;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transform: scale(1.1);
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.h-scroll-container article .content {
  position: absolute;
  z-index: 1;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  margin: auto;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.h-scroll-container article .content .title,
.h-scroll-container article .content p {
  color: white;
  text-align: center;
  transform: scale(0);
  transform-origin: bottom center;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.h-scroll-container article .content .title {
  font-weight: bold;
}
.h-scroll-container article:hover img {
  transform: scale(1);
}
.h-scroll-container article:hover .content {
  background-color: rgba(0, 0, 0, 0.5);
}
.h-scroll-container article:hover .container .title,
.h-scroll-container article:hover .container p {
  transform: scale(1);
}
@media (max-width: 767px) {
  .h-scroll-container {
    flex-direction: column;
  }
  .h-scroll-container article .content .container .title,
  .h-scroll-container article .content .container p {
    transform: scale(1);
  }
}

footer {
  display: block;
  position: relative;
  color: white;
  box-sizing: border-box;
  padding: 80px 0 32px;
  z-index: 0;
}
footer::before, footer::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
}
footer::before {
  left: 0;
  width: 21%;
  background-image: linear-gradient(45deg, #00A650, #005529);
}
footer::after {
  right: 0;
  width: 100%;
  background-image: url("../img/footer_water_mark_element.svg"), linear-gradient(45deg, #F47216, #F44316);
  background-size: contain;
  background-position: right bottom;
  background-repeat: no-repeat;
  mix-blend-mode: lighten;
  z-index: -1;
}
footer .footer-img {
  height: 110%;
  display: block;
  margin: 0 auto;
  position: absolute;
  bottom: 0;
}
footer .footer-col-title,
footer p {
  position: relative;
  z-index: 2;
}
footer p {
  font-weight: 200;
}
footer p a {
  color: white !important;
  font-weight: 500;
}
footer .social-media-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}
footer .social-media-links .link {
  color: white;
}
footer .link-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
footer .link-list .link {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
}
@media (max-width: 999px) {
  footer::before {
    width: 5%;
  }
  footer .footer-img {
    height: 80%;
    right: 1rem;
  }
}
@media (max-width: 767px) {
  footer .footer-img {
    height: 40%;
  }
}
@media (max-width: 619px) {
  footer .container {
    padding-left: 3rem;
  }
}
footer .footer-col-title {
  margin-bottom: 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}
footer .footer-col-title::before {
  content: "";
  display: block;
  width: 4px;
  height: 24px;
  background-color: #00A650;
  position: relative;
  transform: rotate(15deg);
}

.footer-note {
  padding: 16px 0;
  font-size: 14px;
  color: #888;
  border-bottom: thin solid #eee;
}
@media (max-width: 999px) {
  .footer-note {
    text-align: center;
  }
  .footer-note .row {
    gap: 0.5rem;
  }
}

.responsive-grid {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.message {
  position: relative;
  background-image: url("../img/slider/slider_img_3.jpg");
  background-position: left center;
  background-attachment: fixed;
}
.message .letter {
  background-color: white;
  padding: 2rem;
  margin-top: 5rem;
  box-shadow: 0 0 3rem rgba(0, 0, 0, 0.5);
}
@media (max-width: 767px) {
  .message {
    padding-top: 450px;
  }
}

.link-youtube,
.link-instagram {
  padding: 1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  border: thin solid #eee;
  border-radius: 0.5rem;
  text-decoration: none;
  color: black;
}
.link-youtube i,
.link-instagram i {
  width: 40px;
  height: 40px;
  background-color: #e9e9e9;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  color: #F47216;
}
.link-youtube span,
.link-instagram span {
  font-weight: 600;
}
.link-youtube small,
.link-instagram small {
  display: block;
  font-size: 12px;
  font-weight: 400;
}

.if-fb {
  margin: auto;
  position: relative;
  display: block;
}/*# sourceMappingURL=main.css.map */