@charset "UTF-8";
:root {
  --primary-dark: #006400; /* Vert foncé */
  --accent-orange: #FFA500; /* Orange */
  --secondary-gold: #DAA520; /* Doré */
  --text-light: #FFFFFF; /* Texte clair */
  --bg-light: #F5F5F5; /* Fond clair */
}

@font-face {
  font-family: "Poppins";
  src: url("../Fonts/poppins/poppins-v15-latin-regular.eot?v=4.0");
  src: url("../Fonts/poppins/poppins-v15-latin-regular.eot?#iefix&v=4.0") format("embedded-opentype"), url("../Fonts/poppins/poppins-v15-latin-regular.woff2?v=4.0") format("woff2"), url("../Fonts/poppins/poppins-v15-latin-regular.woff?v=4.0") format("woff"), url("../Fonts/poppins/poppins-v15-latin-regular.ttf?v=4.0") format("truetype"), url("../Fonts/poppins/poppins-v15-latin-regular.svg?v=4.0#Poppins") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../Fonts/poppins/poppins-v15-latin-100.eot?v=4.0");
  src: url("../Fonts/poppins/poppins-v15-latin-100.eot?#iefix&v=4.0") format("embedded-opentype"), url("../Fonts/poppins/poppins-v15-latin-100.woff2?v=4.0") format("woff2"), url("../Fonts/poppins/poppins-v15-latin-100.woff?v=4.0") format("woff"), url("../Fonts/poppins/poppins-v15-latin-100.ttf?v=4.0") format("truetype"), url("../Fonts/poppins/poppins-v15-latin-100.svg?v=4.0#Poppins") format("svg");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../Fonts/poppins/poppins-v15-latin-ext-200.eot?v=4.0");
  src: url("../Fonts/poppins/poppins-v15-latin-ext-200.eot?#iefix&v=4.0") format("embedded-opentype"), url("../Fonts/poppins/poppins-v15-latin-ext-200.woff2?v=4.0") format("woff2"), url("../Fonts/poppins/poppins-v15-latin-ext-200.woff?v=4.0") format("woff"), url("../Fonts/poppins/poppins-v15-latin-ext-200.ttf?v=4.0") format("truetype"), url("../Fonts/poppins/poppins-v15-latin-ext-200.svg?v=4.0#Poppins") format("svg");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Poppins";
  src: url("../Fonts/poppins/poppins-v15-latin-italic.eot?v=4.0");
  src: url("../Fonts/poppins/poppins-v15-latin-italic.eot?#iefix&v=4.0") format("embedded-opentype"), url("../Fonts/poppins/poppins-v15-latin-italic.woff2?v=4.0") format("woff2"), url("../Fonts/poppins/poppins-v15-latin-italic.woff?v=4.0") format("woff"), url("../Fonts/poppins/poppins-v15-latin-italic.ttf?v=4.0") format("truetype"), url("../Fonts/poppins/poppins-v15-latin-italic.svg?v=4.0#Poppins") format("svg");
  font-weight: normal;
  font-style: italic;
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none !important;
  list-style: none;
  outline: none;
}

