@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Thin.ttf");
  font-weight: 100;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Light.ttf");
  font-weight: 200;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Regular.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Black.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "Roboto";
  src: url("../fonts/Roboto/Roboto-Bold.ttf");
  font-weight: 900;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

html body {
  background-color: #fafaf6;
}
html body .title-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
html body .title-container h1 {
  margin-bottom: 0;
}
html body.admin main {
  width: 75%;
  left: 25%;
  position: relative;
  padding: 30px 5%;
}
html body.admin main a.btn {
  text-decoration: none;
}
html body.admin main .card {
  background: white;
  width: fit-content;
  box-shadow: 0 0 10px -10px black;
  height: auto;
  padding: 20px;
  border-radius: 5px;
}
html body.admin main .card h3 {
  text-align: center;
  margin-bottom: 5px;
  font-weight: 400;
  color: #226089;
}
html body.admin main .card a {
  text-decoration: none;
}
html body.admin main h1 {
  color: #226089;
  margin-bottom: 20px;
}
html body.admin main .editor-toolbar.fixed {
  position: fixed;
  z-index: 2;
  top: 0;
  width: 65%;
}
html body.public main h1, html body.public main h2 {
  margin: 0;
  margin-bottom: 20px;
}
html body.public main h3 {
  margin-bottom: 10px;
}
html body main {
  min-height: 100vh;
  background-color: #fafaf6;
  padding: 0 10%;
  padding-top: 13vh;
}
html body main .card-container {
  display: flex;
  justify-content: flex-start;
}
html body main .card-container.column {
  flex-direction: column;
}
html body main .card-container.space-between {
  justify-content: space-between;
}
html body main .card-container .card:first-child {
  margin-left: 0;
}
html body main .card-container .card:last-child {
  margin-right: 0;
}
html body main a {
  text-decoration: none;
}
html body main a:not(.btn):hover {
  text-decoration: underline;
}
html body main a.link-return {
  color: #8f8c8c;
  font-size: 14px;
  font-weight: 300;
}
html body main .container {
  width: 100%;
  display: flex;
}
html body main .container .left {
  width: 30%;
  margin-right: 1%;
}
html body main .container .right {
  width: 70%;
  margin-left: 1%;
}
html body main .card {
  width: 100%;
  border-radius: 5px;
  padding: 10px;
  box-shadow: 0 0 40px -30px black;
  background: linear-gradient(177deg, rgb(34, 96, 137) 40%, rgb(69, 146, 175) 80%);
}
html body main .card.white {
  background: white;
}
html body main .card.white p a {
  color: #226089;
}
html body main .card.white-opacity {
  background: rgba(255, 255, 255, 0.3411764706);
}
html body main .card.white-opacity a {
  color: #226089;
}
html body main .card.brown {
  background: #e3c4a8;
  color: white;
}
html body main .card.transparent {
  background: none;
  box-shadow: none;
}
html body main .card a {
  color: white;
}
html body main .card a h3 {
  text-align: center;
  color: white;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
}
html body main .card img {
  width: 100%;
  margin: 10px 0;
  border-radius: 5px;
  box-shadow: 0 0 30px -15px white;
}
html body main .card ul li {
  list-style: none;
  margin-bottom: 10px;
}
html body main .card ul li a {
  color: white;
  font-weight: 300;
  font-size: 15px;
}

