@import "calendar.css";
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Bold.woff2");
  src: local("Manrope Bold"), local("Manrope-Bold"), url("../fonts/Manrope-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Medium.woff2");
  src: local("Manrope Medium"), local("Manrope-Medium"), url("../fonts/Manrope-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Regular.woff2");
  src: local("Manrope Regular"), local("Manrope-Regular"), url("../fonts/Manrope-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Light.woff2");
  src: local("Manrope Light"), local("Manrope-Light"), url("../fonts/Manrope-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
}
/*-start reset-*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, center,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

* {
  box-sizing: border-box;
  font-family: inherit;
  transition: all 0.2s;
}

a, a:focus, button:focus, input:focus, textarea:focus {
  outline: none;
  box-shadow: none;
  text-decoration: none !important;
}

a:hover {
  text-decoration: none !important;
  transition: all 0.3s;
}

div:focus {
  outline: none;
}

.btn.focus, .btn:focus {
  outline: 0;
  box-shadow: none;
}

html {
  height: 100%;
}

body {
  font-family: "Manrope", "Arial", sans-serif !important;
  font-weight: normal;
  height: auto;
  width: 100%;
  background-color: #ffffff !important;
  min-width: 320px;
  position: relative;
  overflow-x: hidden;
  transition: all 0.2s;
}
body.no-scroll {
  overflow: hidden;
}
body::-webkit-scrollbar-button {
  -webkit-transition: 0.2s !important;
  transition: 0.2s !important;
  width: 5px;
  height: 0;
}
body::-webkit-scrollbar-track {
  background: #ffffff;
}
body::-webkit-scrollbar-thumb {
  border-radius: 0;
  background: #009345;
}
body::-webkit-resizer {
  width: 5px;
  height: 5px;
}
body::-webkit-scrollbar {
  width: 5px;
}

/*-end reset-*/
.container.fluid {
  width: 100%;
}

.container {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 1440px) {
  .container {
    max-width: 1320px;
  }
}
@media (max-width: 1440px) {
  .container {
    max-width: 1140px;
  }
}
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 1024px) {
  .container {
    max-width: 95%;
  }
}
@media (max-width: 576px) {
  .container {
    max-width: 95%;
  }
}

.content {
  position: relative;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background-color: #009345;
  border: 2px solid #009345;
  padding: 16px 32px;
  color: #FFFFFF;
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  box-shadow: none;
  outline: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.2s;
}
.btn:hover {
  border: 2px solid #009345;
  background: transparent;
  transition: all 0.2s;
  color: #009345;
}
.btn:focus {
  border: 2px solid #009345;
  background: transparent;
  transition: all 0.2s;
  color: #009345;
}
.btn.disabled {
  cursor: default;
  pointer-events: none;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .btn {
    padding: 12px 32px;
    font-size: 14px;
    line-height: 20px;
  }
}

.link-style {
  font-family: inherit;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #009345;
}