html {
  font-size: 10px;
  height: 100%;
  width: 100%;
  position: relative;
}
html body {
  font-size: 10px;
  height: 100%;
  width: 100%;
  font-family: "Poppins", "Lato", sans-serif;
  font-weight: normal;
  line-height: 1.7;
  color: #777;
  position: relative;
  background: rgb(234, 234, 238);
}
html body.grille {
  background-image: linear-gradient(rgba(68, 66, 191, 0.1), rgba(191, 70, 66, 0.1)), url(../image/background-opacity-2.png);
}
html body main {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
html body main.fixed {
  position: fixed !important;
  overflow: hidden !important;
}

input,
textarea,
select,
button {
  font-family: "Poppins", "Lato", sans-serif;
}

a,
a:link,
a:visited,
a:active {
  color: #777;
  font-size: 1.6rem;
}

.menu-box-header {
  height: 5.7rem;
}

::after,
::before {
  font-family: FontAwesome;
}

.popup-personal {
  overflow: auto;
  position: absolute;
  width: 22rem;
  max-height: 40rem;
  background: #fff;
  box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  z-index: -1;
  visibility: hidden;
  transform: translateY(3rem);
  transition-duration: 0.2s;
  transition-property: transform visibility;
  transition-timing-function: ease-in;
}

.flex-container {
  display: flex;
  /*--------- redimensionnement des colonnes -------------*/
}
.flex-container.--row {
  flex-direction: row;
}
.flex-container.--row-reverse {
  flex-direction: row-reverse;
}
.flex-container.--column {
  flex-direction: column;
}
.flex-container.--column-reverse {
  flex-direction: column-reverse;
}
.flex-container.--column-reverse.--align-center, .flex-container.--column.--align-center, .flex-container.--row-reverse.--align-center, .flex-container.--row.--align-center {
  align-items: center;
}
.flex-container.--column-reverse.--align-stretch, .flex-container.--column.--align-stretch, .flex-container.--row-reverse.--align-stretch, .flex-container.--row.--align-stretch {
  align-items: stretch;
}
.flex-container.--column-reverse.--align-start, .flex-container.--column.--align-start, .flex-container.--row-reverse.--align-start, .flex-container.--row.--align-start {
  align-items: flex-start;
}
.flex-container.--column-reverse.--align-end, .flex-container.--column.--align-end, .flex-container.--row-reverse.--align-end, .flex-container.--row.--align-end {
  align-items: flex-end;
}
.flex-container.--column-reverse.--justify-start, .flex-container.--column.--justify-start, .flex-container.--row-reverse.--justify-start, .flex-container.--row.--justify-start {
  justify-content: flex-start;
}
.flex-container.--column-reverse.--justify-end, .flex-container.--column.--justify-end, .flex-container.--row-reverse.--justify-end, .flex-container.--row.--justify-end {
  justify-content: flex-end;
}
.flex-container.--column-reverse.--justify-center, .flex-container.--column.--justify-center, .flex-container.--row-reverse.--justify-center, .flex-container.--row.--justify-center {
  justify-content: center;
}
.flex-container.--column-reverse.--justify-around, .flex-container.--column.--justify-around, .flex-container.--row-reverse.--justify-around, .flex-container.--row.--justify-around {
  justify-content: space-around;
}
.flex-container.--column-reverse.--justify-evenly, .flex-container.--column.--justify-evenly, .flex-container.--row-reverse.--justify-evenly, .flex-container.--row.--justify-evenly {
  justify-content: space-evenly;
}
.flex-container.--column-reverse.--justify-between, .flex-container.--column.--justify-between, .flex-container.--row-reverse.--justify-between, .flex-container.--row.--justify-between {
  justify-content: space-between;
}
.flex-container.--column-reverse.--justify-normal, .flex-container.--column.--justify-normal, .flex-container.--row-reverse.--justify-normal, .flex-container.--row.--justify-normal {
  justify-content: normal;
}
.flex-container.--column-reverse.--content-center, .flex-container.--column.--content-center, .flex-container.--row-reverse.--content-center, .flex-container.--row.--content-center {
  align-content: center;
}
.flex-container.--column-reverse.--content-start, .flex-container.--column.--content-start, .flex-container.--row-reverse.--content-start, .flex-container.--row.--content-start {
  align-content: flex-start;
}
.flex-container.--column-reverse.--content-end, .flex-container.--column.--content-end, .flex-container.--row-reverse.--content-end, .flex-container.--row.--content-end {
  align-content: flex-end;
}
.flex-container.--column-reverse.--content-stretch, .flex-container.--column.--content-stretch, .flex-container.--row-reverse.--content-stretch, .flex-container.--row.--content-stretch {
  align-content: stretch;
}
.flex-container.--column-reverse.--content-normal, .flex-container.--column.--content-normal, .flex-container.--row-reverse.--content-normal, .flex-container.--row.--content-normal {
  align-content: normal;
}
.flex-container.--column-reverse.--wrap, .flex-container.--column.--wrap, .flex-container.--row-reverse.--wrap, .flex-container.--row.--wrap {
  flex-wrap: wrap;
}
.flex-container.--column-reverse.--nowrap, .flex-container.--column.--nowrap, .flex-container.--row-reverse.--nowrap, .flex-container.--row.--nowrap {
  flex-wrap: nowrap;
}
.flex-container > .flex-col-5 {
  flex: 5%;
}
.flex-container > .flex-col-10 {
  flex: 10%;
}
.flex-container > .flex-col-15 {
  flex: 15%;
}
.flex-container > .flex-col-20 {
  flex: 20%;
}
.flex-container > .flex-col-25 {
  flex: 25%;
}
.flex-container > .flex-col-30 {
  flex: 30%;
}
.flex-container > .flex-col-40 {
  flex: 40%;
}
.flex-container > .flex-col-50 {
  flex: 50%;
}
.flex-container > .flex-col-60 {
  flex: 60%;
}
.flex-container > .flex-col-70 {
  flex: 70%;
}
.flex-container > .flex-col-75 {
  flex: 75%;
}
.flex-container > .flex-col-80 {
  flex: 80%;
}
.flex-container > .flex-col-90 {
  flex: 90%;
}
.flex-container > .flex-col-95 {
  flex: 95%;
}
.flex-container > .flex-col-100 {
  flex: 100%;
}
.flex-container > .self-center {
  align-self: center;
}
.flex-container .pd-5 {
  padding: 0.5rem;
}
.flex-container .pd-10 {
  padding: 1rem;
}
.flex-container .pd-15 {
  padding: 1.5rem;
}
.flex-container .pd-20 {
  padding: 2rem;
}
.flex-container .pd-25 {
  padding: 2.5rem;
}
.flex-container .pd-30 {
  padding: 3rem;
}
.flex-container .pd-y-5 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.flex-container .pd-y-10 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.flex-container .pd-y-15 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.flex-container .pd-y-20 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.flex-container .pd-y-25 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
.flex-container .pd-y-30 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.flex-container .pd-x-5 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.flex-container .pd-x-10 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.flex-container .pd-x-15 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.flex-container .pd-x-20 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.flex-container .pd-x-25 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.flex-container .pd-x-30 {
  padding-left: 3rem;
  padding-right: 3rem;
}
.flex-container .pd-lt-5 {
  padding-left: 0.5rem;
}
.flex-container .pd-lt-10 {
  padding-left: 1rem;
}
.flex-container .pd-lt-15 {
  padding-left: 1.5rem;
}
.flex-container .pd-lt-20 {
  padding-left: 2rem;
}
.flex-container .pd-lt-25 {
  padding-left: 2.5rem;
}
.flex-container .pd-lt-30 {
  padding-left: 3rem;
}
.flex-container .pd-rt-5 {
  padding-right: 0.5rem;
}
.flex-container .pd-rt-10 {
  padding-right: 1rem;
}
.flex-container .pd-rt-15 {
  padding-right: 1.5rem;
}
.flex-container .pd-rt-20 {
  padding-right: 2rem;
}
.flex-container .pd-rt-25 {
  padding-right: 2.5rem;
}
.flex-container .pd-rt-30 {
  padding-right: 3rem;
}
.flex-container .pd-tp-5 {
  padding-top: 0.5rem;
}
.flex-container .pd-tp-10 {
  padding-top: 1rem;
}
.flex-container .pd-tp-15 {
  padding-top: 1.5rem;
}
.flex-container .pd-tp-20 {
  padding-top: 2rem;
}
.flex-container .pd-tp-25 {
  padding-top: 2.5rem;
}
.flex-container .pd-tp-30 {
  padding-top: 3rem;
}
.flex-container .pd-bt-5 {
  padding-bottom: 0.5rem;
}
.flex-container .pd-bt-10 {
  padding-bottom: 1rem;
}
.flex-container .pd-bt-15 {
  padding-bottom: 1.5rem;
}
.flex-container .pd-bt-20 {
  padding-bottom: 2rem;
}
.flex-container .pd-bt-25 {
  padding-bottom: 2.5rem;
}
.flex-container .pd-bt-30 {
  padding-bottom: 3rem;
}
.flex-container .mg-5 {
  margin: 0.5rem;
}
.flex-container .mg-10 {
  margin: 1rem;
}
.flex-container .mg-15 {
  margin: 1.5rem;
}
.flex-container .mg-20 {
  margin: 2rem;
}
.flex-container .mg-25 {
  margin: 2.5rem;
}
.flex-container .mg-30 {
  margin: 3rem;
}
.flex-container .mg-y-5 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.flex-container .mg-y-10 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.flex-container .mg-y-15 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.flex-container .mg-y-20 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.flex-container .mg-y-25 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.flex-container .mg-y-30 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.flex-container .mg-x-5 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.flex-container .mg-x-10 {
  margin-left: 1rem;
  margin-right: 1rem;
}
.flex-container .mg-x-15 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.flex-container .mg-x-20 {
  margin-left: 2rem;
  margin-right: 2rem;
}
.flex-container .mg-x-25 {
  margin-left: 2.5rem;
  margin-right: 2.5rem;
}
.flex-container .mg-x-30 {
  margin-left: 3rem;
  margin-right: 3rem;
}
.flex-container .mg-lt-5 {
  margin-left: 0.5rem;
}
.flex-container .mg-lt-10 {
  margin-left: 1rem;
}
.flex-container .mg-lt-15 {
  margin-left: 1.5rem;
}
.flex-container .mg-lt-20 {
  margin-left: 2rem;
}
.flex-container .mg-lt-25 {
  margin-left: 2.5rem;
}
.flex-container .mg-lt-30 {
  margin-left: 3rem;
}
.flex-container .mg-rt-5 {
  margin-right: 0.5rem;
}
.flex-container .mg-rt-10 {
  margin-right: 1rem;
}
.flex-container .mg-rt-15 {
  margin-right: 1.5rem;
}
.flex-container .mg-rt-20 {
  margin-right: 2rem;
}
.flex-container .mg-rt-25 {
  margin-right: 2.5rem;
}
.flex-container .mg-rt-30 {
  margin-right: 3rem;
}
.flex-container .mg-tp-5 {
  margin-top: 0.5rem;
}
.flex-container .mg-tp-10 {
  margin-top: 1rem;
}
.flex-container .mg-tp-15 {
  margin-top: 1.5rem;
}
.flex-container .mg-tp-20 {
  margin-top: 2rem;
}
.flex-container .mg-tp-25 {
  margin-top: 2.5rem;
}
.flex-container .mg-tp-30 {
  margin-top: 3rem;
}
.flex-container .mg-bt-5 {
  margin-bottom: 0.5rem;
}
.flex-container .mg-bt-10 {
  margin-bottom: 1rem;
}
.flex-container .mg-bt-15 {
  margin-bottom: 1.5rem;
}
.flex-container .mg-bt-20 {
  margin-bottom: 2rem;
}
.flex-container .mg-bt-25 {
  margin-bottom: 2.5rem;
}
.flex-container .mg-bt-30 {
  margin-bottom: 3rem;
}

.--hide {
  display: none;
}

.header-layout {
  width: 100%;
  padding: 0rem 2rem;
  padding-bottom: 2rem;
  background: rgb(1, 36, 1);
  z-index: 5;
}
.header-layout .primary-header {
  padding: 1.5rem 2rem;
  max-width: 160rem;
  margin: auto;
}
.header-layout .primary-header-left_item {
  margin-right: 2rem;
}
.header-layout .primary-header-left_item i {
  font-size: 1.5rem;
  color: #fff;
  margin-right: 0.5rem;
}
.header-layout .primary-header-left_item span {
  font-size: 1.5rem;
  color: #fff;
}
.header-layout .primary-header-right_link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 0.5rem;
  height: 3.5rem;
  width: 3.5rem;
  background-color: #fff;
  border-radius: 10rem;
  transition: all 0.2s linear;
}
.header-layout .primary-header-right_link i {
  font-size: 2rem;
  color: rgb(0, 100, 0);
}
.header-layout .primary-header-right_link:hover {
  background-color: rgb(2, 180, 2);
}
.header-layout .primary-header-right_link:hover i {
  font-size: 2rem;
  color: #fff;
}
@media only screen and (max-width: 900px) {
  .header-layout .primary-header-left_item {
    margin-right: 0rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .header-layout .primary-header-left_item i {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 0.5rem;
    height: 3.5rem;
    width: 3.5rem;
    background-color: #fff;
    color: rgb(0, 100, 0);
    border-radius: 10rem;
    transition: all 0.2s linear;
  }
  .header-layout .primary-header-left_item i:hover {
    background-color: rgb(2, 180, 2);
    color: #fff;
  }
  .header-layout .primary-header-left_item:nth-child(1) span {
    display: none;
  }
}
@media only screen and (max-width: 900px) and (max-width: 768px) {
  .header-layout .primary-header-left_item span {
    display: none;
  }
}
@media only screen and (max-width: 1600px) {
  .header-layout .primary-header {
    max-width: 128rem;
  }
}
@media only screen and (max-width: 1280px) {
  .header-layout .primary-header {
    max-width: 102.4rem;
  }
}
@media only screen and (max-width: 1024px) {
  .header-layout .primary-header {
    max-width: 88.6rem;
  }
}
@media only screen and (max-width: 900px) {
  .header-layout .primary-header {
    max-width: 70rem;
  }
}
.header-layout .secondary-header {
  position: relative;
  height: 7.5rem;
  padding: 1rem 2rem;
  max-width: 160rem;
  margin: auto;
  background-color: #fff;
  border-radius: 4rem;
}
.header-layout .secondary-header .navbar-component-mobile {
  display: none;
}
.header-layout .secondary-header .navbar-component-mobile.active {
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);
  display: flex;
}
.header-layout .secondary-header_navigation {
  margin-right: 2rem;
  margin-top: -0.5rem;
  display: none;
}
.header-layout .secondary-header_navigation .fa {
  font-size: 3rem;
  color: rgb(0, 100, 0);
}
.header-layout .secondary-header_image {
  width: 32rem;
}
.header-layout .secondary-header_image img {
  width: 6rem;
  height: auto;
  border-radius: 1rem 0 0 0;
}
@media only screen and (max-width: 1280px) {
  .header-layout .secondary-header_image {
    width: 10rem;
  }
  .header-layout .secondary-header_image img {
    width: 4.5rem;
  }
}
@media only screen and (max-width: 768px) {
  .header-layout .secondary-header_image {
    padding: 0 2rem;
  }
}
.header-layout .secondary-header_menu {
  margin-right: 3rem;
}
.header-layout .secondary-header_menu--item__link {
  position: relative;
  color: #000;
  text-decoration: none;
  transition: all 0.2s linear;
  font-size: 1.6rem;
  margin: 0 1rem;
  font-weight: 700;
  padding: 0.5rem 0;
}
.header-layout .secondary-header_menu--item__link::before {
  position: absolute;
  width: 0;
  height: 0.2rem;
  content: "";
  bottom: -0.5rem;
  left: 50%;
  background-color: rgba(0, 100, 0, 0.6);
  transition: all 0.2s linear;
}
.header-layout .secondary-header_menu--item__link::after {
  position: absolute;
  width: 0;
  height: 0.2rem;
  content: "";
  bottom: -0.5rem;
  right: 50%;
  background-color: rgba(0, 100, 0, 0.6);
  transition: all 0.2s linear;
}
.header-layout .secondary-header_menu--item__link:hover {
  color: rgba(0, 100, 0, 0.6);
}
.header-layout .secondary-header_menu--item__link:hover::after, .header-layout .secondary-header_menu--item__link:hover::before {
  width: 50%;
}
.header-layout .secondary-header_menu--item__link.active {
  color: rgb(255, 165, 0);
}
.header-layout .secondary-header_menu--item__link.active::after, .header-layout .secondary-header_menu--item__link.active::before {
  width: 50%;
  background-color: rgb(255, 165, 0);
}
@media only screen and (max-width: 1280px) {
  .header-layout .secondary-header_menu--item__link {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 1024px) {
  .header-layout .secondary-header_menu--item__link {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 768px) {
  .header-layout .secondary-header_menu {
    display: none;
  }
}
.header-layout .secondary-header_button {
  width: 32rem;
}
.header-layout .secondary-header_button .btn {
  margin-left: 1rem;
  background-color: rgb(255, 165, 0);
  color: #fff;
  font-size: 1.6rem;
  padding: 1rem 2.5rem;
  border-radius: 3rem;
  transition: all 0.2s linear;
  font-weight: 700;
  border-color: rgb(234, 234, 238);
  border-width: 0.5rem;
  border-style: solid;
}
.header-layout .secondary-header_button .btn:hover {
  background-color: rgb(163, 107, 1);
  color: #fff;
}
@media only screen and (max-width: 1280px) {
  .header-layout .secondary-header_button {
    width: 30rem;
  }
  .header-layout .secondary-header_button .btn {
    font-size: 1.5rem;
    padding: 1rem 2rem;
  }
}
@media only screen and (max-width: 1024px) {
  .header-layout .secondary-header_button {
    width: 25.5rem;
  }
  .header-layout .secondary-header_button .btn {
    font-size: 1.5rem;
    padding: 1rem 1.4rem;
    margin-left: 0.5rem;
  }
}
@media only screen and (max-width: 900px) {
  .header-layout .secondary-header_button {
    display: none;
  }
}
@media only screen and (max-width: 1600px) {
  .header-layout .secondary-header {
    max-width: 128rem;
  }
}
@media only screen and (max-width: 1280px) {
  .header-layout .secondary-header {
    max-width: 102.4rem;
  }
}
@media only screen and (max-width: 1024px) {
  .header-layout .secondary-header {
    max-width: 86.8rem;
    padding: 1rem 1rem 1rem 1.5rem;
  }
}
@media only screen and (max-width: 900px) {
  .header-layout .secondary-header {
    max-width: 70rem;
  }
}
@media only screen and (max-width: 768px) {
  .header-layout .secondary-header {
    width: 100% !important;
    padding: 1rem 0 1rem 0 !important;
    border-radius: 0;
  }
  .header-layout .secondary-header_navigation {
    display: block;
  }
  .header-layout .secondary-header .navbar-component-mobile {
    justify-content: flex-start;
    align-items: flex-start;
    position: absolute;
    background-color: #fff;
    width: 100%;
    padding: 1rem 0;
    margin: 0;
    margin-top: 39rem;
    z-index: 4;
    border-top: 0.2rem solid rgb(0, 100, 0);
    border-radius: 0 0 2rem 2rem;
  }
  .header-layout .secondary-header .navbar-component-mobile .secondary-header_menu {
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 2rem;
  }
  .header-layout .secondary-header .navbar-component-mobile .secondary-header_menu--item {
    margin: 1rem 2rem;
  }
  .header-layout .secondary-header .navbar-component-mobile .secondary-header_button {
    display: flex !important;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 2rem 1rem 2rem;
    width: 100%;
  }
  .header-layout .secondary-header .navbar-component-mobile .secondary-header_button .btn {
    padding: 1rem 3rem;
  }
}
@media only screen and (max-width: 768px) {
  .header-layout {
    padding: 0 !important;
    width: 100% !important;
  }
}

.banner-layout.home-page {
  top: 0;
  z-index: 1;
  width: 100%;
  height: 65rem;
  background-color: rgb(1, 36, 1);
}
@media only screen and (max-width: 1024px) {
  .banner-layout.home-page {
    height: 55rem;
    padding-bottom: 5rem;
  }
}
.banner-layout_silder {
  width: 100%;
  padding: 20rem;
}
.banner-layout_silder.swiper {
  max-width: 160rem;
  margin: auto;
  height: 100%;
}
.banner-layout_silder.swiper .swiper-wrapper .swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-layout_silder.swiper .swiper-wrapper .swiper-slide_title {
  color: rgb(255, 165, 0);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 4.8rem;
  text-align: center;
  max-width: 102.4rem;
  margin: 0 auto;
  padding: 0 0.5rem;
  border-bottom: 0.2rem solid rgb(255, 165, 0);
  text-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 900px) {
  .banner-layout_silder.swiper .swiper-wrapper .swiper-slide_title {
    font-size: 2.5rem;
    padding: 0;
  }
}
@media only screen and (max-width: 700px) {
  .banner-layout_silder.swiper .swiper-wrapper .swiper-slide_title {
    font-size: 2.3rem;
    line-height: 3rem;
  }
}
.banner-layout_silder.swiper .swiper-wrapper .swiper-slide_subtitle {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  max-width: 102.4rem;
  line-height: 4.8rem;
  margin: 0 auto;
  padding: 0 0.5rem;
}
.banner-layout_silder.swiper .swiper-wrapper .swiper-slide_slogan {
  position: relative;
  color: #fff;
  font-size: 5rem;
  font-weight: 700;
  line-height: 5rem;
  text-align: center;
  max-width: 80rem;
  margin: 2rem auto 1rem auto;
  padding: 0 0.5rem;
}
@media only screen and (max-width: 1280px) {
  .banner-layout_silder.swiper .swiper-wrapper .swiper-slide_slogan {
    max-width: 65rem;
    font-size: 4rem;
  }
}
@media only screen and (max-width: 900px) {
  .banner-layout_silder.swiper .swiper-wrapper .swiper-slide_slogan {
    max-width: 50rem;
    font-size: 3.2rem;
    line-height: 4rem;
    margin: 0 auto 1rem auto;
  }
}
@media only screen and (max-width: 700px) {
  .banner-layout_silder.swiper .swiper-wrapper .swiper-slide_slogan {
    max-width: 45rem;
    font-size: 2.8rem;
    line-height: 4rem;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 600px) {
  .banner-layout_silder.swiper .swiper-wrapper .swiper-slide_slogan {
    max-width: 34rem;
    font-size: 2.5rem;
    line-height: 3rem;
    margin-bottom: 0;
  }
}
.banner-layout_silder.swiper .swiper-wrapper .swiper-slide_slogan span {
  color: rgb(255, 165, 0);
}
.banner-layout_silder.swiper .swiper-wrapper .swiper-slide_slogan::before {
  position: absolute;
  content: "\f10d";
  display: block;
  top: -3rem;
  left: -3rem;
  color: rgb(255, 165, 0);
}
.banner-layout_silder.swiper .swiper-wrapper .swiper-slide_slogan::after {
  position: absolute;
  content: "\f10e";
  display: block;
  top: -2.5rem;
  right: -3rem;
  color: rgb(255, 165, 0);
}
@media only screen and (max-width: 900px) {
  .banner-layout_silder.swiper .swiper-wrapper .swiper-slide_slogan::before {
    font-size: 3rem;
  }
  .banner-layout_silder.swiper .swiper-wrapper .swiper-slide_slogan::after {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 600px) {
  .banner-layout_silder.swiper .swiper-wrapper .swiper-slide_slogan::before {
    top: -2.5rem;
    left: 0rem;
    font-size: 2.5rem;
  }
  .banner-layout_silder.swiper .swiper-wrapper .swiper-slide_slogan::after {
    right: 0rem;
    font-size: 2.5rem;
  }
}
.banner-layout_silder.swiper .swiper-wrapper .swiper-slide_description {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 400;
  text-align: center;
  padding: 0 2rem;
  margin: 1.6rem auto 1.6rem auto;
  line-height: 2.4rem;
  max-width: 102.4rem;
  text-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.5);
}
@media only screen and (max-width: 1280px) {
  .banner-layout_silder.swiper .swiper-wrapper .swiper-slide_description {
    max-width: 80rem;
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 900px) {
  .banner-layout_silder.swiper .swiper-wrapper .swiper-slide_description {
    max-width: 60rem;
    font-size: 1.5rem;
    margin: 1rem auto 1.6rem auto;
  }
}
.banner-layout_silder.swiper .swiper-wrapper .swiper-slide .btn {
  margin-top: 3rem;
  background-color: rgb(255, 165, 0);
  color: #fff;
  font-size: 1.6rem;
  padding: 1rem 3rem;
  border-radius: 3rem;
  transition: all 0.2s linear;
  font-weight: 700;
}
@media only screen and (max-width: 900px) {
  .banner-layout_silder.swiper .swiper-wrapper .swiper-slide .btn {
    font-size: 1.4rem;
    padding: 1rem 2rem;
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 600px) {
  .banner-layout_silder.swiper .swiper-wrapper .swiper-slide .btn {
    font-size: 1.2rem;
    padding: 1rem 1.5rem;
    margin-top: 2rem;
  }
}
.banner-layout_silder.swiper .swiper-wrapper .swiper-slide .btn i {
  margin-left: 1rem;
}
.banner-layout_silder.swiper .swiper-wrapper .swiper-slide .btn:hover {
  background-color: rgb(163, 107, 1);
  color: #fff;
}
.banner-layout_silder.swiper .swiper-button-next, .banner-layout_silder.swiper .swiper-button-prev {
  color: rgb(218, 165, 32);
}
@media only screen and (max-width: 700px) {
  .banner-layout_silder.swiper .swiper-button-next::after, .banner-layout_silder.swiper .swiper-button-prev::after {
    font-size: 2rem;
  }
}
.banner-layout_silder.swiper .swiper-pagination .swiper-pagination-progressbar-fill {
  background-color: rgb(218, 165, 32);
}
.banner-layout_silder.swiper .autoplay-progress {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: rgb(218, 165, 32);
}
.banner-layout_silder.swiper .autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: rgb(218, 165, 32);
  fill: none;
  stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}
@media only screen and (max-width: 1600px) {
  .banner-layout_silder.swiper {
    max-width: 128rem;
  }
}
@media only screen and (max-width: 1280px) {
  .banner-layout_silder.swiper {
    max-width: 102.4rem;
  }
}
@media only screen and (max-width: 1024px) {
  .banner-layout_silder.swiper {
    max-width: 86.8rem;
  }
}
@media only screen and (max-width: 900px) {
  .banner-layout_silder.swiper {
    max-width: 70rem;
  }
}
@media only screen and (max-width: 768px) {
  .banner-layout_silder.swiper {
    width: 100%;
  }
}

.devise-layout {
  position: relative;
  margin-top: -6rem;
  z-index: 2;
}
.devise-layout_container {
  padding: 0 2rem;
  position: relative;
  max-width: 160rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 3rem;
  align-items: stretch;
  justify-items: center;
}
@media only screen and (max-width: 900px) {
  .devise-layout_container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 700px) {
  .devise-layout_container {
    grid-template-columns: repeat(1, 1fr);
    padding: 0 1rem;
    grid-gap: 2rem;
  }
}
.devise-layout_container--item {
  position: relative;
  background-color: #fff;
  padding: 3rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  border-bottom: 0.4rem solid rgb(0, 100, 0);
}
@media only screen and (max-width: 1280px) {
  .devise-layout_container--item.flex-container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 700px) {
  .devise-layout_container--item.flex-container {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 600px) {
  .devise-layout_container--item.flex-container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.devise-layout_container--item__icon {
  margin-right: 1rem;
}
.devise-layout_container--item__icon .fa {
  font-size: 4rem;
  color: rgb(0, 100, 0);
  background-color: rgba(0, 100, 0, 0.1);
  width: 8rem;
  height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.2rem solid rgba(0, 100, 0, 0.2);
  transition: all 0.3s linear;
  border-radius: 0.5rem;
}
.devise-layout_container--item__content {
  margin-left: 1rem;
}
@media only screen and (max-width: 1280px) {
  .devise-layout_container--item__content {
    margin-left: 0;
    margin-top: 2rem;
  }
}
@media only screen and (max-width: 700px) {
  .devise-layout_container--item__content {
    margin-left: 1rem;
    margin-top: 0;
  }
}
@media only screen and (max-width: 600px) {
  .devise-layout_container--item__content {
    margin-left: 0;
    margin-top: 2rem;
  }
}
.devise-layout_container--item__content h2 {
  font-size: 2.5rem;
  color: #000;
  line-height: 2rem;
  padding-bottom: 1rem;
}
.devise-layout_container--item__content p {
  font-size: 1.6rem;
  color: #555;
}
.devise-layout_container--item:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.2);
}
.devise-layout_container--item:hover .devise-layout_container--item__icon .fa {
  color: #fff;
  background-color: rgb(0, 100, 0);
}
@media only screen and (max-width: 1600px) {
  .devise-layout_container {
    max-width: 128rem;
  }
}
@media only screen and (max-width: 1280px) {
  .devise-layout_container {
    max-width: 102.4rem;
  }
}
@media only screen and (max-width: 1024px) {
  .devise-layout_container {
    max-width: 86.8rem;
  }
}
@media only screen and (max-width: 900px) {
  .devise-layout_container {
    max-width: 70rem;
  }
}
@media only screen and (max-width: 768px) {
  .devise-layout_container {
    width: 100%;
  }
}

.objectif-layout_container {
  padding: 15rem 2rem 15rem 2rem;
  max-width: 160rem;
  margin: auto;
}
.objectif-layout_container--img {
  position: relative;
}
.objectif-layout_container--img::before {
  content: "";
  position: absolute;
  top: -5%;
  left: 10%;
  width: 10rem;
  height: 10rem;
  border: 0.5rem solid rgb(255, 165, 0);
  border-radius: 50%;
  z-index: 1;
  animation: float 3s linear infinite;
}
.objectif-layout_container--img::after {
  content: "";
  position: absolute;
  bottom: -3%;
  right: 13%;
  width: 10rem;
  height: 10rem;
  border: 0.5rem solid rgb(255, 165, 0);
  border-radius: 50%;
  z-index: 0;
  animation: float 3s linear infinite;
}
@keyframes float {
  0% {
    transform: translateY(1rem);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(1rem);
  }
}
.objectif-layout_container--img .first-img {
  position: absolute;
  border-radius: 4rem;
  border-color: rgb(234, 234, 238);
  border-width: 1rem;
  border-style: solid;
  z-index: 2;
  width: 30rem;
  transform: translateY(-6rem);
  transition: all 0.2s linear;
}
.objectif-layout_container--img .first-img:hover {
  transform: translateY(-7rem) scale(1.1);
}
.objectif-layout_container--img .second-img {
  position: relative;
  width: 70%;
  border-radius: 2rem;
  z-index: 1;
  margin-left: 10rem;
  border-color: rgb(234, 234, 238);
  border-width: 1rem;
  border-style: solid;
}
.objectif-layout_container--img__btn {
  z-index: 2;
  position: absolute;
}
.objectif-layout_container--img__btn .btn {
  margin-left: 4rem;
  margin-top: -9.5rem;
  background-color: rgb(255, 165, 0);
  color: #fff;
  font-size: 1.6rem;
  padding: 1rem 3rem;
  border-radius: 3rem;
  transition: all 0.2s linear;
  font-weight: 700;
  border-color: rgb(234, 234, 238);
  border-width: 0.5rem;
  border-style: solid;
}
.objectif-layout_container--img__btn .btn i {
  margin-left: 1rem;
}
.objectif-layout_container--img__btn .btn:hover {
  background-color: rgb(163, 107, 1);
  color: #fff;
}
.objectif-layout_container--description__title {
  color: rgb(0, 100, 0);
  font-size: 4rem;
  font-weight: bold;
  line-height: 2rem;
}
.objectif-layout_container--description__title .line {
  display: inline-block;
  width: 20rem;
  border-bottom: 0.3rem solid rgb(218, 165, 32);
}
@media only screen and (max-width: 600px) {
  .objectif-layout_container--description__title {
    line-height: 5rem;
  }
  .objectif-layout_container--description__title .line {
    width: 10rem;
  }
}
.objectif-layout_container--description__subtitle {
  font-size: 2rem;
  font-weight: 800;
  color: #000;
  padding: 3rem 0 3rem 0;
}
@media only screen and (max-width: 600px) {
  .objectif-layout_container--description__subtitle {
    font-weight: 700;
    padding: 1rem 0 3rem 0;
  }
}
.objectif-layout_container--description__projects .projects-item {
  margin-bottom: 3rem;
}
.objectif-layout_container--description__projects .projects-item__icon .fa {
  height: 6rem;
  width: 6rem;
  font-size: 3rem;
  border: 0.2rem dotted rgb(0, 100, 0);
  border-radius: 50%;
  color: rgb(0, 100, 0);
  transition: all 0.2s linear;
}
.objectif-layout_container--description__projects .projects-item__detail {
  padding: 0 3rem;
}
.objectif-layout_container--description__projects .projects-item__detail--title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #000;
  padding-bottom: 0.5rem;
}
.objectif-layout_container--description__projects .projects-item__detail--description {
  font-size: 1.6rem;
  font-weight: normal;
  color: #555;
  padding: 0;
}
.objectif-layout_container--description__projects .projects-item:hover .projects-item__icon .fa {
  color: #fff;
  background: rgb(0, 100, 0);
}
@media only screen and (max-width: 600px) {
  .objectif-layout_container--description__projects .projects-item.flex-container {
    flex-direction: column;
  }
  .objectif-layout_container--description__projects .projects-item__icon .fa {
    position: absolute;
    margin-top: 0;
  }
  .objectif-layout_container--description__projects .projects-item__detail {
    padding: 0 0rem;
  }
  .objectif-layout_container--description__projects .projects-item__detail--title {
    padding-left: 8rem;
    padding-bottom: 1rem;
  }
}
.objectif-layout_container--description__number {
  background-color: rgb(0, 100, 0);
  border-radius: 3rem;
  padding: 2rem 4rem;
}
.objectif-layout_container--description__number--list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.objectif-layout_container--description__number--list li span {
  color: #fff;
  text-align: center;
}
.objectif-layout_container--description__number--list li span:nth-child(even) {
  font-size: 1.6rem;
}
.objectif-layout_container--description__number--list li span:nth-child(odd) {
  font-size: 4rem;
  color: rgb(255, 165, 0);
  font-weight: bold;
}
@media only screen and (max-width: 1600px) {
  .objectif-layout_container {
    max-width: 128rem;
  }
}
@media only screen and (max-width: 1280px) {
  .objectif-layout_container {
    max-width: 102.4rem;
  }
}
@media only screen and (max-width: 1024px) {
  .objectif-layout_container {
    max-width: 86.8rem;
    padding: 10rem 2rem 10rem 2rem;
  }
  .objectif-layout_container.flex-container {
    flex-direction: column;
  }
  .objectif-layout_container--img {
    margin-bottom: 5rem;
  }
  .objectif-layout_container--img .second-img {
    transform: translateX(5rem);
  }
}
@media only screen and (max-width: 900px) {
  .objectif-layout_container {
    max-width: 70rem;
  }
}
@media only screen and (max-width: 768px) {
  .objectif-layout_container {
    width: 100%;
    padding: 5rem 2rem 5rem 2rem;
  }
}
@media only screen and (max-width: 600px) {
  .objectif-layout_container {
    padding: 5rem 2rem 2rem 2rem;
  }
  .objectif-layout_container--img {
    margin-bottom: 5rem;
  }
  .objectif-layout_container--img .first-img {
    width: 20rem;
    border-radius: 2rem;
    transform: translateY(-3.5rem);
    display: none;
  }
  .objectif-layout_container--img .second-img {
    width: 100%;
    margin-left: 0;
    transform: translateX(0);
  }
  .objectif-layout_container--img__btn {
    z-index: 2;
    position: absolute;
  }
  .objectif-layout_container--img__btn .btn {
    margin-left: 2rem;
    margin-top: 0;
    transform: translateY(2rem);
    font-size: 1.4rem;
    padding: 1rem 1.5rem;
  }
  .objectif-layout_container--img__btn .btn i {
    margin-left: 0.5rem;
  }
  .objectif-layout_container--description__number {
    padding: 1rem 0;
    background-color: rgb(234, 234, 238);
  }
  .objectif-layout_container--description__number--list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem;
  }
  .objectif-layout_container--description__number--list li {
    padding: 1rem;
    background-color: rgb(0, 100, 0);
    border-radius: 1rem;
  }
}

.team-layout {
  padding: 5rem 0;
  background-color: rgb(0, 100, 0);
}
.team-layout #particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: 0;
}
.team-layout__container {
  position: relative;
  max-width: 160rem;
  margin: 0 auto;
  padding: 2rem;
  z-index: 1;
}
.team-layout__container--title {
  text-align: center;
  margin: 5rem auto;
  color: #fff;
  font-size: 4rem;
  line-height: 3rem;
}
.team-layout__container--title .line {
  display: inline-block;
  width: 20rem;
  border-bottom: 0.3rem solid rgb(218, 165, 32);
}
@media only screen and (max-width: 1024px) {
  .team-layout__container--description.flex-container {
    align-items: flex-start !important;
  }
}
@media only screen and (max-width: 900px) {
  .team-layout__container--description.flex-container {
    flex-direction: column;
    align-items: center !important;
  }
}
.team-layout__container--description_img-silder {
  width: 44rem;
  height: 52rem;
}
@media only screen and (max-width: 1280px) {
  .team-layout__container--description_img-silder {
    width: 35rem;
    height: 45rem;
  }
}
.team-layout__container--description_img-silder .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1.8rem;
  font-size: 2.2rem;
  font-weight: bold;
  color: #fff;
}
.team-layout__container--description_img-silder .swiper-wrapper .swiper-slide__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  border: 0.5rem solid rgb(250, 189, 34) !important;
  border-radius: 2rem !important;
}
.team-layout__container--description_img-silder .swiper-wrapper .swiper-slide.swiper-slide-visible .swiper-slide__img {
  border: 0.5rem solid #fff !important;
  border-radius: 2rem !important;
}
.team-layout__container--description_img-silder .swiper-wrapper .swiper-slide__info {
  position: absolute;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
  padding: 1rem 2rem;
  bottom: 1.5rem;
  width: 90%;
}
.team-layout__container--description_img-silder .swiper-wrapper .swiper-slide__info--name {
  font-size: 1.6rem;
  color: rgb(0, 100, 0);
  line-height: normal;
}
.team-layout__container--description_img-silder .swiper-wrapper .swiper-slide__info--post {
  font-size: 1.6rem;
  color: #000;
  line-height: normal;
}
.team-layout__container--description_img-silder .swiper-wrapper .swiper-slide:nth-child(odd) {
  background-color: rgb(0, 0, 0);
}
.team-layout__container--description_img-silder .swiper-wrapper .swiper-slide:nth-child(even) {
  background-color: rgb(255, 255, 255);
}
.team-layout__container--description_img-silder .swiper-button-next, .team-layout__container--description_img-silder .swiper-button-prev {
  color: #333;
  background: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.team-layout__container--description_img-silder .swiper-button-next::after, .team-layout__container--description_img-silder .swiper-button-next::after, .team-layout__container--description_img-silder .swiper-button-prev::after, .team-layout__container--description_img-silder .swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}