@media (max-width: 800px) {
  html body main {
    padding: 0 5%;
    padding-top: 6vh;
  }
  html body main .container {
    flex-direction: column;
  }
  html body main .container .left, html body main .container .right {
    width: 100%;
    margin: 0;
  }
  html body main .container .left {
    margin-bottom: 20px;
  }
}
html body header {
  height: 12vh;
  background-color: transparent;
  width: 100%;
  position: fixed;
  display: flex;
  align-items: center;
  flex-direction: column;
  z-index: 999;
  transition: 150ms;
}
html body header:not(.headerTransparent) {
  background-color: #226089;
}
html body header.headerTransparent.is-active {
  background-color: #226089;
}
html body header nav {
  padding: 1vh 10%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
html body header nav a {
  text-decoration: none;
  color: white;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  padding: 0 10px;
  transition: 150ms;
}
html body header nav.market {
  background-color: #e3c4a8;
  height: 5vh;
}
html body header nav.market div.call-to-action a {
  padding: 0;
}
html body header nav.market div.call-to-action a i {
  margin-right: 5px;
}
html body header nav.market div.call-to-action a span {
  font-weight: 300;
}
html body header nav.market div.social-media {
  display: flex;
}
html body header nav.market div.social-media a {
  margin-right: 10px;
  font-size: 20px;
}
html body header nav.market div.social-media a:last-child {
  margin-right: 0;
}
html body header nav.market span.mobile {
  display: none;
  color: #226089;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 14px;
  cursor: pointer;
}
html body header nav.menu {
  height: 7vh;
}
html body header nav.menu a.logo {
  color: white;
  font-size: 27px;
  font-weight: 800;
  width: 10%;
  justify-content: flex-start;
  padding: 0;
}
html body header nav.menu div {
  width: 90%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
html body header nav.menu div ul {
  display: flex;
  align-self: center;
  height: 70%;
}
html body header nav.menu div ul li {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 20px;
}
html body header nav.menu div ul li:last-child {
  margin-right: 0;
}
html body header nav.menu div ul li a {
  font-size: 18px;
  font-weight: 600;
}
html body header nav.menu div ul li a:hover {
  background-color: rgba(255, 255, 255, 0.3411764706);
}
html body header nav.menu div button {
  justify-content: flex-end;
}
html body header nav.menu div button .round {
  height: 5vh;
  width: 5vh;
  border-radius: 100%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 150ms;
}
html body header nav.menu div button .round:hover {
  background-color: rgba(255, 255, 255, 0.3411764706);
}
html body header nav.menu div button .round svg {
  color: white;
}
html body header nav.menu div form {
  position: absolute;
  bottom: -35px;
  display: none;
}
html body header nav.menu div form input.search {
  width: 250px;
}

@media (max-width: 800px) {
  html body header {
    height: 4vh;
    align-items: flex-start;
  }
  html body header nav.market {
    padding: 1vh 5%;
    width: 100%;
    z-index: 2;
  }
  html body header nav.market span.mobile {
    display: block;
  }
  html body header nav.menu a.logo {
    display: none;
  }
  html body header nav.menu div {
    display: none;
    background: #226089;
    width: 100%;
    position: absolute;
    top: 4vh;
    left: 0;
    height: 0;
    box-shadow: 0 0px 20px -14px black;
    transition: 300ms;
  }
  html body header nav.menu div.active {
    height: 220px;
    opacity: 1;
    padding: 5% 0;
  }
  html body header nav.menu div ul {
    flex-direction: column;
    opacity: 0;
    position: relative;
    top: -10vh;
    transition: 300ms;
  }
  html body header nav.menu div ul.active {
    top: 0;
    opacity: 1;
  }
  html body header nav.menu div ul li {
    margin: 0;
    margin-bottom: 20px;
  }
  html body header nav.menu div ul li:last-child {
    margin-bottom: 0;
  }
}
footer {
  background: linear-gradient(177deg, rgb(34, 96, 137) 40%, rgb(69, 146, 175) 80%);
  padding: 50px 10%;
  display: flex;
}
footer .left, footer .right {
  display: flex;
  width: 50%;
}
footer .left {
  flex-direction: column;
  justify-content: center;
}
footer .left h6 {
  color: #e3c4a8;
  font-size: 40px;
  font-weight: 700;
}
footer .left span {
  color: white;
  font-size: 16px;
  font-weight: 200;
}
footer .right {
  align-items: center;
  justify-content: flex-end;
}
footer .right ul {
  text-align: center;
  display: flex;
  margin: 0 20px;
}
footer .right ul li {
  list-style: none;
  margin-bottom: 5px;
}
footer .right ul li a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-weight: 300;
}
footer .right ul li span {
  color: white;
  font-size: 22px;
  font-weight: 500;
}
footer .right ul li ul {
  margin-top: 15px;
  flex-direction: column;
}
footer .right ul li ul li {
  margin-bottom: 5px;
}
footer .right ul li ul li:last-child a {
  font-weight: 500;
}
footer .right ul li ul li a {
  font-size: 14px;
}

@media (max-width: 800px) {
  footer {
    padding: 50px 5%;
    flex-direction: column;
    align-items: center;
  }
  footer .left span {
    text-align: center;
  }
  footer .right {
    flex-direction: column;
    width: 90%;
  }
  footer .right ul {
    flex-direction: column;
    margin-top: 10px;
  }
}
button {
  background: #226089;
  border: none;
  height: 40px;
  min-width: 200px;
  width: auto;
  padding: 0 10px;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 150ms;
}
button:hover {
  background: #1b4c6d;
}
button.no-appearance {
  background-color: unset;
  box-shadow: unset;
}
button.brown {
  background: #e3c4a8;
  color: #226089;
}
button.brown:hover {
  background: #bba18b;
}
button.red {
  background: #d94949;
  color: white;
}
button.red:hover {
  background: #c44242;
}
button.empty-blue {
  background-color: white;
  border: 3px solid #226089;
  color: #226089;
}
button i {
  margin-right: 5px;
}

input, textarea, select {
  border-radius: 5px;
  padding: 5px;
  margin-bottom: 10px;
  border: none;
  background: white;
  outline: none;
  height: 35px;
  border: 3px solid transparent;
  transition: 150ms;
}
input::placeholder, textarea::placeholder, select::placeholder {
  font-weight: 300;
}
input:focus, textarea:focus, select:focus {
  border-bottom: 3px solid #e3c4a8;
}
input.broken-white, textarea.broken-white, select.broken-white {
  background: #fafaf6;
}

form {
  display: flex;
  flex-direction: column;
}
form ul, form .flash {
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 5px;
  color: white;
  font-size: 15px;
  font-weight: 300;
  background: #d94949;
}
form ul.success, form .flash.success {
  background: #49d967;
}
form ul li, form .flash li {
  list-style: none;
}
form div div, form #menu div {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  /* MARDOWN EDITOR */
  /* */
}
form div div.hidden, form #menu div.hidden {
  display: none;
}
form div div .editor-toolbar, form #menu div .editor-toolbar {
  flex-direction: row;
  background: white;
  opacity: 1;
  margin-bottom: 0;
  border: 1px solid #d6d4d4;
}
form div div .CodeMirror .CodeMirror-scroll div:nth-child(2), form #menu div .CodeMirror .CodeMirror-scroll div:nth-child(2) {
  margin-bottom: 0;
}
form div div .CodeMirror .CodeMirror-scroll div.CodeMirror-sizer div.CodeMirror-lines div:nth-child(3), form #menu div .CodeMirror .CodeMirror-scroll div.CodeMirror-sizer div.CodeMirror-lines div:nth-child(3) {
  margin-bottom: 0;
}
form div div .CodeMirror .CodeMirror-scroll div.CodeMirror-sizer div.CodeMirror-lines div div.CodeMirror-cursors, form div div .CodeMirror .CodeMirror-scroll div.CodeMirror-sizer div.CodeMirror-lines div div:nth-child(4), form #menu div .CodeMirror .CodeMirror-scroll div.CodeMirror-sizer div.CodeMirror-lines div div.CodeMirror-cursors, form #menu div .CodeMirror .CodeMirror-scroll div.CodeMirror-sizer div.CodeMirror-lines div div:nth-child(4) {
  margin-bottom: 0;
}
form div div .editor-preview-side, form #menu div .editor-preview-side {
  display: none;
}
form div div label, form #menu div label {
  color: #8f8c8c;
}
form div div p, form #menu div p {
  color: #8f8c8c;
  font-size: 14px;
  font-weight: 300;
}
form label {
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 5px;
}
form textarea {
  height: 200px;
  resize: vertical;
}
form button {
  align-self: end;
}
form .notification {
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 5px;
  color: white;
  font-size: 15px;
  font-weight: 300;
}
form .notification.error {
  background: #d94949;
}
form .btn-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
form img {
  max-width: 200px;
  width: fit-content;
  margin-bottom: 20px;
}