.header {
  background-color: #ffffff;
  padding: 25px 0;
}
.header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 1024px) {
  .header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.header__logo {
  display: block;
  margin: 0 16px 0 0;
  width: auto;
  height: 72px;
}
.header__logo img {
  width: auto;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
}
@media (max-width: 1024px) {
  .header__logo {
    display: block;
    margin: 0;
    width: auto;
    height: 58px;
  }
}
.header__title {
  width: 30%;
  text-align: left;
}
.header__title div {
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
}
.header__title span {
  color: rgba(42, 48, 62, 0.6);
  font-size: 12px;
}
@media (max-width: 1024px) {
  .header__title {
    width: 80%;
    text-align: center;
    margin-top: 20px;
    white-space: normal;
  }
}
@media (max-width: 1200px) {
  .header {
    overflow: hidden;
    white-space: nowrap;
  }
}

.header-sub {
  background-color: #009345;
  padding: 16px 0;
}
.header-sub__links {
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-sub__links a {
  padding-bottom: 2px;
  font-size: 14px;
  line-height: 1;
  font-weight: 300;
  color: #ffffff;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}
.header-sub__links a:hover {
  border-bottom: 1px solid #ffffff;
  transition: all 0.2s;
}
@media (max-width: 1024px) {
  .header-sub__links {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }
}
@media (max-width: 1200px) {
  .header-sub {
    overflow: hidden;
    white-space: nowrap;
  }
}

.main {
  padding: 80px 0 180px;
}
.main .container {
  position: relative;
  z-index: 7;
}
.main__content {
  display: flex;
  margin-top: 80px;
}
@media (max-width: 1200px) {
  .main {
    padding: 80px 0 120px;
  }
}
@media (max-width: 1200px) {
  .main {
    padding: 60px 0 80px;
  }
}
@media (max-width: 1024px) {
  .main__content {
    display: flex;
    margin-top: 40px;
    flex-wrap: wrap;
  }
}

.bread {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 48px;
}
.bread a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  color: rgba(42, 48, 62, 0.6);
  cursor: pointer;
  transition: all 0.2s;
}
.bread a:after {
  content: "/";
  font-size: 16px;
  padding: 0 8px;
}
.bread a.current {
  color: #2A303E;
}
.bread a.current:after {
  display: none;
}
.bread a:hover {
  color: #2A303E;
}

.h1 {
  font-weight: 700 !important;
  font-size: 32px !important;
  line-height: 32px !important;
  display: flex !important;
  align-items: center !important;
  color: #009345 !important;
}
@media (max-width: 1024px) {
  .h1 {
    font-weight: 700 !important;
    font-size: 42px !important;
    line-height: 48px !important;
    display: flex !important;
    align-items: center !important;
    color: #009345 !important;
    text-align: center !important;
    margin-bottom: 0 !important;
  }
}
@media (max-width: 768px) {
  .h1 {
    font-size: 38px !important;
    line-height: 44px !important;
  }
}


@media (max-width: 400px) {
  .h1 {
    font-size: 32px !important;
    line-height: 44px !important;
  }
}

@media (max-width: 1024px) {
  .custom-calendar-wrap {
    max-width: 320px;
  }
}

.calendar-wrp {
  width: calc(22% - 18px);
  margin-right: 18px;
  height: auto;
  display: flex;
  flex-direction: column;
  position: relative;
}
.calendar-wrp__box {
  position: sticky;
  top: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.calendar-wrp .calendar {
  margin-bottom: 32px;
  width: 100%;
}
.calendar-wrp .calendar__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  color: #2A303E;
  margin-bottom: 18px;
}
@media (max-width: 1024px) {
  .calendar-wrp .calendar__title {
    text-align: center;
    max-width: 320px;
  }
}
@media (max-width: 768px) {
  .calendar-wrp .calendar__title {
    margin: 0 auto 18px;
  }
}
.calendar-wrp .calendar__search {
  width: 100%;
}
.calendar-wrp .calendar__search .form-search {
  width: 100%;
  max-width: 272px;
}
.calendar-wrp .calendar__search .form-search input {
  width: 100%;
  padding: 12px 12px 12px 50px;
  border: 1px solid rgba(221, 221, 221, 0.65);
}
.calendar-wrp .calendar__search .form-search input:focus {
  border: 1px solid #009345;
}
.calendar-wrp .calendar__search .form-search svg {
  left: 18px;
  width: 18px;
}
@media (max-width: 1024px) {
  .calendar-wrp .calendar__search .form-search {
    max-width: 320px;
  }
}
@media (max-width: 768px) {
  .calendar-wrp .calendar__search .form-search {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .calendar-wrp .calendar .custom-calendar-wrap {
    margin: 0 auto;
  }
}
@media (max-width: 1200px) {
  .calendar-wrp {
    width: calc(38% - 18px);
  }
}
@media (max-width: 1024px) {
  .calendar-wrp {
    width: calc(50% - 18px);
  }
}
@media (max-width: 768px) {
  .calendar-wrp {
    width: 100%;
    margin-bottom: 40px;
    margin-right: 0;
  }
}

.news__mob-menu {
  display: none;
  position: relative;
  z-index: 2;
}
.news__mob-menu .mob-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: auto;
  max-width: 100%;
  min-width: 320px;
}
.news__mob-menu .mob-menu__btn {
  padding: 14px 32px;
  background: #FFFFFF;
  box-shadow: 0 5px 50px rgba(0, 68, 51, 0.2);
  border-radius: 30px;
  border: 1px solid #e0e0e0;
  transition: all 0.2s;
  display: inline-flex;
  width: max-content;
}
.news__mob-menu .mob-menu__btn:hover {
  border: 1px solid #009345;
}
.news__mob-menu .mob-menu__body {
  display: none;
  position: absolute;
  z-index: 6;
  background-color: #fff;
  top: calc(100% + 8px);
  right: 0;
  box-shadow: 0 5px 50px rgba(0, 68, 51, 0.2);
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
}
.news__mob-menu .mob-menu__link {
  display: flex;
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  padding: 0 4px 8px 4px;
  margin-bottom: 8px;
  color: #2A303E;
  border-bottom: 1px solid #eee;
  width: 100%;
  transition: all 0.2s;
}
.news__mob-menu .mob-menu__link:hover {
  color: #009345;
  border-bottom: 1px solid #009345;
}
.news__mob-menu .mob-menu__link:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
@media (max-width: 1024px) {
  .news__mob-menu {
    display: block;
  }
}
.news__title {
  padding: 40px 0;
  border-top: 1px solid rgba(117, 123, 138, 0.6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .news__title {
    flex-direction: column;
    padding: 24px 0 16px;
  }
  .news__title .form-search {
    display: none;
  }
}
.news__menu {
  border-bottom: 1px solid rgba(117, 123, 138, 0.6);
  border-top: 1px solid rgba(117, 123, 138, 0.6);
  padding: 32px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0 16px;
}
@media (max-width: 1200px) {
  .news__menu {
    padding: 16px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0 16px;
  }
}
@media (max-width: 1024px) {
  .news__menu {
    overflow-y: auto;
    margin-right: -15%;
    width: 100%;
    padding: 16px 0 0;
    gap: 0 32px;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    border: none;
  }
  .news__menu::-webkit-scrollbar {
    width: 0;
  }
}
.news__menu-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: auto;
  gap: 24px;
}
@media (max-width: 1024px) {
  .news__menu-links {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 16px 32px;
  }
  .news__menu-links:last-child {
    margin-right: 5%;
  }
}
.news__menu-link {
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 22px;
  color: #000000;
  transition: all 0.2s;
}
.news__menu-link:hover {
  color: #009345;
}
.news__menu-link.active {
  color: #009345;
}
@media (max-width: 1024px) {
  .news__menu-link {
    white-space: nowrap;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
  }
}

.news__body.news-section {
  width: 70%;
}
@media (max-width: 1024px) {
  .news__body {
    width: 50%;
  }
  .news__body.news-section {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .news__body {
    width: 100%;
  }
  .news__body.news-section {
    width: 100%;
  }
}
.news__list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 48px 16px;
  margin-bottom: 120px;
}
.news__list.news-page {
  gap: 24px 0;
  margin-bottom: 0;
  padding-bottom: 48px;
  border-bottom: 2px solid rgba(42, 48, 62, 0.6);
}
@media (max-width: 768px) {
  .news__list.news-page {
    border-bottom: none;
  }
}
@media (max-width: 1200px) {
  .news__list {
    gap: 32px 16px;
    margin-bottom: 80px;
  }
}
@media (max-width: 1024px) {
  .news__list {
    gap: 24px 16px;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .news__list {
    gap: 32px 16px;
  }
}
.news__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: calc(24% - 8px);
}
.news__item .preview {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 30px;
  margin-bottom: 20px;
  filter: drop-shadow(0px 5px 50px rgba(0, 67, 101, 0.1));
  padding-bottom: 85%;
  float: left;
  height: 0;
}
.news__item .preview img {
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
}
.news__item .preview__label {
  color: #ffffff;
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  padding: 6px 24px;
  border-radius: 30px;
  background-color: #009345;
  position: absolute;
  z-index: 3;
  bottom: 12px;
  left: 12px;
}
.news__item .description .title {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #2A303E;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 98px;
  margin-bottom: 24px;
  transition: all 0.2s;
}
@media (max-width: 1200px) {
  .news__item .description .title {
    font-weight: 600;
    font-size: 15px;
    line-height: 20px;
    height: 82px;
    margin-bottom: 16px;
    transition: all 0.2s;
  }
}
@media (max-width: 1024px) {
  .news__item .description .title {
    height: auto;
    -webkit-line-clamp: unset;
  }
}
.news__item .description .info {
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  color: rgba(42, 48, 62, 0.6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news__item .description .info .views {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: rgba(42, 48, 62, 0.6);
}
.news__item .description .info .views svg {
  height: 24px;
  width: auto;
  margin-right: 6px;
  margin-left: 12px;
}
@media (max-width: 1200px) {
  .news__item .description .info {
    font-size: 14px;
    line-height: 16px;
  }
  .news__item .description .info .views svg {
    height: 16px;
    width: auto;
    margin-right: 4px;
    margin-left: 4px;
  }
}
.news__item:hover .title {
  color: #009345;
}
.news__item.news-section {
  width: calc(50% - 11px);
}
@media (max-width: 1200px) {
  .news__item {
    width: calc(50% - 8px);
  }
}
@media (max-width: 1024px) {
  .news__item {
    width: 100%;
  }
  .news__item.news-section {
    width: 100%;
  }
}
.news__btn-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 100px auto 0;
}
.news__btn-box .btn-accent {
  cursor: pointer;
  background-color: #ffffff;
  color: #2A303E;
  font-weight: 500;
  font-size: 22px;
  line-height: 24px;
  padding: 20px 32px;
  border-radius: 20px;
  border: 1px solid #009345;
  box-shadow: 0 3.2916px 49.374px rgba(0, 0, 0, 0.07);
  transition: all 0.2s;
}
.news__btn-box .btn-accent:hover {
  color: #009345;
}
.news__btn-box .btn-accent.left {
  border-radius: 20px 0 0 20px;
  border-right: 1px solid #009345;
}
.news__btn-box .btn-accent.right {
  border-radius: 0 20px 20px 0;
  border-left: 1px solid #009345;
}
@media (max-width: 1024px) {
  .news__btn-box .btn-accent {
    width: 80%;
    font-size: 16px;
    line-height: 22px;
    padding: 16px 24px;
    border: none !important;
    border-radius: 6px !important;
    margin: 6px 0;
  }
}
@media (max-width: 1024px) {
  .news__btn-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 40px auto 0;
  }
}
.news__actual {
  position: relative;
  z-index: 1;
  width: calc(25% - 18px);
  margin-left: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.news__actual .title {
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 22px;
  line-height: 24px;
  color: #2A303E;
}
@media (max-width: 1200px) {
  .news__actual .title {
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    color: #2A303E;
  }
}
@media (max-width: 1024px) {
  .news__actual {
    width: 100%;
    margin: 0;
  }
}
.news__actual-wrp {
  position: sticky;
  top: 16px;
  z-index: 2;
}
@media (max-width: 1024px) {
  .news__actual-wrp {
    position: unset;
    margin-top: 40px;
  }
}
.news__actual-item {
  padding: 18px 0;
  border-top: 2px solid rgba(42, 48, 62, 0.6);
  border-bottom: 2px solid transparent;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 0;
}
.news__actual-item:last-child {
  margin-bottom: 32px;
  border-bottom: 2px solid rgba(42, 48, 62, 0.6);
}
.news__actual-item .item-title {
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: #2A303E;
  width: calc(100% - 50px);
  transition: all 0.2s;
}
.news__actual-item .date {
  width: 40px;
  font-weight: 500;
  font-size: 12px;
  text-align: right;
  line-height: 16px;
  color: rgba(42, 48, 62, 0.6);
}
.news__actual-item:hover .item-title {
  color: #009345;
}
@media (max-width: 1200px) {
  .news__actual-item {
    padding: 12px 0;
  }
}
.news .link {
  font-weight: 600;
  font-size: 16px;
  line-height: 16px;
  color: #009345;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: max-content;
  margin: 0 0 0 auto;
  transition: all 0.2s;
}
.news .link svg {
  margin-left: 10px;
}
.news .link:hover {
  border-bottom: 1px solid #009345;
}
.news .news-page__text {
  width: 100%;
}
.news .news-page__description {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: rgba(42, 48, 62, 0.6);
  margin-bottom: 16px;
}
.news .news-page__description .date span {
  margin-right: 10px;
}
.news .news-page__description .views {
  margin-left: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: rgba(42, 48, 62, 0.6);
}
.news .news-page__description .views svg {
  height: 24px;
  margin-right: 6px;
  margin-left: 12px;
}
.news .news-page__h2 {
  font-weight: 600;
  font-size: 30px;
  line-height: 38px;
  display: flex;
  align-items: center;
  color: #000000;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .news .news-page__h2 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 24px;
  }
}
.news .news-page__preview-news {
  width: 100%;
  height: auto;
  max-height: 550px;
  max-width: 100%;
  border-radius: 20px;
}
.news .news-page__btn-box {
  margin-top: 24px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 0 16px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .news .news-page__btn-box {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 16px 0;
  }
}
.news .news-page__btn-box .btn-wrp {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0 16px;
}
.news .news-page__btn-box .btn-wrp.navigate {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 16px;
  width: calc(70% - 16px);
}
@media (max-width: 768px) {
  .news .news-page__btn-box .btn-wrp.navigate {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .news .news-page__btn-box .btn-wrp {
    margin: 0 !important;
    width: auto;
  }
  .news .news-page__btn-box .btn-wrp.navigate {
    justify-content: center;
  }
}
.news .news-page__btn-box .btn-accent {
  cursor: pointer;
  border: 2px solid #ffffff;
  padding: 16px;
  background: #FFFFFF;
  box-shadow: 0 4px 60px rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  width: 96px;
  height: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.news .news-page__btn-box .btn-accent:hover {
  border: 2px solid #009345;
}
.news .news-page__btn-box .btn-accent.prev {
  width: 45%;
  text-align: center;
  margin: 0 0 0 auto;
  color: #009345;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
}
.news .news-page__btn-box .btn-accent.prev svg {
  width: auto;
  height: 16px;
  transform: rotateY(180deg);
  margin-right: 16px;
}
.news .news-page__btn-box .btn-accent.next {
  flex-direction: row-reverse;
  text-align: center;
  width: 45%;
  margin: 0 0 0 auto;
  color: #009345;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
}
.news .news-page__btn-box .btn-accent.next svg {
  width: auto;
  height: 16px;
  margin-left: 16px;
}
@media (max-width: 1200px) {
  .news .news-page__btn-box .btn-accent {
    padding: 8px;
    width: 80px;
    height: 60px;
  }
  .news .news-page__btn-box .btn-accent svg {
    width: auto;
    height: 24px;
  }
  .news .news-page__btn-box .btn-accent.back {
    font-size: 14px;
    padding: 8px 16px;
  }
  .news .news-page__btn-box .btn-accent.back svg {
    width: auto;
    height: 16px;
  }
}
@media (max-width: 768px) {
  .news .news-page__btn-box .btn-accent {
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 20px !important;
  }
}

.feedback {
  margin-top: 40px;
}
.feedback__text p {
  color: rgba(42, 48, 62, 0.6);
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 16px;
}
.feedback__text p:last-child {
  margin-bottom: 0;
}
.feedback__card-style {
  margin: 40px 0;
  background: #FFFFFF;
  box-shadow: 0px 3.2916px 49.374px rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  padding: 56px;
}
.feedback__card-style .title {
  font-weight: 600;
  font-size: 24px;
  line-height: 24px;
  color: #2A303E;
  margin-bottom: 48px;
}
@media (max-width: 1024px) {
  .feedback__card-style {
    padding: 24px;
  }
  .feedback__card-style .title {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 24px;
  }
}
.feedback__card-border {
  border: 2px solid #009345;
  filter: drop-shadow(0px 3.2916px 49.374px rgba(0, 0, 0, 0.07));
  border-radius: 20px;
  width: 70%;
  padding: 32px;
  margin-bottom: 48px;
}
.feedback__card-border:last-child {
  margin-bottom: 0;
}
.feedback__card-border .title {
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
  color: #2A303E;
  margin-bottom: 32px;
}
@media (max-width: 1200px) {
  .feedback__card-border {
    width: 85%;
  }
}
@media (max-width: 1024px) {
  .feedback__card-border {
    width: 100%;
    padding: 24px;
  }
  .feedback__card-border .title {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #2A303E;
    margin-bottom: 18px;
  }
}
.feedback__card-gray {
  border-top: 2px solid rgba(117, 123, 138, 0.4);
  border-bottom: 2px solid rgba(117, 123, 138, 0.4);
  padding: 56px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.feedback__card-gray button.input-style {
  display: inline-flex;
  width: max-content;
  padding: 20px 46px;
  cursor: pointer;
  margin-bottom: 0;
  margin-top: 32px;
  border-radius: 30px;
  transition: all 0.2s;
}
.feedback__card-gray button.input-style:hover {
  color: #009345;
}
@media (max-width: 1200px) {
  .feedback__card-gray button.input-style {
    margin-top: 18px;
  }
}
@media (max-width: 768px) {
  .feedback__card-gray button.input-style {
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
  }
}
.feedback__card-gray button.input-style.btn-author-remove {
  display: inline-flex;
  width: max-content;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  transition: all 0.2s;
  margin: 16px 0 32px;
  color: #009345;
}
.feedback__card-gray button.input-style.btn-author-remove:hover {
  color: #006633;
}
.feedback__card-gray .author-title {
  font-weight: 500;
  font-size: 22px;
  line-height: 24px;
  color: #2A303E;
  margin-bottom: 0;
  width: auto;
}
.feedback__card-gray .hide {
  margin-top: 40px;
  display: none;
}
@media (max-width: 1024px) {
  .feedback__card-gray {
    padding: 24px;
  }
}
.feedback .inputs {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}
.feedback label {
  font-weight: 500;
  font-size: 22px;
  line-height: 24px;
  color: #2A303E;
  margin-bottom: 20px;
  width: 60%;
}
@media (max-width: 1200px) {
  .feedback label {
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    color: #2A303E;
    margin-bottom: 16px;
    width: 85%;
  }
}
@media (max-width: 1024px) {
  .feedback label {
    line-height: 24px;
    color: #2A303E;
    margin-bottom: 12px;
    width: 100%;
  }
}
.feedback .input-style {
  background: #FFFFFF;
  box-shadow: 0 3.2916px 49.374px rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  padding: 16px 32px;
  border: 2px solid #009345;
  width: 70%;
  font-weight: 500;
  font-size: 22px;
  line-height: 24px;
  margin-bottom: 32px;
}
.feedback .input-style:last-child {
  margin-bottom: 0;
}
.feedback .input-style.textarea {
  height: 160px;
  resize: none;
  font-family: "Manrope", "Arial", sans-serif !important;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .feedback .input-style {
    width: 85%;
  }
}
@media (max-width: 1024px) {
  .feedback .input-style {
    width: 100%;
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 20px;
    padding: 16px 24px;
  }
}
.feedback .text-hidden-content {
  margin-bottom: 32px;
}
.feedback .text-hidden-content p {
  color: rgba(42, 48, 62, 0.8);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 16px;
}
.feedback .text-hidden-content p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .feedback .text-hidden-content p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 12px;
  }
}
.feedback .text-hidden-content.mb0 {
  margin-bottom: 0;
  margin-top: 32px;
}
.feedback .text-hidden-content .hidden-text {
  display: none;
}
.feedback .text-hidden-content .hidden-text {
  display: none;
}
.feedback .text-hidden-content .show-text {
  color: #009345;
  cursor: pointer;
  font-weight: 600;
}
.feedback .text-hidden-content .hide-text {
  color: #009345;
  cursor: pointer;
  font-weight: 600;
}
.feedback__btn-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 80px auto 0;
}
.feedback__btn-box .btn-accent {
  width: 40%;
  cursor: pointer;
  color: #2A303E;
  background-color: #ffffff;
  font-weight: 500;
  font-size: 22px;
  line-height: 24px;
  padding: 32px 44px;
  border: 2px solid #009345;
  border-radius: 20px;
  box-shadow: 0 3.2916px 49.374px rgba(0, 0, 0, 0.07);
  transition: all 0.2s;
}
.feedback__btn-box .btn-accent:hover {
  color: #009345;
}
@media (max-width: 1024px) {
  .feedback__btn-box .btn-accent {
    width: 50%;
    font-size: 16px;
    line-height: 22px;
    padding: 16px 24px;
  }
}
@media (max-width: 768px) {
  .feedback__btn-box .btn-accent {
    width: 100%;
    font-size: 16px;
    line-height: 22px;
    border-radius: 12px !important;
    margin: 6px 0;
    border: 2px solid #009345 !important;
  }
}
@media (max-width: 1200px) {
  .feedback__btn-box {
    margin: 40px auto 0;
  }
}
@media (max-width: 1200px) {
  .feedback__btn-box {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 1024px) {
  .feedback {
    margin-top: 20px;
  }
}

.agree-box {
  margin: 46px 0;
}
@media (max-width: 1200px) {
  .agree-box {
    margin: 32px 0;
  }
}

.attachment-box {
  padding: 56px;
  border-bottom: 2px solid rgba(117, 123, 138, 0.4);
}
.attachment-box .attachment-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #2A303E;
  margin-bottom: 46px;
}
@media (max-width: 1200px) {
  .attachment-box .attachment-title {
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #2A303E;
    margin-bottom: 32px;
  }
}
@media (max-width: 1024px) {
  .attachment-box .attachment-title {
    font-size: 18px;
    line-height: 26px;
  }
}
.attachment-box .attachment-label {
  cursor: pointer;
  display: inline-flex;
  background: #FFFFFF;
  box-shadow: 0 3.2916px 49.374px rgba(0, 0, 0, 0.07);
  border-radius: 30px;
  padding: 20px 46px;
  border: 2px solid #009345;
  width: max-content;
  font-weight: 500;
  font-size: 22px;
  line-height: 24px;
  margin-bottom: 46px;
  transition: all 0.2s;
}
.attachment-box .attachment-label:hover {
  color: #009345;
}
.attachment-box input#files {
  opacity: 0;
  overflow: hidden;
}
.attachment-box .attachment-text {
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: rgba(42, 48, 62, 0.6);
  text-align: left;
}
@media (max-width: 1024px) {
  .attachment-box .attachment-text {
    font-size: 14px;
    line-height: 18px;
  }
}
.attachment-box .attachment-files .error-files {
  display: none;
  color: #d50000;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: left;
  margin-bottom: 16px;
  padding: 0 12px;
}
.attachment-box .attachment-files__file-block {
  display: flex;
  flex-direction: column;
}
.attachment-box .attachment-files .filename {
  display: none;
  margin: 0;
  border: 0;
  padding-left: 30px;
  padding-right: 12px;
  position: relative;
  background: #fff;
  font-weight: 500;
  font-size: 18px;
}
.attachment-box .attachment-files .filename.show-upload {
  display: inline-flex;
  align-items: center;
}
.attachment-box .attachment-files .filename:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  display: inline-block;
  top: 4px;
  left: 0;
  margin-right: 16px;
  background: url("../images/icons/files-icon.svg") 0 0 no-repeat;
}
.attachment-box .attachment-files__form-file-upload {
  position: relative;
  overflow: hidden;
  height: auto;
  cursor: pointer;
  display: inline-flex;
  background: #FFFFFF;
  box-shadow: 0 3.2916px 49.374px rgba(0, 0, 0, 0.07);
  border-radius: 30px;
  padding: 20px 46px;
  border: 2px solid #009345;
  width: max-content;
  font-weight: 500;
  font-size: 22px;
  line-height: 24px;
  margin-bottom: 46px;
  transition: all 0.2s;
}
@media (max-width: 1024px) {
  .attachment-box .attachment-files__form-file-upload {
    padding: 16px 34px;
    border: 2px solid #009345;
    width: max-content;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 24px;
  }
}
@media (max-width: 768px) {
  .attachment-box .attachment-files__form-file-upload {
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
  }
}
.attachment-box .attachment-files label {
  margin-bottom: 0;
  width: auto;
  color: #2A303E;
  cursor: pointer;
}
.attachment-box .attachment-files label:hover {
  color: #009345;
}
@media (max-width: 1024px) {
  .attachment-box .attachment-files label {
    font-size: 16px;
    line-height: 22px;
  }
}
.attachment-box .attachment-files .file-line {
  position: relative;
  width: max-content;
  padding-right: 30px;
  margin-bottom: 16px;
  margin-left: 12px;
}
.attachment-box .attachment-files .delete-upload {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 14px;
  height: 14px;
  background: url("../images/icons/close.svg") no-repeat center;
  padding: 0;
  margin: 0;
  filter: opacity(0.5);
  cursor: pointer;
}
@media (max-width: 1200px) {
  .attachment-box {
    padding: 32px;
  }
}
@media (max-width: 768px) {
  .attachment-box {
    padding: 24px;
  }
}

