/* Gilroy Font */
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy/Gilroy-Bold/Gilroy-Bold.woff2") format("woff2"), url("../fonts/Gilroy/Gilroy-Bold/Gilroy-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy/Gilroy-Medium/Gilroy-Medium.woff2") format("woff2"), url("../fonts/Gilroy/Gilroy-Medium/Gilroy-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy/Gilroy-Regular/Gilroy-Regular.woff2") format("woff2"), url("../fonts/Gilroy/Gilroy-Regular/Gilroy-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy/Gilroy-Light/Gilroy-Light.woff2") format("woff2"), url("../fonts/Gilroy/Gilroy-Light/Gilroy-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Gilroy";
  src: url("../fonts/Gilroy/Gilroy-Thin/Gilroy-Thin.woff2") format("woff2"), url("../fonts/Gilroy/Gilroy-Thin/Gilroy-Thin.ttf") format("truetype");
  font-weight: 250;
  font-style: normal;
}
:root {
  --default-font-family: "Gilroy", sans-serif;
  --primary-color: #136232;
  --accent-color: #32ad10;
  --secondary-color: #48762b;
  --tertiary-color: #137d00;
  --text-color: #161a1d;
  --black: #000000;
  --white: #ffffff;
  --light: #f6f6f6;
}

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

html,
body {
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--text-color);
  font-family: var(--default-font-family);
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 400;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: var(--accent-color);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1344px;
  margin: 0 auto;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 20px 0;
}

p {
  margin: 0 0 16px 0;
}
p:last-child {
  margin-bottom: 0;
}

.hint-text {
  color: #656565;
  font-size: 0.875rem;
}

/* Form & Buttons */
.form-group {
  margin-bottom: 20px;
}

.form-input {
  display: block;
  width: 100%;
  border: 2px solid #dcdbda;
  border-radius: 300px;
  outline-color: transparent;
  box-shadow: none;
  padding: 12px 15px;
  font-size: 1rem;
  color: var(--text-color);
  transition: all 0.3s ease;
}
.form-input::-moz-placeholder {
  color: var(--text-color);
  opacity: 0.5;
}
.form-input::placeholder {
  color: var(--text-color);
  opacity: 0.5;
}
.form-input:hover, .form-input:active, .form-input:focus {
  outline-width: 0px;
  border-color: var(--accent-color);
}

textarea.form-input {
  border-radius: 30px;
}

.btn {
  display: inline-block;
  color: var(--white);
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 300px;
  padding: 12px 15px;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.btn:hover {
  color: var(--white);
  background-color: var(--tertiary-color);
}

/* Page Layout */
.page {
  padding: 40px 15px;
}
.page.has-sidebar .page-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 30px;
}
.page.has-sidebar .sidebar_content {
  position: sticky;
  top: 30px;
}
@media (max-width: 767.98px) {
  .page.has-sidebar .page-content-wrapper {
    grid-template-areas: "sidebar" "content";
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .page.has-sidebar .page-content {
    grid-area: content;
  }
  .page.has-sidebar .sidebar {
    grid-area: sidebar;
    position: sticky;
    top: 10px;
    z-index: 999;
    min-height: 80px;
  }
  .page.has-sidebar .sidebar_content {
    position: relative;
    top: 0;
    background-color: var(--white);
  }
}

/* End Page Layout */
/* Site Header */
header#site-header .main-nav {
  padding: 30px 15px;
  background-color: var(--white);
}
header#site-header .main-nav_inner {
  display: flex;
  align-items: center;
}
header#site-header .main-nav .site-brand {
  flex-shrink: 0;
}
header#site-header .main-nav .site-brand svg {
  width: 345px;
  height: auto;
}
@media (max-width: 767.98px) {
  header#site-header .main-nav .site-brand svg {
    width: 200px;
  }
}
header#site-header .main-nav_items {
  margin-left: auto;
  display: flex;
  align-items: center;
}
header#site-header .main-nav .lang-switcher {
  font-weight: 400;
  text-transform: uppercase;
  padding: 2px 20px;
}
@media (max-width: 767.98px) {
  header#site-header .main-nav .lang-switcher {
    padding: 2px 15px;
  }
}
header#site-header .main-nav_account {
  display: flex;
  align-items: center;
  padding: 5px 0;
  border-left: 2px solid var(--accent-color);
  margin-left: 7px;
}
header#site-header .main-nav_link {
  display: flex;
  align-items: center;
  margin-left: 7px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}