.team-layout__container--description_img-silder .swiper-pagination {
  bottom: 10rem;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}
@media only screen and (max-width: 1280px) {
  .team-layout__container--description_detail {
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 900px) {
  .team-layout__container--description_detail {
    margin-top: 4rem;
    padding: 0;
  }
}
.team-layout__container--description_detail-title {
  font-size: 2.5rem;
  padding-bottom: 2rem;
  color: #fff;
  line-height: 2rem;
}
.team-layout__container--description_detail-title .line {
  display: inline-block;
  width: 15rem;
  border-bottom: 0.3rem solid rgb(218, 165, 32);
}
@media only screen and (max-width: 1280px) {
  .team-layout__container--description_detail-title {
    font-size: 1.8rem;
  }
}
.team-layout__container--description_detail-subtitle {
  font-size: 4rem;
  padding-bottom: 1rem;
  color: #fff;
  line-height: 5rem;
}
@media only screen and (max-width: 1280px) {
  .team-layout__container--description_detail-subtitle {
    font-size: 3rem;
    line-height: 4rem;
  }
}
@media only screen and (max-width: 700px) {
  .team-layout__container--description_detail-subtitle {
    font-size: 2.6rem;
  }
}
.team-layout__container--description_detail p {
  font-size: 1.6rem;
  color: #fff;
  padding: 1rem 0;
  font-weight: normal;
}
.team-layout__container--description_detail-btn .btn {
  display: inline-block;
  margin-top: 3rem;
  background-color: #fff;
  color: rgb(0, 100, 0);
  font-size: 1.6rem;
  padding: 1rem 3rem;
  border-radius: 3rem;
  transition: all 0.2s linear;
  font-weight: 700;
  margin-right: 1rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.team-layout__container--description_detail-btn .btn i {
  margin-left: 0.5rem;
  transition: all 0.2s linear;
}
.team-layout__container--description_detail-btn .btn:hover {
  background-color: rgb(255, 165, 0);
  color: #000;
}
.team-layout__container--description_detail-btn .btn:hover i {
  margin-left: 1rem;
}
@media only screen and (max-width: 1280px) {
  .team-layout__container--description_detail-btn .btn {
    padding: 1rem 2rem;
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 450px) {
  .team-layout__container--description_detail-btn .btn {
    font-size: 1.6rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    align-items: center !important;
  }
}
@media only screen and (max-width: 450px) {
  .team-layout__container--description_detail-btn.flex-container {
    flex-direction: column;
  }
}
@media only screen and (max-width: 1600px) {
  .team-layout__container {
    max-width: 128rem;
  }
}
@media only screen and (max-width: 1280px) {
  .team-layout__container {
    max-width: 102.4rem;
  }
}
@media only screen and (max-width: 1024px) {
  .team-layout__container {
    max-width: 86.8rem;
    padding: 1rem 1rem 1rem 1.5rem;
  }
}
@media only screen and (max-width: 900px) {
  .team-layout__container {
    max-width: 70rem;
  }
}

.blog-layout {
  padding: 5rem;
  padding: 10rem 2rem;
  background: #eee;
}
@media only screen and (max-width: 1024px) {
  .blog-layout {
    padding: 5rem 2rem;
  }
}
@media only screen and (max-width: 600px) {
  .blog-layout {
    padding: 3rem 1rem 0 1rem;
  }
}
.blog-layout_container {
  max-width: 128rem;
  margin: auto;
}
.blog-layout_container--title {
  font-size: 2.5rem;
  padding-bottom: 2rem;
  color: rgb(0, 100, 0);
  line-height: 2rem;
  text-align: center;
}
.blog-layout_container--title .line {
  display: inline-block;
  width: 20rem;
  border-bottom: 0.3rem solid rgb(218, 165, 32);
}
@media only screen and (max-width: 600px) {
  .blog-layout_container--title {
    font-size: 2rem;
  }
}
.blog-layout_container--subtitle {
  font-size: 4rem;
  padding-bottom: 5rem;
  color: #000;
  line-height: 3rem;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .blog-layout_container--subtitle {
    font-size: 4rem;
    max-width: 90rem;
    line-height: 5rem;
  }
}
@media only screen and (max-width: 600px) {
  .blog-layout_container--subtitle {
    font-size: 3rem;
    line-height: 4rem;
  }
}
.blog-layout_container--slider .swiper {
  display: flex;
  align-items: stretch;
}
.blog-layout_container--slider .swiper-wrapper {
  padding: 0 0 4rem 0 !important;
}
.blog-layout_container--slider .swiper-wrapper .swiper-slide {
  height: auto;
  font-size: 18px;
  position: relative;
  background-color: #fff;
  cursor: pointer;
  border-radius: 1rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}
.blog-layout_container--slider .swiper-wrapper .swiper-slide .slide-content__banner {
  position: relative;
  width: 100%;
  height: 22rem;
  overflow: hidden;
  border-radius: 1rem;
}
.blog-layout_container--slider .swiper-wrapper .swiper-slide .slide-content__banner--img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 1rem;
  transition: all 0.3s linear;
}
.blog-layout_container--slider .swiper-wrapper .swiper-slide .slide-content__banner::before {
  position: absolute;
  content: "";
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transform: scale(0);
  transition: all 0.3s linear;
}
.blog-layout_container--slider .swiper-wrapper .swiper-slide .slide-content:hover .slide-content__banner--img {
  transform: scale(1.3);
}
.blog-layout_container--slider .swiper-wrapper .swiper-slide .slide-content:hover .slide-content__banner::before {
  transform: scale(1.1);
}
.blog-layout_container--slider .swiper-wrapper .swiper-slide .slide-content__info {
  padding: 2rem;
}
.blog-layout_container--slider .swiper-wrapper .swiper-slide .slide-content__info--title {
  font-weight: 800;
  font-size: 2rem;
  color: #000;
  line-height: normal;
  transition: all 0.2s linear;
}
.blog-layout_container--slider .swiper-wrapper .swiper-slide .slide-content__info--title:hover {
  color: rgb(0, 100, 0);
}
.blog-layout_container--slider .swiper-wrapper .swiper-slide .slide-content__info--description {
  padding: 1rem 0;
  font-weight: normal;
  font-size: 1.6rem;
  width: 100%;
  line-height: normal;
}
.blog-layout_container--slider .swiper-wrapper .swiper-slide .slide-content__info--tag_date, .blog-layout_container--slider .swiper-wrapper .swiper-slide .slide-content__info--tag_category {
  margin-right: 1rem;
}
.blog-layout_container--slider .swiper-wrapper .swiper-slide .slide-content__info--tag_date i, .blog-layout_container--slider .swiper-wrapper .swiper-slide .slide-content__info--tag_category i {
  margin-right: 0.5rem;
  color: rgb(255, 165, 0);
}
.blog-layout_container--slider .swiper-wrapper .swiper-slide .slide-content__info--tag_date span, .blog-layout_container--slider .swiper-wrapper .swiper-slide .slide-content__info--tag_category span {
  font-size: 1.4rem;
}
.blog-layout_container--slider .swiper-wrapper .swiper-slide .slide-content__info--btn {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding-top: 1rem;
  margin-top: 2rem;
  border-top: 0.1rem solid #eee;
}
.blog-layout_container--slider .swiper-wrapper .swiper-slide .slide-content__info--btn_link {
  position: relative;
  background-color: rgb(255, 165, 0);
  color: #fff;
  border-radius: 30rem;
  transition: all 0.2s linear;
  overflow: hidden;
  font-weight: 700;
  font-size: 1.6rem;
  padding: 0.5rem 2rem;
  border-color: rgb(234, 234, 238);
  border-width: 0.5rem;
  border-style: solid;
}
.blog-layout_container--slider .swiper-wrapper .swiper-slide .slide-content__info--btn_link span {
  display: inline-block;
  color: #fff;
}
.blog-layout_container--slider .swiper-wrapper .swiper-slide .slide-content__info--btn_link .fa {
  font-size: 2rem;
  color: #fff;
  border-radius: 50%;
  padding-right: 1rem;
}
.blog-layout_container--slider .swiper-wrapper .swiper-slide .slide-content__info--btn_link:hover {
  background-color: rgb(163, 107, 1);
}
.blog-layout_container--slider .swiper-button-next, .blog-layout_container--slider .swiper-button-prev {
  color: #fff;
  background: rgb(255, 165, 0);
  font-weight: 700;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.blog-layout_container--slider .swiper-button-next::after, .blog-layout_container--slider .swiper-button-next::after, .blog-layout_container--slider .swiper-button-prev::after, .blog-layout_container--slider .swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}
.blog-layout_container--slider .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  color: #000;
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.blog-layout_container--slider .swiper-pagination-bullet-active {
  color: #fff;
  background: rgb(255, 165, 0);
}

.testimony-layout {
  padding: 8rem 2rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}
@media only screen and (max-width: 600px) {
  .testimony-layout {
    padding: 4rem 2rem 2rem 2rem;
  }
}
.testimony-layout_container {
  max-width: 128rem;
  margin: auto;
}
.testimony-layout_container--title {
  font-size: 4rem;
  padding-bottom: 3rem;
  color: white;
  line-height: 3rem;
}
.testimony-layout_container--title .line {
  display: inline-block;
  width: 20rem;
  border-bottom: 0.3rem solid rgb(218, 165, 32);
}
@media only screen and (max-width: 600px) {
  .testimony-layout_container--title {
    font-size: 3rem;
    line-height: 4rem;
  }
  .testimony-layout_container--title .line {
    width: 15rem;
  }
}
.testimony-layout_container--slider .swiper {
  display: flex;
  align-items: stretch;
}
.testimony-layout_container--slider .swiper-wrapper .swiper-slide {
  height: auto;
  font-size: 18px;
  position: relative;
}
.testimony-layout_container--slider .swiper-wrapper .swiper-slide .slide-content__detail {
  position: relative;
  background-color: #fff;
  cursor: pointer;
}
.testimony-layout_container--slider .swiper-wrapper .swiper-slide .slide-content__detail p {
  padding: 6rem 2rem;
  text-align: center;
  font-size: 1.6rem;
  height: 100%;
  width: 100%;
  color: #000;
}
.testimony-layout_container--slider .swiper-wrapper .swiper-slide .slide-content__detail::before {
  content: "\f10e";
  position: absolute;
  font-size: 10rem;
  top: 6%;
  left: 36%;
  z-index: 0;
  opacity: 0.3;
}
.testimony-layout_container--slider .swiper-wrapper .swiper-slide .slide-content__detail::after {
  content: "";
  position: absolute;
  bottom: -2.8rem;
  right: 47%;
  border-color: white transparent transparent transparent;
  border-width: 15px;
  border-style: solid;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}
.testimony-layout_container--slider .swiper-wrapper .swiper-slide .slide-content__info {
  margin: 2rem 0;
}
.testimony-layout_container--slider .swiper-wrapper .swiper-slide .slide-content__info--img {
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  margin-bottom: 1rem;
}
.testimony-layout_container--slider .swiper-wrapper .swiper-slide .slide-content__info--name {
  font-weight: 800;
  font-size: 1.6rem;
  color: white;
}
.testimony-layout_container--slider .swiper-wrapper .swiper-slide .slide-content__info--post {
  font-size: 1.4rem;
  color: white;
}
.testimony-layout_container--slider .swiper .swiper-button-next, .testimony-layout_container--slider .swiper .swiper-button-prev {
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
  font-weight: 700;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.testimony-layout_container--slider .swiper .swiper-button-next::after, .testimony-layout_container--slider .swiper .swiper-button-next::after, .testimony-layout_container--slider .swiper .swiper-button-prev::after, .testimony-layout_container--slider .swiper .swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

.patner-layout {
  background: #fff;
}
.patner-layout_container {
  max-width: 128rem;
  margin: auto;
  padding: 4rem 0;
}
.patner-layout_container--slider .swiper .swiper-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}
.patner-layout_container--slider .swiper .swiper-wrapper .swiper-slide__img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}
.patner-layout_container--slider .swiper .swiper-wrapper .swiper-slide__img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
.patner-layout_container--slider .swiper .swiper-button-next, .patner-layout_container--slider .swiper .swiper-button-prev {
  color: #333;
  background: rgba(255, 255, 255, 0.8);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.patner-layout_container--slider .swiper .swiper-button-next::after, .patner-layout_container--slider .swiper .swiper-button-next::after, .patner-layout_container--slider .swiper .swiper-button-prev::after, .patner-layout_container--slider .swiper .swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}

.patner-formular-layout__container {
  max-width: 160rem;
  margin: auto;
  padding: 8rem 2rem;
}
@media only screen and (max-width: 1024px) {
  .patner-formular-layout__container.flex-container {
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 600px) {
  .patner-formular-layout__container {
    padding: 2rem 1rem 1rem 1rem !important;
  }
}
.patner-formular-layout__container--left {
  padding: 0 4rem 0 0;
}
@media only screen and (max-width: 600px) {
  .patner-formular-layout__container--left {
    padding: 0;
  }
}
.patner-formular-layout__container--left_inputgroup {
  padding: 0 0 1.5rem 0;
}
@media only screen and (max-width: 600px) {
  .patner-formular-layout__container--left_inputgroup {
    padding: 0;
  }
  .patner-formular-layout__container--left_inputgroup.flex-container {
    flex-wrap: wrap;
  }
}
.patner-formular-layout__container--left_inputgroup:last-child {
  padding: 0;
}
.patner-formular-layout__container--left_inputgroup .input {
  margin: 0 1rem;
}
@media only screen and (max-width: 600px) {
  .patner-formular-layout__container--left_inputgroup .input {
    margin: 0 0 2rem 0;
    flex: 100%;
    padding: 0 1rem;
  }
}
.patner-formular-layout__container--left_inputgroup .input label {
  font-size: 1.6rem;
  color: #000;
  font-weight: 500;
  padding-bottom: 0.5rem;
}
.patner-formular-layout__container--left_inputgroup .input textarea, .patner-formular-layout__container--left_inputgroup .input input {
  width: 100%;
  height: 4.6rem;
  border: 0.1rem solid #eee;
  padding: 0 1rem;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.05);
}
.patner-formular-layout__container--left_inputgroup .input textarea::-moz-placeholder, .patner-formular-layout__container--left_inputgroup .input input::-moz-placeholder {
  font-size: 1.4rem;
}
.patner-formular-layout__container--left_inputgroup .input textarea::placeholder, .patner-formular-layout__container--left_inputgroup .input input::placeholder {
  font-size: 1.4rem;
}
@media only screen and (max-width: 600px) {
  .patner-formular-layout__container--left_inputgroup .input textarea, .patner-formular-layout__container--left_inputgroup .input input {
    width: 100%;
  }
}
.patner-formular-layout__container--left_inputgroup .input textarea {
  resize: none;
  height: 20rem;
  padding: 2rem;
}
.patner-formular-layout__container--left_inputgroup .button {
  margin: 1rem;
}
@media only screen and (max-width: 600px) {
  .patner-formular-layout__container--left_inputgroup .button {
    margin: 1rem 0 !important;
  }
}
.patner-formular-layout__container--left_inputgroup .button button {
  background-color: rgb(255, 165, 0);
  color: #fff;
  font-size: 1.6rem;
  padding: 1rem 3rem;
  border-radius: 3rem;
  transition: all 0.2s linear;
  font-weight: 700;
  border-color: rgb(213, 213, 215);
  border-width: 0.5rem;
  border-style: solid;
}
.patner-formular-layout__container--left_inputgroup .button button i {
  margin-right: 0.5rem;
}
.patner-formular-layout__container--left_inputgroup .button button:hover {
  background-color: rgb(163, 107, 1);
  color: #fff;
}
@media only screen and (max-width: 600px) {
  .patner-formular-layout__container--left_inputgroup .button button {
    display: flex;
    flex-direction: row;
    justify-content: center !important;
    align-items: center !important;
    width: 100%;
    text-align: center;
  }
}
.patner-formular-layout__container--right {
  padding: 4rem;
  background-image: linear-gradient(rgba(0, 100, 0, 0.9), rgba(0, 100, 0, 0.9)), url(../images/objectif-1.jpg);
  border-radius: 3rem;
}
@media only screen and (max-width: 1024px) {
  .patner-formular-layout__container--right {
    padding: 3rem 1.5rem;
    margin: 0 0 4rem 0 !important;
  }
}
@media only screen and (max-width: 600px) {
  .patner-formular-layout__container--right {
    border-radius: 1rem;
    margin: 2rem 0 4rem 0;
  }
}
.patner-formular-layout__container--right_title {
  font-size: 2.5rem;
  padding-bottom: 2rem;
  color: #fff;
  line-height: 2rem;
}
.patner-formular-layout__container--right_title .line {
  display: inline-block;
  width: 15rem;
  border-bottom: 0.3rem solid rgb(218, 165, 32);
}
@media only screen and (max-width: 600px) {
  .patner-formular-layout__container--right_title {
    font-size: 2rem;
  }
}
.patner-formular-layout__container--right_subtitle {
  font-size: 4rem;
  padding-bottom: 1rem;
  color: #fff;
  line-height: 5rem;
  max-width: 70rem;
}
@media only screen and (max-width: 600px) {
  .patner-formular-layout__container--right_subtitle {
    font-size: 3rem;
    line-height: 3.5rem;
  }
}
.patner-formular-layout__container--right_description {
  font-size: 1.6rem;
  color: #fff;
  max-width: 70rem;
  padding-bottom: 2rem;
}
.patner-formular-layout__container--right_list li {
  position: relative;
  font-size: 1.6rem;
  color: #fff;
  padding: 0.3rem 2rem;
}
.patner-formular-layout__container--right_list li::before {
  position: absolute;
  content: "\f058";
  left: 0;
  top: 0.3rem;
  font-size: 1.6rem;
  color: #fff;
}
@media only screen and (max-width: 1600px) {
  .patner-formular-layout__container {
    max-width: 128rem;
  }
}
@media only screen and (max-width: 1280px) {
  .patner-formular-layout__container {
    max-width: 102.4rem;
  }
}
@media only screen and (max-width: 1024px) {
  .patner-formular-layout__container {
    max-width: 86.8rem;
    padding: 1rem 1rem 1rem 1.5rem;
  }
}
@media only screen and (max-width: 900px) {
  .patner-formular-layout__container {
    max-width: 70rem;
  }
}

.banner-layout.about-us-page {
  top: 0;
  z-index: 1;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: linear-gradient(to bottom, rgb(1, 36, 1), rgba(1, 36, 1, 0.9), rgba(1, 36, 1, 0.8), rgba(1, 36, 1, 0.8)), url("../images/banner-1.jpg");
}
.banner-layout__container {
  max-width: 160rem;
  margin: auto;
  padding: 5rem 2rem !important;
}
.banner-layout__container--title {
  text-align: center;
  color: #fff;
  font-size: 4rem;
  line-height: 3rem;
}
.banner-layout__container--title .line {
  display: inline-block;
  width: 20rem;
  border-bottom: 0.3rem solid rgb(218, 165, 32);
}
@media only screen and (max-width: 900px) {
  .banner-layout__container--title {
    font-size: 2.5rem;
    line-height: 3rem;
  }
}
.banner-layout__container--description {
  font-size: 1.6rem;
  color: #fff;
  max-width: 80rem;
  text-align: center;
  padding: 2rem 0;
}
@media only screen and (max-width: 1600px) {
  .banner-layout__container {
    max-width: 128rem;
  }
}
@media only screen and (max-width: 1280px) {
  .banner-layout__container {
    max-width: 102.4rem;
  }
}
@media only screen and (max-width: 1024px) {
  .banner-layout__container {
    max-width: 86.8rem;
    padding: 1rem 1rem 1rem 1.5rem;
  }
}
@media only screen and (max-width: 900px) {
  .banner-layout__container {
    max-width: 70rem;
  }
}

.about-us-layout {
  background-color: #fff;
}
.about-us-layout__container {
  max-width: 160rem;
  margin: auto;
  padding: 8rem 2rem !important;
}
@media only screen and (max-width: 1280px) {
  .about-us-layout__container.flex-container {
    flex-direction: column-reverse;
    justify-content: flex-start !important;
    align-items: center !important;
  }
}
@media only screen and (max-width: 600px) {
  .about-us-layout__container {
    padding: 3rem 2rem 0 2rem !important;
  }
}
.about-us-layout__container--left {
  padding: 4rem 5rem;
}
@media only screen and (max-width: 600px) {
  .about-us-layout__container--left {
    padding: 4rem 0;
  }
}
.about-us-layout__container--left_tilte {
  color: rgb(0, 100, 0);
  font-size: 4rem;
  line-height: 3rem;
  font-weight: 700;
}
.about-us-layout__container--left_tilte .line {
  display: inline-block;
  width: 20rem;
  border-bottom: 0.3rem solid rgb(218, 165, 32);
}
.about-us-layout__container--left_detail {
  font-size: 1.6rem;
  padding: 2rem 5rem 0 0;
  color: #000;
  text-align: justify;
}
@media only screen and (max-width: 600px) {
  .about-us-layout__container--left_detail {
    padding: 2rem 1rem 0 0;
  }
}
.about-us-layout__container--left_subtitle {
  color: rgb(0, 100, 0);
  font-size: 2rem;
  padding: 2rem 0;
  line-height: 3rem;
  font-weight: 700;
}
.about-us-layout__container--left_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
}
@media only screen and (max-width: 600px) {
  .about-us-layout__container--left_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 450px) {
  .about-us-layout__container--left_list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.about-us-layout__container--left_list li {
  font-size: 1.6rem;
  color: #000;
  border-radius: 1rem;
  padding: 0.5rem 1rem;
  border: 0.1rem solid #eee;
  background: #eee;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s linear;
}
.about-us-layout__container--left_list li:hover {
  background-color: rgb(255, 165, 0);
  font-weight: 700;
  color: #fff;
}
.about-us-layout__container--right {
  position: relative;
  padding: 4rem 5rem;
}
@media only screen and (max-width: 900px) {
  .about-us-layout__container--right {
    margin-top: 5rem;
  }
}
@media only screen and (max-width: 600px) {
  .about-us-layout__container--right {
    margin-top: 0;
  }
}
@media only screen and (max-width: 500px) {
  .about-us-layout__container--right {
    padding: 0 0;
  }
}
.about-us-layout__container--right_img {
  position: relative;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);
  border: 1rem solid #eee;
  border-radius: 2rem;
  z-index: 1;
}
@media only screen and (max-width: 1600px) {
  .about-us-layout__container--right_img {
    width: 100%;
  }
}
.about-us-layout__container--right::before {
  z-index: 0;
  position: absolute;
  content: "";
  top: -2rem;
  left: 0;
  height: 50rem;
  width: 20rem;
  border-radius: 10rem 10rem 0 10rem;
  background-color: rgb(0, 100, 0);
  animation: floatBefore 3s linear infinite;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 1600px) {
  .about-us-layout__container--right::before {
    height: 40rem;
  }
}
@media only screen and (max-width: 1280px) {
  .about-us-layout__container--right::before {
    height: 50rem;
  }
}
@media only screen and (max-width: 900px) {
  .about-us-layout__container--right::before {
    height: 40rem;
    width: 15rem;
  }
}
@media only screen and (max-width: 600px) {
  .about-us-layout__container--right::before {
    height: 30rem;
    width: 10rem;
    left: 2rem;
    top: 0rem;
  }
}
@media only screen and (max-width: 500px) {
  .about-us-layout__container--right::before {
    height: 20rem;
    width: 8rem;
  }
}
@media only screen and (max-width: 500px) {
  .about-us-layout__container--right::before {
    height: 20rem;
    width: 8rem;
    left: -1rem;
    top: 2rem;
  }
}
.about-us-layout__container--right::after {
  position: absolute;
  z-index: 0;
  content: "";
  bottom: -2rem;
  right: 0;
  height: 50rem;
  width: 20rem;
  border-radius: 0 10rem 10rem 10rem;
  background-color: rgb(255, 165, 0);
  animation: floatAfter 3s linear infinite;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 1600px) {
  .about-us-layout__container--right::after {
    height: 40rem;
    bottom: 25%;
  }
}
@media only screen and (max-width: 1280px) {
  .about-us-layout__container--right::after {
    height: 50rem;
    bottom: -2rem;
  }
}
@media only screen and (max-width: 900px) {
  .about-us-layout__container--right::after {
    height: 40rem;
    width: 15rem;
  }
}
@media only screen and (max-width: 600px) {
  .about-us-layout__container--right::after {
    height: 30rem;
    width: 10rem;
    right: 2rem;
    bottom: 0rem;
  }
}
@media only screen and (max-width: 500px) {
  .about-us-layout__container--right::after {
    height: 20rem;
    width: 8rem;
    right: -1rem;
    bottom: 2rem;
  }
}
@keyframes floatBefore {
  0% {
    transform: translateY(2rem);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(2rem);
  }
}
@keyframes floatAfter {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(2rem);
  }
  100% {
    transform: translateY(0);
  }
}
@media only screen and (max-width: 1600px) {
  .about-us-layout__container {
    max-width: 128rem;
  }
}
@media only screen and (max-width: 1280px) {
  .about-us-layout__container {
    max-width: 102.4rem;
  }
}
@media only screen and (max-width: 1024px) {
  .about-us-layout__container {
    max-width: 86.8rem;
    padding: 1rem 1rem 1rem 1.5rem;
  }
}
@media only screen and (max-width: 900px) {
  .about-us-layout__container {
    max-width: 70rem;
  }
}

