/*@font-face*/
  @font-face {
    font-family: "Helvetica Neue LT Std";
    src: url('../fonts/HelveticaNeueLTStd-LtCn.otf') format('embedded-opentype'),
        url('../fonts/HelveticaNeueLTStd-LtCn.woff2') format('woff2'),
        url('../fonts/HelveticaNeueLTStd-LtCn.woff') format('woff'),
        url('../fonts/HelveticaNeueLTStd-LtCn.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: block;
  }
  @font-face {
    font-family: 'Helvetica Neue LT Std';
    src: url('../fonts/HelveticaNeueLTStd-Cn.eot');
    src: url('../fonts/HelveticaNeueLTStd-Cn.otf') format('embedded-opentype'),
        url('../fonts/HelveticaNeueLTStd-Cn.woff2') format('woff2'),
        url('../fonts/HelveticaNeueLTStd-Cn.woff') format('woff'),
        url('../fonts/HelveticaNeueLTStd-Cn.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: block;
  }
  @font-face {
    font-family: "Helvetica Neue LT Std";
    src: url('../fonts/HelveticaNeueLTStd-BdCn.eot');
    src: url('../fonts/HelveticaNeueLTStd-BdCn.otf') format('embedded-opentype'),
        url('../fonts/HelveticaNeueLTStd-BdCn.woff2') format('woff2'),
        url('../fonts/HelveticaNeueLTStd-BdCn.woff') format('woff'),
        url('../fonts/HelveticaNeueLTStd-BdCn.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: block;
  }

  @font-face { /* this font added by Ivan*/
    font-family: "Helvetica Neue LT Std";
    src: url('../fonts/HelveticaNeueLTStd-Lt.eot');
    src: url('../fonts/HelveticaNeueLTStd-Lt.otf') format('embedded-opentype'),
        url('../fonts/HelveticaNeueLTStd-Lt.woff2') format('woff2'),
        url('../fonts/HelveticaNeueLTStd-Lt.woff') format('woff'),
        url('../fonts/HelveticaNeueLTStd-Lt.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: block;
  }

  /*Oswald*/
  @font-face {
    font-family: "Oswald - Extra Light";
    src: url('../fonts/Oswald-ExtraLight.eot');
    src: url('../fonts/Oswald-ExtraLight.otf') format('embedded-opentype'),
        url('../fonts/Oswald-ExtraLight.woff2') format('woff2'),
        url('../fonts/Oswald-ExtraLight.woff') format('woff'),
        url('../fonts/Oswald-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: block;
  }
/*@font-face end*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  outline: none;
}
ol,ul,p,h1,h2,h3,h4,h5,h6,body {
  padding: 0;
  margin: 0;
}
ol,ul,nav {
  list-style-type: none;
}
a,a:hover {
  text-decoration: none;
}
a {
  color: #282828;
}
.img-svg img,
.img-svg svg {
  -o-object-fit: contain;
      object-fit: contain;
  display: block;
  width: 100%;
  height: 100%;
}
.bg-img-contain,
.bg-img-cover {
  background-repeat: no-repeat;
  background-position: center;
}
.bg-img-contain {
  background-size: contain;
}
.bg-img-cover {
  background-size: cover;
}
.user-select {
  -webkit-user-select: none;
    -moz-user-select: none;
      -ms-user-select: none;
        user-select: none;
}
html,body {
  height: 100%;
}
.global-wrapper footer {
  margin-top: auto;
}
.global-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  min-height: 100%;
}
.global-wrapper input,
.global-wrapper textarea,
.global-wrapper,
.popup-wrapper {
  font-family: "Helvetica Neue LT Std", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: #282828;
}

/*custom-container*/
  .custom-container {
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
  }
  @media (min-width: 576px) {
    .custom-container {
      max-width: 540px;
    }
  }
  @media (min-width: 768px) {
    .custom-container {
      max-width: 720px;
    }
  }
  @media (min-width: 992px) {
    .custom-container {
      max-width: 960px;
    }
  }
  @media (min-width: 1200px) {
    .custom-container {
      max-width: 1200px;
    }
  }
/*custom-container end*/

/*custom title-section*/
  h1 {
    font-family: "Oswald - Extra Light", sans-serif;
    font-weight: 200;
    font-size: 45px;
    text-transform: uppercase;
    color: #3d7e3e;
  }
  h2 {
    font-weight: 300;
    font-size: 45px;
  }
  p {
    font-size: 20px;
  }
  .global-wrapper .title-section {
    padding-top: 200px; /* ivan changed value: previous one was 250px*/
  }
  .title-section h1 {
    margin-bottom: 80px;
  }
  @media screen and (max-width: 1199px) {
    h1 {
      font-size: 40px;
    }
    h2 {
      font-size: 38px;
    }
    .global-wrapper .title-section {
      padding-top: 160px; /* ivan changed value: previous one was 180px*/
    }
    .title-section h1 {
      margin-bottom: 40px;
    }
  }
  @media screen and (max-width: 991px) {
    p {
      font-size: 18px;
    }
  }
  @media screen and (max-width: 767px) {
    h2 {
      font-size: 30px;
    }
    .global-wrapper .title-section {
      padding-top: 130px; /* ivan changed value: previous one was 150px*/
    }
  }
/*custom title-section end*/

/*preloader*/
  .preloader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #1C1C1C;
    z-index: 10000;
    overflow: hidden;
  }
  .preloader_block {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
  }
  .preloader_img {
    width: 200px;
    height: 77px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .preloader_img svg {
    width: 100%;
    height: 100%;
  }
  .sk-chase {
    position: relative;
    margin: 40px auto 0;
    width: 40px;
    height: 40px;
    -webkit-animation: sk-chase 2.5s infinite linear both;
            animation: sk-chase 2.5s infinite linear both;
  }
  .sk-chase-dot {
    position: absolute;
    left: 0;
    top: 0; 
    width: 100%;
    height: 100%;
    -webkit-animation: sk-chase-dot 2.0s infinite ease-in-out both;
            animation: sk-chase-dot 2.0s infinite ease-in-out both; 
  }
  .sk-chase-dot:before {
    display: block;
    content: '';
    width: 25%;
    height: 25%;
    border-radius: 100%;
    background-color: #fff;
    -webkit-animation: sk-chase-dot-before 2.0s infinite ease-in-out both;
            animation: sk-chase-dot-before 2.0s infinite ease-in-out both; 
  }
  .sk-chase-dot:nth-child(1) { -webkit-animation-delay: -1.1s; animation-delay: -1.1s; }
  .sk-chase-dot:nth-child(2) { -webkit-animation-delay: -1.0s; animation-delay: -1.0s; }
  .sk-chase-dot:nth-child(3) { -webkit-animation-delay: -0.9s; animation-delay: -0.9s; }
  .sk-chase-dot:nth-child(4) { -webkit-animation-delay: -0.8s; animation-delay: -0.8s; }
  .sk-chase-dot:nth-child(5) { -webkit-animation-delay: -0.7s; animation-delay: -0.7s; }
  .sk-chase-dot:nth-child(6) { -webkit-animation-delay: -0.6s; animation-delay: -0.6s; }
  .sk-chase-dot:nth-child(1):before { -webkit-animation-delay: -1.1s; animation-delay: -1.1s; }
  .sk-chase-dot:nth-child(2):before { -webkit-animation-delay: -1.0s; animation-delay: -1.0s; }
  .sk-chase-dot:nth-child(3):before { -webkit-animation-delay: -0.9s; animation-delay: -0.9s; }
  .sk-chase-dot:nth-child(4):before { -webkit-animation-delay: -0.8s; animation-delay: -0.8s; }
  .sk-chase-dot:nth-child(5):before { -webkit-animation-delay: -0.7s; animation-delay: -0.7s; }
  .sk-chase-dot:nth-child(6):before { -webkit-animation-delay: -0.6s; animation-delay: -0.6s; }
  @-webkit-keyframes sk-chase {
    100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } 
  }
  @keyframes sk-chase {
    100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } 
  }
  @-webkit-keyframes sk-chase-dot {
    80%, 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } 
  }
  @keyframes sk-chase-dot {
    80%, 100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); } 
  }
  @-webkit-keyframes sk-chase-dot-before {
    50% { -webkit-transform: scale(0.4); transform: scale(0.4); }
    100%, 0% { -webkit-transform: scale(1.0); transform: scale(1.0); } 
  }
  @keyframes sk-chase-dot-before {
    50% { -webkit-transform: scale(0.4); transform: scale(0.4); }
    100%, 0% { -webkit-transform: scale(1.0); transform: scale(1.0); } 
  }
/*preloader end*/

/*tab*/
  .tab-button_block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 36px;
    border-bottom: 1px solid #3d7e3e;
  }
  .tab-button {
    padding: 0 24px;
    border-radius: 10px 10px 0 0;
    font-size: 20px;
    line-height: 28px;
    color: #fff;
    background-color: #bfd39d;
    cursor: pointer;
  }
  .tab-button.tab-active {
    cursor: default;
    pointer-events: none;
    background-color: #3d7e3e;
  }
  .tab-content {
    display: none;
  }
  .tab-content.tab-active {
    display: block;
  }
  @media screen and (max-width: 767px) {
    .tab-button {
      padding: 0 16px;
      font-size: 14px;
      line-height: 24px;
    }
  }
/*tab end*/

/*header*/
.nav-menu-block ul{
    position: absolute;
    top: 6.875rem;
    left: 0;
    right: 0;
    bottom: 1.25rem;
    overflow-y: auto;
}
.nav-menu-block ul li:not(:last-of-type) {
    margin-bottom: 0.75rem;
}
.nav-menu-block ul li a{
    display: block;
    padding: 0 2rem;
    font-size: 1.5rem;
    color: #fff;
}
.main-navigation ul li a {
    position: relative;
    font-family: "Oswald - Extra Light", sans-serif;
    font-weight: 200;
    font-size: 1.5rem;
    text-transform: uppercase;
    color: #fff;
}
.main-navigation ul li:not(:last-of-type){
    margin-right: 2.5rem;
}
.main-navigation ul{
    padding-right: 1.875rem;
        display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: flex-end;
}
  .header,
  .header_languages-search-block,
  .header_languages,
  .header_search-block,
  .header_left,
  .header_button-menu,
  .header_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header,
  .header_languages-search-block,
  .header_languages,
  .header_search-block,
  .header_left,
  .header_button-menu,
  .main-navigation .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header,
  .header_languages-search-block,
  .header_search,
  .header_languages a,
  .header .custom-logo-link,
  .header_logo,
  .nav-menu-block,
  .nav-menu a,
  .header_menu a:before {
    -webkit-transition: .4s;
        -o-transition: .4s;
            transition: .4s;
  }
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 6.875rem;
    background-color: #00734e;
    z-index: 1001;
  }
  .header.header-scroll-down {
    height: 3.75rem;
  }
  .header .custom-logo-link {
    width: 11.375rem;
    height: 4.375rem;
  }
  .header-scroll-down .custom-logo-link {
    width: 8.125rem;
    height: 3.125rem;
  }
  /*header_languages-search-block*/
    .header_languages-search-block {
      position: absolute;
      top: 0;
      right: 0;
      padding: 0 1.25rem;
      height: 1.875rem;
      background-color: rgba(235,235,235,.7);
    }
    .header-scroll-down .header_languages-search-block {
      -webkit-transform: translateY(-100%);
          -ms-transform: translateY(-100%);
              transform: translateY(-100%);
    }
    .header_languages-search-block:before {
      position: absolute;
      content: '';
      top: 0;
      right: 100%;
      width: 0;
      height: 0;
      border-top: 1.875rem solid rgba(235,235,235,.7); 
      border-left: 1.25rem solid transparent;
    }
    .header_languages {
      margin-right: 1.25rem;
    }
    .header_languages li:not(:last-of-type) {
      margin-right: 1rem;
    }
    .header_languages a {
      font-size: 0.875rem;
      text-transform: uppercase;
      color: #00734e;
    }
    .header_languages a:hover {
      color: #36b5cd;
    }
    .header_search-block {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      width: 2.5rem;
      height: 100%;
    }
    .header_search {
      width: 100%;
      height: 1.25rem;
    }
    .header_search-block:hover .header_search {
      -webkit-transform: scale(.8);
          -ms-transform: scale(.8);
              transform: scale(.8);
    }
  /*header_left*/
    body.nav-menu-active-overflow {
      overflow: hidden;
    }
    .header_button-menu {
      position: relative;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      width: 5.625rem;
      height: 3.75rem;
      z-index: 11;
    }
    .nav-buttons {
      position: relative;
      width: 1.875rem;
      height: 20px;
    }
    .nav-buttons span {
      position: absolute;
      content: '';
      left: 0;
      width: 100%;
      height: 4px;
      background-color: #fff;
      -webkit-transition: .4s;
          -ms-transition: .4s;
              transition: .4s;
    }
    .nav-buttons:hover span {
      background-color: #7cb665;
    }
	.nav-active .nav-buttons span {
      background-color: #fff;
    }
    .nav-buttons span:nth-child(1) {
      top: 0;
    }
    .nav-buttons span:nth-child(2),
    .nav-buttons span:nth-child(3) {
      top: 8px;
    }
    .nav-buttons span:nth-child(4) {
      top: 16px;
    }
    .nav-active .nav-buttons span:nth-child(2),
    .nav-active .nav-buttons span:nth-child(3) {
      width: 100%;
    }
    .nav-active .nav-buttons span:nth-child(1),
    .nav-active .nav-buttons span:nth-child(4) {
      top: 6px;
      left: 50%;
      width: 0%;
    }
    .nav-active .nav-buttons span:nth-child(2) {
      -webkit-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
              transform: rotate(45deg);
    }
    .nav-active .nav-buttons span:nth-child(3) {
      -webkit-transform: rotate(-45deg);
          -ms-transform: rotate(-45deg);
              transform: rotate(-45deg);
    }
    .header_logo {
      width: 11.375rem;
      height: 4.375rem;
    }
    .header-scroll-down .header_logo {
      width: 8.125rem;
      height: 3.125rem;
    }
  /*header_menu*/
    .header_menu {
      padding-right: 1.875rem;
    }
    .header_menu li {
      position: relative;
    }
    .header_menu li:not(:last-of-type) {
      margin-right: 2.5rem;
    }
    .header_menu a {
      position: relative;
      font-family: "Oswald - Extra Light", sans-serif;
      font-weight: 200;
      font-size: 1.5rem;
      text-transform: uppercase;
      color: #fff;
    }
    .header_menu a:before {
      position: absolute;
      content: '';
      left: 0;
      bottom: 0;
      width: 0px;
      height: 2px;
      background-color: #fff;
    }
    .header_menu .header-selected-page a:before,
    .header_menu a:hover:before {
      width: 100%;
    }
    .header_menu .header-selected-page a {
      pointer-events: none;
      cursor: default;
    }
  /*nav-menu-block*/
    .nav-menu-block {
      position: absolute;
      top: 0;
      left: 0;
      width: 20rem;
      height: 32.5rem;
      background-color: #111;
      z-index: 10;
      -webkit-transform: translateX(-100%);
          -ms-transform: translateX(-100%);
              transform: translateX(-100%);
    }
    .nav-active .nav-menu-block {
      -webkit-transform: translateX(0);
          -ms-transform: translateX(0);
              transform: translateX(0);
    }
	.nav-menu-block ul,
    .nav-menu {
      position: absolute;
      top: 6.875rem;
      left: 0;
      right: 0;
      bottom: 1.25rem;
      overflow-y: auto;
    }
    .nav-menu li:not(:last-of-type) {
      margin-bottom: 0.75rem;
    }
    .nav-menu a {
      display: block;
      padding: 0 2rem;
      font-size: 1.5rem;
      color: #fff;
    }
    .nav-menu a:hover {
      color: #7cb665;
    }
  @media screen and (max-width: 1199px) {
    .header_menu a {
      font-size: 18px;
    }
  }
  @media screen and (max-width: 991px) {
    .header_menu li:not(:last-of-type) {
      margin-right: 20px;
    }
    .header_menu a {
      font-size: 15px;
    }
	.nav-buttons:hover span {
      background-color: #fff;
    }
  }
  @media screen and (max-width: 767px) {
    .header {
      height: 100px;
    }
    .header.header-scroll-down {
      height: 60px;
    }
    .header_languages-search-block {
      padding: 0 10px;
    }
    .header_languages {
      margin-right: 10px;
    }
    .header_languages li:not(:last-of-type) {
      margin-right: 10px;
    }
    .header_languages a {
      font-size: 12px;
    }
	.header .custom-logo-link {
      width: 130px;
      height: 50px;
    }
    .header_logo {
      width: 130px;
      height: 50px;
    }
    .header_menu {
      padding-right: 20px;
    }
    .header_menu li:not(:last-of-type) {
      margin-right: 10px;
    }
    .header_menu a {
      font-size: 12px;
    }
    .nav-menu-block {
      height: 100vh;
    }
    .nav-menu {
      top: 100px;
    }
  }
  @media screen and (max-width: 575px) {
    .header {
      padding-top: 30px;
    }
    .header.header-scroll-down {
      padding-top: 0;
    }
    .header_menu {
      display: none;
    }
    .nav-menu-block {
      width: 100%;
    }
  }