html body.admin aside {
  background: white;
  width: 25%;
  position: fixed;
  min-height: 100vh;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  box-shadow: 0 0 20px -20px black;
}
html body.admin aside a {
  width: 100%;
  text-decoration: none;
  color: #226089;
  font-size: 18px;
  font-weight: 400;
}
html body.admin aside .top {
  display: flex;
  flex-direction: column;
  align-items: center;
}
html body.admin aside .top span {
  text-align: center;
  color: #226089;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px;
}
html body.admin aside .top span:last-child {
  font-size: 14px;
}
html body.admin aside .top hr {
  width: 50%;
  margin: 10px;
  color: #226089;
}
html body.admin aside ul {
  width: 100%;
}
html body.admin aside ul li {
  list-style: none;
  width: 100%;
  text-align: left;
  margin-bottom: 5px;
}

table {
  background: white;
  border-radius: 5px;
  padding: 10px;
  width: 100%;
}
table thead {
  background: #e3c4a8;
}
table thead tr th {
  padding: 10px;
}
table thead tr th:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
table thead tr th:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
table tbody tr td {
  padding: 10px;
}
table tbody tr td.long-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}
table tbody tr td a {
  color: #226089;
}

html body main.login {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20%;
  width: 100%;
  left: 0;
}
html body main.login h1, html body main.login h2, html body main.login hr {
  color: #226089;
  text-transform: uppercase;
  text-align: center;
}
html body main.login h1 {
  text-transform: uppercase;
}
html body main.login hr {
  width: 20%;
  margin: 10px;
}
html body main.login h2 {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 20px;
}
html body main.login a {
  align-self: baseline;
  color: #8f8c8c;
  font-weight: 200;
  font-size: 14px;
  margin-bottom: 5px;
}
html body main.login form {
  background-color: white;
  width: 100%;
  padding: 20px;
}
html body main.login form input {
  background: #fafaf6;
}