.statistics-layout {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: linear-gradient(to bottom, rgba(218, 165, 32, 0.9), rgba(218, 165, 32, 0.9)), url("../images/banner-1.jpg");
}
.statistics-layout__container {
  max-width: 128rem;
  margin: auto;
  padding: 8rem 2rem !important;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 3rem;
}
@media only screen and (max-width: 1024px) {
  .statistics-layout__container {
    grid-template-columns: repeat(2, 1fr);
    padding: 5rem 3rem !important;
  }
}
.statistics-layout__container--block {
  position: relative;
  background-color: #fff;
  border-radius: 1rem;
  padding: 4rem;
  cursor: pointer;
  transition: all 0.2s linear;
}
@media only screen and (max-width: 500px) {
  .statistics-layout__container--block {
    padding: 2rem 3rem 3rem 3rem !important;
  }
}
@media only screen and (max-width: 400px) {
  .statistics-layout__container--block {
    padding: 2rem 2rem 2rem 2rem !important;
  }
}
.statistics-layout__container--block .fa {
  font-size: 5rem;
  color: rgb(0, 100, 0);
}
@media only screen and (max-width: 500px) {
  .statistics-layout__container--block .fa {
    font-size: 4rem;
    display: none;
  }
}
.statistics-layout__container--block_number {
  font-size: 5rem;
  color: #000;
  font-weight: 700;
}
@media only screen and (max-width: 500px) {
  .statistics-layout__container--block_number {
    font-size: 4rem;
  }
}
@media only screen and (max-width: 400px) {
  .statistics-layout__container--block_number {
    font-size: 3.5rem;
  }
}
.statistics-layout__container--block_label {
  font-size: 1.8rem;
  font-weight: 600;
  color: #000;
  text-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
  text-align: center;
}
@media only screen and (max-width: 500px) {
  .statistics-layout__container--block_label {
    font-size: 1.6rem;
    line-height: 2rem !important;
  }
}
@media only screen and (max-width: 400px) {
  .statistics-layout__container--block_label {
    font-size: 1.4rem;
  }
}
.statistics-layout__container--block::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 25%;
  height: 25%;
  border-top: 0.5rem solid rgb(2, 180, 2);
  border-left: 0.5rem solid rgb(2, 180, 2);
  border-start-start-radius: 1rem;
  transition: all 0.2s linear;
}
.statistics-layout__container--block::after {
  content: "";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 25%;
  height: 25%;
  border-bottom: 0.5rem solid rgb(2, 180, 2);
  border-right: 0.5rem solid rgb(2, 180, 2);
  border-end-end-radius: 1rem;
  transition: all 0.2s linear;
}
.statistics-layout__container--block:hover {
  background-color: #fff;
  transform: translateY(-0.5rem) scale(1.05);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);
}
.statistics-layout__container--block:hover::before {
  left: 0;
  top: 0;
}
.statistics-layout__container--block:hover::after {
  right: 0;
  bottom: 0;
}
@media only screen and (max-width: 400px) {
  .statistics-layout__container--block::before {
    display: none;
  }
  .statistics-layout__container--block::after {
    display: none;
  }
}
@media only screen and (max-width: 1600px) {
  .statistics-layout__container {
    max-width: 128rem;
  }
}
@media only screen and (max-width: 1280px) {
  .statistics-layout__container {
    max-width: 102.4rem;
  }
}
@media only screen and (max-width: 1024px) {
  .statistics-layout__container {
    max-width: 86.8rem;
    padding: 1rem 1rem 1rem 1.5rem;
  }
}
@media only screen and (max-width: 900px) {
  .statistics-layout__container {
    max-width: 70rem;
  }
}

