* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

li {
  list-style-type: none;
}

button:hover {
  cursor: pointer;
}

/** COLORS **/
/** FONTS **/
/** TEXTS **/
.txt-center {
  text-align: center;
}

.txt-right {
  text-align: right;
}

.txt-nunito {
  font-family: "Nunito Sans", sans-serif;
}

.txt-fira {
  font-family: "Fira Sans", sans-serif;
}

.txt-quicksand {
  font-family: "Quicksand", sans-serif;
}

/** TEXT COLORS **/
.txt-redWine {
  color: #712433;
}

.txt-blueWater {
  color: #7CAFBF;
}

.txt-white {
  color: #FFFFFF;
}

.txt-lightGrey {
  color: #F2EEEB;
}

.txt-black {
  color: #000000;
}

.txt-greenWine {
  color: #3C6633;
}

.txt-lightGreen {
  color: #558C15;
}

.txt-peach {
  color: #BF8B7C;
}

.txt-darkGrey {
  color: #707070;
}

/** TEXT SIZES **/
.txt-size55 {
  font-size: 55px;
}
@media screen and (max-width: 992px) {
  .txt-size55 {
    font-size: 25px;
  }
}

.txt-size50 {
  font-size: 50px;
}
@media screen and (max-width: 992px) {
  .txt-size50 {
    font-size: 25px;
  }
}

.txt-size40 {
  font-size: 40px;
}
@media screen and (max-width: 992px) {
  .txt-size40 {
    font-size: 20px;
  }
}

.txt-size25 {
  font-size: 25px;
}
@media screen and (max-width: 992px) {
  .txt-size25 {
    font-size: 12px;
  }
}

.txt-size22 {
  font-size: 22px;
}
@media screen and (max-width: 992px) {
  .txt-size22 {
    font-size: 12px;
  }
}

.txt-size20 {
  font-size: 20px;
}
@media screen and (max-width: 992px) {
  .txt-size20 {
    font-size: 12px;
  }
}

.txt-size19 {
  font-size: 19px;
}
@media screen and (max-width: 992px) {
  .txt-size19 {
    font-size: 12px;
  }
}

.txt-size18 {
  font-size: 18px;
}
@media screen and (max-width: 992px) {
  .txt-size18 {
    font-size: 12px;
  }
}

.txt-size15 {
  font-size: 15px;
}
@media screen and (max-width: 992px) {
  .txt-size15 {
    font-size: 12px;
  }
}

.txt-size12 {
  font-size: 12px;
}

/** TEXT WEIGHT **/
.txt-regular {
  font-weight: 400;
}

.txt-bold {
  font-weight: 700;
}

.txt-extraBold {
  font-weight: 800;
}

.txt-underline {
  text-decoration: underline;
}

/** BACKGROUNDS COLOR **/
.bgc-redWine {
  background-color: #712433;
}

.bgc-blueWater {
  background-color: #7CAFBF;
}

.bgc-white {
  background-color: #FFFFFF;
}

.bgc-lightGrey {
  background-color: #F2EEEB;
}

.bgc-black {
  background-color: #000000;
}

.bgc-greenWine {
  background-color: #3C6633;
}

.bgc-lightGreen {
  background-color: #558C15;
}

.bgc-peach {
  background-color: #BF8B7C;
}

.bgc-darkGrey {
  background-color: #707070;
}

/** BUTTON **/
.btn-base {
  border: 4px solid #F2EEEB;
  border-radius: 40px;
  padding: 10px 80px;
  text-align: center;
  color: #F2EEEB;
  background-color: transparent;
  font-family: "Nunito Sans", sans-serif;
  font-size: 25px;
  font-weight: 400;
}

.btn-darkGrey {
  border: 4px solid #707070;
  color: #707070;
}

.btn-red {
  border: 4px solid #712433;
  color: #712433;
}

.btn-green {
  border: 4px solid #3C6633;
  color: #3C6633;
}

.btn-blueWater {
  border: 4px solid #7CAFBF;
  color: #7CAFBF;
}

/******** HEADER ********/
.meli-header li {
  list-style-type: none;
}