.footer {
  width: 100%;
}
.footer__top {
  background-color: #009345;
  color: #ffffff;
  font-weight: 600;
  font-size: 40px;
  line-height: 48px;
  padding: 16px 0;
}
.footer__top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .footer__top {
    overflow: hidden;
    white-space: nowrap;
  }
}
@media (max-width: 1024px) {
  .footer__top {
    font-size: 28px;
    line-height: 30px;
  }
}
.footer__top-social-link span {
  font-family: themify;
  font-size: 30px;
  color: #ffffff;
  display: inline-flex;
  margin: 0 0 0 16px;
}
@media (max-width: 1024px) {
  .footer__top-social-link span {
    font-size: 20px;
    color: #ffffff;
    display: inline-flex;
    margin: 0 10px 0 10px;
  }
}
.footer__bottom {
  padding: 48px 0;
  background-color: #2A303E;
  color: #ffffff;
}
.footer__bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__bottom .container a {
  padding-bottom: 2px;
  font-size: 16px;
  line-height: 1;
  font-weight: normal;
  color: #ffffff;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}
.footer__bottom .container a:hover {
  border-bottom: 1px solid #ffffff;
  transition: all 0.2s;
}
@media (max-width: 1200px) {
  .footer__bottom {
    overflow: hidden;
    white-space: nowrap;
  }
}
@media (max-width: 1024px) {
  .footer__bottom {
    padding: 24px 0;
  }
  .footer__bottom .container {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .footer__bottom .container a {
    width: 50%;
    padding-bottom: 2px;
    font-size: 14px;
  }
}
@media (max-width: 1200px) {
  .footer {
    overflow: hidden;
    white-space: nowrap;
  }
}

.text {
  width: 100%;
}
.text p {
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: #2A303E;
  text-align: justify;
  margin-bottom: 20px;
}
.text p:last-child {
  margin-bottom: 0;
}
.text img {
  width: 100%;
  height: auto;
  display: block;
  margin: 8px 0;
  filter: drop-shadow(0px 8px 24px rgba(0, 0, 0, 0.16));
}
.text ul, .text li {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(42, 48, 62, 0.6);
  padding: 0;
  margin: 0;
  list-style: none;
}
.text li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}
.text li:last-child {
  margin-bottom: 0;
}
.text a {
  cursor: pointer;
  font-family: inherit;
  font-style: normal;
  color: #009345;
}
.text a:hover {
  color: #006733;
}
@media (max-width: 1201px) {
  .text p {
    font-size: 14px;
    line-height: 20px;
  }
  .text p:last-child {
    padding-bottom: 0;
  }
  .text .mini-title {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 8px;
  }
  .text ul, .text li {
    margin-top: -8px;
  }
}
@media (max-width: 768px) {
  .text p {
    font-size: 14px;
    line-height: 20px;
    padding-bottom: 12px;
  }
}
.text .images {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  gap: 16px 24px;
}
.text .images .image-view {
  cursor: pointer;
  display: block;
  position: relative;
  z-index: 1;
  width: calc(50% - 12px);
  border-radius: 30px;
  margin-bottom: 20px;
  filter: drop-shadow(0px 5px 50px rgba(0, 67, 101, 0.1));
  padding-bottom: 50%;
  float: left;
  height: 0;
}
@media (max-width: 768px) {
  .text .images .image-view {
    width: 100%;
    padding-bottom: 80%;
    margin-bottom: 16px;
  }
}
.text .images img {
  display: block;
  object-fit: cover;
  border-radius: 16px;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
}
@media (max-width: 768px) {
  .text .images {
    gap: 12px 0;
  }
}

.form-search {
  position: relative;
  z-index: 2;
}
.form-search svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 22px;
  width: 20px;
}
.form-search input {
  font-size: 16px;
  background-color: #ffffff !important;
  box-shadow: 0 3.2916px 49.374px rgba(0, 0, 0, 0.07);
  border-radius: 30px;
  width: 320px;
  padding: 16px 16px 16px 64px;
  border: 1px solid #ffffff;
  transition: all 0.2s;
}
.form-search input:focus {
  border: 1px solid #009345;
}
.form-search input:focus + svg path {
  stroke: #009345;
}
.form-search input::placeholder {
  font-size: 14px;
  line-height: 1;
}
@media (max-width: 1024px) {
  .form-search input {
    padding: 12px 12px 12px 56px;
  }
}