html body.admin main.home .card-container.column {
  margin-bottom: 20px;
}

html body main.home {
  padding-top: 5vh;
}
html body main.home section {
  margin: 50px 0;
}
html body main.home section h2 {
  color: #226089;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 800;
  min-width: 100%;
}
html body main.home section.call-to-action-top {
  height: 77vh;
  width: 125.5%;
  left: -13%;
  position: relative;
  background-image: url("/assets/img/global/call-to-action.webp");
  padding-top: 0;
  margin-top: 0;
  background-position: top;
  background-size: cover;
  display: flex;
  margin-bottom: 0;
}
html body main.home section.call-to-action-top .market-block {
  padding-left: 10%;
  padding-top: 10%;
  z-index: 2;
}
html body main.home section.call-to-action-top .market-block h1, html body main.home section.call-to-action-top .market-block h2 {
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.3098039216);
  color: white;
}
html body main.home section.call-to-action-top .market-block h1 {
  font-weight: 900;
  font-size: 32px;
}
html body main.home section.call-to-action-top .market-block h2 {
  color: white;
  font-weight: 200;
  font-size: 24px;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.3098039216);
}
html body main.home section.call-to-action-top .filter {
  background: linear-gradient(359deg, rgba(34, 96, 137, 0.5) 20%, rgba(69, 146, 175, 0.2) 50%);
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 0;
}
html body main.home section.picto-market {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6vh;
  height: 12vh;
}
html body main.home section.picto-market .picto-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}
html body main.home section.picto-market .picto-container i {
  font-size: 22px;
  margin-bottom: 5px;
}
html body main.home section.picto-market .picto-container h3 {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  max-width: 80%;
  color: #226089;
}
html body main.home section.market {
  width: 100%;
  height: 100px;
  border-radius: 5px;
  background-color: #226089;
  display: flex;
  padding: 10px 0;
  position: relative;
}
html body main.home section.market div {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-top-right-radius: 60px;
  border-bottom-right-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background-color: white;
  position: absolute;
  padding-left: 6%;
  box-shadow: 10px 0 30px -24px black;
  top: 10px;
  height: 75px;
  width: 28%;
}
html body main.home section.market div:nth-child(2) {
  left: 24%;
  z-index: 3;
}
html body main.home section.market div:nth-child(3) {
  left: 48%;
  z-index: 2;
}
html body main.home section.market div:nth-child(4) {
  left: 72%;
  z-index: 1;
}
html body main.home section.market div.colored {
  background-color: #e3c4a8;
  z-index: 4;
  left: unset;
  min-width: 240px;
}
html body main.home section.market div.colored h2 {
  font-weight: 500;
  font-size: 16px;
  color: #226089;
  width: unset;
  margin-bottom: 0;
}
html body main.home section.market div span {
  color: #226089;
  font-weight: 500;
  font-size: 16px;
  width: 160px;
  color: #226089;
}
html body main.home section.market div span.number {
  align-self: flex-start;
  margin-right: 10px;
  font-size: 20px;
  font-weight: 900;
  color: #000000;
  width: unset;
}
html body main.home section.cards {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 20px;
}
html body main.home section.cards .card {
  width: 20%;
  min-width: 250px;
  margin: 20px;
}
html body main.home section.cards .card:nth-child(2) {
  margin-left: 0;
}
html body main.home section.cards .card:last-child {
  margin-right: 0;
}
html body main.home section.cards .card a h3 {
  font-weight: 400;
  font-size: 16px;
}
html body main.home section.cards .card img {
  height: 125px;
  object-fit: cover;
}
html body main.home section.quotation-blog .card-container .card {
  background: white;
  border-radius: 5px;
  border: 1px solid #f1f1f1;
  box-shadow: 0 10px 30px -40px black;
  width: 49%;
}
html body main.home section.quotation-blog .card-container .card .card-header {
  padding: 10px;
  background: #e3c4a8;
  border-radius: 5px;
}
html body main.home section.quotation-blog .card-container .card .card-header h3 {
  color: white;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
}
html body main.home section.quotation-blog .card-container .card ul {
  padding: 10px;
}
html body main.home section.quotation-blog .card-container .card ul li {
  list-style: none;
  margin-bottom: 5px;
}
html body main.home section.quotation-blog .card-container .card ul li a {
  color: black;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
}
html body main.home section.workers ul {
  display: flex;
}
html body main.home section.workers ul li {
  margin-bottom: 20px;
  margin-right: 50px;
}
html body main.home section.workers ul li div span a {
  color: #226089;
}
html body main.home section.call-to-action {
  width: 125.5%;
  position: relative;
  left: -13%;
  padding: 50px 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url("https://images.unsplash.com/photo-1568992687947-868a62a9f521?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2832&q=80");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
html body main.home section.call-to-action .filter {
  background: linear-gradient(0deg, rgb(34, 96, 137) 31%, rgb(69, 146, 175) 100%);
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  opacity: 0.7;
}
html body main.home section.call-to-action h5 {
  font-size: 50px;
  color: white;
  font-weight: 600;
  text-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2588235294);
  margin-bottom: 5px;
  z-index: 2;
}
html body main.home section.call-to-action h6 {
  font-size: 18px;
  font-weight: 300;
  color: white;
  z-index: 2;
}
html body main.home section.call-to-action a {
  margin-top: 30px;
  z-index: 2;
}