header#site-header .main-nav_link:hover {
  color: var(--accent-color);
}
header#site-header .main-nav_link svg {
  width: 24px;
  height: auto;
}
@media (max-width: 767.98px) {
  header#site-header .main-nav_link svg {
    width: 22px;
  }
}
@media (max-width: 767.98px) {
  header#site-header .main-nav {
    padding: 15px;
  }
}

/* End Site Header */
/* Start Site Footer */
.footer {
  background-color: var(--tertiary-color);
  color: var(--white);
}
.footer-inner {
  padding: 40px 15px;
  display: grid;
  grid-template-columns: 2.9fr 1.2fr 0.8fr;
  gap: 60px;
}
@media (max-width: 1399.98px) {
  .footer-inner {
    grid-template-columns: 2.5fr 1.2fr 1fr;
    gap: 50px;
  }
}
@media (max-width: 1199.98px) {
  .footer-inner {
    grid-template-columns: 2fr 1.2fr 1fr;
  }
}
@media (max-width: 991.98px) {
  .footer-inner {
    grid-template-columns: 2fr 1fr;
  }
}
@media (max-width: 767.98px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }
}
.footer-text {
  font-size: 0.875rem;
}
.footer-widget_title {
  font-size: 1.125rem;
  font-weight: 700;
  color: inherit;
  text-transform: uppercase;
  padding-bottom: 7px;
  margin-bottom: 10px;
  border-bottom: 1px dashed var(--white);
}
.footer-menu {
  display: flex;
  flex-direction: column;
}
.footer-menu.polices-menu {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media (max-width: 991.98px) {
  .footer-menu.polices-menu {
    grid-template-columns: auto;
  }
}
.footer-link {
  color: inherit;
  font-size: 1rem;
  font-weight: 400;
  display: inline-flex;
  align-items: flex-start;
  margin-bottom: 10px;
}
.footer-link:hover {
  color: inherit;
  text-decoration: underline;
}
.footer-link span {
  min-width: 100px;
}
.footer-link svg {
  width: 12px;
  height: auto;
  margin-top: 6px;
  margin-left: 7px;
  flex-shrink: 0;
}

/* End Site Footer */
/* Login Page */
.login-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 30px solid var(--accent-color);
  padding: 100px 15px;
  min-height: 75vh;
}
.login-wrapper .login-box {
  width: 100%;
  max-width: 450px;
  border: 1px solid var(--accent-color);
  border-radius: 30px;
  overflow: hidden;
}
.login-wrapper .login-box_heading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 15px;
  background-color: var(--secondary-color);
  color: var(--white);
}
.login-wrapper .login-box_heading h2 {
  color: inherit;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}
.login-wrapper .login-box_form {
  padding: 30px 20px;
}
.login-wrapper .login-box_form .form-input {
  text-align: center;
}
.login-wrapper .login-box_form .form-footer {
  padding-top: 10px;
}
.login-wrapper .login-box_form .login-btn {
  display: block;
  width: 100%;
  text-align: center;
}
@media (max-width: 767.98px) {
  .login-wrapper .login-box_form {
    padding: 30px 15px;
  }
}
.login-wrapper .login-box .hint-text {
  text-align: center;
}

/* End Login Page */
/* Content Page */
.welcome-banner {
  background-color: var(--accent-color);
  color: var(--white);
  padding: 30px 15px;
}
.welcome-banner_title {
  font-size: 2.25rem;
  line-height: 1.2;
  color: inherit;
  margin-bottom: 10px;
}
@media (max-width: 767.98px) {
  .welcome-banner_title {
    font-size: 1.75rem;
  }
}