/*header end*/

/*footer*/
  .footer {
    padding: 8.5rem 0 10.375rem;
    color: #fff;
    background-color: #00734e;
  }
  .footer .custom-container {
    padding: 0 1.25rem 0 6.25rem;
  }
  .footer-text {
    margin-bottom: 7.5rem;
    padding-bottom: 1.625rem;
    border-bottom: 1px solid #fff;
  }
  .footer-text-title {
    position: relative;
    margin-bottom: 1.25rem;
  }
  .footer-text-title-img {
    position: absolute;
    top: 50%;
    left: -4.75rem;
    width: 3.75rem;
    height: 3.75rem;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .footer h2 {
    font-weight: 300;
    font-size: 34px;
  }
  .footer-text p {
    margin-bottom: 16px;
    line-height: 28px;
  }
  .footer-text a {
    display: inline-block;
    padding: 0 0.625rem;
    height: 1.75rem;
    border: 1px solid #fff;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1.625rem;
    color: #fff;
    -webkit-transition: .4s;
        -o-transition: .4s;
            transition: .4s;
  }
  .footer-text a:hover {
    -webkit-box-shadow: 0px 0px 20px 0px rgba(255,255,255,1);
        -moz-box-shadow: 0px 0px 20px 0px rgba(255,255,255,1);
             box-shadow: 0px 0px 20px 0px rgba(255,255,255,1);
  }
  .footer-social-block h2 {
    margin-bottom: 1.25rem;
  }
  .footer-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .footer-social-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-right: 0.625rem;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background-color: #fff;
    -webkit-transition: .4s;
        -o-transition: .4s;
            transition: .4s;
  }
  .footer-social-icon svg {
    width: 1.25rem;
    height: 1.25rem;
  }
  .footer-social-icon:hover {
    -webkit-box-shadow: 0px 0px 20px 0px rgba(255,255,255,1);
        -moz-box-shadow: 0px 0px 20px 0px rgba(255,255,255,1);
             box-shadow: 0px 0px 20px 0px rgba(255,255,255,1);
  }
  @media screen and (max-width: 1199px) {
    .footer {
      padding: 80px 0;
    }
    .footer .custom-container {
      padding: 0 20px 0 80px;
    }
    .footer-text {
      margin-bottom: 40px;
      padding-bottom: 20px;
    }
    .footer h2 {
      font-size: 28px;
    }
  }
  @media screen and (max-width: 767px) {
    .footer {
      padding: 40px 0;
    }
    .footer .custom-container {
      padding: 0 20px;
    }
    .footer-text-title {
      padding-left: 60px;
    }
    .footer-text-title-img {
      left: 0;
      width: 46px;
      height: 46px;
    }
    .footer h2 {
      font-size: 24px;
    }
    .footer-text p {
      line-height: 24px;
    }
  }
/*footer end*/

