/* Mobile landscape media query */
.news-grid {
  padding: 50px 0;
  /* Flexbox to wrap the cards */
  /* Arrow Icon Style */
  /* Hover Effect for Arrows */ }
  .news-grid .intro h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #001480; }
  .news-grid .wrap {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    @media (max-width: 1264px) {
      .news-grid .wrap {
        width: calc(100% + 40px);
        margin-top: 40px;
        margin-left: -20px; } }
    @media (min-width: 1025px) and (max-width: 1366px) {
      .news-grid .wrap {
        width: calc(100% + 20px);
        margin-left: -10px; } }
    @media (min-width: 992px) and (max-width: 1024px) {
      .news-grid .wrap {
        width: calc(100% + 20px);
        margin-left: -10px; } }
    @media (max-width: 991px) {
      .news-grid .wrap {
        padding: 0 20px; } }
    @media (max-width: 595px) {
      .news-grid .wrap {
        padding: 0 20px; } }
    @media (max-width: 480px) {
      .news-grid .wrap {
        margin-top: 0; } }
  .news-grid .filters-with-search {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 72%; }
    @media (min-width: 596px) and (max-width: 767px) {
      .news-grid .filters-with-search {
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; } }
    @media (max-width: 767px) {
      .news-grid .filters-with-search {
        width: 100%;
        margin-bottom: 20px; } }
    @media (max-width: 595px) {
      .news-grid .filters-with-search {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse; } }
    .news-grid .filters-with-search .filter-list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      @media (max-width: 595px) {
        .news-grid .filters-with-search .filter-list {
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center; } }
      .news-grid .filters-with-search .filter-list li {
        padding-top: 10px;
        padding-bottom: 10px;
        cursor: pointer;
        color: #001480;
        font-weight: 500;
        margin-left: 20px;
        margin-right: 20px;
        font-size: 20px;
        border-bottom: 4px solid transparent;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        text-transform: capitalize;
        position: relative; }
        .news-grid .filters-with-search .filter-list li::before {
          content: "";
          position: absolute;
          bottom: 0;
          left: 0;
          width: 0;
          border-bottom: 4px solid #0084f2;
          -webkit-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out; }
        .news-grid .filters-with-search .filter-list li:hover::before {
          width: 100%; }
        .news-grid .filters-with-search .filter-list li.active-filter::before {
          width: 100%; }
      @media (max-width: 595px) {
        .news-grid .filters-with-search .filter-list {
          width: 100%; } }
    .news-grid .filters-with-search .search-bar {
      position: relative;
      max-width: 450px;
      padding-left: 80px;
      width: 100%;
      height: -webkit-fit-content;
      height: -moz-fit-content;
      height: fit-content; }
      .news-grid .filters-with-search .search-bar .cross-icon {
        position: absolute;
        right: 35px;
        top: 50%;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        cursor: pointer;
        font-size: 16px;
        color: #0084f2;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; }
        .news-grid .filters-with-search .search-bar .cross-icon:hover {
          color: #0084f2; }
      @media (min-width: 1301px) and (max-width: 1500px) {
        .news-grid .filters-with-search .search-bar {
          max-width: 370px;
          padding-left: 20px; } }
      @media (min-width: 1195px) and (max-width: 1300px) {
        .news-grid .filters-with-search .search-bar {
          max-width: 350px;
          padding-left: 10px; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .news-grid .filters-with-search .search-bar {
          max-width: 370px;
          padding-left: 10px; } }
      @media (max-width: 991px) {
        .news-grid .filters-with-search .search-bar {
          padding-left: 10px; } }
      @media (max-width: 767px) {
        .news-grid .filters-with-search .search-bar {
          max-width: 350px; } }
      @media (max-width: 595px) {
        .news-grid .filters-with-search .search-bar {
          max-width: 400px;
          margin: 0 auto;
          padding-left: 0; } }
      @media (max-width: 480px) {
        .news-grid .filters-with-search .search-bar {
          max-width: 100%; } }
      .news-grid .filters-with-search .search-bar::after {
        content: "";
        position: absolute;
        right: 10px;
        top: 50%;
        width: 20px;
        height: 20px;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        background-image: url("/themes/young/templates/assets/images/sections/banner/search-bar.svg");
        background-size: cover;
        cursor: pointer; }
      .news-grid .filters-with-search .search-bar label {
        font-size: 0;
        position: absolute;
        width: 0;
        height: 0;
        display: none; }
      .news-grid .filters-with-search .search-bar input {
        padding: 15px 45px 15px 20px;
        width: 100%;
        border: 2px solid #0084f2;
        border-radius: 8px;
        font-size: 16px;
        outline: none; }
        .news-grid .filters-with-search .search-bar input::-webkit-input-placeholder {
          font-size: 16px; }
        .news-grid .filters-with-search .search-bar input::-moz-placeholder {
          font-size: 16px; }
        .news-grid .filters-with-search .search-bar input::-ms-input-placeholder {
          font-size: 16px; }
        .news-grid .filters-with-search .search-bar input::placeholder {
          font-size: 16px; }
        @media (max-width: 595px) {
          .news-grid .filters-with-search .search-bar input {
            padding: 10px 34px 10px 12px; } }
  .news-grid .card {
    background-color: #ffffff;
    border-radius: 10px;
    -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    width: calc(33.33% - 40px);
    margin: 0 20px;
    border: #cacfd6 2px solid;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media (max-width: 991px) {
      .news-grid .card {
        margin: 0 10px; } }
    .news-grid .card > a {
      position: absolute;
      bottom: 15px;
      right: 20px;
      z-index: 3; }
  .news-grid .card-image {
    height: 272px;
    overflow: hidden;
    font-size: 0; }
    @media (min-width: 1200px) and (max-width: 1599px) {
      .news-grid .card-image {
        height: 235px; } }
    @media (min-width: 992px) and (max-width: 1200px) {
      .news-grid .card-image {
        height: 210px; } }
    @media (max-width: 1024px) {
      .news-grid .card-image {
        height: 210px; } }
    @media (max-width: 595px) {
      .news-grid .card-image {
        height: 200px; } }
  .news-grid .card-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
  .news-grid .card-content {
    padding: 20px;
    text-align: left; }
  .news-grid .blog-info {
    text-align: left; }
    .news-grid .blog-info span {
      color: #0084f2;
      position: relative;
      padding-right: 5px;
      font-size: 18px;
      font-weight: 700; }
      @media (max-width: 991px) {
        .news-grid .blog-info span {
          width: 5px;
          height: 5px;
          margin-right: 0;
          font-size: 16px;
          padding-right: 5px; } }
      .news-grid .blog-info span:last-child {
        padding-right: 0;
        margin-right: 0; }
        .news-grid .blog-info span:last-child::after {
          content: "";
          width: 0;
          height: 0; }
  .news-grid .card-content h4 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #001480;
    font-weight: 600; }
  .news-grid .card-content p {
    font-size: 16px;
    color: #545859;
    margin-bottom: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    max-height: 60px;
    overflow: hidden; }
    @media (max-width: 991px) {
      .news-grid .card-content p {
        margin-bottom: 50px; } }
  @media (max-width: 991px) {
    .news-grid .card {
      width: calc(50% - 20px); } }
  @media (max-width: 595px) {
    .news-grid .card {
      width: calc(50% - 20px); } }
  .news-grid .card {
    text-decoration: none;
    color: inherit;
    display: block;
    -webkit-transform: unset;
            transform: unset;
    position: relative;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    @media (max-width: 767px) {
      .news-grid .card {
        width: 400px;
        margin: 0 auto; } }
    @media (max-width: 480px) {
      .news-grid .card {
        margin: 0 20px; } }
    .news-grid .card.slick-slide {
      height: unset !important;
      min-height: unset !important; }
  .news-grid .card:hover .card-image img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05); }
  .news-grid .card:hover .arrow-btn {
    padding-right: 25px; }
    .news-grid .card:hover .arrow-btn::after {
      right: 5px; }
  .news-grid .card {
    position: relative;
    overflow: hidden; }
    .news-grid .card .arrow-btn {
      position: absolute;
      bottom: 20px; }
  .news-grid .btn-wrap {
    margin-top: 30px;
    text-align: center; }
    @media (max-width: 767px) {
      .news-grid .btn-wrap {
        margin-top: 50px; } }
  .news-grid .slick-prev,
  .news-grid .slick-next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-color: transparent;
    width: 40px;
    height: 40px;
    z-index: 1;
    cursor: pointer;
    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;
    font-size: 20px;
    -webkit-transition: border-color 0.3s ease, background-color 0.3s ease;
    transition: border-color 0.3s ease, background-color 0.3s ease; }
    .news-grid .slick-prev::before,
    .news-grid .slick-next::before {
      display: none; }
    .news-grid .slick-prev svg:hover path,
    .news-grid .slick-next svg:hover path {
      fill: #001480; }
    .news-grid .slick-prev svg path,
    .news-grid .slick-next svg path {
      fill: #545859; }
  .news-grid .slick-prev {
    left: -38px; }
    @media (max-width: 1774px) {
      .news-grid .slick-prev {
        left: 3px; } }
    @media (max-width: 991px) {
      .news-grid .slick-prev {
        right: 50% !important;
        left: unset !important;
        margin-right: 2px;
        bottom: -26px;
        top: unset; } }
    @media (max-width: 767px) {
      .news-grid .slick-prev {
        bottom: -65px; } }
    @media (max-width: 480px) {
      .news-grid .slick-prev {
        right: 50% !important; } }
    @media (max-width: 767px) {
      .news-grid .slick-prev {
        bottom: -26px; } }
  .news-grid .slick-next {
    right: -38px; }
    @media (max-width: 1774px) {
      .news-grid .slick-next {
        right: 3px; } }
    @media (max-width: 991px) {
      .news-grid .slick-next {
        left: 50% !important;
        right: unset !important;
        margin-left: 2px;
        bottom: -26px;
        top: unset; } }
    @media (max-width: 767px) {
      .news-grid .slick-next {
        bottom: -65px; } }
    @media (max-width: 767px) {
      .news-grid .slick-next {
        bottom: -26px; } }
  .news-grid .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media (max-width: 767px) {
      .news-grid .slick-track {
        padding-bottom: 30px; } }
  .news-grid .slick-prev::before,
  .news-grid .slick-next::before {
    color: #97a0a8;
    font-weight: bold;
    font-size: 20px; }
  .news-grid .slick-prev:hover,
  .news-grid .slick-next:hover {
    border-color: dark #97a0a8;
    background-color: transparent; }
  .news-grid .slick-prev:hover::before,
  .news-grid .slick-next:hover::before {
    color: dark #97a0a8; }

.news-grid {
  position: relative;
  padding-top: 0;
  background-color: #ffffff; }
  .news-grid .hidden {
    display: none; }
  .news-grid .wrapper {
    width: calc(100% + 20px);
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: -10px; }
    @media (max-width: 595px) {
      .news-grid .wrapper {
        margin-left: 0;
        width: 100%; } }
    .news-grid .wrapper .card-wrap {
      width: calc(20% - 20px);
      margin: 0 10px 33px;
      border: 2px solid #97a0a8;
      border-radius: 14px;
      padding: 40px 21px;
      background-color: #ffffff;
      position: relative;
      z-index: 2;
      -webkit-transition: all 0.5s;
      transition: all 0.5s; }
      @media (min-width: 1200px) and (max-width: 1599px) {
        .news-grid .wrapper .card-wrap {
          padding: 30px 36px; } }
      @media (min-width: 992px) and (max-width: 1200px) {
        .news-grid .wrapper .card-wrap {
          padding: 30px 36px; } }
      @media (max-width: 1024px) {
        .news-grid .wrapper .card-wrap {
          width: calc(25% - 20px); } }
      @media (max-width: 991px) {
        .news-grid .wrapper .card-wrap {
          width: calc(33.33% - 20px);
          padding: 30px 36px; } }
      @media (max-width: 767px) {
        .news-grid .wrapper .card-wrap {
          width: calc(50% - 20px);
          padding: 20px 25px; } }
      @media (max-width: 595px) {
        .news-grid .wrapper .card-wrap {
          width: 100%;
          margin: 0 0 20px;
          max-width: 324px;
          margin: 0 auto 20px; } }
      .news-grid .wrapper .card-wrap::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: #001480 0% 0% no-repeat padding-box;
        -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
                box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.5);
        border-radius: 14px;
        opacity: 0;
        -webkit-transition: 0.3s;
        transition: 0.3s; }
      .news-grid .wrapper .card-wrap:hover {
        border: 1px solid #001480; }
      .news-grid .wrapper .card-wrap:hover::before {
        opacity: 0.8; }
      .news-grid .wrapper .card-wrap:hover .text-wrap {
        opacity: 1; }
      .news-grid .wrapper .card-wrap .img-wrap {
        max-width: 280px;
        max-height: 85px;
        font-size: 0;
        height: 100%;
        width: 100%; }
      .news-grid .wrapper .card-wrap img {
        width: 100%;
        height: 100%;
        -o-object-fit: contain;
           object-fit: contain; }
    .news-grid .wrapper .text-wrap {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      width: 80%;
      height: auto;
      opacity: 0.02;
      color: #ffffff;
      -webkit-transition: 0.5s;
      transition: 0.5s;
      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;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      text-align: center; }
      .news-grid .wrapper .text-wrap h5 {
        color: #ffffff;
        font-weight: bold;
        margin-bottom: 2px;
        width: 100%; }
      .news-grid .wrapper .text-wrap a {
        font-size: 16px;
        color: #33ccff;
        width: 100%; }
  .news-grid .filter-bar {
    width: 100%;
    position: relative;
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 20px 0;
    background-color: #ebf5fe;
    max-width: 2160px; }
    .news-grid .filter-bar::after {
      content: "";
      position: absolute;
      left: -500px;
      top: 0;
      background-color: #ebf5fe;
      width: 500px;
      height: 100%; }
    .news-grid .filter-bar::before {
      content: "";
      position: absolute;
      right: -500px;
      top: 0;
      background-color: #ebf5fe;
      width: 500px;
      height: 100%; }
    .news-grid .filter-bar .wrapper {
      position: relative;
      margin-left: 0;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      @media (max-width: 991px) {
        .news-grid .filter-bar .wrapper {
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center; } }
      @media (min-width: 596px) and (max-width: 767px) {
        .news-grid .filter-bar .wrapper {
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between; } }
      @media (max-width: 595px) {
        .news-grid .filter-bar .wrapper {
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          padding-right: 0;
          display: block;
          text-align: center; } }
      .news-grid .filter-bar .wrapper .filter-box {
        position: relative;
        padding-left: 50px; }
        .news-grid .filter-bar .wrapper .filter-box::after {
          content: "";
          position: absolute;
          left: 25px;
          top: 2px;
          width: 20px;
          height: 20px;
          background-image: url("/themes/young/templates/assets/images/sections/banner/filter-bar.svg");
          background-repeat: no-repeat;
          background-size: contain; }
        .news-grid .filter-bar .wrapper .filter-box::before {
          content: "|";
          position: absolute;
          right: -18px;
          top: 1px;
          width: 2px;
          height: 5px;
          color: #0084f2; }
        .news-grid .filter-bar .wrapper .filter-box p {
          color: #0084f2;
          font-weight: 600; }
      .news-grid .filter-bar .wrapper .dropdown-box {
        position: relative;
        padding-right: 25px;
        margin-left: 10px;
        cursor: pointer;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; }
        @media (max-width: 767px) {
          .news-grid .filter-bar .wrapper .dropdown-box {
            padding-left: 0;
            max-width: 180px;
            margin: 14px auto 0;
            padding-right: 25px; } }
        .news-grid .filter-bar .wrapper .dropdown-box.active::after {
          -webkit-transform: translateY(-50%) rotate(89deg);
                  transform: translateY(-50%) rotate(89deg);
          top: 50%; }
        .news-grid .filter-bar .wrapper .dropdown-box.active .order-list-wrap {
          height: auto;
          opacity: 1;
          visibility: visible;
          display: block; }
          @media (max-width: 595px) {
            .news-grid .filter-bar .wrapper .dropdown-box.active .order-list-wrap {
              text-align: left; } }
        .news-grid .filter-bar .wrapper .dropdown-box::after {
          content: "";
          position: absolute;
          right: 0;
          top: 6px;
          width: 16px;
          height: 16px;
          -webkit-transform: rotate(272deg);
                  transform: rotate(272deg);
          background-image: url("/themes/young/templates/assets/images/sections/svg-icons/bright-blue-arrow.svg");
          background-size: contain;
          background-repeat: no-repeat;
          -webkit-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out; }
          @media (max-width: 767px) {
            .news-grid .filter-bar .wrapper .dropdown-box::after {
              top: 4px; } }
          @media (max-width: 595px) {
            .news-grid .filter-bar .wrapper .dropdown-box::after {
              right: 0; } }
        .news-grid .filter-bar .wrapper .dropdown-box p {
          color: #0084f2;
          font-weight: 600;
          text-transform: capitalize; }
          .news-grid .filter-bar .wrapper .dropdown-box p span {
            color: inherit;
            font-size: inherit; }
        .news-grid .filter-bar .wrapper .dropdown-box .order-list-wrap {
          position: absolute;
          right: 0;
          top: 30px;
          width: 100%;
          background-color: #ffffff;
          -webkit-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.2);
                  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.2);
          z-index: 10;
          padding: 10px;
          -webkit-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out;
          height: 0;
          opacity: 0;
          visibility: hidden;
          display: none; }
          .news-grid .filter-bar .wrapper .dropdown-box .order-list-wrap li {
            color: #001480;
            margin-bottom: 10px;
            font-size: 18px;
            text-transform: capitalize; }
            .news-grid .filter-bar .wrapper .dropdown-box .order-list-wrap li:last-child {
              margin-bottom: 0; }
  .news-grid .filter-tab {
    padding: 20px 0;
    background-color: #ebf5fe;
    max-width: 2160px; }
    .news-grid .filter-tab .small-wrapper {
      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;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      max-width: unset; }
      .news-grid .filter-tab .small-wrapper .wrapper {
        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;
        width: calc(100% - 100px); }
        @media (max-width: 991px) {
          .news-grid .filter-tab .small-wrapper .wrapper {
            width: 400px; } }
        @media (max-width: 595px) {
          .news-grid .filter-tab .small-wrapper .wrapper {
            width: 100%; } }
      .news-grid .filter-tab .small-wrapper .dropdown-box {
        position: relative;
        padding-right: 25px;
        cursor: pointer;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        width: 100px;
        max-width: -webkit-max-content;
        max-width: -moz-max-content;
        max-width: max-content; }
        .news-grid .filter-tab .small-wrapper .dropdown-box.active::after {
          -webkit-transform: translateY(-50%) rotate(272deg);
                  transform: translateY(-50%) rotate(272deg);
          top: 50%; }
        .news-grid .filter-tab .small-wrapper .dropdown-box.active .order-list-wrap {
          height: auto;
          opacity: 1;
          visibility: visible;
          display: block; }
        .news-grid .filter-tab .small-wrapper .dropdown-box::after {
          content: "";
          position: absolute;
          right: 0;
          top: 6px;
          width: 15px;
          height: 15px;
          -webkit-transform: rotate(89deg);
                  transform: rotate(89deg);
          background-image: url("/themes/young/templates/assets/images/sections/svg-icons/bright-blue-arrow.svg");
          background-size: contain;
          background-repeat: no-repeat;
          -webkit-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out; }
        .news-grid .filter-tab .small-wrapper .dropdown-box p {
          color: #545859;
          font-weight: 500; }
          .news-grid .filter-tab .small-wrapper .dropdown-box p span {
            color: inherit;
            font-size: inherit; }
        .news-grid .filter-tab .small-wrapper .dropdown-box .order-list-wrap {
          position: absolute;
          left: 0;
          top: 30px;
          width: 100%;
          background-color: #ffffff;
          -webkit-box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.2);
                  box-shadow: 0px 2px 3px 0px rgba(0, 0, 0, 0.2);
          z-index: 10;
          padding: 10px;
          -webkit-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out;
          height: 0;
          opacity: 0;
          visibility: hidden;
          display: none; }
          .news-grid .filter-tab .small-wrapper .dropdown-box .order-list-wrap li {
            color: #001480;
            margin-bottom: 10px;
            font-size: 18px; }
            .news-grid .filter-tab .small-wrapper .dropdown-box .order-list-wrap li:last-child {
              margin-bottom: 0; }
    .news-grid .filter-tab .wrapper ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      margin-bottom: 10px; }
      @media (max-width: 1600px) {
        .news-grid .filter-tab .wrapper ul {
          padding-left: 0; } }
      @media (max-width: 991px) {
        .news-grid .filter-tab .wrapper ul {
          -webkit-box-ordinal-group: 3;
              -ms-flex-order: 2;
                  order: 2;
          width: 100%; } }
      @media (min-width: 768px) and (max-width: 991px) {
        .news-grid .filter-tab .wrapper ul {
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between; } }
      @media (max-width: 767px) {
        .news-grid .filter-tab .wrapper ul {
          width: 100%;
          -webkit-box-ordinal-group: 3;
              -ms-flex-order: 2;
                  order: 2; } }
      .news-grid .filter-tab .wrapper ul li {
        padding-right: 65px; }
        @media (min-width: 1195px) and (max-width: 1300px) {
          .news-grid .filter-tab .wrapper ul li {
            padding-right: 50px; } }
        @media (min-width: 992px) and (max-width: 1199px) {
          .news-grid .filter-tab .wrapper ul li {
            padding-right: 50px; } }
        @media (max-width: 991px) {
          .news-grid .filter-tab .wrapper ul li {
            padding-right: 80px; } }
        @media (min-width: 768px) and (max-width: 991px) {
          .news-grid .filter-tab .wrapper ul li {
            padding-right: 20px; } }
        @media (max-width: 767px) {
          .news-grid .filter-tab .wrapper ul li {
            padding-right: 0;
            width: -webkit-fit-content;
            width: -moz-fit-content;
            width: fit-content;
            margin-bottom: 10px;
            margin-right: 20px; } }
        @media (max-width: 359px) {
          .news-grid .filter-tab .wrapper ul li {
            width: 100%; } }
        .news-grid .filter-tab .wrapper ul li:last-child {
          padding-right: 0; }
      .news-grid .filter-tab .wrapper ul p {
        color: #001480;
        font-weight: 600;
        cursor: pointer;
        position: relative; }
        @media (max-width: 767px) {
          .news-grid .filter-tab .wrapper ul p {
            display: inline; } }
        .news-grid .filter-tab .wrapper ul p::before {
          content: "";
          position: absolute;
          bottom: -10px;
          left: 0;
          width: 0;
          border-bottom: 4px solid #0084f2;
          -webkit-transition: all 0.3s ease-in-out;
          transition: all 0.3s ease-in-out; }
        .news-grid .filter-tab .wrapper ul p:hover::before {
          width: 100%; }
        .news-grid .filter-tab .wrapper ul p.active::before {
          width: 100%; }
    .news-grid .filter-tab .input-wrapper {
      width: 45%;
      position: relative;
      padding-left: 30px; }
      @media (min-width: 1301px) and (max-width: 1500px) {
        .news-grid .filter-tab .input-wrapper {
          width: 35%; } }
      @media (min-width: 1195px) and (max-width: 1300px) {
        .news-grid .filter-tab .input-wrapper {
          width: 35%; } }
      @media (max-width: 991px) {
        .news-grid .filter-tab .input-wrapper {
          width: 100%;
          padding-left: 0; } }
      @media (max-width: 767px) {
        .news-grid .filter-tab .input-wrapper {
          width: 100%; } }
    .news-grid .filter-tab .input-wrap {
      position: relative;
      max-width: 450px;
      padding-left: 50px;
      width: 100%; }
      @media (min-width: 1301px) and (max-width: 1500px) {
        .news-grid .filter-tab .input-wrap {
          max-width: 370px;
          padding-left: 20px; } }
      @media (min-width: 1195px) and (max-width: 1300px) {
        .news-grid .filter-tab .input-wrap {
          max-width: 350px;
          padding-left: 0; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .news-grid .filter-tab .input-wrap {
          max-width: 370px;
          padding-left: 10px; } }
      @media (max-width: 991px) {
        .news-grid .filter-tab .input-wrap {
          padding-left: 0;
          margin-bottom: 30px; } }
      @media (max-width: 595px) {
        .news-grid .filter-tab .input-wrap {
          max-width: 100%; } }
      .news-grid .filter-tab .input-wrap::after {
        content: "";
        position: absolute;
        right: 20px;
        top: 19px;
        width: 20px;
        height: 20px;
        background-image: url("/themes/young/templates/assets/images/sections/banner/search-bar.svg");
        background-size: cover; }
      .news-grid .filter-tab .input-wrap input {
        padding: 15px 45px 15px 20px;
        width: 100%;
        border: 2px solid #0084f2;
        border-radius: 8px;
        font-size: 16px;
        outline: none; }
        .news-grid .filter-tab .input-wrap input::-webkit-input-placeholder {
          font-size: 16px; }
        .news-grid .filter-tab .input-wrap input::-moz-placeholder {
          font-size: 16px; }
        .news-grid .filter-tab .input-wrap input::-ms-input-placeholder {
          font-size: 16px; }
        .news-grid .filter-tab .input-wrap input::placeholder {
          font-size: 16px; }
  .news-grid .cards-wrap .card {
    width: calc(33.33% - 40px);
    margin: 40px 20px 0;
    border: 1px solid #cacfd6;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    padding-bottom: 65px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    @media (min-width: 1025px) and (max-width: 1366px) {
      .news-grid .cards-wrap .card {
        width: calc(33.33% - 20px);
        margin-left: 10px;
        margin-right: 10px;
        margin-top: 30px; } }
    @media (min-width: 992px) and (max-width: 1024px) {
      .news-grid .cards-wrap .card {
        width: calc(33.33% - 20px);
        margin-left: 10px;
        margin-right: 10px;
        margin-top: 30px; } }
    @media (max-width: 991px) {
      .news-grid .cards-wrap .card {
        width: calc(50% - 20px);
        margin: 20px 10px 0; } }
    @media (max-width: 595px) {
      .news-grid .cards-wrap .card {
        width: calc(100% - 20px);
        max-width: 400px;
        margin-left: auto;
        margin-right: auto; } }
    @media (max-width: 480px) {
      .news-grid .cards-wrap .card {
        width: 100%; } }
    .news-grid .cards-wrap .card .card-image {
      overflow: hidden;
      max-height: 210px; }
      .news-grid .cards-wrap .card .card-image img {
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease; }
    .news-grid .cards-wrap .card:hover .card-image img {
      -webkit-transform: scale(1.05);
              transform: scale(1.05); }
    .news-grid .cards-wrap .card:hover .arrow-btn {
      padding-right: 25px; }
      .news-grid .cards-wrap .card:hover .arrow-btn::after {
        right: 5px; }
    .news-grid .cards-wrap .card .card-content {
      padding: 15px 20px 0; }
      .news-grid .cards-wrap .card .card-content .blog-info {
        text-transform: capitalize; }
        .news-grid .cards-wrap .card .card-content .blog-info span {
          color: #0084f2;
          font-weight: 700; }
      .news-grid .cards-wrap .card .card-content h5 {
        color: #001480;
        font-weight: 500;
        margin-top: 5px;
        margin-bottom: 10px; }
      .news-grid .cards-wrap .card .card-content p {
        margin-top: 10px; }
      .news-grid .cards-wrap .card .card-content .arrow-btn {
        margin-top: 10px;
        left: 20px;
        position: absolute;
        bottom: 30px;
        width: auto;
        height: auto; }
        .news-grid .cards-wrap .card .card-content .arrow-btn::after {
          -webkit-transition: all 0.3s ease;
          transition: all 0.3s ease; }
  .news-grid .pagination {
    margin: 40px auto 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .news-grid .pagination ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin: 0 auto;
      width: -webkit-fit-content;
      width: -moz-fit-content;
      width: fit-content;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .news-grid .pagination ul li {
        margin: 0 5px;
        -webkit-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in; }
        .news-grid .pagination ul li:hover span {
          color: #0084f2; }
        .news-grid .pagination ul li span {
          padding: 0 10px;
          color: #545859;
          font-size: 20px;
          font-weight: 500;
          cursor: pointer; }
        @media (max-width: 595px) {
          .news-grid .pagination ul li:nth-child(4) {
            display: none; }
          .news-grid .pagination ul li:nth-child(5) {
            display: none; } }
      .news-grid .pagination ul li.active span {
        color: #0084f2;
        border-bottom: 2px solid #0084f2; }
    .news-grid .pagination button {
      display: inline-block;
      margin: 0 20px;
      padding: 10px 20px;
      border-radius: 25px;
      background-color: #0084f2;
      font-size: 18px;
      font-weight: 600;
      position: relative;
      color: #ffffff;
      outline: none;
      border: 4px solid #0084f2;
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease;
      z-index: 2;
      overflow: hidden;
      cursor: pointer; }
      .news-grid .pagination button::before {
        content: "";
        display: block;
        position: absolute;
        bottom: 0;
        width: calc(100% + 50%);
        height: calc(100% + 250%);
        border-radius: 50%;
        left: 50%;
        -webkit-transform: translateX(-50%);
                transform: translateX(-50%);
        -webkit-transform: translateZ(0) translate(-50%, 50%) scale(0);
                transform: translateZ(0) translate(-50%, 50%) scale(0);
        -webkit-transition: all 0.3s linear;
        transition: all 0.3s linear;
        z-index: -1; }
      .news-grid .pagination button:hover::before {
        -webkit-transform: translateZ(0) translate(-50%, 50%) scale(1);
                transform: translateZ(0) translate(-50%, 50%) scale(1);
        background-color: #001480; }
    .news-grid .pagination button.next {
      padding: 10px 30px 10px 20px; }
      .news-grid .pagination button.next::after {
        content: "";
        position: absolute;
        right: 11px;
        top: 14.4px;
        width: 12px;
        height: 12px;
        background-image: url("/themes/young/templates/assets/images/sections/svg-icons/white-right-arrow.svg");
        background-size: contain;
        background-repeat: no-repeat;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; }
    .news-grid .pagination button.prev {
      padding: 10px 20px 10px 30px; }
      .news-grid .pagination button.prev::after {
        content: "";
        position: absolute;
        left: 11px;
        top: 14.4px;
        width: 12px;
        height: 12px;
        -webkit-transform: rotate(178deg);
                transform: rotate(178deg);
        background-image: url("/themes/young/templates/assets/images/sections/svg-icons/white-right-arrow.svg");
        background-size: contain;
        background-repeat: no-repeat;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out; }
  .news-grid .pager ul li span {
    color: #ffffff; }
  .news-grid .views-exposed-form {
    display: none; }
    .news-grid .views-exposed-form span {
      color: inherit;
      font-size: inherit; }
    .news-grid .views-exposed-form .js-form-item:not(:first-of-type) {
      margin-left: 20px; }
    .news-grid .views-exposed-form .js-form-item label {
      color: #0084f2;
      font-weight: 600;
      position: relative;
      padding-right: 5px;
      font-size: 18px;
      background: transparent; }
    .news-grid .views-exposed-form .js-form-item select {
      color: #545859;
      font-weight: 500;
      position: relative;
      padding-right: 5px;
      font-size: 18px;
      padding: 10px 5px;
      outline: none;
      border: none;
      background: transparent; }
    .news-grid .views-exposed-form .js-form-item {
      margin-top: 5px;
      margin-bottom: 5px; }
    .news-grid .views-exposed-form .form-actions {
      margin-left: 20px;
      display: inline-block;
      margin-top: 5px;
      margin-bottom: 5px; }
    .news-grid .views-exposed-form .form-item-combine {
      position: relative;
      max-width: 450px;
      padding-left: 80px;
      width: 100%; }
      @media (min-width: 1301px) and (max-width: 1500px) {
        .news-grid .views-exposed-form .form-item-combine {
          max-width: 370px;
          padding-left: 20px; } }
      @media (min-width: 1195px) and (max-width: 1300px) {
        .news-grid .views-exposed-form .form-item-combine {
          max-width: 350px;
          padding-left: 10px; } }
      @media (min-width: 992px) and (max-width: 1199px) {
        .news-grid .views-exposed-form .form-item-combine {
          max-width: 370px;
          padding-left: 10px; } }
      @media (max-width: 991px) {
        .news-grid .views-exposed-form .form-item-combine {
          padding-left: 10px; } }
      @media (max-width: 595px) {
        .news-grid .views-exposed-form .form-item-combine {
          max-width: 100%; } }
      .news-grid .views-exposed-form .form-item-combine::after {
        content: "";
        position: absolute;
        right: 20px;
        top: 50%;
        width: 20px;
        height: 20px;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        background-image: url("/themes/young/templates/assets/images/sections/banner/search-bar.svg");
        background-size: cover; }
      .news-grid .views-exposed-form .form-item-combine label {
        font-size: 0;
        position: absolute;
        width: 0;
        height: 0;
        display: none; }
      .news-grid .views-exposed-form .form-item-combine input {
        padding: 15px 45px 15px 20px;
        width: 100%;
        border: 2px solid #0084f2;
        border-radius: 8px;
        font-size: 16px;
        outline: none; }
        .news-grid .views-exposed-form .form-item-combine input::-webkit-input-placeholder {
          font-size: 16px; }
        .news-grid .views-exposed-form .form-item-combine input::-moz-placeholder {
          font-size: 16px; }
        .news-grid .views-exposed-form .form-item-combine input::-ms-input-placeholder {
          font-size: 16px; }
        .news-grid .views-exposed-form .form-item-combine input::placeholder {
          font-size: 16px; }
