:root {
    --light-blue: #0061e6;
    --dark-blue: #0c3058;
    --dark-gray: rgb(195, 207, 231);
    --light-gray: #f0f4fa;
    --white: #fff;
    --trans: all 0.5s ease;
    --font: "Rubik", serif;
    --light-grd: linear-gradient(
      180deg,
      rgba(240, 244, 250, 1) 0%,
      rgba(249, 250, 253, 1) 100%
    );
    --dark-grd: linear-gradient(
      180deg,
      rgba(240, 244, 250, 1) 0%,
      rgb(232, 239, 249) 100%
    );
    --gb-grd: linear-gradient(
      90deg,
      rgba(92, 185, 105, 1) 0%,
      rgba(12, 176, 238, 1) 100%
    );
  }
  body {
    font-family: var(--font);
    color: var(--dark-blue);
  }
  .container-xl {
    max-width: 1170px;
  }
  a {
    text-decoration: none;
  }
  img {
    max-width: 100%;
  }
  .btn-primary {
    background-color: var(--light-blue);
    color: var(--white);
    font-weight: 500;
    border-radius: 8px;
  }
  .btn-lg {
    padding: 13px 24px;
  }
  .py-6 {
    padding-top: 50px;
    padding-bottom: 50px;
    @media (max-width: 767px) {
      padding-top: 40px;
      padding-bottom: 40px;
    }
  }
  .custom_link {
    color: #0068f5;
    font-weight: 500;
    &:hover {
      text-decoration: underline;
    }
  }
  /* form-elements */
  .choices {
    direction: rtl;
    text-align: right;
  }
  .choices__list--dropdown {
    text-align: right;
  }
  .choices[data-type*="select-one"]::after {
    right: auto;
    left: 12px;
    border: 0;
    background: url(../images/emp/arrow-down.svg) no-repeat;
    height: 20px;
    width: 20px;
    background-size: 100%;
    top: 50%;
    translate: 0 -50%;
    margin: 0 !important;
    rotate: 0deg;
  }
  .choices[data-type*="select-one"].is-open::after {
    rotate: -180deg;
  }
  .form-control,
  .choices__inner {
    border: 1px solid rgba(187, 187, 203, 1);
    opacity: 1;
    border-radius: 8px !important;
    background-color: rgba(255, 255, 255, 1);
    height: 48px;
    font-size: 16px;
  }
  label {
    font-size: 16px;
    font-weight: 500;
  }
  .choices__list--dropdown,
  .choices__list[aria-expanded] {
    border-radius: 8px !important;
  }
  /* header */
  header {
    background-color: var(--light-blue);
    position: sticky;
    top:0;
    z-index: 12;
    .container-fluid{
        position: relative;
        z-index: 8;
        background: var(--light-blue);
    }
    .header_row {
      max-width: 1440px;
      margin: auto;
      display: flex;
        position: relative;
      height: 70px;
      line-height: 70px;
      .main_logo {
        max-width: 212px;
        text-align: center;
        width: 100%;
        padding: 0 15px;
        @media (max-width: 1439px) {
          max-width: 180px;
        }
      }
      .call_btn {
        max-width: 140px;
        width: 100%;
        border-left: 1px solid rgba(195, 207, 231, 50%);
        border-right: 1px solid rgba(195, 207, 231, 50%);
        text-align: center;
        font-size: 28px;
        &:hover {
          color: var(--light-gray);
        }
        @media (max-width: 1439px) {
          font-size: 20px;
          max-width: 120px;
        }
      }
      .navbar {
        gap: 20px;
        margin: 0 auto;
        @media (max-width: 1439px) {
          gap: 10px;
        }
      }
      .nav {
        display: flex;
        gap: 10px;
        li {
          a {
            font-size: 20px;
            padding: 12px 15px;
            font-weight: 700;
            border: 1px solid transparent;
            border-radius: 8px;
            transition: var(--trans);
            &.active-menu{
                color: var(--white);
                /*border-color: #6298e6;*/
            }
            &:hover, &:focus, &:active {
              color: var(--white);
              border-color: #6298e6;
            }
            @media (max-width: 1439px) {
              font-size: 18px;
              padding: 10px 12px;
            }
            @media (max-width: 1350px) {
              font-size: 16px;
            }
          }
        }
      }
      @media (max-width: 1140px) {
        display: none;
      }
    }
    .btn {
      background-color: var(--white);
      color: var(--light-blue);
      border-radius: 50px;
      transition: var(--trans);
      padding: 5px 14px;
      font-weight: bold;
      &:hover {
        background-color: var(--light-gray);
      }
    }
    a {
      color: var(--white);
    }
    .search_btn {
      width: 65px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 0;
    }
    .secondary_logo {
      border-right: 1px solid rgba(195, 207, 231, 50%);
      border-left: 1px solid rgba(195, 207, 231, 50%);
      max-width: 295px;
      padding: 0 20px;
      width: 100%;
      text-align: center;
      margin-right: auto;
      @media (max-width: 1350px) {
        max-width: 190px;
        padding: 0 15px;
      }
    }
    .overlay_bg{
        background:rgba(0 0 0 / 50%);
        backdrop-filter: blur(10px);
        position: fixed;
        height:100% !important;
        width:100%;
        right:0;
        top:0;
        z-index: 2;
        opacity: 0;
        visibility: hidden;
        transition: var(--trans);
        &.show{
            opacity: 1;
            visibility: visible;
        }
    }
  }
  .mobile_header {
    display: none;
    margin: auto;
    height: 60px;
    line-height: 60px;
    justify-content: space-between;
    gap: 12px;
    padding: 0 10px;
    .logo_group {
      display: flex;
      align-items: center;
      gap: 9px;
      max-width: 200px;
      margin: auto;
      width: 100%;
    }
    .search_btn {
      width: 24px;

      img {
        width: 24px;
        height: 24px;
      }
    }
    @media (max-width: 1140px) {
      display: flex;
    }
    .mobile_nav {
      position: fixed;
      top: 60px;
      max-width: 320px;
      width: 100%;
      height: 100% !important;
      right: 0;
      background-image: var(--dark-grd);
      z-index: 9;
    translate: 100% 0;
    transition: var(--trans);
        &.show{
            translate: 0;
        }
      @media (max-width: 480px) {
        max-width: 100%;
      }
      ul {
        margin: 0;

        li {
          line-height: normal;
          a {
            padding: 15px 10px;
            font-size: 18px;
            font-weight: 700;
            height: auto;
            color: var(--dark-blue);
            border-bottom: 1px solid #c3cfe7;
            border-radius: 0;
            display: block;
            &.active-menu{
                color: var(--light-blue);
            }
          }
        }
      }
      .btn_group {
        padding: 15px;
        gap: 10px;
        display: flex;
        .btn-primary {
          background: var(--light-blue);
          color: var(--white);
        }
        .btn {
          flex: 0 0 44%;
          white-space: nowrap;
        }
      }
    }
  }
  /* hero-section */
  .hero_sec {
    height: fit-content;
    h1 {
      font-size: 28px;
      margin: 0 0 20px;
    }
    p {
      font-size: 20px;
      line-height: 26px;
    }
    .container-xl {
      position: absolute;
      top: 50%;
      width: 100%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
    .hero_thumb {
      position: static;
      height: 100%;
      width: 100%;
      right: 0;
      top: 0;
    }
    .btn-primary {
      margin-top: 30px;
    }

    @media (max-width: 1140px) {
      p {
        font-size: 18px;
      }
      h1 {
        font-size: 40px;
        margin: 0 0 10px;
      }
      .btn-primary {
        margin-top: 15px;
      }
    }

    @media (max-width: 883px) {
      .container-xl {
        position: static;
        transform: none;
      }

      .hero_thumb {
        position: static;
        margin: 0 0 20px;
      }
      h1 {
        font-size: 24px;
      }
      p {
        font-size: 16px;
        line-height: 22px;
      }
      .btn-primary {
        font-size: 16px;
        padding: 10px 12px;
        margin-top: 20px;
      }
    }
    @media (max-width: 480px) {
      .btn-primary {
        /* max-width: 283px; */
        width: 100%;
      }
    }
  }
  .custom_title {
    background: url("../images/emp/triangle-shape.svg") no-repeat;
    background-size: 220px 48px;
    padding: 0 0;
    line-height: normal;
    height: 48px;
    width: 220px;
    text-align: center;
    line-height: 40px;
    font-size: 22px;
    background-position: center;
    right: -7px;
    position: absolute;
    top: 20px;
    z-index: 9;
    strong {
      color: var(--dark-blue);
      padding-left: 10px;
    }
    @media (max-width: 991px) {
      font-size: 16px;
      width: 143px;
      background-size: 100%;
    }
  }
  /* advantage-sec */
  .sec_title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0px;
    text-align: center;
    margin: 0 0 40px;
    @media (max-width: 767px) {
      font-size: 24px;
      margin: 0 0 20px;
    }
  }
  .adv_row {
    flex-wrap: wrap;
    .adv_card {
      flex: 0 0 20%;
      text-align: center;
      img {
        width: 120px;
        height: 120px;
      }
      h3 {
        font-size: 26px;
        font-weight: 500;
        margin-top: 8px;
      }
    }
    @media (max-width: 991px) {
      .adv_card {
        h3 {
          font-size: 20px;
        }
        img {
          width: 100px;
          height: 100px;
        }
      }
    }
    @media (max-width: 767px) {
      gap: 20px;
      .adv_card {
        flex: 0 0 50%;
        display: flex;
        align-items: center;
        gap: 10px;
        h3 {
          font-size: 20px;
          text-align: right;
          br {
            display: none;
          }
        }
        img {
          width: 52px;
          height: 52px;
        }
      }
    }
    @media (max-width: 480px) {
      gap: 12px;
      .adv_card {
        flex: 0 0 100%;
      }
    }
  }
  /* advantages-sec */
  .adv_sec2 {
    background-image: var(--light-grd);
	a {
		color: var(--dark-blue);
	}
    .adv_card2 {
      border-radius: 8px;
      border: 1px solid rgba(220, 223, 234, 1);
      box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.06);
      background-color: rgba(255, 255, 255, 1);
      padding: 23px;
      gap: 12px;
      h4 {
        font-size: 26px;
        font-weight: 500;
      }
      p {
        font-size: 18px;
      }
      @media (max-width: 991px) {
        h4 {
          font-size: 18px;
        }
        p {
          font-size: 16px;
        }
        img {
          width: 60px;
          height: 60px;
        }
      }
      @media (max-width: 767px) {
        justify-content: flex-start !important;
        img {
          width: 40px;
          height: 40px;
        }
      }
    }
  }
  /* partner-sec */
  .review_sec {
    background-image: var(--dark-grd);
    .review_card {
      border-radius: 8px;
      border: 1px solid rgba(220, 223, 234, 1);
      box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.06);
      opacity: 1;
      background-color: rgba(255, 255, 255, 1);
      padding: 20px 50px;
	  min-height: 242px;
    }
    .card_thumb {
      max-width: 130px;
      margin: auto auto 10px;
    }
    p {
      margin: 0 0 10px;
      font-size: 18px;
      line-height: 24px;
    }
    @media (max-width: 1024px) {
      .review_card {
        padding: 25px 17px;
      }
    }
  }
  /* swiper-css */

  .swiper-button-next,
  .swiper-button-prev {
    height: 30px;
    background: var(--light-blue);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    width: 30px;
    margin: auto 0px auto -40px;

    &:after {
      color: #fff;
      font-size: 14px;
      text-indent: 2px;
    }
    @media (max-width: 1300px) {
      margin: auto 0px auto 12px;
    }
    @media (max-width: 767px) {
      display: none;
    }
  }
  .swiper-button-next {
    margin: auto -40px auto 0 !important;
    &:after {
      text-indent: -2px !important;
    }
    @media (max-width: 1300px) {
      margin: auto 12px auto 0 !important;
    }
  }
  .swiper-pagination-bullet {
    margin: 0 2px !important;
  }
  /* contact-sec */
  .contact_sec {
    background-image: var(--gb-grd);
    .sec_heading {
      margin: 0 0 20px;
      color: var(--white);
      h3 {
        font-size: 48px;
        font-weight: 700;
        margin: 0;
      }
      p {
        font-size: 28px;
      }
    }
    form {
      max-width: 751px;
      margin: auto;
      .form-group {
        margin: 0 0 15px;
      }
      label {
        color: var(--white);
      }
      .btn-outline-primary {
        color: var(--white);
        border-color: var(--white);
        line-height: 24px;
        height: 48px;
        &:hover,
        &:active,
        &:focus {
          background-color: var(--light-blue);
          border-color: var(--light-blue);
        }
      }
      .call_text {
        display: block;
        color: var(--white);
        font-size: 22px;
        width: fit-content;
        margin: 20px auto 0;
        &:hover,
        &:active,
        &:focus {
          text-decoration: underline;
        }
      }
    }
    @media (max-width: 767px) {
      .form-group {
        margin: 0 0 10px;
      }
      .btn {
        margin-top: 10px;
      }
      .sec_heading {
        margin: 0 0 10px;
        h3 {
          font-size: 28px;
        }
        p {
          font-size: 18px;
          margin: 0;
        }
      }
      form {
        .call_text {
          font-size: 16px;
          margin-top: 18px;
        }
      }
    }
  }
  /* footer */
  footer {
    overflow: hidden;
    background: var(--light-gray);
    padding: 40px 0 0;
    .foot_card {
      h4 {
        font-size: 18px;
        font-weight: bold;
      }
    }
    ul {
      line-height: 28px;
      li {
        a {
          color: var(--dark-blue);
          transition: var(--trans);
          &:hover,
          &:focus,
          &:active {
            color: var(--light-blue);
          }
        }
      }
    }
    .foot_card.border-bottom {
      border-width: 0px !important;
    }
    @media (max-width: 767px) {
      padding: 0;
      .container-xl {
        padding: 0 0;
      }
      .foot_card.border-bottom {
        border-width: 1px !important;
      }
      .foot_card {
        border-color: var(--dark-gray) !important;
        h4 {
          border-top: 1px solid var(--dark-gray);
          padding: 15px 12px;
          margin: 0;
          &:before {
            content: "";
            background: url("../images/emp/plus-square.svg") no-repeat;
            height: 18px;
            width: 18px;
            display: inline-block;
            vertical-align: middle;
            margin-left: 10px;
          }
          &[aria-expanded="true"] {
            &:before {
              background: url("../images/emp/minus-square.svg") no-repeat;
            }
          }
        }
        ul {
          padding-right: 40px;
          line-height: 40px;
        }
      }
    }
  }
  /* business-info-center */
  .head_sec {
    padding: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    .breadcrumb {
      font-size: 13px;
      li,
      a {
        color: #596377;
      }
    }
  }
  .infoHero_sec {
    h1 {
      font-size: 48px;
      font-weight: 700;
    }
    p {
      font-size: 18px;
    }
    @media (max-width: 767px) {
      h1 {
        font-size: 24px;
      }
      p {
        font-size: 16px;
      }
    }
  }
  /* about-sec */
  .about_sec {
    background-image: var(--dark-grd);
    position: relative;
    h2 {
      font-weight: bold;
      font-size: 28px;
    }
    p {
      font-size: 18px;
    }
    &:after {
      content: "";
      background: url(../images/emp/triangle-rounded-divider.svg) no-repeat center;
      background-size: 100%;
      height: 68px;
      width: 188px;
      position: absolute;
      left: 50%;
      bottom: -25px;
      z-index: 9;
      translate: -50% 0;
    }
    iframe {
      aspect-ratio: 16/9;
    }
    @media (max-width: 767px) {
      h2 {
        font-size: 22px;
        margin: 20px 0px 10px;
      }
      p {
        font-size: 18px;
      }
    }
  }
  /* swiper-v2 */
  .swiper_v2 {
    background-image: var(--gb-grd);
    h2 {
      font-size: 28px;
      color: var(--white);
      margin: 0 0 20px;
      text-align: center;
    }
    .swiper-slide {
      border-radius: 8px;
      box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.06);
      opacity: 1;
      background-color: rgba(255, 255, 255, 1);
    }
    .swiper-v2_card {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 16px;
      max-width: 850px;
      gap: 20px;
      margin: auto;
      .card_thumb {
        width: 45%;
      }
      .card_body {
        width: 60%;
      }
    }
    .swiper-pagination-bullet.swiper-pagination-bullet-active {
      background: var(--light-blue);
    }
    .swiper-pagination-bullet {
      background: var(--white);
      opacity: 1;
    }
    @media (max-width: 991px) {
      .swiper-v2_card {
        padding: 16px 60px;
      }
    }
    @media (max-width: 767px) {
      .swiper-v2_card {
        flex-direction: column;
        padding: 20px;
        max-width: 100%;
        .card_body,
        .card_thumb {
          width: 100%;
        }
      }
      h2 {
        font-size: 22px;
      }
      .swiper-button-next {
        display: flex;
        margin: auto -6px auto 0px !important;
      }
      .swiper-button-prev {
        display: flex;
        margin: auto 0px auto -6px !important;
      }
    }
  }
  /* multiage-sec */
  .multiage_sec {
    background-image: var(--dark-grd);
    h2 {
      font-size: 28px;
      font-weight: bold;
      color: var(--dark-blue);
      margin: 0 0 30px;
      text-align: center;
    }
    .card {
      padding: 23px 16px;
      border-radius: 8px;
      border: 1px solid rgba(220, 223, 234, 1);
      box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.06);
      opacity: 1;
      background-color: rgba(255, 255, 255, 1);
      height: 100%;
      .card_thumb {
        text-align: center;
        margin: 0 0 20px;
        img {
          height: 75px;
          width: 75px;
          aspect-ratio: 1/1;
        }
      }
      .card_body {
		text-align: center;
        h3 {
          font-size: 24px;
          font-weight: 500;
          margin: 0 0 10px;
        }
        p {
          line-height: 22px;
        }
      }
    }
    @media (max-width: 767px) {
      h2 {
        font-size: 22px;
        margin: 0 0 20px;
      }
      .card {
        margin: 0 0 20px;
        .card_thumb {
          img {
            height: 50px;
            width: 50px;
          }
          .card_body {
            h3 {
              font-size: 20px;
            }
          }
        }
        height: auto;
      }
    }
  }
  /* aboutv2 */
  .aboutv2_sec {
    .container-xl {
      max-width: 950px;
    }
    h3 {
      font-size: 24px;
      font-weight: bold;
    }
    p {
      font-size: 18px;
      line-height: 24px;
    }
    @media (max-width: 767px) {
      .card_thumb {
        margin: 0 0 20px;
      }
      h3 {
        font-size: 20px;
      }
    }
  }
  /* tools-sec */
  .tool_sec {
    h2 {
      font-size: 28px;
      font-weight: bold;
      color: var(--dark-blue);
      margin: 0 0 30px;
      text-align: center;
    }
    background-image: var(--dark-grd);
    .tool_card {
      padding: 22px 17px;
      border-radius: 8px;
      border: 1px solid rgba(220, 223, 234, 1);
      box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.06);
      opacity: 1;
      background-color: rgba(255, 255, 255, 1);
      display: flex;
      gap: 20px;
      h4 {
        font-weight: 500;
        font-size: 24px;
      }
    }
	.card_body {
	  color: var(--dark-blue);
	  text-decoration: none;
	}
	a:hover{
	  text-decoration: none;
	}
    @media (max-width: 767px) {
      .card_thumb {
        width: 40px;
      }
      .card_body {
        width: 80%;
      }
      img {
        height: 40px;
        width: 40px;
      }
      .tool_card {
        padding: 20px 15px;
        gap: 10px;
        h4 {
          font-size: 20px;
        }
      }
    }
  }
  /* cta-sec */
  .cta_sec {
    background-image: var(--gb-grd);
    .cta_btn {
      color: var(--white);
      h2 {
        font-size: 48px;
        margin: 0;
      }
      p {
        font-size: 28px;
        margin: 0;
      }
    }
    @media (max-width: 767px) {
      .cta_btn {
        h2 {
          font-size: 36px;
        }
        p {
          font-size: 20px;

        }
      }
    }
  }
  /* offer-section */
  .offer_heading {
    h1{
        font-size:48px
    }
    p {
      font-size: 18px;
      line-height:22px
    }
    @media (max-width:767px) {
        h1{
            font-size:24px;
            margin:5px;
        }
        p{
            font-size:16px
        }
    }
  }
  .offercard_sec {
    .offer_card {
        margin:0 0 30px;
      display: flex;
      align-items: center;
      border-radius: 8px;
      border: 1px solid rgba(220, 223, 234, 1);
      box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.06);
      opacity: 1;
      background-color: rgba(255, 255, 255, 1);
      height: 206px;
      gap: 40px;
      overflow: hidden;
      .card_thumb {
        background-image: var(--gb-grd);
        height: 100%;
        width: 306px;
        display: flex;
        align-items: center;
        justify-content: start;
        clip-path: polygon(30% 0, 100% 0%, 100% 100%, 0% 100%);
        img {
          margin-right: 60px;
        }
      }
      .card_body {
        width: 70%;
        padding:18px 0 0 20px;
        max-width:746px;
        h2 {
          font-size: 32px;
          margin: 0 0 5px;
        }
        p{
            margin:0;
        }
      }
    }
    @media (max-width: 767px) {
        .offer_card{
            flex-direction: column;
            height: auto;
            gap:0;
            margin:0 0 18px;
            .card_thumb{
                padding:16px;
                clip-path: polygon(0% 0, 100% 0%, 100% 100%, 38% 100%);
                width:100%;
                img{
                    width:73px;
                    margin-right:16px;

                }
            }
            .card_body{
                width:100%;
                padding:18px 14px 18px 40px;
                h2{
                    font-size:24px
                }
            }
        }
    }
  }