/*--PAGE index--*/
/*first-section*/
  .first-section {
    position: relative;
    min-height: 37.5rem;
    height: 100vh;
    background-color: #046062;
    background-position: center 3.75rem;
  }
  .first-container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 10rem 1.25rem 2.5rem;
    height: 100%;
  }
  .first-text {
    max-width: 25rem;
    width: 100%;
    font-weight: 700;
    color: #fff;
  }
  .first-text h1 {
    margin-bottom: 20px;
    font-family: "Helvetica Neue LT Std", sans-serif;
    font-weight: 700;
    text-transform: capitalize;
    color: #fff;
  }
  .first-text p {
    margin-bottom: 20px;
    line-height: 28px;
  }
  .first-text a {
    display: inline-block;
    padding: 0 0.625rem;
    height: 1.75rem;
    border: 1px solid #fff;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1.625rem;
    color: #fff;
    -webkit-transition: .4s;
        -o-transition: .4s;
            transition: .4s;
  }
  .first-text a:hover {
    -webkit-box-shadow: 0px 0px 20px 0px rgba(255,255,255,1);
        -moz-box-shadow: 0px 0px 20px 0px rgba(255,255,255,1);
             box-shadow: 0px 0px 20px 0px rgba(255,255,255,1);
  }
  .first-languages-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  .first-languages-block h2 {
    margin-bottom: 20px;
    font-weight: 300;
    font-size: 28px;
    text-transform: uppercase;
    color: #fff;
  }
  .first-languages {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .first-languages a {
    display: block;
    margin-right: 0.375rem;
    width: 2.625rem;
    height: 3.25rem;
    font-size: 1.5625rem;
    line-height: 3.25rem;
    text-transform: uppercase;
    text-align: center;
    background-color: rgba(124,182,101,1);
    color: #00734e;
    -webkit-transition: .4s;
        -o-transition: .4s;
            transition: .4s;
  }
  .first-languages a:hover {
    color: #fff;
    background-color: rgba(124,182,101,.5);
  }
  @media screen and (max-width: 1199px) {
    .first-languages-block h2 {
      margin-bottom: 16px;
      font-size: 28px;
    }
  }
  @media screen and (max-width: 767px) {
    .first-container {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
    }
    .first-text {
      max-width: 350px;
    }
    .first-languages-block h2 {
      font-size: 24px;
    }
  }
/*first-section end*/

/*picks-section*/
  .picks-title-block h2 {
    font-weight: 300;
    font-size: 34px;
    line-height: 50px;
    color: #fff;
  }
  .picks-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -0.875rem;
    width: calc(100% + 1.75rem);
    padding: 6rem 0 3rem;
  }
  .picks-item-wrap {
    margin-bottom: 3rem;
    padding: 0 0.875rem;
    width: calc(100% / 3);
    height: 20.9375rem;
  }
  .picks-item-wrap.picks-item-width {
    width: calc(100% / 3 * 2);
  }
  .picks-item-wrap.picks-item-height {
    height: 34.6875rem;
  }
  .picks-item {
    position: relative;
    display: block;
    padding: 3rem 2rem 0;
    height: 100%;
    background-color: #f5faf2;
    -webkit-box-shadow: 6px 7px 7px 1px rgba(166, 166, 166, 0.11);
            box-shadow: 6px 7px 7px 1px rgba(166, 166, 166, 0.11);
    -webkit-transition: .4s;
        -o-transition: .4s;
            transition: .4s;
  }
  .picks-item:hover {
    -webkit-box-shadow: 0px 0px 20px 1px rgba(166, 166, 166, 0.5);
            box-shadow: 0px 0px 20px 1px rgba(166, 166, 166, 0.5);
  }
  .picks-info {
    position: absolute;
    top: 3.75rem;
    left: 0;
    padding: 0 1.25rem;
    font-size: 1.25rem;
    line-height: 1.75rem;
    text-align: center;
    color: #fff;
    background-color: rgba(124,182,101,.9);
  }
  .picks-img {
    margin-bottom: 1.5rem;
    height: 12.125rem;
  }
  .picks-item-height .picks-img {
    height: 21.875rem;
  }
  .picks-text h3 {
    font-weight: 700;
    font-size: 1.125rem;
    color: #000;
  }
  .picks-text p {
    font-size: 0.875rem;
  }
  .picks-text h3,
  .picks-text p {
    max-height: 1.75rem;
    line-height: 1.75rem;
    overflow: hidden;
  }
  .picks-item-width .picks-text h3,
  .picks-item-height .picks-text h3 {
    max-height: 5.25rem;
  }
  .picks-item-width .picks-text p,
  .picks-item-height .picks-text p {
    max-height: 3rem;
  }
  .picks-btn-block a:not(:last-of-type) {
    margin-bottom: 2.125rem;
  }
  .picks-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 3.125rem;
    border: 1px solid #36b5cd;
    font-weight: 700;
    font-size: 1.125rem;
    text-align: center;
    -webkit-transition: .4s;
        -o-transition: .4s;
            transition: .4s;
  }
  .picks-btn-submit {
    color: #36b5cd;
  }
  .picks-btn-subscribe {
    color: #fff;
    background-image: -webkit-gradient(linear, left top, right top, from(#4a9265), to(#7fb74b));
    background-image: -o-linear-gradient(left, #4a9265 0%, #7fb74b 100%);
    background-image: linear-gradient(to right, #4a9265 0%, #7fb74b 100%);
  }
  .picks-btn-svg {
    margin-right: 0.5rem;
    width: 1.625rem;
    height: 1.25rem;
  }
  .picks-btn-text {
    height: 100%;
    line-height: 3rem;
  }
  .picks-btn:hover .picks-btn-text {
    text-decoration: underline;
  }
  @media screen and (max-width: 1199px) {
    .picks-list {
      padding: 56px 0 8px;
    }
    .picks-item-wrap {
      height: 280px;
    }
    .picks-item-wrap.picks-item-height {
      height: 470px;
    }
    .picks-item {
      padding: 30px 20px 20px;
    }
    .picks-info {
      top: 40px;
      font-size: 18px;
      line-height: 22px;
    }
    .picks-img {
      margin-bottom: 20px;
      height: 160px;
    }
    .picks-item-height .picks-img {
      height: 270px;
    }
    .picks-btn {
      height: 46px;
    }
  }
  @media screen and (max-width: 991px) {
    .picks-title-block h2 {
      font-size: 28px;
    }
    .picks-list {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      padding: 35px 0 5px;
    }
    .picks-item-wrap,
    .picks-item-wrap.picks-item-width {
      max-width: 500px;
      width: 100%;
    }
    .picks-item-wrap,
    .picks-item-wrap.picks-item-height {
      height: auto;
    }
    .picks-item {
      padding: 48px 32px 20px;
    }
    .picks-info {
      top: 60px;
    }
    .picks-img {
      height: 194px;
    }
    .picks-item-height .picks-img {
      height: 350px;
    }
    .picks-item-width .picks-text h3,
    .picks-item-height .picks-text h3,
    .picks-text h3,
    .picks-text p {
      max-height: none;
    }
    .picks-btn-block {
      margin: 0 auto;
      max-width: 472px;
      width: 100%;
    }
    .picks-btn {
      font-size: 14px;
    }
  }
  @media screen and (max-width: 767px) {
    .picks-title-block h2 {
      font-size: 24px;
    }
  }
  @media screen and (max-width: 575px) {
    .picks-item {
      padding: 30px 20px 20px;
    }
    .picks-info {
      top: 40px;
    }
    .picks-text h3 {
      font-size: 16px;
      line-height: 24px;
    }
    .picks-text p {
      font-size: 14px;
      line-height: 20px;
    }
  }
/*picks-section end*/

/*logos-section*/
  .logos-section {
    padding: 190px 0;
  }
  .logos-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto;
    max-width: 106.25rem;
    width: 100%;
  }
  .logos-item {
    margin-bottom: 30px;
    padding: 0 1.25rem;
    width: calc(100% / 6);
    height: 6.25rem;
  }
  .logos-svg {
    display: block;
    height: 100%;
  }
  @media screen and (max-width: 1199px) {
    .logos-section {
      padding: 100px 0 70px;
    }
    .logos-container {
      max-width: 1000px;
    }
    .logos-item {
      height: 60px;
    }
  }
  @media screen and (max-width: 991px) {
    .logos-section {
      padding: 80px 0 50px;
    }
    .logos-container {
      max-width: 760px;
    }
    .logos-item {
      width: calc(100% / 3);
    }
  }
  @media screen and (max-width: 767px) {
    .logos-section {
      padding: 40px 0 10px;
    }
    .logos-container {
      max-width: 580px;
    }
    .logos-item {
      width: calc(100% / 2);
    }
  }
/*logos-section end*/
/*--PAGE index end--*/

/*--PAGE library--*/
/*library-section*/
  .library-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -15px;
    width: calc(100% + 1.875rem);
  }
  .library-item-wrap {
    margin-bottom: 30px;
    padding: 0 15px;
    width: calc(100% / 3);
  }
  .library-item {
    display: block;
    padding: 40px 32px 30px;
    height: 100%;
    background-color: #f5faf2;
    -webkit-transition: .4s;
        -o-transition: .4s;
            transition: .4s;
  }
  .library-item:hover {
    -webkit-box-shadow: 0px 0px 20px 1px rgba(166, 166, 166, 0.5);
            box-shadow: 0px 0px 20px 1px rgba(166, 166, 166, 0.5);
  }
  .library-img {
    margin-bottom: 32px;
    height: 395px;
    /*border: 2px solid #e0c37e;*/
	background-size: contain;
  }
  .library-text {
    max-height: 112px;
    overflow: hidden; 
  }
  .library-text h3 {
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    color: #3d7e3e;
  }
  .library-text p {
    font-size: 14px;
    line-height: 28px;
  }
  /*learning-blok*/
    .learning-blok {
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-bottom: 45px;
      height: 110px;
      border: 2px solid #e0c37e;
      background-image: -webkit-gradient(linear, left bottom, left top, from(#4a9265), to(#7fb74b));
      background-image: -o-linear-gradient(bottom, #4a9265 0%, #7fb74b 100%);
      background-image: linear-gradient(to top, #4a9265 0%, #7fb74b 100%);
    }
    .learning-text {
      width: 120px;
      max-height: 75px;
      font-size: 20px;
      font-weight: 700;
      line-height: 25px;
      text-align: center;
      color: #fff;
      overflow: hidden;
    }
    .learning-icon {
      position: absolute;
      top: 50%;
      right: 25px;
      width: 37px;
      height: 35px;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
    }
  @media screen and (max-width: 1199px) {
    .library-item {
      padding: 30px 20px 20px;
    }
    .library-img {
      margin-bottom: 20px;
      height: 350px;
    }
  }
  @media screen and (max-width: 991px) {
    .library-item-wrap {
      width: calc(100% / 2);
    }
  }
  @media screen and (max-width: 767px) {
    .library-list {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
    }
    .library-item-wrap {
      max-width: 400px;
      width: 100%;
    }
    .library-text {
      max-height: 112px;
    }
    .library-text h3 {
      font-size: 18px;
      line-height: 28px;
    }
    .library-text p {
      font-size: 14px;
      line-height: 28px;
    }
    .learning-icon {
      right: 20px;
      width: 30px;
      height: 30px;
    }
  }
/*library-section end*/

/*filter-section*/
  .filter-section {
    padding: 90px 0 220px;
  }
  .filter-block {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 140px;
  }
  /*page-numbers*/
    .page-numbers-block {
      position: absolute;
      left: 20px;
      bottom: 0;
    }
    .page-numbers-block,
    .page-numbers-block ul.page-numbers {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
	  margin-bottom: 40px;
    }
    .page-numbers-block li .page-numbers {
      position: relative;
      display: block;
      margin: 0 1px;
      width: 36px;
      height: 36px;
      font-weight: 300;
      font-size: 18px;
      line-height: 36px;
      text-align: center;
      color: #fff;
      background-color: #649b50;
      -webkit-transition: background-color .4s;
          -o-transition: background-color .4s;
              transition: background-color .4s;
    }
    .page-numbers-block li a.page-numbers:focus,
    .page-numbers-block li a.page-numbers:hover {
      background-color: #3d7e3e;
      cursor: pointer;
    }
    .page-numbers-block li .page-numbers.current {
      background-color: #3d7e3e;
      pointer-events: none;
      cursor: default;
    }
    .page-numbers-block li .page-arrow {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
    }
    .page-arrow-svg {
      width: 24px;
      height: 14px;
    }
  /*filter-left*/
    .filter-left {
      position: relative;
      margin-right: 26px;
      min-width: 270px;
      width: 270px;
      z-index: 10;
    }
    .filter-wrap {
      position: sticky;
      top: 110px;
      margin-bottom: 30px;
      background-color: #fff;
    }
    .filter-title {
      padding: 0 34px;
      font-size: 20px;
      line-height: 32px;
      color: #fff;
    }
    .filter-title,
    .filter-btn-show,
    .filter-btn-show:before {
      background-image: -webkit-gradient(linear, left top, right top, from(#4a9265), to(#7fb74b));
      background-image: -o-linear-gradient(left, #4a9265 0%, #7fb74b 100%);
      background-image: linear-gradient(to right, #4a9265 0%, #7fb74b 100%);
    }
    .filter-clear {
      display: block;
      padding: 0 34px;
      font-size: 17px;
      line-height: 26px;
      text-transform: uppercase;
      color: #fff;
      background-color: #3d7e3e;
      -webkit-transition: background-color .4s;
          -o-transition: background-color .4s;
              transition: background-color .4s;
    }
    .filter-clear:hover {
      background-color: #88bc73;
    }
    .filter-item {
      position: relative;
      display: block;
      border-left: 1px solid rgb(124, 182, 101);
      border-right: 1px solid rgb(124, 182, 101);
    }
    .filter-button {
      position: relative;
      display: block;
      padding: 0 44px 0 34px;
      border-top: 1px solid rgb(124, 182, 101);
      font-size: 18px;
      line-height: 40px;
      color: #333;
      -webkit-transition: color .4s;
          -o-transition: color .4s;
              transition: color .4s;
    }
    .filter-button:after {
      position: absolute;
      content: '';
      top: 16px;
      right: 30px;
      width: 8px;
      height: 8px;
      border-top: 3px solid #8fc07b;
      border-left: 3px solid #8fc07b;
      -webkit-transform: rotate(-135deg);
          -ms-transform: rotate(-135deg);
              transform: rotate(-135deg);
      -webkit-transition: .4s;
          -ms-transition: .4s;
              transition: .4s;
    }
    .filter-button:hover {
      color: #8fc07b;
    }
    .filter-active .filter-button:after {
      -webkit-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
              transform: rotate(45deg);
    }
  /*filter-dropout*/
    .filter-dropout {
      display: none;
    }
    .filter-active .filter-dropout {
      display: block;
	  border-top: 1px solid rgb(124, 182, 101);
    }
    .filter-dropout .mCSB_inside>.mCSB_container {
      margin-right: 20px;
    }
    .filter-dropout_form {
      max-height: 200px;
      overflow-y: auto;
    }
    .filter-dropout_list li {
      position: relative;
    }
    .filter-dropout_list input {
      position: absolute;
      opacity: 0;
    }
    .filter-dropout_list label {
      position: relative;
      display: block;
      padding: 0 20px 0 54px;
      font-size: 14px;
      line-height: 28px;
      color: #333;
      cursor: pointer;
	  z-index: 1;
      -webkit-transition: color .4s;
          -o-transition: color .4s;
              transition: color .4s;
    }
    .filter-dropout_list li:hover label {
      color: #8fc07b;
    }
    .filter-dropout_checked:after,
    .filter-dropout_checked {
      position: absolute;
      content: '';
    }
    .filter-dropout_checked {
      top: 14px;
      left: 34px;
      width: 12px;
      height: 12px;
      border: 1px solid #8c8c8c;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
    }
    .filter-dropout_checked:after {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: url(../img/checked.svg);
      background-repeat: no-repeat;
      background-position: center;
      background-size: contain;
      opacity: 0;
      -webkit-transition: opacity .4s;
          -o-transition: opacity .4s;
              transition: opacity .4s;
    }
    .filter-dropout_list input:checked ~ .filter-dropout_checked:after {
      opacity: 1;
    }
  /*filter-right*/
    .filter-right {
      position: relative;
      max-width: 55rem;
      width: 100%;
    }
    .filter-search-switching-block {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-bottom: 2.375rem;
    }
    .filter-btn-show {
      position: relative;
      display: none;
      padding: 0 34px;
      font-size: 20px;
      line-height: 34px;
      color: #fff;
    }
    .filter-btn-show:before,
    .filter-btn-show:after {
      position: absolute;
      content: '';
      opacity: 0;
    }
    .filter-btn-show:before {
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
    }
    .filter-btn-show:after {
      top: 50%;
      left: 50%;
      width: 16px;
      height: 16px;
      background-image: url(../img/close.svg);
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
      -webkit-transform: translate(-50%,-50%);
          -ms-transform: translate(-50%,-50%);
              transform: translate(-50%,-50%);
    }
    .filter-btn-show.filter-btn-show-active:before,
    .filter-btn-show.filter-btn-show-active:after {
      opacity: 1;
    }
  /*search*/
    .search_form {
      position: relative;
      max-width: 35.5rem;
      width: 100%;
      height: 2.25rem;
      border: 1px solid #3d7e3e;
    }
    .search_input {
      position: relative;
      padding: 0 2.875rem 0 0.75rem;
      width: 100%;
      height: 100%;
      border: none;
      font-size: 0.875rem;
      line-height: 2.125rem;
      text-transform: uppercase;
      color: #3d7e3e;
      background-color: transparent;
    }
    .search_input::-moz-placeholder {
      color: #3d7e3e;
    }
    .search_input::-webkit-input-placeholder {
      color: #3d7e3e;
    }
    .search_submit {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      width: 2.125rem;
      background-color: #88bc73;
      z-index: 1;
      -webkit-transition: background-color .4s;
          -o-transition: background-color .4s;
              transition: background-color .4s;
    }
    .search_submit_svg {
      width: 1rem;
      height: 1.0625rem;
    }
    .search_submit input {
      position: absolute;
      content: '';
      top: 0;
      right: 0;
      display: block;
      padding: 0;
      width: 100%;
      height: 100%;
      border: none;
      background-color: transparent;
      cursor: pointer;
      z-index: 2;
    }
    .search_submit:hover {
      background-color: #00734e;
    }
  /*switching-view-buttons*/
    .switching-view-buttons {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    }
    .switching-view-btn {
      position: relative;
      margin-left: 1.25rem;
      width: 2.125rem;
      height: 2.125rem;
    }
    .switching-view-btn-text {
      width: 2.375rem;
    }
    .switching-view-btn svg {
      width: 100%;
      height: 100%;
      fill: #bec0c2;
      -webkit-transition: fill .4s;
          -o-transition: fill .4s;
              transition: fill .4s;
    }
    .switching-view-btn.switching-view-btn_active {
      pointer-events: none;
      cursor: default;
    }
    .switching-view-btn.switching-view-btn_active svg {
      fill: #439639;
    }
  /*switching-view-list*/
    .switching-view-list .library-img {
      margin-bottom: 20px;
      height: 268px;
    }
    .switching-view-list_active-text .library-item-wrap {
      margin-bottom: 20px;
      width: 100%;
    }
    .switching-view-list_active-text .library-item {
      padding: 0;
      background-color: transparent;
    }
    .switching-view-list_active-text .library-item:hover {
      -webkit-box-shadow: 0px 0px 0 0 rgba(166, 166, 166, 0);
              box-shadow: 0px 0px 0 0 rgba(166, 166, 166, 0);
    }
    .switching-view-list_active-text .library-img,
    .switching-view-list_active-text .learning-blok {
      display: none;
    }
  @media screen and (max-width: 1199px) {
    .filter-section {
      padding: 70px 0 180px;
    }
    .filter-block {
      padding-bottom: 100px;
    }
    .search_form {
      max-width: 480px;
    }
    .switching-view-list .library-item-wrap {
      width: calc(100% / 2);
    }
    .switching-view-list_active-text .library-item-wrap {
      width: 100%;
    }
  }
  @media screen and (max-width: 991px) {
    .switching-view-list .library-item-wrap {
      width: 100%;
    }
  }
  @media screen and (max-width: 767px) {
    .filter-section {
      padding: 40px 0;
    }
    .filter-block {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      padding-bottom: 40px;
    }
    .page-numbers-block {
      left: 50%;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%);
    }
	.page-numbers-block,
    .page-numbers-block ul.page-numbers {
      margin-bottom: 0;
    }
    .filter-left {
      position: absolute;
      left: 0;
      top: 100px;
      display: none;
      margin: 0;
      width: 280px;
    }
    .filter-left.filter-show {
      display: block;
    }
    .filter-wrap {
      position: static;
    }
    .filter-search-switching-block {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
    }
    .search_form {
      margin-bottom: 20px;
      max-width: none;
    }
    .filter-btn-show {
      display: block;
    }
    .switching-view-list_active-text .library-item-wrap {
      max-width: none;
    }
  }
/*filter-section end*/
/*--PAGE library end--*/

/*--PAGE learning--*/
  .filter-section .learning_accordion_type_1 .show_hide_content ul {
    margin-left: 58px;
    background-color: #fafafa;
  }
  .filter-section .learning_accordion_type_1 .title {
    margin-bottom: 8px;
    color: #3d7e3e;
  }
  .accordion_item-sub-title {
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 16px;
    color: #282828;
  }
  .filter-section .show_hide_content p {
    font-size: 16px;
    line-height: 20px;
  }
  @media screen and (max-width: 1199px) {
    .filter-section .learning_accordion_type_1 .show_hide_content ul {
      margin-left: 0;
    }
  }
/*--PAGE learning end--*/

/*--PAGE search--*/
  .search-title {
    margin-bottom: 42px;
  }
  .search-section .search-title h1 {
    margin-bottom: 0;
  }
  .search-title p {
    font-size: 14px;
    color: #3d7e3e;
  }
  .search-section .search_form {
    margin-bottom: 58px;
    max-width: none;
  }
  .search-section .search_input {
    padding: 0 70px 0 32px;
    color: #fff;
    background-color: #3d7e3e;
  }
  .search-section .search_submit {
    width: 60px;
    background-color: #3d7e3e;
  }
  .search-section .search_submit:hover {
    background-color: #00734e;
  }
  .search-section .search_submit_svg {
    width: 18px;
    height: 20px;
  }
  @media screen and (max-width: 768px) {
    .search-section .search_input {
      padding: 0 46px 0 12px;
    }
    .search-section .search_submit {
      width: 34px;
    }
  }
/*--PAGE search end--*/

/*--PAGE event--*/
  .event-section {
    padding-bottom: 50px;
  }
  .event-calendar-block {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-bottom: 120px;
  }
  .event-section .page-numbers-block {
    left: 0;
  }
  /*event-block*/
    .event-block {
      position: relative;
      padding-left: 60px;
    }
    .accordion_item-data {
      position: absolute;
      top: 4px;
      left: -60px;
      width: 40px;
    }
    .accordion_item-data-number {
      font-size: 32px;
      line-height: 26px;
      color: #eba446;
    }
    .accordion_item-data-text {
      font-size: 17px;
      line-height: 24px;
      color: #7a7a7a;
    }
    .accordion_item-type {
      line-height: 24px;
      color: #00734e;
    }
    .accordion_item-text {
      margin-bottom: 20px;
    }
    .accordion_item-text p {
      font-size: 16px;
      line-height: 24px;
    }
    .accordion_item-text p.data,
    .picks-text .data {
      text-transform: capitalize;
    }
    .event-block .show_hide_content p {
      font-size: 16px;
      line-height: 20px;
    }
    .accordion_item-button {
      display: inline-block;
      margin-bottom: 40px;
      padding: 0 30px;
      border: 1px solid #00734e;
      font-weight: 400;
      font-size: 12px;
      line-height: 28px;
      color: #00734e;
    }
    .accordion_item-button:hover {
      text-decoration: underline;
    }
    .accordion_item-img {
      margin-bottom: 40px;
      height: 450px;
    }
  /*calendar-past-link-block*/
    .calendar-past-link-block {
	  position: relative;
      margin-left: 30px;
      min-width: 320px;
      width: 320px;
    }
    .calendar-block {
      margin-bottom: 100px;
    }
    .past-link-block {
      position: sticky;
      top: 200px;
    }
    .past-link-block a {
      display: block;
      margin-bottom: 12px;
      font-weight: 300;
      color: #282828;
    }
    .past-link-block h3 {
      font-weight: 400;
      font-size: 28px;
    }
    .past-link-block a:hover {
      text-decoration: underline;
    }
  @media screen and (max-width: 1199px) {
    .event-section {
      padding-bottom: 80px;
    }
	.accordion_item-img {
      height: 305px;
    }
  }
  @media screen and (max-width: 991px) {
	.calendar-block {
      margin-bottom: 50px;
    }
    .past-link-block {
      position: static;
    }
    .event-calendar-block {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      padding-bottom: 60px;
    }
    .calendar-past-link-block {
      margin: 30px 0 0;
    }
    .event-section .page-numbers-block {
      left: 50%;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%);
    }
	.accordion_item-img {
      height: 364px;
    }
  }
  @media screen and (max-width: 767px) {
    .event-section {
      padding-bottom: 40px;
    }
    .event-block {
      padding-left: 30px;
    }
    .accordion_item-data {
      left: -30px;
      width: 26px;
    }
    .accordion_item-data-number {
      font-size: 20px;
      line-height: 18px;
    }
    .accordion_item-data-text {
      font-size: 14px;
      line-height: 18px;
    }
    .calendar-past-link-block {
      min-width: 280px;
      width: 280px;
    }
    .accordion_item-img {
      height: 272px;
    }
  }
  @media screen and (max-width: 425px) {
    .accordion_item-img {
      height: 212px;
    }
  }
  @media screen and (max-width: 375px) {
    .accordion_item-img {
      height: 182px;
    }
  }
  @media screen and (max-width: 320px) {
    .accordion_item-img {
      height: 150px;
    }
  }
/*--PAGE event end--*/

/*--PAGE webinar--*/
  .webinar-section .accordion_item-img {
    height: 380px;
  }
  @media screen and (max-width: 1199px) {
    .webinar-section .accordion_item-img {
      height: 280px;
    }
  }
  @media screen and (max-width: 991px) {
    .webinar-section .accordion_item-img {
      height: 320px;
    }
  }
  @media screen and (max-width: 767px) {
    .webinar-section .accordion_item-img {
      height: 240px;
    }
  }
  @media screen and (max-width: 425px) {
    .webinar-section .accordion_item-img {
      height: 190px;
    }
  }
  @media screen and (max-width: 375px) {
    .webinar-section .accordion_item-img {
      height: 160px;
    }
  }
/*--PAGE webinar end--*/

/*--PAGE event-inner--*/
  .button-inner-block {
    margin-bottom: 50px;
  }
  .button-inner-block .button-file-title {
    border:none;
    color: #fff;
  }
  .button-inner:not(:last-of-type) {
    margin-bottom: 26px;
  }
  .button-inner {
    position: relative;
    display: block;
    padding: 0 40px;
    max-width: 300px;
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
  }
  .button-inner:hover {
    text-decoration: underline;
  }
  .button-inner:after {
    position: absolute;
    content: '';
    top: 50%;
    right: 16px;
    width: 14px;
    height: 14px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .button-event-website {
    border: 1px solid #00734e;
    line-height: 28px;
    color: #00734e;
  }
  .button-event-website:after {
    background-image: url(../img/button-event-website.svg);
  }
  .button-file-title {
    border: 1px solid #eba446;
    line-height: 38px;
    color: #fff;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#4a9265), to(#7fb74b));
    background-image: linear-gradient(to top, #4a9265 0%, #7fb74b 100%);
  }
  .button-file-title:after {
    background-image: url(../img/button-file-title.svg);
  }
  .event-inner-section .learning_accordion_type_1 .accordion_item {
    padding-bottom: 0;
    border-bottom: none;
  }
  .event-inner-section .learning_accordion_type_1 .show_hide_content ul:before,
  .event-inner-section .learning_accordion_type_1 .title:before,
  .event-inner-section .learning_accordion_type_1 .title:after {
    display: none;
  }
  .event-inner-section .learning_accordion_type_1 .show_hide_content ul li:not(:last-of-type) {
    margin-bottom: 8px;
  }
  .info-event .keywords a span {
    display: inline-block;
    margin-right: 5px;
  }
  .event-inner-section .learning_accordion_type_1 .show_hide_content ul li .type {
    min-width: 170px;
    max-width: 170px;
  }
  .event-inner-section .learning_accordion_type_1 .show_hide_content ul li .value {
    margin-left: 0;
  }
  .event-inner-section .learning_accordion_type_1 .show_hide_content ul {
    margin-bottom: 32px;
    padding: 0;
    border: none;
    background-color: transparent;
  }
  .event-inner-section .accordion_item-img {
    margin-bottom: 0;
    height: 327px;
  }
  @media screen and (max-width: 991px) {
    .event-inner-section .accordion_item-img {
      height: 180px;
    }
  }
  @media screen and (max-width: 767px) {
    .event-inner-section .accordion_item-img {
      height: 130px;
    }
  }
  @media screen and (max-width: 575px) {
    .event-inner-section .learning_accordion_type_1 .show_hide_content ul {
      margin-bottom: 40px;
    }
    .event-inner-section .learning_accordion_type_1 .show_hide_content ul,
    .event-inner-section .sub_media.learning_accordion_type_1 .show_hide_content ul {
      padding: 0;
    }
  }
/*--PAGE event-inner end--*/

/*--PAGE webinar-inner--*/
  .webinar-inner-section.event-inner-section .accordion_item-img {
    margin-bottom: 50px;
    height: 624px;
	background-size: contain;
  }
  @media screen and (max-width: 1199px) {
    .webinar-inner-section.event-inner-section .accordion_item-img {
      height: 490px;
    }
  }
  @media screen and (max-width: 991px) {
    .webinar-inner-section.event-inner-section .accordion_item-img {
      height: 344px;
    }
  }
  @media screen and (max-width: 767px) {
    .webinar-inner-section.event-inner-section .accordion_item-img {
      height: 258px;
    }
  }
  @media screen and (max-width: 425px) {
    .webinar-inner-section.event-inner-section .accordion_item-img {
      height: 204px;
    }
  }
  @media screen and (max-width: 375px) {
    .webinar-inner-section.event-inner-section .accordion_item-img {
      height: 174px;
    }
  }
/*--PAGE webinar-inner end--*/

/*--PAGE expertise--*/
  .expertise-section {
    padding-bottom: 220px;
  }
  .expertise-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .expertise-block:not(:last-of-type) {
    margin-bottom: 100px;
  }
  .expertise-img {
    margin-right: 30px;
    min-width: 172px;
    width: 172px;
  }
  .expertise-person .expertise-img {
    height: 220px;
    border: 2px solid #c7d9aa;
    background-color: #0076a3;
  }
  .expertise-logo .expertise-img {
    height: 200px;
  }
  .expertise-content {
    font-weight: 400;
  }
  .expertise-name {
    font-size: 20px;
  }
  .expertise-name,
  .expertise-content ul li:not(:last-of-type) {
    margin-bottom: 8px;
  }
  .expertise-content li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 16px;
    line-height: 22px;
  }
  .expertise-content .type {
    margin-right: 10px;
    min-width: 70px;
  }
  .expertise-content span {
    display: block;
  }
  .expertise-green {
    color: #3d7e3e;
  }
  .expertise-blue {
    color: #3780b8;
  }
  @media screen and (max-width: 1199px) {
    .expertise-section {
      padding-bottom: 80px;
    }
    .expertise-block:not(:last-of-type) {
      margin-bottom: 80px;
    }
  }
  @media screen and (max-width: 767px) {
    .expertise-section {
      padding-bottom: 40px;
    }
    .expertise-block:not(:last-of-type) {
      margin-bottom: 40px;
    }
    .expertise-block {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
    }
    .expertise-block .expertise-img {
      margin: 0 0 20px;
      min-width: 80px;
      width: 80px;
      height: 100px;
    }
    .expertise-name {
      font-size: 18px;
    }
    .expertise-content li {
      font-size: 14px;
      line-height: 22px;
    }
  }
/*--PAGE expertise end--*/

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .header,
  .footer {
    background-image: none!important;
  }
  .header_left {
    margin-right: auto;
  }
  .logos-item {
    width: 16.6%;
  }
  .header_logo {
    -webkit-transition: none;
        -o-transition: none;
            transition: none;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) and (max-width: 991px) {
  .logos-item {
    width: 33%;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) and (max-width: 767px) {
  .logos-item {
    width: 50%;
  }
}

/*--YURA--*/
  .title-section h1 {
    font-family: "Oswald - Extra Light", sans-serif;
    font-size: 45px;
    font-weight: 200;
    text-transform: uppercase;
    color: #3d7e3e;
  }
  .page {
    padding-bottom: 220px;
  }
  .page h2 {
    font-size: 45px;
  }
  /*library_page*/
  .library_page {
    font-family: "Helvetica Neue LT Std", sans-serif;
    font-weight: 400;
  }
  .library_page h2 {
    font-weight: 400;
    font-size: 40px;
    color: #717171;
    margin-bottom: 4.625rem;
  }
  .library_page .resources_links a {
    display: block;
    font-weight: 700;
    font-size: 24px;
    color: #3d7e3e;
    margin-bottom: 1.875rem;
  }
  .library_page a:not(.library_page_link):hover {
    text-decoration: underline;
  }
  .library_page .maine_block {
    padding: 4.625rem;
    padding-bottom: 5.625rem;
    border: 1px solid rgba(61, 126, 62, 0.39);
    background-color: #f5faf2;
    font-size: 20px;
    margin-bottom: 4.625rem;
    display: -webkit-box;
    display: flex;
  }
  .library_page .maine_block h2 {
    font-size: 45px;
    color: #3d7e3e;
    margin-bottom: 0;
  }
  .library_page .maine_block .right_side,
  .library_page .maine_block .left_side {
    margin-right: 1.875rem;
  }
  .library_page .maine_block .right_side {
    -webkit-box-flex: 1;
            flex-grow: 1;
  }
  .library_page .maine_block .left_side {
    flex-shrink: 0;
    max-width: 18.75rem;
    margin-top: 6.25rem;
  }
  .library_page .maine_block .left_side .block_img img {
    display: block;
    width: 100%;
  }
  .library_page .maine_block .category_title {
    font-weight: 400;
    font-size: 22px;
    margin-bottom: 0.625rem;
  }
  .library_page .maine_block .category_title a {
    color: #3d7e3e;
  }
  .library_page .maine_block p,
  .library_page .maine_block ul {
    line-height: 1.5;
    margin-bottom: 1.875rem;
    color: #000;
  }
  .library_page .maine_block ul {
    font-weight: 300;
    font-size: 18px;
  }
  .single-resources .library_page .maine_block ul:not(:last-of-type) li,
  .single-library .maine_block ul:not(:last-of-type) li {
    padding-left: 20px;
  }
  .single-resources .library_page .maine_block ul:not(:last-of-type) li:before,
  .single-library .maine_block ul:not(:last-of-type) li:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid #317f4f;
  }
  .single-learning ol,
  .single-library ol {
    padding-left: 20px;
    list-style-type: decimal;
  }
  .single-learning ol li,
  .single-library ol li {
    margin-bottom: 1.25rem;
  }
  .library_page .maine_block ul li {
    display: -webkit-box;
    display: flex;
    margin-bottom: 0.3125rem;
    position: relative;
  }
  .library_page .maine_block ul .type {
    flex-shrink: 0;
    width: 10rem;
    margin-right: 1.25rem;
  }
  .library_page .maine_block ul .value a {
    color: #3d7e3e;
  }
  .library_page .maine_block .center_block .category_title {
    margin-bottom: 24px;
  }
  .library_page .maine_block .center_block .library_page_link {
    margin-bottom: 18px;
  }
  .library_page .maine_block .center_block .block_links {
    margin-bottom: 54px;
  }
  .library_page .maine_block .center_block p:last-of-type {
    margin-bottom: 80px;
  }
  .library_page_link {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
    position: relative;
    margin-bottom: 2.5rem;
    max-width: 18.75rem;
    min-height: 2.5rem;
    padding: 1rem 0.625rem;
    padding-top: 0.6875rem;
    padding-bottom: 0.5625rem;
    background-image: -webkit-gradient(linear, left bottom, left top, from(#4a9265), to(#7fb74b));
    background-image: linear-gradient(to top, #4a9265 0%, #7fb74b 100%);
    color: #ffffff;
    font-weight: 300;
    font-size: 1.125rem;
    text-transform: uppercase;
    line-height: 1.2;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .library_page_link:hover {
    background-image: -webkit-gradient(linear, left bottom, left top, from(#7fb74b), to(#4a9265));
    background-image: linear-gradient(to top, #7fb74b 0%, #4a9265 100%);
    text-decoration: none;
  }
  .library_page_link.multyline {
    padding-right: 80px;
    text-transform: unset;
  }
  .library_page_link.multyline.view_link::after,
  .library_page_link.multyline.download_link::after {
    right: 1.125rem;
  }
  .library_page_link.view_link::after {
    content: "";
    background-image: url(../img/library_page_view_link_icon.png);
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    margin-left: 2.5rem;
    width: 1.25rem;
    height: 1.25rem;
    position: absolute;
    right: 3.75rem;
    top: 50%;
    -webkit-transform: translateY(-0.625rem);
            transform: translateY(-0.625rem);
  }
  .library_page_link.download_link::after {
    content: "";
    background-image: url(../img/library_page_download_link_icon.png);
    background-size: contain;
    background-repeat: no-repeat;
    display: block;
    margin-left: 2.5rem;
    width: 1.0625rem;
    height: 1.25rem;
    position: absolute;
    right: 3.75rem;
    top: 50%;
    -webkit-transform: translateY(-0.625rem);
            transform: translateY(-0.625rem);
  }
  .library_page_video {
    position: relative;
    padding: 28% 0;
    margin-bottom: 24px;
  }
  .library_page_video iframe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border: none;
  }
  /*library_page end*/
  /*accordion*/
  .accordion_wrap .title {
    display: inline-block;
  }
  .accordion_wrap .title:hover {
    cursor: pointer;
  }
  .accordion_wrap .title a {
    color: inherit;
  }
  .accordion_wrap .title a:hover {
    text-decoration: underline;
  }
  .accordion_wrap .show_hide_content {
    height: 0;
    opacity: 0;
    overflow: hidden;
  }
  .accordion_wrap .accordion_item.open > .show_hide_content {
    height: auto;
    opacity: 1;
  }
  /*accordion end*/
  /*learning_course_page*/
  .learning_course_page h3 {
    font-weight: 400;
    font-size: 42px;
    margin-bottom: 40px;
  }
  .learning_course_page .resources_block {
    padding-left: 5rem;
  }
  .learning_course_page .maine_block {
    padding: 50px 68px;
    padding-bottom: 46px;
  }
  .learning_course_page .maine_block:last-of-type {
    margin-bottom: 0;
  }
  .learning_course_page .maine_block .category_title {
    margin-bottom: 40px;
  }
  .learning_course_page .maine_block p {
    font-weight: 400;
    margin-bottom: 30px;
  }
  .learning_course_page .maine_block p:last-of-type {
    margin-bottom: 50px;
  }
  .learning_accordion_type_1 .title {
    font-size: 1.5625rem;
    font-weight: 400;
    color: #4c4c4c;
    margin-bottom: 0.75rem;
  }
  .learning_accordion_type_1 .title::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 2rem;
    height: 1.25rem;
    background-color: #00734e;
    z-index: 1;
  }
  .learning_accordion_type_1 .title::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0.3125rem;
    left: 0.625rem;
    width: 0.5625rem;
    height: 0.5625rem;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    z-index: 2;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .learning_accordion_type_1 .accordion_item {
    position: relative;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #00734e;
    margin-bottom: 2rem;
  }
  .learning_accordion_type_1 .accordion_item:last-of-type {
    margin-bottom: 0;
  }
  .learning_accordion_type_1 .accordion_item.open .title::before {
    -webkit-transform: translateY(3px) rotate(-45deg) scale(-1);
            transform: translateY(3px) rotate(-45deg) scale(-1);
  }
  .learning_accordion_type_1 .show_hide_content p {
    font-weight: 400;
    color: #282828;
    margin-bottom: 2rem;
  }
  .learning_accordion_type_1 .show_hide_content p:last-of-type {
    margin-bottom: 2rem;
  }
  .learning_accordion_type_1 .show_hide_content ul {
    border: 1px solid #00734e;
    background-color: #ffffff;
    padding: 1.875rem 2.5rem;
    position: relative;
    margin-bottom: 1.875rem;
  }
  .learning_accordion_type_1 .show_hide_content ul:before {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    top: 0;
    bottom: 0;
    left: 15.625rem;
    background-color: #00734e;
  }
  .learning_accordion_type_1 .show_hide_content ul li {
    display: -webkit-box;
    display: flex;
    font-size: 20px;
    font-weight: 400;
  }
  .learning_accordion_type_1 .show_hide_content ul li .type {
    width: 12.5rem;
    margin-right: 0.625rem;
  }
  .learning_accordion_type_1 .show_hide_content ul li .value {
    margin-left: 3.625rem;
  }
  .learning_accordion_type_1 .show_hide_content ul li a {
    color: #3d7e3e;
  }
  .learning_accordion_type_1 .show_hide_content ul li a.view_link_icon,
  .learning_accordion_type_1 .show_hide_content ul li a.download_link_icon {
    padding-left: 0;
  }
  .learning_accordion_type_1 .show_hide_content ul li a.view_link_icon::before,
  .learning_accordion_type_1 .show_hide_content ul li a.download_link_icon::before {
    left: -2.1875rem;
  }
  .learning_accordion_type_1 .show_hide_content ul li:not(:last-of-type) {
    margin-bottom: 0.9375rem;
  }
  .learning_accordion_modules > p {
    font-weight: 400;
  }
  .learning_accordion_modules.accordion_wrap > h2,
  .learning_accordion_modules > h2 {
    font-family: "Oswald - Extra Light";
    font-weight: 700;
    font-size: 42px;
    color: #ababab;
    text-transform: uppercase;
    margin-bottom: 40px;
  }
  .learning_accordion_modules > .accordion_item {
    position: relative;
    border-bottom: 2px solid #ababab;
    padding-bottom: 2.125rem;
    margin-bottom: 2.75rem;
  }
  .learning_accordion_modules > .accordion_item > .title {
    font-size: 34px;
    font-weight: 400;
    text-transform: uppercase;
    color: #00734e;
  }
  .learning_accordion_modules > .accordion_item > .title::after {
    content: "";
    display: block;
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 2rem;
    height: 1.25rem;
    background-color: #ababab;
    z-index: 1;
  }
  .learning_accordion_modules > .accordion_item > .title::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0.3125rem;
    left: 0.625rem;
    width: 0.5625rem;
    height: 0.5625rem;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    z-index: 2;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .learning_accordion_modules > .accordion_item .show_hide_content {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .learning_accordion_modules > .accordion_item.open > .show_hide_content {
    padding-top: 3.125rem;
    padding-bottom: 2.125rem;
    padding-left: 4.375rem;
  }
  .learning_accordion_modules > .accordion_item.open > .title::before {
    -webkit-transform: translateY(0.1875rem) rotate(-45deg) scale(-1);
            transform: translateY(0.1875rem) rotate(-45deg) scale(-1);
  }
  a.view_link_icon,
  a.download_link_icon {
    position: relative;
    padding-left: 2.1875rem;
  }
  a.view_link_icon::before {
    content: '';
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: 0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    background-image: url(../img/learning_licon_external_link.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
  a.download_link_icon::before {
    content: '';
    display: inline-block;
    position: absolute;
	top: 50%;
    left: 0;
    width: 1.0625rem;
    height: 1.25rem;
    background-image: url(../img/learning_icon_download.png);
    background-repeat: no-repeat;
    background-size: contain;
	-webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .learning_page_resource .maine_block {
    padding: 3.125rem 4.625rem 5.625rem;
  }
  .learning_page_resource .maine_block:last-of-type {
    margin-bottom: 0;
  }
  .learning_page_resource .maine_block .category_title {
    margin-bottom: 40px;
  }
  .learning_page_resource .maine_block .category_title span {
    color: #303030;
  }
  .learning_page_resource .maine_block p,
  .learning_page_resource .maine_block ol {
    font-weight: 400;
  }
  .learning_page_resource .maine_block p:last-of-type,
  .learning_page_resource .maine_block ol:last-of-type {
    margin-bottom: 3.125rem;
  }
  .learning_page_resource .maine_block ol {
    font-size: 20px;
    list-style-type: "-";
    margin-bottom: 3.375rem;
  }
  .learning_page_resource .maine_block ol li {
    padding-left: 1.25rem;
    margin-left: 0.4375rem;
    margin-bottom: 1.25rem;
  }
  .learning_page_resource .maine_block ul:last-child {
    border: 1px solid #00734e;
    background-color: #ffffff;
    padding: 1.875rem 2.5rem;
    position: relative;
    font-weight: 400;
    max-width: 51.5rem;
    margin: auto;
  }
  .learning_page_resource .maine_block ul:last-child:before {
    content: "";
    display: block;
    position: absolute;
    width: 1px;
    top: 0;
    bottom: 0;
    left: 15.625rem;
    background-color: #00734e;
  }
  .learning_page_resource .maine_block ul:before,
  .learning_page_resource .maine_block ul:last-child li:before {
    display: none;
  }
  .learning_page_resource .maine_block ul li:not(:last-of-type) {
    margin-bottom: 0.9375rem;
  }
  .learning_page_resource .maine_block ul li .type {
    width: 12.5rem;
    margin-right: 0.625rem;
  }
  .learning_page_resource .maine_block ul li .value {
    margin-left: 3.625rem;
  }
  .learning_page_resource .maine_block ul .download_link_icon,
  .learning_page_resource .maine_block ul .view_link_icon {
    padding-left: 0;
  }
  .learning_page_resource .maine_block ul .download_link_icon:before,
  .learning_page_resource .maine_block ul .view_link_icon:before {
    left: -2.1875rem;
  }
  /*learning_course_page end*/
  /*blog_articles*/
  .blog_colums_container {
    display: -webkit-box;
    display: flex;
    margin-bottom: 100px;
  }
  .blog_first_article,
  .blog_second_article {
    font-size: 20px;
    font-family: 'Helvetica Neue LT Std';
    font-weight: 400;
    color: #282828;
  }
  .blog_first_article .img_wrap,
  .blog_second_article .img_wrap {
    display: block;
    width: 100%;
    box-shadow: inset 0 0 7px rgba(255, 255, 255, 0.64);
    border: 1px solid #00734e;
    margin-bottom: 28px;
  }
  .blog_first_article .img_wrap img,
  .blog_second_article .img_wrap img {
    width: 100%;
    display: block;
  }
  .blog_first_article .blog_title,
  .blog_second_article .blog_title {
    font-size: 32px;
    font-weight: 400;
    color: #3d7e3e;
  }
  .blog_first_article .time_to_read,
  .blog_second_article .time_to_read,
  .blog_first_article .author,
  .blog_second_article .author {
    font-size: inherit;
  }
  .blog_first_article .topic,
  .blog_second_article .topic,
  .blog_first_article .series,
  .blog_second_article .series {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .blog_first_article {
    -webkit-box-flex: 1;
            flex-grow: 1;
    padding-right: 30px;
  }
  .blog_first_article .img_wrap,
  .blog_first_article .blog_title {
    margin-bottom: 10px;
  }
  .blog_first_article .date,
  .blog_first_article .time_to_read,
  .blog_first_article .author,
  .blog_first_article .series {
    margin-bottom: 15px;
  }
  .blog_first_article .author,
  .blog_first_article .series,
  .blog_first_article .topic {
    font-size: 18px;
    letter-spacing: -0.16px;
  }
  .blog_first_article .topic,
  .blog_first_article .series {
    max-width: 90%;
  }
  .blog_second_article {
    max-width: 370px;
    flex-shrink: 0;
  }
  .blog_second_article .img_wrap {
    margin-bottom: 20px;
  }
  .blog_second_article .blog_title {
    margin-bottom: 15px;
    display: inline-block;
  }
  .blog_second_article .date,
  .blog_second_article .author {
    font-size: 21px;
    margin-bottom: 15px;
  }
  .blog_second_article .topic,
  .blog_second_article .series {
    max-width: 98%;
  }
  .btn_read_more {
    display: block;
    font-size: 16px;
    font-weight: 100;
    color: #fff;
    padding: 6px 15px;
    background-color: #78a22f;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    letter-spacing: 1px;
    text-transform: uppercase;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .btn_read_more:hover {
    background-color: #3d7e3e;
  }
  .past_articles_list h2 {
    font-size: 42px;
    margin-bottom: 10px;
  }
  .past_articles_list .blog_title {
    font-size: 32px;
    margin-bottom: 10px;
    color: #3d7e3e;
  }
  .past_articles_list .past_articles_list_item {
    font-weight: 400;
  }
  .past_articles_list .past_articles_list_item:not(:last-of-type) {
    margin-bottom: 15px;
  }
  .past_articles_list .past_articles_list_item p {
    line-height: 26px;
  }
  .blog_first_article .date,
  .blog_article_page .date {
    font-size: 21px;
    color: #fff;
    padding: 6px 15px;
    background-color: #78a22f;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    letter-spacing: 1px;
  }
  /*blog_articles end*/
  /*blog_article_page*/
  .blog_article_page {
    font-size: 20px;
  }
  .blog_article_page .date {
    margin-bottom: 15px;
  }
  .blog_article_page .time_to_read {
    font-size: 21px;
    margin-bottom: 30px;
  }
  .blog_article_page .time_to_read svg{
    display: block;
    width: 18px;
    height: 18px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin-left: 10px;
    color: #b9b9b9;
  }
  .blog_article_page .img_wrap {
    margin-bottom: 40px;
  }
  .blog_article_page .img_wrap img {
    display: block;
    width: 100%;
    box-shadow: inset 0 0 7px rgba(255, 255, 255, 0.64);
    border: 1px solid #00734e;
  }
  .blog_article_page .top_content {
    margin-bottom: 90px; /* ivan changed value: previous one was 120px*/
  }
  .blog_article_page .top_content h2 { 
    font-size: 24px; /* ivan changed value: previous one was 32px*/
    font-weight: 400;
    color: #00734e;
    margin-bottom: 3px; /* ivan changed value: previous one was 15px*/
  }
  .blog_article_page .top_content p {
    font-size: 19px;
    color: #4d4d4d;
  }
  .blog_article_page .main_content {
    margin-bottom: 60px;
  }
  .blog_article_page .main_content ol {
    list-style-type: none;
    counter-reset: item;
  }
  .blog_article_page .main_content ol li {
    margin-left: 35px;
    padding-left: 25px;
    position: relative;
  }
  .blog_article_page .main_content ol li:not(:last-of-type) {
    margin-bottom: 20px;
  }
  .blog_article_page .main_content ol li::before {
    content: counter(item) ')';
    counter-increment: item;
    position: absolute;
    top: 0;
    left: 0;
  }
  .blog_article_page .main_content p,
  .blog_article_page .main_content ol {
    color: #282828;
    line-height: 36px;
    margin-bottom: 50px;
  }
  .blog_article_page .main_content blockquote {
    margin-bottom: 50px;
    margin-top: 0;
  }
  .blog_article_page .main_content blockquote p,
  .blog_article_page .main_content blockquote {
    color: #196b00;
    font-size: 28px;
    line-height: 38px;
  }
  .blog_article_page .main_content > img {
    margin-top: 24px;
    margin-bottom: 90px;
    display: block;
    width: 100%;
  }
  .blog_article_page .footer_content {
    position: relative;
    padding-top: 20px;
  }
  .blog_article_page .footer_content::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 5.5%;
    height: 1px;
    background-color: #78a22f;
  }
  .blog_article_page .footer_content h2 {
    font-family: "Oswald - Extra Light";
    font-weight: 200;
    color: #00734e;
    font-size: 43px;
    text-transform: uppercase;
    margin-bottom: 20px;
  }
  .blog_article_page .footer_content h2 a {
    color: #00734e;
  }
  .blog_article_page .footer_content p {
    color: #282828;
    line-height: 36px;
    margin-bottom: 50px;
  }
  .blog_article_page .main_content > p,
  .blog_article_page .main_content > ol,
  .border_container {
    border-right: 1px solid #78a22f;
    padding-right: 30px;
  }
  .blog_article_page .main_content > ol,
  .blog_article_page .main_content .border_container,
  .blog_article_page .main_content > p,
  .blog_article_page .main_content .links_list {
    margin-left: 8%;
    margin-right: 17%;
  }
  .main_content > p::before,
  .main_content > ol::before {
    content: '';
    position: relative;
    top: -50px;
    right: -31px;
    height: 50px;
    border-left: 1px solid #78a22f;
    float: right;
  }
  .blog_article_page .main_content blockquote {
    margin-left: 10%;
    margin-right: 5.5%;
  }
  .blog_article_page .main_content .links_list a {
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    font-size: 28px;
    font-weight: 700;
    color: #00734e;
  }
  .blog_article_page .main_content .links_list a:not(:last-of-type) {
    margin-bottom: 50px;
  }
  .blog_article_page .main_content .links_list a:hover {
    text-decoration: underline;
  }
  .btn_link_blog_page {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    background-color: #00734e;
    color: #ffffff;
    font-size: 21px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .btn_link_blog_page:hover {
    background-color: #3d7e3e;
  }
  .info_block_article_page {
    width: 270px;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    font-size: 16px;
    font-weight: 400;
    color: #2a2a2a;
  }
  .info_block_article_page .title {
    font-size: 19px;
    text-transform: uppercase;
    color: #ffffff;
    padding: 5px 15px;
    background-color: #78a22f;
    text-align: center;
  }
  .info_block_article_page .text_container {
    border: 1px solid #78a22f;
    padding: 10px;
    padding-left: 20px;
    margin-bottom: 20px;
  }
  .info_block_article_page .text_container > div:not(:last-of-type) {
    margin-bottom: 20px;
  }
  .info_block_article_page .date {
    font-size: 14px;
    text-transform: uppercase;
    background-color: transparent;
    padding: 0;
    color: #78a22f;
    letter-spacing: -0.16px;
  }
  .info_block_article_page .time_to_read {
    font-size: 16px;
  }
  .info_block_article_page .topics,
  .info_block_article_page .time_to_read,
  .info_block_article_page .author {
    display: -webkit-box;
    display: flex;
  }
  .info_block_article_page .topics span:first-of-type,
  .info_block_article_page .time_to_read span:first-of-type,
  .info_block_article_page .author span:first-of-type {
    margin-right: 10px;
  }
  .info_block_article_page .share_links {
    display: -webkit-box;
    display: flex;
    padding: 5px;
  }
  .info_block_article_page .share_links a {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #b9b9b9;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .info_block_article_page .share_links a svg {
    width: 12px;
    height: 12px;
  }
  .info_block_article_page .share_links a svg path {
    fill: #b9b9b9;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .info_block_article_page .share_links a:hover {
    cursor: pointer;
    border: 1px solid #78a22f;
  }
  .info_block_article_page .share_links a:hover svg path {
    fill: #78a22f;
  }
  .info_block_article_page .share_links a:not(:last-of-type) {
    margin-right: 8px;
  }
  .blog_page_row_container {
    display: -webkit-box;
    display: flex;
    margin-left: 8%;
  }
  .blog_page_row_container p {
    margin-right: 30px;
    -webkit-box-flex: 1;
            flex-grow: 1;
  }
  .blog_page_row_container .info_block_article_page {
    margin-top: 8px;
	margin-bottom: 40px;
    flex-shrink: 0;
  }
  /*blog_article_page end*/
  /*newsletters_page*/
  .newsletters_page {
    position: relative;
  }
  .accordion_wrap.newsletters_accordion {
    margin-bottom: 90px;
    font-weight: 400;
  }
  .accordion_wrap.newsletters_accordion .title {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .accordion_wrap.newsletters_accordion img {
    display: block;
    width: 100%;
  }
  .accordion_wrap.newsletters_accordion h3 {
    color: #035f63;
    font-weight: 400;
    font-size: 30px;
  }
  .accordion_wrap.newsletters_accordion h3,
  .accordion_wrap.newsletters_accordion p {
    padding-left: 15px;
    padding-right: 15px;
  }
  .accordion_wrap.newsletters_accordion p {
    line-height: 38px;
  }
  .accordion_wrap.newsletters_accordion .accordion_item.open .show_hide_content,
  .accordion_wrap.newsletters_accordion h3,
  .accordion_wrap.newsletters_accordion img {
    margin-bottom: 40px;
  }
  .accordion_wrap.newsletters_accordion .btn_read_more_2 {
    margin-left: auto;
  }
  .btn_read_more_2 {
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    font-size: 18px;
    font-weight: 400;
    text-transform: uppercase;
    color: #00734e;
    padding: 4px 16px;
    min-width: 170px;
    text-align: center;
    border: 1px solid #00734e;
    line-height: 1;
    margin-left: auto;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .btn_read_more_2:hover {
    background-color: #00734e;
    color: #fff;
  }
  /*newsletters_page end*/
  /*newsletter_page*/
  .newsletter_page {
    font-weight: 400;
  }
  .newsletter_page .main_container {
    border-left: 1px solid;
    border-right: 1px solid;
    border-color: #dcdcdc;
  }
  .newsletter_page .main_container h3 {
    color: #035f63;
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 50px;
  }
  .newsletter_page .main_container p {
    line-height: 38px;
  }
  .newsletter_page .main_container img {
    display: block;
    width: 100%;
  }
  .newsletter_page .main_container .img_main_wrap {
    margin-bottom: 120px;
  }
  .newsletter_page .main_container .content_wrap {
    padding: 0 6%;
  }
  .newsletter_page .main_container .content_wrap > p {
    margin-bottom: 50px; /* ivan: before it was set to 80*/
    padding-right: 70px;
  }
  .news_title {
    display: block;
    font-family: "Oswald - Extra Light";
    font-size: 26px;
    font-weight: 200;
    text-transform: uppercase;
    line-height: 1;
    color: #ffffff;
    background: -webkit-gradient(linear, left top, right top, from(#005d64), color-stop(50%, #35824a), to(#81b726));
    background: linear-gradient(to right, #005d64 0%, #35824a 50%, #81b726 100%);
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 8.6%;
    letter-spacing: 2px;
    margin-bottom: 60px;
  }
  .news_flex_wrap {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
  }
  .news_flex_wrap .news_custome_item {
    width: 50%;
  }
  .news_flex_wrap > .news_custome_item:nth-of-type(odd) {
    padding-right: 4.6%;
  }
  .news_flex_wrap > .news_custome_item:nth-of-type(even) {
    padding-left: 4.6%;
  }
  .news_custome_item {
    flex-shrink: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-pack: justify;
            justify-content: space-between;
    margin-bottom: 60px;
  }
  .news_custome_item .img_wrap {
    margin-bottom: 34px;
  }
  .news_custome_item .img_wrap img,
  .news_custome_item .img_wrap a {
    display: block;
    width: 100%;
  }
  .news_custome_item .text_wrap h3 {
    font-size: 30px;
    font-weight: 700;
    color: #317f4f;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .news_custome_item .text_wrap h3 a {
    color: inherit;
  }
  .news_custome_item .text_wrap h3 a:hover {
    text-decoration: underline;
  }
  .news_custome_item .text_wrap p {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 30px;
  }
  .news_custome_item .text_wrap .btn_read_more_2 {
    width: 100%;
  }
  .news_custome_item p a {
    color: #035f63;
    font-weight: 700;
  }
  .news_custome_item p a:hover {
    text-decoration: underline;
  }
  .library_page_video.with_title {
    margin-bottom: 90px;
  }
  .library_page_video.with_title .title {
    position: absolute;
    background-color: #317f4f;
    bottom: 0;
    left: 0;
    right: 0;
    color: #ffffff;
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    padding: 12px;
    padding-left: 40px;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  .newsletter_page_img_list_wrap {
    margin-bottom: 60px;
  }
  .newsletter_page_img_list_wrap ul {
    margin-top: 14px;
    flex-shrink: 0;
    width: 58%;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;
    color: #000000;
  }
  .newsletter_page_img_list_wrap ul li:not(:last-of-type) {
    margin-bottom: 20px;
  }
  .newsletter_page_img_list_wrap ul li {
    position: relative;
    padding-left: 22px;
  }
  .newsletter_page_img_list_wrap ul li:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid #317f4f;
  }
  .newsletter_page_img_list_wrap .img_wrap {
    width: 42%;
    padding-right: 5.8%;
  }
  .newsletter_page_img_list_wrap .img_wrap img {
    display: block;
    width: 100%;
  }
  .news_page_submi_btn_conteiner {
    max-width: 500px;
    margin: 0 auto;
    margin-top: 160px;
    margin-bottom: 90px;
  }
  .news_page_logos_container {
    padding: 64px;
    border: 1px solid #36b5cd;
    margin-bottom: 110px;
  }
  .news_page_footer_text {
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    max-width: 500px;
    margin: auto;
  }
  .news_page_footer_text p {
    font-size: 15px;
    color: #000;
    margin-bottom: 40px;
  }
  .news_page_footer_text a {
    font-weight: 700;
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    color: #035f63;
    margin: auto;
  }
  .news_page_footer_text a:hover {
    text-decoration: underline;
  }
  .news_page_footer_text a:not(:last-of-type) {
    margin-bottom: 20px;
  }
  /*newsletter_page end*/
  /*about_page*/
  .about_page {
    font-weight: 400;
  }
  .about_page h2 {
    font-family: "Oswald - Extra Light", sans-serif;
    font-size: 45px;
    font-weight: 200;
    text-transform: uppercase;
    color: #3d7e3e;
    margin-bottom: 30px;
  }
  .about_page p {
    font-size: 22px;
    margin-bottom: 40px;
    line-height: 32px;
  }
  .picks-btn.btn_contact {
    max-width: 300px;
    height: auto;
    margin-bottom: 90px;
  }
  .picks-btn.btn_contact .picks-btn-text {
    line-height: 36px;
    font-size: 20px;
  }
  .picks-btn.btn_contact .picks-btn-svg {
    margin-right: 20px;
    width: 32px;
	margin-right: 0.5rem;
    width: 1.625rem;
    height: 1.25rem;
  }
  .about_tabs .tab-button {
    text-transform: uppercase;
  }
  /*about_page end*/
  @media screen and (max-width: 1199px) {
    .learning_accordion_type_1 .show_hide_content ul li .value {
      width: 270px;
    }
    .title-section h1 {
      font-size: 40px;
    }
    .page {
      padding-bottom: 80px;
    }
    .page h2 {
      font-size: 38px;
    }
    /*library_page */
    .library_page .maine_block {
      padding-left: 30px;
      padding-right: 30px;
    }
    .library_page .maine_block h2 {
      font-size: 38px;
    }
    .library_page .maine_block .right_side {
      margin-right: 0;
    }
    /*library_page end*/
    /*blog_articles*/
    .blog_second_article {
      max-width: 290px;
    }
    .blog_first_article .blog_title,
    .blog_second_article .blog_title,
    .past_articles_list .blog_title {
      font-size: 30px;
    }
    /*blog_articles end*/
    /*about_page*/
    .about_tabs p {
      font-size: 20px;
    }
    /*about_page end*/
  }
  @media screen and (max-width: 991px) {
    .page p {
      font-size: 18px;
    }
    /*library_page */
    .library_page h2 {
      margin-bottom: 30px;
    }
    .library_page .resources_links a {
      font-size: 22px;
    }
    .library_page .maine_block {
      padding-top: 40px;
      padding-bottom: 40px;
      margin-bottom: 30px;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
              flex-direction: column;
    }
    .library_page .maine_block .category_title {
      font-size: 20px;
    }
    .library_page .maine_block .left_side {
      margin: 0;
      display: -webkit-box;
      display: flex;
      flex-wrap: wrap;
      width: 100%;
      max-width: none;
    }
    .library_page .maine_block .left_side > div {
      width: 50%;
    }
    .library_page .maine_block .left_side > div:nth-of-type(odd) {
      padding-right: 15px;
    }
    .library_page .maine_block .left_side > div:nth-of-type(even) {
      padding-left: 15px;
    }
    .library_page .maine_block .block_img {
      max-width: 300px;
    }
    .library_page_link {
      min-width: auto;
    }
    /*library_page end*/
    /*learning_course_page*/
    .learning_course_page .maine_block .category_title {
      margin-bottom: 30px;
    }
    .learning_course_page .maine_block p {
      margin-bottom: 15px;
    }
    .learning_course_page .maine_block p:last-of-type,
    .learning_accordion_modules.accordion_wrap > h2,
    .learning_accordion_modules > h2 {
      margin-bottom: 40px;
    }
    .learning_accordion_modules > .accordion_item > .title {
      font-size: 28px;
    }
    .learning_accordion_modules > .accordion_item.open > .show_hide_content {
      padding-top: 20px;
      padding-bottom: 20px;
      padding-left: 30px;
    }
    .learning_course_page h3 {
      font-size: 36px;
    }
    .learning_accordion_type_1 .show_hide_content ul {
      padding: 20px;
    }
    .learning_accordion_type_1 .show_hide_content ul:before {
      left: 220px;
    }
    .learning_accordion_type_1 .show_hide_content p:last-of-type {
      margin-bottom: 20px;
    }
    .learning_accordion_type_1 .show_hide_content ul li .type {
      width: 190px;
      flex-shrink: 0;
    }
    .learning_page_resource .maine_block .category_title,
    .learning_page_resource .maine_block p:last-of-type,
    .learning_page_resource .maine_block ol:last-of-type {
      margin-bottom: 40px;
    }
    .learning_accordion_type_1 .show_hide_content ul li {
      font-size: 18px;
    }
    .learning_accordion_type_1 .show_hide_content ul li:not(:last-of-type) {
      margin-bottom: 6px;
    }
    .learning_page_resource .maine_block ol li {
      font-size: 18px;
      margin-bottom: 15px;
    }
    /*learning_course_page end*/
    /*blog_articles*/
    .blog_colums_container {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
              flex-direction: column;
    }
    .blog_first_article {
      margin-bottom: 50px;
    }
    .blog_second_article {
      max-width: 370px;
    }
    .blog_second_article .img_wrap,
    .blog_second_article .blog_title,
    .blog_second_article .date,
    .blog_second_article .author,
    .blog_second_article .topic,
    .blog_second_article .series {
      margin-bottom: 10px;
    }
    /*blog_articles end*/
    /*blog_article_page */
    .blog_page_row_container {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
              flex-direction: column-reverse;
      margin-left: 0;
    }
    .info_block_article_page .text_container,
    .blog_page_row_container .info_block_article_page,
    .blog_article_page .img_wrap,
    .blog_article_page .main_content .links_list a:not(:last-of-type) {
      margin-bottom: 20px;
    }
    .blog_page_row_container p {
      margin-right: 0;
    }
    .blog_article_page .main_content blockquote {
      font-size: 20px;
    }
    .blog_article_page .main_content p,
    .blog_article_page .main_content ol,
    .blog_article_page .main_content blockquote,
    .blog_article_page .main_content > img,
    .blog_article_page .footer_content p {
      margin-bottom: 30px;
    }
    .blog_article_page .top_content {
      margin-bottom: 60px;
    }
    .blog_article_page .top_content h2 {
      font-size: 22px; /* ivan changed value: previous one was 30px*/
    }
    .blog_article_page .main_content p,
    .blog_article_page .main_content ol,
    .blog_article_page .footer_content p {
      line-height: 28px;
    }
    .blog_article_page .main_content blockquote {
      line-height: 30px;
    }
    .blog_article_page .main_content blockquote {
      margin-left: 35px;
      margin-right: 0;
    }
	.blog_article_page .main_content > ol,
    .blog_article_page .main_content .border_container,
    .blog_article_page .main_content > p,
    .blog_article_page .main_content .links_list {
      margin-left: 0;
      margin-right: 0;
    }
	.blog_article_page .main_content > p,
	.blog_article_page .main_content > ol,
    .blog_article_page .main_content .border_container {
      border-right: none;
      padding-right: 0;
    }
	.main_content > p::before,
    .main_content > ol::before {
      display: none;
    }
    .blog_article_page .main_content .links_list a {
      font-size: 24px;
    }
    .blog_article_page .footer_content h2 {
      font-size: 38px;
    }
    .btn_link_blog_page,
    .blog_article_page .main_content ol li {
      font-size: 18px;
    }
    .sub_media.learning_accordion_type_1 .show_hide_content {
      padding-left: 15px;
    }
    .sub_media.learning_accordion_type_1 .show_hide_content ul li .type {
      width: 170px;
      flex-shrink: 0;
    }
    .sub_media.learning_accordion_type_1 .show_hide_content ul:before {
      left: 200px;
    }
    .sub_media.learning_accordion_type_1 .title {
      font-size: 22px;
    }
    .sub_media.learning_accordion_type_1 .show_hide_content ul li {
      font-size: 16px;
    }
    /*blog_article_page end*/
    /*newsletters_page*/
    .accordion_wrap.newsletters_accordion .accordion_item.open .show_hide_content,
    .accordion_wrap.newsletters_accordion h3,
    .accordion_wrap.newsletters_accordion img {
      margin-bottom: 20px;
    }
    .accordion_wrap.newsletters_accordion p {
      line-height: 1.5;
    }
    .accordion_wrap.newsletters_accordion .title {
      font-size: 30px;
    }
    .accordion_wrap.newsletters_accordion h3 {
      font-size: 28px;
    }
    .btn_read_more_2 {
      font-size: 16px;
    }
    .accordion_wrap.newsletters_accordion {
      margin-bottom: 40px;
    }
    /*newsletters_page end*/
    /*newsletter_page*/
    .newsletter_page .main_container .img_main_wrap,
    .news_page_submi_btn_conteiner,
    .news_page_logos_container {
      margin-bottom: 60px;
    }
    .news_title,
    .news_custome_item {
      margin-bottom: 40px;
    }
    .newsletter_page .main_container .content_wrap > p,
    .newsletter_page .main_container h3 {
      margin-bottom: 30px;
    }
    .news_page_submi_btn_conteiner {
      margin-top: 60px;
    }
    .newsletter_page .main_container .content_wrap > p {
      padding-right: 0;
    }
    .newsletter_page .main_container p {
      line-height: 1.5;
    }
    .news_custome_item .text_wrap h3 {
      font-size: 24px;
    }
    .news_title {
      font-size: 24px;
      padding-top: 10px;
      padding-bottom: 10px;
    }
    .news_custome_item .img_wrap,
    .news_custome_item .text_wrap h3,
    .news_custome_item .text_wrap p {
      margin-bottom: 20px;
    }
    .library_page_video.with_title .title {
      font-size: 22px;
      padding-top: 8px;
      padding-bottom: 8px;
    }
    .library_page_video.with_title {
      margin-bottom: 70px;
    }
    .news_page_footer_text p,
    .news_page_footer_text > p {
      font-size: 15px;
      margin-bottom: 20px;
    }
    .newsletter_page_img_list_wrap ul {
      font-size: 16px;
    }
    .newsletter_page_img_list_wrap ul li {
      padding-left: 18px;
    }
    .newsletter_page_img_list_wrap ul li:before {
      top: 7px;
      width: 6px;
      height: 6px;
    }
    .newsletter_page_img_list_wrap ul li:not(:last-of-type) {
      margin-bottom: 5px;
    }
    /*newsletter_page end*/
    /*about_page*/
    .about_page h2 {
      font-size: 30px;
      margin-bottom: 20px;
    }
    .about_page p {
      margin-bottom: 20px;
      line-height: 1.5;
    }
    .picks-btn.btn_contact .picks-btn-text {
      line-height: 34px;
    }
    .picks-btn.btn_contact .picks-btn-svg {
      width: 24px;
    }
    .picks-btn.btn_contact {
      padding: 0 40px;
      width: -webkit-max-content;
      width: -moz-max-content;
      width: max-content;
      margin-bottom: 40px;
    }
    /*about_page end*/
	.learning_accordion_type_1 a.download_link_icon::before {
      content: none;
    }
	.learning_accordion_type_1 .show_hide_content ul li .type {
      width: 200px;
    }
    .learning_accordion_type_1 .show_hide_content ul li .value {
      margin-left: 20px;
      width: 150px;
    }
  }
  @media screen and (max-width: 767px) {
    .page {
      padding-bottom: 40px;
    }
    .title-section {
      padding-top: 150px;
    }
    .page h2 {
      font-size: 30px;
    }
    /*library_page */
    .library_page h2 {
      font-size: 28px;
    }
    .library_page .resources_links a {
      font-size: 18px;
      margin-bottom: 20px;
    }
    .library_page .maine_block h2 {
      font-size: 30px;
    }
    .library_page .maine_block ul {
      font-size: 18px;
    }
    .library_page .maine_block .left_side > div {
      width: 100%;
    }
    .library_page .maine_block .left_side > div:nth-of-type(odd) {
      padding-right: 0;
    }
    .library_page .maine_block .left_side > div:nth-of-type(even) {
      padding-left: 0;
    }
    .library_page .maine_block .block_img {
      max-width: 300px;
    }
    .library_page .maine_block .center_block .block_links,
    .library_page .maine_block .center_block p:last-of-type {
      margin-bottom: 40px;
    }
    /*library_page end*/
    /*learning_course_page*/
    .learning_accordion_modules > .accordion_item.open > .show_hide_content {
      padding-left: 0;
    }
    .learning_accordion_type_1 .show_hide_content {
      padding-left: 15px;
    }
    .learning_accordion_type_1 .show_hide_content ul li .type {
      width: 170px;
    }
    .learning_accordion_type_1 .show_hide_content ul:before {
      left: 200px;
    }
    .learning_course_page .resources_block {
      padding-left: 30px;
    }
    .learning_page_resource .maine_block ul:last-child {
      padding: 20px;
    }
    .learning_page_resource .maine_block ul li .type,
    .learning_page_resource .maine_block ul li .value {
      width: calc(50% - 10px);
    }
    .learning_page_resource .maine_block ul li .type {
      margin-right: 10px;
    }
    .learning_page_resource .maine_block ul li .value {
      margin-left: 20px;
    }
    .learning_page_resource .maine_block ul li a.view_link_icon,
    .learning_page_resource .maine_block ul li a.download_link_icon {
      padding-left: 35px;
    }
    .learning_page_resource .maine_block ul li a.view_link_icon::before,
    .learning_page_resource .maine_block ul li a.download_link_icon::before {
      left: 0;
    }
    .learning_page_resource .maine_block ul:last-child:before {
      left: 50%;
    }
    .learning_accordion_modules > .accordion_item > .title {
      font-size: 24px;
    }
    .learning_accordion_type_1 .title {
      font-size: 22px;
    }
    .learning_course_page h3 {
      font-size: 28px;
    }
    .learning_accordion_type_1 .show_hide_content ul li {
      font-size: 16px;
    }
    .learning_accordion_modules > .accordion_item {
      margin-bottom: 34px;
    }
    /*learning_course_page end*/
    /*blog_articles*/
    .blog_first_article .blog_title,
    .blog_second_article .blog_title,
    .past_articles_list .blog_title {
      font-size: 28px;
    }
    .blog_first_article {
      padding-right: 0;
    }
    .blog_first_article .date,
    .blog_first_article .time_to_read {
      font-size: 18px;
      margin-bottom: 10px;
    }
    .blog_first_article .author,
    .blog_first_article .series,
    .blog_first_article .topic {
      font-size: 16px;
      margin-bottom: 10px;
    }
    .blog_second_article .date,
    .blog_second_article .author {
      font-size: 18px;
    }
    .blog_second_article .topic,
    .blog_second_article .series {
      font-size: 16px;
    }
    .blog_colums_container {
      margin-bottom: 60px;
    }
    .btn_read_more {
      font-size: 14px;
    }
    /*blog_articles end*/
    /*blog_article_page*/
    .blog_article_page .main_content p,
    .blog_article_page .main_content ol,
    .blog_article_page .main_content blockquote,
    .blog_article_page .main_content > img,
    .blog_article_page .footer_content p {
      margin-bottom: 20px;
    }
    .blog_article_page .main_content blockquote,
    .blog_article_page .main_content ol li {
      margin-left: 15px;
    }
    .blog_article_page .main_content ol li:not(:last-of-type) {
      margin-bottom: 10px;
    }
    .blog_article_page .main_content {
      margin-bottom: 40px;
    }
    .blog_article_page .main_content .links_list a {
      font-size: 20px;
    }
    .blog_article_page .footer_content h2 {
      font-size: 30px;
    }
    .btn_link_blog_page {
      font-size: 16px;
    }
    .blog_article_page .top_content {
      margin-bottom: 50px;
    }
    /*blog_article_page end*/
    /*newsletters_page */
    .accordion_wrap.newsletters_accordion h3,
    .accordion_wrap.newsletters_accordion p {
      padding-left: 0;
      padding-right: 0;
    }
    .accordion_wrap.newsletters_accordion .show_hide_content {
      padding-left: 0;
    }
    .accordion_wrap.newsletters_accordion .title {
      font-size: 26px;
    }
    .accordion_wrap.newsletters_accordion h3 {
      font-size: 25px;
    }
    /*newsletters_page end*/
    /*newsletter_page*/
    .newsletter_page .main_container .img_main_wrap,
    .news_page_submi_btn_conteiner,
    .news_page_logos_container,
    .newsletter_page_img_list_wrap .img_wrap,
    .newsletter_page_img_list_wrap {
      margin-bottom: 40px;
    }
    .news_flex_wrap .news_custome_item,
    .newsletter_page_img_list_wrap .img_wrap,
    .newsletter_page_img_list_wrap ul {
      width: 100%;
      padding-right: 0;
      margin-top: 0;
    }
    .news_flex_wrap > .news_custome_item:nth-of-type(odd) {
      padding-right: 0;
    }
    .news_flex_wrap > .news_custome_item:nth-of-type(even) {
      padding-left: 0;
    }
    .news_page_logos_container {
      padding: 0;
      padding-top: 20px;
    }
    /*newsletter_page end*/
    /*about_page*/
    .about_page h2 {
      font-size: 26px;
    }
    .picks-btn.btn_contact .picks-btn-svg {
      width: 22px;
    }
    /*about_page end*/
  }
  @media screen and (max-width: 575px) {
    /*library_page */
    .library_page .maine_block {
      padding-left: 15px;
      padding-right: 15px;
    }
    .library_page .maine_block ul {
      font-size: 16px;
    }
    .library_page .maine_block ul .type {
      width: 124px;
      margin-right: 15px;
    }
    /*library_page end*/
    /*learning_course_page*/
    .learning_course_page h3 {
      font-size: 30px;
      margin-bottom: 30px;
    }
    .sub_media.learning_accordion_type_1 .show_hide_content ul li,
    .learning_accordion_type_1 .show_hide_content ul li,
    .learning_page_resource .maine_block ul li {
      font-size: 16px;
    }
    .learning_accordion_type_1 .show_hide_content ul,
    .sub_media.learning_accordion_type_1 .show_hide_content ul {
      padding: 12px;
    }
    .learning_accordion_type_1 .show_hide_content ul li .type,
    .sub_media.learning_accordion_type_1 .show_hide_content ul li .type {
      width: 150px;
    }
    .learning_accordion_type_1 .show_hide_content ul li .value,
    .sub_media.learning_accordion_type_1 .show_hide_content ul li .value {
      margin-left: 12px;
    }
    .learning_accordion_type_1 .show_hide_content ul:before,
    .sub_media.learning_accordion_type_1 .show_hide_content ul:before {
      left: 170px;
    }
    .learning_accordion_type_1 .show_hide_content ul li a.view_link_icon::before,
    .learning_accordion_type_1 .show_hide_content ul li a.download_link_icon::before,
    .sub_media.learning_accordion_type_1 .show_hide_content ul li a.view_link_icon::before,
    .sub_media.learning_accordion_type_1 .show_hide_content ul li a.download_link_icon::before {
      left: 0;
    }
    .learning_accordion_type_1 .show_hide_content ul li a.view_link_icon,
    .learning_accordion_type_1 .show_hide_content ul li a.download_link_icon,
    .sub_media.learning_accordion_type_1 .show_hide_content ul li a.view_link_icon,
    .sub_media.learning_accordion_type_1 .show_hide_content ul li a.download_link_icon {
      padding-left: 35px;
    }
    .learning_accordion_modules > .accordion_item > .title {
      font-size: 22px;
    }
    .learning_accordion_type_1 .title,
    .sub_media.learning_accordion_type_1 .title {
      font-size: 21px;
    }
    .learning_accordion_type_1 .show_hide_content ul li a.view_link_icon,
    .learning_accordion_type_1 .show_hide_content ul li a.download_link_icon,
    .sub_media.learning_accordion_type_1 .show_hide_content ul li a.view_link_icon,
    .sub_media.learning_accordion_type_1 .show_hide_content ul li a.download_link_icon,
    .learning_page_resource .maine_block ul li a.view_link_icon,
    .learning_page_resource .maine_block ul li a.download_link_icon {
      padding-left: 0;
    }
    .learning_accordion_type_1 a.download_link_icon::before,
    .learning_accordion_type_1 a.view_link_icon::before,
    .sub_media.learning_accordion_type_1 a.download_link_icon::before,
    .sub_media.learning_accordion_type_1 a.view_link_icon::before,
    .learning_page_resource .maine_block a.download_link_icon::before,
    .learning_page_resource .maine_block a.view_link_icon::before {
      content: none;
    }
    .learning_course_page .resources_block {
      padding-left: 0;
    }
    .learning_page_resource .maine_block ul {
      padding-left: 12px;
      padding-right: 12px;
    }
    .learning_page_resource .maine_block ul li .value {
      margin-left: 10px;
    }
    /*learning_course_page end*/
    /*blog_articles end*/
    .blog_first_article .blog_title,
    .blog_second_article .blog_title,
    .past_articles_list .blog_title {
      font-size: 26px;
    }
    /*blog_articles end*/
    /*blog_article_page*/
    .blog_article_page .main_content blockquote,
    .blog_article_page .main_content ol li {
      margin-left: 0;
    }
    /*blog_article_page end*/
    /*newsletters_page*/
    .accordion_wrap.newsletters_accordion .title {
      font-size: 24px;
    }
    .accordion_wrap.newsletters_accordion h3 {
      font-size: 22px;
    }
    /*newsletters_page end*/
    /*newsletter_page*/
    .newsletter_page .main_container .img_main_wrap,
    .newsletter_page .main_container h3 {
      margin-bottom: 20px;
    }
    .news_custome_item .text_wrap h3,
    .news_custome_item .text_wrap p {
      margin-bottom: 15px;
    }
    .newsletter_page .main_container .content_wrap {
      padding: 0 10px;
    }
    .newsletter_page .main_container h3 {
      font-size: 26px;
    }
    .news_custome_item .text_wrap h3 {
      font-size: 22px;
    }
    .news_title {
      padding-left: 10px;
      font-size: 22px;
    }
    .news_page_logos_container .logos-item {
      padding: 0 10px;
      margin-bottom: 20px;
    }
    /*newsletter_page end*/
    /*about_page*/
    .about_page h2 {
      font-size: 24px;
    }
    /*about_page end*/
  }
  @media screen and (max-width: 425px) {
    .library_page .maine_block {
      margin-left: -20px;
      margin-right: -20px;
    }
    /*learning_course_page*/
    .learning_accordion_type_1 .show_hide_content,
    .sub_media.learning_accordion_type_1 .show_hide_content {
      padding-left: 0;
    }
    .learning_accordion_type_1 .show_hide_content ul li .type,
    .learning_accordion_type_1 .show_hide_content ul li .value,
    .sub_media.learning_accordion_type_1 .show_hide_content ul li .type,
    .sub_media.learning_accordion_type_1 .show_hide_content ul li .value {
      width: calc(50% - 10px);
    }
    .learning_accordion_type_1 .show_hide_content ul li .type,
    .sub_media.learning_accordion_type_1 .show_hide_content ul li .type {
      margin-right: 10px;
    }
    .learning_accordion_type_1 .show_hide_content ul li .value,
    .sub_media.learning_accordion_type_1 .show_hide_content ul li .value {
      margin-left: 10px;
    }
    .learning_accordion_type_1 .show_hide_content ul:before,
    .sub_media.learning_accordion_type_1 .show_hide_content ul:before {
      left: 50%;
    }
    /*learning_course_page end*/
  }
/*--YURA END--*/

/*comment-wrapper*/
  .comment-wrapper {
    margin-top: 20px;
    padding: 50px 80px;
    border-top: 4px solid #008734;
    background-color: #F0F6F6;
  }
  .comment-wrapper .comments-title,
  .comment-wrapper .comment-reply-title {
    margin-bottom: 20px;
    font-weight: 400;
    font-size: 40px;
  }
  .comment-wrapper .comment-list {
    margin-bottom: 25px;
  }
  .comment-wrapper .comment {
    padding: 20px 0;
  }
  .comment-list > .comment {
    border-bottom: 1px solid #B2C0C0;
  }
  .comment-wrapper .comment-meta {
    margin-bottom: 10px;
  }
  .comment-wrapper .comment-author,
  .comment-wrapper .comment-metadata {
    display: inline-block;
  }
  .comment-wrapper .avatar,
  .comment-wrapper .says {
    display: none;
  }
  .comment-wrapper .comment-author {
    margin-right: 10px;
  }
  .comment-wrapper .fn {
    display: inline-block;
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    text-transform: capitalize;
  }
  .comment-wrapper .comment-metadata a {
    display: inline-block;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    color: #717A7A;
  }
  .comment-wrapper .comment-metadata .comment-edit-link {
    color: #00456A;
  }
  .comment-wrapper .comment-content p {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 22px;
    color: #323737;
    text-transform: capitalize;
  }
  .comment-wrapper .reply a {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #00456A;
  }
  .comment-wrapper .logged-in-as {
    margin-bottom: 20px;
  }
  .comment-wrapper .logged-in-as a {
    font-weight: 700;
    font-size: 16px;
    color: #00456A;
  }
  .comment-wrapper .comment-metadata .comment-edit-link:hover,
  .comment-wrapper .reply a:hover,
  .comment-wrapper .logged-in-as a:hover {
    text-decoration: underline;
  }
  .comment-wrapper .comment-form-comment label {
    display: block;
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
  }
  .comment-wrapper .comment-form-comment textarea {
    display: block;
    margin-bottom: 30px;
    width: 100%;
    resize: vertical;
  }
  .comment-wrapper .form-submit .submit {
    display: inline-block;
    padding: 0 16px;
    border: 1px solid #008734;
    font-weight: 400;
    font-size: 16px;
    line-height: 40px;
    text-transform: uppercase;
    color: #008734;
    background-color: #fff;
    cursor: pointer;
    -webkit-transition: .4s;
        -o-transition: .4s;
            transition: .4s;
  }
  .comment-wrapper .form-submit .submit:hover {
    border: 1px solid #008734;
    text-decoration: underline;
    color: #008734;
    background-color: #00619a;
  }
  @media screen and (max-width: 991px) {
    .comment-wrapper {
      padding: 40px;
    }
    .comment-wrapper .comments-title,
    .comment-wrapper .comment-reply-title {
      font-size: 28px;
    }
  }
  @media screen and (max-width: 425px) {
    .comment-wrapper {
      padding: 40px 20px;
    }
    .comment-wrapper .comments-title,
    .comment-wrapper .comment-reply-title {
      font-size: 24px;
    }
  }
/*comment-wrapper end*/

/*newsletter share icons*/
.info_block_article_page_newsletter .share_links {
    display: -webkit-box;
    display: flex;
    position: relative;
    margin-bottom: 20px;
  }
  .info_block_article_page_newsletter .share_links a {
    display: block;
    width: 30px;
    height: 30px;
    border-radius:50%;
    border: 1px solid #b9b9b9;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
            align-items: center;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .info_block_article_page_newsletter .share_links a svg {
    width: 12px;
    height: 12px;
  }
  .info_block_article_page_newsletter .share_links a svg path {
    fill: #b9b9b9;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .info_block_article_page_newsletter .share_links a:hover {
    cursor: pointer;
    border: 1px solid #78a22f;
  }
  .info_block_article_page_newsletter .share_links a:hover svg path {
    fill: #78a22f;
  }
  .info_block_article_page_newsletter .share_links a:not(:last-of-type) {
    margin-right: 8px;
    margin-bottom: 8px;
  }