/*Pagination styles*/
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  gap: 16px;
}
.pagination.center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination.left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 1024px) {
  .pagination {
    gap: 4px;
  }
}

.pagination-list {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 16px;
}
@media (max-width: 1200px) {
  .pagination-list {
    gap: 8px;
  }
}
@media (max-width: 1024px) {
  .pagination-list {
    gap: 4px;
  }
}

.page-item a {
  width: 56px;
  height: 56px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-radius: 10px;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #000000;
  border: 1px solid;
  border-color: #ffffff;
  transition: all 0.2s;
  box-shadow: 0px 4px 60px rgba(0, 0, 0, 0.07);
  margin: 0 1px;
}
@media (max-width: 1200px) {
  .page-item a {
    width: 48px;
    height: 48px;
    padding: 12px;
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 1024px) {
  .page-item a {
    width: 24px;
    height: 24px;
    padding: 3px;
    font-size: 12px;
    line-height: 24px;
    border-radius: 6px;
  }
}

.page-item.active a {
  color: #000000;
  border-color: #009345;
  background-color: #ffffff;
  box-shadow: 0 1px 4px rgba(26, 26, 67, 0.1);
  transition: all 0.2s;
}

.page-item:hover a {
  color: #000000;
  background-color: #ffffff;
  border-color: #009345;
  transition: all 0.2s;
}

.pagination-arr {
  width: 56px;
  height: 56px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 10px;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #000000;
  border: 1px solid;
  border-color: #ffffff;
  transition: all 0.2s;
  box-shadow: 0px 4px 60px rgba(0, 0, 0, 0.07);
  margin: 0 1px;
}
.pagination-arr:hover {
  background-color: #ffffff;
  border-color: #009345;
}
@media (max-width: 1200px) {
  .pagination-arr {
    width: 48px;
    height: 48px;
    padding: 12px;
    font-size: 18px;
    line-height: 24px;
  }
}
@media (max-width: 1024px) {
  .pagination-arr {
    width: 24px;
    height: 24px;
    padding: 3px;
    font-size: 12px;
    line-height: 24px;
    border-radius: 6px;
  }
}

@media (max-width: 1024px) {
  .pagination-arr svg {
    width: auto;
    height: 14px;
  }
}

.pagination-arr svg path {
  stroke: #000000;
  transition: all 0.2s;
}

.pagination-arr:hover svg path {
  stroke: #009345;
  transition: all 0.2s;
}

/*Pagination styles end*/
/*Select styles*/
.dropdown-select {
  position: relative;
  margin-bottom: 44px;
}
.dropdown-select::after {
  display: block;
  clear: both;
  content: "";
}
.dropdown-select .select-btn {
  background: #FFFFFF;
  box-shadow: 0 3.2916px 49.374px rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  font-family: "Manrope", "Arial", sans-serif !important;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #2A303E;
}
.dropdown-select .select-btn svg {
  width: 12px;
  height: auto;
  transform: rotateX(0deg);
  transition: all 0.2s;
}
.dropdown-select .select-btn.active svg {
  transform: rotateX(180deg);
  transition: all 0.2s;
}
@media (max-width: 1024px) {
  .dropdown-select .select-btn {
    padding: 12px 24px;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
  }
}
.dropdown-select .dropdown-item-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  font-family: "Manrope", "Arial", sans-serif !important;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  background-color: #ffffff;
  color: #2A303E;
}
.dropdown-select .dropdown-item-select svg {
  width: 12px;
  height: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
}
.dropdown-select .dropdown-item-select:hover {
  cursor: pointer;
  background-color: #ffffff;
  color: #009345;
  transition: all 0.2s;
}
.dropdown-select .dropdown-item-select.active {
  background-color: #ffffff;
  color: #009345;
  transition: all 0.2s;
}
.dropdown-select .dropdown-item-select.active svg {
  opacity: 1;
  visibility: visible;
  transition: all 0.2s;
}
.dropdown-select .dropdown-item-select.active svg path {
  stroke: #009345;
}
.dropdown-select .dropdown-item-select:last-child {
  border-bottom: none;
}
@media (max-width: 1024px) {
  .dropdown-select .dropdown-item-select {
    padding: 12px 24px;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
  }
}
.dropdown-select .dropdown-menu-select {
  border-radius: 20px;
  max-height: 180px;
  overflow: auto;
  display: none;
  position: absolute;
  top: 103%;
  z-index: 100;
  left: 0;
  right: 0;
}
.dropdown-select:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .dropdown-select {
    margin-bottom: 24px;
  }
}