.action-layout__container {
  max-width: 160rem;
  margin: auto;
  padding: 8rem 2rem !important;
}
@media only screen and (max-width: 600px) {
  .action-layout__container {
    padding: 5rem 2rem 2rem 2rem !important;
  }
}
.action-layout__container--title {
  text-align: center;
  color: rgb(0, 100, 0);
  font-size: 4rem;
  line-height: 3rem;
  font-weight: 700;
}
.action-layout__container--title .line {
  display: inline-block;
  width: 20rem;
  border-bottom: 0.3rem solid rgb(218, 165, 32);
}
.action-layout__container--description {
  font-size: 1.6rem;
  color: #000;
  max-width: 80rem;
  margin: auto;
  text-align: center;
  padding: 2rem 0;
}
.action-layout__container--list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 3rem;
}
@media only screen and (max-width: 1280px) {
  .action-layout__container--list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 1024px) {
  .action-layout__container--list {
    grid-gap: 2rem;
  }
}
@media only screen and (max-width: 900px) {
  .action-layout__container--list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 600px) {
  .action-layout__container--list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.action-layout__container--list_item {
  position: relative;
  background: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.06);
  cursor: pointer;
  border: 0.1rem solid #eee;
  transition: all 0.2s linear;
}
.action-layout__container--list_item .fa-tags {
  width: 3.8rem;
  height: 3.8rem;
  background: rgb(0, 100, 0);
  border-radius: 50%;
  color: #fff;
  font-size: 1.8rem;
  outline: 0.5rem solid rgba(0, 100, 0, 0.2);
  outline-offset: 0rem;
}
.action-layout__container--list_item-title {
  font-size: 1.8rem;
  padding: 2rem 0 0.5rem 0;
  font-weight: 500;
  color: #000;
  line-height: 2.5rem;
}
.action-layout__container--list_item-detail {
  font-size: 1.4rem;
}
.action-layout__container--list_item-link {
  display: inline-block;
  color: rgb(0, 100, 0) !important;
  padding-top: 1rem;
}
.action-layout__container--list_item-link .fa {
  color: rgb(0, 100, 0);
}
.action-layout__container--list_item::before {
  position: absolute;
  width: 0;
  height: 100%;
  content: "";
  bottom: -0.1rem;
  left: 50%;
  border-bottom: 0.3rem solid rgba(0, 100, 0, 0.6);
  transition: all 0.2s linear;
  border-radius: 0 0.5rem 0.5rem 0;
}
.action-layout__container--list_item::after {
  position: absolute;
  width: 0;
  height: 100%;
  content: "";
  bottom: -0.1rem;
  right: 50%;
  border-bottom: 0.3rem solid rgba(0, 100, 0, 0.6);
  transition: all 0.2s linear;
  border-radius: 0.5rem 0 0 0.5rem;
}
.action-layout__container--list_item:hover {
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
  transform: scale(1.03) translateY(-0.6rem);
}
.action-layout__container--list_item:hover::after, .action-layout__container--list_item:hover::before {
  width: 50%;
}
.action-layout__container--list_item.last .action-layout__container--list_item-detail {
  text-align: center;
  padding-bottom: 1rem;
  color: #000;
}
.action-layout__container--list_item.last:hover {
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  transform: unset;
}
.action-layout__container--list_item-btn {
  position: relative;
  background-color: rgb(255, 165, 0);
  color: #fff;
  border-radius: 30rem;
  transition: all 0.2s linear;
  overflow: hidden;
  font-weight: 700;
  font-size: 1.6rem;
  padding: 1rem 2rem;
  border-color: rgb(234, 234, 238);
  border-width: 0.5rem;
  border-style: solid;
}
.action-layout__container--list_item-btn span {
  display: inline-block;
  color: #fff;
}
.action-layout__container--list_item-btn .fa {
  font-size: 2rem;
  color: #fff;
  border-radius: 50%;
  padding-right: 1rem;
}
.action-layout__container--list_item-btn:hover {
  background-color: rgb(163, 107, 1);
}
@media only screen and (max-width: 1280px) {
  .action-layout__container--list_item-btn {
    font-size: 1.4rem !important;
  }
}
@media only screen and (max-width: 1600px) {
  .action-layout__container {
    max-width: 128rem;
  }
}
@media only screen and (max-width: 1280px) {
  .action-layout__container {
    max-width: 102.4rem;
  }
}
@media only screen and (max-width: 1024px) {
  .action-layout__container {
    max-width: 86.8rem;
    padding: 1rem 1rem 1rem 1.5rem;
  }
}
@media only screen and (max-width: 900px) {
  .action-layout__container {
    max-width: 70rem;
  }
}

.company-team-layout {
  background-image: linear-gradient(rgba(0, 100, 0, 0.9), rgba(0, 100, 0, 0.9)), url("../images/background/bg-1.jpeg");
}
.company-team-layout__container {
  max-width: 160rem;
  margin: auto;
  padding: 8rem 2rem 5rem 2rem !important;
}
@media only screen and (max-width: 900px) {
  .company-team-layout__container {
    padding: 5rem 2rem 2rem 2rem !important;
  }
}
.company-team-layout__container--title {
  text-align: center;
  color: #fff;
  font-size: 4rem;
  line-height: 3rem;
  font-weight: 700;
  margin-bottom: 5rem;
}
.company-team-layout__container--title .line {
  display: inline-block;
  width: 20rem;
  border-bottom: 0.3rem solid rgb(218, 165, 32);
}
.company-team-layout__container--list_item {
  overflow: hidden;
  position: relative;
  padding: 2rem 1rem 1rem 1rem;
  border-radius: 1rem 1rem 2rem 2rem;
  background: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);
}
.company-team-layout__container--list_item-img {
  overflow: hidden;
  border-radius: 1rem;
  height: 40rem;
}
.company-team-layout__container--list_item-img img {
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
  z-index: 3;
  width: 100%;
  transition: all 0.2s linear;
}
.company-team-layout__container--list_item-detail {
  position: relative;
  z-index: 3;
}
.company-team-layout__container--list_item-detail h2 {
  font-size: 2rem;
  font-weight: 500;
  color: #000;
  text-align: center;
  line-height: 2rem;
  padding-top: 1rem;
}
.company-team-layout__container--list_item-detail span {
  display: inline-block;
  text-align: center;
  font-size: 1.6rem;
  width: 100%;
}
.company-team-layout__container--list_item-detail .block-link {
  padding: 1rem 2rem;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  border-radius: 1rem;
  margin-top: -13rem;
  margin-left: 3.5rem;
  transform: translateY(2rem);
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s linear;
  width: 80%;
}
.company-team-layout__container--list_item-detail .block-link a {
  margin-right: 1rem;
}
.company-team-layout__container--list_item-detail .block-link a:last-child {
  margin-right: 0;
}
.company-team-layout__container--list_item-detail .block-link a .fa {
  font-size: 1.6rem;
  color: rgb(0, 100, 0);
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 3rem;
  transition: all 0.2s linear;
  background: #fff;
  color: rgb(0, 100, 0);
  border: 0.2rem solid #fff;
}
.company-team-layout__container--list_item-detail .block-link a .fa:hover {
  background: rgb(0, 100, 0);
  color: #fff;
}
.company-team-layout__container--list_item::before {
  position: absolute;
  content: "";
  top: 20%;
  left: -40%;
  width: 200%;
  height: 20rem;
  background-color: rgba(0, 100, 0, 0.5);
  z-index: 0;
  border-radius: 1rem;
  transform: rotate(-30deg);
  transition: all 0.2s linear;
}
.company-team-layout__container--list_item:nth-child(even)::before {
  top: 28.7%;
  transform: rotate(30deg);
}
.company-team-layout__container--list_item:hover .company-team-layout__container--list_item-detail .block-link {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}
.company-team-layout__container--list_item:hover .company-team-layout__container--list_item-img img {
  transform: scale(1.05);
}
.company-team-layout__container .swiper .swiper-wrapper {
  padding: 0 0 4rem 0 !important;
}
.company-team-layout__container .swiper .swiper-button-next, .company-team-layout__container .swiper .swiper-button-prev {
  color: #fff;
  background: rgb(255, 165, 0);
  font-weight: 700;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.company-team-layout__container .swiper .swiper-button-next::after, .company-team-layout__container .swiper .swiper-button-next::after, .company-team-layout__container .swiper .swiper-button-prev::after, .company-team-layout__container .swiper .swiper-button-prev::after {
  font-size: 20px;
  font-weight: bold;
}
.company-team-layout__container .swiper .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  color: #000;
  opacity: 1;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.3);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.company-team-layout__container .swiper .swiper-pagination-bullet-active {
  color: rgb(1, 36, 1);
  background: #fff;
}

.project-layout {
  background: rgba(218, 165, 32, 0.1);
  padding: 6rem 2rem 20rem 2rem !important;
  margin-bottom: -15rem !important;
}
.project-layout__container {
  max-width: 160rem;
  margin: auto !important;
  padding: 0 !important;
}
.project-layout__container_title {
  text-align: center;
  margin: 0 auto 5rem auto;
  color: rgb(0, 100, 0);
  font-size: 4rem;
  line-height: 3rem;
}
.project-layout__container_title .line {
  display: inline-block;
  width: 20rem;
  border-bottom: 0.3rem solid rgb(218, 165, 32);
}
.project-layout__container_navigation {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 2rem;
  justify-content: center;
  max-width: 102.4rem;
  margin: auto;
  cursor: pointer;
}
@media only screen and (max-width: 600px) {
  .project-layout__container_navigation {
    grid-gap: 1.5rem;
    transform: scale(0.7);
  }
}
.project-layout__container_navigation-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  background: #fff;
  padding: 2rem 2rem;
  font-size: 1.6rem;
  border-radius: 1rem;
  color: #000;
  transition: all 0.3s linear;
}
@media only screen and (max-width: 1280px) {
  .project-layout__container_navigation-item {
    flex-direction: column;
  }
}
@media only screen and (max-width: 600px) {
  .project-layout__container_navigation-item {
    align-items: center;
    padding: 1rem 1rem;
  }
}
.project-layout__container_navigation-item .fa {
  padding: 1rem 1.5rem;
  font-size: 3rem;
  border-radius: 1rem;
  margin-top: 0.5rem;
  color: rgb(0, 100, 0);
  background-color: rgba(0, 100, 0, 0.3);
  outline: 0.6rem solid #fff;
  transition: all 0.3s linear;
}
@media only screen and (max-width: 900px) {
  .project-layout__container_navigation-item .fa {
    font-size: 2rem;
    padding: 0.8rem 1.3rem;
  }
}
.project-layout__container_navigation-item p {
  padding-left: 1.5rem;
}
.project-layout__container_navigation-item p span {
  font-size: 1.5rem;
}
@media only screen and (max-width: 1280px) {
  .project-layout__container_navigation-item p {
    padding-left: 0;
    padding-top: 1rem;
  }
}
@media only screen and (max-width: 600px) {
  .project-layout__container_navigation-item p {
    font-size: 1.4rem;
    padding-left: 0.5rem;
  }
  .project-layout__container_navigation-item p span:nth-child(even) {
    display: none;
  }
}
.project-layout__container_navigation-item.active {
  transform: translateY(-1rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
  color: rgb(0, 100, 0);
  outline: 0.6rem solid rgba(0, 100, 0, 0.3);
  background-color: rgb(0, 100, 0);
  color: #fff;
}
.project-layout__container_navigation-item.active .fa {
  color: rgb(0, 100, 0) !important;
  background-color: #fff !important;
  outline: 0.6rem solid rgba(0, 100, 0, 0.3) !important;
}
.project-layout__container_navigation-item:hover {
  transform: translateY(-1rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}
.project-layout__container_navigation-item:hover .fa {
  color: rgb(0, 100, 0);
  background-color: rgb(0, 100, 0);
  color: #fff;
  outline: 0.6rem solid rgba(0, 100, 0, 0.3);
}
.project-layout__container_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 3rem;
  margin-top: 5rem;
}
@media only screen and (max-width: 1280px) {
  .project-layout__container_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 600px) {
  .project-layout__container_list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.project-layout__container_list--project {
  position: relative;
  background: #fff;
  padding: 3rem 2rem 2rem 2rem;
  border-radius: 1rem;
  transition: all 0.3s linear;
}
.project-layout__container_list--project-title {
  color: #000;
  line-height: 2.5rem;
  font-size: 1.8rem;
}
.project-layout__container_list--project-detail {
  padding: 0.5rem 0 1rem 0;
  font-size: 1.4rem;
}
.project-layout__container_list--project-img {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  transition: all 0.2s linear;
}
.project-layout__container_list--project-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
  transition: all 0.3s linear;
  z-index: 0;
}
.project-layout__container_list--project-img::before {
  position: absolute;
  content: "";
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  transform: scale(0);
  transition: all 0.3s linear;
  border-radius: 1rem;
}
.project-layout__container_list--project-link {
  position: relative;
  z-index: 2;
}
.project-layout__container_list--project-link .fa {
  bottom: 0.5rem;
  right: -0.1rem;
  position: absolute;
  border-radius: 50%;
  font-size: 2rem;
  padding: 1rem 1rem;
  color: #fff;
  background-color: rgb(255, 165, 0);
  outline: 0.8rem solid #fff;
}
.project-layout__container_list--project:hover {
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);
}
.project-layout__container_list--project:hover .project-layout__container_list--project-img img {
  transform: scale(1.1);
}
.project-layout__container_list--project:hover .project-layout__container_list--project-img::before {
  transform: scale(1);
}
@media only screen and (max-width: 1600px) {
  .project-layout__container {
    max-width: 128rem;
  }
}
@media only screen and (max-width: 1280px) {
  .project-layout__container {
    max-width: 102.4rem;
  }
}
@media only screen and (max-width: 1024px) {
  .project-layout__container {
    max-width: 86.8rem;
  }
}
@media only screen and (max-width: 900px) {
  .project-layout__container {
    max-width: 70rem;
  }
}