.presentation-list {
  padding-bottom: 30px;
  margin-bottom: 40px;
  border-bottom: 1px dashed var(--primary-color);
}
.presentation-list:last-child {
  margin-bottom: 0;
}
.presentation-list_heading {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-color);
  color: var(--white);
  border-radius: 300px;
  padding: 7px 25px;
  margin-bottom: 25px;
}
.presentation-list_heading h2 {
  color: inherit;
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  margin: 0;
}
@media (max-width: 767.98px) {
  .presentation-list_heading {
    padding: 7px 15px;
  }
  .presentation-list_heading h2 {
    font-size: 1.125rem;
  }
}
.presentation-list_content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 0 15px;
}
@media (max-width: 1399.98px) {
  .presentation-list_content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991.98px) {
  .presentation-list_content {
    grid-template-columns: 1fr;
  }
}
.presentation-list .presentation-card_top {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 200px;
  border-radius: 15px;
  margin-bottom: 10px;
}
.presentation-list .presentation-card_top:hover .presentation-card_overlay {
  top: 0;
  opacity: 1;
}
.presentation-list .presentation-card_thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  z-index: 5;
}
.presentation-list .presentation-card_overlay {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 15px 78px 15px 15px;
  overflow: auto;
  scrollbar-width: thin;
  color: var(--white);
  background-color: rgba(69, 69, 69, 0.8);
  transition: all 0.3s ease;
  z-index: 7;
  border-radius: 15px;
  opacity: 0;
}
.presentation-list .presentation-card_desc {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  min-height: 100%;
  font-size: 0.875rem;
}
.presentation-list .presentation-card_actions {
  position: absolute;
  top: 50%;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 10;
  transform: translateY(-50%);
}
.presentation-list .presentation-card_actions .btn {
  background-color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 7px 10px;
}
.presentation-list .presentation-card_actions .btn:hover {
  background-color: var(--tertiary-color);
}
.presentation-list .presentation-card_actions .btn svg {
  width: auto;
  height: 32px;
}
.presentation-list .presentation-card_actions .btn span {
  display: none;
}
.presentation-list .presentation-card_title {
  color: var(--accent-color);
  font-size: 1.125rem;
  text-align: center;
  margin: 0;
}
.presentation-list .presentation-card_title a {
  color: inherit;
}
.presentation-list .presentation-card_title a:hover {
  color: var(--primary-color);
}
@media (max-width: 767.98px) {
  .presentation-list .presentation-card_title {
    font-size: 1rem;
  }
}

/* Start Info Panel */
.info-panel {
  padding: 20px;
  border-radius: 10px;
  background-color: var(--light);
  margin-bottom: 40px;
}
.info-panel_title {
  font-size: 1.75rem;
  margin-bottom: 10px;
}
@media (max-width: 767.98px) {
  .info-panel_title {
    font-size: 1.5rem;
  }
}
.info-panel_text {
  font-size: 1.125rem;
}
.info-panel_text a {
  font-weight: 700;
}
@media (max-width: 767.98px) {
  .info-panel_text {
    font-size: 1rem;
  }
}

/* End Info Panel */
/* Start Contact Form */
.contact-form {
  position: relative;
}
.contact-form_info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
  background-color: var(--white);
  position: absolute;
  top: -7px;
  left: -7px;
  z-index: 5;
}
.contact-form_info-icon svg {
  width: 36px;
  height: auto;
  color: var(--accent-color);
}
.contact-form_heading {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 7px 20px 7px 90px;
  border: 1px solid var(--primary-color);
  border-radius: 50px;
  color: var(--white);
  background-color: var(--accent-color);
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
  z-index: 4;
  min-height: 66px;
}
.contact-form_heading svg {
  width: 12px;
  height: auto;
  transition: all 0.3s ease;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  margin-left: auto;
}
.contact-form_heading:hover {
  color: var(--accent-color);
  background-color: var(--white);
}
.contact-form_title {
  font-size: 1.125rem;
  color: inherit;
  margin: 0;
}
.contact-form_content {
  text-align: center;
  height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: -30px;
  border: 1px solid var(--accent-color);
  border-top: none;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  transition: all 0.3s ease;
}
.contact-form_content form {
  padding: 60px 15px 20px 15px;
}
.contact-form .form-input {
  text-align: center;
}
.contact-form .send-btn {
  display: block;
  width: 100%;
}
.contact-form.open .contact-form_heading {
  color: var(--white);
  background-color: var(--accent-color);
}
.contact-form.open .contact-form_heading svg {
  transform: rotate(90deg);
}
.contact-form.open .contact-form_content {
  opacity: 1;
}

/* End Contact Form */
/* Start fr lang css */
[lang=fr] .login-wrapper .hint-text {
  max-width: 80%;
  margin: 0 auto;
}
@media (max-width: 767.98px) {
  [lang=fr] .login-wrapper .hint-text {
    max-width: 100%;
  }
}
[lang=fr] .contact-form_title {
  font-size: 1rem;
}/*# sourceMappingURL=theme.css.map */