/*--PAGE index--*/
/*first-section*/
.picks-btn-block{
  width: 100%;
}
  .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;
  }
  .picks-img{
    border: unset;
  }
  @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;
    }
    .picks-btn-text {
      line-height: 44px;
    }
  }
  @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--*/