@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.woff2") format("woff2"), url("../fonts/Poppins-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal; 
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Black.woff2") format("woff2"), url("../fonts/Poppins-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-ExtraBold.woff2") format("woff2"), url("../fonts/Poppins-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Light.woff2") format("woff2"), url("../fonts/Poppins-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-ExtraLight.woff2") format("woff2"), url("../fonts/Poppins-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Thin.woff2") format("woff2"), url("../fonts/Poppins-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.woff2") format("woff2"), url("../fonts/Poppins-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.woff2") format("woff2"), url("../fonts/Poppins-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-SemiBold.woff2") format("woff2"), url("../fonts/Poppins-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NotoSans";
  src: url("../fonts/NotoSans-Bold.woff2") format("woff2"), url("../fonts/NotoSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NotoSans";
  src: url("../fonts/NotoSans-Black.woff2") format("woff2"), url("../fonts/NotoSans-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NotoSans";
  src: url("../fonts/NotoSans-ExtraBold.woff2") format("woff2"), url("../fonts/NotoSans-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NotoSans";
  src: url("../fonts/NotoSans-Light.woff2") format("woff2"), url("../fonts/NotoSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NotoSans";
  src: url("../fonts/NotoSans-ExtraLight.woff2") format("woff2"), url("../fonts/NotoSans-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NotoSans";
  src: url("../fonts/NotoSans-Thin.woff2") format("woff2"), url("../fonts/NotoSans-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NotoSans";
  src: url("../fonts/NotoSans-Medium.woff2") format("woff2"), url("../fonts/NotoSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NotoSans";
  src: url("../fonts/NotoSans-Regular.woff2") format("woff2"), url("../fonts/NotoSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "NotoSans";
  src: url("../fonts/NotoSans-SemiBold.woff2") format("woff2"), url("../fonts/NotoSans-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
:root {
  --primary-color: #333333;
  --yellow: #FFC107;
  --green: #00A650;
  --blue: #014F9E;
  --brown: #4A2F2F;
  --lightgrey: #F5F5F5;
  --darkgreen: #123726;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins";
  overflow-x: hidden;
  margin: 0;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 400;
  padding: 0;
  color: var(--primary-color);
  position: relative;
}

.page-width {
  max-width: 1400px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1600px) {
  .page-width {
    max-width: 80%;
  }
}
@media screen and (max-width: 991px) {
  .page-width {
    max-width: 90%;
  }
}

.page-padding {
  padding: 70px 0;
}
@media screen and (max-width: 575px) {
  .page-padding {
    padding: 50px 0;
  }
}

.page-padding-b {
  padding-bottom: 70px;
}
@media screen and (max-width: 575px) {
  .page-padding-b {
    padding-bottom: 50px;
  }
}

.overlay {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.2;
}

.linear1 {
  opacity: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.110936) 44.53%, rgba(0, 0, 0, 0) 57.61%, rgba(0, 0, 0, 0) 100%);
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
}

.no-scroll {
  overflow: hidden;
}

.d-none {
  display: none !important;
}

.image2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.mb {
  margin-bottom: 50px;
}

.mt {
  margin-top: 50px;
}

.mtb {
  margin: 50px 0;
}

.m0 {
  margin: 0 !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(51, 51, 51, 0.6);
}

.text p {
  margin: 20px 0;
}
.text p:first-child {
  margin-top: 0;
}
.text p:last-child {
  margin-bottom: 0;
}

.center-text * {
  text-align: center;
}

.white-text * {
  color: #fff;
}

p, ul li {
  font-size: 18px;
  font-family: "NotoSans";
  line-height: 155%;
}
@media screen and (max-width: 575px) {
  p, ul li {
    font-size: 16px;
  }
}

.title span {
  font-family: "NotoSans";
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 10px;
  text-transform: uppercase;
}
@media screen and (max-width: 575px) {
  .title span {
    font-size: 14px;
    letter-spacing: 0.5px;
  }
}

.green-title span {
  color: var(--green);
}

h1, h2 {
  font-size: 45px;
  font-weight: 600;
  letter-spacing: 0.75px;
  line-height: 110%;
}
@media screen and (max-width: 1199px) {
  h1, h2 {
    font-size: 38px;
  }
}
@media screen and (max-width: 575px) {
  h1, h2 {
    font-size: 30px;
  }
}

.small-title h1, .small-title h2 {
  font-size: 32px;
}
@media screen and (max-width: 1199px) {
  .small-title h1, .small-title h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 575px) {
  .small-title h1, .small-title h2 {
    font-size: 26px;
    letter-spacing: 0.5px;
  }
}

.template-text h3 {
  font-size: 32px;
  font-weight: 800;
}
@media screen and (max-width: 1199px) {
  .template-text h3 {
    font-size: 30px;
  }
}
@media screen and (max-width: 575px) {
  .template-text h3 {
    font-size: 26px;
    letter-spacing: 0.5px;
  }
}
.template-text ul {
  margin: 20px 0;
  list-style: disc;
  padding-left: 20px;
}

.bold-title h1, .bold-title h2 {
  font-weight: 800;
}

.margin-title h1, .margin-title h2 {
  margin: 50px 0;
}
@media screen and (max-width: 575px) {
  .margin-title h1, .margin-title h2 {
    margin: 35px 0;
  }
}
.margin-title h1:first-child, .margin-title h2:first-child {
  margin-top: 0;
}
.margin-title h1:last-child, .margin-title h2:last-child {
  margin-bottom: 0;
}

.background {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.border-bottom {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.reveal {
  position: relative;
  transform: translateY(50px);
  opacity: 0;
  transition: 1s all ease;
}

.reveal.active {
  transform: translateY(0);
  opacity: 1;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: 100px;
  gap: 25px;
}
.gallery a:nth-child(6n+1), .gallery a:nth-child(6n+3), .gallery a:nth-child(6n) {
  grid-row: span 3;
}
.gallery a:nth-child(6n+2), .gallery a:nth-child(6n+4), .gallery a:nth-child(6n+5) {
  grid-row: span 4;
}
.small-gallery {
  height: 850px;
  overflow: hidden;
}
@media only screen and (max-width: 1600px) {
  .gallery {
    grid-auto-rows: 80px;
  }
  .small-gallery {
    height: 710px;
  }
}
@media screen and (max-width: 1399px) {
  .gallery {
    grid-auto-rows: 50px;
    gap: 15px;
  }
  .small-gallery {
    height: 440px;
  }
}
@media screen and (max-width: 575px) {
  .gallery {
    grid-auto-rows: 30px;
    gap: 5px;
  }
  .small-gallery {
    height: 240px;
  }
}

@media screen and (max-width: 575px) {
  .gallery-more h2 {
    font-size: 20px;
  }
  .gallery-more svg {
    max-width: 30px;
    margin-top: 5px;
  }
}

.page-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
}
.page-grid .right-page {
  background-color: var(--lightgrey);
  padding-left: 20px;
  position: relative;
}
.page-grid .right-page ul li, .page-grid .right-page ul a {
  text-align: right;
}
.page-grid .right-page ul a {
  display: flex;
  justify-content: end;
  font-family: "NotoSans";
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0.8px;
  color: var(--primary-color);
  transition: all 0.5s;
  position: relative;
}
@media screen and (max-width: 1399px) {
  .page-grid .right-page ul a {
    font-size: 20px;
  }
}
.page-grid .right-page ul a::before {
  position: absolute;
  content: "";
  display: block;
  height: 1px;
  width: 50vw;
  top: 50%;
  left: calc(100% + 10px);
  z-index: 2;
}
.page-grid .right-page ul a:hover {
  color: var(--green);
}
.page-grid .right-page ul .active {
  color: var(--green);
  font-weight: 700;
}
.page-grid .right-page ul .active::before {
  background-color: var(--green);
}
.page-grid .right-page ul li + li {
  margin-top: 50px;
}
.page-grid .right-page::after, .page-grid .right-page::before {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 100%;
  height: 100%;
  background-color: var(--lightgrey);
  width: calc(50vw - 700px);
}
@media only screen and (max-width: 1600px) {
  .page-grid .right-page::after, .page-grid .right-page::before {
    width: 10vw;
  }
}
@media screen and (max-width: 991px) {
  .page-grid .right-page::after, .page-grid .right-page::before {
    width: 5vw;
  }
}
.page-grid .right-page::before {
  left: unset;
  right: 100%;
  display: none;
}
.page-grid .left-page {
  padding-right: 50px;
}
@media screen and (max-width: 1199px) {
  .page-grid {
    grid-template-columns: 1fr;
  }
  .page-grid .left-page {
    padding-right: 0;
  }
  .page-grid .right-page {
    padding-left: 0;
  }
  .page-grid .right-page::before {
    display: block;
  }
  .page-grid .right-page ul li, .page-grid .right-page ul a {
    text-align: left;
  }
  .page-grid .right-page ul li + li {
    margin-top: 30px;
  }
  .page-grid .right-page ul a {
    justify-content: start;
  }
  .page-grid .right-page ul a::before {
    left: unset;
    right: calc(100% + 5px);
  }
}
@media screen and (max-width: 575px) {
  .page-grid .right-page ul li + li {
    margin-top: 20px;
  }
  .page-grid .right-page ul a {
    font-size: 16px;
  }
}

.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.hamRotate.active {
  transform: rotate(45deg);
}

.hamRotate180.active {
  transform: rotate(180deg);
}

.line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: var(--primary-color);
  stroke-width: 5.5;
  stroke-linecap: round;
}

.ham1 .top {
  stroke-dasharray: 40 139;
}

.ham1 .bottom {
  stroke-dasharray: 40 180;
}

.ham1.active .top {
  stroke-dashoffset: -98px;
}

.ham1.active .bottom {
  stroke-dashoffset: -138px;
}

.ham2 .top {
  stroke-dasharray: 40 121;
}

.ham2 .bottom {
  stroke-dasharray: 40 121;
}

.ham2.active .top {
  stroke-dashoffset: -102px;
}

.ham2.active .bottom {
  stroke-dashoffset: -102px;
}

.ham3 .top {
  stroke-dasharray: 40 130;
}

.ham3 .middle {
  stroke-dasharray: 40 140;
}

.ham3 .bottom {
  stroke-dasharray: 40 205;
}

.ham3.active .top {
  stroke-dasharray: 75 130;
  stroke-dashoffset: -63px;
}

.ham3.active .middle {
  stroke-dashoffset: -102px;
}

.ham3.active .bottom {
  stroke-dasharray: 110 205;
  stroke-dashoffset: -86px;
}

.ham4 .top {
  stroke-dasharray: 40 121;
}

.ham4 .bottom {
  stroke-dasharray: 40 121;
}

.ham4.active .top {
  stroke-dashoffset: -68px;
}

.ham4.active .bottom {
  stroke-dashoffset: -68px;
}

.ham5 .top {
  stroke-dasharray: 40 82;
}

.ham5 .bottom {
  stroke-dasharray: 40 82;
}

.ham5.active .top {
  stroke-dasharray: 14 82;
  stroke-dashoffset: -72px;
}

.ham5.active .bottom {
  stroke-dasharray: 14 82;
  stroke-dashoffset: -72px;
}

.ham6 .top {
  stroke-dasharray: 40 172;
}

.ham6 .middle {
  stroke-dasharray: 40 111;
}

.ham6 .bottom {
  stroke-dasharray: 40 172;
}

.ham6.active .top {
  stroke-dashoffset: -132px;
}

.ham6.active .middle {
  stroke-dashoffset: -71px;
}

.ham6.active .bottom {
  stroke-dashoffset: -132px;
}

.ham7 .top {
  stroke-dasharray: 40 82;
}

.ham7 .middle {
  stroke-dasharray: 40 111;
}

.ham7 .bottom {
  stroke-dasharray: 40 161;
}

.ham7.active .top {
  stroke-dasharray: 17 82;
  stroke-dashoffset: -62px;
}

.ham7.active .middle {
  stroke-dashoffset: 23px;
}

.ham7.active .bottom {
  stroke-dashoffset: -83px;
}

.ham8 .top {
  stroke-dasharray: 40 160;
}

.ham8 .middle {
  stroke-dasharray: 40 142;
  transform-origin: 50%;
  transition: transform 400ms;
}

.ham8 .bottom {
  stroke-dasharray: 40 85;
  transform-origin: 50%;
  transition: transform 400ms, stroke-dashoffset 400ms;
}

.ham8.active .top {
  stroke-dashoffset: -64px;
}

.ham8.active .middle {
  transform: rotate(90deg);
}

.ham8.active .bottom {
  stroke-dashoffset: -64px;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 120px;
  background-color: #fff;
  box-shadow: 0px 4px 19.7px 0px rgba(0, 0, 0, 0.0705882353);
  z-index: 99;
  transition: all 0.5s;
}
header .page-width {
  height: 100%;
}

.margin-top {
  margin-top: 120px;
}

.head {
  height: 100%;
}

.nav, .nav li, .nav a {
  height: 100%;
}
.nav a {
  display: flex;
  align-items: center;
  font-family: "Poppins";
  font-size: 16px;
  letter-spacing: 0.35px;
  text-transform: uppercase;
  color: var(--primary-color);
  position: relative;
  transition: all 0.5s;
}
.nav a::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background-color: transparent;
}
.nav a:hover {
  color: var(--green);
}
.nav .active {
  color: var(--green);
  font-weight: 700;
}
.nav .active::after {
  background-color: var(--green);
}
.nav li + li {
  margin-left: 60px;
}
@media screen and (max-width: 1399px) {
  .nav li + li {
    margin-left: 30px;
  }
}

.logo {
  width: 200px;
  height: 140px;
  position: relative;
  transition: all 0.5s;
}
.logo::before {
  position: absolute;
  top: 50%;
  right: 100%;
  width: 1000px;
  height: 5px;
  background-color: #F2F2F2;
  content: "";
}
.logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left;
  object-position: left;
}

.hamburger {
  display: none;
}
.header-socials {
  display: none !important;
}

.small-header {
  height: 100px;
}
.small-header .logo {
  height: 100%;
}

@media screen and (max-width: 1199px) {
  header {
    height: 100px;
  }
  header .page-width {
    align-items: center;
  }
  .margin-top {
    margin-top: 100px;
  }
  .hamburger {
    display: block;
    margin-right: -20px;
  }
  .header-socials {
    display: flex !important;
  }
  .header-socials svg circle {
    fill: var(--blue);
  }
  .header-socials svg path {
    fill: #fff;
  }
  .head {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    height: calc(100% - 100px);
    background-color: #fff;
    z-index: 99;
    transition: all 0.3s;
    transform: translateX(100%);
    overflow-y: scroll;
  }
  .menu-opened {
    transform: translateX(0);
  }
  .nav {
    flex-direction: column;
    margin: 0 0 50px;
  }
  .nav, .nav li, .nav a {
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
  }
  .nav li + li {
    margin-left: 0;
    /* margin-top: 20px; */
  }
  .nav a {
    font-size: 24px;
    padding: 20px 5%;
    justify-content: end;
    text-align: right;
    border-bottom: 2px solid var(--blue);
    background-color: var(--lightgrey);
  }
  .nav li:last-child a {
    border-bottom: none;
  }
  .nav .active {
    background-color: var(--blue);
    color: #fff;
  }
  .nav a::after {
    /* top: unset; */
    /* bottom: 0; */
    display: none;
  }
  .logo {
    height: 100%;
  }
}
@media screen and (max-width: 575px) {
  header {
    height: 70px;
  }
  .small-header {
    height: 70px;
  }
  .margin-top {
    margin-top: 70px;
  }
  .head {
    top: 70px;
    height: calc(100% - 70px);
  }
  .hamburger {
    transform: scale(0.8);
    margin-right: -25px;
  }
}
@keyframes slide-in-left {
  0% {
    transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.top-banner {
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 260px;
}
.top-banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.top-banner .page-width {
  padding: 50px 0;
}
.top-banner h1 {
  font-weight: 800;
  letter-spacing: 0.35px;
  color: #fff;
  text-transform: uppercase;
  animation: slide-in-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@media screen and (max-width: 575px) {
  .top-banner {
    min-height: 220px;
  }
}

.bg2 img {
  -o-object-position: bottom;
  object-position: bottom;
}

footer {
  position: relative;
  background-attachment: fixed;
}
footer .overlay {
  opacity: 0.85;
  background-color: var(--darkgreen);
}
footer * {
  color: #fff;
}

.socials, .socials a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.socials a + a {
  margin-left: 15px;
}
.socials a svg circle, .socials a svg path {
  transition: all 0.5s;
}
.socials a:hover svg circle {
  fill: var(--green);
  stroke: var(--green);
}
.socials a:hover svg path {
  fill: #fff;
}
@media screen and (max-width: 575px) {
  .socials a svg {
    width: 35px;
    height: 35px;
  }
}

.foot1 {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 50px 0 30px;
  border-bottom: 1px solid #fff;
}
.foot1 .logo-footer {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
}
.foot1 .logo-footer img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}
@media screen and (max-width: 767px) {
  .foot1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .foot1 .logo-footer:nth-of-type(2) {
    margin-left: auto;
  }
  .foot1 .socials {
    order: 3;
    grid-column: span 2;
    margin-top: 20px;
  }
}
@media screen and (max-width: 575px) {
  .foot1 .logo-footer {
    width: 80px;
    height: 80px;
  }
}

.foot2 {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 50px 0;
  border-bottom: 1px solid #fff;
}
.foot2 p, .foot2 li, .foot2 a, .foot2 span {
  font-family: "Poppins";
  font-size: 18px;
}
.foot2 li + li {
  margin-top: 5px;
}
.foot2 span {
  font-weight: 600;
}
.foot2 div p:first-child {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.75px;
  line-height: normal;
  margin-bottom: 10px;
}
.foot2 .left-foot li, .foot2 .left-foot a {
  font-weight: 300;
}
.foot2 .left-foot a, .foot2 .left-foot span, .foot2 .left-foot li {
  letter-spacing: 0.75px;
}
.foot2 .right-foot li, .foot2 .right-foot a, .foot2 .right-foot p {
  text-align: right;
}
.foot2 .right-foot a {
  font-family: "NotoSans";
  transition: all 0.5s;
  letter-spacing: 0.5px;
  font-weight: 300;
  position: relative;
  padding-bottom: 3px;
}
.foot2 .right-foot a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0px;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: all 0.5s;
}
.foot2 .right-foot a:hover {
  font-weight: 600;
}
.foot2 .right-foot a:hover::after {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .foot2 {
    flex-direction: column;
  }
  .foot2 .right-foot, .foot2 .left-foot {
    margin: 0 auto;
  }
  .foot2 .right-foot p, .foot2 .right-foot li, .foot2 .right-foot a, .foot2 .left-foot p, .foot2 .left-foot li, .foot2 .left-foot a {
    text-align: center;
  }
  .foot2 .right-foot {
    margin-top: 50px;
  }
}
@media screen and (max-width: 575px) {
  .foot2 div p:first-child {
    font-size: 24px;
  }
  .foot2 p, .foot2 li, .foot2 a, .foot2 span {
    font-size: 14px;
  }
}

.foot3 {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.foot3 p, .foot3 a {
  font-family: "NotoSans";
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: normal;
}
.foot3 ul li + li::before {
  content: "|";
  opacity: 0.2;
  margin: 0 5px;
}
.foot3 ul a {
  text-transform: uppercase;
}
@media screen and (max-width: 1199px) {
  .foot3 {
    flex-direction: column-reverse;
  }
  .foot3 p, .foot3 a {
    text-align: center;
  }
}

.home-top {
  margin-bottom: 50px;
}
.home-top h2 {
  font-size: 24px;
  color: #fff;
  padding: 15px 20px;
  text-transform: uppercase;
}
@media screen and (max-width: 575px) {
  .home-top h2 {
    font-size: 20px;
  }
}
.home-top a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.75px;
  border-bottom: 2px solid transparent;
}
.home-top a svg {
  margin-left: 5px;
}
@media screen and (max-width: 575px) {
  .home-top {
    flex-direction: column;
    margin-bottom: 20px;
  }
  .home-top a {
    margin: 20px 0;
  }
}

.home-top.yellow h2 {
  background-color: var(--yellow);
}
.home-top.yellow a {
  border-color: var(--yellow);
}
.home-top.yellow a svg path {
  fill: var(--yellow);
}

.home-top.green h2 {
  background-color: var(--green);
}
.home-top.green a {
  border-color: var(--green);
}
.home-top.green a svg path {
  fill: var(--green);
}

.home-top.blue h2 {
  background-color: var(--blue);
}
.home-top.blue a {
  border-color: var(--blue);
}
.home-top.blue a svg path {
  fill: var(--blue);
}

.home-top.brown h2 {
  background-color: var(--brown);
}
.home-top.brown a {
  border-color: var(--brown);
}
.home-top.brown a svg path {
  fill: var(--brown);
}

.notification {
  padding: 20px;
  background-color: #F2F2F2;
  position: relative;
  height: 100%;
}
.notification img {
  width: 74px;
  height: 74px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 50%;
  margin-right: 20px;
}
.notification .notification-date {
  color: var(--yellow);
  font-family: "NotoSans";
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.notification .notification-title {
  font-family: "Poppins";
  font-weight: 800;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.notification .notification-description {
  margin: 20px 0;
  font-family: "NotoSans";
  font-weight: 400;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.35px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.notification .alert {
  position: absolute;
  top: 0;
  right: 0;
}

.more {
  display: flex;
  align-items: center;
  font-family: "NotoSans";
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.35px;
  text-transform: uppercase;
}
.more svg {
  margin-left: 5px;
}

.notification:hover .more {
  text-decoration: underline;
}

.homeSwiper {
  padding-bottom: 50px !important;
}
.homeSwiper:has(.swiper-pagination-lock) {
  padding-bottom: 0 !important;
}
.homeSwiper .swiper-pagination {
  top: unset;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.homeSwiper .swiper-pagination .swiper-pagination-bullet {
  width: 19px;
  height: 19px;
  opacity: 1;
  border: 1px solid var(--primary-color);
  margin: 0 12.5px;
  background-color: transparent;
  transition: all 0.5s;
}
@media screen and (max-width: 575px) {
  .homeSwiper {
    padding-bottom: 30px !important;
  }
  .homeSwiper:has(.swiper-pagination-lock) {
    padding-bottom: 0 !important;
  }
  .homeSwiper .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 5px;
  }
}

.slider1Swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--yellow);
  border-color: var(--yellow);
}

.slider2Swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider2Swiper .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--green);
  border-color: var(--green);
}

.partner {
  height: 200px;
  max-width: 300px;
  background-color: var(--lightgrey);
}
.partner img {
  object-fit: contain;
}
@media screen and (max-width: 575px) {
  .partner {
    height: 150px;
  }
}

.notification-slider {
  position: relative;
}
.notification-slider .swiper-slide {
  height: auto !important;
}
.notification-slider .slider1-button-next, .notification-slider .slider1-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.notification-slider .slider1-button-next, .notification-slider .slider1-button-next svg path, .notification-slider .slider1-button-prev, .notification-slider .slider1-button-prev svg path {
  transition: all 0.5s;
}
.notification-slider .slider1-button-next:hover, .notification-slider .slider1-button-prev:hover {
  background-color: var(--yellow);
  border-color: var(--yellow);
}
.notification-slider .slider1-button-next:hover svg path, .notification-slider .slider1-button-prev:hover svg path {
  fill: #fff;
}
@media screen and (max-width: 991px) {
  .notification-slider .slider1-button-next, .notification-slider .slider1-button-prev {
    display: none;
  }
}
.notification-slider .slider1-button-prev {
  left: -70px;
}
.notification-slider .slider1-button-next {
  right: -70px;
}

.banner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  grid-auto-rows: 670px;
}
.banner-grid a:nth-child(3n + 1) {
  grid-column: span 2;
}
.banner-grid img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
@media only screen and (max-width: 1600px) {
  .banner-grid {
    grid-auto-rows: 600px;
  }
}
@media screen and (max-width: 1199px) {
  .banner-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 700px;
  }
}
@media screen and (max-width: 575px) {
  .banner-grid {
    gap: 5px;
    grid-auto-rows: 400px;
  }
}

.documentation .overlay {
  opacity: 0.85;
  background-color: #1A4A34;
}
.documentation .documentation-links {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.documentation .documentation-links a {
  transition: all 0.5s;
  padding: 50px;
  background-color: transparent;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.documentation .documentation-links a p {
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: all 0.5s;
  font-family: "Poppins";
  font-weight: 600;
  font-size: 24px;
  line-height: normal;
  letter-spacing: 0.75px;
  text-align: center;
  color: #fff;
  margin-top: 10px;
}
.documentation .documentation-links a p svg {
  margin-left: 0;
  transition: all 0.5s;
  width: 0;
  width: 0;
}
.documentation .documentation-links a:hover {
  background-color: rgba(255, 255, 255, 0.7);
}
.documentation .documentation-links a:hover p svg {
  margin-left: 5px;
  width: auto;
  height: auto;
}
@media screen and (max-width: 767px) {
  .documentation .documentation-links {
    flex-direction: column;
  }
  .documentation .documentation-links a {
    padding: 25px;
  }
}
@media screen and (max-width: 575px) {
  .documentation .documentation-links a > svg {
    max-width: 70px;
    max-height: -moz-fit-content;
    max-height: fit-content;
  }
}

.home-about {
  padding-left: calc(50% + 50px);
  position: relative;
}
.home-about img {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
@media screen and (max-width: 1199px) {
  .home-about {
    padding-left: 0;
  }
  .home-about img {
    display: none;
  }
}

.video-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -10;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.video-wrap .video {
  border: 2px solid #fff;
  padding: 20px;
  width: 90%;
  height: 80%;
  max-width: 800px;
  max-height: 500px;
  position: relative;
}
.video-wrap .video .closeVideo {
  position: absolute;
  border-radius: 5px;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  border: 2px solid #fff;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  top: -25px;
  right: -25px;
  cursor: pointer;
  background-image: url("../images/close.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40%;
}
@media screen and (max-width: 575px) {
  .video-wrap .video {
    width: 90%;
    height: 50%;
    max-height: 500px;
    padding: 10px;
  }
  .video-wrap .video .closeVideo {
    width: 36px;
    height: 36px;
    top: -18px;
    right: -18px;
  }
}

.video-wrap.open-video {
  z-index: 105;
  opacity: 1;
}

.videobtn {
  display: flex;
  margin: 0 auto;
}
@media screen and (max-width: 575px) {
  .videobtn svg {
    width: 150px;
    height: 150px;
  }
}

.news {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 20px;
}
@media screen and (max-width: 575px) {
  .news {
    gap: 10px;
  }
}
.news .news-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.news .news-info .news-date {
  font-family: "NotoSans";
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: var(--green);
}
.news .news-info .news-title {
  font-family: "Poppins";
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.75px;
  color: var(--primary-color);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news .news-info .news-description {
  font-family: "NotoSans";
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.35px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 12px 0;
}
.news .news-info .more {
  border-bottom: 2px solid var(--green);
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 575px) {
  .news .news-info .news-date {
    font-size: 14px;
  }
  .news .news-info .news-title {
    font-size: 16px;
    line-height: 22px;
  }
  .news .news-info .news-description {
    -webkit-line-clamp: 2;
  }
}

.news:hover .news-info .news-title {
  text-decoration: underline;
}

.news3 a {
  display: flex;
}
.news3 a + a {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 575px) {
  .news3 a + a {
    margin-top: 10px;
    padding-top: 10px;
  }
}

.main-news a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  height: 100%;
}
.main-news a .news-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.main-news a .overlay {
  opacity: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 42.48%, rgba(0, 0, 0, 0.24432) 71.95%, rgba(0, 0, 0, 0.35) 100%);
}
.main-news a .news-info {
  position: relative;
  z-index: 2;
  padding: 30px;
}
.main-news a .news-info .news-title {
  font-family: "Poppins";
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0.75px;
  color: #fff;
}
.main-news a .news-info .news-date {
  font-family: "NotoSans";
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: #fff;
  margin: 5px 0;
}
.main-news a .news-info p {
  font-weight: 700;
  font-size: 16px;
  line-height: normal;
  letter-spacing: 0.5px;
  color: #00F074;
}
.main-news a:hover .news-info .news-title {
  text-decoration: underline;
}
@media screen and (max-width: 1199px) {
  .main-news a {
    height: -moz-fit-content;
    height: fit-content;
    min-height: 400px;
  }
}
@media screen and (max-width: 575px) {
  .main-news a {
    min-height: 350px;
  }
  .main-news a .news-info {
    padding: 20px;
  }
  .main-news a .news-info .news-title {
    font-size: 20px;
    line-height: 26px;
  }
  .main-news a .news-info .news-date {
    font-size: 14px;
  }
}

.home-news {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 1199px) {
  .home-news {
    grid-template-columns: 1fr;
  }
  .home-news .main-news {
    order: 1;
  }
  .home-news .news3 {
    order: 2;
  }
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 50px;
}
.news-grid .news {
  grid-template-columns: 1fr;
  gap: 10px;
}
.news-grid .news .news-image {
  height: 350px;
}
.news-grid .news .news-info .news-title {
  min-height: 64px;
}
@media screen and (max-width: 1399px) {
  .news-grid {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
  .news-grid .news .news-image {
    height: 300px;
  }
}
@media screen and (max-width: 1199px) {
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 575px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .news-grid .news .news-image {
    height: 200px;
  }
  .news-grid .news .news-info .news-title {
    min-height: unset;
  }
}

.downloads a {
  font-family: "Poppins";
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0.75px;
  color: var(--primary-color);
  position: relative;
  display: flex;
  align-items: center;
  min-height: 80px;
  transition: all 0.5s;
  background-color: #fff;
  box-shadow: 0px 0px 19.7px 0px rgba(0, 0, 0, 0.0705882353);
  margin-top: 30px;
  padding: 20px 150px 20px 20px;
}
.downloads a .download-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 130px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s;
  background-color: var(--blue);
}
@media screen and (max-width: 991px) {
  .downloads a {
    font-size: 20px;
    line-height: 28px;
  }
}
@media screen and (max-width: 575px) {
  .downloads a {
    font-size: 16px;
    line-height: 24px;
    padding: 20px 70px 20px 20px;
    margin-top: 20px;
  }
  .downloads a .download-icon {
    width: 50px;
  }
  .downloads a .download-icon svg {
    width: 24px;
    height: 24px;
  }
}
.downloads a:hover {
  box-shadow: 0px 0px 29.7px 0px rgba(0, 0, 0, 0.2509803922);
}
.downloads a:hover .download-icon {
  background-color: var(--yellow);
}

.document-date {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: var(--green);
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
}

.downloads2 a {
  padding-top: 0;
  padding-bottom: 0;
}
.downloads2 .document-date {
  height: 100%;
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid rgba(51, 51, 51, 0.1);
}
@media screen and (max-width: 575px) {
  .downloads2 a {
    flex-direction: column;
    align-items: start;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .downloads2 a .document-date {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
  }
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination a {
  font-family: "Poppins";
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.75px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  min-width: 46px;
  padding: 10px;
}
.pagination .active {
  background-color: var(--green);
  color: #fff;
  font-weight: 800;
}
.pagination li {
  margin: 0 10px;
}
@media screen and (max-width: 1199px) {
  .pagination a {
    font-size: 20px;
  }
  .pagination li {
    margin: 0 5px;
  }
}
@media screen and (max-width: 575px) {
  .pagination a {
    font-size: 16px;
    height: 36px;
    min-width: 36px;
  }
  .pagination li {
    margin: 0;
  }
}

.sort-notification label {
  font-size: 16px;
  letter-spacing: 0.75px;
  font-weight: 600;
  margin-right: 5px;
}
.sort-notification select {
  border: 1px solid rgba(34, 34, 34, 0.2);
  font-family: "NotoSans";
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.75px;
  padding: 4px;
  padding-right: 10px;
  cursor: pointer;
  outline: none;
}
.sort-notification div {
  border: 1px solid rgba(34, 34, 34, 0.2);
  padding:  4px;
}
.sort-notification input {
  font-family: "NotoSans";
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.75px;
  outline: none;
}
.notification-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 1199px) {
  .notification-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .notification-grid {
    grid-template-columns: 1fr;
  }
}

.notification-details-img {
  height: 50vh;
  max-height: 550px;
  box-shadow: 0px 0px 19.7px 0px rgba(0, 0, 0, 0.0705882353);
}
@media screen and (max-width: 575px) {
  .notification-details-img {
    height: 30vh;
    max-height: 300px;
  }
}

.notification-details-date {
  font-family: "NotoSans";
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--yellow);
  margin-right: 30px;
}

.share a + a {
  margin-left: 10px;
}
.share a svg circle {
  transition: all 0.5s;
}
.share a:hover svg circle {
  fill: var(--green);
  stroke: var(--green);
}

.about-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.about-page img {
  height: auto;
  max-height: 600px;
}
@media screen and (max-width: 1199px) {
  .about-page {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .about-page div:last-child {
    order: 1;
  }
  .about-page div:last-child img {
    display: none;
  }
  .about-page div:first-child {
    order: 2;
  }
  .about-page img {
    max-height: 400px;
  }
}

.accordion-wrap + .accordion-wrap {
  margin-top: 40px;
}

.accordion-wrap {
  background-color: #fff;
  box-shadow: 0px 4px 19.7px 0px rgba(0, 0, 0, 0.0705882353);
  transition: all 0.5s;
  padding: 30px;
  padding-bottom: 0;
}
.accordion-wrap .accordion {
  cursor: pointer;
  padding-bottom: 30px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: all 0.5s ease;
  border-bottom: 1px solid transparent;
  font-family: "Poppins";
  font-weight: 600;
  font-size: 32px;
  line-height: 38px;
  letter-spacing: 1px;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.accordion-wrap .accordion::after {
  content: "";
  background-image: url("../images/chevron.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--blue);
  transition: all 0.5s;
  width: 50vw;
  height: 50vh;
  max-width: 64px;
  max-height: 64px;
  border-radius: 50%;
  margin-left: 5px;
}
.accordion-wrap .accordion.active {
  border-color: rgba(0, 0, 0, 0.1);
}
.accordion-wrap .accordion.active::after {
  transform: rotate(180deg);
  background-color: var(--yellow);
}
.accordion-wrap .accordion:hover::after {
  background-color: var(--yellow);
}
.accordion-wrap .panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-wrap .panel p {
  margin: 30px 0;
}
@media screen and (max-width: 1399px) {
  .accordion-wrap .accordion {
    font-size: 24px;
    line-height: 30px;
    padding-bottom: 20px;
  }
  .accordion-wrap .accordion::after {
    width: 50vw;
    height: 50vh;
    max-width: 50px;
    max-height: 50px;
  }
  .accordion-wrap .panel p {
    margin: 20px 0;
  }
}
@media screen and (max-width: 575px) {
  .accordion-wrap {
    padding: 20px;
    padding-bottom: 0;
  }
  .accordion-wrap .accordion {
    font-size: 18px;
    line-height: 24px;
  }
  .accordion-wrap .accordion::after {
    max-width: 30px;
    max-height: 30px;
  }
}

.accordion-wrap:has(.accordion.active), .accordion-wrap:has(.accordion:hover) {
  box-shadow: 0px 4px 29.6px 0px rgba(0, 0, 0, 0.2509803922);
}

.contact-links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
}
@media screen and (max-width: 1399px) {
  .contact-links {
    gap: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .contact-links {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.contact-link {
  background-color: rgba(255, 193, 7, 0.1);
  padding: 50px 20px 50px 50px;
  display: flex;
  align-items: center;
  height: 100%;
}
.contact-link svg {
  margin-right: 20px;
}
.contact-link p, .contact-link h3 {
  font-family: "NotoSans";
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.5px;
}
.contact-link p {
  font-size: 24px;
  margin-bottom: 5px;
}
.contact-link span {
  font-size: 16px;
}
.contact-link:hover h3 {
  text-decoration: underline;
}
@media screen and (max-width: 575px) {
  .contact-link {
    padding: 20px;
  }
  .contact-link svg {
    max-width: 30px;
    max-height: 40px;
  }
  .contact-link p {
    font-size: 20px;
  }
}

.map {
  height: 60vh;
  max-height: 600px;
}
.map iframe {
  width: 100%;
  height: 100%;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form .span2 {
  grid-column: span 2;
}
.contact-form input::-moz-placeholder, .contact-form textarea::-moz-placeholder {
  width: 100%;
  font-family: "NotoSans";
  font-size: 24px;
  letter-spacing: 0.5px;
}
.contact-form input, .contact-form textarea, .contact-form input::placeholder, .contact-form textarea::placeholder, .contact-form button {
  width: 100%;
  font-family: "NotoSans";
  font-size: 24px;
  letter-spacing: 0.5px;
}
.contact-form input::-moz-placeholder, .contact-form textarea::-moz-placeholder {
  font-weight: 400;
}
.contact-form input, .contact-form textarea, .contact-form input::placeholder, .contact-form textarea::placeholder {
  font-weight: 400;
}
.contact-form input::-moz-placeholder, .contact-form textarea::-moz-placeholder {
  color: rgba(51, 51, 51, 0.6980392157);
}
.contact-form input::placeholder, .contact-form textarea::placeholder {
  color: rgba(51, 51, 51, 0.6980392157);
}
.contact-form input, .contact-form textarea {
  color: var(--primary-color);
  background-color: #fff;
  box-shadow: 0px 0px 28px 0px rgba(0, 0, 0, 0.1490196078);
  outline: none;
}
.contact-form input, .contact-form button {
  height: 100px;
  padding: 0 20px;
}
.contact-form .iti {
  width: 100%;
}
.contact-form textarea {
  height: 330px;
  resize: none;
  padding: 20px;
}
.contact-form button {
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--yellow);
}
.contact-form button svg {
  margin-left: 10px;
}
@media screen and (max-width: 1399px) {
  .contact-form input::-moz-placeholder, .contact-form textarea::-moz-placeholder {
    font-size: 20px;
  }
  .contact-form input, .contact-form textarea, .contact-form input::placeholder, .contact-form textarea::placeholder, .contact-form button {
    font-size: 20px;
  }
  .contact-form input, .contact-form button {
    height: 70px;
  }
  .contact-form textarea {
    height: 250px;
  }
}
@media screen and (max-width: 767px) {
  .contact-form {
    grid-template-columns: 1fr;
  }
  .contact-form .span2 {
    grid-column: span 1;
  }
}
@media screen and (max-width: 575px) {
  .contact-form input::-moz-placeholder, .contact-form textarea::-moz-placeholder {
    font-size: 16px;
  }
  .contact-form input, .contact-form textarea, .contact-form input::placeholder, .contact-form textarea::placeholder, .contact-form button {
    font-size: 16px;
  }
  .contact-form input, .contact-form button {
    height: 50px;
  }
  .contact-form textarea {
    height: 200px;
  }
}/*# sourceMappingURL=main.css.map */
.back-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.75px;
  text-align: center;
}
.back-btn svg {
  margin-right: 10px;
}
.privacy-cookies a {
  color: var(--green);
}
.privacy-cookies h4 {
  font-weight: 800;
  margin: 20px 0;
}
.prev-next {
  display: none;
}
.main-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
  grid-auto-rows: 300px;
}
.main-gallery a {
  position: relative;
}
.main-gallery a img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.main-gallery a h2 {
  color: #fff;
  position: relative;
  z-index: 3;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  font-size: 32px;
}
.main-gallery .overlay {
  opacity: 0.3;
}
.home-top2 {
  margin: 10px 0 0 auto;
  width: fit-content;
}
.news-top2 form + form {
  margin-left: 15px;
}
@media screen and (max-width: 1299px) {
  .news-top {
    flex-direction: column;
    align-items: start;
    
  }
  .news-top2 {
    margin: 20px 0;
  }
  .home-top2 {
    margin-left: 0;
  }
}
@media screen and (max-width: 1199px) {
  .services-h svg {
    display: none;
  }
  .main-gallery {
    gap: 15px;
    grid-auto-rows: 250px;
  }
  .main-gallery a h2 {
    font-size: 28px;
  }
  .prev-next {
    display: flex;
    align-items: center;
    margin-top: 50px;
    font-size: 16px;
    font-weight: 700;
  }
  .prev-next .prev, .prev-next .next {
    display: flex;
    align-items: center;
  }
  .prev-next .prev svg, .prev-next .next svg {
    width: 14px;
    height: 14px;
  }
  .prev-next .prev {
    margin-right: auto;
  }
  .prev-next .prev svg {
    transform: rotate(180deg);
    margin-right: 5px;
  }
  .prev-next .next svg {
    margin-left: 5px;
  }
  .prev-next .next {
    margin-left: auto;
  }
}
@media screen and (max-width: 850px) {
  .news-top2 {
    flex-direction: column;
    align-items: start;
  }
  .news-top2 form + form {
    margin-left: 0;
    margin-top: 5px;
  }
}
.home-video {
  min-height: 450px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 650px) {
  .main-gallery {
    gap: 10px;
    grid-auto-rows: 250px;
    grid-template-columns: 1fr;
  }
  .main-gallery a h2 {
    font-size: 28px;
  }
  .home-video {
    min-height: 250px;
  }
}
@media screen and (max-width: 575px) {
  .main-gallery {
    grid-auto-rows: 160px;
  }
  .main-gallery a h2 {
    font-size: 22px;
  }
  .back-btn {
    font-size: 18px;
  }
  .privacy-cookies a {
    word-break: break-all;
  }
  .privacy-cookies h2 {
    font-size: 24px;
    margin: 20px 0;
  }
  .privacy-cookies h3 {
    font-size: 20px;
  }
  /* .news-top3 {
    width: 100%;
  } */
   .news-top2 {
    margin: 0;
   }
  .news-top2 form {
    width: 100%;
    justify-content: space-between;
  }
}

.languages {
  position: absolute;
  top: 0;
  right: 0;
}
.languages summary {
  list-style: none;
  display: flex;
  align-items: center;
  cursor: pointer;
  background-color: var(--lightgrey);
  padding: 2px 8px;
}
.languages summary svg {
  margin-left: 5px;
}
.languages ul {
  background-color: var(--lightgrey);
  width: 100%;
}
.languages ul li a {
  display: block;
  text-align: center;
  font-size: 16px;
}
.languages ul li a.active {
  background-color: var(--green);
  color: #fff;
}
.lang {display: none;}
@media screen and (max-width: 1199px) {
  .languages {display: none;}
  .lang {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
  }
  .lang li + li {
    margin-left: 25px;
  }
  .lang .active {
    color: var(--blue);
    font-weight: 700;
  }
}