@font-face {
  font-family: "Rubik";
  src: url(assets/fonts/Rubik-VariableFont_wght.ttf) format("TrueType");
  font-style: normal;
}
:root {
  --Rubik: "Rubik";
  --main-green: #00b86e;
  --theme-blue: #2c7abb;
  --footer-bg: #011f00;
  --hero-bg: #013332;
  --copyright-bg: black;
  --border-line: #636363;
  --second-color: #a4a4a4;
}

html,
body {
  font-family: var(--Rubik);
  font-size: 17px;
}

body {
  padding-top: 62px;
}
@media screen and (max-width: 480px) {
  body {
    font-size: 16px;
    padding-top: 0px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  body {
    padding-top: 0px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
* ::-webkit-scrollbar {
  width: 7px;
  height: 100%;
  border-radius: 7px;
  background: #d6d6d6;
}
* ::-webkit-scrollbar-thumb {
  width: 7px;
  height: auto;
  border-radius: 7px;
  background-color: var(--main-green);
}

img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: inherit;
}

li {
  list-style-type: none;
}

button,
input,
textarea,
select {
  font-family: var(--Rubik);
  font-size: 16px;
  border: none;
  outline: none;
  border-radius: 5px;
  resize: none;
  min-height: 50px;
}

button {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

p {
  line-height: 135%;
}

a {
  text-decoration: none;
}

.wrapper {
  max-width: 1920px;
  margin: 0 auto;
}

.container {
  max-width: 1530px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  .container {
    padding: 0 14px;
  }
}

.mobile {
  display: none;
}
@media screen and (max-width: 480px) {
  .mobile {
    display: block;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  .mobile {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .desktop {
    display: none;
  }
}

header {
  position: absolute;
  top: 62px;
  left: 0;
  right: 0;
  width: 100%;
  padding: 10px 0;
  z-index: 100;
}
@media screen and (max-width: 480px) {
  header {
    top: 0;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  header {
    top: 0;
  }
}
header.page {
  position: initial;
}
header .wrapper .container .top_menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 62px;
  background-color: white;
  box-shadow: 0 0px 2px 0 var(--border-line);
  z-index: 99;
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  header .wrapper .container .top_menu {
    transform: translateY(0%) translateX(120%);
    max-width: -moz-max-content;
    max-width: max-content;
    left: auto;
    height: 100vh;
  }
}
@media screen and (max-width: 480px) {
  header .wrapper .container .top_menu {
    transform: translateY(0%) translateX(120%);
    max-width: -moz-max-content;
    max-width: max-content;
    left: auto;
    height: 100vh;
  }
}
header .wrapper .container .top_menu.show {
  transform: translateY(0%) translateX(0%);
  transition: transform 0.5s linear;
}
header .wrapper .container .top_menu .menu_content {
  max-width: 1530px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  header .wrapper .container .top_menu .menu_content {
    min-width: 400px;
  }
}
header .wrapper .container .top_menu .menu_content ul {
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column-gap: 30px;
}
@media screen and (max-width: 480px) {
  header .wrapper .container .top_menu .menu_content ul {
    padding: 30px 40px;
    flex-direction: column;
  }
  header .wrapper .container .top_menu .menu_content ul li {
    width: 100%;
  }
  header .wrapper .container .top_menu .menu_content ul li a {
    font-size: 20px;
    text-transform: uppercase;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  header .wrapper .container .top_menu .menu_content ul {
    flex-direction: column;
  }
}
header .wrapper .container .top_menu .menu_content ul li a {
  padding: 20px 30px;
  font-size: 18px;
  font-weight: 500;
  color: black;
  display: block;
}
header .wrapper .container .top_menu .menu_content ul li a:hover {
  color: var(--main-green);
  transition: color 0.3s linear;
}
header .wrapper .container .top_menu .menu-close-icon {
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: calc(50% - 15px);
  display: none;
}
@media screen and (max-width: 480px) {
  header .wrapper .container .top_menu .menu-close-icon {
    top: 20px;
    display: block;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  header .wrapper .container .top_menu .menu-close-icon {
    top: 20px;
    display: block;
  }
}
header .wrapper .container .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .wrapper .container .header .burger_menu {
  position: relative;
  cursor: pointer;
}
header .wrapper .container .header .burger_menu img {
  width: 50px;
  height: 50px;
}
header .wrapper .container .header .burger_menu .front {
  position: relative;
  z-index: 1;
}
header .wrapper .container .header .burger_menu .back {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0;
}
header .wrapper .container .header .left-block .logo a img {
  max-width: 200px;
}
@media screen and (max-width: 480px) {
  header .wrapper .container .header .left-block .logo a img {
    max-width: 120px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  header .wrapper .container .header .left-block .logo a img {
    max-width: 140px;
  }
}
@media screen and (max-width: 480px) {
  header .wrapper .container .header .left-block .burger_menu {
    display: none;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  header .wrapper .container .header .left-block .burger_menu {
    display: none;
  }
}
header .wrapper .container .header .right-block {
  display: flex;
  gap: 20px;
  align-items: center;
}
header .wrapper .container .header .right-block button {
  padding: 0px 20px;
  min-height: 40px;
  display: flex;
  gap: 10px;
  background-color: var(--main-green);
  color: white;
  border-radius: 50px;
}
header .wrapper .container .header .right-block button a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
}
@media screen and (max-width: 480px) {
  header .wrapper .container .header .right-block button {
    width: 40px;
    height: 40px;
    padding: 0;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  header .wrapper .container .header .right-block button {
    min-height: 38px;
  }
}
header .wrapper .container .header .right-block button img {
  width: 16px;
  height: 16px;
}
header .wrapper .container .header .right-block button span {
  font-weight: 300;
}
@media screen and (max-width: 480px) {
  header .wrapper .container .header .right-block button span {
    display: none;
  }
}
header .wrapper .container .header .right-block .burger_menu img {
  width: 36px;
  height: 36px;
}

section.hero-container {
  min-height: 550px;
  display: flex;
  align-items: center;
  background-color: var(--hero-bg);
}
@media screen and (max-width: 480px) {
  section.hero-container {
    padding-top: 100px;
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.hero-container {
    padding: 120px 0 40px 0;
    min-height: -moz-max-content;
    min-height: max-content;
  }
}
section.hero-container .wrapper .container .items {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
}
@media screen and (max-width: 480px) {
  section.hero-container .wrapper .container .items {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 30px;
  }
}
section.hero-container .wrapper .container .items .item.left img {
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 480px) {
  section.hero-container .wrapper .container .items .item.left img {
    height: auto;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.hero-container .wrapper .container .items .item.left img {
    height: auto;
  }
}
section.hero-container .wrapper .container .items .item.right img {
  width: 70%;
}

section.home-content {
  padding: 60px 0;
  padding-top: 30px;
}
section.home-content .wrapper .container .role-container .title h2 {
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 10px;
}
section.home-content .wrapper .container .columns {
  display: grid;
  grid-template-columns: 25% 50% 25%;
}
section.home-content .wrapper .container .columns a {
  color: black;
}
@media screen and (max-width: 480px) {
  section.home-content .wrapper .container .columns {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.home-content .wrapper .container .columns {
    grid-template-columns: repeat(1, 1fr);
  }
}
section.home-content .wrapper .container .columns .title {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--main-green);
}
section.home-content .wrapper .container .columns .title strong {
  font-size: 30px;
  font-weight: 500;
}
section.home-content .wrapper .container .columns .role-container {
  margin-top: 30px;
  border: 1px solid var(--main-green);
  padding: 20px;
  border-radius: 10px;
}
section.home-content .wrapper .container .columns .role-container .title {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 10px;
}
section.home-content .wrapper .container .columns .role-container .title h2 {
  padding-bottom: 5px;
  font-size: 19px;
  border-bottom: 0.5px solid var(--main-green);
}
section.home-content .wrapper .container .columns .role-container .role {
  font-size: 14px;
  text-align: center;
}
section.home-content .wrapper .container .columns .role-container a {
  color: var(--theme-blue);
  display: block;
  margin-top: 15px;
  font-weight: normal;
  text-align: center;
  font-size: 15px;
}
section.home-content .wrapper .container .columns .expert {
  padding-right: 30px;
}
@media screen and (max-width: 480px) {
  section.home-content .wrapper .container .columns .expert {
    grid-row: 2;
    margin-bottom: 40px;
    padding-right: 0;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.home-content .wrapper .container .columns .expert {
    grid-row: 2;
    margin-bottom: 40px;
    padding-right: 0;
  }
}
section.home-content .wrapper .container .columns .expert .items {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 480px) {
  section.home-content .wrapper .container .columns .expert .items {
    padding: 0 20px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.home-content .wrapper .container .columns .expert .items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    grid-row-gap: 20px;
  }
}
section.home-content .wrapper .container .columns .expert .items a .item {
  display: flex;
  gap: 18px;
  align-items: center;
}
section.home-content .wrapper .container .columns .expert .items a .item .img img {
  min-width: 100px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  border-radius: 100px;
}
@media screen and (max-width: 480px) {
  section.home-content .wrapper .container .columns .expert .items a .item .img img {
    width: 80px;
    height: 80%;
  }
}
section.home-content .wrapper .container .columns .expert .items a .item .info strong {
  font-size: 16px;
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
}
section.home-content .wrapper .container .columns .expert .items a .item .info p {
  font-size: 12px;
  font-weight: 300;
}
section.home-content .wrapper .container .columns .expert .role-container {
  display: block;
}
@media screen and (max-width: 480px) {
  section.home-content .wrapper .container .columns .expert .role-container {
    display: none;
  }
}
section.home-content .wrapper .container .columns .work_group {
  padding-left: 30px;
}
@media screen and (max-width: 480px) {
  section.home-content .wrapper .container .columns .work_group {
    grid-row: 3;
    margin-bottom: 40px;
    padding-left: 0;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.home-content .wrapper .container .columns .work_group {
    padding-left: 0;
  }
}
@media screen and (max-width: 480px) {
  section.home-content .wrapper .container .columns .work_group .items {
    padding: 0 20px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.home-content .wrapper .container .columns .work_group .items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    padding: 0;
  }
}
section.home-content .wrapper .container .columns .work_group .items a {
  width: 100%;
  min-height: 50px;
  padding: 5px 10px;
  background-color: var(--main-green);
  border-radius: 6px;
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.home-content .wrapper .container .columns .work_group .items a {
    margin-bottom: 0;
  }
}
section.home-content .wrapper .container .columns .work_group .items a .item span {
  font-size: 15px;
  font-weight: 400;
  color: white;
}
section.home-content .wrapper .container .columns .work_group .role-container {
  display: none;
}
section.home-content .wrapper .container .columns .work_group .role-container .role {
  font-size: 14px;
  text-align: center;
}
section.home-content .wrapper .container .columns .work_group .role-container a {
  color: var(--theme-blue);
  display: block;
  margin: 0;
  margin-top: 15px;
  font-weight: normal;
  text-align: center;
  font-size: 15px;
  min-height: auto;
  padding: 0;
  background: transparent;
}
@media screen and (max-width: 480px) {
  section.home-content .wrapper .container .columns .work_group .role-container {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  section.home-content .wrapper .container .columns .news {
    grid-row: 1;
    margin-bottom: 40px;
  }
}
section.home-content .wrapper .container .columns .news .items {
  margin-top: 20px;
}
section.home-content .wrapper .container .columns .news .items a {
  display: block;
  margin-bottom: 30px;
}
section.home-content .wrapper .container .columns .news .items a .item {
  display: grid;
  grid-template-columns: 40% 60%;
}
@media screen and (max-width: 480px) {
  section.home-content .wrapper .container .columns .news .items a .item {
    grid-template-columns: repeat(1, 1fr);
  }
}
section.home-content .wrapper .container .columns .news .items a .item .img {
  margin-right: 20px;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 480px) {
  section.home-content .wrapper .container .columns .news .items a .item .img {
    display: none;
  }
}
section.home-content .wrapper .container .columns .news .items a .item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.home-content .wrapper .container .columns .news .items a .item .info {
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
section.home-content .wrapper .container .columns .news .items a .item .info .top .info-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--second-color);
}
section.home-content .wrapper .container .columns .news .items a .item .info .top .info-author .author {
  display: flex;
  align-items: center;
  gap: 10px;
}
section.home-content .wrapper .container .columns .news .items a .item .info .top .info-author .author img {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  border: 1px solid var(--main-green);
}
section.home-content .wrapper .container .columns .news .items a .item .info .top .info-author .author p {
  font-size: 14px;
  color: var(--main-green);
}
section.home-content .wrapper .container .columns .news .items a .item .info .top .info-author .date-publish {
  display: flex;
  align-items: center;
  gap: 10px;
}
section.home-content .wrapper .container .columns .news .items a .item .info .top .info-author .date-publish span {
  font-size: 13px;
  color: var(--second-color);
}
section.home-content .wrapper .container .columns .news .items a .item .info .top .info-content {
  margin: 20px 0;
  margin-top: 10px;
}
section.home-content .wrapper .container .columns .news .items a .item .info .top .info-content h4 {
  font-size: 18px;
  margin-bottom: 10px;
}
section.home-content .wrapper .container .columns .news .items a .item .info .top .info-content p {
  font-size: 15px;
}
section.home-content .wrapper .container .columns .news .items a .item .info .bottom {
  padding-bottom: 10px;
}
section.home-content .wrapper .container .columns .news .items a .item .info .bottom .info-comments {
  display: flex;
  align-items: center;
  gap: 5px;
}
.load_more,
.load_link,
.user_load_more {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
.load_more a,
.load_link a,
.user_load_more a {
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-green);
  color: white !important;
  height: 55px;
  gap: 20px;
  border-radius: 6px;
}
@media screen and (max-width: 480px) {
  .load_more a,
  .load_link a,
  .user_load_more a {
    height: 40px;
    max-width: 220px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  .load_more a,
  .load_link a,
  .user_load_more a {
    height: 50px;
    max-width: 250px;
  }
}
.load_more a span,
.load_link a span,
.user_load_more a span {
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  .load_more a span,
  .load_link a span,
  .user_load_more a span {
    font-size: 16px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  .load_more a span,
  .load_link a span,
  .user_load_more a span {
    font-size: 16px;
  }
}
.load_more a img.animation,
.load_link a img.animation,
.user_load_more a img.animation {
  animation: rotate 0.5s linear infinite;
}

.message-register {
  max-width: 600px;
  height: -moz-max-content;
  height: max-content;
  border: 2px solid var(--main-green);
  border-radius: 10px;
  padding: 20px 40px;
  margin: 0 auto;
  margin-top: 50px;
}
.message-register a {
  color: var(--theme-blue) !important;
  font-weight: 500;
  text-decoration: underline;
  font-size: 16px;
  display: block;
  margin-top: 5px;
  background-color: transparent !important;
  width: -moz-max-content !important;
  width: max-content !important;
  min-height: auto !important;
  padding: 0px !important;
  border-radius: 6px;
}

section.breadcurms {
  padding: 30px 0;
}
section.breadcurms .wrapper .container .title {
  padding-left: 100px;
}
@media screen and (max-width: 480px) {
  section.breadcurms .wrapper .container .title {
    padding-left: 30px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.breadcurms .wrapper .container .title {
    padding-left: 50px;
  }
}
section.breadcurms .wrapper .container .title h1 {
  font-size: 40px;
  margin-bottom: 30px;
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.breadcurms .wrapper .container .title h1 {
    font-size: 32px;
  }
}
@media screen and (max-width: 480px) {
  section.breadcurms .wrapper .container .title h1 {
    font-size: 26px;
  }
}
section.breadcurms .wrapper .container .links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3px;
}
section.breadcurms .wrapper .container .links a {
  color: var(--main-green);
}
section.breadcurms .wrapper .container .links span {
  color: var(--second-color);
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 250px;
  overflow: hidden;
}

section.news-filter {
  margin-bottom: 30px;
}
section.news-filter .wrapper .container .filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--main-green);
  padding: 6px 30px;
  border-radius: 5px;
  position: relative;
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.news-filter .wrapper .container .filter {
    background-color: transparent;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
    padding: 0;
  }
}
@media screen and (max-width: 480px) {
  section.news-filter .wrapper .container .filter {
    display: flex;
    background-color: transparent;
    padding: 0;
  }
}
section.news-filter .wrapper .container .filter .left-block {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.news-filter .wrapper .container .filter .left-block {
    background-color: var(--main-green);
    padding: 0 20px;
    border-radius: 5px;
    gap: 10px;
  }
}
@media screen and (max-width: 480px) {
  section.news-filter .wrapper .container .filter .left-block {
    background-color: var(--main-green);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
  }
}
section.news-filter .wrapper .container .filter .left-block .icon {
  cursor: pointer;
}
section.news-filter .wrapper .container .filter .left-block .icon img {
  min-width: 16px;
  width: 17px;
}
section.news-filter .wrapper .container .filter .left-block .filters-block {
  display: flex;
  align-items: center;
  gap: 6px;
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.news-filter .wrapper .container .filter .left-block .filters-block {
    grid-column-gap: 5px;
  }
}
@media screen and (max-width: 480px) {
  section.news-filter .wrapper .container .filter .left-block .filters-block {
    flex-direction: column;
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10;
    height: -moz-max-content;
    height: max-content;
    background: #fff;
    padding: 15px 10px;
    border-radius: 6px;
    border: 1px solid #00d084;
    grid-row-gap: 5px;
  }
}
section.news-filter .wrapper .container .filter .left-block .filter-list {
  width: 100%;
}
section.news-filter .wrapper .container .filter .left-block .filter-list select {
  background-color: transparent;
  color: white;
}
@media screen and (max-width: 480px) {
  section.news-filter .wrapper .container .filter .left-block .filter-list select {
    background: #00d084;
    width: 100%;
    min-width: 100%;
    padding: 0 20px;
  }
}
section.news-filter .wrapper .container .filter .left-block .filter-list select option {
  color: black;
  background-color: white;
}
section.news-filter .wrapper .container .filter .right-block {
  position: relative;
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.news-filter .wrapper .container .filter .right-block {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  section.news-filter .wrapper .container .filter .right-block {
    width: 90%;
    margin-left: 10px;
  }
}
section.news-filter .wrapper .container .filter .right-block input {
  width: 500px;
  height: 40px;
  background-color: white;
  border-radius: 4px;
  padding: 0 20px;
}
@media screen and (max-width: 480px) {
  section.news-filter .wrapper .container .filter .right-block input {
    max-width: 100%;
    width: 100%;
    height: 40px;
    box-shadow: inset 0 0 0 1px var(--second-color);
    min-height: 40px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.news-filter .wrapper .container .filter .right-block input {
    width: 100%;
    min-height: 50px;
    height: 50px;
    box-shadow: inset 0 0 0 1px var(--second-color);
  }
}
section.news-filter .wrapper .container .filter .right-block button {
  width: 40px;
  height: 40px;
  min-height: 40px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-green);
  position: absolute;
  top: 5px;
  right: 5px;
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.news-filter .wrapper .container .filter .right-block button {
    width: 38px;
    height: 38px;
    min-height: 38px;
    top: 5px;
    right: 5px;
  }
}
@media screen and (max-width: 480px) {
  section.news-filter .wrapper .container .filter .right-block button {
    width: 35px;
    height: 35px;
    min-height: 34px;
    top: 2px;
    right: 2px;
  }
  section.news-filter .wrapper .container .filter .right-block button img {
    width: 15px;
  }
}
section.news-filter .wrapper .container .tabs {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}
section.news-filter .wrapper .container .tabs button {
  min-height: 34px;
  height: 34px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-green);
  border-radius: 5px;
  box-shadow: 0 0 0 1px var(--main-green);
  transition: all 0.3s linear;
}
section.news-filter .wrapper .container .tabs button.active {
  background-color: var(--main-green);
  color: white;
}
section.news-filter .wrapper .container .tabs button:hover {
  transition: all 0.3s linear;
  color: white;
  background-color: var(--main-green);
}

section.news-cards {
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  section.news-cards .wrapper .container .news {
    grid-row: 1;
    margin-bottom: 40px;
  }
}
section.news-cards .wrapper .container .news .items {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}
@media screen and (max-width: 480px) {
  section.news-cards .wrapper .container .news .items {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.news-cards .wrapper .container .news .items {
    grid-template-columns: repeat(1, 1fr);
  }
}
section.news-cards .wrapper .container .news .items a {
  display: block;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--second-color);
  color: black;
}
section.news-cards .wrapper .container .news .items a .item {
  display: grid;
  grid-template-columns: 40% 60%;
}
@media screen and (max-width: 480px) {
  section.news-cards .wrapper .container .news .items a .item {
    grid-template-columns: repeat(1, 1fr);
  }
}
section.news-cards .wrapper .container .news .items a .item .img {
  margin-right: 20px;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 480px) {
  section.news-cards .wrapper .container .news .items a .item .img {
    display: none;
  }
}
section.news-cards .wrapper .container .news .items a .item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.news-cards .wrapper .container .news .items a .item .info {
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
section.news-cards .wrapper .container .news .items a .item .info .top .info-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--second-color);
}
section.news-cards .wrapper .container .news .items a .item .info .top .info-author .author {
  display: flex;
  align-items: center;
  gap: 10px;
}
section.news-cards .wrapper .container .news .items a .item .info .top .info-author .author img {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  border: 1px solid var(--main-green);
}
section.news-cards .wrapper .container .news .items a .item .info .top .info-author .author p {
  font-size: 14px;
  color: var(--main-green);
}
section.news-cards .wrapper .container .news .items a .item .info .top .info-author .date-publish {
  display: flex;
  align-items: center;
  gap: 10px;
}
section.news-cards .wrapper .container .news .items a .item .info .top .info-author .date-publish span {
  font-size: 13px;
  color: var(--second-color);
}
section.news-cards .wrapper .container .news .items a .item .info .top .info-content {
  margin: 20px 0;
  margin-top: 10px;
}
section.news-cards .wrapper .container .news .items a .item .info .top .info-content h4 {
  font-size: 18px;
  margin-bottom: 10px;
}
section.news-cards .wrapper .container .news .items a .item .info .top .info-content p {
  font-size: 15px;
}
section.news-cards .wrapper .container .news .items a .item .info .bottom {
  padding-bottom: 10px;
}
section.news-cards .wrapper .container .news .items a .item .info .bottom .info-comments {
  display: flex;
  align-items: center;
  grid-column-gap: 5px;
}
section.news-cards .wrapper .container .pagination {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  grid-gap: 13px;
}
section.news-cards .wrapper .container .pagination .page-numbers {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--second-color);
  color: white;
}
section.news-cards .wrapper .container .pagination .page-numbers.current {
  color: white;
  background-color: var(--main-green);
}
section.news-cards .wrapper .container .pagination .page-numbers.next {
  width: -moz-max-content;
  width: max-content;
  padding: 0 10px;
  background-color: var(--main-green);
  color: white;
}
section.news-cards .wrapper .container .pagination a {
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-green);
  color: white;
  height: 55px;
  gap: 20px;
  border-radius: 6px;
}
@media screen and (max-width: 480px) {
  section.news-cards .wrapper .container .pagination a {
    height: 40px;
    max-width: 220px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.news-cards .wrapper .container .pagination a {
    height: 50px;
    max-width: 250px;
  }
}
section.news-cards .wrapper .container .pagination a span {
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  section.news-cards .wrapper .container .pagination a span {
    font-size: 16px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.news-cards .wrapper .container .pagination a span {
    font-size: 16px;
  }
}

section.mission .wrapper .container .items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 80px;
}
@media screen and (max-width: 480px) {
  section.mission .wrapper .container .items {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 30px;
  }
}
section.mission .wrapper .container .items .item.left h1 {
  font-size: 36px;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  section.mission .wrapper .container .items .item.left h1 {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.mission .wrapper .container .items .item.left h1 {
    font-size: 28px;
  }
}
section.mission .wrapper .container .items .item.left p {
  margin-bottom: 10px;
  font-size: 16px;
}
section.mission .wrapper .container .items .item.left img {
  border-radius: 5px;
  width: 100%;
  height: 300px;
  margin: 20px 0;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 480px) {
  section.mission .wrapper .container .items .item.left img {
    height: auto;
    margin: 0px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.mission .wrapper .container .items .item.left img {
    height: auto;
  }
}
section.mission .wrapper .container .items .item.right .title h4 {
  font-size: 36px;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  section.mission .wrapper .container .items .item.right .title h4 {
    margin: 0;
    font-size: 24px;
    margin-bottom: 14px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.mission .wrapper .container .items .item.right .title h4 {
    font-size: 28px;
    margin: 0px;
    margin-bottom: 16px;
  }
}
section.mission .wrapper .container .items .item.right .lists {
  max-width: 80%;
}
@media screen and (max-width: 480px) {
  section.mission .wrapper .container .items .item.right .lists {
    max-width: 100%;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.mission .wrapper .container .items .item.right .lists {
    max-width: 100%;
  }
}
section.mission .wrapper .container .items .item.right .lists .list {
  padding: 20px 34px;
  border-radius: 8px;
  background-color: var(--main-green);
  color: white;
  margin-bottom: 20px;
}
@media screen and (max-width: 480px) {
  section.mission .wrapper .container .items .item.right .lists .list {
    padding: 10px 20px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.mission .wrapper .container .items .item.right .lists .list {
    padding: 14px 22px;
  }
}
section.mission .wrapper .container .items .item.right .lists .list strong {
  font-size: 18px;
  margin-bottom: 5px;
  display: block;
}
@media screen and (max-width: 480px) {
  section.mission .wrapper .container .items .item.right .lists .list strong {
    font-size: 16px;
    font-weight: 500;
  }
}
section.mission .wrapper .container .items .item.right .lists .list p {
  font-size: 16px;
  line-height: 120%;
}
@media screen and (max-width: 480px) {
  section.mission .wrapper .container .items .item.right .lists .list p {
    font-size: 15px;
  }
}

section.team {
  padding: 50px 0;
}
section.team .wrapper .container .title {
  margin-bottom: 30px;
}
section.team .wrapper .container .title h4 {
  font-size: 36px;
  margin-bottom: 10px;
}
@media screen and (max-width: 480px) {
  section.team .wrapper .container .title h4 {
    font-size: 24px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.team .wrapper .container .title h4 {
    font-size: 26px;
  }
}
section.team .wrapper .container .title p {
  max-width: 600px;
}
section.team .wrapper .container .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 30px;
}
@media screen and (max-width: 480px) {
  section.team .wrapper .container .items {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.team .wrapper .container .items {
    grid-template-columns: repeat(2, 1fr);
  }
}
section.team .wrapper .container .items .item {
  overflow: hidden;
  border-radius: 8px;
  background-color: #f5f5f5;
}
section.team .wrapper .container .items .item img {
  width: 100%;
  height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
}
section.team .wrapper .container .items .item .content {
  display: flex;
  background-color: var(--main-green);
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border-radius: 5px;
}
section.team .wrapper .container .items .item .content .info {
  padding-right: 30px;
}
section.team .wrapper .container .items .item .content .info strong {
  font-size: 18px;
  display: block;
  color: white;
  margin-bottom: 10px;
}
section.team .wrapper .container .items .item .content .info p {
  color: white;
}
section.team .wrapper .container .items .item .content .social {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 10px;
  padding: 24px;
}
section.team .wrapper .container .items .item .content .social a img {
  width: 30px;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

section.partner {
  max-width: 1000px;
  margin: 0 auto;
}
section.partner .wrapper .container .title {
  text-align: center;
}
section.partner .wrapper .container .title h2 {
  font-size: 36px;
}
@media screen and (max-width: 480px) {
  section.partner .wrapper .container .title h2 {
    font-size: 24px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.partner .wrapper .container .title h2 {
    font-size: 26px;
  }
}
section.partner .wrapper .container .partner-slider {
  margin: 40px auto;
  padding-bottom: 50px;
}
section.partner .wrapper .container .partner-slider .splide .splide__track .splide__slide {
  padding: 10px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid var(--second-color);
}
section.partner .wrapper .container .partner-slider .splide .splide__track .splide__slide img {
  height: 100px;
  margin: 0 auto;
}
section.partner .wrapper .container .partner-slider .splide__pagination {
  bottom: -50px;
}
section.partner .wrapper .container .partner-slider .splide__pagination li button {
  min-height: auto;
  opacity: 1;
  background-color: #9efdb6;
}
section.partner .wrapper .container .partner-slider .splide__pagination li button.is-active {
  background-color: var(--main-green);
}

section.expert_page {
  padding-bottom: 50px;
}
section.expert_page .wrapper .container .columns {
  display: grid;
  grid-template-columns: 20% 80%;
}
@media screen and (max-width: 480px) {
  section.expert_page .wrapper .container .columns {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.expert_page .wrapper .container .columns {
    grid-template-columns: repeat(1, 1fr);
  }
}
section.expert_page .wrapper .container .columns .filter-expert {
  border: 1px solid var(--main-green);
  border-radius: 8px;
  padding: 16px;
  height: -moz-max-content;
  height: max-content;
  margin-bottom: 20px;
}
section.expert_page .wrapper .container .columns .filter-expert .message-register {
  padding: 20px;
  font-size: 14px;
  margin-top: 0px;
}
section.expert_page .wrapper .container .columns .filter-expert .message-register a {
  font-size: 14px;
}
@media screen and (max-width: 480px) {
  section.expert_page .wrapper .container .columns .filter-expert {
    padding: 0px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.expert_page .wrapper .container .columns .filter-expert {
    padding: 0px;
    max-width: 50%;
  }
}
section.expert_page .wrapper .container .columns .filter-expert form.search_expert_form {
  margin-top: 30px;
}
section.expert_page .wrapper .container .columns .filter-expert form.search_expert_form input {
  width: 100%;
  padding: 0 20px;
  height: 40px;
  border: 1px solid #b1b1b1;
  margin: 10px 0;
}
section.expert_page .wrapper .container .columns .filter-expert form.search_expert_form button {
  width: 100px;
  float: left;
  padding: 0 32px;
  background: #00d084;
  color: white;
}
section.expert_page .wrapper .container .columns .filter-expert .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--main-green);
}
@media screen and (max-width: 480px) {
  section.expert_page .wrapper .container .columns .filter-expert .top {
    background-color: var(--main-green);
    padding: 16px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.expert_page .wrapper .container .columns .filter-expert .top {
    background-color: var(--main-green);
    padding: 16px;
  }
}
section.expert_page .wrapper .container .columns .filter-expert .top .left {
  display: flex;
  align-items: center;
  gap: 8px;
}
section.expert_page .wrapper .container .columns .filter-expert .top .left img {
  min-width: 14px;
  width: 14px;
}
section.expert_page .wrapper .container .columns .filter-expert .top .left img.desktop {
  display: none;
}
section.expert_page .wrapper .container .columns .filter-expert .top .left strong {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  section.expert_page .wrapper .container .columns .filter-expert .top .left strong {
    color: white;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.expert_page .wrapper .container .columns .filter-expert .top .left strong {
    color: white;
  }
}
section.expert_page .wrapper .container .columns .filter-expert .top .right a {
  color: var(--main-green);
  font-size: 15px;
  background-color: transparent;
  min-height: auto;
}
@media screen and (max-width: 480px) {
  section.expert_page .wrapper .container .columns .filter-expert .top .right a {
    color: white;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.expert_page .wrapper .container .columns .filter-expert .top .right a {
    color: white;
  }
}
section.expert_page .wrapper .container .columns .filter-expert .items {
  margin-top: 10px;
}
@media screen and (max-width: 480px) {
  section.expert_page .wrapper .container .columns .filter-expert .items {
    padding: 0 16px;
    display: none;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.expert_page .wrapper .container .columns .filter-expert .items {
    padding: 0 16px;
    display: none;
  }
}
section.expert_page .wrapper .container .columns .filter-expert .items .item {
  margin-bottom: 12px;
  box-shadow: 0 0 0 1px var(--main-green);
  border-radius: 6px;
  background: #fff;
}
section.expert_page .wrapper .container .columns .filter-expert .items .item .top {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  background: var(--main-green);
}
section.expert_page .wrapper .container .columns .filter-expert .items .item .content {
  padding: 10px 20px;
  display: none;
}
section.expert_page .wrapper .container .columns .filter-expert .items .item .content ul li {
  margin-bottom: 10px;
  cursor: pointer;
}
section.expert_page .wrapper .container .columns .filter-expert .items .item:last-child {
  margin-bottom: 0;
}
section.expert_page .wrapper .container .columns .filter-expert .filter-btn {
  margin-top: 10px;
}
@media screen and (max-width: 480px) {
  section.expert_page .wrapper .container .columns .filter-expert .filter-btn {
    padding: 0 16px;
    margin-bottom: 16px;
    display: none;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.expert_page .wrapper .container .columns .filter-expert .filter-btn {
    padding: 0 16px;
    margin-bottom: 16px;
    display: none;
  }
}
section.expert_page .wrapper .container .columns .filter-expert .filter-btn button {
  padding: 0 20px;
  min-height: 40px;
  background-color: var(--main-green);
  color: white;
}
section.expert_page .wrapper .container .columns .items.expert {
  padding-left: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 40px;
}
@media screen and (max-width: 480px) {
  section.expert_page .wrapper .container .columns .items.expert {
    grid-template-columns: repeat(1, 1fr);
    padding-left: 0;
    grid-row-gap: 25px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.expert_page .wrapper .container .columns .items.expert {
    padding-left: 0;
  }
}
section.expert_page .wrapper .container .columns .items.expert .item a {
  color: black;
  display: grid;
  grid-template-columns: 35% 65%;
}
@media screen and (max-width: 480px) {
  section.expert_page .wrapper .container .columns .items.expert .item a {
    grid-template-columns: repeat(1, 1fr);
    padding: 12px;
    border: 1px solid var(--second-color);
    border-radius: 6px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.expert_page .wrapper .container .columns .items.expert .item a {
    grid-template-columns: repeat(1, 1fr);
    border: 1px solid var(--second-color);
    padding: 16px;
    border-radius: 10px;
    gap: 20px;
  }
}
section.expert_page .wrapper .container .columns .items.expert .item .img {
  display: flex;
  width: 100%;
  align-items: center;
}
section.expert_page .wrapper .container .columns .items.expert .item .img img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
@media screen and (max-width: 480px) {
  section.expert_page .wrapper .container .columns .items.expert .item .img img {
    width: 33%;
    height: 180px;
    border: 1px solid var(--main-green);
    border-radius: 6px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.expert_page .wrapper .container .columns .items.expert .item .img img {
    max-height: 200px;
    height: 200px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
section.expert_page .wrapper .container .columns .items.expert .item .img .expert-education {
  width: 67%;
  margin-left: 10px;
  flex-direction: column;
  gap: 5px;
  display: none;
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.expert_page .wrapper .container .columns .items.expert .item .img .expert-education {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  section.expert_page .wrapper .container .columns .items.expert .item .img .expert-education {
    display: flex;
  }
}
section.expert_page .wrapper .container .columns .items.expert .item .img .expert-education p {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}
section.expert_page .wrapper .container .columns .items.expert .item .img .expert-education p img {
  width: 17px;
  border: 0px;
}
section.expert_page .wrapper .container .columns .items.expert .item .img .expert-education p strong {
  font-weight: 500;
}
section.expert_page .wrapper .container .columns .items.expert .item .info {
  padding-left: 20px;
}
@media screen and (max-width: 480px) {
  section.expert_page .wrapper .container .columns .items.expert .item .info {
    padding-left: 0;
    margin-top: 16px;
  }
}
section.expert_page .wrapper .container .columns .items.expert .item .info .expert-data {
  margin-bottom: 10px;
}
section.expert_page .wrapper .container .columns .items.expert .item .info .expert-data strong {
  font-size: 22px;
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}
section.expert_page .wrapper .container .columns .items.expert .item .info .expert-data p {
  font-size: 15px;
  line-height: 100%;
}
section.expert_page .wrapper .container .columns .items.expert .item .info .expert-education {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media screen and (max-width: 480px) {
  section.expert_page .wrapper .container .columns .items.expert .item .info .expert-education {
    display: none;
  }
}
section.expert_page .wrapper .container .columns .items.expert .item .info .expert-education p {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}
section.expert_page .wrapper .container .columns .items.expert .item .info .expert-education p img {
  width: 17px;
}
section.expert_page .wrapper .container .columns .items.expert .item .info .expert-education p strong {
  font-weight: 500;
}
section.expert_page .wrapper .container .columns .items.expert .item .info .expert-posts {
  display: flex;
  flex-wrap: wrap;
  grid-column-gap: 20px;
  grid-row-gap: 10px;
  margin: 20px 0;
}
section.expert_page .wrapper .container .columns .items.expert .item .info .expert-posts a,
section.expert_page .wrapper .container .columns .items.expert .item .info .expert-posts p {
  font-size: 15px;
  color: var(--theme-blue);
}
section.expert_page .wrapper .container .columns .items.expert .item .info .expert-posts p {
  color: var(--theme-blue);
  display: inline;
}
section.expert_page .wrapper .container .columns .items.expert .item .info .expert-link a {
  width: -moz-max-content;
  width: max-content;
  padding: 8px 30px;
  border-radius: 6px;
  background-color: var(--main-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
}
section.expert_page .wrapper .container .columns .load_more {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
section.expert_page .wrapper .container .columns .load_more a {
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-green);
  color: white;
  height: 55px;
  gap: 20px;
  border-radius: 6px;
}
@media screen and (max-width: 480px) {
  section.expert_page .wrapper .container .columns .load_more a {
    height: 40px;
    max-width: 220px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.expert_page .wrapper .container .columns .load_more a {
    height: 50px;
    max-width: 250px;
  }
}
section.expert_page .wrapper .container .columns .load_more a span {
  font-size: 18px;
}
@media screen and (max-width: 480px) {
  section.expert_page .wrapper .container .columns .load_more a span {
    font-size: 16px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.expert_page .wrapper .container .columns .load_more a span {
    font-size: 16px;
  }
}

section.document-items {
  margin-bottom: 30px;
}
section.document-items .wrapper .container .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 10px;
}
@media screen and (max-width: 480px) {
  section.document-items .wrapper .container .items {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.document-items .wrapper .container .items {
    grid-template-columns: repeat(2, 1fr);
  }
}

section.page-work-group {
  margin-bottom: 40px;
}
section.page-work-group .wrapper .container .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 20px;
}
@media screen and (max-width: 480px) {
  section.page-work-group .wrapper .container .items {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.page-work-group .wrapper .container .items {
    grid-template-columns: repeat(2, 1fr);
  }
}
section.page-work-group .wrapper .container .items .item {
  padding: 20px 30px;
  border-radius: 10px;
  border: 1px solid var(--second-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
section.page-work-group .wrapper .container .items .item .top h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
section.page-work-group .wrapper .container .items .item .top .author {
  display: flex;
  align-items: center;
  font-size: 15px;
}
section.page-work-group .wrapper .container .items .item .bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 10px;
  margin-top: 20px;
}
section.page-work-group .wrapper .container .items .item .bottom .left {
  display: flex;
  gap: 14px;
  align-items: center;
}
section.page-work-group .wrapper .container .items .item .bottom .left div {
  display: flex;
  align-content: center;
  gap: 2px;
}
section.page-work-group .wrapper .container .items .item .bottom .left div img {
  width: 18px;
}
section.page-work-group .wrapper .container .items .item .bottom .right {
  display: flex;
  justify-content: end;
}
section.page-work-group .wrapper .container .items .item .bottom .right button {
  width: 70%;
  background-color: var(--main-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 40px;
  min-width: 140px;
}

.expert-single {
  margin-bottom: 50px;
}
.expert-single .wrapper .container .single-expert-about {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 40px;
  margin-bottom: 30px;
}
@media screen and (max-width: 480px) {
  .expert-single .wrapper .container .single-expert-about {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 20px;
  }
}
.expert-single .wrapper .container .single-expert-about .left .item {
  display: grid;
  align-items: center;
  grid-template-columns: 35% 65%;
}
@media screen and (max-width: 480px) {
  .expert-single .wrapper .container .single-expert-about .left .item {
    grid-template-columns: repeat(1, 1fr);
    padding: 12px;
    border: 1px solid var(--second-color);
    border-radius: 6px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  .expert-single .wrapper .container .single-expert-about .left .item {
    grid-template-columns: repeat(1, 1fr);
    border: 1px solid var(--second-color);
    padding: 16px;
    border-radius: 10px;
    gap: 20px;
  }
}
.expert-single .wrapper .container .single-expert-about .left .item .img {
  display: flex;
  width: 100%;
  align-items: center;
}
.expert-single .wrapper .container .single-expert-about .left .item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
@media screen and (max-width: 480px) {
  .expert-single .wrapper .container .single-expert-about .left .item .img img {
    width: 33%;
    height: auto;
    border: 1px solid var(--main-green);
    border-radius: 6px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  .expert-single .wrapper .container .single-expert-about .left .item .img img {
    max-height: 200px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.expert-single .wrapper .container .single-expert-about .left .item .img .expert-education {
  width: 67%;
  margin-left: 10px;
  flex-direction: column;
  gap: 5px;
  display: none;
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  .expert-single .wrapper .container .single-expert-about .left .item .img .expert-education {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .expert-single .wrapper .container .single-expert-about .left .item .img .expert-education {
    display: flex;
  }
}
.expert-single .wrapper .container .single-expert-about .left .item .img .expert-education p {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.expert-single .wrapper .container .single-expert-about .left .item .img .expert-education p img {
  width: 17px;
  border: 0px;
}
.expert-single .wrapper .container .single-expert-about .left .item .img .expert-education p strong {
  font-weight: 500;
}
.expert-single .wrapper .container .single-expert-about .left .item .info {
  padding-left: 20px;
}
@media screen and (max-width: 480px) {
  .expert-single .wrapper .container .single-expert-about .left .item .info {
    padding-left: 0;
    margin-top: 16px;
  }
}
.expert-single .wrapper .container .single-expert-about .left .item .info .expert-data {
  margin-bottom: 10px;
}
.expert-single .wrapper .container .single-expert-about .left .item .info .expert-data strong {
  font-size: 22px;
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}
.expert-single .wrapper .container .single-expert-about .left .item .info .expert-data p {
  font-size: 15px;
  line-height: 100%;
}
.expert-single .wrapper .container .single-expert-about .left .item .info .expert-education {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media screen and (max-width: 480px) {
  .expert-single .wrapper .container .single-expert-about .left .item .info .expert-education {
    display: none;
  }
}
.expert-single .wrapper .container .single-expert-about .left .item .info .expert-education p {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.expert-single .wrapper .container .single-expert-about .left .item .info .expert-education p img {
  width: 17px;
}
.expert-single .wrapper .container .single-expert-about .left .item .info .expert-education p strong {
  font-weight: 500;
}
.expert-single .wrapper .container .single-expert-about .left .item .info .get_resume {
  margin-top: 20px;
}
.expert-single .wrapper .container .single-expert-about .left .item .info .get_resume button {
  min-height: 40px;
  padding: 0 20px;
  background-color: var(--main-green);
  color: white;
  font-size: 15px;
}
.expert-single .wrapper .container .single-expert-about .left .item .info .expert-posts {
  display: flex;
  flex-wrap: wrap;
  grid-column-gap: 20px;
  grid-row-gap: 10px;
  margin: 20px 0;
}
.expert-single .wrapper .container .single-expert-about .left .item .info .expert-posts a,
.expert-single .wrapper .container .single-expert-about .left .item .info .expert-posts p {
  color: var(--theme-blue);
  font-size: 15px;
}
.expert-single .wrapper .container .single-expert-about .left .item .info .expert-link a {
  width: -moz-max-content;
  width: max-content;
  padding: 8px 30px;
  border-radius: 6px;
  background-color: var(--main-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
}
.expert-single .wrapper .container .single-expert-about .right h4 {
  font-size: 26px;
}
.expert-single .wrapper .container .single-expert-about .right * {
  margin-bottom: 10px;
}
.expert-single .wrapper .container .single-expert-tabs {
  display: flex;
  grid-column-gap: 20px;
  grid-row-gap: 10px;
  flex-wrap: wrap;
  padding-bottom: 20px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--main-green);
}
.expert-single .wrapper .container .single-expert-tabs a {
  padding: 0 30px;
  background-color: transparent;
  border: 1px solid var(--main-green);
  color: var(--main-green);
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}
.expert-single .wrapper .container .single-expert-tabs a.active {
  color: white;
  background-color: var(--main-green);
}
@media screen and (max-width: 480px) {
  .expert-single .wrapper .container .single-expert-tabs a {
    min-height: 40px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 480px) {
  .expert-single .wrapper .container .single-expert-posts .news {
    grid-row: 1;
    margin-bottom: 40px;
  }
}
.expert-single .wrapper .container .single-expert-posts .news .items {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}
@media screen and (max-width: 480px) {
  .expert-single .wrapper .container .single-expert-posts .news .items {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  .expert-single .wrapper .container .single-expert-posts .news .items {
    grid-template-columns: repeat(1, 1fr);
  }
}
.expert-single .wrapper .container .single-expert-posts .news .items a {
  display: block;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--second-color);
  color: black;
}
.expert-single .wrapper .container .single-expert-posts .news .items a .item {
  display: grid;
  grid-template-columns: 40% 60%;
}
@media screen and (max-width: 480px) {
  .expert-single .wrapper .container .single-expert-posts .news .items a .item {
    grid-template-columns: repeat(1, 1fr);
  }
}
.expert-single .wrapper .container .single-expert-posts .news .items a .item .img {
  margin-right: 20px;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 480px) {
  .expert-single .wrapper .container .single-expert-posts .news .items a .item .img {
    display: none;
  }
}
.expert-single .wrapper .container .single-expert-posts .news .items a .item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.expert-single .wrapper .container .single-expert-posts .news .items a .item .info {
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.expert-single .wrapper .container .single-expert-posts .news .items a .item .info .top .info-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--second-color);
}
.expert-single .wrapper .container .single-expert-posts .news .items a .item .info .top .info-author .author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.expert-single .wrapper .container .single-expert-posts .news .items a .item .info .top .info-author .author img {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  border: 1px solid var(--main-green);
}
.expert-single .wrapper .container .single-expert-posts .news .items a .item .info .top .info-author .author p {
  font-size: 14px;
  color: var(--main-green);
}
.expert-single .wrapper .container .single-expert-posts .news .items a .item .info .top .info-author .date-publish {
  display: flex;
  align-items: center;
  gap: 10px;
}
.expert-single .wrapper .container .single-expert-posts .news .items a .item .info .top .info-author .date-publish span {
  font-size: 13px;
  color: var(--second-color);
}
.expert-single .wrapper .container .single-expert-posts .news .items a .item .info .top .info-content {
  margin: 20px 0;
  margin-top: 10px;
}
.expert-single .wrapper .container .single-expert-posts .news .items a .item .info .top .info-content h4 {
  font-size: 18px;
  margin-bottom: 10px;
}
.expert-single .wrapper .container .single-expert-posts .news .items a .item .info .top .info-content p {
  font-size: 15px;
}
.expert-single .wrapper .container .single-expert-posts .news .items a .item .info .bottom {
  padding-bottom: 10px;
}
.expert-single .wrapper .container .single-expert-posts .news .items a .item .info .bottom .info-comments {
  display: flex;
  align-items: center;
  grid-column-gap: 5px;
}
.expert-single .wrapper .container .single-expert-posts .work-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 20px;
}
@media screen and (max-width: 480px) {
  .expert-single .wrapper .container .single-expert-posts .work-group {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  .expert-single .wrapper .container .single-expert-posts .work-group {
    grid-template-columns: repeat(2, 1fr);
  }
}
.expert-single .wrapper .container .single-expert-posts .work-group .item {
  padding: 20px 30px;
  border-radius: 10px;
  border: 1px solid var(--second-color);
}
.expert-single .wrapper .container .single-expert-posts .work-group .item .top h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.expert-single .wrapper .container .single-expert-posts .work-group .item .top .author {
  display: flex;
  align-items: center;
  font-size: 15px;
}
.expert-single .wrapper .container .single-expert-posts .work-group .item .bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 10px;
  margin-top: 20px;
}
.expert-single .wrapper .container .single-expert-posts .work-group .item .bottom .left {
  display: flex;
  gap: 14px;
  align-items: center;
}
.expert-single .wrapper .container .single-expert-posts .work-group .item .bottom .left div {
  display: flex;
  align-content: center;
  gap: 2px;
}
.expert-single .wrapper .container .single-expert-posts .work-group .item .bottom .left div img {
  width: 18px;
}
.expert-single .wrapper .container .single-expert-posts .work-group .item .bottom .right {
  display: flex;
  justify-content: end;
}
.expert-single .wrapper .container .single-expert-posts .work-group .item .bottom .right button {
  width: 70%;
  background-color: var(--main-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 40px;
  min-width: 140px;
}
.expert-single .wrapper .container .single-expert-posts .documents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 10px;
}
@media screen and (max-width: 480px) {
  .expert-single .wrapper .container .single-expert-posts .documents {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  .expert-single .wrapper .container .single-expert-posts .documents {
    grid-template-columns: repeat(2, 1fr);
  }
}

.get_resume_form {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.2980392157);
}
.get_resume_form .form {
  padding: 40px;
  border-radius: 15px;
  background-color: #fff;
  max-width: 500px;
  position: relative;
}
.get_resume_form .form .form_close_icon {
  cursor: pointer;
  position: absolute;
  top: 14px;
  right: 14px;
}
.get_resume_form .form .form_close_icon img {
  max-width: 24px;
}
.get_resume_form .form form {
  display: flex;
  flex-direction: column;
  grid-row-gap: 10px;
}
.get_resume_form .form form .subject {
  margin-bottom: 14px;
  text-align: center;
  width: 330px;
}
.get_resume_form .form form input {
  width: 330px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 4px;
  box-shadow: 0 0 1px 0 #898989;
}
.get_resume_form .form form textarea {
  padding: 20px;
  height: 100px;
  border-radius: 4px;
  box-shadow: 0 0 1px 0 #898989;
}
.get_resume_form .form form button {
  min-height: 50px;
  background-color: var(--main-green);
  color: white;
  width: 330px;
  margin-top: 10px;
}

section.single-post-page .wrapper .container {
  display: grid;
  grid-template-columns: 75% 25%;
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.single-post-page .wrapper .container {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 480px) {
  section.single-post-page .wrapper .container {
    grid-template-columns: repeat(1, 1fr);
  }
}
section.single-post-page .wrapper .container .left {
  padding-right: 40px;
  padding-bottom: 40px;
}
@media screen and (max-width: 480px) {
  section.single-post-page .wrapper .container .left {
    padding-right: 0;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.single-post-page .wrapper .container .left {
    padding-right: 0;
  }
}
section.single-post-page .wrapper .container .left .title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}
section.single-post-page .wrapper .container .left .title span {
  font-size: 28px;
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.single-post-page .wrapper .container .left .title span {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  section.single-post-page .wrapper .container .left .title span {
    font-size: 20px;
  }
}
section.single-post-page .wrapper .container .left .title h1 {
  font-size: 28px;
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.single-post-page .wrapper .container .left .title h1 {
    font-size: 24px;
  }
}
@media screen and (max-width: 480px) {
  section.single-post-page .wrapper .container .left .title h1 {
    font-size: 20px;
  }
}
section.single-post-page .wrapper .container .left .content * {
  margin-bottom: 10px;
}
section.single-post-page .wrapper .container .left .comments-block {
  margin-top: 50px;
}
section.single-post-page .wrapper .container .left .comments-block .title {
  display: flex;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid #000;
  margin-bottom: 30px;
}
section.single-post-page .wrapper .container .left .comments-block .title strong {
  font-size: 24px;
}
section.single-post-page .wrapper .container .left .comments-block .title span {
  font-size: 24px;
}
section.single-post-page .wrapper .container .left .comments-block .lists .current-comment {
  cursor: pointer;
  margin-bottom: 30px;
}
section.single-post-page .wrapper .container .left .comments-block .lists .current-comment span:hover {
  color: var(--main-green);
}
section.single-post-page .wrapper .container .left .comments-block .lists .current-comment .author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
section.single-post-page .wrapper .container .left .comments-block .lists .current-comment .author span {
  color: #4b4b4b;
  font-size: 12px;
}
section.single-post-page .wrapper .container .left .comments-block .lists .current-comment .text {
  font-size: 14px;
}
section.single-post-page .wrapper .container .left .comments-block .lists .current-comment .text a {
  color: var(--theme-blue);
  font-weight: 500;
  text-decoration: underline;
}
section.single-post-page .wrapper .container .left .comments-block .lists .current-comment .post_meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
}
section.single-post-page .wrapper .container .left .comments-block .lists .current-comment .post_meta div {
  display: flex;
  align-items: center;
  gap: 4px;
}
section.single-post-page .wrapper .container .left .comments-block .lists .current-comment .post_meta div span {
  font-size: 16px;
}
@media screen and (max-width: 480px) {
  section.single-post-page .wrapper .container .left .comments-block .lists .current-comment .post_meta .add-file span {
    display: none;
  }
}
section.single-post-page .wrapper .container .left .comments-block .lists .answers {
  margin: 20px 0;
  margin-left: 40px;
}
section.single-post-page .wrapper .container .left .comments-block .comments-forms {
  margin-left: 40px;
}
section.single-post-page .wrapper .container .left .comments-block .comments-forms.current {
  margin: 50px 0;
  margin-left: 0;
}
section.single-post-page .wrapper .container .left .comments-block .comments-forms.current .add-file-form {
  margin-bottom: 20px;
}
section.single-post-page .wrapper .container .left .comments-block .comments-forms .add-file-form {
  display: flex;
  align-items: center;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  position: relative;
}
@media screen and (max-width: 480px) {
  section.single-post-page .wrapper .container .left .comments-block .comments-forms .add-file-form {
    flex-wrap: wrap;
  }
}
section.single-post-page .wrapper .container .left .comments-block .comments-forms .add-file-form label {
  cursor: pointer;
  max-width: 206px;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column-gap: 10px;
  padding: 10px 20px;
  border-radius: 6px;
  height: 40px;
  border: 1px solid var(--main-green);
}
@media screen and (max-width: 480px) {
  section.single-post-page .wrapper .container .left .comments-block .comments-forms .add-file-form label {
    padding: 0;
    width: 40px;
  }
}
section.single-post-page .wrapper .container .left .comments-block .comments-forms .add-file-form label input {
  display: none;
}
section.single-post-page .wrapper .container .left .comments-block .comments-forms .add-file-form input {
  width: -moz-max-content;
  width: max-content;
  border: 1px solid var(--main-green);
  padding: 0 10px;
  min-height: 40px;
}
section.single-post-page .wrapper .container .left .comments-block .comments-forms .add-file-form button {
  padding: 0 20px;
  background-color: var(--main-green);
  color: white;
  min-height: 40px;
}
section.single-post-page .wrapper .container .left .comments-block .comments-forms .message {
  position: absolute;
  bottom: 105%;
  padding: 10px 20px;
  border-radius: 5px;
  border: 1px solid #f00;
  background: #fff;
  color: red;
  left: 0;
}
section.single-post-page .wrapper .container .left .comments-block .comments-forms .add-comment-form {
  position: relative;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 480px) {
  section.single-post-page .wrapper .container .left .comments-block .comments-forms .add-comment-form {
    width: 100%;
  }
}
section.single-post-page .wrapper .container .left .comments-block .comments-forms .add-comment-form textarea {
  width: 600px;
  border-radius: 6px;
  border: 1px solid var(--second-color);
  padding: 14px;
  padding-bottom: 60px;
  height: 200px;
  overflow-y: auto;
}
@media screen and (max-width: 480px) {
  section.single-post-page .wrapper .container .left .comments-block .comments-forms .add-comment-form textarea {
    width: 100%;
    min-width: 100%;
  }
}
section.single-post-page .wrapper .container .left .comments-block .comments-forms .add-comment-form textarea::-moz-placeholder {
  color: black;
}
section.single-post-page .wrapper .container .left .comments-block .comments-forms .add-comment-form textarea::placeholder {
  color: black;
}
section.single-post-page .wrapper .container .left .comments-block .comments-forms .add-comment-form button {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 0 15px;
  background-color: var(--main-green);
  color: white;
  min-height: 40px;
}
@media screen and (max-width: 480px) {
  section.single-post-page .wrapper .container .right {
    display: none;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  section.single-post-page .wrapper .container .right {
    display: none;
  }
}
section.single-post-page .wrapper .container .right strong {
  display: block;
  font-size: 28px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--main-green);
}
section.single-post-page .wrapper .container .right .lists .list {
  padding: 10px 25px;
  border-radius: 10px;
  border: 1px solid var(--main-green);
  background-color: #e4fff4;
  color: black;
  margin-bottom: 20px;
}

#another_page h1,
#another_page h2,
#another_page h3,
#another_page h4 {
  font-size: 18px;
  font-weight: 500;
}
#another_page strong {
  font-size: 16px;
  font-weight: 500;
}
#another_page * {
  line-height: 130%;
  margin-bottom: 10px;
}

.user_authentification {
  margin: 100px 0;
}
@media screen and (max-width: 480px) {
  .user_authentification {
    margin: 30px 0;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  .user_authentification {
    margin: 50px 0;
  }
}
.user_authentification .wrapper .container .column {
  border-radius: 20px;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 250px 550px;
  background: #013332;
  align-items: center;
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  .user_authentification .wrapper .container .column {
    grid-template-columns: repeat(1, 1fr);
    box-shadow: inset 0 0 3px 0 var(--second-color);
  }
}
@media screen and (max-width: 480px) {
  .user_authentification .wrapper .container .column {
    grid-template-columns: repeat(1, 1fr);
    box-shadow: inset 0 0 3px 0 var(--second-color);
    border-radius: 12px;
  }
}
.user_authentification .wrapper .container .column .left {
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  .user_authentification .wrapper .container .column .left {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .user_authentification .wrapper .container .column .left {
    display: none;
  }
}
.user_authentification .wrapper .container .column .left img {
  min-width: 220%;
  position: relative;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  left: -60%;
}
.user_authentification .wrapper .container .column .right {
  box-shadow: inset 0 0 3px 0 var(--second-color);
  background-color: #fff;
  padding: 50px;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 480px) {
  .user_authentification .wrapper .container .column .right {
    box-shadow: none;
    padding: 40px 30px;
  }
}
.user_authentification .wrapper .container .column .right .home_link {
  margin-bottom: 15px;
}
.user_authentification .wrapper .container .column .right .home_link a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  color: var(--second-color);
}
.user_authentification .wrapper .container .column .right .top_link {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  gap: 40px;
}
.user_authentification .wrapper .container .column .right .top_link a {
  font-size: 24px;
  font-weight: bold;
  display: inline-block;
  padding-bottom: 5px;
  color: black;
}
@media screen and (max-width: 480px) {
  .user_authentification .wrapper .container .column .right .top_link a {
    font-size: 20px;
  }
}
.user_authentification .wrapper .container .column .right .top_link strong {
  font-size: 24px;
  color: var(--main-green);
  display: inline-block;
  padding-bottom: 5px;
  position: relative;
}
.user_authentification .wrapper .container .column .right .top_link strong:after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--main-green);
  position: absolute;
  top: 100%;
  display: block;
}
@media screen and (max-width: 480px) {
  .user_authentification .wrapper .container .column .right .top_link strong {
    font-size: 20px;
  }
}
.user_authentification .wrapper .container .column .right form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.user_authentification .wrapper .container .column .right form .fields {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 10px;
}
.user_authentification .wrapper .container .column .right form .fields p {
  color: #636363;
  max-width: 100%;
  padding: 0 20px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media screen and (max-width: 480px) {
  .user_authentification .wrapper .container .column .right form .fields p {
    margin-top: 10px;
  }
}
.user_authentification .wrapper .container .column .right form .fields select {
  width: 100%;
  background: #f6f6f6;
  padding: 0 20px;
  color: #6d6d6d;
  font-size: 14px;
}
@media screen and (max-width: 480px) {
  .user_authentification .wrapper .container .column .right form .fields {
    grid-template-columns: repeat(1, 1fr);
  }
}
.user_authentification .wrapper .container .column .right form .field {
  display: flex;
  align-items: center;
  gap: 10px;
}
.user_authentification .wrapper .container .column .right form .field a {
  color: var(--theme-blue);
  font-size: 14px;
  text-decoration: underline;
}
.user_authentification .wrapper .container .column .right form .field span.active svg rect {
  fill: rgb(0, 184, 110);
}
.user_authentification .wrapper .container .column .right form label {
  background-color: var(--main-green);
  color: white;
  min-height: 50px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}
.user_authentification .wrapper .container .column .right form input {
  width: 100%;
  padding: 0 20px;
  box-shadow: 0 0 2px 1px #eaeaea;
  background-color: #f6f6f6;
}
.user_authentification .wrapper .container .column .right form input::-moz-placeholder {
  font-size: 14px;
}
.user_authentification .wrapper .container .column .right form input::placeholder {
  font-size: 14px;
}
.user_authentification .wrapper .container .column .right form button {
  margin-top: 20px;
  max-width: 400px;
  width: 100%;
  padding: 0 20px;
  background-color: var(--main-green);
  color: white;
  float: right;
}
.user_authentification .wrapper .container .column .right form input[type=file] {
  display: none;
}
.user_authentification .wrapper .container .column .right form.auth_form .fields {
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (max-width: 480px) {
  .user_authentification .wrapper .container .column .right form.auth_form .fields {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  .user_authentification .wrapper .container .column .right form.auth_form .fields {
    grid-template-columns: repeat(2, 1fr);
  }
}
.user_authentification .wrapper .container .column .right form.auth_form .fields.forget {
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 30px;
  margin-top: 20px;
}
.user_authentification .wrapper .container .column .right form.auth_form .fields.forget button {
  margin-top: 0px;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .user_authentification .wrapper .container .column .right form.auth_form .fields.forget button {
    min-height: 40px;
  }
}
.user_authentification .wrapper .container .column .right form.auth_form .fields.forget a {
  text-align: right;
  color: var(--main-green);
}

.page-404 {
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-404 h1 {
  font-size: 50px;
}
@media screen and (max-width: 480px) {
  .page-404 h1 {
    font-size: 37px;
  }
}
.page-404 a {
  color: var(--main-green);
  display: block;
  margin-top: 20px;
}

.profile-container .wrapper .container .profile_items {
  display: grid;
  grid-template-columns: 25% 70%;
  grid-column-gap: 5%;
  margin-bottom: 30px;
}
@media screen and (max-width: 480px) {
  .profile-container .wrapper .container .profile_items {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 20px;
  }
}
.profile-container .wrapper .container .profile_items .left {
  border: 1px var(--main-green);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--main-green);
  height: -moz-max-content;
  height: max-content;
}
.profile-container .wrapper .container .profile_items .left .item {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (max-width: 480px) {
  .profile-container .wrapper .container .profile_items .left .item {
    grid-template-columns: repeat(1, 1fr);
    padding: 12px;
    border: 1px solid var(--second-color);
    border-radius: 6px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  .profile-container .wrapper .container .profile_items .left .item {
    grid-template-columns: repeat(1, 1fr);
    border: 1px solid var(--second-color);
    padding: 16px;
    border-radius: 10px;
    gap: 20px;
  }
}
.profile-container .wrapper .container .profile_items .left .item .info {
  padding: 20px;
}
@media screen and (max-width: 480px) {
  .profile-container .wrapper .container .profile_items .left .item .info {
    padding-left: 0;
    padding: 0px;
    margin-top: 16px;
  }
}
.profile-container .wrapper .container .profile_items .left .item .info .expert_avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}
.profile-container .wrapper .container .profile_items .left .item .info .expert_avatar img {
  height: 200px;
  width: 200px;
  border-radius: 200px;
  border: 1px solid #9f9f9f;
}
.profile-container .wrapper .container .profile_items .left .item .info .expert-data {
  margin-bottom: 10px;
}
.profile-container .wrapper .container .profile_items .left .item .info .expert-data strong {
  font-size: 22px;
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}
.profile-container .wrapper .container .profile_items .left .item .info .expert-data p {
  font-size: 15px;
  line-height: 100%;
}
.profile-container .wrapper .container .profile_items .left .item .info .expert-education {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.profile-container .wrapper .container .profile_items .left .item .info .expert-education p {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.profile-container .wrapper .container .profile_items .left .item .info .expert-education p img {
  width: 17px;
}
.profile-container .wrapper .container .profile_items .left .item .info .expert-education p strong {
  font-weight: 500;
}
.profile-container .wrapper .container .profile_items .left .item .info .contacts {
  display: flex;
  flex-wrap: wrap;
  grid-column-gap: 20px;
  grid-row-gap: 10px;
  margin: 20px 0;
  flex-direction: column;
}
.profile-container .wrapper .container .profile_items .left .item .info .contacts a,
.profile-container .wrapper .container .profile_items .left .item .info .contacts p {
  color: var(--theme-blue);
  font-size: 15px;
}
.profile-container .wrapper .container .profile_items .left .item .info .profile_edit a {
  width: 100%;
  min-height: 45px;
  font-size: 15px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-green);
  color: white;
  border-radius: 6px;
}
.profile-container .wrapper .container .profile_items .left .item .info .profile_edit a.logout {
  margin-top: 10px;
  background-color: transparent;
  border: 1px solid var(--main-green);
  color: var(--main-green);
}
.profile-container .wrapper .container .profile_items .right .tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 480px) {
  .profile-container .wrapper .container .profile_items .right .tabs {
    gap: 10px;
  }
}
.profile-container .wrapper .container .profile_items .right .tabs a {
  padding: 10px 20px;
  border-radius: 5px;
  background-color: #eeeeee;
  color: black;
}
.profile-container .wrapper .container .profile_items .right .tabs a.active {
  background-color: var(--main-green);
  color: white;
}
.profile-container .wrapper .container .profile_items .right .add_post_btn {
  display: flex;
  margin: 20px 0;
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--main-green);
}
.profile-container .wrapper .container .profile_items .right .add_post_btn button {
  display: none;
  background-color: var(--main-green);
  color: white;
  padding: 0 20px;
}
.profile-container .wrapper .container .profile_items .right .add_post_btn button.active {
  display: block;
}
.profile-container .wrapper .container .profile_items .right .add-form form.adding_post {
  display: none;
}
.profile-container .wrapper .container .profile_items .right .add-form .important {
  margin: 10px 0;
  color: #00772b;
  font-size: 13px;
  max-width: 300px;
  line-height: 130%;
}
@media screen and (max-width: 480px) {
  .profile-container .wrapper .container .profile_items .right .add-form .important {
    display: none;
  }
}
.profile-container .wrapper .container .profile_items .right .add-form form.editing_post button.edit_btn {
  margin-top: 20px;
  padding: 0 20px;
  background-color: var(--main-green);
  color: white;
}
.profile-container .wrapper .container .profile_items .right .add-form form.editing_post .post_file_current {
  display: block;
  margin-top: 20px;
  border-radius: 5px;
}
.profile-container .wrapper .container .profile_items .right .add-form select {
  border: 1px solid #d5d5d5;
  margin-left: 10px;
  padding: 5px;
  border-radius: 5px;
}
.profile-container .wrapper .container .profile_items .right .add-form select option {
  padding: 5px;
}
@media screen and (max-width: 480px) {
  .profile-container .wrapper .container .profile_items .right .add-form select {
    margin: 10px 0;
    margin-left: 0;
  }
}
.profile-container .wrapper .container .profile_items .right .add-form .fields {
  display: flex;
  align-items: start;
  gap: 10px;
  margin: 20px 0;
}
@media screen and (max-width: 480px) {
  .profile-container .wrapper .container .profile_items .right .add-form .fields {
    flex-direction: column;
    grid-column-gap: 0;
    grid-row-gap: 10px;
    padding: 14px 0;
  }
}
.profile-container .wrapper .container .profile_items .right .add-form input,
.profile-container .wrapper .container .profile_items .right .add-form textarea {
  width: 40%;
  border-bottom: 1px solid #656565;
  padding: 0 20px;
  border-radius: 0;
}
@media screen and (max-width: 480px) {
  .profile-container .wrapper .container .profile_items .right .add-form input,
  .profile-container .wrapper .container .profile_items .right .add-form textarea {
    width: 100%;
  }
}
.profile-container .wrapper .container .profile_items .right .add-form textarea {
  font-weight: bold;
  resize: vertical;
  height: -moz-max-content;
  height: max-content;
  min-height: -moz-max-content;
  min-height: max-content;
}
.profile-container .wrapper .container .profile_items .right .add-form iframe {
  min-height: 300px !important;
}
.profile-container .wrapper .container .profile_items .right .add-form input[type=file] {
  display: none;
}
.profile-container .wrapper .container .profile_items .right .add-form label.custom_post_content {
  display: block;
}
.profile-container .wrapper .container .profile_items .right .add-form span.add_img {
  padding: 10px 20px;
  display: inline;
  background: #e5e5e5;
  border-radius: 4px;
}
.profile-container .wrapper .container .profile_items .right .add-form button.send_btn {
  padding: 0 20px;
  background-color: var(--main-green);
  color: white;
}
.profile-container .wrapper .container .profile_items .right .add-form #wp-custom_post_content-wrap input {
  width: -moz-max-content;
  width: max-content;
}
.profile-container .wrapper .container .profile_items .right .message {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.profile-container .wrapper .container .profile_items .right .contents {
  margin-top: 30px;
}
.profile-container .wrapper .container .profile_items .right .contents .items.work-group,
.profile-container .wrapper .container .profile_items .right .contents .items.documents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 20px;
}
@media screen and (max-width: 480px) {
  .profile-container .wrapper .container .profile_items .right .contents .items.work-group,
  .profile-container .wrapper .container .profile_items .right .contents .items.documents {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  .profile-container .wrapper .container .profile_items .right .contents .items.work-group,
  .profile-container .wrapper .container .profile_items .right .contents .items.documents {
    grid-template-columns: repeat(1, 1fr);
  }
}
.profile-container .wrapper .container .profile_items .right .contents .items.work-group .item,
.profile-container .wrapper .container .profile_items .right .contents .items.documents .item {
  padding: 20px 30px;
  border-radius: 10px;
  border: 1px solid var(--second-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.profile-container .wrapper .container .profile_items .right .contents .items.work-group .item .top h3,
.profile-container .wrapper .container .profile_items .right .contents .items.documents .item .top h3 {
  font-size: 22px;
  margin-bottom: 10px;
}
.profile-container .wrapper .container .profile_items .right .contents .items.work-group .item .top .author,
.profile-container .wrapper .container .profile_items .right .contents .items.documents .item .top .author {
  display: flex;
  align-items: center;
  font-size: 15px;
}
.profile-container .wrapper .container .profile_items .right .contents .items.work-group .item .bottom,
.profile-container .wrapper .container .profile_items .right .contents .items.documents .item .bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 10px;
  margin-top: 20px;
  align-items: center;
}
.profile-container .wrapper .container .profile_items .right .contents .items.work-group .item .bottom .left,
.profile-container .wrapper .container .profile_items .right .contents .items.documents .item .bottom .left {
  display: flex;
  gap: 14px;
  align-items: center;
  border: none;
}
.profile-container .wrapper .container .profile_items .right .contents .items.work-group .item .bottom .left div,
.profile-container .wrapper .container .profile_items .right .contents .items.documents .item .bottom .left div {
  display: flex;
  align-content: center;
  gap: 2px;
}
.profile-container .wrapper .container .profile_items .right .contents .items.work-group .item .bottom .left div img,
.profile-container .wrapper .container .profile_items .right .contents .items.documents .item .bottom .left div img {
  width: 18px;
}
.profile-container .wrapper .container .profile_items .right .contents .items.work-group .item .bottom .right,
.profile-container .wrapper .container .profile_items .right .contents .items.documents .item .bottom .right {
  display: flex;
  justify-content: end;
}
.profile-container .wrapper .container .profile_items .right .contents .items.work-group .item .bottom .right button,
.profile-container .wrapper .container .profile_items .right .contents .items.documents .item .bottom .right button {
  width: 70%;
  background-color: var(--main-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 40px;
  min-width: 140px;
}
.profile-container .wrapper .container .profile_items .right .contents .items.work-group .item.pending .top h3,
.profile-container .wrapper .container .profile_items .right .contents .items.documents .item.pending .top h3 {
  font-size: 22px;
  margin-bottom: 0px;
}
.profile-container .wrapper .container .profile_items .right .contents .items.work-group .item.pending .top .author,
.profile-container .wrapper .container .profile_items .right .contents .items.documents .item.pending .top .author {
  display: flex;
  align-items: center;
  font-size: 15px;
}
.profile-container .wrapper .container .profile_items .right .contents .items.work-group .item.pending .top .category,
.profile-container .wrapper .container .profile_items .right .contents .items.documents .item.pending .top .category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.profile-container .wrapper .container .profile_items .right .contents .items.work-group .item.pending .top .category span,
.profile-container .wrapper .container .profile_items .right .contents .items.documents .item.pending .top .category span {
  padding: 4px 10px;
  border: 1px solid #c5c5c5;
  border-radius: 7px;
  font-size: 12px;
}
.profile-container .wrapper .container .profile_items .right .contents .items.work-group .item.pending .top .category span.right,
.profile-container .wrapper .container .profile_items .right .contents .items.documents .item.pending .top .category span.right {
  border: none;
  padding: 0;
  color: var(--theme-blue);
}
.profile-container .wrapper .container .profile_items .right .contents .items.news {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}
@media screen and (max-width: 480px) {
  .profile-container .wrapper .container .profile_items .right .contents .items.news {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  .profile-container .wrapper .container .profile_items .right .contents .items.news {
    grid-template-columns: repeat(1, 1fr);
  }
}
.profile-container .wrapper .container .profile_items .right .contents .items.news .post {
  display: block;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--second-color);
  color: black;
}
.profile-container .wrapper .container .profile_items .right .contents .items.news .post .item {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 480px) {
  .profile-container .wrapper .container .profile_items .right .contents .items.news .post .item {
    grid-template-columns: repeat(1, 1fr);
  }
}
.profile-container .wrapper .container .profile_items .right .contents .items.news .post .item .img {
  margin-right: 20px;
  overflow: hidden;
  border-radius: 10px;
  width: 30%;
}
@media screen and (max-width: 480px) {
  .profile-container .wrapper .container .profile_items .right .contents .items.news .post .item .img {
    display: none;
  }
}
.profile-container .wrapper .container .profile_items .right .contents .items.news .post .item .img img {
  width: 100%;
  height: 110px;
  -o-object-fit: cover;
     object-fit: cover;
}
.profile-container .wrapper .container .profile_items .right .contents .items.news .post .item .info {
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 60%;
}
@media screen and (max-width: 480px) {
  .profile-container .wrapper .container .profile_items .right .contents .items.news .post .item .info {
    width: 100%;
  }
}
.profile-container .wrapper .container .profile_items .right .contents .items.news .post .item .info .top .info-content {
  margin: 20px 0;
  margin-top: 10px;
}
.profile-container .wrapper .container .profile_items .right .contents .items.news .post .item .info .top .info-content h4 {
  font-size: 18px;
  margin-bottom: 10px;
}
.profile-container .wrapper .container .profile_items .right .contents .items.news .post .item .info .top .info-content p {
  font-size: 15px;
}
.profile-container .wrapper .container .profile_items .right .contents .buttons {
  display: flex;
  flex-wrap: wrap;
  grid-column-gap: 30px;
  grid-column: 12px;
  margin-top: 20px;
  min-width: 100%;
  padding: 10px 20px;
  padding-bottom: 0;
  border-top: 1px solid var(--second-color);
}
@media screen and (max-width: 480px) {
  .profile-container .wrapper .container .profile_items .right .contents .buttons {
    grid-column-gap: 15px;
  }
}
.profile-container .wrapper .container .profile_items .right .contents .buttons a {
  color: var(--theme-blue);
}
.profile-container .wrapper .container .profile_items .right.profile .breadcurms {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #cacaca;
}
.profile-container .wrapper .container .profile_items .right.profile .breadcurms a {
  color: var(--main-green);
  font-weight: 500;
}
.profile-container .wrapper .container .profile_items .right.profile .title {
  margin-bottom: 14px;
}
.profile-container .wrapper .container .profile_items .right.profile .tabs {
  margin-bottom: 12px;
}
.profile-container .wrapper .container .profile_items .right.profile .message {
  margin: 20px 0;
}
.profile-container .wrapper .container .profile_items .right.profile form {
  display: flex;
  flex-direction: column;
  grid-gap: 13px;
}
.profile-container .wrapper .container .profile_items .right.profile form label {
  width: 300px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e5e5e5;
  border-radius: 7px;
  cursor: pointer;
}
.profile-container .wrapper .container .profile_items .right.profile form .warning {
  max-width: 550px;
  font-size: 14px;
}
.profile-container .wrapper .container .profile_items .right.profile form select,
.profile-container .wrapper .container .profile_items .right.profile form input,
.profile-container .wrapper .container .profile_items .right.profile form textarea {
  width: 300px;
  border: 1px solid #dfdfdf;
  padding: 0 20px;
  border-radius: 8px;
}
.profile-container .wrapper .container .profile_items .right.profile form textarea {
  width: 100%;
  max-width: 550px;
  min-height: 230px;
  padding: 10px 20px;
}
.profile-container .wrapper .container .profile_items .right.profile form input[type=file] {
  display: none;
}
.profile-container .wrapper .container .profile_items .right.profile form button.change_form_send_btn {
  width: 300px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-green);
  color: white;
  cursor: pointer;
}
.profile-container .wrapper .container .profile_items .right.profile form img {
  width: 200px;
  height: 240px;
  border-radius: 10px;
  border: 1px solid #848484;
}

.roles-page .wrapper .container .row {
  display: grid;
  grid-template-columns: 75% 20%;
  grid-column-gap: 5%;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .roles-page .wrapper .container .row {
    margin-bottom: 20px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.roles-page .wrapper .container .row .left h4 {
  font-size: 25px;
  margin-bottom: 15px;
}
@media screen and (max-width: 480px) {
  .roles-page .wrapper .container .row .left h4 {
    font-size: 22px;
    margin-bottom: 10px;
  }
}
.roles-page .wrapper .container .row .left .content {
  font-size: 16px;
}
.roles-page .wrapper .container .row .left .content * {
  line-height: 140%;
  margin-bottom: 10px;
}
.roles-page .wrapper .container .row .right .subject h4 {
  font-size: 20px;
}
.roles-page .wrapper .container .row .right ul li a {
  font-size: 16px;
  margin-bottom: 10px;
}

footer {
  background-color: var(--footer-bg);
  color: white;
}
footer .wrapper .container .footer {
  display: flex;
}
@media screen and (max-width: 480px) {
  footer .wrapper .container .footer {
    flex-direction: column;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  footer .wrapper .container .footer {
    flex-wrap: wrap;
  }
}
footer .wrapper .container .footer .footer-logo {
  max-width: 25%;
  padding: 30px 0;
  padding-right: 50px;
}
@media screen and (max-width: 480px) {
  footer .wrapper .container .footer .footer-logo {
    max-width: 100%;
    padding-bottom: 0px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  footer .wrapper .container .footer .footer-logo {
    max-width: 50%;
    width: 50%;
  }
}
footer .wrapper .container .footer .footer-logo .logo a img {
  width: 220px;
}
footer .wrapper .container .footer .footer-logo .logo p {
  font-size: 14px;
  margin-top: 10px;
  font-weight: 300;
}
footer .wrapper .container .footer .footer-logo .social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}
footer .wrapper .container .footer .footer-logo .social a img {
  width: auto;
}
footer .wrapper .container .footer .footer-logo .policy {
  margin-top: 20px;
}
@media screen and (max-width: 480px) {
  footer .wrapper .container .footer .footer-logo .policy {
    display: none;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  footer .wrapper .container .footer .footer-logo .policy {
    display: none;
  }
}
footer .wrapper .container .footer .footer-logo .policy a {
  color: var(--second-color);
  font-size: 16px;
  margin-top: 30px;
}
footer .wrapper .container .footer .foote-menu {
  padding-top: 30px;
  border-left: 1px solid var(--border-line);
  border-right: 1px solid var(--border-line);
  width: 30%;
}
@media screen and (max-width: 480px) {
  footer .wrapper .container .footer .foote-menu {
    width: 100%;
    border-right: none;
    border-left: none;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  footer .wrapper .container .footer .foote-menu {
    width: 50%;
    border-left: none;
    padding-top: 60px;
    border-right: none;
  }
}
footer .wrapper .container .footer .foote-menu .title {
  display: block;
  border-bottom: 1px solid var(--border-line);
  padding: 0 30px;
  padding-bottom: 10px;
}
@media screen and (max-width: 480px) {
  footer .wrapper .container .footer .foote-menu .title {
    border-color: var(--main-green);
    padding: 0px 5px;
    padding-bottom: 10px;
  }
}
footer .wrapper .container .footer .foote-menu .title strong {
  font-size: 18px;
  font-weight: 500;
}
footer .wrapper .container .footer .foote-menu .menu {
  display: flex;
  grid-column-gap: 30px;
  grid-row-gap: 40px;
  margin-top: 10px;
  padding: 0 30px;
}
@media screen and (max-width: 480px) {
  footer .wrapper .container .footer .foote-menu .menu {
    flex-wrap: wrap;
    padding: 0 5px;
  }
}
footer .wrapper .container .footer .foote-menu .menu ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
footer .wrapper .container .footer .foote-menu .menu ul li a {
  font-size: 16px;
  font-weight: 300;
  color: white;
}
footer .wrapper .container .footer .footer-contacts {
  padding-top: 30px;
}
@media screen and (max-width: 480px) {
  footer .wrapper .container .footer .footer-contacts {
    padding-bottom: 30px;
  }
}
@media screen and (min-width: 481px) and (max-width: 1023px) {
  footer .wrapper .container .footer .footer-contacts {
    width: 100%;
    padding-bottom: 30px;
  }
}
footer .wrapper .container .footer .footer-contacts .title {
  display: block;
  border-bottom: 1px solid var(--border-line);
  padding: 0 30px;
  padding-bottom: 10px;
}
@media screen and (max-width: 480px) {
  footer .wrapper .container .footer .footer-contacts .title {
    border-color: var(--main-green);
    padding: 0px 5px;
    padding-bottom: 10px;
  }
}
footer .wrapper .container .footer .footer-contacts .title strong {
  font-size: 18px;
  font-weight: 500;
}
footer .wrapper .container .footer .footer-contacts .contacts {
  margin-top: 10px;
  padding: 0 30px;
}
@media screen and (max-width: 480px) {
  footer .wrapper .container .footer .footer-contacts .contacts {
    padding: 0 5px;
  }
}
footer .wrapper .container .footer .footer-contacts .contacts .items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
}
@media screen and (max-width: 480px) {
  footer .wrapper .container .footer .footer-contacts .contacts .items {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 20px;
  }
}
footer .wrapper .container .footer .footer-contacts .contacts .items .item strong {
  font-size: 15px;
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
}
@media screen and (max-width: 480px) {
  footer .wrapper .container .footer .footer-contacts .contacts .items .item .contact {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    grid-column-gap: 30px;
  }
}
footer .wrapper .container .footer .footer-contacts .contacts .items .item .contact .list {
  display: flex;
  align-items: center;
  grid-gap: 15px;
  margin-bottom: 5px;
}
@media screen and (max-width: 480px) {
  footer .wrapper .container .footer .footer-contacts .contacts .items .item .contact .list {
    grid-gap: 10px;
  }
}
footer .wrapper .container .footer .footer-contacts .contacts .items .item .contact .list img {
  max-width: 26px;
  max-height: 26px;
}
footer .wrapper .container .footer .footer-contacts .contacts .items .item .contact .list a {
  color: white;
  font-size: 15px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  align-items: center;
}
.modal .modal-content {
  background-color: #fefefe;
  margin: auto auto;
  padding: 20px;
  border: 1px solid var(--main-green);
  max-width: 500px;
  border-radius: 10px;
  width: 96%;
}
.modal .modal-content .close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  margin-left: 10px;
}
.modal .modal-content .close:hover, .modal .modal-content .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
.modal .modal-content #errorMessage {
  text-align: center;
}

.copyright {
  display: flex;
  height: 60px;
  background-color: #000;
  align-items: center;
  justify-content: center;
}
.copyright p {
  color: var(--second-color);
  font-size: 14px;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=style.css.map */