.meli-header a {
  text-decoration: none;
  transition: 0.3s font-size;
}

.meli-header {
  width: 100%;
  height: 10vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 25px;
  transition: 0.2s ease all;
}

/** OPTIONNAL CLASSES **/
.meli-header-float {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}

.meli-header-logo {
  width: initial;
  height: 100%;
}

.meli-header-logo img {
  width: auto;
  height: 100%;
}

.meli-header-nav {
  height: 100%;
  width: 50%;
}

.meli-header-nav ul {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.meli-responsive-header-menu-burger {
  width: 10%;
  height: 60%;
  display: none;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  border-radius: 10px;
}

.meli-responsive-header-menu-burger span {
  height: 8px;
  width: 100%;
  margin-bottom: 5px;
  background-color: black;
}

.meli-responsive-header-nav-close {
  display: none;
  width: 80%;
  margin: 50px auto 0;
  justify-content: flex-end;
  align-items: center;
  font-size: 3em;
}

/****** END - HEADER ******/
/******** FLEX ********/
.meli-around-center, .meli-around-start, .meli-around-end,
.meli-between-center, .meli-between-start, .meli-between-end,
.meli-center-center, .meli-center-start, .meli-center-end,
.meli-start-center, .meli-start-start, .meli-start-end,
.meli-end-center, .meli-end-start, .meli-end-end,
.meli-evenly-center, .meli-evenly-start, .meli-evenly-end {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.meli-flex-col, .meli-flex-nowrap {
  flex-wrap: nowrap;
}

.meli-around-center {
  justify-content: space-around;
}

.meli-around-start {
  justify-content: space-around;
  align-items: flex-start;
}

.meli-around-end {
  justify-content: space-around;
  align-items: flex-end;
}

.meli-between-center {
  justify-content: space-between;
}

.meli-between-start {
  justify-content: space-between;
  align-items: flex-start;
}

.meli-between-end {
  justify-content: space-between;
  align-items: flex-end;
}

.meli-center-center {
  justify-content: center;
}

.meli-center-start {
  justify-content: center;
  align-items: flex-start;
}

.meli-center-end {
  justify-content: center;
  align-items: flex-end;
}

.meli-start-center {
  justify-content: flex-start;
  align-items: center;
}

.meli-start-start {
  justify-content: flex-start;
  align-items: start;
}

.meli-start-end {
  justify-content: flex-start;
  align-items: flex-end;
}

.meli-end-center {
  justify-content: flex-end;
  align-items: center;
}

.meli-end-start {
  justify-content: flex-end;
  align-items: flex-start;
}

.meli-end-end {
  justify-content: flex-end;
  align-items: flex-end;
}

.meli-evenly-center {
  justify-content: space-evenly;
  align-items: center;
}

.meli-evenly-start {
  justify-content: space-evenly;
  align-items: flex-start;
}

.meli-evenly-end {
  justify-content: space-evenly;
  align-items: flex-end;
}

.meli-flex-col {
  flex-direction: column;
}

/******** END - FLEX ********/
/**  SECTION **/
.meli-section-95 {
  width: 95%;
  margin: 0 auto;
}

.meli-section-90 {
  width: 90%;
  margin: 0 auto;
}

.meli-section-85 {
  width: 85%;
  margin: 0 auto;
}

.meli-section-80 {
  width: 80%;
  margin: 0 auto;
}

.meli-section-75 {
  width: 75%;
  margin: 0 auto;
}

.meli-section-70 {
  width: 70%;
  margin: 0 auto;
}

.meli-section-65 {
  width: 65%;
  margin: 0 auto;
}

.meli-section-60 {
  width: 60%;
  margin: 0 auto;
}

.meli-section-55 {
  width: 55%;
  margin: 0 auto;
}

.meli-section-50 {
  width: 50%;
  margin: 0 auto;
}

.meli-section-45 {
  width: 45%;
  margin: 0 auto;
}

.meli-section-40 {
  width: 40%;
  margin: 0 auto;
}

.meli-section-35 {
  width: 35%;
  margin: 0 auto;
}

.meli-section-30 {
  width: 30%;
  margin: 0 auto;
}

.meli-section-25 {
  width: 25%;
  margin: 0 auto;
}

.meli-section-20 {
  width: 20%;
  margin: 0 auto;
}

.meli-section-15 {
  width: 15%;
  margin: 0 auto;
}

.meli-section-10 {
  width: 10%;
  margin: 0 auto;
}

.meli-section-5 {
  width: 5%;
  margin: 0 auto;
}

/** OPTIONNAL : WIDTH / HEIGHT GENERAL **/
.meli-section-full {
  width: 100%;
  height: 100vh;
}

.meli-width-100 img, .meli-width-95 img, .meli-width-90 img, .meli-width-85 img, .meli-width-80 img, .meli-width-75 img, .meli-width-70 img, .meli-width-65 img, .meli-width-60 img, .meli-width-55 img, .meli-width-50 img, .meli-width-45 img, .meli-width-40 img, .meli-width-35 img, .meli-width-30 img, .meli-width-25 img, .meli-width-20 img, .meli-width-15 img, .meli-width-10 img, .meli-width-5 img {
  width: 100%;
  height: auto;
}

.meli-width-100 img.height, .meli-width-95 img.height, .meli-width-90 img.height, .meli-width-85 img.height, .meli-width-80 img.height, .meli-width-75 img.height, .meli-width-70 img.height, .meli-width-65 img.height, .meli-width-60 img.height, .meli-width-55 img.height, .meli-width-50 img.height, .meli-width-45 img.height, .meli-width-40 img.height, .meli-width-35 img.height, .meli-width-30 img.height, .meli-width-25 img.height, .meli-width-20 img.height, .meli-width-15 img.height, .meli-width-10 img.height, .meli-width-5 img.height {
  width: auto;
  height: 100%;
}

.meli-width-100 {
  width: 100%;
}

.meli-width-95 {
  width: 95%;
}

.meli-width-90 {
  width: 90%;
}

.meli-width-85 {
  width: 85%;
}

.meli-width-80 {
  width: 80%;
}

.meli-width-75 {
  width: 75%;
}

.meli-width-70 {
  width: 70%;
}

.meli-width-65 {
  width: 65%;
}

.meli-width-60 {
  width: 60%;
}

.meli-width-55 {
  width: 55%;
}

.meli-width-50 {
  width: 50%;
}

.meli-width-45 {
  width: 45%;
}

.meli-width-40 {
  width: 40%;
}

.meli-width-35 {
  width: 35%;
}

.meli-width-30 {
  width: 30%;
}

.meli-width-25 {
  width: 25%;
}

.meli-width-20 {
  width: 20%;
}

.meli-width-15 {
  width: 15%;
}

.meli-width-10 {
  width: 10%;
}

.meli-width-5 {
  width: 5%;
}

/******** END - SECTIONS ********/
/******** FORM & BUTTON ********/
.meli-form-label, .meli-form-field, .meli-btn {
  font-family: sans-serif;
}

.meli-form-field {
  padding: 2px;
  border: 1px solid grey;
  border-radius: 2px;
}

.meli-btn {
  padding: 5px 10px;
  border: 1px solid black;
  border-radius: 5px;
}

/******** END - FORM & BUTTON ********/
@media screen and (max-width: 992px) {
  .meli-header-nav {
    background-color: white;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: -100%;
    transition: left 0.5s ease;
    z-index: 99999;
  }

  .meli-header-nav ul {
    /*padding: 5%;*/
    height: 50%;
    flex-direction: column;
    align-items: flex-start;
    font-size: 3em;
  }

  .meli-responsive-header-nav-close {
    display: flex;
  }

  .meli-responsive-header-menu-burger {
    display: flex;
  }
}
.base-header {
  height: 15vh;
}
.base-header .resp-header {
  display: none;
}
.base-header .row .menu-box a:hover {
  text-decoration: underline;
}
.base-header .row .menu-box .membership-icon {
  margin-left: 20px;
  display: inline-block;
  width: 30px;
  height: 30px;
  background-image: url("../../img/icon/user.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.base-footer {
  padding: 50px 10px;
}
.base-footer .resp-footer {
  display: none;
}
.base-footer li {
  margin-bottom: 30px;
}
.base-footer .bloc4 {
  margin-top: 50px;
}
.base-footer .bloc4 li {
  margin-right: 30px;
  height: 30px;
}
.base-footer .bloc4 li img {
  height: 100%;
  width: auto;
}

.partial-blog-list .article .img-box {
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
  overflow: hidden;
}
.partial-blog-list .article .img-box img {
  transform: scale(1.2);
}
.partial-blog-list .article .text-box {
  padding: 10px 0;
}
@media screen and (max-width: 992px) {
  .partial-blog-list {
    flex-direction: column;
  }
  .partial-blog-list .article {
    width: 100%;
    margin-bottom: 20px;
  }
  .partial-blog-list .article .img-box {
    border-radius: 0;
  }
}

/** TOP **/
.home-top {
  height: 50vh;
  padding: 50px 0 100px;
}
.home-top .text {
  margin-top: 30px;
}

/** SERVICES **/
.home-services {
  padding: 120px 0;
}
.home-services .text-container button {
  margin-top: 80px;
}
.home-services .button-resp {
  display: none;
}

/** CONTRACT **/
.home-contract {
  padding: 50px 0;
}
.home-contract .text-container {
  margin-top: 30px;
}

/** LAST ARTICLES **/
.home-lastarticles {
  padding-top: 70px;
  padding-bottom: 80px;
}
.home-lastarticles .articles-box {
  margin-top: 150px;
  margin-bottom: 80px;
}

.services {
  padding-bottom: 100px;
}
.services .red-banner {
  height: 110px;
  margin-bottom: 25px;
}
.services .services-content .title {
  margin-bottom: 25px;
}
.services .services-content .subtitle {
  margin-bottom: 100px;
}
.services .services-content .img-box {
  margin-bottom: 20px;
}
.services .services-content .block {
  margin-bottom: 50px;
}
.services .contact {
  padding: 75px 0;
}
.services .contact .button-box {
  margin-top: 50px;
}

@media screen and (max-width: 992px) {
  .services .services-content {
    width: 90%;
  }
  .services .services-content .block {
    margin-bottom: 100px;
  }
  .services .services-content .block .img-container, .services .services-content .block .text-container {
    width: 100%;
  }
  .services .services-content .block .img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .services .services-content .block .img-container .img-box {
    width: 30%;
  }
  .services .services-content .block .img-container .text-box {
    margin-bottom: 10px;
  }
}
.blog-list .section-top {
  min-height: 50vh;
  padding: 70px 0;
}
.blog-list .section-top .resp-blog-list {
  display: none;
}
.blog-list .section-top .content .main-block {
  overflow: hidden;
  position: relative;
}
.blog-list .section-top .content .main-block .title-box {
  position: absolute;
  top: 50%;
  left: 0;
}
.blog-list .section-top .content .main-block .title-box .text-box {
  background-color: rgba(85, 140, 21, 0.5);
  padding: 20px;
}
.blog-list .section-top .content .main-block .title-box .text-box .title-article {
  margin-bottom: 20px;
}
.blog-list .section-top .content .second-block .article {
  position: relative;
}
.blog-list .section-top .content .second-block .article .text-box {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 10px;
  background-color: rgba(85, 140, 21, 0.5);
}
.blog-list .section-list {
  padding: 120px 0;
}
.blog-list .section-list .resp-blog-list-category {
  display: none;
}
.blog-list .section-list .content {
  border-right: 4px solid #707070;
}
.blog-list .section-list .content .pagination {
  margin: 50px 0;
}
.blog-list .section-list .content .pagination .item {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin: 5px;
}
.blog-list .section-list .content .pagination .item.current {
  width: 40px;
  height: 40px;
}
.blog-list .section-list .category-box ul li {
  margin-bottom: 50px;
}

.blog-read {
  padding-top: 70px;
}
.blog-read .top .img-box {
  height: 50vh;
  overflow: hidden;
}
.blog-read .top .author-box .content {
  padding-top: 25px;
  border-top-right-radius: 60px;
  border-top-left-radius: 60px;
}
.blog-read .top .author-box .content .icon-container {
  width: 185px;
  height: 185px;
  border-radius: 50%;
  margin: 20px auto;
}
.blog-read .top .author-box .content .text-container .name {
  margin: 15px auto 20px;
}
.blog-read .top .author-box .content .text-container2 {
  padding: 20px 5px;
}
.blog-read .article-content {
  margin-top: 30px;
}
.blog-read .article-content .content {
  margin-top: 50px;
  padding-bottom: 130px;
}
.blog-read .article-content .content p {
  font-family: "Nunito Sans", sans-serif !important;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
}
.blog-read .article-content .content a {
  font-family: "Nunito Sans", sans-serif !important;
  font-weight: 400;
  font-size: 18px;
}
.blog-read .pagination {
  padding: 50px 0 200px;
}

.legal {
  padding: 65px 20px;
}
.legal .title {
  margin-bottom: 110px;
}
.legal .content p {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #000000;
  margin: 15px 0;
}
@media screen and (max-width: 992px) {
  .legal .content p {
    font-size: 12px;
  }
}
.legal .content h2 {
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  font-size: 40px;
  color: #712433;
  margin: 30px 0 10px;
}
@media screen and (max-width: 992px) {
  .legal .content h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 992px) {
  .legal .content {
    width: 100%;
  }
}

.contact {
  padding: 110px 20px 250px;
}
.contact .content .title {
  margin-bottom: 120px;
}
.contact .content form input, .contact .content form textarea {
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 30px;
  font-family: "Nunito Sans", sans-serif;
}

.login {
  padding: 110px 0 200px;
}
.login .title {
  margin-bottom: 60px;
}
.login form #inputEmail, .login form #inputPassword {
  border: none;
  border-bottom: 1px solid #707070;
  background-color: transparent;
  padding: 5px 5px 15px 0;
}
.login form #inputEmail::placeholder, .login form #inputPassword::placeholder {
  color: #707070;
  font-family: "Nunito Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
}
.login form #inputEmail {
  margin-bottom: 80px;
}
.login form .inputPassword-box {
  position: relative;
  margin-bottom: 12px;
}
.login form .inputPassword-box .icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url("../../img/icon/oeil.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.login form .inputPassword-box .icon:hover {
  cursor: pointer;
}
.login form .button {
  margin-top: 80px;
}

