/**
 * Header style
 */
.header {
  background-color: #00183E;
  position: fixed;
  width: 100%;
  z-index: 10;
  top: 0;
  left: 0; }
  @media (max-width: 999px) {
    .header {
      padding: 20px 0; } }
  .header .header-wrp {
    display: flex;
    align-items: center; }
    .header .header-wrp .site-branding {
      flex-shrink: 0;
      position: relative; }
      .header .header-wrp .site-branding img {
        width: 110px; }
        @media (max-width: 576px) {
          .header .header-wrp .site-branding img {
            width: 90px; } }
    .header .header-wrp .menu-wrp {
      display: flex;
      flex: 1 1 auto;
      justify-content: flex-end;
      width: 100%;
      padding-left: 50px; }
      .header .header-wrp .menu-wrp .menu-main-menu-container {
        width: 100%; }
      .header .header-wrp .menu-wrp .menu {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%; }
        .header .header-wrp .menu-wrp .menu > li {
          padding: 30px 10px;
          position: relative; }
          .header .header-wrp .menu-wrp .menu > li > a {
            font-size: 18px;
            color: #fff; }
            @media (max-width: 1200px) {
              .header .header-wrp .menu-wrp .menu > li > a {
                font-size: 16px; } }
            @media (max-width: 1050px) {
              .header .header-wrp .menu-wrp .menu > li > a {
                font-size: 15px; } }
            .header .header-wrp .menu-wrp .menu > li > a:hover {
              color: #246cd7; }
          .header .header-wrp .menu-wrp .menu > li > .sub-menu {
            display: none;
            position: absolute;
            top: 86px;
            left: calc(50% - 120px);
            background-color: #022760;
            width: 240px;
            text-align: center;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
            padding-bottom: 5px; }
            .header .header-wrp .menu-wrp .menu > li > .sub-menu > li {
              padding: 12px 15px;
              border-bottom: 2px solid #1b56ae; }
              .header .header-wrp .menu-wrp .menu > li > .sub-menu > li > a {
                color: #fff; }
                @media (max-width: 1200px) {
                  .header .header-wrp .menu-wrp .menu > li > .sub-menu > li > a {
                    font-size: 16px; } }
                @media (max-width: 1050px) {
                  .header .header-wrp .menu-wrp .menu > li > .sub-menu > li > a {
                    font-size: 15px; } }
                .header .header-wrp .menu-wrp .menu > li > .sub-menu > li > a:hover {
                  color: #246cd7; }
              .header .header-wrp .menu-wrp .menu > li > .sub-menu > li:last-child {
                border-bottom: 0; }
          .header .header-wrp .menu-wrp .menu > li:last-child {
            padding: 7px 20px;
            background-color: #2E82FF;
            border-radius: 40px; }
            .header .header-wrp .menu-wrp .menu > li:last-child:hover {
              background-color: #fff; }
              .header .header-wrp .menu-wrp .menu > li:last-child:hover a {
                color: #00183E; }
          .header .header-wrp .menu-wrp .menu > li:hover > .sub-menu {
            display: block; }
  .header .hamburger {
    position: absolute;
    top: 30px;
    right: 5%;
    display: none; }
    @media (max-width: 576px) {
      .header .hamburger {
        top: 27px; } }
    .header .hamburger:hover {
      cursor: pointer; }
    @media (max-width: 1000px) {
      .header .hamburger {
        display: block; } }
  .header .mobile-menu {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    padding: 90px 0;
    background-color: #00183E;
    width: 100%;
    max-width: 100%;
    min-height: 100vh; }
    .header .mobile-menu .close-menu {
      position: absolute;
      top: 20px;
      right: 5%; }
      .header .mobile-menu .close-menu img {
        width: 35px; }
      .header .mobile-menu .close-menu:hover {
        cursor: pointer; }
    .header .mobile-menu .site-branding {
      width: 90px;
      position: absolute;
      top: 20px;
      left: 5%; }
    @media (max-width: 576px) {
      .header .mobile-menu {
        width: 100%; } }
    .header .mobile-menu ul:not(.sub-menu) > li {
      padding: 10px 0;
      position: relative; }
      .header .mobile-menu ul:not(.sub-menu) > li > a {
        color: #ffffff;
        font-size: 22px;
        margin-left: 5%; }
      .header .mobile-menu ul:not(.sub-menu) > li.menu-item-has-children .dropdown-arrow {
        position: absolute;
        width: 30px;
        height: 30px;
        position: absolute;
        right: 5%;
        top: 12px; }
        .header .mobile-menu ul:not(.sub-menu) > li.menu-item-has-children .dropdown-arrow:after {
          content: url("../images/arrow-down.svg");
          width: 30px;
          height: 30px;
          position: absolute;
          left: 0;
          top: 0;
          transition: all 0.3s ease; }
      .header .mobile-menu ul:not(.sub-menu) > li.menu-item-has-children.sub-menu-show .dropdown-arrow:after {
        transform: rotate(180deg); }
      .header .mobile-menu ul:not(.sub-menu) > li .sub-menu {
        display: none;
        margin-top: 15px; }
        .header .mobile-menu ul:not(.sub-menu) > li .sub-menu.menu-show {
          display: block; }
        .header .mobile-menu ul:not(.sub-menu) > li .sub-menu li {
          padding: 12px 0;
          background-color: #022760;
          border-bottom: 1px solid #2E82FC; }
          .header .mobile-menu ul:not(.sub-menu) > li .sub-menu li a {
            color: #ffffff;
            font-size: 22px;
            margin-left: 5%; }
          .header .mobile-menu ul:not(.sub-menu) > li .sub-menu li:last-child {
            border-bottom: none; }
      .header .mobile-menu ul:not(.sub-menu) > li:last-child {
        padding: 5px 15px;
        background-color: #2E82FF;
        border-radius: 40px;
        margin-top: 15px;
        width: 200px;
        text-align: center;
        margin-left: 5%; }
        @media (max-width: 768px) {
          .header .mobile-menu ul:not(.sub-menu) > li:last-child {
            display: none; } }
        .header .mobile-menu ul:not(.sub-menu) > li:last-child:hover {
          background-color: #fff; }
          .header .mobile-menu ul:not(.sub-menu) > li:last-child:hover a {
            color: #00183E; }
    @media (max-width: 1000px) {
      .header .mobile-menu.menu-show {
        display: block; }
        .header .mobile-menu.menu-show .menu-main-menu-container {
          display: block; } }

.page-template-template_landing_page .header {
  background-color: transparent;
  position: fixed; }
  .page-template-template_landing_page .header .header-wrp .menu-wrp .menu > li:last-child {
    background-color: transparent;
    border: 1px solid #fff; }
    .page-template-template_landing_page .header .header-wrp .menu-wrp .menu > li:last-child:hover {
      background-color: #fff; }
      .page-template-template_landing_page .header .header-wrp .menu-wrp .menu > li:last-child:hover a {
        color: #2E82FF; }
  .page-template-template_landing_page .header.sticky {
    background-color: #00183E;
    position: fixed; }
    .page-template-template_landing_page .header.sticky .header-wrp .menu-wrp .menu > li:last-child {
      background-color: #2E82FF;
      border: none; }
      .page-template-template_landing_page .header.sticky .header-wrp .menu-wrp .menu > li:last-child:hover {
        background-color: #fff; }
        .page-template-template_landing_page .header.sticky .header-wrp .menu-wrp .menu > li:last-child:hover a {
          color: #00183E; }
    .page-template-template_landing_page .header.sticky .header-wrp .menu-wrp .menu > li > .sub-menu {
      background-color: #022760;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); }
      .page-template-template_landing_page .header.sticky .header-wrp .menu-wrp .menu > li > .sub-menu > li {
        border-bottom: 2px solid #1b56ae; }
        .page-template-template_landing_page .header.sticky .header-wrp .menu-wrp .menu > li > .sub-menu > li:last-child {
          border: none; }

.book-demo-btn {
  display: none;
  position: fixed;
  bottom: 15px;
  right: 10px;
  z-index: 10; }
  @media (max-width: 768px) {
    .book-demo-btn {
      display: block; } }
  .book-demo-btn a {
    padding: 7px 20px;
    background-color: #2E82FF;
    border-radius: 40px;
    color: #fff;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3); }
    .book-demo-btn a:hover {
      background-color: #fff;
      color: #00183E; }

/**
 * Flexible Content
 */
.default-page {
  padding-top: 86px; }
  @media (max-width: 999px) {
    .default-page {
      padding-top: 82px; } }
  @media (max-width: 576px) {
    .default-page {
      padding-top: 75px; } }

.blog-section {
  background-color: #2E82FC; }
  .blog-section .top-content {
    padding-top: 6rem;
    padding-bottom: 4rem; }
    @media (max-width: 768px) {
      .blog-section .top-content {
        padding-top: 4rem; } }
    .blog-section .top-content .title-part h1 {
      font-size: 65px;
      font-weight: 600;
      color: #fff; }
      @media (max-width: 768px) {
        .blog-section .top-content .title-part h1 {
          font-size: 45px; } }
    .blog-section .top-content .description p {
      font-size: 28px;
      color: #fff; }
      @media (max-width: 768px) {
        .blog-section .top-content .description p {
          font-size: 22px; } }
  .blog-section .blog-wrp {
    padding-top: 4rem;
    padding-bottom: 6rem;
    background-color: #fff;
    border-top-right-radius: 250px; }
    @media (max-width: 768px) {
      .blog-section .blog-wrp {
        padding-bottom: 4rem;
        border-top-right-radius: 125px; } }
    @media (max-width: 576px) {
      .blog-section .blog-wrp {
        border-top-right-radius: 80px; } }
    .blog-section .blog-wrp .cat-filter {
      padding-bottom: 4rem; }
      @media (max-width: 768px) {
        .blog-section .blog-wrp .cat-filter {
          padding-bottom: 2rem; } }
      .blog-section .blog-wrp .cat-filter .category-filter {
        text-align: left;
        padding-top: 0; }
        .blog-section .blog-wrp .cat-filter .category-filter li.active a {
          background: #0056D7; }
    .blog-section .blog-wrp .inner-wrp .each {
      margin-bottom: 24px; }
      @media (max-width: 768px) {
        .blog-section .blog-wrp .inner-wrp .each {
          padding-bottom: 16px; } }
      .blog-section .blog-wrp .inner-wrp .each .each-wrp {
        height: 100%;
        background-color: #EAF1FC;
        position: relative; }
        .blog-section .blog-wrp .inner-wrp .each .each-wrp .img-wrp {
          display: block;
          width: 100%;
          height: 0;
          padding-bottom: 56.25%;
          position: relative; }
          .blog-section .blog-wrp .inner-wrp .each .each-wrp .img-wrp img {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            object-fit: cover;
            object-position: center center; }
        .blog-section .blog-wrp .inner-wrp .each .each-wrp .post-detail {
          background-color: #EAF1FC;
          padding: 30px;
          padding-bottom: 60px; }
          .blog-section .blog-wrp .inner-wrp .each .each-wrp .post-detail .post-date p {
            font-size: 16px;
            font-weight: 600;
            color: #2E82FF;
            text-transform: uppercase;
            margin-bottom: 10px; }
          .blog-section .blog-wrp .inner-wrp .each .each-wrp .post-detail .post-title h3 {
            font-size: 24px;
            color: #022760;
            font-weight: 400;
            margin-bottom: 10px; }
            .blog-section .blog-wrp .inner-wrp .each .each-wrp .post-detail .post-title h3 a {
              color: #022760; }
            @media (max-width: 768px) {
              .blog-section .blog-wrp .inner-wrp .each .each-wrp .post-detail .post-title h3 {
                font-size: 18px; } }
          .blog-section .blog-wrp .inner-wrp .each .each-wrp .post-detail .btn-wrp {
            position: absolute;
            width: 100%;
            padding: 0 30px;
            left: 0;
            bottom: 30px; }
            .blog-section .blog-wrp .inner-wrp .each .each-wrp .post-detail .btn-wrp a {
              font-size: 16px;
              font-weight: 500;
              color: #022760;
              text-transform: uppercase;
              padding-bottom: 3px;
              border-bottom: 2px solid #05295E; }
              .blog-section .blog-wrp .inner-wrp .each .each-wrp .post-detail .btn-wrp a:hover {
                color: #982B80;
                border-color: #982B80; }
    .blog-section .blog-wrp .load-more-btn {
      padding-top: 3rem;
      text-align: center; }
      .blog-section .blog-wrp .load-more-btn a {
        padding: 7px 30px;
        border: 1px solid #05295E;
        border-radius: 30px;
        font-size: 18px;
        color: #022760; }
        .blog-section .blog-wrp .load-more-btn a:hover {
          background-color: #2E82FC;
          border: 1px solid #2E82FC;
          color: #fff; }
        .blog-section .blog-wrp .load-more-btn a img {
          width: 18px;
          display: none;
          margin-left: 10px; }
          .blog-section .blog-wrp .load-more-btn a img.img-show {
            display: inline-block; }

.smooth-text-section .detail p {
  font-size: 40px;
  line-height: 120%;
  color: #fff; }
  .smooth-text-section .detail p.blue-text {
    color: #2E82FC; }
  @media (max-width: 576px) {
    .smooth-text-section .detail p {
      font-size: 24px; } }

.smooth-small-text-section .detail p {
  font-size: 28px;
  line-height: 120%;
  color: #fff; }
  @media (max-width: 768px) {
    .smooth-small-text-section .detail p {
      font-size: 22px; } }
  .smooth-small-text-section .detail p.blue-text {
    color: #2E82FC; }

.smooth-results-section {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #982b80; }
  @media (max-width: 576px) {
    .smooth-results-section {
      padding-top: 4rem;
      padding-bottom: 4rem; } }
  .smooth-results-section .title-part h2 {
    font-size: 48px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 15px; }
    @media (max-width: 576px) {
      .smooth-results-section .title-part h2 {
        font-size: 26px; } }
  .smooth-results-section .description {
    padding-bottom: 30px; }
    .smooth-results-section .description p {
      font-size: 28px;
      color: #fff; }
      @media (max-width: 576px) {
        .smooth-results-section .description p {
          font-size: 18px; } }
  .smooth-results-section .repeater-wrp {
    display: table;
    align-items: center; }
    .smooth-results-section .repeater-wrp .each {
      width: 20%;
      display: table-cell;
      background-color: #8E1D75;
      padding: 50px 30px;
      position: relative; }
      .smooth-results-section .repeater-wrp .each .each-wrp .sub-title h3 {
        font-size: 40px;
        color: #fff;
        margin-bottom: 10px; }
      .smooth-results-section .repeater-wrp .each .each-wrp .detail p {
        font-size: 22px;
        color: #fff;
        margin-bottom: 0; }
      .smooth-results-section .repeater-wrp .each:not(:first-child):before {
        content: "";
        background-image: url("../images/Smooth-Homepage-Stats-Shadow.png");
        background-repeat: no-repeat;
        background-position: top left;
        background-size: contain;
        position: absolute;
        height: 100%;
        width: 100%;
        left: 0;
        top: 0; }
  .smooth-results-section .repeater-slider {
    margin-left: -10px;
    margin-right: -10px;
    display: none; }
    @media (max-width: 768px) {
      .smooth-results-section .repeater-slider {
        margin-left: 0;
        margin-right: 0; } }
    .smooth-results-section .repeater-slider .slick-dots {
      left: 10px;
      bottom: -50px;
      width: unset; }
      .smooth-results-section .repeater-slider .slick-dots li button:before {
        font-size: 14px;
        color: #fff; }
      .smooth-results-section .repeater-slider .slick-dots li {
        margin: 7px; }
      @media (max-width: 768px) {
        .smooth-results-section .repeater-slider .slick-dots {
          left: 0; } }
    .smooth-results-section .repeater-slider .slick-list {
      padding: 0 25% 0 0; }
      .smooth-results-section .repeater-slider .slick-list .slick-track {
        display: grid;
        grid-auto-flow: column;
        align-items: center; }
        .smooth-results-section .repeater-slider .slick-list .slick-track .each {
          padding: 10px 20px;
          position: relative; }
          .smooth-results-section .repeater-slider .slick-list .slick-track .each .each-wrp {
            height: 100%;
            padding: 30px 30px;
            background-color: #8E1D75;
            opacity: 0.6; }
            .smooth-results-section .repeater-slider .slick-list .slick-track .each .each-wrp .sub-title h3 {
              font-size: 40px;
              color: #fff;
              margin-bottom: 10px; }
            .smooth-results-section .repeater-slider .slick-list .slick-track .each .each-wrp .detail p {
              font-size: 22px;
              color: #fff;
              margin-bottom: 0; }
          .smooth-results-section .repeater-slider .slick-list .slick-track .each.slick-active {
            transform: scale(1.2); }
            .smooth-results-section .repeater-slider .slick-list .slick-track .each.slick-active .each-wrp {
              opacity: 1; }
  @media (max-width: 768px) {
    .smooth-results-section .repeater-wrp {
      display: none; }
    .smooth-results-section .repeater-slider {
      display: block; } }

.smooth-solving-problems-section {
  padding-top: 6rem;
  padding-bottom: 8rem;
  background-color: #2E82FF; }
  @media (max-width: 768px) {
    .smooth-solving-problems-section {
      padding-top: 4rem;
      padding-bottom: 4rem; } }
  .smooth-solving-problems-section .title-part h2 {
    font-size: 45px;
    font-weight: 500;
    color: #fff; }
    @media (max-width: 576px) {
      .smooth-solving-problems-section .title-part h2 {
        font-size: 26px; } }
  .smooth-solving-problems-section .content-wrp .row {
    margin-left: 0;
    margin-right: 0; }
  .smooth-solving-problems-section .content-wrp .each {
    padding-left: 0;
    padding-right: 0;
    color: #fff; }
    .smooth-solving-problems-section .content-wrp .each .each-wrp {
      height: 100%;
      position: relative; }
      .smooth-solving-problems-section .content-wrp .each .each-wrp .img-wrp {
        display: block;
        width: 100%;
        height: 0;
        padding-bottom: 56.25%;
        position: relative; }
        .smooth-solving-problems-section .content-wrp .each .each-wrp .img-wrp img {
          position: absolute;
          width: 100%;
          height: 100%;
          top: 0;
          left: 0;
          object-fit: cover;
          object-position: center center; }
      .smooth-solving-problems-section .content-wrp .each .each-wrp .detail {
        padding: 20px; }
        .smooth-solving-problems-section .content-wrp .each .each-wrp .detail .sub-title h3 {
          font-size: 24px;
          color: #fff;
          line-height: 120%;
          font-weight: 500; }
        .smooth-solving-problems-section .content-wrp .each .each-wrp .detail .description p {
          font-size: 18px;
          line-height: 120%;
          font-weight: 300; }
    .smooth-solving-problems-section .content-wrp .each:not(:first-child) .each-wrp:before {
      content: "";
      background-image: url("../images/Smooth-Homepage-Paintpoints-Shadow.png");
      background-repeat: no-repeat;
      background-position: top left;
      background-size: contain;
      position: absolute;
      height: 100%;
      width: 100%;
      left: 0;
      top: 0; }
  .smooth-solving-problems-section .slider-wrp {
    margin-left: -10px;
    margin-right: -10px;
    display: none; }
    @media (max-width: 768px) {
      .smooth-solving-problems-section .slider-wrp {
        margin-left: 0;
        margin-right: 0; } }
    .smooth-solving-problems-section .slider-wrp .slick-dots {
      left: 10px;
      bottom: -50px;
      width: unset; }
      .smooth-solving-problems-section .slider-wrp .slick-dots li button:before {
        font-size: 14px;
        color: #fff; }
      .smooth-solving-problems-section .slider-wrp .slick-dots li {
        margin: 7px; }
      @media (max-width: 768px) {
        .smooth-solving-problems-section .slider-wrp .slick-dots {
          left: 0; } }
    .smooth-solving-problems-section .slider-wrp .slick-list {
      padding: 0 25% 0 0; }
      .smooth-solving-problems-section .slider-wrp .slick-list .slick-track {
        display: grid;
        grid-auto-flow: column;
        align-items: center; }
        .smooth-solving-problems-section .slider-wrp .slick-list .slick-track .each {
          padding: 10px 20px;
          color: #fff; }
          .smooth-solving-problems-section .slider-wrp .slick-list .slick-track .each .each-wrp {
            height: 100%;
            position: relative;
            opacity: 0.6;
            background-color: #1E69D5; }
            .smooth-solving-problems-section .slider-wrp .slick-list .slick-track .each .each-wrp .img-wrp {
              display: block;
              width: 100%;
              height: 0;
              padding-bottom: 56.25%;
              position: relative; }
              .smooth-solving-problems-section .slider-wrp .slick-list .slick-track .each .each-wrp .img-wrp img {
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
                object-fit: cover;
                object-position: center center; }
            .smooth-solving-problems-section .slider-wrp .slick-list .slick-track .each .each-wrp .detail {
              padding: 20px; }
              .smooth-solving-problems-section .slider-wrp .slick-list .slick-track .each .each-wrp .detail .sub-title h3 {
                font-size: 20px;
                color: #fff;
                line-height: 120%;
                font-weight: 500;
                color: #fff; }
              .smooth-solving-problems-section .slider-wrp .slick-list .slick-track .each .each-wrp .detail .description p {
                font-size: 18px;
                line-height: 120%;
                font-weight: 300;
                color: #fff; }
          .smooth-solving-problems-section .slider-wrp .slick-list .slick-track .each.slick-active {
            transform: scale(1.2); }
            .smooth-solving-problems-section .slider-wrp .slick-list .slick-track .each.slick-active .each-wrp {
              opacity: 1; }
  @media (max-width: 768px) {
    .smooth-solving-problems-section .content-wrp {
      display: none; }
    .smooth-solving-problems-section .slider-wrp {
      display: block; } }
  .smooth-solving-problems-section .btn-wrp {
    text-align: center;
    padding-top: 30px; }
    .smooth-solving-problems-section .btn-wrp a {
      padding: 8px 30px;
      font-size: 18px;
      color: #fff;
      border: 1px solid #fff;
      border-radius: 30px; }
      .smooth-solving-problems-section .btn-wrp a:hover {
        background-color: #fff;
        color: #2E82FF; }
    @media (max-width: 768px) {
      .smooth-solving-problems-section .btn-wrp {
        text-align: left;
        padding-top: 50px; } }

.smooth-customer-experience-banner {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  background-color: #01183E; }
  .smooth-customer-experience-banner .content-wrp {
    padding-top: 8rem;
    padding-bottom: 10rem;
    display: flex;
    position: relative;
    z-index: 1; }
    @media (max-width: 768px) {
      .smooth-customer-experience-banner .content-wrp {
        display: block;
        padding: 4rem 5%; } }
    .smooth-customer-experience-banner .content-wrp .left-content {
      width: 50%;
      padding-left: calc(50% - 575px); }
      @media (max-width: 1200px) {
        .smooth-customer-experience-banner .content-wrp .left-content {
          padding-left: calc(50% - 515px); } }
      @media (max-width: 768px) {
        .smooth-customer-experience-banner .content-wrp .left-content {
          width: 100%; } }
      .smooth-customer-experience-banner .content-wrp .left-content .title-part h2 {
        font-size: 75px;
        line-height: 80px;
        color: #fff;
        font-weight: 500;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }
        @media (max-width: 992px) {
          .smooth-customer-experience-banner .content-wrp .left-content .title-part h2 {
            font-size: 45px;
            line-height: 120%; } }
    .smooth-customer-experience-banner .content-wrp .right-content {
      width: 50%; }
      @media (max-width: 768px) {
        .smooth-customer-experience-banner .content-wrp .right-content {
          width: 100%; } }
      .smooth-customer-experience-banner .content-wrp .right-content .inner-wrp {
        background-color: rgba(0, 24, 62, 0.9);
        display: flex; }
        @media (max-width: 1200px) {
          .smooth-customer-experience-banner .content-wrp .right-content .inner-wrp {
            padding-left: calc(50% - 515px); } }
        @media (max-width: 768px) {
          .smooth-customer-experience-banner .content-wrp .right-content .inner-wrp {
            display: block;
            padding-right: 0; } }
        .smooth-customer-experience-banner .content-wrp .right-content .inner-wrp .each {
          padding: 30px;
          position: relative; }
          @media (max-width: 768px) {
            .smooth-customer-experience-banner .content-wrp .right-content .inner-wrp .each {
              width: 100%;
              padding-left: 0;
              padding-right: 0; } }
          .smooth-customer-experience-banner .content-wrp .right-content .inner-wrp .each .each-wrp {
            position: relative; }
            .smooth-customer-experience-banner .content-wrp .right-content .inner-wrp .each .each-wrp .sub-title h3 {
              font-size: 27px;
              font-weight: 500;
              color: #fff;
              line-height: 120%; }
            .smooth-customer-experience-banner .content-wrp .right-content .inner-wrp .each .each-wrp .description p {
              font-size: 18px;
              font-weight: 300;
              line-height: 120%;
              color: #fff; }
            .smooth-customer-experience-banner .content-wrp .right-content .inner-wrp .each .each-wrp .btn-wrp a {
              font-size: 20px;
              color: #fff; }
              @media (max-width: 768px) {
                .smooth-customer-experience-banner .content-wrp .right-content .inner-wrp .each .each-wrp .btn-wrp a {
                  position: relative;
                  padding-right: 30px; }
                  .smooth-customer-experience-banner .content-wrp .right-content .inner-wrp .each .each-wrp .btn-wrp a:after {
                    content: url("../images/circle-arrow.svg");
                    position: absolute;
                    width: 21px;
                    height: 21px;
                    top: 4px;
                    right: 0px; } }
          .smooth-customer-experience-banner .content-wrp .right-content .inner-wrp .each:not(:first-child):before {
            content: "";
            background-image: url("../images/Smooth-Homepage-CustomerPlatform-Shadow.png");
            background-repeat: no-repeat;
            background-position: top left;
            background-size: contain;
            position: absolute;
            height: 100%;
            width: 100%;
            left: 0;
            top: 0; }
            @media (max-width: 768px) {
              .smooth-customer-experience-banner .content-wrp .right-content .inner-wrp .each:not(:first-child):before {
                background-image: url("../images/smooth-customer-experience-banner.png");
                top: -25px; } }
          .smooth-customer-experience-banner .content-wrp .right-content .inner-wrp .each:not(:first-child) {
            width: unset;
            padding-right: calc(100% - 575px); }
          @media (min-width: 768px) {
            .smooth-customer-experience-banner .content-wrp .right-content .inner-wrp .each:hover {
              background-color: #fff; }
              .smooth-customer-experience-banner .content-wrp .right-content .inner-wrp .each:hover .each-wrp .sub-title h3 {
                color: #2E82FF; }
              .smooth-customer-experience-banner .content-wrp .right-content .inner-wrp .each:hover .each-wrp .description p {
                color: #022760; }
              .smooth-customer-experience-banner .content-wrp .right-content .inner-wrp .each:hover .each-wrp .btn-wrp a {
                color: #022760;
                position: relative;
                padding-right: 30px; }
                .smooth-customer-experience-banner .content-wrp .right-content .inner-wrp .each:hover .each-wrp .btn-wrp a:after {
                  content: url("../images/circle-arrow-orange.svg");
                  position: absolute;
                  width: 18px;
                  height: 18px;
                  top: 1px;
                  right: 0px; } }
  .smooth-customer-experience-banner .video-wrp {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    /*flex-direction: column;*/
    justify-content: center;
    align-items: center;
    overflow: hidden; }
    .smooth-customer-experience-banner .video-wrp video {
      width: unset;
      height: unset;
      outline: unset; }
      @media (max-width: 1200px) {
        .smooth-customer-experience-banner .video-wrp video {
          position: absolute;
          top: 0px;
          bottom: 0px;
          height: 100vh;
          width: calc(100vh * 16 / 9 + 60px); } }
    @media (max-width: 768px) {
      .smooth-customer-experience-banner .video-wrp {
        position: relative;
        width: 100%;
        height: auto; }
        .smooth-customer-experience-banner .video-wrp video {
          width: 100%;
          height: auto;
          position: relative; } }

.smooth-merchant-operation-section {
  position: relative;
  background-color: #01183E; }
  .smooth-merchant-operation-section .content-wrp {
    padding-top: 8rem;
    padding-bottom: 10rem;
    display: flex;
    position: relative; }
    @media (max-width: 768px) {
      .smooth-merchant-operation-section .content-wrp {
        padding-top: 4rem;
        padding-bottom: 4rem;
        display: block;
        padding: 4rem 5%; } }
    .smooth-merchant-operation-section .content-wrp .mobile-title {
      display: none; }
      .smooth-merchant-operation-section .content-wrp .mobile-title .title-part h2 {
        font-size: 45px;
        line-height: 120%;
        color: #fff;
        text-align: left;
        font-weight: 500;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }
    .smooth-merchant-operation-section .content-wrp .right-content {
      width: 50%;
      padding-right: calc(50% - 575px); }
      @media (max-width: 1200px) {
        .smooth-merchant-operation-section .content-wrp .right-content {
          padding-right: calc(50% - 515px); } }
      @media (max-width: 768px) {
        .smooth-merchant-operation-section .content-wrp .right-content {
          width: 100%; } }
      .smooth-merchant-operation-section .content-wrp .right-content .title-part {
        padding-left: 15%; }
        .smooth-merchant-operation-section .content-wrp .right-content .title-part h2 {
          font-size: 75px;
          line-height: 80px;
          color: #fff;
          font-weight: 500;
          text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }
          @media (max-width: 992px) {
            .smooth-merchant-operation-section .content-wrp .right-content .title-part h2 {
              font-size: 45px;
              line-height: 120%; } }
          @media (max-width: 768px) {
            .smooth-merchant-operation-section .content-wrp .right-content .title-part h2 {
              font-size: 45px;
              line-height: 120%; } }
    @media (max-width: 768px) {
      .smooth-merchant-operation-section .content-wrp .mobile-title {
        display: block; }
      .smooth-merchant-operation-section .content-wrp .right-content {
        display: none; } }
    .smooth-merchant-operation-section .content-wrp .left-content {
      width: 50%; }
      @media (max-width: 768px) {
        .smooth-merchant-operation-section .content-wrp .left-content {
          width: 100%; } }
      .smooth-merchant-operation-section .content-wrp .left-content .inner-wrp {
        background-color: rgba(0, 24, 62, 0.9);
        padding-left: calc(100% - 575px);
        display: flex; }
        @media (max-width: 1200px) {
          .smooth-merchant-operation-section .content-wrp .left-content .inner-wrp {
            padding-left: calc(100% - 515px); } }
        @media (max-width: 768px) {
          .smooth-merchant-operation-section .content-wrp .left-content .inner-wrp {
            display: block;
            padding-left: 0; } }
        .smooth-merchant-operation-section .content-wrp .left-content .inner-wrp .each {
          width: 50%;
          padding: 30px;
          position: relative; }
          @media (max-width: 768px) {
            .smooth-merchant-operation-section .content-wrp .left-content .inner-wrp .each {
              width: 100%;
              padding-left: 0;
              padding-right: 0; } }
          .smooth-merchant-operation-section .content-wrp .left-content .inner-wrp .each .each-wrp {
            position: relative; }
            .smooth-merchant-operation-section .content-wrp .left-content .inner-wrp .each .each-wrp .sub-title h3 {
              font-size: 27px;
              font-weight: 500;
              color: #fff;
              line-height: 120%; }
              @media (max-width: 768px) {
                .smooth-merchant-operation-section .content-wrp .left-content .inner-wrp .each .each-wrp .sub-title h3 {
                  font-size: 22px; } }
            .smooth-merchant-operation-section .content-wrp .left-content .inner-wrp .each .each-wrp .description p {
              font-size: 18px;
              font-weight: 300;
              line-height: 120%;
              color: #fff; }
            .smooth-merchant-operation-section .content-wrp .left-content .inner-wrp .each .each-wrp .btn-wrp a {
              font-size: 20px;
              color: #fff; }
              @media (max-width: 768px) {
                .smooth-merchant-operation-section .content-wrp .left-content .inner-wrp .each .each-wrp .btn-wrp a {
                  position: relative;
                  padding-right: 30px; }
                  .smooth-merchant-operation-section .content-wrp .left-content .inner-wrp .each .each-wrp .btn-wrp a:after {
                    content: url("../images/circle-arrow.svg");
                    position: absolute;
                    width: 21px;
                    height: 21px;
                    top: 4px;
                    right: 0px; } }
          .smooth-merchant-operation-section .content-wrp .left-content .inner-wrp .each:not(:first-child):before {
            content: "";
            background-image: url("../images/Smooth-Homepage-MerchantOperations-Shadow.png");
            background-repeat: no-repeat;
            background-position: top left;
            background-size: contain;
            position: absolute;
            height: 100%;
            width: 100%;
            left: 0;
            top: 0; }
            @media (max-width: 768px) {
              .smooth-merchant-operation-section .content-wrp .left-content .inner-wrp .each:not(:first-child):before {
                background-image: url("../images/smooth-customer-experience-banner.png");
                top: -25px; } }
          @media (min-width: 768px) {
            .smooth-merchant-operation-section .content-wrp .left-content .inner-wrp .each:hover {
              background-color: #fff; }
              .smooth-merchant-operation-section .content-wrp .left-content .inner-wrp .each:hover .each-wrp .sub-title h3 {
                color: #2E82FF; }
              .smooth-merchant-operation-section .content-wrp .left-content .inner-wrp .each:hover .each-wrp .description p {
                color: #022760; }
              .smooth-merchant-operation-section .content-wrp .left-content .inner-wrp .each:hover .each-wrp .btn-wrp a {
                color: #022760;
                position: relative;
                padding-right: 30px; }
                .smooth-merchant-operation-section .content-wrp .left-content .inner-wrp .each:hover .each-wrp .btn-wrp a:after {
                  content: url("../images/circle-arrow-orange.svg");
                  position: absolute;
                  width: 18px;
                  height: 18px;
                  top: 1px;
                  right: 0px; } }

.smooth-integrations-slider {
  padding-top: 8rem;
  padding-bottom: 10rem;
  padding-left: calc(50% - 575px);
  background-color: #2E82FF; }
  @media (max-width: 1200px) {
    .smooth-integrations-slider {
      padding-left: calc(50% - 515px); } }
  @media (max-width: 992px) {
    .smooth-integrations-slider {
      padding-left: 5%;
      padding-top: 4rem;
      padding-bottom: 4rem; } }
  .smooth-integrations-slider .content-wrp .title-part h2 {
    font-size: 65px;
    line-height: 70px;
    color: #fff;
    font-weight: 500; }
    @media (max-width: 992px) {
      .smooth-integrations-slider .content-wrp .title-part h2 {
        font-size: 45px;
        line-height: 120%; } }
    @media (max-width: 768px) {
      .smooth-integrations-slider .content-wrp .title-part h2 {
        font-size: 32px;
        line-height: 120%; } }
  .smooth-integrations-slider .content-wrp .slider-wrp .slick-prev {
    display: none; }
  .smooth-integrations-slider .content-wrp .slider-wrp .slick-prev::before {
    display: none; }
  .smooth-integrations-slider .content-wrp .slider-wrp .slick-next {
    right: 10%;
    background-image: url("../images/Smooth-ICON-Arrow-DarkBlue.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 45px;
    height: 45px;
    top: -75px; }
    @media (max-width: 992px) {
      .smooth-integrations-slider .content-wrp .slider-wrp .slick-next {
        width: 40px;
        height: 40px;
        top: -55px; } }
  .smooth-integrations-slider .content-wrp .slider-wrp .slick-next::before {
    display: none; }
  .smooth-integrations-slider .content-wrp .slider-wrp .slick-arrow {
    z-index: 1; }
  .smooth-integrations-slider .content-wrp .slider-wrp .slick-list {
    padding: 0 10% 0 0; }
    .smooth-integrations-slider .content-wrp .slider-wrp .slick-list .slick-track {
      display: flex; }
      .smooth-integrations-slider .content-wrp .slider-wrp .slick-list .slick-track .each .each-wrp {
        position: relative;
        padding: 0 5px; }
        .smooth-integrations-slider .content-wrp .slider-wrp .slick-list .slick-track .each .each-wrp .img-wrp {
          display: block;
          position: relative;
          width: 100%;
          height: 0;
          padding-bottom: 125%; }
          .smooth-integrations-slider .content-wrp .slider-wrp .slick-list .slick-track .each .each-wrp .img-wrp img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center; }
          .smooth-integrations-slider .content-wrp .slider-wrp .slick-list .slick-track .each .each-wrp .img-wrp:before {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: linear-gradient(180deg, transparent 30%, #00183e 100%);
            z-index: 1; }
        .smooth-integrations-slider .content-wrp .slider-wrp .slick-list .slick-track .each .each-wrp .sub-title {
          position: absolute;
          width: 100%;
          left: 0;
          bottom: 25px;
          text-align: center;
          z-index: 1;
          padding: 0 15px; }
          .smooth-integrations-slider .content-wrp .slider-wrp .slick-list .slick-track .each .each-wrp .sub-title h3 {
            font-size: 24px;
            font-weight: 500;
            color: #fff;
            line-height: 120%; }
  .smooth-integrations-slider .content-wrp .btn-wrp {
    padding-top: 4rem; }
    .smooth-integrations-slider .content-wrp .btn-wrp a {
      padding: 8px 30px;
      font-size: 18px;
      color: #fff;
      border: 1px solid #fff;
      border-radius: 30px; }
      .smooth-integrations-slider .content-wrp .btn-wrp a:hover {
        color: #2E82FF;
        background-color: #fff; }

.smooth-client-logo-section {
  background-color: #2E82FF; }
  .smooth-client-logo-section .inner-content {
    background-color: #fff;
    padding-top: 8rem;
    padding-bottom: 8rem;
    border-top-right-radius: 250px; }
    @media (max-width: 768px) {
      .smooth-client-logo-section .inner-content {
        padding-top: 4rem;
        padding-bottom: 4rem;
        border-top-right-radius: 125px; } }
    @media (max-width: 576px) {
      .smooth-client-logo-section .inner-content {
        border-top-right-radius: 80px; } }
    .smooth-client-logo-section .inner-content .title-part h2 {
      font-size: 65px;
      font-weight: 500;
      line-height: 70px;
      color: #022760; }
      @media (max-width: 992px) {
        .smooth-client-logo-section .inner-content .title-part h2 {
          font-size: 45px;
          line-height: 120%; } }
      @media (max-width: 768px) {
        .smooth-client-logo-section .inner-content .title-part h2 {
          font-size: 32px;
          line-height: 120%; } }
    .smooth-client-logo-section .inner-content .logo-slider {
      padding-left: calc(50% - 575px);
      padding-bottom: 4rem; }
      @media (max-width: 1200px) {
        .smooth-client-logo-section .inner-content .logo-slider {
          padding-left: calc(50% - 515px); } }
      @media (max-width: 992px) {
        .smooth-client-logo-section .inner-content .logo-slider {
          padding-left: 5%;
          padding-right: 5%; } }
      @media (max-width: 768px) {
        .smooth-client-logo-section .inner-content .logo-slider {
          padding-bottom: 30px; } }
      .smooth-client-logo-section .inner-content .logo-slider .slider-wrp .slick-next::before {
        display: none; }
      .smooth-client-logo-section .inner-content .logo-slider .slider-wrp .slick-arrow {
        z-index: 1;
        width: 45px;
        height: 45px; }
      .smooth-client-logo-section .inner-content .logo-slider .slider-wrp .slick-list {
        padding: 0 10% 0 0; }
        @media (max-width: 768px) {
          .smooth-client-logo-section .inner-content .logo-slider .slider-wrp .slick-list {
            padding: 0; } }
        .smooth-client-logo-section .inner-content .logo-slider .slider-wrp .slick-list .slick-track {
          display: flex;
          align-items: center; }
          .smooth-client-logo-section .inner-content .logo-slider .slider-wrp .slick-list .slick-track .each-logo .img-wrp {
            display: flex;
            align-items: center;
            justify-content: center; }
    .smooth-client-logo-section .inner-content .testimonial-slider .slider-wrp .slick-next::before {
      display: none; }
    .smooth-client-logo-section .inner-content .testimonial-slider .slider-wrp .slick-arrow {
      z-index: 1;
      width: 45px;
      height: 45px; }
    .smooth-client-logo-section .inner-content .testimonial-slider .slider-wrp .slick-dots li button:before {
      font-size: 16px; }
      @media (max-width: 768px) {
        .smooth-client-logo-section .inner-content .testimonial-slider .slider-wrp .slick-dots li button:before {
          font-size: 12px; } }
    .smooth-client-logo-section .inner-content .testimonial-slider .slider-wrp .slick-list .slick-track {
      display: flex;
      align-items: center; }
      .smooth-client-logo-section .inner-content .testimonial-slider .slider-wrp .slick-list .slick-track .each {
        padding-left: 100px;
        position: relative; }
        @media (max-width: 768px) {
          .smooth-client-logo-section .inner-content .testimonial-slider .slider-wrp .slick-list .slick-track .each {
            padding-left: 60px; } }
        .smooth-client-logo-section .inner-content .testimonial-slider .slider-wrp .slick-list .slick-track .each .inner-wrp .testimonial-detail p {
          font-size: 26px;
          color: #022760; }
          @media (max-width: 768px) {
            .smooth-client-logo-section .inner-content .testimonial-slider .slider-wrp .slick-list .slick-track .each .inner-wrp .testimonial-detail p {
              font-size: 18px; } }
        .smooth-client-logo-section .inner-content .testimonial-slider .slider-wrp .slick-list .slick-track .each .inner-wrp .author-info p {
          font-size: 18px;
          color: #2E82FF;
          font-weight: 500; }
          @media (max-width: 768px) {
            .smooth-client-logo-section .inner-content .testimonial-slider .slider-wrp .slick-list .slick-track .each .inner-wrp .author-info p {
              font-size: 15px; } }
        .smooth-client-logo-section .inner-content .testimonial-slider .slider-wrp .slick-list .slick-track .each:before {
          content: "";
          background-image: url("../images/Smooth-Homepage-Icon-Quote.png");
          width: 80px;
          height: 80px;
          background-size: contain;
          background-repeat: no-repeat;
          background-position: center;
          position: absolute;
          top: 0;
          left: 0; }
          @media (max-width: 768px) {
            .smooth-client-logo-section .inner-content .testimonial-slider .slider-wrp .slick-list .slick-track .each:before {
              width: 50px;
              height: 50px; } }
    .smooth-client-logo-section .inner-content .testimonial-part {
      padding-left: 100px;
      position: relative; }
      @media (max-width: 768px) {
        .smooth-client-logo-section .inner-content .testimonial-part {
          padding-left: 60px; } }
      .smooth-client-logo-section .inner-content .testimonial-part .inner-wrp .testimonial-detail p {
        font-size: 26px;
        color: #022760; }
        @media (max-width: 768px) {
          .smooth-client-logo-section .inner-content .testimonial-part .inner-wrp .testimonial-detail p {
            font-size: 18px; } }
      .smooth-client-logo-section .inner-content .testimonial-part .inner-wrp .author-info p {
        font-size: 18px;
        color: #2E82FF;
        font-weight: 500; }
        @media (max-width: 768px) {
          .smooth-client-logo-section .inner-content .testimonial-part .inner-wrp .author-info p {
            font-size: 15px; } }
      .smooth-client-logo-section .inner-content .testimonial-part:before {
        content: "";
        background-image: url("../images/Smooth-Homepage-Icon-Quote.png");
        width: 80px;
        height: 80px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        position: absolute;
        top: 0;
        left: 0; }
        @media (max-width: 768px) {
          .smooth-client-logo-section .inner-content .testimonial-part:before {
            width: 50px;
            height: 50px; } }
    .smooth-client-logo-section .inner-content .btn-wrp {
      padding-top: 4rem; }
      @media (max-width: 768px) {
        .smooth-client-logo-section .inner-content .btn-wrp {
          padding-top: 30px; } }
      .smooth-client-logo-section .inner-content .btn-wrp a {
        padding: 8px 30px;
        font-size: 18px;
        color: #022760;
        border: 1px solid #05295E;
        border-radius: 30px; }
        .smooth-client-logo-section .inner-content .btn-wrp a:hover {
          color: #fff;
          background-color: #2E82FF;
          border: 1px solid #2E82FF; }

.smooth-client-logo-section-type2 {
  background-color: #fff; }
  .smooth-client-logo-section-type2 .inner-content {
    background-color: #fff;
    padding-top: 4rem;
    padding-bottom: 4rem; }
    @media (max-width: 768px) {
      .smooth-client-logo-section-type2 .inner-content {
        padding-top: 4rem;
        padding-bottom: 4rem; } }
    .smooth-client-logo-section-type2 .inner-content .title-part h2 {
      font-size: 40px;
      font-weight: 500;
      line-height: 70px;
      color: #E67300; }
      @media (max-width: 992px) {
        .smooth-client-logo-section-type2 .inner-content .title-part h2 {
          font-size: 36px;
          line-height: 120%; } }
      @media (max-width: 768px) {
        .smooth-client-logo-section-type2 .inner-content .title-part h2 {
          font-size: 30px;
          line-height: 120%; } }
      @media (max-width: 576px) {
        .smooth-client-logo-section-type2 .inner-content .title-part h2 {
          font-size: 24px;
          line-height: 120%; } }
    .smooth-client-logo-section-type2 .inner-content .logo-slider .slider-wrp .slick-next::before {
      display: none; }
    .smooth-client-logo-section-type2 .inner-content .logo-slider .slider-wrp .slick-arrow {
      z-index: 1;
      width: 45px;
      height: 45px; }
    .smooth-client-logo-section-type2 .inner-content .logo-slider .slider-wrp .slick-list {
      padding: 0 10% 0 0; }
      @media (max-width: 768px) {
        .smooth-client-logo-section-type2 .inner-content .logo-slider .slider-wrp .slick-list {
          padding: 0; } }
      .smooth-client-logo-section-type2 .inner-content .logo-slider .slider-wrp .slick-list .slick-track {
        display: flex;
        align-items: center; }
        .smooth-client-logo-section-type2 .inner-content .logo-slider .slider-wrp .slick-list .slick-track .each-logo .img-wrp {
          display: flex;
          align-items: center;
          justify-content: center; }
    .smooth-client-logo-section-type2 .inner-content .testimonial-slider .slider-wrp .slick-next::before {
      display: none; }
    .smooth-client-logo-section-type2 .inner-content .testimonial-slider .slider-wrp .slick-arrow {
      z-index: 1;
      width: 45px;
      height: 45px; }
    .smooth-client-logo-section-type2 .inner-content .testimonial-slider .slider-wrp .slick-dots li button:before {
      font-size: 16px; }
      @media (max-width: 768px) {
        .smooth-client-logo-section-type2 .inner-content .testimonial-slider .slider-wrp .slick-dots li button:before {
          font-size: 12px; } }
    .smooth-client-logo-section-type2 .inner-content .testimonial-slider .slider-wrp .slick-list .slick-track {
      display: flex;
      align-items: center; }
      .smooth-client-logo-section-type2 .inner-content .testimonial-slider .slider-wrp .slick-list .slick-track .each {
        padding-left: 100px;
        position: relative; }
        @media (max-width: 768px) {
          .smooth-client-logo-section-type2 .inner-content .testimonial-slider .slider-wrp .slick-list .slick-track .each {
            padding-left: 60px; } }
        .smooth-client-logo-section-type2 .inner-content .testimonial-slider .slider-wrp .slick-list .slick-track .each .inner-wrp .testimonial-detail p {
          font-size: 26px;
          color: #022760; }
          @media (max-width: 768px) {
            .smooth-client-logo-section-type2 .inner-content .testimonial-slider .slider-wrp .slick-list .slick-track .each .inner-wrp .testimonial-detail p {
              font-size: 18px; } }
        .smooth-client-logo-section-type2 .inner-content .testimonial-slider .slider-wrp .slick-list .slick-track .each .inner-wrp .author-info p {
          font-size: 18px;
          color: #2E82FF;
          font-weight: 500; }
          @media (max-width: 768px) {
            .smooth-client-logo-section-type2 .inner-content .testimonial-slider .slider-wrp .slick-list .slick-track .each .inner-wrp .author-info p {
              font-size: 15px; } }
        .smooth-client-logo-section-type2 .inner-content .testimonial-slider .slider-wrp .slick-list .slick-track .each:before {
          content: "";
          background-image: url("../images/Smooth-Homepage-Icon-Quote.png");
          width: 80px;
          height: 80px;
          background-size: contain;
          background-repeat: no-repeat;
          background-position: center;
          position: absolute;
          top: 0;
          left: 0; }
          @media (max-width: 768px) {
            .smooth-client-logo-section-type2 .inner-content .testimonial-slider .slider-wrp .slick-list .slick-track .each:before {
              width: 50px;
              height: 50px; } }
    .smooth-client-logo-section-type2 .inner-content .testimonial-part {
      padding-left: 100px;
      position: relative; }
      @media (max-width: 768px) {
        .smooth-client-logo-section-type2 .inner-content .testimonial-part {
          padding-left: 60px; } }
      .smooth-client-logo-section-type2 .inner-content .testimonial-part .inner-wrp .testimonial-detail p {
        font-size: 26px;
        color: #022760; }
        @media (max-width: 768px) {
          .smooth-client-logo-section-type2 .inner-content .testimonial-part .inner-wrp .testimonial-detail p {
            font-size: 18px; } }
      .smooth-client-logo-section-type2 .inner-content .testimonial-part .inner-wrp .author-info p {
        font-size: 18px;
        color: #2E82FF;
        font-weight: 500; }
        @media (max-width: 768px) {
          .smooth-client-logo-section-type2 .inner-content .testimonial-part .inner-wrp .author-info p {
            font-size: 15px; } }
      .smooth-client-logo-section-type2 .inner-content .testimonial-part:before {
        content: "";
        background-image: url("../images/Smooth-Homepage-Icon-Quote.png");
        width: 80px;
        height: 80px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        position: absolute;
        top: 0;
        left: 0; }
        @media (max-width: 768px) {
          .smooth-client-logo-section-type2 .inner-content .testimonial-part:before {
            width: 50px;
            height: 50px; } }
    .smooth-client-logo-section-type2 .inner-content .btn-wrp {
      padding-top: 4rem; }
      @media (max-width: 768px) {
        .smooth-client-logo-section-type2 .inner-content .btn-wrp {
          padding-top: 30px; } }
      .smooth-client-logo-section-type2 .inner-content .btn-wrp a {
        padding: 8px 30px;
        font-size: 18px;
        color: #022760;
        border: 1px solid #05295E;
        border-radius: 30px; }
        .smooth-client-logo-section-type2 .inner-content .btn-wrp a:hover {
          color: #fff;
          background-color: #2E82FF;
          border: 1px solid #2E82FF; }

.smooth-testimonial-slider {
  background-color: #fff; }
  .smooth-testimonial-slider .inner-content {
    background-color: #fff;
    padding-top: 8rem;
    padding-bottom: 8rem;
    border-top-right-radius: 250px; }
    @media (max-width: 768px) {
      .smooth-testimonial-slider .inner-content {
        padding-top: 4rem;
        padding-bottom: 4rem;
        border-top-right-radius: 125px; } }
    @media (max-width: 576px) {
      .smooth-testimonial-slider .inner-content {
        border-top-right-radius: 80px; } }
    .smooth-testimonial-slider .inner-content .testimonial-slider .slider-wrp .slick-next::before {
      display: none; }
    .smooth-testimonial-slider .inner-content .testimonial-slider .slider-wrp .slick-arrow {
      z-index: 1;
      width: 45px;
      height: 45px; }
    .smooth-testimonial-slider .inner-content .testimonial-slider .slider-wrp .slick-dots li button:before {
      font-size: 16px; }
      @media (max-width: 768px) {
        .smooth-testimonial-slider .inner-content .testimonial-slider .slider-wrp .slick-dots li button:before {
          font-size: 12px; } }
    .smooth-testimonial-slider .inner-content .testimonial-slider .slider-wrp .slick-list .slick-track {
      display: flex;
      align-items: center; }
      .smooth-testimonial-slider .inner-content .testimonial-slider .slider-wrp .slick-list .slick-track .each {
        padding-left: 100px;
        position: relative; }
        @media (max-width: 768px) {
          .smooth-testimonial-slider .inner-content .testimonial-slider .slider-wrp .slick-list .slick-track .each {
            padding-left: 60px; } }
        .smooth-testimonial-slider .inner-content .testimonial-slider .slider-wrp .slick-list .slick-track .each .inner-wrp .testimonial-detail p {
          font-size: 26px;
          color: #022760; }
          @media (max-width: 768px) {
            .smooth-testimonial-slider .inner-content .testimonial-slider .slider-wrp .slick-list .slick-track .each .inner-wrp .testimonial-detail p {
              font-size: 18px; } }
        .smooth-testimonial-slider .inner-content .testimonial-slider .slider-wrp .slick-list .slick-track .each .inner-wrp .author-info p {
          font-size: 18px;
          color: #2E82FF;
          font-weight: 500; }
          @media (max-width: 768px) {
            .smooth-testimonial-slider .inner-content .testimonial-slider .slider-wrp .slick-list .slick-track .each .inner-wrp .author-info p {
              font-size: 15px; } }
        .smooth-testimonial-slider .inner-content .testimonial-slider .slider-wrp .slick-list .slick-track .each:before {
          content: "";
          background-image: url("../images/Smooth-Homepage-Icon-Quote.png");
          width: 80px;
          height: 80px;
          background-size: contain;
          background-repeat: no-repeat;
          background-position: center;
          position: absolute;
          top: 0;
          left: 0; }
          @media (max-width: 768px) {
            .smooth-testimonial-slider .inner-content .testimonial-slider .slider-wrp .slick-list .slick-track .each:before {
              width: 50px;
              height: 50px; } }

.smooth-latest-post-slider {
  padding-top: 8rem;
  padding-bottom: 10rem;
  padding-left: calc(50% - 575px);
  background-color: #C5DDFE; }
  @media (max-width: 1200px) {
    .smooth-latest-post-slider {
      padding-left: calc(50% - 515px); } }
  @media (max-width: 992px) {
    .smooth-latest-post-slider {
      padding-left: 5%;
      padding-top: 4rem;
      padding-bottom: 6rem; } }
  @media (max-width: 576px) {
    .smooth-latest-post-slider .content-wrp .title-part {
      padding-right: 65px; } }
  .smooth-latest-post-slider .content-wrp .title-part h2 {
    font-size: 65px;
    line-height: 70px;
    font-weight: 500;
    margin-bottom: 15px; }
    @media (max-width: 992px) {
      .smooth-latest-post-slider .content-wrp .title-part h2 {
        font-size: 45px;
        line-height: 120%; } }
    @media (max-width: 768px) {
      .smooth-latest-post-slider .content-wrp .title-part h2 {
        font-size: 32px;
        line-height: 120%; } }
  .smooth-latest-post-slider .content-wrp .description p {
    font-size: 26px; }
    @media (max-width: 768px) {
      .smooth-latest-post-slider .content-wrp .description p {
        font-size: 18px; } }
  .smooth-latest-post-slider .content-wrp .posts-wrp {
    padding-top: 30px; }
    .smooth-latest-post-slider .content-wrp .posts-wrp .slider-wrp .slick-prev {
      display: none; }
    .smooth-latest-post-slider .content-wrp .posts-wrp .slider-wrp .slick-prev::before {
      display: none; }
    .smooth-latest-post-slider .content-wrp .posts-wrp .slider-wrp .slick-next {
      right: 10%;
      background-repeat: no-repeat;
      background-position: center center;
      background-size: contain; }
      @media (max-width: 768px) {
        .smooth-latest-post-slider .content-wrp .posts-wrp .slider-wrp .slick-next {
          right: 5%; } }
    .smooth-latest-post-slider .content-wrp .posts-wrp .slider-wrp .slick-next::before {
      display: none; }
    .smooth-latest-post-slider .content-wrp .posts-wrp .slider-wrp .slick-arrow {
      z-index: 1; }
    .smooth-latest-post-slider .content-wrp .posts-wrp .slider-wrp .slick-list {
      padding: 0 10% 0 0; }
      .smooth-latest-post-slider .content-wrp .posts-wrp .slider-wrp .slick-list .slick-track {
        display: grid;
        grid-auto-flow: column; }
        .smooth-latest-post-slider .content-wrp .posts-wrp .slider-wrp .slick-list .slick-track .each {
          height: 100%;
          padding: 0 5px; }
          .smooth-latest-post-slider .content-wrp .posts-wrp .slider-wrp .slick-list .slick-track .each .each-wrp {
            height: 100%;
            background-color: #fff;
            position: relative; }
            .smooth-latest-post-slider .content-wrp .posts-wrp .slider-wrp .slick-list .slick-track .each .each-wrp .img-wrp {
              display: block;
              width: 100%;
              height: 0;
              padding-bottom: 56.25%;
              position: relative; }
              .smooth-latest-post-slider .content-wrp .posts-wrp .slider-wrp .slick-list .slick-track .each .each-wrp .img-wrp img {
                position: absolute;
                width: 100%;
                height: 100%;
                top: 0;
                left: 0;
                object-fit: cover;
                object-position: center center; }
            .smooth-latest-post-slider .content-wrp .posts-wrp .slider-wrp .slick-list .slick-track .each .each-wrp .post-detail {
              background-color: #fff;
              padding: 30px;
              padding-bottom: 60px; }
              .smooth-latest-post-slider .content-wrp .posts-wrp .slider-wrp .slick-list .slick-track .each .each-wrp .post-detail .post-date p {
                font-size: 16px;
                font-weight: 600;
                color: #2E82FF;
                text-transform: uppercase;
                margin-bottom: 10px; }
                @media (max-width: 576px) {
                  .smooth-latest-post-slider .content-wrp .posts-wrp .slider-wrp .slick-list .slick-track .each .each-wrp .post-detail .post-date p {
                    font-size: 12px; } }
              .smooth-latest-post-slider .content-wrp .posts-wrp .slider-wrp .slick-list .slick-track .each .each-wrp .post-detail .post-title h3 {
                font-size: 24px;
                color: #022760;
                font-weight: 400;
                margin-bottom: 10px; }
                .smooth-latest-post-slider .content-wrp .posts-wrp .slider-wrp .slick-list .slick-track .each .each-wrp .post-detail .post-title h3 a {
                  color: #022760; }
                @media (max-width: 576px) {
                  .smooth-latest-post-slider .content-wrp .posts-wrp .slider-wrp .slick-list .slick-track .each .each-wrp .post-detail .post-title h3 {
                    font-size: 20px; } }
              .smooth-latest-post-slider .content-wrp .posts-wrp .slider-wrp .slick-list .slick-track .each .each-wrp .post-detail .read-more {
                position: absolute;
                width: 100%;
                padding: 0 30px;
                left: 0;
                bottom: 30px; }
                .smooth-latest-post-slider .content-wrp .posts-wrp .slider-wrp .slick-list .slick-track .each .each-wrp .post-detail .read-more a {
                  font-size: 16px;
                  font-weight: 500;
                  color: #022760;
                  text-transform: uppercase;
                  padding-bottom: 3px;
                  border-bottom: 2px solid #05295E; }
                  .smooth-latest-post-slider .content-wrp .posts-wrp .slider-wrp .slick-list .slick-track .each .each-wrp .post-detail .read-more a:hover {
                    color: #982B80;
                    border-color: #982B80; }
                  @media (max-width: 576px) {
                    .smooth-latest-post-slider .content-wrp .posts-wrp .slider-wrp .slick-list .slick-track .each .each-wrp .post-detail .read-more a {
                      font-size: 12px; } }
  .smooth-latest-post-slider .content-wrp .btn-wrp {
    padding-top: 4rem; }
    .smooth-latest-post-slider .content-wrp .btn-wrp a {
      padding: 8px 30px;
      font-size: 18px;
      color: #2E82FF;
      border: 1px solid #2E82FF;
      border-radius: 30px; }
      .smooth-latest-post-slider .content-wrp .btn-wrp a:hover {
        color: #fff;
        background-color: #2E82FF; }
  .smooth-latest-post-slider.slider-type-2 {
    padding-top: 2rem; }
    .smooth-latest-post-slider.slider-type-2 .posts-wrp .slider-wrp .slick-list .slick-track .each .each-wrp {
      background-color: #00183E; }
      .smooth-latest-post-slider.slider-type-2 .posts-wrp .slider-wrp .slick-list .slick-track .each .each-wrp .post-detail {
        background-color: #00183E;
        padding: 30px;
        padding-bottom: 60px; }
        .smooth-latest-post-slider.slider-type-2 .posts-wrp .slider-wrp .slick-list .slick-track .each .each-wrp .post-detail .post-date p {
          color: #9FC6FF; }
        .smooth-latest-post-slider.slider-type-2 .posts-wrp .slider-wrp .slick-list .slick-track .each .each-wrp .post-detail .post-title h3 {
          color: #fff; }
          .smooth-latest-post-slider.slider-type-2 .posts-wrp .slider-wrp .slick-list .slick-track .each .each-wrp .post-detail .post-title h3 a {
            color: #fff; }
        .smooth-latest-post-slider.slider-type-2 .posts-wrp .slider-wrp .slick-list .slick-track .each .each-wrp .post-detail .read-more a {
          color: #fff;
          border-bottom: 2px solid #fff; }
          .smooth-latest-post-slider.slider-type-2 .posts-wrp .slider-wrp .slick-list .slick-track .each .each-wrp .post-detail .read-more a:hover {
            color: #982B80;
            border-color: #982B80; }

.smooth-video-cta-banner {
  position: relative;
  min-height: 30vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #00183E; }
  .smooth-video-cta-banner .container {
    position: relative; }
  .smooth-video-cta-banner .title-part h2 {
    font-size: 65px;
    font-weight: 500;
    line-height: 70px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }
    @media (max-width: 992px) {
      .smooth-video-cta-banner .title-part h2 {
        font-size: 45px;
        line-height: 120%; } }
    @media (max-width: 768px) {
      .smooth-video-cta-banner .title-part h2 {
        font-size: 32px;
        line-height: 120%; } }
  .smooth-video-cta-banner .btn-wrp a {
    padding: 8px 30px;
    font-size: 18px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 30px; }
    .smooth-video-cta-banner .btn-wrp a:hover {
      color: #2E82FF;
      background-color: #fff; }
  .smooth-video-cta-banner .video-wrp {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    /*flex-direction: column;*/
    justify-content: center;
    align-items: center;
    overflow: hidden; }
    .smooth-video-cta-banner .video-wrp video {
      width: unset;
      height: unset;
      outline: unset; }
      @media (max-width: 1200px) {
        .smooth-video-cta-banner .video-wrp video {
          position: absolute;
          top: 0px;
          bottom: 0px;
          height: 100vh;
          width: calc(100vh * 16 / 9 + 60px); } }
      @media (max-width: 576px) {
        .smooth-video-cta-banner .video-wrp video {
          height: 100%; } }

.smooth-cta-banner {
  position: relative;
  min-height: 30vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #00183E; }
  .smooth-cta-banner .container {
    position: relative; }
  .smooth-cta-banner .title-part h2 {
    font-size: 45px;
    font-weight: 500;
    line-height: 55px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }
    @media (max-width: 768px) {
      .smooth-cta-banner .title-part h2 {
        font-size: 32px;
        line-height: 120%; } }
  .smooth-cta-banner .btn-wrp a {
    padding: 8px 30px;
    font-size: 18px;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 30px; }
    .smooth-cta-banner .btn-wrp a:hover {
      color: #2E82FF;
      background-color: #fff; }

.smooth-faqs-section.faq-type-1 {
  background-color: #00183E;
  padding-top: 8rem;
  padding-bottom: 8rem; }
  @media (max-width: 768px) {
    .smooth-faqs-section.faq-type-1 {
      padding-top: 4rem;
      padding-bottom: 4rem; } }
  .smooth-faqs-section.faq-type-1 .title-part {
    text-align: center; }
    .smooth-faqs-section.faq-type-1 .title-part h2 {
      font-size: 65px;
      font-weight: 500;
      line-height: 70px;
      color: #fff; }
      @media (max-width: 992px) {
        .smooth-faqs-section.faq-type-1 .title-part h2 {
          font-size: 45px;
          line-height: 120%; } }
      @media (max-width: 768px) {
        .smooth-faqs-section.faq-type-1 .title-part h2 {
          font-size: 32px;
          line-height: 120%; } }
  .smooth-faqs-section.faq-type-1 .faqs-wrp .accordion .accordion-item {
    background-color: transparent;
    border-bottom: 1px solid #3485FB; }
    .smooth-faqs-section.faq-type-1 .faqs-wrp .accordion .accordion-item .accordion-header button {
      background-color: transparent;
      box-shadow: none;
      padding: 15px 0;
      color: #fff;
      font-size: 26px;
      padding-right: 30px; }
      .smooth-faqs-section.faq-type-1 .faqs-wrp .accordion .accordion-item .accordion-header button:after {
        background-image: url("../images/minus-icon.svg");
        position: absolute;
        right: 0; }
      .smooth-faqs-section.faq-type-1 .faqs-wrp .accordion .accordion-item .accordion-header button.collapsed:after {
        background-image: url("../images/plus-icon.svg"); }
      .smooth-faqs-section.faq-type-1 .faqs-wrp .accordion .accordion-item .accordion-header button:not(.collapsed):after {
        height: 10px; }
      @media (max-width: 768px) {
        .smooth-faqs-section.faq-type-1 .faqs-wrp .accordion .accordion-item .accordion-header button {
          font-size: 18px; } }
    .smooth-faqs-section.faq-type-1 .faqs-wrp .accordion .accordion-item .accordion-body {
      padding: 15px 0; }
      .smooth-faqs-section.faq-type-1 .faqs-wrp .accordion .accordion-item .accordion-body p {
        font-size: 18px;
        color: #fff;
        font-weight: 300; }
        @media (max-width: 768px) {
          .smooth-faqs-section.faq-type-1 .faqs-wrp .accordion .accordion-item .accordion-body p {
            font-size: 16px; } }

.smooth-faqs-section.faq-type-2 {
  background-color: #fff;
  padding-top: 8rem;
  padding-bottom: 8rem;
  position: relative; }
  @media (max-width: 768px) {
    .smooth-faqs-section.faq-type-2 {
      padding-top: 4rem;
      padding-bottom: 4rem; } }
  .smooth-faqs-section.faq-type-2 .container {
    position: relative;
    z-index: 1; }
  .smooth-faqs-section.faq-type-2 .title-part h2 {
    font-size: 45px;
    font-weight: 500;
    line-height: 55px;
    color: #022760; }
    @media (max-width: 576px) {
      .smooth-faqs-section.faq-type-2 .title-part h2 {
        font-size: 32px;
        text-align: center;
        line-height: 120%; } }
  .smooth-faqs-section.faq-type-2 .faqs-wrp .accordion .accordion-item {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #3485FB; }
    .smooth-faqs-section.faq-type-2 .faqs-wrp .accordion .accordion-item .accordion-header button {
      background-color: transparent;
      box-shadow: none;
      padding: 15px 0;
      color: #022760;
      font-size: 24px;
      padding-right: 40px; }
      .smooth-faqs-section.faq-type-2 .faqs-wrp .accordion .accordion-item .accordion-header button:after {
        background-image: url("../images/minus-icon.svg");
        position: absolute;
        right: 0; }
      .smooth-faqs-section.faq-type-2 .faqs-wrp .accordion .accordion-item .accordion-header button.collapsed:after {
        background-image: url("../images/plus-icon.svg"); }
      .smooth-faqs-section.faq-type-2 .faqs-wrp .accordion .accordion-item .accordion-header button:not(.collapsed):after {
        height: 10px; }
      @media (max-width: 576px) {
        .smooth-faqs-section.faq-type-2 .faqs-wrp .accordion .accordion-item .accordion-header button {
          font-size: 18px; } }
    .smooth-faqs-section.faq-type-2 .faqs-wrp .accordion .accordion-item .accordion-body {
      padding: 15px 0; }
      .smooth-faqs-section.faq-type-2 .faqs-wrp .accordion .accordion-item .accordion-body p {
        font-size: 18px;
        color: #022760;
        font-weight: 300; }
        @media (max-width: 576px) {
          .smooth-faqs-section.faq-type-2 .faqs-wrp .accordion .accordion-item .accordion-body p {
            font-size: 16px; } }
  .smooth-faqs-section.faq-type-2 .corner-image {
    position: absolute;
    width: 25%;
    right: 0;
    bottom: 0; }
    .smooth-faqs-section.faq-type-2 .corner-image img {
      width: 100%; }
    @media (max-width: 576px) {
      .smooth-faqs-section.faq-type-2 .corner-image {
        width: 40%; } }

.smooth-grid-section {
  background-color: #2E82FC; }
  .smooth-grid-section .content-wrp {
    background-color: #01183E;
    padding-top: 10rem;
    padding-bottom: 8rem;
    border-top-right-radius: 250px;
    position: relative; }
    @media (max-width: 768px) {
      .smooth-grid-section .content-wrp {
        padding-top: 6rem;
        padding-bottom: 2rem;
        border-top-right-radius: 125px; } }
    @media (max-width: 576px) {
      .smooth-grid-section .content-wrp {
        border-top-right-radius: 80px; } }
    .smooth-grid-section .content-wrp .each {
      margin-bottom: 6rem;
      z-index: 1;
      position: relative; }
      .smooth-grid-section .content-wrp .each .row {
        align-items: center; }
      .smooth-grid-section .content-wrp .each .img-wrp {
        display: block;
        width: 100%;
        height: 0;
        padding-bottom: 110%;
        position: relative; }
        .smooth-grid-section .content-wrp .each .img-wrp img {
          width: 100%;
          height: 100%;
          position: absolute;
          top: 0;
          left: 0;
          object-fit: cover;
          object-position: center; }
        @media (max-width: 768px) {
          .smooth-grid-section .content-wrp .each .img-wrp {
            margin-bottom: 30px; } }
      .smooth-grid-section .content-wrp .each .detail .sub-title h3 {
        font-size: 45px;
        font-weight: 500;
        color: #fff;
        margin-bottom: 30px; }
        @media (max-width: 768px) {
          .smooth-grid-section .content-wrp .each .detail .sub-title h3 {
            font-size: 26px; } }
      .smooth-grid-section .content-wrp .each .detail hr {
        width: 60px;
        border-top: 2px solid #3485FB;
        opacity: 1;
        margin-bottom: 30px; }
      .smooth-grid-section .content-wrp .each .detail .description p {
        font-size: 26px;
        color: #fff; }
        @media (max-width: 768px) {
          .smooth-grid-section .content-wrp .each .detail .description p {
            font-size: 18px; } }
      .smooth-grid-section .content-wrp .each .detail .btn-wrp {
        padding-top: 15px; }
        .smooth-grid-section .content-wrp .each .detail .btn-wrp a {
          padding: 8px 30px;
          font-size: 18px;
          color: #fff;
          border: 1px solid #fff;
          border-radius: 30px;
          position: relative; }
          .smooth-grid-section .content-wrp .each .detail .btn-wrp a:hover {
            color: #fff;
            background-color: #2E82FF;
            padding-right: 50px;
            border: 1px solid #2E82FF; }
            .smooth-grid-section .content-wrp .each .detail .btn-wrp a:hover:after {
              content: url("../images/long-arrow.svg");
              width: 27px;
              height: 15px;
              position: absolute;
              top: 8px;
              right: 15px; }
      .smooth-grid-section .content-wrp .each.left-image .detail {
        padding-left: 10%; }
        @media (max-width: 768px) {
          .smooth-grid-section .content-wrp .each.left-image .detail {
            padding-left: 0; } }
      .smooth-grid-section .content-wrp .each.right-image .detail {
        padding-right: 10%; }
        @media (max-width: 768px) {
          .smooth-grid-section .content-wrp .each.right-image .detail {
            padding-right: 0; } }
      .smooth-grid-section .content-wrp .each.right-image .mobile-view {
        display: none; }
      @media (max-width: 768px) {
        .smooth-grid-section .content-wrp .each.right-image .desktop-view {
          display: none; }
        .smooth-grid-section .content-wrp .each.right-image .mobile-view {
          display: block; } }
    .smooth-grid-section .content-wrp .bottom-image {
      position: absolute;
      width: 22%;
      bottom: 0;
      right: 0; }
      @media (max-width: 576px) {
        .smooth-grid-section .content-wrp .bottom-image {
          width: 40%; } }

.smooth-grid-section-type2 {
  background-color: #fff; }
  .smooth-grid-section-type2 .title-part h2 {
    font-size: 40px;
    font-weight: 500;
    line-height: 70px;
    color: #E67300; }
    @media (max-width: 992px) {
      .smooth-grid-section-type2 .title-part h2 {
        font-size: 36px;
        line-height: 120%; } }
    @media (max-width: 768px) {
      .smooth-grid-section-type2 .title-part h2 {
        font-size: 30px;
        line-height: 120%; } }
  .smooth-grid-section-type2 .content-wrp {
    background-color: #fff;
    padding-top: 4rem;
    padding-bottom: 2rem;
    position: relative; }
    @media (max-width: 768px) {
      .smooth-grid-section-type2 .content-wrp {
        padding-top: 4rem;
        padding-bottom: 2rem; } }
    .smooth-grid-section-type2 .content-wrp .each {
      margin-bottom: 4rem;
      z-index: 1;
      position: relative; }
      @media (max-width: 768px) {
        .smooth-grid-section-type2 .content-wrp .each {
          margin-bottom: 2rem; } }
      @media (max-width: 768px) {
        .smooth-grid-section-type2 .content-wrp .each .img-wrp {
          margin-bottom: 30px; } }
      .smooth-grid-section-type2 .content-wrp .each .detail .sub-title h3 {
        font-size: 30px;
        font-weight: 500;
        color: #2E82FF;
        margin-bottom: 30px; }
        @media (max-width: 768px) {
          .smooth-grid-section-type2 .content-wrp .each .detail .sub-title h3 {
            font-size: 24px; } }
      .smooth-grid-section-type2 .content-wrp .each .detail hr {
        width: 60px;
        border-top: 2px solid #3485FB;
        opacity: 1;
        margin-bottom: 30px; }
      .smooth-grid-section-type2 .content-wrp .each .detail .description p {
        font-size: 18px;
        color: #022760; }
        @media (max-width: 768px) {
          .smooth-grid-section-type2 .content-wrp .each .detail .description p {
            font-size: 16px; } }
      .smooth-grid-section-type2 .content-wrp .each .detail .description h4 {
        font-size: 24px;
        font-weight: 500;
        color: #2E82FF;
        margin-bottom: 10px; }
        @media (max-width: 768px) {
          .smooth-grid-section-type2 .content-wrp .each .detail .description h4 {
            font-size: 20px; } }
      .smooth-grid-section-type2 .content-wrp .each .detail .btn-wrp {
        padding-top: 15px; }
        .smooth-grid-section-type2 .content-wrp .each .detail .btn-wrp a {
          padding: 8px 30px;
          font-size: 18px;
          border: 1px solid #2E82FF;
          border-radius: 30px;
          position: relative;
          color: #fff; }
          .smooth-grid-section-type2 .content-wrp .each .detail .btn-wrp a:hover {
            color: #fff;
            background-color: #2E82FF;
            padding-right: 50px;
            border: 1px solid #2E82FF; }
            .smooth-grid-section-type2 .content-wrp .each .detail .btn-wrp a:hover:after {
              content: url("../images/long-arrow.svg");
              width: 27px;
              height: 15px;
              position: absolute;
              top: 8px;
              right: 15px; }
      .smooth-grid-section-type2 .content-wrp .each.left-image .detail {
        padding-left: 10%; }
        @media (max-width: 768px) {
          .smooth-grid-section-type2 .content-wrp .each.left-image .detail {
            padding-left: 0; } }
      .smooth-grid-section-type2 .content-wrp .each.right-image .detail {
        padding-right: 10%; }
        @media (max-width: 768px) {
          .smooth-grid-section-type2 .content-wrp .each.right-image .detail {
            padding-right: 0; } }
      .smooth-grid-section-type2 .content-wrp .each.right-image .mobile-view {
        display: none; }
      @media (max-width: 768px) {
        .smooth-grid-section-type2 .content-wrp .each.right-image .desktop-view {
          display: none; }
        .smooth-grid-section-type2 .content-wrp .each.right-image .mobile-view {
          display: block; } }

.smooth-grid-banner {
  display: flex; }
  @media (max-width: 768px) {
    .smooth-grid-banner {
      display: block; } }
  .smooth-grid-banner .img-wrp {
    width: 35%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    flex-shrink: 0; }
    @media (max-width: 768px) {
      .smooth-grid-banner .img-wrp {
        min-height: 400px;
        width: 100%; } }
    @media (max-width: 576px) {
      .smooth-grid-banner .img-wrp {
        background-position: top center; } }
    .smooth-grid-banner .img-wrp img {
      width: 100%; }
  .smooth-grid-banner .content-wrp {
    padding: 6rem 5%; }
    @media (max-width: 768px) {
      .smooth-grid-banner .content-wrp {
        padding: 2rem 5%; } }
    .smooth-grid-banner .content-wrp .inner-wrp {
      display: flex; }
      @media (max-width: 768px) {
        .smooth-grid-banner .content-wrp .inner-wrp {
          display: block; } }
      .smooth-grid-banner .content-wrp .inner-wrp .each {
        width: 50%;
        padding: 30px 5%;
        color: #fff;
        position: relative; }
        @media (max-width: 768px) {
          .smooth-grid-banner .content-wrp .inner-wrp .each {
            width: 100%;
            padding: 30px 0;
            padding-top: 0;
            padding-bottom: 50px; } }
        .smooth-grid-banner .content-wrp .inner-wrp .each .each-wrp .detail p {
          font-size: 18px;
          font-weight: 300;
          color: #fff;
          margin-bottom: 15px; }
          .smooth-grid-banner .content-wrp .inner-wrp .each .each-wrp .detail p.sub-title {
            font-size: 25px;
            font-weight: 500;
            line-height: 120%;
            margin-bottom: 10px;
            padding-top: 15px; }
            @media (max-width: 768px) {
              .smooth-grid-banner .content-wrp .inner-wrp .each .each-wrp .detail p.sub-title {
                font-size: 22px;
                line-height: 120%; } }
        .smooth-grid-banner .content-wrp .inner-wrp .each:not(:first-child):before {
          content: "";
          background-image: url("../images/Smooth-CustomerPlatform-PurpleSection-Shadow.png");
          background-repeat: no-repeat;
          background-position: top left;
          background-size: contain;
          position: absolute;
          height: 100%;
          width: 100%;
          left: 0;
          top: 0; }
          @media (max-width: 768px) {
            .smooth-grid-banner .content-wrp .inner-wrp .each:not(:first-child):before {
              background-image: url("../images/smooth-customer-experience-banner.png");
              top: -50px; } }

.smooth-grow-sales-section {
  padding-top: 8rem;
  padding-bottom: 6rem;
  position: relative; }
  @media (max-width: 768px) {
    .smooth-grow-sales-section {
      padding-top: 4rem;
      padding-bottom: 4rem; } }
  .smooth-grow-sales-section .container {
    position: relative;
    z-index: 1; }
  .smooth-grow-sales-section .row {
    align-items: center; }
  .smooth-grow-sales-section .title-part h2 {
    font-size: 45px;
    line-height: 55px;
    color: #2E82FF;
    font-weight: 500;
    margin-bottom: 30px; }
    @media (max-width: 768px) {
      .smooth-grow-sales-section .title-part h2 {
        font-size: 26px; } }
  .smooth-grow-sales-section hr {
    width: 60px;
    border-top: 2px solid #3485FB;
    opacity: 1;
    margin-bottom: 30px; }
  .smooth-grow-sales-section .detail {
    padding-right: 64px; }
    @media (max-width: 768px) {
      .smooth-grow-sales-section .detail {
        padding-right: 0; } }
    .smooth-grow-sales-section .detail p {
      font-size: 18px;
      font-weight: 300;
      color: #022760; }
  .smooth-grow-sales-section .video-wrp {
    display: block;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 120%;
    background-color: #fff;
    margin-top: 5rem; }
    @media (max-width: 768px) {
      .smooth-grow-sales-section .video-wrp {
        margin-top: 2rem; } }
    .smooth-grow-sales-section .video-wrp video {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      object-fit: cover;
      object-position: center; }
  .smooth-grow-sales-section .mobile-view {
    display: none; }
  @media (max-width: 768px) {
    .smooth-grow-sales-section .mobile-view {
      display: block; }
    .smooth-grow-sales-section .desktop-view {
      display: none; } }
  .smooth-grow-sales-section .corner-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20%; }
    @media (max-width: 768px) {
      .smooth-grow-sales-section .corner-image {
        width: 50%; } }
    .smooth-grow-sales-section .corner-image img {
      width: 100%; }

.smooth-merchant-portal-section .content-wrp {
  padding-top: 8rem;
  padding-bottom: 6rem;
  position: relative; }
  @media (max-width: 768px) {
    .smooth-merchant-portal-section .content-wrp {
      padding-top: 6rem;
      padding-bottom: 6rem; } }
  .smooth-merchant-portal-section .content-wrp .container {
    position: relative;
    z-index: 1; }
  .smooth-merchant-portal-section .content-wrp .detail .title-part h2 {
    font-size: 45px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 30px; }
    @media (max-width: 768px) {
      .smooth-merchant-portal-section .content-wrp .detail .title-part h2 {
        font-size: 32px; } }
  .smooth-merchant-portal-section .content-wrp .detail hr {
    width: 60px;
    border-top: 2px solid #fff;
    opacity: 1;
    margin-bottom: 30px; }
  .smooth-merchant-portal-section .content-wrp .detail .description p {
    font-size: 26px;
    color: #fff; }
    @media (max-width: 768px) {
      .smooth-merchant-portal-section .content-wrp .detail .description p {
        font-size: 18px; } }
  .smooth-merchant-portal-section .content-wrp .detail .btn-wrp {
    padding-top: 15px;
    padding-bottom: 50px; }
    .smooth-merchant-portal-section .content-wrp .detail .btn-wrp a {
      padding: 8px 30px;
      font-size: 18px;
      color: #fff;
      border: 1px solid #fff;
      border-radius: 30px;
      position: relative; }
      .smooth-merchant-portal-section .content-wrp .detail .btn-wrp a:hover {
        color: #2E82FF;
        background-color: #fff;
        padding-right: 50px;
        border: 1px solid #fff; }
        .smooth-merchant-portal-section .content-wrp .detail .btn-wrp a:hover:after {
          content: url("../images/long-arrow-blue.svg");
          width: 27px;
          height: 15px;
          position: absolute;
          top: 8px;
          right: 15px; }
          @media (max-width: 768px) {
            .smooth-merchant-portal-section .content-wrp .detail .btn-wrp a:hover:after {
              display: none; } }
  .smooth-merchant-portal-section .content-wrp .detail .detail-wrp {
    display: flex; }
    @media (max-width: 768px) {
      .smooth-merchant-portal-section .content-wrp .detail .detail-wrp {
        display: block; } }
    .smooth-merchant-portal-section .content-wrp .detail .detail-wrp .each {
      width: 50%;
      position: relative; }
      @media (max-width: 768px) {
        .smooth-merchant-portal-section .content-wrp .detail .detail-wrp .each {
          width: 100%; } }
      .smooth-merchant-portal-section .content-wrp .detail .detail-wrp .each p {
        font-size: 18px;
        font-weight: 300;
        color: #fff;
        margin-bottom: 10px; }
        .smooth-merchant-portal-section .content-wrp .detail .detail-wrp .each p.sub-title {
          font-size: 27px;
          font-weight: 500;
          line-height: 120%;
          padding-top: 15px; }
          @media (max-width: 768px) {
            .smooth-merchant-portal-section .content-wrp .detail .detail-wrp .each p.sub-title {
              font-size: 22px; } }
      .smooth-merchant-portal-section .content-wrp .detail .detail-wrp .each.left-content {
        padding-right: 50px; }
        @media (max-width: 768px) {
          .smooth-merchant-portal-section .content-wrp .detail .detail-wrp .each.left-content {
            padding-right: 0; } }
      .smooth-merchant-portal-section .content-wrp .detail .detail-wrp .each.right-content {
        padding-left: 50px; }
        @media (max-width: 768px) {
          .smooth-merchant-portal-section .content-wrp .detail .detail-wrp .each.right-content {
            padding-left: 0; } }
        .smooth-merchant-portal-section .content-wrp .detail .detail-wrp .each.right-content:before {
          content: "";
          background-image: url("../images/Smooth-MerchantOperations-PurpleSection-Shadow.png");
          background-repeat: no-repeat;
          background-position: top left;
          background-size: contain;
          position: absolute;
          height: 100%;
          width: 100%;
          left: 0;
          top: 0; }
          @media (max-width: 768px) {
            .smooth-merchant-portal-section .content-wrp .detail .detail-wrp .each.right-content:before {
              display: none; } }
  @media (max-width: 768px) {
    .smooth-merchant-portal-section .content-wrp .img-wrp {
      margin-bottom: 30px; } }
  .smooth-merchant-portal-section .content-wrp .image-wrapper.image-right .img-wrp {
    display: flex;
    justify-content: flex-end; }
  .smooth-merchant-portal-section .content-wrp .image-wrapper.image-right.mobile-view {
    display: none; }
  @media (max-width: 768px) {
    .smooth-merchant-portal-section .content-wrp .image-wrapper.image-right {
      display: none; }
      .smooth-merchant-portal-section .content-wrp .image-wrapper.image-right.mobile-view {
        display: block; }
        .smooth-merchant-portal-section .content-wrp .image-wrapper.image-right.mobile-view .img-wrp {
          display: block; } }
  .smooth-merchant-portal-section .content-wrp .corner-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 25%; }
    @media (max-width: 576px) {
      .smooth-merchant-portal-section .content-wrp .corner-image {
        width: 40%; } }

.smooth-static-hero {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #2E82FC; }
  @media (max-width: 768px) {
    .smooth-static-hero {
      padding-top: 4rem;
      padding-bottom: 4rem; } }
  .smooth-static-hero .row {
    align-items: flex-end; }
  .smooth-static-hero .title-part h1 {
    font-size: 65px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 30px; }
    @media (max-width: 768px) {
      .smooth-static-hero .title-part h1 {
        font-size: 45px; } }
  .smooth-static-hero .description p {
    font-size: 28px;
    color: #fff;
    line-height: 120%; }
    @media (max-width: 768px) {
      .smooth-static-hero .description p {
        font-size: 22px; } }
  @media (max-width: 768px) {
    .smooth-static-hero .img-wrp {
      padding-top: 30px; } }

.smooth-team-section {
  background-color: #C5DDFE; }
  .smooth-team-section .content-wrp {
    padding-top: 6rem;
    padding-bottom: 8rem;
    background-color: #982B80;
    border-bottom-left-radius: 250px;
    position: relative; }
    @media (max-width: 768px) {
      .smooth-team-section .content-wrp {
        padding-top: 4rem;
        padding-bottom: 6rem;
        border-bottom-left-radius: 125px; } }
    @media (max-width: 576px) {
      .smooth-team-section .content-wrp {
        border-top-right-radius: 80px; } }
    .smooth-team-section .content-wrp .container {
      position: relative;
      z-index: 1; }
  .smooth-team-section .title-part h2 {
    font-size: 45px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 30px; }
    @media (max-width: 768px) {
      .smooth-team-section .title-part h2 {
        font-size: 32px; } }
  .smooth-team-section .description p {
    font-size: 26px;
    color: #fff;
    line-height: 120%; }
    @media (max-width: 768px) {
      .smooth-team-section .description p {
        font-size: 20px; } }
  .smooth-team-section .teams-wrp {
    padding-top: 30px;
    display: none; }
    .smooth-team-section .teams-wrp .row {
      margin: 0; }
      .smooth-team-section .teams-wrp .row .each {
        padding: 0;
        position: relative; }
        @media (max-width: 768px) {
          .smooth-team-section .teams-wrp .row .each {
            margin-bottom: 30px; } }
        .smooth-team-section .teams-wrp .row .each .each-wrp {
          position: relative;
          height: 100%; }
          .smooth-team-section .teams-wrp .row .each .each-wrp .img-wrp {
            display: block;
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 100%;
            background-color: #fff; }
            .smooth-team-section .teams-wrp .row .each .each-wrp .img-wrp img {
              position: absolute;
              width: 100%;
              height: 100%;
              top: 0;
              left: 0;
              object-fit: cover;
              object-position: center center; }
          .smooth-team-section .teams-wrp .row .each .each-wrp .member-info {
            padding: 15px; }
            .smooth-team-section .teams-wrp .row .each .each-wrp .member-info .name {
              font-size: 25px;
              font-weight: 500;
              color: #fff;
              margin-bottom: 0;
              line-height: 120%; }
              @media (max-width: 768px) {
                .smooth-team-section .teams-wrp .row .each .each-wrp .member-info .name {
                  font-size: 20px; } }
            .smooth-team-section .teams-wrp .row .each .each-wrp .member-info .position {
              font-size: 15px;
              font-weight: 500;
              color: #fff; }
            .smooth-team-section .teams-wrp .row .each .each-wrp .member-info .linkedin-link {
              display: none; }
        .smooth-team-section .teams-wrp .row .each:not(:first-child) .each-wrp:before {
          content: "";
          background-image: url("../images/Team_member_shadow.png");
          background-repeat: no-repeat;
          background-position: top left;
          background-size: contain;
          position: absolute;
          height: 100%;
          width: 100%;
          left: 0;
          top: 0;
          z-index: 1; }
        .smooth-team-section .teams-wrp .row .each:hover {
          cursor: pointer; }
          .smooth-team-section .teams-wrp .row .each:hover .each-wrp .img-wrp {
            background-color: #022760; }
          .smooth-team-section .teams-wrp .row .each:hover .each-wrp .member-info {
            background-color: #fff; }
            .smooth-team-section .teams-wrp .row .each:hover .each-wrp .member-info .name {
              color: #00183E; }
            .smooth-team-section .teams-wrp .row .each:hover .each-wrp .member-info .position {
              color: #00183E; }
        .smooth-team-section .teams-wrp .row .each.show-detail {
          display: none; }
          .smooth-team-section .teams-wrp .row .each.show-detail.active {
            display: block;
            margin-bottom: 0; }
            .smooth-team-section .teams-wrp .row .each.show-detail.active .each-wrp {
              background-color: #2E82FF; }
              .smooth-team-section .teams-wrp .row .each.show-detail.active .each-wrp .img-wrp {
                background-color: #022760; }
              .smooth-team-section .teams-wrp .row .each.show-detail.active .each-wrp .member-info {
                background-color: #2E82FF;
                display: flex;
                align-items: center;
                justify-content: center; }
                .smooth-team-section .teams-wrp .row .each.show-detail.active .each-wrp .member-info .name {
                  display: none; }
                .smooth-team-section .teams-wrp .row .each.show-detail.active .each-wrp .member-info .position {
                  display: none; }
                .smooth-team-section .teams-wrp .row .each.show-detail.active .each-wrp .member-info .linkedin-link {
                  display: block;
                  color: #fff;
                  font-size: 18px;
                  position: relative;
                  padding-right: 30px;
                  z-index: 1; }
                  .smooth-team-section .teams-wrp .row .each.show-detail.active .each-wrp .member-info .linkedin-link:after {
                    content: url("../images/arrow-right-white.svg");
                    width: 18px;
                    height: 18px;
                    position: absolute;
                    right: 0;
                    top: 2px; }
      .smooth-team-section .teams-wrp .row .detail {
        background-color: #fff;
        padding: 30px 40px;
        display: none;
        position: relative; }
        .smooth-team-section .teams-wrp .row .detail .close-btn {
          position: absolute;
          top: 15px;
          right: 15px;
          cursor: pointer; }
          .smooth-team-section .teams-wrp .row .detail .close-btn img {
            width: 25px;
            height: 25px;
            opacity: 0.6; }
        .smooth-team-section .teams-wrp .row .detail .detail-wrp {
          height: 100%; }
          .smooth-team-section .teams-wrp .row .detail .detail-wrp .sub-title p {
            font-size: 24px;
            font-weight: 300;
            color: #00183E;
            margin-bottom: 10px; }
            .smooth-team-section .teams-wrp .row .detail .detail-wrp .sub-title p.strong {
              font-weight: 500; }
          .smooth-team-section .teams-wrp .row .detail .detail-wrp .detail-content p {
            font-size: 18px;
            font-weight: 300;
            color: #022760;
            margin-bottom: 10px;
            line-height: 130%; }
        .smooth-team-section .teams-wrp .row .detail.active {
          display: block; }
  .smooth-team-section .video-wrp {
    position: relative;
    z-index: 1;
    margin-top: 30px; }
    .smooth-team-section .video-wrp video {
      width: 100%;
      outline: unset; }
    @media (max-width: 576px) {
      .smooth-team-section .video-wrp {
        display: block;
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 56.25%; }
        .smooth-team-section .video-wrp video {
          position: absolute;
          width: 100%;
          height: 100%;
          top: 0;
          left: 0;
          object-fit: cover;
          object-position: center center; } }
  .smooth-team-section .full-image-wrp {
    padding-top: 30px; }
  .smooth-team-section .corner-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 20%; }
    .smooth-team-section .corner-image img {
      width: 100%; }

.smooth-jobs-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #C5DDFE; }
  @media (max-width: 768px) {
    .smooth-jobs-section {
      padding-top: 4rem;
      padding-bottom: 4rem; } }
  .smooth-jobs-section .title-part h2 {
    font-size: 45px;
    font-weight: 500;
    color: #022760; }
    @media (max-width: 768px) {
      .smooth-jobs-section .title-part h2 {
        font-size: 32px; } }
  .smooth-jobs-section .description p {
    font-size: 26px;
    color: #022760;
    line-height: 120%; }
    @media (max-width: 768px) {
      .smooth-jobs-section .description p {
        font-size: 20px; } }
    .smooth-jobs-section .description p.sub-title {
      font-weight: 500;
      margin-bottom: 10px; }
  .smooth-jobs-section .description ul {
    margin: 0;
    padding: 0px;
    list-style: none;
    column-count: 2;
    padding-bottom: 30px; }
    @media (max-width: 576px) {
      .smooth-jobs-section .description ul {
        column-count: 1; } }
    .smooth-jobs-section .description ul li {
      font-size: 18px;
      font-weight: 300;
      color: #022760;
      position: relative;
      padding: 5px 0;
      padding-left: 30px; }
      .smooth-jobs-section .description ul li::before {
        content: '';
        position: absolute;
        top: 9px;
        left: 0;
        height: 20px;
        width: 20px;
        background-image: url("../images/Smooth-ICON-Check-Blue.png");
        background-repeat: no-repeat;
        background-size: contain; }
  .smooth-jobs-section .btn-wrp {
    padding-top: 15px; }
    .smooth-jobs-section .btn-wrp a {
      padding: 8px 30px;
      font-size: 18px;
      color: #022760;
      border: 1px solid #022760;
      border-radius: 30px;
      position: relative; }
      .smooth-jobs-section .btn-wrp a:hover {
        color: #fff;
        background-color: #2E82FF;
        padding-right: 50px;
        border: 1px solid #2E82FF; }
        .smooth-jobs-section .btn-wrp a:hover:after {
          content: url("../images/long-arrow.svg");
          width: 27px;
          height: 15px;
          position: absolute;
          top: 8px;
          right: 15px; }
  .smooth-jobs-section .jobs-wrp {
    padding-top: 60px; }
    .smooth-jobs-section .jobs-wrp .sub-title h2 {
      font-size: 27px;
      font-weight: 500;
      color: #022760;
      margin-bottom: 15px; }
      @media (max-width: 768px) {
        .smooth-jobs-section .jobs-wrp .sub-title h2 {
          font-size: 22px; } }
    .smooth-jobs-section .jobs-wrp .jobs .table td {
      border-top: none;
      border-bottom: 1px solid #3485FB;
      padding: 20px 8px;
      vertical-align: bottom;
      padding-left: 0; }
    .smooth-jobs-section .jobs-wrp .jobs .table .job-title-part p {
      margin: 0;
      font-size: 12px;
      color: #2E82FF;
      font-weight: 500; }
    .smooth-jobs-section .jobs-wrp .jobs .table .job-title-part .job-title a {
      font-size: 20px;
      color: #002760;
      font-weight: 500; }
      .smooth-jobs-section .jobs-wrp .jobs .table .job-title-part .job-title a:hover {
        color: #2E82FF; }
      @media (max-width: 768px) {
        .smooth-jobs-section .jobs-wrp .jobs .table .job-title-part .job-title a {
          font-size: 16px; } }
    .smooth-jobs-section .jobs-wrp .jobs .table .location {
      width: 15%; }
      .smooth-jobs-section .jobs-wrp .jobs .table .location .location-wrp {
        display: flex;
        align-items: center; }
      .smooth-jobs-section .jobs-wrp .jobs .table .location p {
        margin: 0;
        font-size: 20px;
        color: #002760;
        font-weight: 300; }
        @media (max-width: 768px) {
          .smooth-jobs-section .jobs-wrp .jobs .table .location p {
            font-size: 16px; } }
      .smooth-jobs-section .jobs-wrp .jobs .table .location img {
        width: 20px;
        float: left;
        margin-right: 15px; }
        @media (max-width: 768px) {
          .smooth-jobs-section .jobs-wrp .jobs .table .location img {
            font-size: 14px;
            width: 15px;
            margin-right: 5px; } }
        @media (max-width: 400px) {
          .smooth-jobs-section .jobs-wrp .jobs .table .location img {
            font-size: 12px;
            width: 12px; } }
      @media (max-width: 992px) {
        .smooth-jobs-section .jobs-wrp .jobs .table .location {
          width: 20%; } }
      @media (max-width: 576px) {
        .smooth-jobs-section .jobs-wrp .jobs .table .location {
          width: 30%; } }
    .smooth-jobs-section .jobs-wrp .jobs .table tr:last-child td {
      border: none; }

.smooth-step-section .content-wrp {
  padding-top: 6rem;
  padding-bottom: 6rem;
  position: relative; }
  .smooth-step-section .content-wrp .container {
    position: relative;
    z-index: 1; }
  .smooth-step-section .content-wrp .title-part h2 {
    font-size: 45px;
    font-weight: 500;
    color: #022760;
    margin-bottom: 0; }
    @media (max-width: 768px) {
      .smooth-step-section .content-wrp .title-part h2 {
        font-size: 32px; } }
  .smooth-step-section .content-wrp .each {
    padding-top: 50px;
    padding-bottom: 30px;
    position: relative; }
    .smooth-step-section .content-wrp .each .each-wrp {
      display: flex;
      padding-right: 60px; }
      @media (max-width: 768px) {
        .smooth-step-section .content-wrp .each .each-wrp {
          padding-right: 0;
          display: block; } }
      .smooth-step-section .content-wrp .each .each-wrp .number {
        width: 12%;
        flex-shrink: 0; }
        .smooth-step-section .content-wrp .each .each-wrp .number p {
          font-size: 150px;
          line-height: 85%;
          color: #2E82FF; }
        @media (max-width: 768px) {
          .smooth-step-section .content-wrp .each .each-wrp .number {
            width: 100%; }
            .smooth-step-section .content-wrp .each .each-wrp .number p {
              font-size: 85px; } }
      .smooth-step-section .content-wrp .each .each-wrp .detail {
        padding-left: 30px; }
        @media (max-width: 768px) {
          .smooth-step-section .content-wrp .each .each-wrp .detail {
            padding-left: 0; } }
        .smooth-step-section .content-wrp .each .each-wrp .detail .sub-title p {
          font-size: 27px;
          color: #022760;
          font-weight: 500;
          color: #022760;
          margin-bottom: 10px; }
        .smooth-step-section .content-wrp .each .each-wrp .detail .description p {
          font-size: 18px;
          font-weight: 300;
          line-height: 140%;
          color: #022760; }
        @media (max-width: 768px) {
          .smooth-step-section .content-wrp .each .each-wrp .detail .sub-title p {
            font-size: 22px; } }
    .smooth-step-section .content-wrp .each:not(:first-child):before {
      content: "";
      background-image: url("../images/Smooth-ForYourLearning-WhiteSection-Shadow.png");
      background-repeat: no-repeat;
      background-position: top left;
      background-size: contain;
      position: absolute;
      height: 100%;
      width: 100%;
      left: 0;
      top: 0;
      z-index: 1; }
  .smooth-step-section .content-wrp .right-content .each .each-wrp {
    padding-left: 60px;
    padding-right: 0; }
    @media (max-width: 768px) {
      .smooth-step-section .content-wrp .right-content .each .each-wrp {
        padding-left: 0; } }
  .smooth-step-section .content-wrp .img-wrp {
    padding-top: 50px; }
    @media (max-width: 768px) {
      .smooth-step-section .content-wrp .img-wrp {
        padding-top: 0; } }
  .smooth-step-section .content-wrp .corner-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25%; }
    @media (max-width: 576px) {
      .smooth-step-section .content-wrp .corner-image {
        width: 40%; } }
    .smooth-step-section .content-wrp .corner-image img {
      width: 100%; }

.smooth-downloadable-tools-section {
  padding-top: 6rem;
  padding-bottom: 10rem;
  background-color: #01183E; }
  @media (max-width: 768px) {
    .smooth-downloadable-tools-section {
      padding-top: 4rem;
      padding-bottom: 4rem; } }
  .smooth-downloadable-tools-section .title-part h2 {
    font-size: 45px;
    line-height: 55px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 500; }
    @media (max-width: 576px) {
      .smooth-downloadable-tools-section .title-part h2 {
        font-size: 32px;
        line-height: 120%; } }
  .smooth-downloadable-tools-section .description {
    padding-bottom: 15px; }
    .smooth-downloadable-tools-section .description p {
      font-size: 26px;
      color: #fff; }
      @media (max-width: 576px) {
        .smooth-downloadable-tools-section .description p {
          font-size: 22px; } }
  .smooth-downloadable-tools-section .row {
    margin: 0; }
    .smooth-downloadable-tools-section .row .each {
      padding: 0; }
      .smooth-downloadable-tools-section .row .each .each-wrp {
        padding: 30px;
        height: 100%;
        background-color: #022760;
        transition: transform .3s ease;
        position: relative; }
        @media (max-width: 768px) {
          .smooth-downloadable-tools-section .row .each .each-wrp {
            border: 1px solid #01183E; } }
        .smooth-downloadable-tools-section .row .each .each-wrp .sub-title h3 {
          font-size: 24px;
          font-weight: 500;
          color: #fff;
          margin-bottom: 15px; }
          @media (max-width: 576px) {
            .smooth-downloadable-tools-section .row .each .each-wrp .sub-title h3 {
              font-size: 20px; } }
        .smooth-downloadable-tools-section .row .each .each-wrp .detail p {
          font-size: 18px;
          color: #fff; }
        .smooth-downloadable-tools-section .row .each .each-wrp .btn-wrp {
          padding-top: 15px;
          transition: transform .3s ease; }
          .smooth-downloadable-tools-section .row .each .each-wrp .btn-wrp a {
            padding: 5px 20px;
            border: 1px solid #fff;
            color: #fff;
            font-size: 18px;
            border-radius: 30px;
            position: relative; }
            .smooth-downloadable-tools-section .row .each .each-wrp .btn-wrp a:hover {
              background-color: #2E82FF;
              border: 1px solid #2E82FF;
              color: #fff;
              padding-right: 40px; }
              .smooth-downloadable-tools-section .row .each .each-wrp .btn-wrp a:hover:after {
                content: url("../images/download-btn.svg");
                width: 20px;
                height: 20px;
                position: absolute;
                top: 7px;
                right: 10px; }
        .smooth-downloadable-tools-section .row .each .each-wrp:hover {
          transform: translateY(-10px); }
          .smooth-downloadable-tools-section .row .each .each-wrp:hover .btn-wrp {
            transform: translateY(-5px); }
      .smooth-downloadable-tools-section .row .each:not(:first-child) .each-wrp:before {
        content: "";
        background-image: url("../images/Smooth-Homepage-Stats-Shadow.png");
        background-repeat: no-repeat;
        background-position: top left;
        background-size: contain;
        position: absolute;
        height: 100%;
        width: 100%;
        left: 0;
        top: 0; }
        @media (max-width: 768px) {
          .smooth-downloadable-tools-section .row .each:not(:first-child) .each-wrp:before {
            display: none; } }

.smooth-partners-section {
  background-color: #2E82FB; }
  .smooth-partners-section .content-wrp {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #fff;
    border-top-right-radius: 250px; }
    @media (max-width: 768px) {
      .smooth-partners-section .content-wrp {
        padding-top: 6rem;
        padding-bottom: 4rem;
        border-top-right-radius: 125px; } }
    @media (max-width: 576px) {
      .smooth-partners-section .content-wrp {
        border-top-right-radius: 80px; } }
    .smooth-partners-section .content-wrp .title-part {
      padding-right: 30px; }
      .smooth-partners-section .content-wrp .title-part h2 {
        font-size: 45px;
        line-height: 55px;
        color: #2E82FF;
        font-weight: 500; }
        @media (max-width: 768px) {
          .smooth-partners-section .content-wrp .title-part h2 {
            font-size: 32px;
            line-height: 120%; } }
    .smooth-partners-section .content-wrp .description p {
      font-size: 18px;
      font-weight: 300;
      color: #022760; }
    .smooth-partners-section .content-wrp .btn-wrp {
      padding-top: 30px; }
      .smooth-partners-section .content-wrp .btn-wrp a {
        padding: 8px 30px;
        border: 1px solid #022760;
        color: #022760;
        font-size: 18px;
        border-radius: 30px;
        position: relative; }
        .smooth-partners-section .content-wrp .btn-wrp a:hover {
          background-color: #2E82FF;
          border: 1px solid #2E82FF;
          color: #fff; }
    @media (max-width: 768px) {
      .smooth-partners-section .content-wrp .img-wrp {
        padding-top: 50px; } }

.smooth-contact-section {
  background-color: #2E82FB; }
  .smooth-contact-section .content-wrp {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #EAF1FC;
    border-top-right-radius: 250px; }
    @media (max-width: 768px) {
      .smooth-contact-section .content-wrp {
        padding-bottom: 4rem;
        border-top-right-radius: 125px; } }
    @media (max-width: 576px) {
      .smooth-contact-section .content-wrp {
        border-top-right-radius: 80px; } }
    .smooth-contact-section .content-wrp .contact-info {
      padding-left: 60px; }
      @media (max-width: 768px) {
        .smooth-contact-section .content-wrp .contact-info {
          padding-left: 0; } }
      .smooth-contact-section .content-wrp .contact-info h3 {
        font-size: 20px;
        font-weight: 500;
        color: #2E82FF;
        padding-top: 30px;
        margin-bottom: 15px; }
      .smooth-contact-section .content-wrp .contact-info p {
        font-size: 18px;
        font-weight: 300;
        color: #022760; }
      @media (max-width: 768px) {
        .smooth-contact-section .content-wrp .contact-info .social-links-wrp {
          display: none; } }
      .smooth-contact-section .content-wrp .contact-info .social-links-wrp .social-links li {
        display: inline-block; }
        .smooth-contact-section .content-wrp .contact-info .social-links-wrp .social-links li i {
          color: #fff;
          line-height: 32px;
          display: block; }
        .smooth-contact-section .content-wrp .contact-info .social-links-wrp .social-links li a {
          width: 32px;
          height: 32px;
          border-radius: 50%;
          background-color: #022760;
          color: #fff;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-bottom: 5px;
          margin-right: 5px; }
          .smooth-contact-section .content-wrp .contact-info .social-links-wrp .social-links li a:hover {
            background-color: #2E82FB; }

.smooth-integrations-section {
  background-color: #2E82FC; }
  .smooth-integrations-section .content-wrp {
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #fff;
    position: relative; }
    .smooth-integrations-section .content-wrp.border-radius-show {
      border-top-right-radius: 250px;
      padding-top: 8rem; }
      @media (max-width: 768px) {
        .smooth-integrations-section .content-wrp.border-radius-show {
          padding-top: 6rem;
          border-top-right-radius: 125px; } }
      @media (max-width: 576px) {
        .smooth-integrations-section .content-wrp.border-radius-show {
          border-top-right-radius: 80px; } }
    .smooth-integrations-section .content-wrp .container {
      position: relative;
      z-index: 1; }
    .smooth-integrations-section .content-wrp .detail-wrp .detail .each {
      padding-bottom: 50px; }
      .smooth-integrations-section .content-wrp .detail-wrp .detail .each .sub-title h3 {
        font-size: 27px;
        font-weight: 500;
        color: #2E82FF;
        margin-bottom: 10px; }
        @media (max-width: 768px) {
          .smooth-integrations-section .content-wrp .detail-wrp .detail .each .sub-title h3 {
            font-size: 22px; } }
      .smooth-integrations-section .content-wrp .detail-wrp .detail .each .description p {
        color: #022760;
        font-size: 18px;
        font-weight: 300; }
      .smooth-integrations-section .content-wrp .detail-wrp .detail .each .logos-wrp {
        display: flex;
        flex-wrap: wrap;
        align-items: center; }
        .smooth-integrations-section .content-wrp .detail-wrp .detail .each .logos-wrp .each-logo {
          width: 33.33%;
          padding: 0px 15px; }
    @media (max-width: 768px) {
      .smooth-integrations-section .content-wrp .left-image .img-wrp {
        margin-bottom: 30px; } }
    .smooth-integrations-section .content-wrp .right-image img {
      margin-left: auto; }
      @media (max-width: 768px) {
        .smooth-integrations-section .content-wrp .right-image img {
          margin-left: 0; } }
    .smooth-integrations-section .content-wrp .corner-image {
      position: absolute;
      width: 25%;
      right: 0;
      bottom: 0; }
      .smooth-integrations-section .content-wrp .corner-image img {
        width: 100%; }
      @media (max-width: 576px) {
        .smooth-integrations-section .content-wrp .corner-image {
          width: 40%; } }

/**
 * CTA Style
 */
.cta {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative; }
  .cta.transparency-bg:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5); }
  .cta.callout {
    padding: 4rem 30px; }
    .cta.callout .content-wrp {
      max-width: 992px;
      text-align: center;
      margin-left: auto;
      margin-right: auto;
      position: relative; }
      .cta.callout .content-wrp .title-part h2 {
        font-size: 36px;
        color: #ffffff;
        margin-bottom: 10px; }
      .cta.callout .content-wrp .body-part p {
        font-size: 18px;
        color: #ffffff;
        line-height: 1.3; }
      .cta.callout .content-wrp .btn-wrp {
        padding-top: 15px; }
        .cta.callout .content-wrp .btn-wrp a {
          font-size: 16px;
          padding: 8px 30px;
          color: #ffffff;
          border: 1px solid #ffffff;
          border-radius: 30px;
          font-weight: 500; }
          .cta.callout .content-wrp .btn-wrp a:hover {
            text-decoration: none;
            background-color: #ffffff;
            color: #333333; }
    .cta.callout.bg_white .content-wrp .title-part h2 {
      color: #333333; }
    .cta.callout.bg_white .content-wrp .body-part p {
      color: #333333; }
    .cta.callout.bg_white .content-wrp .btn-wrp a {
      color: #333333;
      border: 1px solid #333333; }
      .cta.callout.bg_white .content-wrp .btn-wrp a:hover {
        background-color: #333333;
        color: #ffffff; }
    .cta.callout.bg_white.transparency-bg:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background-color: rgba(255, 255, 255, 0.5); }
  .cta.square {
    padding: 30px;
    max-width: 400px;
    float: right; }
    .cta.square .content-wrp {
      position: relative; }
      .cta.square .content-wrp .title-part h2 {
        font-size: 30px;
        color: #ffffff;
        margin-bottom: 10px; }
      .cta.square .content-wrp .body-part p {
        font-size: 16px;
        color: #ffffff;
        line-height: 1.3; }
      .cta.square .content-wrp .btn-wrp {
        padding-top: 15px; }
        .cta.square .content-wrp .btn-wrp a {
          font-size: 16px;
          padding: 8px 30px;
          color: #ffffff;
          border: 1px solid #ffffff;
          border-radius: 30px;
          font-weight: 500; }
          .cta.square .content-wrp .btn-wrp a:hover {
            text-decoration: none;
            background-color: #ffffff;
            color: #333333; }
    .cta.square.bg_white .content-wrp .title-part h2 {
      color: #333333; }
    .cta.square.bg_white .content-wrp .body-part p {
      color: #333333; }
    .cta.square.bg_white .content-wrp .btn-wrp a {
      color: #333333;
      border: 1px solid #333333; }
      .cta.square.bg_white .content-wrp .btn-wrp a:hover {
        background-color: #333333;
        color: #ffffff; }
    .cta.square.bg_white.transparency-bg:before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background-color: rgba(255, 255, 255, 0.5); }

.smooth-expect-results-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fff; }
  @media (max-width: 576px) {
    .smooth-expect-results-section {
      padding-top: 4rem;
      padding-bottom: 4rem; } }
  .smooth-expect-results-section .title-part h2 {
    font-size: 40px;
    font-weight: 500;
    line-height: 70px;
    color: #E67300; }
    @media (max-width: 992px) {
      .smooth-expect-results-section .title-part h2 {
        font-size: 36px;
        line-height: 120%; } }
    @media (max-width: 768px) {
      .smooth-expect-results-section .title-part h2 {
        font-size: 30px;
        line-height: 120%; } }
  .smooth-expect-results-section .items-wrp {
    padding-top: 30px; }
    .smooth-expect-results-section .items-wrp .item {
      margin-bottom: 30px; }
      .smooth-expect-results-section .items-wrp .item .item-wrp {
        height: 100%;
        background-color: #EAF1FC; }
        .smooth-expect-results-section .items-wrp .item .item-wrp .img-wrp {
          display: block;
          width: 100%;
          height: 0;
          padding-bottom: 56.25%;
          position: relative; }
          .smooth-expect-results-section .items-wrp .item .item-wrp .img-wrp img {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            object-fit: cover;
            object-position: center center; }
        .smooth-expect-results-section .items-wrp .item .item-wrp .item-detail {
          background-color: #EAF1FC;
          padding: 30px; }
          @media (max-width: 768px) {
            .smooth-expect-results-section .items-wrp .item .item-wrp .item-detail {
              padding: 20px; } }
          .smooth-expect-results-section .items-wrp .item .item-wrp .item-detail .item-title h3 {
            font-size: 24px;
            color: #2E82FF;
            font-weight: 400;
            margin-bottom: 10px; }
            .smooth-expect-results-section .items-wrp .item .item-wrp .item-detail .item-title h3 a {
              color: #022760; }
            @media (max-width: 768px) {
              .smooth-expect-results-section .items-wrp .item .item-wrp .item-detail .item-title h3 {
                font-size: 22px; } }
          .smooth-expect-results-section .items-wrp .item .item-wrp .item-detail .item-description p {
            font-size: 18px;
            line-height: 120%;
            font-weight: 300;
            color: #022760;
            margin-bottom: 0; }
    .smooth-expect-results-section .items-wrp .banner-wrp {
      margin-bottom: 30px; }
      .smooth-expect-results-section .items-wrp .banner-wrp .item-wrp {
        height: 100%;
        background-color: #00183E;
        padding: 30px;
        text-align: center;
        display: flex;
        align-items: center; }
        .smooth-expect-results-section .items-wrp .banner-wrp .item-wrp .inner-wrp .item-title {
          padding-bottom: 15px; }
          .smooth-expect-results-section .items-wrp .banner-wrp .item-wrp .inner-wrp .item-title h3 {
            font-size: 28px;
            color: #fff;
            font-weight: 400;
            margin-bottom: 10px; }
            .smooth-expect-results-section .items-wrp .banner-wrp .item-wrp .inner-wrp .item-title h3 a {
              color: #fff; }
            @media (max-width: 768px) {
              .smooth-expect-results-section .items-wrp .banner-wrp .item-wrp .inner-wrp .item-title h3 {
                font-size: 24px; } }
        .smooth-expect-results-section .items-wrp .banner-wrp .item-wrp .inner-wrp .description p {
          font-size: 18px;
          line-height: 120%;
          font-weight: 300;
          color: #fff;
          margin-bottom: 0; }
        .smooth-expect-results-section .items-wrp .banner-wrp .item-wrp .inner-wrp .btn-wrp {
          text-align: center;
          padding-top: 30px; }
          .smooth-expect-results-section .items-wrp .banner-wrp .item-wrp .inner-wrp .btn-wrp a {
            padding: 8px 30px;
            font-size: 18px;
            color: #022760;
            background-color: #fff;
            border-radius: 30px;
            text-decoration: none;
            transition: all ease 0.3s;
            display: inline-block; }
            .smooth-expect-results-section .items-wrp .banner-wrp .item-wrp .inner-wrp .btn-wrp a:hover {
              opacity: 0.8; }

.smooth-testimonial-slider-section {
  background-color: #fff; }
  .smooth-testimonial-slider-section .inner-content {
    background-color: #fff;
    padding-top: 4rem;
    padding-bottom: 4rem; }
    @media (max-width: 768px) {
      .smooth-testimonial-slider-section .inner-content {
        padding-top: 4rem;
        padding-bottom: 4rem; } }
    .smooth-testimonial-slider-section .inner-content .title-part {
      padding-bottom: 30px; }
      .smooth-testimonial-slider-section .inner-content .title-part h2 {
        font-size: 40px;
        font-weight: 500;
        line-height: 70px;
        color: #E67300; }
        @media (max-width: 992px) {
          .smooth-testimonial-slider-section .inner-content .title-part h2 {
            font-size: 36px;
            line-height: 120%; } }
        @media (max-width: 768px) {
          .smooth-testimonial-slider-section .inner-content .title-part h2 {
            font-size: 30px;
            line-height: 120%; } }
    .smooth-testimonial-slider-section .inner-content .slider-wrp .slick-next::before {
      display: none; }
    .smooth-testimonial-slider-section .inner-content .slider-wrp .slick-arrow {
      z-index: 1;
      width: 45px;
      height: 45px; }
    .smooth-testimonial-slider-section .inner-content .slider-wrp .slick-dots {
      bottom: -50px; }
      .smooth-testimonial-slider-section .inner-content .slider-wrp .slick-dots li button:before {
        font-size: 14px;
        color: #2E82FF; }
      .smooth-testimonial-slider-section .inner-content .slider-wrp .slick-dots li {
        margin: 7px; }
      @media (max-width: 768px) {
        .smooth-testimonial-slider-section .inner-content .slider-wrp .slick-dots {
          left: 0; } }
    .smooth-testimonial-slider-section .inner-content .slider-wrp .slick-list .slick-track {
      display: flex;
      align-items: center; }
      @media (max-width: 768px) {
        .smooth-testimonial-slider-section .inner-content .slider-wrp .slick-list .slick-track {
          align-items: flex-start; } }
      .smooth-testimonial-slider-section .inner-content .slider-wrp .slick-list .slick-track .each-slide {
        position: relative;
        border: 1px solid #EAF1FC; }
        .smooth-testimonial-slider-section .inner-content .slider-wrp .slick-list .slick-track .each-slide .img-wrp, .smooth-testimonial-slider-section .inner-content .slider-wrp .slick-list .slick-track .each-slide .content-wrp {
          height: inherit; }
        .smooth-testimonial-slider-section .inner-content .slider-wrp .slick-list .slick-track .each-slide .logo-wrp {
          text-align: center;
          display: flex;
          align-items: center;
          justify-content: center;
          height: 100%; }
          .smooth-testimonial-slider-section .inner-content .slider-wrp .slick-list .slick-track .each-slide .logo-wrp img {
            width: 250px;
            max-width: 100%;
            margin: 0 auto; }
        .smooth-testimonial-slider-section .inner-content .slider-wrp .slick-list .slick-track .each-slide .slide-content {
          padding: 20px;
          height: 100%; }
          .smooth-testimonial-slider-section .inner-content .slider-wrp .slick-list .slick-track .each-slide .slide-content .sub-title h3 {
            font-size: 22px;
            color: #2E82FF; }
            @media (max-width: 768px) {
              .smooth-testimonial-slider-section .inner-content .slider-wrp .slick-list .slick-track .each-slide .slide-content .sub-title h3 {
                font-size: 22px; } }
          .smooth-testimonial-slider-section .inner-content .slider-wrp .slick-list .slick-track .each-slide .slide-content .testimonial p {
            font-size: 16px;
            color: #022760; }
            @media (max-width: 768px) {
              .smooth-testimonial-slider-section .inner-content .slider-wrp .slick-list .slick-track .each-slide .slide-content .testimonial p {
                font-size: 18px; } }
          .smooth-testimonial-slider-section .inner-content .slider-wrp .slick-list .slick-track .each-slide .slide-content .author-info p {
            font-size: 18px;
            color: #2E82FF;
            font-weight: 500; }
            @media (max-width: 768px) {
              .smooth-testimonial-slider-section .inner-content .slider-wrp .slick-list .slick-track .each-slide .slide-content .author-info p {
                font-size: 15px; } }

/**
 * About Us page style
 */
.page-template-template_about #page-hero {
  min-height: 75vh;
  height: unset;
  padding-bottom: 8rem; }
  .page-template-template_about #page-hero .left-column {
    padding-top: 5vh;
    width: 44%; }
    @media (max-width: 999px) {
      .page-template-template_about #page-hero .left-column {
        width: 100%; } }
  .page-template-template_about #page-hero .right-column img {
    margin-top: -5vh; }
    @media (max-width: 992px) {
      .page-template-template_about #page-hero .right-column img {
        margin-top: 0; } }
.page-template-template_about .our-results-section {
  padding-top: 8rem;
  padding-bottom: 8rem; }
  .page-template-template_about .our-results-section .sub-title h2 {
    text-align: center;
    margin: 0 0 30px 0;
    position: relative;
    padding: 0 0 30px 0;
    font-weight: 600; }
    .page-template-template_about .our-results-section .sub-title h2:after {
      width: 60px;
      height: 5px;
      background: #E67300;
      display: block;
      content: "";
      position: absolute;
      bottom: 0;
      left: calc(50% - 30px); }
  .page-template-template_about .our-results-section .description {
    text-align: center; }
  .page-template-template_about .our-results-section .results {
    padding-top: 4rem; }
    .page-template-template_about .our-results-section .results .each .each-wrp {
      position: relative;
      padding: 30px; }
      @media (max-width: 1200px) {
        .page-template-template_about .our-results-section .results .each .each-wrp {
          padding: 0; } }
      @media (max-width: 992px) {
        .page-template-template_about .our-results-section .results .each .each-wrp {
          padding: 30px; } }
      .page-template-template_about .our-results-section .results .each .each-wrp img {
        width: 100%; }
        @media (max-width: 999px) {
          .page-template-template_about .our-results-section .results .each .each-wrp img {
            max-width: 500px;
            margin-left: auto;
            margin-right: auto; } }
      .page-template-template_about .our-results-section .results .each .each-wrp .overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        padding: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center; }
        .page-template-template_about .our-results-section .results .each .each-wrp .overlay .increase p {
          font-size: 45px;
          font-weight: 600;
          color: #002760;
          margin-bottom: 10px; }
        .page-template-template_about .our-results-section .results .each .each-wrp .overlay .detail p {
          font-size: 22px; }
.page-template-template_about .who-we-are-section {
  padding-top: 8rem;
  padding-bottom: 8rem; }
  .page-template-template_about .who-we-are-section .sub-title h2 {
    text-align: center;
    margin: 0 0 30px 0;
    position: relative;
    padding: 0 0 30px 0;
    font-weight: 600; }
    .page-template-template_about .who-we-are-section .sub-title h2:after {
      width: 60px;
      height: 5px;
      background: #E67300;
      display: block;
      content: "";
      position: absolute;
      bottom: 0;
      left: calc(50% - 30px); }
  .page-template-template_about .who-we-are-section .repeater .each {
    padding-top: 3rem; }
    .page-template-template_about .who-we-are-section .repeater .each .image-wrp img {
      max-width: 90px; }
      @media (max-width: 992px) {
        .page-template-template_about .who-we-are-section .repeater .each .image-wrp img {
          max-width: 120px;
          margin-left: auto;
          margin-right: auto;
          padding-bottom: 30px; } }
    .page-template-template_about .who-we-are-section .repeater .each .description {
      padding-left: 30px; }
      @media (max-width: 992px) {
        .page-template-template_about .who-we-are-section .repeater .each .description {
          padding-left: 0; } }
.page-template-template_about .our-team-section {
  padding-top: 8rem; }
  .page-template-template_about .our-team-section .sub-title h2 {
    text-align: center;
    margin: 0 0 30px 0;
    position: relative;
    padding: 0 0 30px 0;
    font-weight: 600; }
    .page-template-template_about .our-team-section .sub-title h2:after {
      width: 60px;
      height: 5px;
      background: #E67300;
      display: block;
      content: "";
      position: absolute;
      bottom: 0;
      left: calc(50% - 30px); }
  .page-template-template_about .our-team-section .description {
    text-align: center; }
  .page-template-template_about .our-team-section .executive-team {
    padding-top: 6rem; }
    .page-template-template_about .our-team-section .executive-team .sub-sub-title h3 {
      color: #002760;
      font-weight: 600; }
      @media (max-width: 768px) {
        .page-template-template_about .our-team-section .executive-team .sub-sub-title h3 {
          text-align: center; } }
    .page-template-template_about .our-team-section .executive-team .executive-team-wrp {
      display: flex;
      margin-left: -15px;
      margin-right: -15px; }
      @media (max-width: 768px) {
        .page-template-template_about .our-team-section .executive-team .executive-team-wrp {
          display: block; } }
      .page-template-template_about .our-team-section .executive-team .executive-team-wrp .each {
        width: 20%;
        padding: 15px;
        cursor: pointer; }
        @media (max-width: 768px) {
          .page-template-template_about .our-team-section .executive-team .executive-team-wrp .each {
            width: 100%;
            text-align: center; } }
        .page-template-template_about .our-team-section .executive-team .executive-team-wrp .each .image-wrp {
          display: block;
          width: 100%;
          height: 0;
          padding-bottom: 100%;
          position: relative;
          margin-bottom: 15px;
          background-image: linear-gradient(to bottom, #f5f8fb, #d8e8ff);
          transition: all 0.3s ease; }
          @media (max-width: 768px) {
            .page-template-template_about .our-team-section .executive-team .executive-team-wrp .each .image-wrp {
              height: unset;
              padding-bottom: unset;
              max-width: 250px;
              margin-right: auto;
              margin-left: auto; } }
          .page-template-template_about .our-team-section .executive-team .executive-team-wrp .each .image-wrp:hover {
            background-image: linear-gradient(to bottom, #e6eef6, #92c7ff); }
          .page-template-template_about .our-team-section .executive-team .executive-team-wrp .each .image-wrp img {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center; }
            @media (max-width: 768px) {
              .page-template-template_about .our-team-section .executive-team .executive-team-wrp .each .image-wrp img {
                position: relative; } }
        .page-template-template_about .our-team-section .executive-team .executive-team-wrp .each .name, .page-template-template_about .our-team-section .executive-team .executive-team-wrp .each .position {
          margin-bottom: 0px;
          font-size: 16px; }
        .page-template-template_about .our-team-section .executive-team .executive-team-wrp .each .name {
          color: #002760;
          font-weight: 600; }
        .page-template-template_about .our-team-section .executive-team .executive-team-wrp .each .position {
          color: #0468f9; }
.page-template-template_about .our-smooth-operators {
  width: 100%;
  padding-top: 7rem; }
  .page-template-template_about .our-smooth-operators .sub-sub-title {
    padding-bottom: 4rem; }
    .page-template-template_about .our-smooth-operators .sub-sub-title h3 {
      color: #002760;
      font-weight: 600; }
      @media (max-width: 768px) {
        .page-template-template_about .our-smooth-operators .sub-sub-title h3 {
          text-align: center; } }
  .page-template-template_about .our-smooth-operators .banner {
    width: 100%; }
.page-template-template_about .modal {
  text-align: center;
  padding: 0 !important; }
.page-template-template_about .modal:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -4px; }
  @media (max-width: 768px) {
    .page-template-template_about .modal:before {
      height: unset; } }
.page-template-template_about .modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle; }
.page-template-template_about .team-modal {
  padding-right: 0 !important;
  z-index: 10000; }
  @media (min-width: 992px) {
    .page-template-template_about .team-modal .modal-lg {
      max-width: 900px; } }
  .page-template-template_about .team-modal .modal-content {
    border: none; }
  .page-template-template_about .team-modal .modal-body {
    padding: 0; }
    .page-template-template_about .team-modal .modal-body .inner-wrp {
      display: flex;
      align-items: center; }
      @media (max-width: 992px) {
        .page-template-template_about .team-modal .modal-body .inner-wrp {
          display: block; } }
      .page-template-template_about .team-modal .modal-body .inner-wrp .left-content {
        width: 50%;
        padding: 0px; }
        @media (max-width: 992px) {
          .page-template-template_about .team-modal .modal-body .inner-wrp .left-content {
            width: 100%; } }
        .page-template-template_about .team-modal .modal-body .inner-wrp .left-content .img-wrp {
          background-image: linear-gradient(to bottom, #f5f8fb, #d8e8ff); }
          .page-template-template_about .team-modal .modal-body .inner-wrp .left-content .img-wrp img {
            width: 100%;
            height: auto;
            border-top-left-radius: 5px;
            border-bottom-left-radius: 5px; }
            @media (max-width: 992px) {
              .page-template-template_about .team-modal .modal-body .inner-wrp .left-content .img-wrp img {
                width: 100%;
                border-radius: 5px;
                border-bottom-right-radius: 0px;
                border-bottom-left-radius: 0px; } }
          .page-template-template_about .team-modal .modal-body .inner-wrp .left-content .img-wrp .mobile-view {
            display: none; }
            @media (max-width: 992px) {
              .page-template-template_about .team-modal .modal-body .inner-wrp .left-content .img-wrp .mobile-view {
                display: block; } }
        .page-template-template_about .team-modal .modal-body .inner-wrp .left-content .modal-close {
          background-color: transparent;
          border: none;
          position: absolute;
          right: 3px;
          top: 3px;
          padding: 0px;
          display: none; }
          @media (max-width: 992px) {
            .page-template-template_about .team-modal .modal-body .inner-wrp .left-content .modal-close {
              display: block; } }
        .page-template-template_about .team-modal .modal-body .inner-wrp .left-content .modal-close:focus {
          outline: none; }
        .page-template-template_about .team-modal .modal-body .inner-wrp .left-content .modal-close:before {
          display: inline-block;
          color: transparent;
          border-radius: 0.33em;
          content: "\00D7";
          font-size: 40px;
          font-weight: normal;
          line-height: 25px;
          width: 40px;
          height: 40px;
          text-align: center;
          background: transparent;
          padding-top: 0px;
          padding-right: 0px; }
      .page-template-template_about .team-modal .modal-body .inner-wrp .right-content {
        width: 50%;
        padding: 0px; }
        @media (max-width: 992px) {
          .page-template-template_about .team-modal .modal-body .inner-wrp .right-content {
            width: 100%; } }
        .page-template-template_about .team-modal .modal-body .inner-wrp .right-content .modal-close {
          background-color: transparent;
          border: none;
          position: absolute;
          right: 3px;
          top: 3px;
          padding: 0px; }
        .page-template-template_about .team-modal .modal-body .inner-wrp .right-content .modal-close:focus {
          outline: none; }
        .page-template-template_about .team-modal .modal-body .inner-wrp .right-content .modal-close:before {
          display: inline-block;
          border-radius: 0.33em;
          content: "\00D7";
          font-size: 40px;
          font-weight: normal;
          line-height: 25px;
          width: 40px;
          height: 40px;
          text-align: center;
          background: transparent;
          padding-top: 0px;
          padding-right: 0px; }
        .page-template-template_about .team-modal .modal-body .inner-wrp .right-content .inner-content {
          height: 100%;
          width: 100%;
          padding: 30px 20px; }
          @media (max-width: 576px) {
            .page-template-template_about .team-modal .modal-body .inner-wrp .right-content .inner-content {
              padding: 30px; } }
          .page-template-template_about .team-modal .modal-body .inner-wrp .right-content .inner-content .name {
            font-size: 20px;
            margin-bottom: 0;
            color: #002760;
            font-weight: 600; }
          .page-template-template_about .team-modal .modal-body .inner-wrp .right-content .inner-content .position {
            font-size: 14px; }
          .page-template-template_about .team-modal .modal-body .inner-wrp .right-content .inner-content .detail p {
            font-size: 14px; }
          .page-template-template_about .team-modal .modal-body .inner-wrp .right-content .inner-content .linkedin-link a {
            display: flex;
            align-items: center;
            font-size: 14px;
            color: #000000; }
            .page-template-template_about .team-modal .modal-body .inner-wrp .right-content .inner-content .linkedin-link a img {
              width: 20px;
              margin-right: 10px; }

/**
 * Careers page style
 */
.page-template-template_careers #page-hero {
  min-height: 75vh;
  height: unset;
  padding-bottom: 8rem; }
  .page-template-template_careers #page-hero .left-column {
    padding-top: 7vh;
    width: 44%; }
    @media (max-width: 999px) {
      .page-template-template_careers #page-hero .left-column {
        width: 100%; } }
    .page-template-template_careers #page-hero .left-column p b {
      color: #002760; }
  .page-template-template_careers #page-hero .right-column img {
    margin-top: -5vh; }
    @media (max-width: 992px) {
      .page-template-template_careers #page-hero .right-column img {
        margin-top: 0; } }
.page-template-template_careers .value-section {
  padding-top: 8rem;
  padding-bottom: 8rem; }
  .page-template-template_careers .value-section .sub-title h2 {
    text-align: center;
    margin: 0 0 30px 0;
    position: relative;
    padding: 0 0 30px 0;
    font-weight: 600; }
    .page-template-template_careers .value-section .sub-title h2:after {
      width: 60px;
      height: 5px;
      background: #E67300;
      display: block;
      content: "";
      position: absolute;
      bottom: 0;
      left: calc(50% - 30px); }
  .page-template-template_careers .value-section .results {
    padding-top: 4rem; }
    .page-template-template_careers .value-section .results .each .each-wrp {
      margin-bottom: 6rem;
      min-height: 250px; }
      @media (max-width: 1200px) {
        .page-template-template_careers .value-section .results .each .each-wrp {
          min-height: 280px; } }
      @media (max-width: 999px) {
        .page-template-template_careers .value-section .results .each .each-wrp {
          min-height: unset; } }
      .page-template-template_careers .value-section .results .each .each-wrp .title-part {
        display: flex;
        align-items: center;
        margin-bottom: 30px; }
        @media (max-width: 999px) {
          .page-template-template_careers .value-section .results .each .each-wrp .title-part {
            justify-content: center; } }
        .page-template-template_careers .value-section .results .each .each-wrp .title-part img {
          width: 50px; }
        .page-template-template_careers .value-section .results .each .each-wrp .title-part p {
          font-size: 22px;
          color: #002760;
          font-weight: 600;
          margin: 0;
          margin-left: 15px; }
.page-template-template_careers .our-perks-section {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #EAF1FC; }
  .page-template-template_careers .our-perks-section .sub-title h2 {
    text-align: center;
    margin: 0 0 30px 0;
    position: relative;
    padding: 0 0 30px 0;
    font-weight: 600; }
    .page-template-template_careers .our-perks-section .sub-title h2:after {
      width: 60px;
      height: 5px;
      background: #E67300;
      display: block;
      content: "";
      position: absolute;
      bottom: 0;
      left: calc(50% - 30px); }
  .page-template-template_careers .our-perks-section .repeater .each .each-wrp {
    display: flex;
    align-items: center;
    margin-bottom: 30px; }
    .page-template-template_careers .our-perks-section .repeater .each .each-wrp .img-wrp {
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center; }
      .page-template-template_careers .our-perks-section .repeater .each .each-wrp .img-wrp img {
        width: 40px; }
    .page-template-template_careers .our-perks-section .repeater .each .each-wrp p {
      margin: 0;
      margin-left: 15px;
      color: #002760;
      font-size: 20px;
      font-weight: 600; }
.page-template-template_careers .logo-section {
  padding-top: 12rem;
  padding-bottom: 8rem; }
  @media (max-width: 999px) {
    .page-template-template_careers .logo-section .repeater .each .each-wrp {
      margin-bottom: 3rem; } }
  .page-template-template_careers .logo-section .repeater .each .each-wrp .img-wrp img {
    height: 200px;
    margin-left: auto;
    margin-right: auto; }
.page-template-template_careers .jobs-section {
  padding-top: 8rem;
  padding-bottom: 8rem; }
  .page-template-template_careers .jobs-section .sub-title h2 {
    text-align: center;
    margin: 0 0 30px 0;
    position: relative;
    padding: 0 0 30px 0;
    font-weight: 600; }
    .page-template-template_careers .jobs-section .sub-title h2:after {
      width: 60px;
      height: 5px;
      background: #E67300;
      display: block;
      content: "";
      position: absolute;
      bottom: 0;
      left: calc(50% - 30px); }
  .page-template-template_careers .jobs-section .jobs {
    padding-top: 4rem; }
    .page-template-template_careers .jobs-section .jobs .table td {
      border-top: none;
      border-bottom: 1px solid lightgrey;
      padding: 25px 8px;
      vertical-align: bottom; }
    .page-template-template_careers .jobs-section .jobs .table .job-title-part p {
      margin: 0;
      font-size: 12px;
      color: #2E82FF;
      font-weight: 600; }
    .page-template-template_careers .jobs-section .jobs .table .job-title-part .job-title a {
      font-size: 22px;
      color: #002760;
      font-weight: 600; }
      .page-template-template_careers .jobs-section .jobs .table .job-title-part .job-title a:hover {
        color: #2E82FF; }
      @media (max-width: 768px) {
        .page-template-template_careers .jobs-section .jobs .table .job-title-part .job-title a {
          font-size: 14px; } }
    .page-template-template_careers .jobs-section .jobs .table .location {
      width: 15%; }
      .page-template-template_careers .jobs-section .jobs .table .location p {
        margin: 0;
        font-size: 20px;
        color: #002760; }
        @media (max-width: 768px) {
          .page-template-template_careers .jobs-section .jobs .table .location p {
            font-size: 14px; } }
        @media (max-width: 400px) {
          .page-template-template_careers .jobs-section .jobs .table .location p {
            font-size: 12px; } }
      .page-template-template_careers .jobs-section .jobs .table .location img {
        width: 20px;
        float: left;
        margin-right: 15px; }
        @media (max-width: 768px) {
          .page-template-template_careers .jobs-section .jobs .table .location img {
            font-size: 14px;
            width: 15px;
            margin-right: 5px; } }
        @media (max-width: 400px) {
          .page-template-template_careers .jobs-section .jobs .table .location img {
            font-size: 12px;
            width: 12px; } }
      @media (max-width: 992px) {
        .page-template-template_careers .jobs-section .jobs .table .location {
          width: 20%; } }
      @media (max-width: 576px) {
        .page-template-template_careers .jobs-section .jobs .table .location {
          width: 30%; } }
      .page-template-template_careers .jobs-section .jobs .table .location .type-wrp {
        display: none; }
        @media (max-width: 576px) {
          .page-template-template_careers .jobs-section .jobs .table .location .type-wrp {
            display: block;
            color: #002760;
            font-size: 12px;
            padding-top: 5px; } }
    .page-template-template_careers .jobs-section .jobs .table .type {
      font-size: 20px;
      color: #002760;
      text-align: right;
      width: 15%; }
      @media (max-width: 992px) {
        .page-template-template_careers .jobs-section .jobs .table .type {
          width: 20%; } }
      @media (max-width: 768px) {
        .page-template-template_careers .jobs-section .jobs .table .type {
          font-size: 12px; } }
      @media (max-width: 576px) {
        .page-template-template_careers .jobs-section .jobs .table .type {
          display: none; } }

#posts-loop .loadMoreBtn {
  display: none !important; }

/**
 * Single Post page
 */
.single-post-page {
  padding-top: 86px; }
  @media (max-width: 999px) {
    .single-post-page {
      padding-top: 82px; } }
  .single-post-page .single-post-wrp {
    background-color: #2E82FC; }
    .single-post-page .single-post-wrp .top-content {
      padding-top: 6rem;
      padding-bottom: 4rem; }
      @media (max-width: 768px) {
        .single-post-page .single-post-wrp .top-content {
          padding-top: 4rem; } }
      .single-post-page .single-post-wrp .top-content .btn-wrp {
        padding-bottom: 30px; }
        .single-post-page .single-post-wrp .top-content .btn-wrp a {
          padding: 8px 20px;
          border: 1px solid #fff;
          color: #fff;
          font-size: 18px;
          border-radius: 30px;
          position: relative; }
          .single-post-page .single-post-wrp .top-content .btn-wrp a i {
            margin-right: 10px;
            font-size: 14px; }
          .single-post-page .single-post-wrp .top-content .btn-wrp a:hover {
            background-color: #fff;
            color: #2E82FC; }
      .single-post-page .single-post-wrp .top-content .title-part h1 {
        font-size: 45px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 10px; }
        @media (max-width: 768px) {
          .single-post-page .single-post-wrp .top-content .title-part h1 {
            font-size: 32px; } }
      .single-post-page .single-post-wrp .top-content .post-info p {
        font-size: 16px;
        color: #fff;
        text-transform: uppercase;
        font-weight: 600; }
    .single-post-page .single-post-wrp .post-content-wrp {
      padding-top: 2rem;
      padding-bottom: 4rem;
      background-color: #fff;
      border-top-right-radius: 250px; }
      @media (max-width: 768px) {
        .single-post-page .single-post-wrp .post-content-wrp {
          border-top-right-radius: 125px; } }
      .single-post-page .single-post-wrp .post-content-wrp .breadcrumbs {
        padding-bottom: 2rem; }
      .single-post-page .single-post-wrp .post-content-wrp .img-wrp {
        display: block;
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 56.25%;
        margin-bottom: 3rem; }
        .single-post-page .single-post-wrp .post-content-wrp .img-wrp img {
          position: absolute;
          width: 100%;
          height: 100%;
          top: 0;
          left: 0;
          object-fit: cover;
          object-position: center center; }
      .single-post-page .single-post-wrp .post-content-wrp .post-content {
        font-size: 18px;
        font-weight: 300;
        color: #00183E;
        padding-top: 15px;
        padding-bottom: 15px; }
        .single-post-page .single-post-wrp .post-content-wrp .post-content p {
          font-size: 18px;
          font-weight: 300;
          color: #00183E;
          margin-bottom: 15px; }
        .single-post-page .single-post-wrp .post-content-wrp .post-content ul {
          list-style: disc;
          padding-left: 30px;
          margin-bottom: 15px; }
        .single-post-page .single-post-wrp .post-content-wrp .post-content ol {
          list-style: decimal;
          padding-left: 30px;
          margin-bottom: 15px; }
      .single-post-page .single-post-wrp .post-content-wrp .author-info {
        display: flex;
        align-items: center;
        padding-top: 30px; }
        .single-post-page .single-post-wrp .post-content-wrp .author-info img {
          border-radius: 50%;
          flex-shrink: 0;
          margin-right: 15px;
          width: 50px; }
        .single-post-page .single-post-wrp .post-content-wrp .author-info .author-content p {
          font-size: 16px;
          margin-bottom: 0; }
      .single-post-page .single-post-wrp .post-content-wrp .btn-wrp {
        padding-top: 4rem; }
        .single-post-page .single-post-wrp .post-content-wrp .btn-wrp a {
          padding: 8px 20px;
          border: 1px solid #05295E;
          color: #05295E;
          font-size: 18px;
          border-radius: 30px;
          position: relative; }
          .single-post-page .single-post-wrp .post-content-wrp .btn-wrp a i {
            margin-right: 10px;
            font-size: 14px; }
          .single-post-page .single-post-wrp .post-content-wrp .btn-wrp a:hover {
            background-color: #2E82FC;
            border: 1px solid #2E82FC;
            color: #fff; }
  .single-post-page .related-posts-wrp {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #C5DDFE; }
    @media (max-width: 768px) {
      .single-post-page .related-posts-wrp {
        padding-top: 4rem;
        padding-bottom: 4rem; } }
    .single-post-page .related-posts-wrp .title-part h2 {
      font-size: 45px;
      font-weight: 500;
      color: #022760;
      margin-bottom: 30px; }
      @media (max-width: 768px) {
        .single-post-page .related-posts-wrp .title-part h2 {
          font-size: 32px; } }
    .single-post-page .related-posts-wrp .each {
      margin-bottom: 24px; }
      .single-post-page .related-posts-wrp .each .each-wrp {
        height: 100%;
        background-color: #fff;
        position: relative; }
        .single-post-page .related-posts-wrp .each .each-wrp .img-wrp {
          display: block;
          width: 100%;
          height: 0;
          padding-bottom: 56.25%;
          position: relative; }
          .single-post-page .related-posts-wrp .each .each-wrp .img-wrp img {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            object-fit: cover;
            object-position: center center; }
        .single-post-page .related-posts-wrp .each .each-wrp .post-detail {
          background-color: #fff;
          padding: 30px;
          padding-bottom: 60px; }
          .single-post-page .related-posts-wrp .each .each-wrp .post-detail .post-date p {
            font-size: 16px;
            font-weight: 600;
            color: #2E82FF;
            text-transform: uppercase;
            margin-bottom: 10px; }
          .single-post-page .related-posts-wrp .each .each-wrp .post-detail .post-title h3 {
            font-size: 24px;
            color: #022760;
            font-weight: 400; }
            .single-post-page .related-posts-wrp .each .each-wrp .post-detail .post-title h3 a {
              color: #022760; }
            @media (max-width: 768px) {
              .single-post-page .related-posts-wrp .each .each-wrp .post-detail .post-title h3 {
                font-size: 20px; } }
          .single-post-page .related-posts-wrp .each .each-wrp .post-detail .btn-wrp {
            position: absolute;
            width: 100%;
            padding: 0 30px;
            left: 0;
            bottom: 30px; }
            .single-post-page .related-posts-wrp .each .each-wrp .post-detail .btn-wrp a {
              font-size: 16px;
              font-weight: 500;
              color: #022760;
              text-transform: uppercase;
              padding-bottom: 3px;
              border-bottom: 2px solid #05295E; }
              .single-post-page .related-posts-wrp .each .each-wrp .post-detail .btn-wrp a:hover {
                color: #982B80;
                border-color: #982B80; }

/**
 * Single Jobs Page
 */
.single-jobs-page {
  padding-top: 86px; }
  @media (max-width: 999px) {
    .single-jobs-page {
      padding-top: 82px; } }
  .single-jobs-page .single-post-wrp {
    background-color: #2E82FC; }
    .single-jobs-page .single-post-wrp .top-content {
      padding-top: 6rem;
      padding-bottom: 4rem; }
      @media (max-width: 768px) {
        .single-jobs-page .single-post-wrp .top-content {
          padding-top: 4rem; } }
      .single-jobs-page .single-post-wrp .top-content .btn-wrp {
        padding-bottom: 30px; }
        .single-jobs-page .single-post-wrp .top-content .btn-wrp a {
          padding: 8px 20px;
          border: 1px solid #fff;
          color: #fff;
          font-size: 18px;
          border-radius: 30px;
          position: relative; }
          .single-jobs-page .single-post-wrp .top-content .btn-wrp a i {
            margin-right: 10px;
            font-size: 14px; }
          .single-jobs-page .single-post-wrp .top-content .btn-wrp a:hover {
            background-color: #fff;
            color: #2E82FC; }
      .single-jobs-page .single-post-wrp .top-content .title-part h1 {
        font-size: 45px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 10px; }
        @media (max-width: 768px) {
          .single-jobs-page .single-post-wrp .top-content .title-part h1 {
            font-size: 32px; } }
      .single-jobs-page .single-post-wrp .top-content .post-info p {
        font-size: 16px;
        color: #fff;
        text-transform: uppercase;
        font-weight: 600; }
        .single-jobs-page .single-post-wrp .top-content .post-info p span {
          padding-left: 15px; }
    .single-jobs-page .single-post-wrp .post-content-wrp {
      padding-top: 2rem;
      padding-bottom: 4rem;
      background-color: #fff;
      border-top-right-radius: 250px; }
      @media (max-width: 768px) {
        .single-jobs-page .single-post-wrp .post-content-wrp {
          border-top-right-radius: 125px; } }
      .single-jobs-page .single-post-wrp .post-content-wrp .img-wrp {
        display: block;
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 56.25%;
        margin-bottom: 3rem; }
        .single-jobs-page .single-post-wrp .post-content-wrp .img-wrp img {
          position: absolute;
          width: 100%;
          height: 100%;
          top: 0;
          left: 0;
          object-fit: cover;
          object-position: center center; }
      .single-jobs-page .single-post-wrp .post-content-wrp .post-content {
        font-size: 18px;
        font-weight: 300;
        color: #022760;
        padding-top: 15px;
        padding-bottom: 15px; }
        .single-jobs-page .single-post-wrp .post-content-wrp .post-content p {
          font-size: 18px;
          font-weight: 300;
          color: #022760; }
        .single-jobs-page .single-post-wrp .post-content-wrp .post-content h3 {
          font-size: 27px;
          color: #022760;
          font-weight: 500;
          padding-top: 30px; }
          @media (max-width: 768px) {
            .single-jobs-page .single-post-wrp .post-content-wrp .post-content h3 {
              font-size: 22px; } }
      .single-jobs-page .single-post-wrp .post-content-wrp .author-info {
        display: flex;
        align-items: center;
        padding-top: 30px; }
        .single-jobs-page .single-post-wrp .post-content-wrp .author-info img {
          border-radius: 50%;
          flex-shrink: 0;
          margin-right: 15px;
          width: 50px; }
        .single-jobs-page .single-post-wrp .post-content-wrp .author-info .author-content p {
          font-size: 16px;
          margin-bottom: 0; }
      .single-jobs-page .single-post-wrp .post-content-wrp .btn-wrp a {
        padding: 8px 20px;
        border: 1px solid #05295E;
        color: #05295E;
        font-size: 18px;
        border-radius: 30px;
        position: relative; }
        .single-jobs-page .single-post-wrp .post-content-wrp .btn-wrp a i {
          margin-right: 10px;
          font-size: 14px; }
        .single-jobs-page .single-post-wrp .post-content-wrp .btn-wrp a:hover {
          background-color: #2E82FC;
          border: 1px solid #2E82FC;
          color: #fff; }
  .single-jobs-page .related-posts-wrp {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: #C5DDFE; }
    .single-jobs-page .related-posts-wrp .title-part h2 {
      font-size: 45px;
      font-weight: 500;
      color: #022760;
      margin-bottom: 30px; }
    .single-jobs-page .related-posts-wrp .each {
      margin-bottom: 24px; }
      .single-jobs-page .related-posts-wrp .each .each-wrp {
        height: 100%;
        background-color: #fff;
        position: relative; }
        .single-jobs-page .related-posts-wrp .each .each-wrp .img-wrp {
          display: block;
          width: 100%;
          height: 0;
          padding-bottom: 56.25%;
          position: relative; }
          .single-jobs-page .related-posts-wrp .each .each-wrp .img-wrp img {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            object-fit: cover;
            object-position: center center; }
        .single-jobs-page .related-posts-wrp .each .each-wrp .post-detail {
          background-color: #fff;
          padding: 30px;
          padding-bottom: 60px; }
          .single-jobs-page .related-posts-wrp .each .each-wrp .post-detail .post-date p {
            font-size: 16px;
            font-weight: 600;
            color: #2E82FF;
            text-transform: uppercase;
            margin-bottom: 10px; }
          .single-jobs-page .related-posts-wrp .each .each-wrp .post-detail .post-title h3 {
            font-size: 24px;
            color: #022760;
            font-weight: 400; }
            .single-jobs-page .related-posts-wrp .each .each-wrp .post-detail .post-title h3 a {
              color: #022760; }
          .single-jobs-page .related-posts-wrp .each .each-wrp .post-detail .btn-wrp {
            position: absolute;
            width: 100%;
            padding: 0 30px;
            left: 0;
            bottom: 30px; }
            .single-jobs-page .related-posts-wrp .each .each-wrp .post-detail .btn-wrp a {
              font-size: 16px;
              font-weight: 500;
              color: #022760;
              text-transform: uppercase;
              padding-bottom: 3px;
              border-bottom: 2px solid #05295E; }
              .single-jobs-page .related-posts-wrp .each .each-wrp .post-detail .btn-wrp a:hover {
                color: #982B80;
                border-color: #982B80; }

/**
 * Footer Style
 */
.site-footer.old {
  background-color: #fff;
  padding-top: 3rem;
  padding-bottom: 3rem;
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.1); }
  .site-footer.old .site-branding {
    flex-shrink: 0; }
    .site-footer.old .site-branding img {
      width: 160px;
      flex-shrink: 0; }
    @media (max-width: 992px) {
      .site-footer.old .site-branding {
        margin-bottom: 30px; } }
  .site-footer.old .footer-copy p {
    font-size: 13px;
    font-weight: 300;
    color: #022760;
    margin-bottom: 0; }
  @media (max-width: 992px) {
    .site-footer.old .footer-copy {
      margin-bottom: 30px; } }
  .site-footer.old .mobile-footer-copy {
    display: none; }
  .site-footer.old .social-links .social-links-wrp li {
    display: inline-block;
    margin: 0 5px 0 0;
    text-align: center; }
    .site-footer.old .social-links .social-links-wrp li a {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #022760;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 5px;
      color: #fff; }
      .site-footer.old .social-links .social-links-wrp li a i {
        color: #fff;
        line-height: 30px;
        display: block; }
        .site-footer.old .social-links .social-links-wrp li a i:before {
          font-size: 16px; }
      .site-footer.old .social-links .social-links-wrp li a:hover {
        opacity: 0.8; }
    .site-footer.old .social-links .social-links-wrp li.email-icon {
      display: none; }
      @media (max-width: 768px) {
        .site-footer.old .social-links .social-links-wrp li.email-icon {
          display: block;
          float: right; } }
  @media (max-width: 992px) {
    .site-footer.old .social-links {
      margin-bottom: 30px; } }
  .site-footer.old .address-info p {
    font-size: 13px;
    font-weight: 300;
    color: #022760;
    margin-bottom: 5px; }
    .site-footer.old .address-info p a {
      color: #022760; }
      .site-footer.old .address-info p a:hover {
        text-decoration: underline; }
    .site-footer.old .address-info p.sub-title {
      font-weight: 500; }
  @media (max-width: 992px) {
    .site-footer.old .address-info {
      margin-bottom: 30px; } }
  .site-footer.old .footer-menu ul li a {
    font-size: 13px;
    font-weight: 500;
    color: #022760; }
    .site-footer.old .footer-menu ul li a:hover {
      opacity: 0.8; }
  @media (max-width: 768px) {
    .site-footer.old .site-branding {
      display: none; }
    .site-footer.old .footer-copy {
      display: none; }
    .site-footer.old .mobile-footer-copy {
      display: block; }
      .site-footer.old .mobile-footer-copy .footer-copy {
        display: block; }
    .site-footer.old .address-info {
      display: none; }
    .site-footer.old .footer-menu ul li {
      display: inline-block;
      margin-right: 10px; }
      .site-footer.old .footer-menu ul li a {
        font-size: 16px; } }

.site-footer {
  background-color: #002760;
  padding-top: 3rem;
  padding-bottom: 3rem;
  box-shadow: 0 0px 8px rgba(0, 0, 0, 0.1); }
  .site-footer .site-branding {
    flex-shrink: 0; }
    .site-footer .site-branding img {
      width: 160px;
      flex-shrink: 0;
      filter: grayscale(1) contrast(1) brightness(3); }
    @media (max-width: 992px) {
      .site-footer .site-branding {
        margin-bottom: 30px; } }
  .site-footer .footer-copy p {
    font-size: 13px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 0; }
  @media (max-width: 992px) {
    .site-footer .footer-copy {
      margin-bottom: 30px; } }
  .site-footer .mobile-footer-copy {
    display: none; }
  .site-footer .social-links .social-links-wrp li {
    display: inline-block;
    margin: 0 5px 0 0;
    text-align: center; }
    .site-footer .social-links .social-links-wrp li a {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 5px;
      color: #002760; }
      .site-footer .social-links .social-links-wrp li a i {
        color: #fff;
        line-height: 30px;
        display: block; }
        .site-footer .social-links .social-links-wrp li a i:before {
          font-size: 16px; }
      .site-footer .social-links .social-links-wrp li a:hover {
        opacity: 0.8; }
    .site-footer .social-links .social-links-wrp li.email-icon {
      display: none; }
      @media (max-width: 768px) {
        .site-footer .social-links .social-links-wrp li.email-icon {
          display: block;
          float: right; } }
  @media (max-width: 992px) {
    .site-footer .social-links {
      margin-bottom: 30px; } }
  .site-footer .address-info p {
    font-size: 13px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 5px; }
    .site-footer .address-info p a {
      color: #fff; }
      .site-footer .address-info p a:hover {
        text-decoration: underline; }
    .site-footer .address-info p.sub-title {
      font-weight: 500; }
  @media (max-width: 992px) {
    .site-footer .address-info {
      margin-bottom: 30px; } }
  .site-footer .footer-menu ul li a {
    font-size: 13px;
    font-weight: 500;
    color: #fff; }
    .site-footer .footer-menu ul li a:hover {
      opacity: 0.8; }
  @media (max-width: 768px) {
    .site-footer .site-branding {
      display: none; }
    .site-footer .footer-copy {
      display: none; }
    .site-footer .mobile-footer-copy {
      display: block; }
      .site-footer .mobile-footer-copy .footer-copy {
        display: block; }
    .site-footer .address-info {
      display: none; }
    .site-footer .footer-menu ul li {
      display: inline-block;
      margin-right: 10px; }
      .site-footer .footer-menu ul li a {
        font-size: 16px; } }

/*# sourceMappingURL=main.css.map */