@media (max-width: 800px) {
  html body main.home {
    padding: 0;
  }
  html body main.home section.call-to-action-top {
    width: 100%;
    left: 0;
    align-items: center;
    justify-content: center;
  }
  html body main.home section.call-to-action-top .market-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  html body main.home section.call-to-action-top .market-block h2 {
    text-align: center;
  }
  html body main.home section.picto-market {
    flex-wrap: wrap;
    height: auto;
  }
  html body main.home section.picto-market .picto-container {
    width: 45%;
  }
  html body main.home section.picto-market .picto-container i {
    font-size: 18px;
  }
  html body main.home section.picto-market .picto-container h3 {
    font-size: 12px;
  }
  html body main.home section.market {
    display: none;
  }
  html body main.home section.cards, html body main.home section.quotation-blog {
    padding: 0 5%;
  }
  html body main.home section.cards .card, html body main.home section.quotation-blog .card {
    width: 100%;
    margin: 0;
    margin-bottom: 20px;
  }
  html body main.home section.cards .card:last-child, html body main.home section.quotation-blog .card:last-child {
    margin-bottom: 0;
  }
  html body main.home section.quotation-blog .card-container {
    flex-direction: column;
  }
  html body main.home section.quotation-blog .card-container .card {
    width: 100%;
  }
  html body main.home section.call-to-action {
    width: 100%;
    left: 0;
  }
  html body main.home section.call-to-action h5, html body main.home section.call-to-action h6 {
    text-align: center;
  }
}
html body main.tree-nav .container .right {
  display: flex;
  flex-direction: column;
  align-items: center;
}
html body main.tree-nav .container .right i.arrow-inter-section {
  font-size: 42px;
  margin-top: 20px;
  background: linear-gradient(177deg, rgb(69, 146, 175) 30%, rgb(227, 196, 168) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: rgb(227, 196, 168);
}
html body main.tree-nav .container .right .card.white h2 {
  color: #226089;
}
html body main.tree-nav .container .right .card.white p {
  font-weight: 300;
}
html body main.tree-nav .container .right .card.brown {
  margin-top: 20px;
}
html body main.tree-nav .container .right .card.brown h3 {
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}
html body main.tree-nav .container .right .card.brown .card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
html body main.tree-nav .container .right .card.brown .card-container .card {
  width: auto;
  margin: 1% 0;
  min-width: 48%;
}
html body main.tree-nav .container .right .card.brown .card-container .card a {
  color: #226089;
}

html body main.blog .article-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
html body main.blog .article-container .card {
  width: 48%;
  margin-bottom: 20px;
  height: fit-content;
}
html body main.blog .article-container .card:first-child {
  margin-right: 2%;
}
html body main.blog .article-container .card.first {
  display: flex;
  margin-bottom: 2%;
  margin-right: 0;
  width: 100%;
}
html body main.blog .article-container .card.first img {
  height: 100px;
  width: 20%;
  margin-right: 20px;
}
html body main.blog .article-container .card.first .container {
  display: flex;
  width: 80%;
}
html body main.blog .article-container .card.first .container h2 {
  color: white;
  margin-bottom: 10px;
}
html body main.blog .article-container .card.first .container h3 {
  font-weight: 300;
  font-size: 16px;
}
html body main.blog .article-container .card.first .container .text {
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 5;
  overflow: hidden;
  white-space: initial;
}
html body main.blog .article-container .card:not(.first) {
  max-width: 300px;
}
html body main.blog .article-container .card .container {
  flex-direction: column;
}
html body main.blog .article-container .card .container .text {
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 5;
  overflow: hidden;
  white-space: initial;
  font-size: 12px;
}
html body main.blog .article-container .card h2 {
  color: #226089;
}
html body main.blog .article-container .card .text h3 {
  font-weight: 500;
}
html body main.blog .article-container .card .text p {
  font-weight: 300;
}
html body main.article {
  margin-bottom: 20px;
}
html body main.article img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  margin-bottom: 20px;
  box-shadow: 0 20px 90px -70px black;
  border-radius: 5px;
}
html body main.article p {
  font-weight: 300;
}
html body main.article h3 {
  margin-top: 20px;
}