.membership-base-main {
  min-height: 80vh;
}

@media screen and (max-width: 992px) {
  .row .logo-box {
    display: none;
  }
  .row .menu-box {
    margin: 0 auto;
  }
}
.membership-content {
  padding-top: 20px;
  padding-bottom: 120px;
}
.membership-content .menu .block {
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: 30px 30px 0 0;
  transform: translateY(3px);
  z-index: 10;
}
.membership-content .menu .block.currentPage {
  border-top: 4px solid #7CAFBF;
  border-left: 4px solid #7CAFBF;
  border-right: 4px solid #7CAFBF;
  transform: translateY(4px);
}
.membership-content .menu .block .icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.membership-content .menu .block .message {
  background-image: url("../../img/icon/message.png");
}
.membership-content .menu .block .parametres {
  background-image: url("../../img/icon/parametres.png");
}
.membership-content .menu .block .document {
  background-image: url("../../img/icon/document.png");
}
@media screen and (max-width: 992px) {
  .membership-content {
    width: 85%;
  }
  .membership-content .menu .block {
    justify-content: space-evenly;
    align-items: center;
    padding: 10px 0;
  }
  .membership-content .menu .block .label {
    font-size: 10px;
  }
  .membership-content .menu .block .icon {
    width: 8px;
  }
}