/*Select styles end*/
/*checkbox*/
.checkbox-form {
  display: flex;
  align-items: center;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #2A303E;
  position: relative;
}

.checkbox-form.fluid {
  width: 100%;
}

.checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.checkbox-wrap {
  margin-top: 0;
  width: 32px;
  height: 32px;
  margin-right: 16px;
}

.checkbox__form .checkbox {
  display: none;
}

.checkbox__form .checkbox__label {
  cursor: pointer;
  background: transparent;
  border: 2px solid #009345;
  box-sizing: border-box;
  border-radius: 6px;
  position: relative;
  width: 32px;
  height: 32px;
  display: block;
}

.checkbox__label::before {
  content: "";
  width: 32px;
  height: 32px;
  border-radius: 6px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  background: url("../images/icons/check.svg") no-repeat center;
  background-color: #009345;
  background-size: 21px;
  transition: all 0.2s;
}

.checkbox__form input[type=checkbox]:checked + .checkbox__label {
  opacity: 1;
  transition: all 0.2s;
  border: 2px solid transparent;
}

.checkbox__form input[type=checkbox]:checked + .checkbox__label::before {
  opacity: 1;
  transition: all 0.2s;
}

.checkbox__form input[type=radio]:checked + .checkbox__label {
  opacity: 1;
  transition: all 0.2s;
  border: 2px solid transparent;
}