/* info-page */
.infopage_sec{
    h1{
        font-size:48px;
    }
	ol{
		padding-right: 1rem;
	}
    .card_body{
        max-width:751px;
        .h6{
            font-size:18px;
            font-weight: 700;
        }
    }
    .tool_sec.toolv2_sec{
        h2{
            font-size:22px;
            margin:0 0 50px;
        }
        background: var(--white);
        background-image: none;
        .tools_list{
            .tool_card{
                flex-direction: column;
                margin:0 0 60px;
                .card_thumb{
                    margin-top:-65px;
                    background-image:var(--gb-grd);
                    border-radius: 100%;
                    height: 86px;
                    width:86px;
                    display:flex;
                    align-items: center;
                    justify-content: center;
                    img{
                        filter: grayscale(1) brightness(0) invert(1);
                        width: 50px;
                        height: auto;
                    }
                }
                .card_body{
                    text-align: start;
                    max-width: inherit;
                    h4{
                        font-size:20px;
                    }
                }
            }
        }
    }
    @media (max-width:991px) {
        h1{
            font-size:24px;
        }
        .tool_sec.toolv2_sec{
            h2{
                margin:0 0 20px;
            }
            .tools_list{
                .tool_card{
                    flex-direction:row;
                    align-items:center;
                    padding:20px 10px;
                    margin:0 0 20px;
                    .card_thumb{
                        margin:0;
                        height: 50px;
                        width:50px;
                        img{
                            height: 25px;
                        width:25px;
                        }
                    }
                    .card_body{
                        width:80%;
                        h4{
                            font-size:20px
                        }
                    }
                }
            }
        }

    }
}