.membership-welcome {
  height: 60vh;
}

.membership-messenger {
  padding: 50px 0;
  border: 4px solid #7CAFBF;
}
.membership-messenger .read-messages {
  padding: 10px 20px 50px;
  border: 1px solid transparent;
  border-radius: 10px;
  margin-bottom: 25px;
  height: 50vh;
  overflow-y: scroll;
}
.membership-messenger .read-messages .divider {
  width: 70%;
  height: 1px;
  background-color: #707070;
  margin: 50px auto 30px;
}
.membership-messenger .write-message textarea {
  margin-bottom: 70px;
  width: 100%;
  background-color: #F2EEEB;
  border: 1px solid transparent;
  resize: none;
  padding: 15px 20px;
  border-radius: 10px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 20px;
  color: #707070;
}
.membership-messenger .write-message textarea::placeholder {
  font-family: "Nunito Sans", sans-serif;
  font-size: 20px;
  color: #707070;
}
@media screen and (max-width: 992px) {
  .membership-messenger .container .read-messages, .membership-messenger .container .write-message {
    font-size: 12px;
  }
  .membership-messenger .container .read-messages textarea::placeholder, .membership-messenger .container .write-message textarea::placeholder {
    font-size: 12px;
  }
}

.membership-documents {
  padding: 50px 0;
  border: 4px solid #7CAFBF;
}
.membership-documents form {
  margin-top: 50px;
}
.membership-documents form .name-box {
  margin: 50px 0 20px;
}
.membership-documents form .name-box input {
  background-color: #F2EEEB;
  border: 1px solid transparent;
  padding: 10px;
  border-radius: 10px;
  width: 50%;
}
.membership-documents form .name-box input::placeholder {
  color: #707070;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 400;
  font-size: 15px;
}
.membership-documents form .submit-box {
  margin-top: 30px;
}
.membership-documents .divider {
  height: 1px;
  background-color: #707070;
  width: 80%;
  margin: 80px auto 50px;
}
.membership-documents .file-box {
  margin-top: 20px;
}
.membership-documents .file-box .file {
  margin-bottom: 10px;
}
.membership-documents .file-box .file .icon {
  width: 70px;
  height: 70px;
  background-color: red;
  margin-bottom: 10px;
}
.membership-documents .file-box .file button {
  padding: 5px 20px;
  font-size: 12px;
}