.checkbox__form input[type=radio]:checked + .checkbox__label::before {
  opacity: 1;
  transition: all 0.2s;
}

.checkbox-text {
  font-style: normal;
  color: #2A303E;
  font-family: "Manrope", "Arial", sans-serif !important;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
}
@media (max-width: 1024px) {
  .checkbox-text {
    font-size: 16px;
    line-height: 22px;
  }
}

.checkbox-text .simple-link {
  display: inline;
  cursor: pointer;
  color: #009345;
}

/*checkbox end*/
.description-hidden {
  display: none;
}

.viewer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.75);
  height: 100%;
  width: 100%;
  z-index: 100;
}
.viewer.show {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.viewer__close {
  position: absolute;
  z-index: 110;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 6px;
  border-radius: 0;
  cursor: pointer;
}
.viewer__close svg {
  width: 16px;
  height: auto;
}
.viewer__close svg rect {
  fill: #fff;
}
.viewer__wrp {
  display: none;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: max-content;
  height: 95vh;
  max-height: 95vh;
  margin: 0 auto;
  top: 20px;
  max-width: calc(100% - 160px);
}
.viewer__wrp.show {
  display: block;
}
@media (max-width: 1024px) {
  .viewer__wrp {
    max-width: calc(100% - 160px);
  }
}
@media (max-width: 768px) {
  .viewer__wrp {
    max-width: calc(100% - 100px);
    height: auto;
  }
}
.viewer__description {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  color: #ffffff;
  max-height: 80%;
  padding: 16px;
  overflow-y: auto;
}
.viewer__description::-webkit-scrollbar-button {
  -webkit-transition: 0.2s !important;
  transition: 0.2s !important;
  width: 5px;
  height: 0;
}
.viewer__description::-webkit-scrollbar-track {
  background: #ffffff;
}
.viewer__description::-webkit-scrollbar-thumb {
  border-radius: 0;
  background: #009345;
}
.viewer__description::-webkit-resizer {
  width: 5px;
  height: 5px;
}
.viewer__description::-webkit-scrollbar {
  width: 5px;
}
.viewer__description .title {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 12px;
  text-align: left;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .viewer__description .title {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 8px;
  }
  .viewer__description .title span {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.viewer__description .description {
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.viewer__description .description p {
  text-align: left;
  margin-bottom: 12px;
  color: #ffffff;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
}
.viewer__description .description p:last-child {
  margin-bottom: 0;
}
.viewer__description .description.show {
  -webkit-line-clamp: unset;
  -webkit-box-orient: vertical;
  max-height: 100%;
}
@media (max-width: 1024px) {
  .viewer__description .description {
    -webkit-line-clamp: 2;
  }
  .viewer__description .description.show {
    -webkit-line-clamp: unset;
    -webkit-box-orient: vertical;
    max-height: 100%;
  }
}
@media (max-width: 768px) {
  .viewer__description .description {
    -webkit-line-clamp: 1;
    padding: 0;
  }
  .viewer__description .description p {
    padding: 0;
  }
  .viewer__description .description.show {
    -webkit-line-clamp: unset;
    -webkit-box-orient: vertical;
    max-height: 100%;
  }
}
@media (max-width: 768px) {
  .viewer__description {
    max-height: 80%;
    bottom: 0%;
    position: fixed;
  }
}
.viewer #modalImage {
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
.viewer .toggle-text {
  width: 22px;
  height: 22px;
  margin-right: 8px;
  cursor: pointer;
}
.viewer .toggle-text svg {
  width: 22px;
  height: 22px;
  transform: rotate(90deg);
}
.viewer .toggle-text.active svg {
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  .viewer .toggle-text svg {
    width: 18px;
    height: 18px;
    transform: rotate(90deg);
  }
}
.viewer .btn-slider {
  background-color: rgba(0, 0, 0, 0.8);
  height: 70px;
  width: 50px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.viewer .btn-slider.disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.5;
}
.viewer .btn-slider.btn-next {
  right: 6px;
}
.viewer .btn-slider.btn-prev {
  left: 6px;
}
.viewer .btn-slider svg path {
  stroke: #ffffff;
}
@media (max-width: 1024px) {
  .viewer .btn-slider {
    height: 60px;
    width: 35px;
  }
}

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