html body main.testimonies .testimonies-container {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
html body main.testimonies .testimonies-container .card {
  width: 31.3%;
  margin: 1%;
  min-width: 250px;
  max-width: 450px;
}
html body main.testimonies .testimonies-container .card span.title {
  font-size: 18px;
}
html body main.testimonies .testimonies-container .card .name-container {
  color: #8f8c8c;
  margin: 10px 0;
}
html body main.testimonies .testimonies-container .card .name-container span {
  font-weight: 300;
}
html body main.testimonies .testimonies-container .card p {
  font-weight: 300;
  font-size: 15px;
  font-style: italic;
}

html body main.search .card-container .card {
  margin-bottom: 20px;
}
html body main.search .card-container .card a {
  color: #226089;
  display: flex;
  align-items: center;
}
html body main.search .card-container .card a img {
  width: 80px;
  margin-right: 10px;
}
html body main.search .card-container .card a h2 {
  font-size: 22px;
  font-weight: 400;
}

main.worker div.title {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
main.worker div.title .flex-column h1 {
  color: #226089;
}
main.worker div.title .flex-column h2 {
  color: #bba18b;
  font-weight: 400;
}
main.worker div.title .flex-column span {
  color: #8f8c8c;
}
main.worker div.title img {
  border-radius: 100%;
  max-width: 200px;
  margin-right: 20px;
}

/*# sourceMappingURL=_main.css.map */