.news-layout {
  background: rgba(218, 165, 32, 0.1);
  padding: 5rem 2rem 20rem 2rem;
  margin-bottom: -15rem;
}
@media only screen and (max-width: 500px) {
  .news-layout {
    padding: 3rem 1rem 20rem 1rem;
  }
}
.news-layout_container {
  max-width: 160rem;
  margin: auto;
}
.news-layout_container--title {
  font-size: 2.5rem;
  padding-bottom: 2rem;
  color: rgb(0, 100, 0);
  line-height: 2rem;
  text-align: center;
}
.news-layout_container--title .line {
  display: inline-block;
  width: 20rem;
  border-bottom: 0.3rem solid rgb(218, 165, 32);
}
.news-layout_container--subtitle {
  font-size: 4rem;
  padding-bottom: 5rem;
  color: #000;
  line-height: 4rem;
  text-align: center;
}
@media only screen and (max-width: 500px) {
  .news-layout_container--subtitle {
    font-size: 3rem;
    padding-bottom: 2rem;
  }
}
.news-layout_container--header {
  padding: 2rem 1rem;
}
.news-layout_container--header__label .fa-filter {
  font-size: 2rem;
  margin-right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgb(255, 165, 0);
  border-radius: 1rem;
  color: #fff;
  outline: 0.3rem solid #eee;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}
.news-layout_container--header__label-title {
  color: #000;
  font-size: 1.6rem;
}
.news-layout_container--header__search-input {
  padding: 0 5rem 0 2rem;
  height: 4rem;
  border: 0.1rem solid #eee;
  border-radius: 3rem;
  font-size: 1.6rem;
}
.news-layout_container--header__search-input::-moz-placeholder {
  font-size: 1.6rem;
}
.news-layout_container--header__search-input::placeholder {
  font-size: 1.6rem;
}
.news-layout_container--header__search button {
  position: absolute;
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgb(255, 165, 0);
  border-radius: 3rem;
  border: none;
  margin-right: 0.3rem;
}
.news-layout_container--header__search button .fa-search {
  color: #fff;
}
@media only screen and (max-width: 900px) {
  .news-layout_container--header {
    padding: 2rem 1rem;
  }
  .news-layout_container--header .news-layout_container--header__label-title {
    display: none;
  }
  .news-layout_container--header .news-layout_container--header__search-input {
    width: 100%;
  }
}
.news-layout_container--slider {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 3rem;
}
.news-layout_container--slider .swiper-slide {
  height: auto;
  font-size: 18px;
  position: relative;
  background-color: #fff;
  cursor: pointer;
  border-radius: 1rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}
.news-layout_container--slider .swiper-slide .slide-content__banner {
  position: relative;
  width: 100%;
  height: 22rem;
  overflow: hidden;
  border-radius: 1rem;
}
.news-layout_container--slider .swiper-slide .slide-content__banner--img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 1rem;
  transition: all 0.3s linear;
}
.news-layout_container--slider .swiper-slide .slide-content__banner::before {
  position: absolute;
  content: "";
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  transform: scale(0);
  transition: all 0.3s linear;
}
.news-layout_container--slider .swiper-slide .slide-content:hover .slide-content__banner--img {
  transform: scale(1.3);
}
.news-layout_container--slider .swiper-slide .slide-content:hover .slide-content__banner::before {
  transform: scale(1.1);
}
.news-layout_container--slider .swiper-slide .slide-content__info {
  padding: 2rem;
}
.news-layout_container--slider .swiper-slide .slide-content__info--title {
  font-weight: 800;
  font-size: 2rem;
  color: #000;
  line-height: normal;
  transition: all 0.2s linear;
}
.news-layout_container--slider .swiper-slide .slide-content__info--title:hover {
  color: rgb(0, 100, 0);
}
.news-layout_container--slider .swiper-slide .slide-content__info--description {
  padding: 1rem 0;
  font-weight: normal;
  font-size: 1.6rem;
  width: 100%;
  line-height: normal;
}
.news-layout_container--slider .swiper-slide .slide-content__info--tag_date, .news-layout_container--slider .swiper-slide .slide-content__info--tag_category {
  margin-right: 1rem;
}
.news-layout_container--slider .swiper-slide .slide-content__info--tag_date i, .news-layout_container--slider .swiper-slide .slide-content__info--tag_category i {
  margin-right: 0.5rem;
  color: rgb(255, 165, 0);
}
.news-layout_container--slider .swiper-slide .slide-content__info--tag_date span, .news-layout_container--slider .swiper-slide .slide-content__info--tag_category span {
  font-size: 1.4rem;
}
.news-layout_container--slider .swiper-slide .slide-content__info--btn {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding-top: 1rem;
  margin-top: 2rem;
  border-top: 0.1rem solid #eee;
}
.news-layout_container--slider .swiper-slide .slide-content__info--btn_link {
  position: relative;
  background-color: rgb(255, 165, 0);
  color: #fff;
  border-radius: 30rem;
  transition: all 0.2s linear;
  overflow: hidden;
  font-weight: 700;
  font-size: 1.6rem;
  padding: 0.5rem 2rem;
  border-color: rgb(234, 234, 238);
  border-width: 0.5rem;
  border-style: solid;
}
.news-layout_container--slider .swiper-slide .slide-content__info--btn_link span {
  display: inline-block;
  color: #fff;
}
.news-layout_container--slider .swiper-slide .slide-content__info--btn_link .fa {
  font-size: 2rem;
  color: #fff;
  border-radius: 50%;
  padding-right: 1rem;
}
.news-layout_container--slider .swiper-slide .slide-content__info--btn_link:hover {
  background-color: rgb(163, 107, 1);
}
@media only screen and (max-width: 1280px) {
  .news-layout_container--slider {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 1024px) {
  .news-layout_container--slider {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 600px) {
  .news-layout_container--slider {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 2rem;
  }
}
.news-layout_container--navigation {
  margin: 4rem 0 2rem 0;
}
@media only screen and (max-width: 500px) {
  .news-layout_container--navigation {
    margin: 4rem 0 0 0;
  }
}
.news-layout_container--navigation__list-item {
  cursor: pointer;
  background-color: #ccc;
  margin: 0 0.5rem;
  font-weight: 600;
  color: #000;
  font-size: 1.6rem;
  border-radius: 0.5rem;
  height: 3rem;
  width: 3rem;
  transition: all 0.2s linear;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.news-layout_container--navigation__list-item.btn-prev, .news-layout_container--navigation__list-item.btn-next {
  position: relative;
  height: 3rem;
  width: 3rem;
  background-color: rgb(163, 107, 1);
  color: #fff;
  border-radius: 0.5rem;
}
.news-layout_container--navigation__list-item:hover {
  background-color: rgb(255, 165, 0);
  color: #fff;
}
.news-layout_container--navigation__list-item.active {
  background-color: rgb(255, 165, 0);
  color: #fff;
}
.news-layout_container--modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s linear;
}
.news-layout_container--modal__form {
  padding: 2rem 3rem;
  background: #fff;
  border-radius: 1rem;
  width: 60rem;
  box-shadow: 0 0 2rem rgba(0, 0, 0, 0.3);
  transform: translate(20rem) scale(0);
  transition: all 0.2s ease-in;
}
.news-layout_container--modal__form .header {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  color: #000;
  font-size: 2rem;
}
.news-layout_container--modal__form .header i {
  padding: 0.5rem;
}
.news-layout_container--modal__form .header i:hover {
  color: red;
}
.news-layout_container--modal__form .footer {
  padding-top: 1rem;
}
.news-layout_container--modal__form .footer button {
  position: relative;
  background-color: rgb(255, 165, 0);
  color: #fff;
  border-radius: 30rem;
  transition: all 0.2s linear;
  overflow: hidden;
  font-weight: 700;
  font-size: 1.6rem;
  padding: 0.5rem 2rem;
  border-color: rgb(234, 234, 238);
  border-width: 0.5rem;
  border-style: solid;
}
.news-layout_container--modal__form .footer button span {
  display: inline-block;
  color: #fff;
}
.news-layout_container--modal__form .footer button .fa {
  font-size: 2rem;
  color: #fff;
  border-radius: 50%;
  padding-right: 1rem;
}
.news-layout_container--modal__form .footer button:hover {
  background-color: rgb(163, 107, 1);
}
.news-layout_container--modal__form-input label {
  font-weight: 500;
  color: #000;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}
.news-layout_container--modal__form-input input {
  width: 100%;
  height: 4rem;
  border: 0.1rem solid #ccc;
  padding: 0 1rem;
  border-radius: 0.5rem;
}
.news-layout_container--modal__form-input input::-moz-placeholder {
  font-size: 1.6rem;
}
.news-layout_container--modal__form-input input::placeholder {
  font-size: 1.6rem;
}
.news-layout_container--modal__form-select {
  margin-top: 1rem;
}
.news-layout_container--modal__form-select_label {
  font-weight: 500;
  color: #000;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}
.news-layout_container--modal__form-select_select-box {
  border: 0.1rem solid #ccc;
  border-radius: 0.5rem;
  overflow-y: scroll;
  overflow-x: hidden;
  height: 20rem;
}
.news-layout_container--modal__form-select_select-box .select-box--list_item {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding: 0.8rem 1rem;
}
.news-layout_container--modal__form-select_select-box .select-box--list_item:nth-child(odd) {
  background: #eee;
}
.news-layout_container--modal__form-select_select-box .select-box--list_item label {
  color: #000;
  font-size: 1.4rem;
  margin-left: 0.5rem;
}
.news-layout_container--modal.show {
  z-index: 10;
  visibility: visible;
  opacity: 1;
}
.news-layout_container--modal.show .news-layout_container--modal__form {
  transition-delay: 0.6rem;
  transform: translate(0) scale(1);
}
@media only screen and (max-width: 1600px) {
  .news-layout_container {
    max-width: 128rem;
  }
}
@media only screen and (max-width: 1280px) {
  .news-layout_container {
    max-width: 102.4rem;
  }
}
@media only screen and (max-width: 1024px) {
  .news-layout_container {
    max-width: 86.8rem;
  }
}
@media only screen and (max-width: 900px) {
  .news-layout_container {
    max-width: 70rem;
  }
}

.news-detail-layout {
  background: rgba(218, 165, 32, 0.1);
  padding: 5rem 2rem 20rem 2rem !important;
  margin-bottom: -15rem;
}
@media only screen and (max-width: 500px) {
  .news-detail-layout {
    padding: 3rem 1rem 20rem 1rem !important;
  }
}
.news-detail-layout_header {
  max-width: 136.6rem;
  margin: auto;
  display: grid !important;
  grid-template-columns: 7fr 3fr !important;
  grid-column-gap: 4rem;
  padding: 0 !important;
}
@media only screen and (max-width: 900px) {
  .news-detail-layout_header {
    grid-template-columns: 1fr !important;
    grid-gap: 0;
  }
}
@media only screen and (max-width: 900px) {
  .news-detail-layout_header__search {
    margin-bottom: 1rem;
  }
}
.news-detail-layout_header__search-input {
  width: 100%;
  padding: 0 5rem 0 2rem;
  height: 4.3rem;
  border: 0.1rem solid #eee;
  border-radius: 3rem;
  font-size: 1.6rem;
}
@media only screen and (max-width: 900px) {
  .news-detail-layout_header__search-input {
    max-width: 50%;
  }
}
@media only screen and (max-width: 500px) {
  .news-detail-layout_header__search-input {
    max-width: 100%;
  }
}
.news-detail-layout_header__search-input::-moz-placeholder {
  font-size: 1.6rem;
}
.news-detail-layout_header__search-input::placeholder {
  font-size: 1.6rem;
}
.news-detail-layout_header__search button {
  position: absolute;
  width: 3.5rem;
  height: 3.5rem;
  background-color: rgb(255, 165, 0);
  border-radius: 3rem;
  border: none;
  margin-right: 0.5rem;
  transition: all 0.2s linear;
}
.news-detail-layout_header__search button .fa-search {
  color: #fff;
}
.news-detail-layout_header__search button:hover {
  background-color: rgb(163, 107, 1);
}
@media only screen and (max-width: 1600px) {
  .news-detail-layout_header {
    max-width: 128rem;
  }
}
@media only screen and (max-width: 1280px) {
  .news-detail-layout_header {
    max-width: 102.4rem;
  }
}
@media only screen and (max-width: 1024px) {
  .news-detail-layout_header {
    max-width: 86.8rem;
  }
}
@media only screen and (max-width: 900px) {
  .news-detail-layout_header {
    max-width: 70rem;
  }
}
.news-detail-layout_container {
  max-width: 136.6rem;
  margin: auto;
  display: grid !important;
  grid-template-columns: 7fr 3fr !important;
  grid-column-gap: 4rem;
}
@media only screen and (max-width: 1024px) {
  .news-detail-layout_container {
    grid-column-gap: 2rem;
  }
}
@media only screen and (max-width: 900px) {
  .news-detail-layout_container {
    grid-template-columns: 1fr !important;
    grid-column-gap: 2rem;
  }
}
.news-detail-layout_container--left {
  padding: 0 !important;
  margin: 0 !important;
}
.news-detail-layout_container--left__blog {
  background: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  padding: 2rem 2rem 4rem 2rem;
  border-radius: 2rem;
}
.news-detail-layout_container--left__blog-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2rem;
}
.news-detail-layout_container--left__blog-title {
  font-size: 2.5rem;
  color: #000;
  line-height: 3rem;
  margin: 2rem 0 1rem 0;
}
@media only screen and (max-width: 600px) {
  .news-detail-layout_container--left__blog-title {
    font-size: 2.2rem;
    line-height: 3rem;
  }
}
.news-detail-layout_container--left__blog-info label {
  margin-right: 2rem;
  font-size: 1.6rem;
}
.news-detail-layout_container--left__blog-info label .fa {
  color: rgb(0, 100, 0);
  padding-right: 1rem;
}
.news-detail-layout_container--left__blog-info label span {
  display: inline-block;
}
@media only screen and (max-width: 600px) {
  .news-detail-layout_container--left__blog-info label {
    font-size: 1rem;
  }
  .news-detail-layout_container--left__blog-info label .fa {
    padding-right: 0.5rem;
  }
  .news-detail-layout_container--left__blog-info label span {
    display: inline-block;
  }
}
.news-detail-layout_container--left__blog-paragraph {
  margin-top: 1rem;
  font-size: 1.6rem;
  color: #333;
  line-height: 0.8cm;
  font-weight: 400;
}
@media only screen and (max-width: 600px) {
  .news-detail-layout_container--left__blog-paragraph {
    font-size: 1.4rem;
    text-align: justify;
  }
}
.news-detail-layout_container--left__blog-paragraph.quote {
  border-left: 0.3rem solid rgb(0, 100, 0);
  padding: 2rem 2rem;
  background: rgba(0, 100, 0, 0.2);
  color: rgb(0, 100, 0);
  font-weight: 400;
}
.news-detail-layout_container--left__blog-paragraph_list {
  padding: 1rem 1rem;
}
.news-detail-layout_container--left__blog-paragraph_list li {
  position: relative;
  font-size: 1.6rem;
  color: #333;
  padding: 0.5rem 2rem;
  border-radius: 1rem;
}
.news-detail-layout_container--left__blog-paragraph_list li .fa {
  font-size: 3rem;
  margin-right: 2rem;
}
.news-detail-layout_container--left__blog-paragraph_list li .detail .label {
  font-weight: 700;
}
.news-detail-layout_container--left__blog-paragraph_list li::before {
  position: absolute;
  content: "\f058";
  left: 0;
  top: 0.5rem;
  font-size: 1.6rem;
  color: rgb(0, 100, 0);
}
.news-detail-layout_container--left__blog-list {
  padding: 1rem 1rem;
}
.news-detail-layout_container--left__blog-list li {
  position: relative;
  font-size: 1.6rem;
  color: #333;
  padding: 0.5rem 2rem;
  border-radius: 1rem;
}
.news-detail-layout_container--left__blog-list li .fa {
  font-size: 3rem;
  margin-right: 2rem;
}
.news-detail-layout_container--left__blog-list li .detail .label {
  font-weight: 700;
}
.news-detail-layout_container--left__blog-list li::before {
  position: absolute;
  content: "\f058";
  left: 0;
  top: 0.5rem;
  font-size: 1.6rem;
  color: rgb(0, 100, 0);
}
.news-detail-layout_container--left__blog-share_title {
  margin-right: 1rem;
  font-size: 1.8rem;
  color: #000;
}
@media only screen and (max-width: 500px) {
  .news-detail-layout_container--left__blog-share.flex-container {
    justify-content: flex-start !important;
  }
}
.news-detail-layout_container--left__blog-share_media a .fa {
  font-size: 2.2rem;
  margin-right: 1rem;
}
.news-detail-layout_container--left__blog-share_media a:nth-child(1) .fa {
  color: rgb(42, 42, 248);
}
.news-detail-layout_container--left__blog-share_media a:nth-child(2) .fa {
  color: rgb(3, 81, 144);
}
.news-detail-layout_container--left__blog-share_media a:nth-child(3) .fa {
  -webkit-text-fill-color: transparent;
  color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
  background-image: linear-gradient(rgb(3, 81, 144), rgb(169, 2, 215));
}
.news-detail-layout_container--left__blog-share_media a:nth-child(4) .fa {
  color: rgb(0, 137, 248);
}
.news-detail-layout_container--left__blog-share_media a:nth-child(5) .fa {
  color: rgb(83, 177, 253);
}
.news-detail-layout_container--left__blog-share_media a:nth-child(6) .fa {
  color: rgb(0, 100, 0);
}
.news-detail-layout_container--left__blog-comment {
  padding: 0 2rem;
}
@media only screen and (max-width: 500px) {
  .news-detail-layout_container--left__blog-comment {
    padding: 0;
  }
}
.news-detail-layout_container--left__blog-comment_header {
  padding: 2rem 1rem 1rem 1rem;
}
@media only screen and (max-width: 500px) {
  .news-detail-layout_container--left__blog-comment_header {
    padding: 2rem 0 1rem 0;
  }
}
.news-detail-layout_container--left__blog-comment_header h2 {
  font-size: 2.5rem;
  padding-bottom: 1rem;
  color: #fff;
  line-height: 2rem;
  color: rgb(0, 100, 0);
}
.news-detail-layout_container--left__blog-comment_header h2 .line {
  display: inline-block;
  width: 15rem;
  border-bottom: 0.3rem solid rgb(218, 165, 32);
}
@media only screen and (max-width: 500px) {
  .news-detail-layout_container--left__blog-comment_header h2 {
    flex: 100%;
    font-size: 2.5rem;
    padding-bottom: 1rem;
    line-height: 3rem;
  }
}
.news-detail-layout_container--left__blog-comment_list li {
  margin: 1rem 0;
}
.news-detail-layout_container--left__blog-comment_list li.reply {
  padding-left: 2rem;
}
.news-detail-layout_container--left__blog-comment_list li.reply .news-detail-layout_container--left__blog-comment_list-_container {
  background: rgba(0, 100, 0, 0.1);
  border-left: 0.3rem solid rgb(0, 100, 0);
}
.news-detail-layout_container--left__blog-comment_list li .news-detail-layout_container--left__blog-comment_list-_container {
  background: #eee;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  border-left: 0.3rem solid #333;
}
.news-detail-layout_container--left__blog-comment_list li .title {
  font-size: 1.6rem;
  color: #000;
  font-weight: bold;
  line-height: 0;
}
.news-detail-layout_container--left__blog-comment_list li .description {
  font-size: 1.4rem;
  color: #333;
}
.news-detail-layout_container--left__blog-comment_list li label {
  padding-bottom: 0.5rem;
  padding-right: 1rem;
  font-size: 1rem;
}
.news-detail-layout_container--left__blog-comment_list li label span {
  padding-left: 0.5rem;
}
.news-detail-layout_container--left__blog-comment_list li .btn label {
  padding: 0;
  font-size: 1.2rem;
  color: rgb(0, 100, 0);
  cursor: pointer;
}
.news-detail-layout_container--left__blog-comment_list li .btn label:hover {
  text-decoration: underline !important;
}
.news-detail-layout_container--left__formular {
  background: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  padding: 4rem 2rem 4rem 2rem;
  margin-top: 2rem;
  border-radius: 2rem;
}
@media only screen and (max-width: 500px) {
  .news-detail-layout_container--left__formular {
    padding: 1rem 2rem 1rem 2rem;
  }
}
.news-detail-layout_container--left__formular_header {
  padding: 2rem 1rem 1rem 1rem;
}
@media only screen and (max-width: 500px) {
  .news-detail-layout_container--left__formular_header {
    padding: 2rem 0 1rem 0;
  }
}
.news-detail-layout_container--left__formular_header h2 {
  font-size: 2.5rem;
  padding-bottom: 1rem;
  color: #fff;
  line-height: 2rem;
  color: rgb(0, 100, 0);
}
.news-detail-layout_container--left__formular_header h2 .line {
  display: inline-block;
  width: 15rem;
  border-bottom: 0.3rem solid rgb(218, 165, 32);
}
@media only screen and (max-width: 500px) {
  .news-detail-layout_container--left__formular_header h2 {
    flex: 100%;
    font-size: 2.5rem;
    padding-bottom: 1rem;
    line-height: 3rem;
  }
}
.news-detail-layout_container--left__formular_header p {
  font-size: 1.6rem;
  color: #fff;
  max-width: 70rem;
  padding-bottom: 2rem;
  color: #000;
}
.news-detail-layout_container--left__formular_inputgroup {
  padding: 0 0 1.5rem 0;
}
@media only screen and (max-width: 500px) {
  .news-detail-layout_container--left__formular_inputgroup {
    padding: 0 0 0 0;
  }
  .news-detail-layout_container--left__formular_inputgroup.flex-container {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.news-detail-layout_container--left__formular_inputgroup:last-child {
  padding: 0;
}
.news-detail-layout_container--left__formular_inputgroup .input {
  margin: 0 1rem;
}
@media only screen and (max-width: 500px) {
  .news-detail-layout_container--left__formular_inputgroup .input {
    width: 100%;
    margin: 1rem 0;
  }
}
.news-detail-layout_container--left__formular_inputgroup .input label {
  font-size: 1.6rem;
  color: #000;
  font-weight: 500;
  padding-bottom: 0.5rem;
}
.news-detail-layout_container--left__formular_inputgroup .input textarea, .news-detail-layout_container--left__formular_inputgroup .input input {
  width: 100%;
  height: 4.6rem;
  border: 0.1rem solid #eee;
  padding: 0 1rem;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.05);
}
.news-detail-layout_container--left__formular_inputgroup .input textarea::-moz-placeholder, .news-detail-layout_container--left__formular_inputgroup .input input::-moz-placeholder {
  font-size: 1.4rem;
}
.news-detail-layout_container--left__formular_inputgroup .input textarea::placeholder, .news-detail-layout_container--left__formular_inputgroup .input input::placeholder {
  font-size: 1.4rem;
}
.news-detail-layout_container--left__formular_inputgroup .input textarea {
  resize: none;
  height: 20rem;
  padding: 2rem;
}
.news-detail-layout_container--left__formular_inputgroup .button {
  margin: 1rem;
}
.news-detail-layout_container--left__formular_inputgroup .button button {
  background-color: rgb(255, 165, 0);
  color: #fff;
  font-size: 1.6rem;
  padding: 1rem 3rem;
  border-radius: 3rem;
  transition: all 0.2s linear;
  font-weight: 700;
  border-color: #eeeeee;
  border-width: 0.5rem;
  border-style: solid;
}
.news-detail-layout_container--left__formular_inputgroup .button button i {
  margin-right: 0.5rem;
}
.news-detail-layout_container--left__formular_inputgroup .button button:hover {
  background-color: rgb(163, 107, 1);
  color: #fff;
}
@media only screen and (max-width: 900px) {
  .news-detail-layout_container--left__formular_inputgroup .button {
    margin: 2rem 0 0 0;
  }
  .news-detail-layout_container--left__formular_inputgroup .button button {
    width: 100%;
  }
  .news-detail-layout_container--left__formular_inputgroup .button button.flex-container {
    justify-content: center;
  }
}
.news-detail-layout_container--right {
  padding: 0 !important;
  margin: 0 !important;
}
.news-detail-layout_container--right__recent {
  background: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  padding: 1rem 2rem 2rem 2rem;
  margin-top: 2rem;
  border-radius: 2rem;
}
.news-detail-layout_container--right__recent-header {
  padding: 2rem 1rem 1rem 1rem;
}
@media only screen and (max-width: 500px) {
  .news-detail-layout_container--right__recent-header {
    padding: 2rem 0 1rem 0;
  }
}
.news-detail-layout_container--right__recent-header h1 {
  font-size: 2.5rem;
  padding-bottom: 1rem;
  color: #fff;
  line-height: 2rem;
  color: rgb(0, 100, 0);
}
.news-detail-layout_container--right__recent-header h1 .line {
  display: inline-block;
  width: 15rem;
  border-bottom: 0.3rem solid rgb(218, 165, 32);
}
@media only screen and (max-width: 500px) {
  .news-detail-layout_container--right__recent-header h1 {
    flex: 100%;
    font-size: 2.5rem;
    padding-bottom: 1rem;
    line-height: 3rem;
  }
}
.news-detail-layout_container--right__recent-header p {
  font-size: 1.6rem;
  color: #fff;
  max-width: 70rem;
  padding-bottom: 2rem;
  color: #000;
}
@media only screen and (max-width: 900px) {
  .news-detail-layout_container--right__recent-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem;
  }
}
@media only screen and (max-width: 450px) {
  .news-detail-layout_container--right__recent-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.news-detail-layout_container--right__recent-list li {
  padding: 0.5rem 0;
}
@media only screen and (max-width: 600px) {
  .news-detail-layout_container--right__recent-list li {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}
.news-detail-layout_container--right__recent-list_img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.3rem;
}
.news-detail-layout_container--right__recent-list_description {
  margin-left: 2rem;
}
@media only screen and (max-width: 1024px) {
  .news-detail-layout_container--right__recent-list_description {
    margin-left: 1rem;
  }
}
@media only screen and (max-width: 600px) {
  .news-detail-layout_container--right__recent-list_description {
    margin-left: 0;
  }
}
.news-detail-layout_container--right__recent-list_description a {
  display: inline-block;
  color: #000;
  font-size: 1.4rem;
  line-height: 0.5cm;
  font-weight: 500;
  transition: all 0.2s linear;
}
.news-detail-layout_container--right__recent-list_description a:hover {
  color: rgb(0, 100, 0);
}
.news-detail-layout_container--right__recent-list_description label {
  padding-right: 1rem;
}
.news-detail-layout_container--right__recent-list_description label span {
  padding-left: 0.5rem;
}
.news-detail-layout_container--right__category {
  background: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  padding: 1rem 2rem 2rem 2rem;
  margin-top: 2rem;
  border-radius: 2rem;
}
.news-detail-layout_container--right__category-header {
  padding: 2rem 1rem 1rem 1rem;
}
@media only screen and (max-width: 500px) {
  .news-detail-layout_container--right__category-header {
    padding: 2rem 0 1rem 0;
  }
}
.news-detail-layout_container--right__category-header h1 {
  font-size: 2.5rem;
  padding-bottom: 1rem;
  color: #fff;
  line-height: 2rem;
  color: rgb(0, 100, 0);
}
.news-detail-layout_container--right__category-header h1 .line {
  display: inline-block;
  width: 5rem !important;
  border-bottom: 0.3rem solid rgb(218, 165, 32);
}
@media only screen and (max-width: 500px) {
  .news-detail-layout_container--right__category-header h1 {
    flex: 100%;
    font-size: 2.5rem;
    padding-bottom: 1rem;
    line-height: 3rem;
  }
}
.news-detail-layout_container--right__category-list li a {
  color: #000;
  font-size: 1.6rem;
  padding: 0 2rem 0.8rem 1rem;
  transition: all 0.2s linear;
}
.news-detail-layout_container--right__category-list li a span {
  padding-left: 1rem;
}
.news-detail-layout_container--right__category-list li a:hover {
  color: rgb(0, 100, 0);
}
.news-detail-layout_container--right__tag {
  background: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
  padding: 1rem 2rem 2rem 2rem;
  margin-top: 2rem;
  border-radius: 2rem;
}
.news-detail-layout_container--right__tag-header {
  padding: 2rem 1rem 1rem 1rem;
}
@media only screen and (max-width: 500px) {
  .news-detail-layout_container--right__tag-header {
    padding: 2rem 0 1rem 0;
  }
}
.news-detail-layout_container--right__tag-header h1 {
  font-size: 2.5rem;
  padding-bottom: 1rem;
  color: #fff;
  line-height: 2rem;
  color: rgb(0, 100, 0);
}
.news-detail-layout_container--right__tag-header h1 .line {
  display: inline-block;
  width: 5rem !important;
  border-bottom: 0.3rem solid rgb(218, 165, 32);
}
@media only screen and (max-width: 500px) {
  .news-detail-layout_container--right__tag-header h1 {
    flex: 100%;
    font-size: 2.5rem;
    padding-bottom: 1rem;
    line-height: 3rem;
  }
}
.news-detail-layout_container--right__tag-list label {
  color: #000;
  font-size: 1.2rem;
  padding: 0.5rem 1.5rem;
  transition: all 0.2s linear;
  background: #eee;
  margin-right: 1rem;
  margin-bottom: 1rem;
  border-radius: 30rem;
  cursor: pointer;
  font-weight: 500;
}
.news-detail-layout_container--right__tag-list label span {
  padding-left: 1rem;
}
.news-detail-layout_container--right__tag-list label:hover {
  color: #fff;
  background: rgb(0, 100, 0);
}
@media only screen and (max-width: 1600px) {
  .news-detail-layout_container {
    max-width: 128rem;
  }
}
@media only screen and (max-width: 1280px) {
  .news-detail-layout_container {
    max-width: 102.4rem;
  }
}
@media only screen and (max-width: 1024px) {
  .news-detail-layout_container {
    max-width: 86.8rem;
  }
}
@media only screen and (max-width: 900px) {
  .news-detail-layout_container {
    max-width: 70rem;
  }
}

.contact-formular-layout__container {
  max-width: 160rem;
  margin: auto;
  padding: 8rem 2rem 5rem 2rem;
}
@media only screen and (max-width: 900px) {
  .contact-formular-layout__container {
    padding: 2rem 2rem 0rem 2rem;
  }
  .contact-formular-layout__container.flex-container {
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 500px) {
  .contact-formular-layout__container {
    padding: 2rem 1rem 0rem 1rem;
  }
}
.contact-formular-layout__container--left {
  padding: 0 4rem 0 0;
}
@media only screen and (max-width: 900px) {
  .contact-formular-layout__container--left {
    padding: 3rem 0 1rem 0;
  }
}
@media only screen and (max-width: 500px) {
  .contact-formular-layout__container--left {
    padding: 1rem 1rem 1rem 1rem;
  }
}
.contact-formular-layout__container--left_header {
  padding: 2rem 1rem 1rem 1rem;
}
@media only screen and (max-width: 500px) {
  .contact-formular-layout__container--left_header {
    padding: 2rem 0 1rem 0;
  }
}
.contact-formular-layout__container--left_header h1 {
  font-size: 2.5rem;
  padding-bottom: 1rem;
  color: #fff;
  line-height: 2rem;
  color: rgb(0, 100, 0);
}
.contact-formular-layout__container--left_header h1 .line {
  display: inline-block;
  width: 15rem;
  border-bottom: 0.3rem solid rgb(218, 165, 32);
}
@media only screen and (max-width: 500px) {
  .contact-formular-layout__container--left_header h1 {
    flex: 100%;
    font-size: 2.5rem;
    padding-bottom: 1rem;
    line-height: 3rem;
  }
}
.contact-formular-layout__container--left_header p {
  font-size: 1.6rem;
  color: #fff;
  max-width: 70rem;
  padding-bottom: 2rem;
  color: #000;
}
.contact-formular-layout__container--left_inputgroup {
  padding: 0 0 1.5rem 0;
}
@media only screen and (max-width: 500px) {
  .contact-formular-layout__container--left_inputgroup {
    padding: 0 0 0 0;
  }
  .contact-formular-layout__container--left_inputgroup.flex-container {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.contact-formular-layout__container--left_inputgroup:last-child {
  padding: 0;
}
.contact-formular-layout__container--left_inputgroup .input {
  margin: 0 1rem;
}
@media only screen and (max-width: 500px) {
  .contact-formular-layout__container--left_inputgroup .input {
    width: 100%;
    margin: 1rem 0;
  }
}
.contact-formular-layout__container--left_inputgroup .input label {
  font-size: 1.6rem;
  color: #000;
  font-weight: 500;
  padding-bottom: 0.5rem;
}
.contact-formular-layout__container--left_inputgroup .input textarea, .contact-formular-layout__container--left_inputgroup .input input {
  width: 100%;
  height: 4.6rem;
  border: 0.1rem solid #eee;
  padding: 0 1rem;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.05);
}
.contact-formular-layout__container--left_inputgroup .input textarea::-moz-placeholder, .contact-formular-layout__container--left_inputgroup .input input::-moz-placeholder {
  font-size: 1.4rem;
}
.contact-formular-layout__container--left_inputgroup .input textarea::placeholder, .contact-formular-layout__container--left_inputgroup .input input::placeholder {
  font-size: 1.4rem;
}
.contact-formular-layout__container--left_inputgroup .input textarea {
  resize: none;
  height: 20rem;
  padding: 2rem;
}
.contact-formular-layout__container--left_inputgroup .button {
  margin: 1rem;
}
.contact-formular-layout__container--left_inputgroup .button button {
  background-color: rgb(255, 165, 0);
  color: #fff;
  font-size: 1.6rem;
  padding: 1rem 3rem;
  border-radius: 3rem;
  transition: all 0.2s linear;
  font-weight: 700;
  border-color: rgb(213, 213, 215);
  border-width: 0.5rem;
  border-style: solid;
}
.contact-formular-layout__container--left_inputgroup .button button i {
  margin-right: 0.5rem;
}
.contact-formular-layout__container--left_inputgroup .button button:hover {
  background-color: rgb(163, 107, 1);
  color: #fff;
}
@media only screen and (max-width: 900px) {
  .contact-formular-layout__container--left_inputgroup .button {
    margin: 2rem 0 0 0;
  }
  .contact-formular-layout__container--left_inputgroup .button button {
    width: 100%;
  }
  .contact-formular-layout__container--left_inputgroup .button button.flex-container {
    justify-content: center;
  }
}
.contact-formular-layout__container--right {
  padding: 4rem;
  background-image: linear-gradient(rgba(0, 100, 0, 0.9), rgba(0, 100, 0, 0.9)), url(../images/objectif-1.jpg);
  border-radius: 3rem;
}
@media only screen and (max-width: 500px) {
  .contact-formular-layout__container--right {
    padding: 3rem 2rem;
    border-radius: 1rem;
  }
}
.contact-formular-layout__container--right_title {
  font-size: 2rem;
  padding-bottom: 1rem;
  color: #fff;
  line-height: 2rem;
}
.contact-formular-layout__container--right_title .line {
  display: inline-block;
  width: 15rem;
  border-bottom: 0.3rem solid rgb(218, 165, 32);
}
@media only screen and (max-width: 1280px) {
  .contact-formular-layout__container--right_title {
    font-size: 1.8rem;
  }
}
.contact-formular-layout__container--right_subtitle {
  font-size: 3rem;
  padding-bottom: 1rem;
  color: #fff;
  line-height: 4rem;
  max-width: 70rem;
}
@media only screen and (max-width: 1280px) {
  .contact-formular-layout__container--right_subtitle {
    font-size: 2.5rem;
    line-height: 3.5rem;
  }
}
.contact-formular-layout__container--right_description {
  font-size: 1.6rem;
  color: #fff;
  max-width: 70rem;
  padding-bottom: 2rem;
}
.contact-formular-layout__container--right_list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 2rem;
}
.contact-formular-layout__container--right_list a {
  position: relative;
  font-size: 1.6rem;
  color: #fff;
  padding: 1rem 2rem;
  background-color: rgba(204, 204, 204, 0.3);
  border-radius: 1rem;
}
.contact-formular-layout__container--right_list a .fa {
  font-size: 3rem;
  margin-right: 2rem;
}
.contact-formular-layout__container--right_list a .detail .label {
  font-weight: 700;
}
.contact-formular-layout__container--right_social {
  margin-top: 2rem;
}
.contact-formular-layout__container--right_social h2 {
  font-size: 2rem;
  color: #fff;
  text-align: center;
}
.contact-formular-layout__container--right_social .block-link {
  margin-top: 1rem;
}
.contact-formular-layout__container--right_social .block-link a {
  margin-right: 1rem;
}
.contact-formular-layout__container--right_social .block-link a .fa {
  font-size: 1.6rem;
  color: #fff;
  width: 3.5rem;
  height: 3.5rem;
  border: 0.2rem solid #fff;
  border-radius: 3rem;
  transition: all 0.2s linear;
}
.contact-formular-layout__container--right_social .block-link a .fa:hover {
  background: #fff;
  color: rgb(0, 100, 0);
}
@media only screen and (max-width: 1600px) {
  .contact-formular-layout__container {
    max-width: 128rem;
  }
}
@media only screen and (max-width: 1280px) {
  .contact-formular-layout__container {
    max-width: 102.4rem;
  }
}
@media only screen and (max-width: 1024px) {
  .contact-formular-layout__container {
    max-width: 86.8rem;
  }
}
@media only screen and (max-width: 900px) {
  .contact-formular-layout__container {
    max-width: 70rem;
  }
}
.contact-formular-layout__map-layout {
  max-width: 160rem;
  margin: auto;
  padding: 0 2rem 8rem 2rem;
}
.contact-formular-layout__map-layout iframe {
  width: 100%;
  border-radius: 2rem;
  -o-object-fit: cover;
     object-fit: cover;
  border: 0.3rem solid #fff;
}
@media only screen and (max-width: 1600px) {
  .contact-formular-layout__map-layout {
    max-width: 128rem;
  }
}
@media only screen and (max-width: 1280px) {
  .contact-formular-layout__map-layout {
    max-width: 102.4rem;
  }
}
@media only screen and (max-width: 1024px) {
  .contact-formular-layout__map-layout {
    max-width: 86.8rem;
  }
}
@media only screen and (max-width: 900px) {
  .contact-formular-layout__map-layout {
    max-width: 70rem;
    padding: 1rem 2rem 2rem 2rem;
  }
  .contact-formular-layout__map-layout iframe {
    border-radius: 1rem;
  }
}

.member-register-formular-layout__container {
  max-width: 160rem;
  margin: auto;
  padding: 8rem 2rem 5rem 2rem;
}
@media only screen and (max-width: 900px) {
  .member-register-formular-layout__container {
    padding: 2rem 2rem 0rem 2rem;
  }
  .member-register-formular-layout__container.flex-container {
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 500px) {
  .member-register-formular-layout__container {
    padding: 2rem 1rem 0rem 1rem;
  }
}
.member-register-formular-layout__container--left {
  padding: 0 4rem 0 0;
}
@media only screen and (max-width: 900px) {
  .member-register-formular-layout__container--left {
    padding: 3rem 0 1rem 0;
  }
}
@media only screen and (max-width: 500px) {
  .member-register-formular-layout__container--left {
    padding: 1rem 1rem 1rem 1rem;
  }
}
.member-register-formular-layout__container--left_header {
  padding: 2rem 1rem 1rem 1rem;
}
@media only screen and (max-width: 500px) {
  .member-register-formular-layout__container--left_header {
    padding: 2rem 0 1rem 0;
  }
}
.member-register-formular-layout__container--left_header h1 {
  font-size: 2.5rem;
  padding-bottom: 1rem;
  color: #fff;
  line-height: 2rem;
  color: rgb(0, 100, 0);
}
.member-register-formular-layout__container--left_header h1 .line {
  display: inline-block;
  width: 15rem;
  border-bottom: 0.3rem solid rgb(218, 165, 32);
}
@media only screen and (max-width: 500px) {
  .member-register-formular-layout__container--left_header h1 {
    flex: 100%;
    font-size: 2.5rem;
    padding-bottom: 1rem;
    line-height: 3rem;
  }
}
.member-register-formular-layout__container--left_header p {
  font-size: 1.6rem;
  color: #fff;
  max-width: 70rem;
  padding-bottom: 2rem;
  color: #000;
}
.member-register-formular-layout__container--left_inputgroup {
  padding: 0 0 1.5rem 0;
}
@media only screen and (max-width: 500px) {
  .member-register-formular-layout__container--left_inputgroup {
    padding: 0 0 0 0;
  }
  .member-register-formular-layout__container--left_inputgroup.flex-container {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.member-register-formular-layout__container--left_inputgroup:last-child {
  padding: 0;
}
.member-register-formular-layout__container--left_inputgroup .input {
  margin: 0 1rem;
}
@media only screen and (max-width: 500px) {
  .member-register-formular-layout__container--left_inputgroup .input {
    width: 100%;
    margin: 1rem 0;
  }
}
.member-register-formular-layout__container--left_inputgroup .input label {
  font-size: 1.6rem;
  color: #000;
  font-weight: 500;
  padding-bottom: 0.5rem;
}
.member-register-formular-layout__container--left_inputgroup .input select, .member-register-formular-layout__container--left_inputgroup .input textarea, .member-register-formular-layout__container--left_inputgroup .input input {
  width: 100%;
  height: 4.6rem;
  border: 0.1rem solid #eee;
  padding: 0 1rem;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.05);
}
.member-register-formular-layout__container--left_inputgroup .input select::-moz-placeholder, .member-register-formular-layout__container--left_inputgroup .input textarea::-moz-placeholder, .member-register-formular-layout__container--left_inputgroup .input input::-moz-placeholder {
  font-size: 1.4rem;
}
.member-register-formular-layout__container--left_inputgroup .input select::placeholder, .member-register-formular-layout__container--left_inputgroup .input textarea::placeholder, .member-register-formular-layout__container--left_inputgroup .input input::placeholder {
  font-size: 1.4rem;
}
.member-register-formular-layout__container--left_inputgroup .input input[type=date], .member-register-formular-layout__container--left_inputgroup .input select {
  background: #fff;
}
.member-register-formular-layout__container--left_inputgroup .input textarea {
  resize: none;
  height: 20rem;
  padding: 2rem;
}
.member-register-formular-layout__container--left_inputgroup .input div {
  position: relative;
  width: 16rem;
  height: 20rem;
  border: 0.1rem solid #eee;
  padding: 1rem;
  border-radius: 0.8rem;
  font-size: 1.6rem;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.05);
  background: #fff;
}
.member-register-formular-layout__container--left_inputgroup .input div input {
  position: absolute;
  left: 0;
  top: 0;
  width: 16rem;
  height: 20rem;
  opacity: 0;
}
.member-register-formular-layout__container--left_inputgroup .input div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 500px) {
  .member-register-formular-layout__container--left_inputgroup .input div img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.member-register-formular-layout__container--left_inputgroup .error-message {
  display: none;
  font-size: 1.6rem;
  color: red;
  padding: 0 1rem;
}
.member-register-formular-layout__container--left_inputgroup .button {
  margin: 1rem;
}
.member-register-formular-layout__container--left_inputgroup .button button {
  background-color: rgb(255, 165, 0);
  color: #fff;
  font-size: 1.6rem;
  padding: 1rem 3rem;
  border-radius: 3rem;
  transition: all 0.2s linear;
  font-weight: 700;
  border-color: rgb(213, 213, 215);
  border-width: 0.5rem;
  border-style: solid;
}
.member-register-formular-layout__container--left_inputgroup .button button i {
  margin-right: 0.5rem;
}
.member-register-formular-layout__container--left_inputgroup .button button:hover {
  background-color: rgb(163, 107, 1);
  color: #fff;
}
@media only screen and (max-width: 900px) {
  .member-register-formular-layout__container--left_inputgroup .button {
    margin: 2rem 0 0 0;
  }
  .member-register-formular-layout__container--left_inputgroup .button button {
    width: 100%;
  }
  .member-register-formular-layout__container--left_inputgroup .button button.flex-container {
    justify-content: center;
  }
}
.member-register-formular-layout__container--right {
  padding: 4rem;
  background-image: linear-gradient(rgba(0, 100, 0, 0.9), rgba(0, 100, 0, 0.9)), url(../images/objectif-1.jpg);
  border-radius: 3rem;
}
@media only screen and (max-width: 500px) {
  .member-register-formular-layout__container--right {
    padding: 3rem 2rem;
    border-radius: 1rem;
  }
}
.member-register-formular-layout__container--right_title {
  font-size: 2rem;
  padding-bottom: 1rem;
  color: #fff;
  line-height: 2rem;
}
.member-register-formular-layout__container--right_title .line {
  display: inline-block;
  width: 15rem;
  border-bottom: 0.3rem solid rgb(218, 165, 32);
}
@media only screen and (max-width: 1280px) {
  .member-register-formular-layout__container--right_title {
    font-size: 1.8rem;
  }
}
.member-register-formular-layout__container--right_subtitle {
  font-size: 3rem;
  padding-bottom: 1rem;
  color: #fff;
  line-height: 4rem;
  max-width: 70rem;
}
@media only screen and (max-width: 1280px) {
  .member-register-formular-layout__container--right_subtitle {
    font-size: 2.5rem;
    line-height: 3.5rem;
  }
}
.member-register-formular-layout__container--right_description {
  font-size: 1.6rem;
  color: #fff;
  max-width: 70rem;
  padding-bottom: 2rem;
}
.member-register-formular-layout__container--right_list li {
  position: relative;
  font-size: 1.6rem;
  color: #fff;
  padding: 0.5rem 2rem;
  border-radius: 1rem;
}
.member-register-formular-layout__container--right_list li .fa {
  font-size: 3rem;
  margin-right: 2rem;
}
.member-register-formular-layout__container--right_list li .detail .label {
  font-weight: 700;
}
.member-register-formular-layout__container--right_list li::before {
  position: absolute;
  content: "\f058";
  left: 0;
  top: 0.5rem;
  font-size: 1.6rem;
  color: #fff;
}
.member-register-formular-layout__container--right_social {
  margin-top: 2rem;
}
.member-register-formular-layout__container--right_social h2 {
  font-size: 2rem;
  color: #fff;
  text-align: center;
}
.member-register-formular-layout__container--right_social .block-link {
  margin-top: 1rem;
}
.member-register-formular-layout__container--right_social .block-link a {
  margin-right: 1rem;
}
.member-register-formular-layout__container--right_social .block-link a .fa {
  font-size: 1.6rem;
  color: #fff;
  width: 3.5rem;
  height: 3.5rem;
  border: 0.2rem solid #fff;
  border-radius: 3rem;
  transition: all 0.2s linear;
}
.member-register-formular-layout__container--right_social .block-link a .fa:hover {
  background: #fff;
  color: rgb(0, 100, 0);
}
@media only screen and (max-width: 1600px) {
  .member-register-formular-layout__container {
    max-width: 128rem;
  }
}
@media only screen and (max-width: 1280px) {
  .member-register-formular-layout__container {
    max-width: 102.4rem;
  }
}
@media only screen and (max-width: 1024px) {
  .member-register-formular-layout__container {
    max-width: 86.8rem;
  }
}
@media only screen and (max-width: 900px) {
  .member-register-formular-layout__container {
    max-width: 70rem;
  }
}

.footer-layout {
  position: relative;
  background: rgb(0, 100, 0);
  margin-top: 15rem;
}
.footer-layout__container {
  max-width: 160rem;
  margin: auto;
}
@media only screen and (max-width: 900px) {
  .footer-layout__container {
    padding: 0 !important;
  }
}
.footer-layout__container--newletter {
  position: relative;
  background: #fff;
  border-radius: 2rem;
  padding: 4rem;
  transform: translateY(-15rem);
}
@media only screen and (max-width: 900px) {
  .footer-layout__container--newletter.flex-container {
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: flex-start !important;
  }
}
@media only screen and (max-width: 500px) {
  .footer-layout__container--newletter {
    padding: 3rem 1.5rem 2rem 1.5rem !important;
  }
}
.footer-layout__container--newletter-detail h1 {
  font-size: 4rem;
  color: rgb(0, 100, 0);
  line-height: 5rem;
  max-width: 70rem;
  font-weight: bold;
}
@media only screen and (max-width: 1280px) {
  .footer-layout__container--newletter-detail h1 {
    font-size: 3rem;
    line-height: 3.5rem;
  }
}
@media only screen and (max-width: 500px) {
  .footer-layout__container--newletter-detail h1 {
    font-size: 2rem;
    line-height: 2.8rem;
  }
}
.footer-layout__container--newletter-detail p {
  max-width: 70rem;
  font-size: 1.6rem;
  padding-top: 1rem;
  padding-right: 2rem;
}
@media only screen and (max-width: 900px) {
  .footer-layout__container--newletter-form {
    width: 100%;
    margin-top: 1rem;
  }
}
.footer-layout__container--newletter-form_header li {
  padding: 0.5rem 0;
  color: #000;
}
@media only screen and (max-width: 900px) {
  .footer-layout__container--newletter-form_header li.flex-container {
    align-items: flex-start !important;
  }
}
.footer-layout__container--newletter-form_header li .fa {
  font-size: 1.6rem;
  width: 3rem;
  height: 3rem;
  background: rgb(0, 100, 0);
  border-radius: 1rem;
  color: #fff;
}
.footer-layout__container--newletter-form_header li span {
  padding-left: 1rem;
  font-size: 1.6rem;
}
@media only screen and (max-width: 900px) {
  .footer-layout__container--newletter-form_header li span {
    font-size: 1.4rem;
  }
}
.footer-layout__container--newletter-form_body {
  padding: 2rem 0 0 0;
  position: relative;
}
@media only screen and (max-width: 500px) {
  .footer-layout__container--newletter-form_body.flex-container {
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: flex-start !important;
  }
}
.footer-layout__container--newletter-form_body input {
  width: 100%;
  border: 0.2rem solid rgb(0, 100, 0);
  height: 6rem;
  padding: 0 2rem 0 7rem;
  border-radius: 3rem;
  font-size: 1.6rem;
}
.footer-layout__container--newletter-form_body input::-moz-placeholder {
  font-size: 1.6rem;
}
.footer-layout__container--newletter-form_body input::placeholder {
  font-size: 1.6rem;
}
.footer-layout__container--newletter-form_body button {
  right: 0.3rem;
  position: absolute;
  background-color: rgb(255, 165, 0);
  color: #fff;
  font-size: 1.6rem;
  padding: 1rem 3rem;
  border-radius: 3rem;
  transition: all 0.2s linear;
  font-weight: 700;
  border-color: rgb(234, 234, 238);
  border-width: 0.5rem;
  border-style: solid;
}
.footer-layout__container--newletter-form_body button i {
  margin-right: 0.5rem;
}
.footer-layout__container--newletter-form_body button:hover {
  background-color: rgb(163, 107, 1);
  color: #fff;
}
@media only screen and (max-width: 1280px) {
  .footer-layout__container--newletter-form_body button {
    font-size: 1.2rem;
    padding: 1rem 1.5rem;
  }
}
@media only screen and (max-width: 900px) {
  .footer-layout__container--newletter-form_body button {
    font-size: 1.4rem;
    padding: 1rem 2rem;
  }
}
@media only screen and (max-width: 500px) {
  .footer-layout__container--newletter-form_body button {
    right: unset;
    position: relative;
    width: 100%;
    margin-top: 1rem;
    font-size: 1.6rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    align-items: center !important;
  }
}
.footer-layout__container--newletter-form_body::before {
  content: "\f0e0";
  position: absolute;
  left: 0.6rem;
  top: 2.5rem;
  font-size: 1.8rem;
  color: #fff;
  background-color: rgba(0, 100, 0, 0.8);
  border-color: rgb(234, 234, 238);
  border-width: 0.5rem;
  border-style: solid;
  width: 5rem;
  height: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.footer-layout__container--menu {
  margin-top: -12rem;
  padding: 0 2rem;
}
@media only screen and (max-width: 900px) {
  .footer-layout__container--menu.flex-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 3rem;
    justify-content: flex-start !important;
    align-items: flex-start !important;
  }
}
@media only screen and (max-width: 600px) {
  .footer-layout__container--menu.flex-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 3rem;
    justify-content: flex-start !important;
    align-items: flex-start !important;
  }
}
.footer-layout__container--menu_block .block-img .img {
  border-radius: 1rem;
  width: 10rem;
}
.footer-layout__container--menu_block .block-aboutus {
  padding-top: 0.5rem;
  font-size: 1.6rem;
  color: #fff;
  max-width: 40rem;
}
.footer-layout__container--menu_block .block-aboutus h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: normal;
  padding: 1rem 0;
}
.footer-layout__container--menu_block .block-aboutus h3 {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: normal;
  color: #eee;
}
.footer-layout__container--menu_block .block-link {
  margin-top: 1rem;
}
.footer-layout__container--menu_block .block-link a {
  margin-right: 1rem;
}
.footer-layout__container--menu_block .block-link a .fa {
  font-size: 1.6rem;
  color: #fff;
  width: 3.5rem;
  height: 3.5rem;
  border: 0.2rem solid #fff;
  border-radius: 3rem;
  transition: all 0.2s linear;
}
.footer-layout__container--menu_block .block-link a .fa:hover {
  background: #fff;
  color: rgb(0, 100, 0);
}
.footer-layout__container--menu_block h2 {
  font-size: 2rem;
  color: #fff;
  padding-bottom: 2rem;
}
.footer-layout__container--menu_block-list li {
  position: relative;
}
.footer-layout__container--menu_block-list li a {
  display: inline-block;
  margin: 0.6rem 0 0.6rem 3rem;
  font-size: 1.6rem;
  color: #eee;
  transition: all 0.2s linear;
}
.footer-layout__container--menu_block-list li a:hover {
  color: #fff;
}
.footer-layout__container--menu_block-list li::before {
  position: absolute;
  content: "\f0c1";
  left: 0;
  top: 0.6rem;
  font-size: 1.6rem;
  color: #fff;
}
.footer-layout__container--menu_block-list li.phone::before {
  top: 0.2rem;
  font-size: 2rem;
  content: "\f095";
}
.footer-layout__container--menu_block-list li.email::before {
  top: 0.4rem;
  font-size: 1.8rem;
  content: "\f1fa";
}
.footer-layout__container--menu_block-list li.site::before {
  top: 0.5rem;
  font-size: 1.6rem;
  content: "\f0e0";
}
.footer-layout__container--menu_block-list li.address::before {
  top: 0;
  font-size: 2.3rem;
  content: "\f041";
}
.footer-layout__container--footer {
  background-color: #fff;
  padding: 2rem;
  border-radius: 2rem 2rem 0 0;
  margin-top: 2rem;
}
@media only screen and (max-width: 600px) {
  .footer-layout__container--footer.flex-container {
    flex-direction: column;
    justify-content: center;
    align-items: center !important;
  }
}
.footer-layout__container--footer .copyrighter {
  font-size: 1.6rem;
  color: rgb(0, 100, 0);
}
.footer-layout__container--footer .copyrighter span {
  font-weight: 600;
  color: rgb(0, 100, 0);
}
@media only screen and (max-width: 600px) {
  .footer-layout__container--footer .copyrighter {
    text-align: center !important;
    font-size: 1.4rem;
  }
}
.footer-layout__container--footer .designer {
  font-size: 1.6rem;
  color: rgb(0, 100, 0);
}
.footer-layout__container--footer .designer a {
  font-weight: 600;
  color: rgb(0, 100, 0);
  text-decoration: underline !important;
}
@media only screen and (max-width: 600px) {
  .footer-layout__container--footer .designer {
    font-size: 1.4rem;
    text-align: center !important;
  }
}
@media only screen and (max-width: 1600px) {
  .footer-layout__container {
    max-width: 128rem;
  }
}
@media only screen and (max-width: 1280px) {
  .footer-layout__container {
    max-width: 102.4rem;
  }
}
@media only screen and (max-width: 1024px) {
  .footer-layout__container {
    max-width: 86.8rem;
    padding: 1rem 1rem 1rem 1.5rem;
  }
}
@media only screen and (max-width: 900px) {
  .footer-layout__container {
    max-width: 70rem;
  }
}