.membership-parameters {
  padding: 50px 0;
  border: 4px solid #7CAFBF;
}
.membership-parameters .left-box p {
  margin-bottom: 45px;
}
.membership-parameters .right-box form .field {
  margin-top: 40px;
}
.membership-parameters .right-box form .field > * {
  width: 100%;
}
.membership-parameters .right-box form .field input {
  border: none;
  border-bottom: 1px solid #000000;
  background-color: transparent;
  padding-bottom: 10px;
}
.membership-parameters .right-box form .field .passwordInput-box {
  position: relative;
}
.membership-parameters .right-box form .field .passwordInput-box .icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: red;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.membership-parameters .right-box form .submit-box {
  margin-top: 100px;
}
.membership-parameters .right-box form .submit-box button {
  padding: 10px 20px;
  font-size: 20px;
}

@media screen and (max-width: 992px) {
  .membership-parameters .container {
    flex-direction: column;
  }
  .membership-parameters .container .left-box, .membership-parameters .container .right-box {
    width: 100%;
  }
  .membership-parameters .container .right-box {
    margin-top: 100px;
  }
}
@media screen and (max-width: 992px) {
  .base-header {
    justify-content: flex-start;
    padding-left: 30px;
  }
  .base-header .desktop-header {
    display: none;
  }
  .base-header .resp-header {
    display: block;
  }
  .base-header .resp-header .burger {
    width: 40px;
  }
  .base-header .resp-header .burger span {
    margin-bottom: 8px;
    display: block;
    height: 5px;
    width: 100%;
  }
  .base-header .resp-header .menu {
    position: absolute;
    top: 0;
    left: -100%;
    transition: 0.3s ease left;
    z-index: 999999;
    height: 100vh;
    padding: 20px 25px;
  }
  .base-header .resp-header .menu.open {
    left: 0;
  }
  .base-header .resp-header .menu .top-box {
    margin-bottom: 30px;
  }
  .base-header .resp-header .menu nav ul li {
    margin-bottom: 30px;
  }

  .base-footer .desktop-footer {
    display: none;
  }
  .base-footer .resp-footer {
    display: block;
  }
  .base-footer .resp-footer li {
    margin-bottom: 5px;
  }
  .base-footer .resp-footer .social-box {
    height: 20px;
  }
  .base-footer .resp-footer .social-box > div {
    height: 100%;
  }
  .base-footer .resp-footer .social-box .img-box {
    display: block;
    height: 100%;
  }
  .base-footer .resp-footer .social-box .img-box img {
    height: 100%;
    width: auto;
  }
}
@media screen and (max-width: 992px) {
  .home-top {
    height: initial;
  }
  .home-top .btn-box {
    display: none;
  }

  .home-services .text-container, .home-services .img-container {
    width: 100%;
  }
  .home-services .text-container p, .home-services .img-container p {
    margin-bottom: 30px;
  }
  .home-services .button-desktop {
    display: none;
  }
  .home-services .resp-button-box {
    margin-top: 20px;
  }
  .home-services .resp-button-box .button-resp {
    display: block;
  }

  .home-contract .icons-container {
    width: 100%;
  }

  .home-lastarticles .articles-box {
    margin-top: 30px;
    width: 85%;
  }
  .home-lastarticles button {
    border: 4px solid #3C6633;
    color: #3C6633;
  }
}
@media screen and (max-width: 992px) {
  .blog-list .section-top .content {
    display: none;
  }
  .blog-list .section-top .resp-blog-list {
    display: block;
  }
  .blog-list .section-top .resp-blog-list .main-article {
    position: relative;
  }
  .blog-list .section-top .resp-blog-list .main-article .title-box {
    position: absolute;
    top: 50%;
    left: 0;
  }
  .blog-list .section-top .resp-blog-list .main-article .title-box .text-box {
    background-color: rgba(85, 140, 21, 0.5);
    padding: 20px;
  }
  .blog-list .section-top .resp-blog-list .main-article .title-box .text-box .title-article {
    margin-bottom: 20px;
  }
  .blog-list .section-top .resp-blog-list .block {
    position: relative;
  }
  .blog-list .section-top .resp-blog-list .block .text-box {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 10px;
    background-color: rgba(85, 140, 21, 0.5);
  }
  .blog-list .section-list {
    padding: 0;
  }
  .blog-list .section-list .content {
    border: none;
    width: 100%;
  }
  .blog-list .section-list .content .list-content {
    width: 100%;
  }
  .blog-list .section-list .content .resp-blog-list-category {
    display: flex;
    margin: 30px auto;
  }
  .blog-list .section-list .content .resp-blog-list-category .cat-line {
    border-bottom: 1px solid #707070;
  }
  .blog-list .section-list .content .resp-blog-list-category .cat-line .icon {
    width: 15px;
    height: 15px;
    background-image: url("../../img/icon/filter.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .blog-list .section-list .content .resp-blog-list-category .arrow {
    width: 15px;
    height: 15px;
    background-image: url("../../img/icon/arrow-down.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .blog-list .section-list .content .resp-blog-list-category .category-list-content {
    display: none;
    padding-top: 10px;
  }
  .blog-list .section-list .content .resp-blog-list-category .category-list-content.open {
    display: block;
  }
  .blog-list .section-list .content .resp-blog-list-category .category-list-content li {
    margin-bottom: 10px;
  }
  .blog-list .section-list .category-box {
    display: none;
  }
}
/** Owl carousel **/
.owl-dots {
  padding: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.owl-dots button span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #558C15;
  border-radius: 50%;
  margin: 5px;
}
.owl-dots button.active span {
  width: 15px;
  height: 15px;
}

@media screen and (max-width: 992px) {
  .blog-read {
    padding-top: 10px;
  }
  .blog-read .top {
    width: 100%;
  }
  .blog-read .top .author-box {
    display: none;
  }
  .blog-read .top .img-box {
    width: 100%;
    height: initial;
  }
}
@media screen and (max-width: 992px) {
  .contact .content {
    width: 100%;
  }
  .contact .content .title {
    margin-bottom: 40px;
  }
  .contact .content form .row {
    flex-direction: column;
  }
  .contact .content form input {
    width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .login form {
    width: 70%;
  }
}

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