.header {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  padding: 16px 0px;
  z-index: 1001;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  -webkit-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s; }
  .header ::-webkit-scrollbar {
    width: 1px; }
  .header .logoblak {
    position: absolute;
    top: 0px;
    opacity: 0; }
  .header.sticky {
    position: fixed;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    background: #fff;
    padding: 0px;
    -webkit-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
    -o-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
    -ms-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
    box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1); }
    @media (max-width: 991px) {
      .header.sticky {
        padding: 4px 0px; } }
    .header.sticky .logowight {
      position: absolute;
      opacity: 0; }
    .header.sticky .logoblak {
      position: relative;
      opacity: 1; }
    .header.sticky .menu-item {
      padding: 24px 0px; }
      @media (max-width: 991px) {
        .header.sticky .menu-item {
          padding: 0px; } }
      .header.sticky .menu-item .menu-link {
        color: #000; }
        .header.sticky .menu-item .menu-link svg {
          fill: #000; }
    .header.sticky .activelink .menu-link,
    .header.sticky .menu-item:hover .menu-link {
      color: #1b77bc; }
      .header.sticky .activelink .menu-link svg,
      .header.sticky .menu-item:hover .menu-link svg {
        fill: #1b77bc; }
    .header.sticky .logo img {
      max-width: 64px; }
    .header.sticky .language {
      color: #000;
      border-left: 1px solid #ccc; }
      .header.sticky .language svg {
        fill: #eab00f; }
    .header.sticky .burger-line {
      background: #000; }
  .header .container {
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .header .logo {
    position: relative; }
    .header .logo img {
      max-width: 112px;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
      @media (max-width: 1250px) {
        .header .logo img {
          max-width: 80px; } }
      @media (max-width: 991px) {
        .header .logo img {
          max-width: 64px; } }
  .header .navbar {
    padding: 0px; }
    .header .navbar .logo {
      display: none;
      position: absolute;
      left: 16px;
      top: 16px; }
      @media screen and (max-width: 991px) {
        .header .navbar .logo {
          display: block; }
          .header .navbar .logo img {
            max-width: 104px !important; } }
    .header .navbar .cancel {
      display: none;
      position: absolute;
      top: 16px;
      right: 16px;
      z-index: 10; }
      .header .navbar .cancel svg {
        width: 18px;
        height: 18px;
        fill: #D1362A; }
    .header .navbar .social {
      display: none;
      margin-top: 24px; }
    @media screen and (max-width: 991px) {
      .header .navbar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 290px;
        padding: 16px;
        padding-top: 132px;
        height: 100%;
        z-index: 10;
        opacity: 0;
        overflow: hidden;
        overflow-y: auto;
        visibility: hidden;
        background: #fff;
        transition: all 0.5s ease; }
        .header .navbar .menu-link {
          color: #000; }
          .header .navbar .menu-link svg {
            fill: #000; }
        .header .navbar.active {
          left: 0rem;
          opacity: 1;
          visibility: visible; }
        .header .navbar .cancel {
          display: block; }
        .header .navbar .social {
          display: flex; } }
  .header .menu-item {
    position: relative;
    display: inline-block;
    margin-right: 20px;
    color: #000;
    padding: 16px 0px;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s; }
    .header .menu-item:last-child {
      margin: 0px; }
    @media (max-width: 991px) {
      .header .menu-item {
        margin: 0px; } }
  .header .menu-link {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 0.25rem;
    font-weight: 500;
    line-height: inherit;
    cursor: pointer;
    color: #fff;
    text-transform: capitalize;
    transition: all 0.3s ease-in-out; }
    .header .menu-link svg {
      fill: #fff;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
    @media (max-width: 1250px) {
      .header .menu-link {
        font-size: 14px; } }
    @media (max-width: 991px) {
      .header .menu-link {
        color: #fff; } }
  .header .menu-dropdown:hover > .submenu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0); }
  @media (max-width: 991px) {
    .header .menu {
      width: 100%;
      height: auto; }
      .header .menu-item {
        width: 100%;
        padding: 0px !important;
        margin: 0px !important;
        margin-top: 8px !important; }
      .header .menu-link {
        justify-content: space-between; } }
  .header .menu .activelink .menu-link,
  .header .menu .menu-item:hover .menu-link {
    color: #eab00f; }
    .header .menu .activelink .menu-link svg,
    .header .menu .menu-item:hover .menu-link svg {
      fill: #eab00f; }
  .header .submenu {
    position: absolute;
    top: 100%;
    left: 0px;
    width: 260px;
    height: auto;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    border-radius: 12px;
    background: #000000e8;
    transition: all 0.3s ease-in-out; }
    .header .submenu .submenu-item {
      position: relative;
      display: block; }
      .header .submenu .submenu-item ul {
        position: absolute;
        top: 0px;
        left: 242px;
        width: 260px;
        height: auto;
        padding: 20px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(1rem);
        border-radius: 12px;
        background: #000000e8;
        transition: all 0.3s ease-in-out; }
        @media (max-width: 991px) {
          .header .submenu .submenu-item ul {
            position: relative;
            top: 0px;
            left: 0px;
            width: 100%;
            opacity: 1;
            visibility: visible;
            transform: translateY(0px);
            background: #e2e2e2;
            padding: 0px 16px; }
            .header .submenu .submenu-item ul .submenu-link {
              padding: 8px 0px; } }
        .header .submenu .submenu-item ul li a {
          color: #fff !important; }
          @media (max-width: 991px) {
            .header .submenu .submenu-item ul li a {
              color: #000 !important; } }
          .header .submenu .submenu-item ul li a:hover {
            color: #eab00f !important; }
      .header .submenu .submenu-item:hover ul {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0); }
      .header .submenu .submenu-item:hover .submenu-link {
        color: #eab00f; }
        .header .submenu .submenu-item:hover .submenu-link svg {
          fill: #eab00f; }
    .header .submenu .submenu-link {
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      color: #fff;
      padding: 4px 0px;
      transition: all 0.35s ease; }
      @media (max-width: 991px) {
        .header .submenu .submenu-link {
          color: #000; } }
      .header .submenu .submenu-link:hover {
        outline: none;
        color: #eab00f; }
      .header .submenu .submenu-link svg {
        fill: #fff;
        rotate: -90deg;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
        @media (max-width: 991px) {
          .header .submenu .submenu-link svg {
            rotate: 0deg;
            fill: #000 !important; } }
    @media (max-width: 991px) {
      .header .submenu {
        position: relative;
        top: 0px;
        right: 0px;
        width: 100%;
        max-height: 0;
        border: none;
        outline: none;
        opacity: 1;
        overflow: hidden;
        visibility: visible;
        transform: translateY(0px);
        box-shadow: none;
        background: #f3f3f3;
        padding: 0px 16px; }
        .header .submenu .submenu-link {
          padding: 8px 0px; } }
  .header .burger {
    position: absolute;
    right: 12px;
    display: none;
    cursor: pointer;
    user-select: none;
    width: 1.75rem;
    height: 1rem;
    opacity: 0;
    visibility: hidden;
    background: transparent; }
    .header .burger-line {
      position: absolute;
      display: block;
      right: 0;
      width: 100%;
      height: 2px;
      opacity: 1;
      border: none;
      outline: none;
      background: #fff; }
      .header .burger-line:nth-child(1) {
        top: 0px; }
      .header .burger-line:nth-child(2) {
        top: 0.5rem;
        width: 80%; }
      .header .burger-line:nth-child(3) {
        top: 1rem;
        width: 60%; }
    @media only screen and (max-width: 991px) {
      .header .burger {
        display: block;
        opacity: 1;
        visibility: visible; } }
  .header .overlay {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease-in-out;
    background-color: rgba(0, 0, 0, 0.65); }
    @media only screen and (max-width: 991px) {
      .header .overlay.active {
        display: block;
        opacity: 1;
        visibility: visible; } }
  .header .items {
    display: flex;
    align-items: center; }
  .header .language {
    display: flex;
    align-items: center;
    border-left: 1px solid #898989;
    margin-left: 20px;
    padding-left: 20px;
    color: #fff;
    font-family: 'Readex Pro', sans-serif;
    font-weight: 400;
    overflow: hidden; }
    @media (max-width: 991px) {
      .header .language {
        margin-left: 12px;
        padding-left: 12px; } }
    .header .language svg {
      width: 16px;
      height: 16px;
      fill: #fff;
      margin-right: 4px; }

.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 100vh;
  background: #fff; }
  .slider::after {
    content: '';
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(193deg, #023051 0%, #07253bba 51%, #775904b8 100%); }
  .slider .carousel {
    width: 100%; }
    .slider .carousel .carousel-item {
      padding: 20px 0px; }
  .slider .container {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
    max-width: 100%;
    height: 100%;
    top: 0px; }
    .slider .container .title {
      color: #fff;
      text-align: center;
      font-size: 48px;
      padding: 0px 16%; }
      @media (max-width: 991px) {
        .slider .container .title {
          font-size: 30px;
          padding: 0px; } }
    .slider .container p {
      margin-top: 16px;
      font-size: 24px;
      color: #fff;
      text-align: center; }
      @media (max-width: 991px) {
        .slider .container p {
          font-size: 18px; } }
  .slider iframe,
  .slider video {
    position: absolute;
    height: auto;
    width: 112%;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
    @media (max-width: 991px) {
      .slider iframe,
      .slider video {
        width: 370%; } }

.nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0px;
  left: 0px;
  bottom: 24px;
  width: 86px;
  height: 86px;
  margin: 0px auto;
  border: 2px solid #fff;
  border-radius: 50%;
  z-index: 10; }
  @media (max-width: 991px) {
    .nav__link {
      width: 56px;
      height: 56px; } }
  .nav__link svg {
    fill: #fff;
    -webkit-transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-animation: jump 2.5s ease 0s infinite normal;
    animation: jump 2.5s ease 0s infinite normal; }
    @media (max-width: 991px) {
      .nav__link svg {
        height: 36px; } }

@-webkit-keyframes jump {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  20% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px); }
  50% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  60% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px); }
  80% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@keyframes jump {
  0% {
    transform: translateY(0); }
  20% {
    transform: translateY(0); }
  40% {
    transform: translateY(-20px); }
  50% {
    transform: translateY(0); }
  60% {
    transform: translateY(-5px); }
  80% {
    transform: translateY(0); }
  100% {
    transform: translateY(0); } }
.newtitle {
  padding: 0px !important; }

.about {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  padding-top: 100px;
  overflow: hidden; }
  @media (max-width: 991px) {
    .about {
      padding: 24px 0px; } }
  .about::before {
    content: "";
    position: absolute;
    top: -48px;
    left: 0px;
    width: 500px;
    height: 328px;
    background: #fff url(../images/bg2.png) no-repeat left top; }
  .about .item {
    display: flex;
    align-items: center; }
    @media (max-width: 991px) {
      .about .item {
        max-width: 100%;
        flex: 100%;
        margin-bottom: 74px; }
        .about .item:last-child {
          margin-bottom: 0px; } }
    .about .item .photo {
      position: relative;
      max-width: 400px;
      height: 500px;
      margin: 0px auto;
      border-radius: 80px;
      border-bottom-left-radius: 20px;
      box-shadow: 0px 4px 20px 16px #00000012;
      overflow: hidden; }
      @media (max-width: 991px) {
        .about .item .photo {
          height: 300px; } }
      .about .item .photo::before {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.5);
        content: '';
        z-index: 1;
        -webkit-transition: -webkit-transform .6s;
        transition: -webkit-transform .6s;
        -o-transition: transform .6s;
        transition: transform .6s;
        transition: transform .6s, -webkit-transform .6s;
        -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0);
        transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -100%, 0); }
      .about .item .photo img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
      .about .item .photo:hover::before {
        -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0);
        transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 100%, 0); }
    .about .item .border {
      position: absolute;
      margin: 0px auto;
      right: -57px;
      left: 0px;
      top: -24px;
      max-width: 400px;
      height: 500px;
      border: 2px dashed #1b77bc !important;
      border-radius: 80px;
      border-bottom-left-radius: 20px; }
      @media (max-width: 991px) {
        .about .item .border {
          max-width: 260px;
          height: 300px; } }
    .about .item p {
      margin-top: 16px; }
      .about .item p a {
        color: #1b77bc; }
        .about .item p a:hover {
          text-decoration: underline; }
    .about .item .subtext {
      display: block;
      color: #1b77bc;
      border-radius: 80px;
      border-bottom-left-radius: 20px;
      margin-top: 16px; }
    .about .item .bottom {
      margin-top: 24px; }
      .about .item .bottom.s-wid {
        width: 170px;
        margin: 0px; }
        @media (max-width: 991px) {
          .about .item .bottom.s-wid {
            margin: 24px auto 0px auto; } }
        .about .item .bottom.s-wid svg {
          margin-left: 4px; }
    .about .item .nav-tabs {
      margin-top: 48px;
      border: 0px; }
      .about .item .nav-tabs li {
        position: relative;
        margin: 0px;
        margin-right: 12px; }
        .about .item .nav-tabs li:last-child {
          margin: 0px; }
        .about .item .nav-tabs li a {
          border: 0px !important;
          text-transform: uppercase;
          font-size: 16px;
          color: #8E8E8E;
          -moz-transition: all 0.5s ease-in-out 0s;
          -o-transition: all 0.5s ease-in-out 0s;
          -webkit-transition: all 0.5s ease-in-out 0s;
          transition: all 0.5s ease-in-out 0s; }
          .about .item .nav-tabs li a::before {
            content: "";
            position: absolute;
            top: 0px;
            left: 0px;
            width: 0px;
            height: 2px;
            background: #1b77bc;
            -moz-transition: all 0.5s ease-in-out 0s;
            -o-transition: all 0.5s ease-in-out 0s;
            -webkit-transition: all 0.5s ease-in-out 0s;
            transition: all 0.5s ease-in-out 0s; }
          .about .item .nav-tabs li a .bord {
            position: absolute;
            left: 0px;
            top: 0px;
            width: 100%;
            height: 100%; }
            .about .item .nav-tabs li a .bord::before {
              content: "";
              position: absolute;
              top: 0px;
              left: 0px;
              width: 2px;
              height: 0px;
              background: #1b77bc;
              -moz-transition: all 0.5s ease-in-out 0s;
              -o-transition: all 0.5s ease-in-out 0s;
              -webkit-transition: all 0.5s ease-in-out 0s;
              transition: all 0.5s ease-in-out 0s; }
            .about .item .nav-tabs li a .bord::after {
              content: "";
              position: absolute;
              bottom: 0px;
              left: 0px;
              width: 0px;
              height: 2px;
              background: #1b77bc;
              -moz-transition: all 0.5s ease-in-out 0s;
              -o-transition: all 0.5s ease-in-out 0s;
              -webkit-transition: all 0.5s ease-in-out 0s;
              transition: all 0.5s ease-in-out 0s; }
          .about .item .nav-tabs li a:hover, .about .item .nav-tabs li a.active {
            background: none;
            color: #1b77bc; }
            .about .item .nav-tabs li a:hover::before, .about .item .nav-tabs li a.active::before {
              width: 50%; }
            .about .item .nav-tabs li a:hover .bord::before, .about .item .nav-tabs li a.active .bord::before {
              height: 100%; }
            .about .item .nav-tabs li a:hover .bord::after, .about .item .nav-tabs li a.active .bord::after {
              width: 100%; }
    .about .item .tab-pane p {
      margin-top: 16px; }
  .about .n-size {
    font-size: 26px;
    color: #484848;
    margin-top: 32px; }
  .about .mass {
    margin-top: 24px; }
    .about .mass .inner {
      display: flex;
      padding: 20px 16px;
      border-radius: 8px;
      background: #f7f9fc; }
    .about .mass:hover .icon {
      border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
      background: #1b77bc; }
      .about .mass:hover .icon svg {
        fill: #fff; }
    .about .mass .icon {
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fff;
      box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.3);
      width: 48px;
      height: 48px;
      border-radius: 50%;
      margin-right: 12px;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
      .about .mass .icon svg {
        width: 26px;
        max-width: 26px;
        fill: #1b77bc;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
    .about .mass .timer {
      font-size: 24px;
      font-weight: 700; }
    .about .mass .title {
      font-size: 15px;
      font-weight: 400;
      margin-top: 4px; }

.paragraphs {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  overflow: hidden;
  display: flex; }
  @media (max-width: 991px) {
    .paragraphs {
      padding: 24px 0px; } }
  @media (max-width: 991px) {
    .paragraphs {
      flex-wrap: wrap; } }
  .paragraphs .item {
    min-width: 25%;
    max-width: 25%;
    background: #4fa038; }
    .paragraphs .item:nth-last-child(odd) {
      background: #1b77bc; }
    @media (max-width: 991px) {
      .paragraphs .item {
        min-width: 50%;
        max-width: 50%; } }
    @media (max-width: 500px) {
      .paragraphs .item {
        min-width: 100%;
        max-width: 100%; } }
    .paragraphs .item .photo {
      display: flex;
      align-items: center;
      position: relative;
      width: 100%;
      overflow: hidden;
      height: 400px;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
      @media (max-width: 500px) {
        .paragraphs .item .photo {
          height: 300px; } }
      .paragraphs .item .photo::after {
        content: '';
        position: absolute;
        top: 0;
        right: auto;
        bottom: auto;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(193deg, #023051 0%, #07253bba 51%, #775904b8 100%);
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s;
        top: -100%; }
        @media (max-width: 991px) {
          .paragraphs .item .photo::after {
            top: 0px; } }
      .paragraphs .item .photo::before {
        content: "";
        position: absolute;
        left: 0px;
        bottom: 0px;
        width: 100%;
        height: 160px;
        background: linear-gradient(#00000000, #000000);
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
        @media (max-width: 991px) {
          .paragraphs .item .photo::before {
            display: none; } }
      .paragraphs .item .photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
      .paragraphs .item .photo .ov-box {
        position: absolute;
        top: 74%;
        left: 0px;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s;
        text-align: center;
        padding: 24px;
        width: 100%;
        height: 100%;
        z-index: 5; }
        @media (max-width: 991px) {
          .paragraphs .item .photo .ov-box {
            top: 0px;
            display: flex;
            align-items: center; } }
        .paragraphs .item .photo .ov-box .title {
          font-size: 22px;
          color: #fff; }
          @media (max-width: 1199px) {
            .paragraphs .item .photo .ov-box .title {
              font-size: 18px; } }
          @media (max-width: 991px) {
            .paragraphs .item .photo .ov-box .title {
              font-size: 20px; } }
        .paragraphs .item .photo .ov-box p {
          color: #fff;
          opacity: 0;
          -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
          transition: opacity 0.35s, transform 0.35s;
          -webkit-transform: translate3d(0, 20px, 0) scale(1);
          transform: translate3d(0, 20px, 0) scale(1);
          margin-top: 12px; }
          @media (max-width: 991px) {
            .paragraphs .item .photo .ov-box p {
              opacity: 1;
              transform: none; } }
        .paragraphs .item .photo .ov-box .more {
          display: inline-flex;
          align-items: center;
          font-weight: 600;
          color: #eab00f;
          margin-top: 12px; }
          .paragraphs .item .photo .ov-box .more svg {
            min-width: 20px;
            max-width: 20px;
            height: 12px;
            fill: #eab00f;
            margin-left: 4px;
            -moz-transition: all 0.5s ease-in-out 0s;
            -o-transition: all 0.5s ease-in-out 0s;
            -webkit-transition: all 0.5s ease-in-out 0s;
            transition: all 0.5s ease-in-out 0s; }
          .paragraphs .item .photo .ov-box .more:hover svg {
            margin-left: 12px; }
    .paragraphs .item:hover .photo::before {
      bottom: -160px;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
    .paragraphs .item:hover .photo::after {
      top: 0px; }
    .paragraphs .item:hover .photo img {
      -webkit-transform: scale(1.15);
      -moz-transform: scale(1.15);
      -ms-transform: scale(1.15);
      -o-transform: scale(1.15);
      transform: scale(1.15); }
    .paragraphs .item:hover .photo .ov-box {
      top: 20%; }
      @media (max-width: 991px) {
        .paragraphs .item:hover .photo .ov-box {
          top: 0px; } }
    .paragraphs .item:hover .photo p, .paragraphs .item:hover .photo .more {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0) scale(1);
      transform: translate3d(0, 0, 0) scale(1); }

.minprojects {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  background: #fff url(../images/slider.png) no-repeat fixed left top/cover;
  overflow: hidden; }
  @media (max-width: 991px) {
    .minprojects {
      padding: 24px 0px; } }
  .minprojects .itwork {
    margin-top: 24px; }
    @media (max-width: 991px) {
      .minprojects .itwork {
        max-width: 50%;
        flex: 50%; } }
    @media (max-width: 550px) {
      .minprojects .itwork {
        max-width: 100%;
        flex: 100%; } }
    .minprojects .itwork .item {
      display: block;
      position: relative;
      width: 100%;
      height: 260px;
      border-radius: 30px;
      overflow: hidden; }
      .minprojects .itwork .item:hover .photo img {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1); }
      .minprojects .itwork .item:hover .content {
        opacity: 1; }
      .minprojects .itwork .item .photo {
        width: 100%;
        height: 260px; }
        .minprojects .itwork .item .photo img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          -moz-transition: all 0.5s ease-in-out 0s;
          -o-transition: all 0.5s ease-in-out 0s;
          -webkit-transition: all 0.5s ease-in-out 0s;
          transition: all 0.5s ease-in-out 0s; }
      .minprojects .itwork .item .content {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        padding: 20px;
        background: linear-gradient(193deg, #023051 0%, #07253bba 51%, #775904b8 100%);
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s;
        opacity: 0; }
        @media (max-width: 991px) {
          .minprojects .itwork .item .content {
            opacity: 1; } }
        .minprojects .itwork .item .content .title {
          display: -webkit-box;
          -webkit-line-clamp: 1;
          -webkit-box-orient: vertical;
          overflow: hidden;
          font-size: 22px;
          color: #fff; }
          @media (max-width: 991px) {
            .minprojects .itwork .item .content .title {
              font-size: 20px; } }
        .minprojects .itwork .item .content .text,
        .minprojects .itwork .item .content p {
          display: -webkit-box;
          -webkit-line-clamp: 3;
          -webkit-box-orient: vertical;
          overflow: hidden;
          margin-top: 12px;
          text-transform: capitalize;
          color: #d7d4d4; }

.projectsinner {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  overflow: hidden; }
  @media (max-width: 991px) {
    .projectsinner {
      padding: 24px 0px; } }
  .projectsinner .item:last-child {
    padding-left: 48px; }
  @media (max-width: 991px) {
    .projectsinner .item {
      max-width: 100%;
      flex: 100%; }
      .projectsinner .item:last-child {
        margin-top: 32px;
        padding-left: 12px; } }
  .projectsinner .item .photo {
    width: 100%;
    height: 450px;
    background: #f7f9fc;
    overflow: hidden;
    position: relative;
    -webkit-border-radius: 12px 12px 165px 12px;
    border-radius: 12px 12px 165px 12px;
    background-clip: padding-box; }
    @media (max-width: 991px) {
      .projectsinner .item .photo {
        height: 280px;
        -webkit-border-radius: 12px;
        border-radius: 12px;
        background-clip: padding-box; } }
    .projectsinner .item .photo img {
      width: 100%;
      min-height: 100%;
      object-fit: cover; }
  @media (max-width: 991px) {
    .projectsinner .item .inner {
      text-align: center; } }
  .projectsinner .item span {
    color: #1b77bc;
    display: inline-block;
    background: #1b77bc3b;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    background-clip: padding-box;
    padding: 4px 20px;
    font-size: 12px;
    margin-bottom: 16px; }
  .projectsinner .item .title {
    font-size: 36px; }
    @media (max-width: 991px) {
      .projectsinner .item .title {
        text-align: center;
        font-size: 28px; } }
  .projectsinner .item p {
    margin-top: 16px;
    line-height: 32px; }
  .projectsinner .item .information {
    margin-top: 24px; }
    .projectsinner .item .information .title {
      font-size: 22px;
      color: #484848; }
    .projectsinner .item .information .list {
      margin-top: 12px;
      padding-left: 20px; }
      @media (max-width: 991px) {
        .projectsinner .item .information .list {
          padding-left: 0px; } }
      .projectsinner .item .information .list li {
        margin-top: 8px;
        list-style: disc; }
        @media (max-width: 991px) {
          .projectsinner .item .information .list li {
            list-style: none; } }

.subproject {
  background: #fff;
  padding-top: 24px; }
  @media (max-width: 991px) {
    .subproject {
      padding-top: 0px; } }

.servicecontact {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  text-align: center;
  overflow: hidden; }
  @media (max-width: 991px) {
    .servicecontact {
      padding: 24px 0px; } }
  .servicecontact::after {
    content: '';
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(193deg, #023051 0%, #07253bba 51%, #775904b8 100%);
    z-index: 2; }
  .servicecontact img {
    content: '';
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1; }
  .servicecontact .container {
    z-index: 10; }
  .servicecontact .title {
    color: #fff;
    margin-bottom: 24px; }

.watersolutions {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  background: #fff url(../images/bw.png) no-repeat left top;
  overflow: hidden; }
  @media (max-width: 991px) {
    .watersolutions {
      padding: 24px 0px; } }
  .watersolutions .row:nth-child(even) .item:last-child {
    order: -1; }
    @media (max-width: 991px) {
      .watersolutions .row:nth-child(even) .item:last-child {
        order: 1; } }
  .watersolutions .item {
    display: flex;
    align-items: center; }
    @media (max-width: 991px) {
      .watersolutions .item {
        max-width: 100%;
        flex: 100%;
        margin-bottom: 24px; } }
    .watersolutions .item .photo {
      margin: 0px auto;
      width: 328px;
      height: 480px;
      background: #eab00f38;
      border-radius: 100px; }
      @media (max-width: 580px) {
        .watersolutions .item .photo {
          width: 280px;
          height: 454px; } }
      .watersolutions .item .photo .inimg {
        position: absolute;
        left: 0px;
        right: 0px;
        top: 40px;
        margin: 0px auto;
        width: 420px;
        height: 398px;
        overflow: hidden;
        border-radius: 100px;
        -webkit-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -o-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -ms-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1); }
        @media (max-width: 580px) {
          .watersolutions .item .photo .inimg {
            width: 300px; } }
        .watersolutions .item .photo .inimg img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
    .watersolutions .item .title {
      font-size: 36px; }
      @media (max-width: 991px) {
        .watersolutions .item .title {
          font-size: 28px; } }
    .watersolutions .item p {
      margin-top: 16px;
      line-height: 32px; }
    .watersolutions .item .list {
      margin-top: 16px; }
      .watersolutions .item .list li {
        display: flex;
        margin-top: 20px; }
        .watersolutions .item .list li .icon {
          margin-right: 8px; }
          .watersolutions .item .list li .icon svg {
            min-width: 20px;
            max-width: 20px;
            height: 20px;
            fill: #1b77bc; }

.hydrogensolutions {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  background: #fff url(../images/bw.png) no-repeat left top;
  overflow: hidden; }
  @media (max-width: 991px) {
    .hydrogensolutions {
      padding: 24px 0px; } }
  .hydrogensolutions .item {
    display: flex;
    align-items: center; }
    @media (max-width: 991px) {
      .hydrogensolutions .item {
        max-width: 100%;
        flex: 100%;
        margin-bottom: 24px; }
        .hydrogensolutions .item:last-child {
          margin: 0px; } }
    .hydrogensolutions .item .photo {
      margin: 0px auto;
      width: 328px;
      height: 480px;
      border: 2px dashed #1b77bc !important;
      border-radius: 100px;
      border-top-left-radius: 30px; }
      @media (max-width: 580px) {
        .hydrogensolutions .item .photo {
          width: 280px;
          height: 454px; } }
      .hydrogensolutions .item .photo .inimg {
        position: absolute;
        left: 0px;
        right: 0px;
        top: 40px;
        margin: 0px auto;
        width: 420px;
        height: 398px;
        overflow: hidden;
        border-radius: 100px;
        border-top-left-radius: 30px;
        -webkit-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -o-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -ms-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1); }
        @media (max-width: 580px) {
          .hydrogensolutions .item .photo .inimg {
            width: 300px; } }
        .hydrogensolutions .item .photo .inimg img {
          width: 100%;
          height: 100%;
          object-fit: cover; }
    .hydrogensolutions .item .title {
      font-size: 36px; }
      @media (max-width: 991px) {
        .hydrogensolutions .item .title {
          font-size: 28px; } }
    .hydrogensolutions .item p {
      margin-top: 16px;
      line-height: 32px; }
    .hydrogensolutions .item .list {
      margin-top: 16px; }
      .hydrogensolutions .item .list li {
        display: flex;
        margin-top: 20px; }
        .hydrogensolutions .item .list li .icon {
          margin-right: 8px; }
          .hydrogensolutions .item .list li .icon svg {
            min-width: 20px;
            max-width: 20px;
            height: 20px;
            fill: #1b77bc; }
    .hydrogensolutions .item .images {
      display: flex;
      align-items: center;
      margin-top: 24px; }
      .hydrogensolutions .item .images img {
        max-width: 160px;
        max-height: 120px;
        margin-right: 24px; }
        .hydrogensolutions .item .images img:last-child {
          margin: 0px; }

.en-solutions {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  background: #fff url(../images/bw.png) no-repeat left top;
  overflow: hidden; }
  @media (max-width: 991px) {
    .en-solutions {
      padding: 24px 0px; } }
  .en-solutions .item {
    display: flex;
    align-items: center; }
    @media (max-width: 991px) {
      .en-solutions .item {
        max-width: 100%;
        flex: 100%;
        margin-bottom: 24px; }
        .en-solutions .item:last-child {
          margin: 0px; } }
    .en-solutions .item .photo {
      margin: 0px auto;
      width: 420px;
      height: 398px;
      overflow: hidden;
      border-radius: 100px;
      border-top-left-radius: 30px;
      -webkit-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
      -o-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
      -ms-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
      box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1); }
      @media (max-width: 580px) {
        .en-solutions .item .photo {
          width: 300px; } }
      .en-solutions .item .photo img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
    .en-solutions .item .title {
      font-size: 36px; }
      @media (max-width: 991px) {
        .en-solutions .item .title {
          font-size: 28px; } }
    .en-solutions .item p {
      margin-top: 16px;
      line-height: 32px; }
    .en-solutions .item .list {
      margin-top: 16px; }
      .en-solutions .item .list li {
        display: flex;
        margin-top: 20px; }
        .en-solutions .item .list li .icon {
          margin-right: 8px; }
          .en-solutions .item .list li .icon svg {
            min-width: 20px;
            max-width: 20px;
            height: 20px;
            fill: #1b77bc; }
    .en-solutions .item .images {
      display: flex;
      align-items: center;
      margin-top: 24px; }
      .en-solutions .item .images img {
        max-width: 160px;
        max-height: 120px;
        margin-right: 24px; }
        .en-solutions .item .images img:last-child {
          margin: 0px; }

.about-page-team {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  background: #f7f9fc; }
  @media (max-width: 991px) {
    .about-page-team {
      padding: 24px 0px; } }
  .about-page-team .text {
    margin-top: 12px;
    font-size: 16px;
    font-weight: 500; }
  .about-page-team .item {
    margin-top: 48px; }
    @media (max-width: 999px) {
      .about-page-team .item {
        margin-top: 24px;
        max-width: 50%;
        flex: 50%; } }
    @media (max-width: 767px) {
      .about-page-team .item {
        max-width: 100%;
        flex: 100%; } }
  .about-page-team .team-one__single {
    position: relative;
    display: block; }
  .about-page-team .team-one__img {
    position: relative;
    display: block;
    width: 100%;
    height: 340px;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    transition: all 500ms ease; }
    .about-page-team .team-one__img:before {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: "";
      background: #1b18254d;
      width: 0%;
      transform: translateY(100%);
      transition: all 500ms ease;
      border-radius: 8px;
      z-index: 1; }
    .about-page-team .team-one__img img {
      width: 100%;
      border-radius: 8px;
      transition: all 500ms ease;
      transform: scale(1); }
  .about-page-team .socialteam {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 20px;
    right: 0;
    left: 0;
    transform: scaleY(0);
    transform-origin: center;
    transform-style: preserve-3d;
    transition: all 500ms ease;
    z-index: 100; }
    .about-page-team .socialteam a {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s;
      color: #fff;
      min-width: 42px;
      max-width: 42px;
      height: 42px;
      transform: rotate(0);
      margin: 0px 2px;
      -webkit-border-radius: 8px;
      border-radius: 8px;
      background-clip: padding-box; }
      @media (max-width: 767px) {
        .about-page-team .socialteam a span {
          display: none; } }
      .about-page-team .socialteam a svg {
        fill: #fff;
        width: 16px;
        height: 16px; }
      .about-page-team .socialteam a.icon-facebook {
        background: #3b5998; }
        .about-page-team .socialteam a.icon-facebook:hover {
          background: #fff;
          transform: rotate(360deg);
          -webkit-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          -moz-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          -o-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          -ms-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1); }
          .about-page-team .socialteam a.icon-facebook:hover svg, .about-page-team .socialteam a.icon-facebook:hover.icon-twitter path {
            fill: #3b5998 !important; }
        .about-page-team .socialteam a.icon-facebook.icon-twitter path {
          fill: #fff !important; }
      .about-page-team .socialteam a.icon-twitter {
        background: #00acee; }
        .about-page-team .socialteam a.icon-twitter:hover {
          background: #fff;
          transform: rotate(360deg);
          -webkit-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          -moz-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          -o-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          -ms-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1); }
          .about-page-team .socialteam a.icon-twitter:hover svg, .about-page-team .socialteam a.icon-twitter:hover.icon-twitter path {
            fill: #00acee !important; }
        .about-page-team .socialteam a.icon-twitter.icon-twitter path {
          fill: #fff !important; }
      .about-page-team .socialteam a.icon-instagram {
        background: #8d5b46; }
        .about-page-team .socialteam a.icon-instagram:hover {
          background: #fff;
          transform: rotate(360deg);
          -webkit-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          -moz-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          -o-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          -ms-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1); }
          .about-page-team .socialteam a.icon-instagram:hover svg, .about-page-team .socialteam a.icon-instagram:hover.icon-twitter path {
            fill: #8d5b46 !important; }
        .about-page-team .socialteam a.icon-instagram.icon-twitter path {
          fill: #fff !important; }
      .about-page-team .socialteam a.icon-youtube {
        background: #c4302b; }
        .about-page-team .socialteam a.icon-youtube:hover {
          background: #fff;
          transform: rotate(360deg);
          -webkit-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          -moz-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          -o-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          -ms-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1); }
          .about-page-team .socialteam a.icon-youtube:hover svg, .about-page-team .socialteam a.icon-youtube:hover.icon-twitter path {
            fill: #c4302b !important; }
        .about-page-team .socialteam a.icon-youtube.icon-twitter path {
          fill: #fff !important; }
      .about-page-team .socialteam a.icon-rss {
        background: #ee802f; }
        .about-page-team .socialteam a.icon-rss:hover {
          background: #fff;
          transform: rotate(360deg);
          -webkit-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          -moz-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          -o-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          -ms-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1); }
          .about-page-team .socialteam a.icon-rss:hover svg, .about-page-team .socialteam a.icon-rss:hover.icon-twitter path {
            fill: #ee802f !important; }
        .about-page-team .socialteam a.icon-rss.icon-twitter path {
          fill: #fff !important; }
      .about-page-team .socialteam a.icon-snapchat {
        background: #fbeb0c; }
        .about-page-team .socialteam a.icon-snapchat:hover {
          background: #fff;
          transform: rotate(360deg);
          -webkit-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          -moz-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          -o-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          -ms-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1); }
          .about-page-team .socialteam a.icon-snapchat:hover svg, .about-page-team .socialteam a.icon-snapchat:hover.icon-twitter path {
            fill: #fbeb0c !important; }
        .about-page-team .socialteam a.icon-snapchat.icon-twitter path {
          fill: #fff !important; }
      .about-page-team .socialteam a.icon-linkedin {
        background: #007fb1; }
        .about-page-team .socialteam a.icon-linkedin:hover {
          background: #fff;
          transform: rotate(360deg);
          -webkit-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          -moz-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          -o-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          -ms-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1); }
          .about-page-team .socialteam a.icon-linkedin:hover svg, .about-page-team .socialteam a.icon-linkedin:hover.icon-twitter path {
            fill: #007fb1 !important; }
        .about-page-team .socialteam a.icon-linkedin.icon-twitter path {
          fill: #fff !important; }
      .about-page-team .socialteam a.icon-gplus {
        background: #dd4b39; }
        .about-page-team .socialteam a.icon-gplus:hover {
          background: #fff;
          transform: rotate(360deg);
          -webkit-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          -moz-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          -o-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          -ms-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1); }
          .about-page-team .socialteam a.icon-gplus:hover svg, .about-page-team .socialteam a.icon-gplus:hover.icon-twitter path {
            fill: #dd4b39 !important; }
        .about-page-team .socialteam a.icon-gplus.icon-twitter path {
          fill: #fff !important; }
      .about-page-team .socialteam a.icon-whatsapp {
        background: #189d0e; }
        .about-page-team .socialteam a.icon-whatsapp:hover {
          background: #fff;
          transform: rotate(360deg);
          -webkit-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          -moz-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          -o-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          -ms-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1); }
          .about-page-team .socialteam a.icon-whatsapp:hover svg, .about-page-team .socialteam a.icon-whatsapp:hover.icon-twitter path {
            fill: #189d0e !important; }
        .about-page-team .socialteam a.icon-whatsapp.icon-twitter path {
          fill: #fff !important; }
      .about-page-team .socialteam a.icon-email {
        background: #dd4b39; }
        .about-page-team .socialteam a.icon-email:hover {
          background: #fff;
          transform: rotate(360deg);
          -webkit-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          -moz-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          -o-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          -ms-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1); }
          .about-page-team .socialteam a.icon-email:hover svg, .about-page-team .socialteam a.icon-email:hover.icon-twitter path {
            fill: #dd4b39 !important; }
        .about-page-team .socialteam a.icon-email.icon-twitter path {
          fill: #fff !important; }
      .about-page-team .socialteam a.icon-print {
        background: #8d5b46; }
        .about-page-team .socialteam a.icon-print:hover {
          background: #fff;
          transform: rotate(360deg);
          -webkit-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          -moz-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          -o-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          -ms-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1); }
          .about-page-team .socialteam a.icon-print:hover svg, .about-page-team .socialteam a.icon-print:hover.icon-twitter path {
            fill: #8d5b46 !important; }
        .about-page-team .socialteam a.icon-print.icon-twitter path {
          fill: #fff !important; }
      .about-page-team .socialteam a.icon-behance {
        background: #1b77bc; }
        .about-page-team .socialteam a.icon-behance:hover {
          background: #fff;
          transform: rotate(360deg);
          -webkit-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          -moz-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          -o-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          -ms-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
          box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1); }
          .about-page-team .socialteam a.icon-behance:hover svg, .about-page-team .socialteam a.icon-behance:hover.icon-twitter path {
            fill: #1b77bc !important; }
        .about-page-team .socialteam a.icon-behance.icon-twitter path {
          fill: #fff !important; }
  .about-page-team .team-one__single:hover .socialteam {
    transform: scaleY(1);
    -webkit-transition-delay: 500ms;
    -moz-transition-delay: 500ms;
    -ms-transition-delay: 500ms;
    -o-transition-delay: 500ms;
    transition-delay: 500ms; }
  .about-page-team .team-one__content {
    position: relative;
    display: block;
    text-align: center;
    padding: 23px 0 26px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    transition: all 500ms ease;
    z-index: 1; }
    .about-page-team .team-one__content:before {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      content: "";
      border-bottom-left-radius: 8px;
      border-bottom-right-radius: 8px;
      -webkit-transition: all 500ms ease;
      transition: all 500ms ease;
      border-bottom: 4px solid #1b77bc;
      transform: scaleY(0);
      z-index: -1; }
  .about-page-team .team-one__name {
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    color: #202043; }
  .about-page-team .team-one__title {
    font-weight: 500;
    text-align: center; }
  .about-page-team .team-one__single:hover .team-one__img {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0; }
    .about-page-team .team-one__single:hover .team-one__img:before {
      transform: translateY(0);
      width: 100%;
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0; }
    .about-page-team .team-one__single:hover .team-one__img img {
      transform: scale(1.05);
      border-bottom-left-radius: 0;
      border-bottom-right-radius: 0; }
  .about-page-team .team-one__single:hover .team-one__content {
    background: #fff; }
    .about-page-team .team-one__single:hover .team-one__content:before {
      transform: scaleY(1); }

.subitem {
  overflow: inherit; }
  .subitem .item {
    display: block; }
  .subitem .scroll {
    position: sticky;
    top: 100px;
    margin: 0px auto; }

.border-crossings {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  background: #fff url(../images/slider.png) no-repeat fixed left top/cover;
  padding-top: 24px;
  overflow: hidden; }
  @media (max-width: 991px) {
    .border-crossings {
      padding: 24px 0px; } }
  @media (max-width: 991px) {
    .border-crossings {
      padding-top: 0px; } }
  .border-crossings .row {
    justify-content: center; }
  .border-crossings .item {
    margin-top: 24px; }
    @media (max-width: 991px) {
      .border-crossings .item {
        max-width: 100%;
        flex: 100%; } }
    .border-crossings .item .inner {
      position: relative;
      width: 100%;
      height: 100%;
      padding: 48px 24px;
      background: #fff;
      border-radius: 12px;
      -webkit-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
      -o-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
      -ms-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
      box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1); }
      .border-crossings .item .inner .logo {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 116px; }
        .border-crossings .item .inner .logo img {
          max-width: 100%;
          max-height: 100%; }
      .border-crossings .item .inner .title {
        margin-top: 12px;
        text-align: center;
        font-size: 24px; }
        @media (max-width: 991px) {
          .border-crossings .item .inner .title {
            font-size: 20px; } }
      .border-crossings .item .inner p {
        margin-top: 12px;
        text-align: center; }
        .border-crossings .item .inner p a {
          color: #1b77bc; }
          .border-crossings .item .inner p a:hover {
            text-decoration: underline; }

@media (max-width: 991px) {
  .title.mb-3 {
    margin: 0px !important; } }

.minnews {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  overflow: hidden; }
  @media (max-width: 991px) {
    .minnews {
      padding: 24px 0px; } }
  .minnews .slider-news {
    position: relative;
    width: 100%; }
    .minnews .slider-news .slick-list {
      position: relative;
      display: block;
      overflow: hidden;
      outline: none;
      margin: 0px -12px; }
      .minnews .slider-news .slick-list .slick-track {
        position: relative;
        top: 0;
        right: auto;
        bottom: auto;
        left: auto;
        display: block;
        overflow: hidden; }
        .minnews .slider-news .slick-list .slick-track:after, .minnews .slider-news .slick-list .slick-track:before {
          display: table;
          content: ''; }
    .minnews .slider-news .slick-prev,
    .minnews .slider-news .slick-next {
      position: absolute;
      top: 40%;
      right: -12px;
      cursor: pointer;
      border: 0px;
      padding: 0px;
      outline: none;
      font-size: 0px;
      background: none; }
      @media (max-width: 1280px) {
        .minnews .slider-news .slick-prev,
        .minnews .slider-news .slick-next {
          display: none !important; } }
      .minnews .slider-news .slick-prev svg,
      .minnews .slider-news .slick-next svg {
        width: 14px;
        height: 14px;
        fill: #1b77bc;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
      .minnews .slider-news .slick-prev:hover svg,
      .minnews .slider-news .slick-next:hover svg {
        fill: #18AAE3 !important; }
    .minnews .slider-news .slick-prev {
      right: auto;
      left: -12px;
      -webkit-transform: rotate(180deg);
      -moz-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
      -o-transform: rotate(180deg);
      transform: rotate(180deg); }
    .minnews .slider-news .slick-dots {
      width: 100%;
      padding: 0px;
      list-style: none;
      text-align: center;
      display: none !important;
      margin-top: 24px; }
      @media (max-width: 1280px) {
        .minnews .slider-news .slick-dots {
          display: block !important; } }
      .minnews .slider-news .slick-dots li {
        position: relative;
        display: inline-block;
        margin: 0px 2px;
        padding: 0px;
        cursor: pointer;
        background: #656565;
        border-radius: 50%; }
        .minnews .slider-news .slick-dots li button {
          font-size: 0px;
          line-height: 0px;
          display: block;
          width: 15px;
          height: 15px;
          cursor: pointer;
          color: #f7f9fc;
          border: 0px;
          outline: none;
          border-radius: 50%;
          background: transparent; }
      .minnews .slider-news .slick-dots li.slick-active {
        background: #1b77bc; }
    .minnews .slider-news .slick-list {
      margin: 0px; }
      @media (max-width: 991px) {
        .minnews .slider-news .slick-list {
          margin: 0px -40px; } }
    .minnews .slider-news .slick-track {
      padding: 24px 0px; }
    .minnews .slider-news .slick-next,
    .minnews .slider-news .slick-prev,
    .minnews .slider-news .slick-dots {
      display: none !important; }
  .minnews .item {
    display: inline-block;
    vertical-align: top;
    position: relative;
    width: 100%;
    background: #fff;
    border-radius: 30px;
    margin: 0px 12px;
    -webkit-box-shadow: 4px 4px 30px #0000000d;
    -moz-box-shadow: 4px 4px 30px #0000000d;
    -o-box-shadow: 4px 4px 30px #0000000d;
    -ms-box-shadow: 4px 4px 30px #0000000d;
    box-shadow: 4px 4px 30px #0000000d;
    overflow: hidden; }
    .minnews .item:hover .photo img {
      -webkit-transform: scale(1.1);
      -moz-transform: scale(1.1);
      -ms-transform: scale(1.1);
      -o-transform: scale(1.1);
      transform: scale(1.1); }
    .minnews .item:hover .content {
      opacity: 1; }
    .minnews .item .photo {
      display: block;
      width: 100%;
      height: 240px;
      overflow: hidden; }
      .minnews .item .photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
    .minnews .item .content {
      width: 100%;
      height: 126px;
      padding: 20px;
      overflow: hidden; }
      @media (max-width: 991px) {
        .minnews .item .content {
          height: auto; } }
      .minnews .item .content .time {
        display: flex;
        align-items: center;
        color: #eab00f;
        font-style: italic; }
        .minnews .item .content .time svg {
          min-width: 16px;
          max-width: 16px;
          height: 16px;
          fill: #eab00f;
          margin-right: 4px; }
      .minnews .item .content .title {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 22px;
        margin-top: 8px;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
        @media (max-width: 991px) {
          .minnews .item .content .title {
            font-size: 22px;
            -webkit-line-clamp: inherit; } }
        .minnews .item .content .title:hover {
          color: #1b77bc; }

.news {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  padding-top: 24px;
  overflow: hidden; }
  @media (max-width: 991px) {
    .news {
      padding: 24px 0px; } }
  @media (max-width: 991px) {
    .news {
      padding-top: 0px; } }
  .news .itemnews {
    margin-top: 24px; }
    @media (max-width: 991px) {
      .news .itemnews {
        max-width: 50%;
        flex: 50%; } }
    @media (max-width: 767px) {
      .news .itemnews {
        max-width: 100%;
        flex: 100%; } }
    .news .itemnews .item {
      position: relative;
      width: 100%;
      height: 100%;
      background: #fff;
      border-radius: 30px;
      -webkit-box-shadow: 4px 4px 30px #0000000d;
      -moz-box-shadow: 4px 4px 30px #0000000d;
      -o-box-shadow: 4px 4px 30px #0000000d;
      -ms-box-shadow: 4px 4px 30px #0000000d;
      box-shadow: 4px 4px 30px #0000000d;
      overflow: hidden; }
      .news .itemnews .item:hover .photo img {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1); }
      .news .itemnews .item:hover .content {
        opacity: 1; }
      .news .itemnews .item .photo {
        display: block;
        width: 100%;
        height: 240px;
        overflow: hidden; }
        .news .itemnews .item .photo img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          -moz-transition: all 0.5s ease-in-out 0s;
          -o-transition: all 0.5s ease-in-out 0s;
          -webkit-transition: all 0.5s ease-in-out 0s;
          transition: all 0.5s ease-in-out 0s; }
      .news .itemnews .item .content {
        width: 100%;
        height: 126px;
        padding: 20px;
        overflow: hidden; }
        @media (max-width: 991px) {
          .news .itemnews .item .content {
            height: auto; } }
        .news .itemnews .item .content .time {
          display: flex;
          align-items: center;
          color: #eab00f;
          font-style: italic; }
          .news .itemnews .item .content .time svg {
            min-width: 16px;
            max-width: 16px;
            height: 16px;
            fill: #eab00f;
            margin-right: 4px; }
        .news .itemnews .item .content .title {
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          overflow: hidden;
          font-size: 22px;
          margin-top: 8px;
          -moz-transition: all 0.5s ease-in-out 0s;
          -o-transition: all 0.5s ease-in-out 0s;
          -webkit-transition: all 0.5s ease-in-out 0s;
          transition: all 0.5s ease-in-out 0s; }
          @media (max-width: 991px) {
            .news .itemnews .item .content .title {
              font-size: 22px;
              -webkit-line-clamp: inherit; } }
          .news .itemnews .item .content .title:hover {
            color: #1b77bc; }

.newsinner {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  padding: 24px 0px; }
  @media (max-width: 991px) {
    .newsinner {
      padding: 24px 0px; } }
  @media (max-width: 991px) {
    .newsinner {
      padding-top: 0px; } }
  .newsinner .title {
    margin-top: 24px;
    font-size: 34px; }
    @media (max-width: 991px) {
      .newsinner .title {
        font-size: 28px; } }
  @media (max-width: 999px) {
    .newsinner .item {
      max-width: 100%;
      flex: 100%; } }
  .newsinner .item .inner {
    display: flex;
    align-items: center;
    margin-top: 24px; }
    @media (max-width: 767px) {
      .newsinner .item .inner {
        display: block; } }
    .newsinner .item .inner .photo {
      display: flex;
      min-width: 240px;
      max-width: 240px;
      height: 200px;
      border-radius: 8px;
      margin-right: 24px;
      overflow: hidden; }
      @media (max-width: 767px) {
        .newsinner .item .inner .photo {
          min-width: 100%;
          max-width: 100%;
          margin: 0px; } }
      .newsinner .item .inner .photo:hover img {
        -webkit-transform: scale(1.1);
        transform: scale(1.1); }
      .newsinner .item .inner .photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
    .newsinner .item .inner .text {
      display: flex;
      align-items: center;
      height: 200px;
      border-radius: 8px;
      padding: 16px;
      border: 1px solid #e6e6e6; }
      @media (max-width: 767px) {
        .newsinner .item .inner .text {
          margin-top: 24px;
          height: auto; } }
      .newsinner .item .inner .text .lineclamp {
        display: flex;
        align-items: center;
        white-space: nowrap;
        text-overflow: ellipsis;
        font-weight: 400;
        color: #737373; }
        .newsinner .item .inner .text .lineclamp svg {
          margin-left: 12px;
          margin-right: 8px; }
      .newsinner .item .inner .text .title {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        margin-top: 12px;
        font-size: 22px;
        font-weight: 600;
        color: #202043;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
        @media (max-width: 767px) {
          .newsinner .item .inner .text .title {
            font-size: 18px; } }
        .newsinner .item .inner .text .title:hover {
          color: #1b77bc; }
  .newsinner .item .minitem {
    position: relative;
    width: 100%;
    background: #f7f9fc;
    border-radius: 8px;
    padding: 24px;
    margin-top: 24px; }
    .newsinner .item .minitem.scroll {
      position: sticky;
      top: 120px; }
      .newsinner .item .minitem.scroll p {
        font-size: 16px;
        font-weight: 500;
        margin-top: 16px; }
    .newsinner .item .minitem .title {
      font-size: 24px;
      font-weight: 600;
      margin: 0px; }
      .newsinner .item .minitem .title.bord {
        border-bottom: 1px solid #e6e6e6;
        padding-bottom: 16px; }
    .newsinner .item .minitem form {
      position: relative;
      margin-top: 24px; }
      .newsinner .item .minitem form .form-control {
        padding-right: 48px; }
      .newsinner .item .minitem form .bot-search {
        position: absolute;
        top: 14px;
        right: 12px;
        padding: 0px;
        border: 0px;
        outline: 0px;
        background: none;
        cursor: pointer;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
        .newsinner .item .minitem form .bot-search svg,
        .newsinner .item .minitem form .bot-search img {
          width: 24px;
          height: 24px;
          fill: #1b77bc;
          -moz-transition: all 0.5s ease-in-out 0s;
          -o-transition: all 0.5s ease-in-out 0s;
          -webkit-transition: all 0.5s ease-in-out 0s;
          transition: all 0.5s ease-in-out 0s; }
        .newsinner .item .minitem form .bot-search:hover svg,
        .newsinner .item .minitem form .bot-search:hover img {
          fill: #202043; }
    .newsinner .item .minitem .inner {
      align-items: flex-start;
      margin-top: 24px; }
      @media (max-width: 767px) {
        .newsinner .item .minitem .inner {
          display: flex;
          align-items: center; } }
      .newsinner .item .minitem .inner .photo {
        min-width: 100px;
        max-width: 100px;
        height: 100px;
        background: #fff;
        margin: 0px;
        margin-right: 16px; }
      .newsinner .item .minitem .inner .text {
        height: auto;
        border-radius: 0px;
        padding: 0px;
        border: 0px;
        margin: 0px;
        overflow: hidden; }
        @media (max-width: 767px) {
          .newsinner .item .minitem .inner .text {
            margin: 0px; }
            .newsinner .item .minitem .inner .text .lineclamp {
              display: none; } }
        .newsinner .item .minitem .inner .text .title {
          font-size: 16px;
          font-weight: 500;
          margin-top: 4px; }
          @media (max-width: 767px) {
            .newsinner .item .minitem .inner .text .title {
              margin: 0px; } }
  .newsinner .photo {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    background: #f7f9fc;
    overflow: hidden;
    margin-top: 24px; }
    @media (max-width: 999px) {
      .newsinner .photo {
        height: 200px; } }
    .newsinner .photo img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .newsinner .shear {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px; }
    @media (max-width: 767px) {
      .newsinner .shear {
        display: block; } }
    @media (max-width: 767px) {
      .newsinner .shear .social {
        margin-top: 24px; } }
  .newsinner .time {
    display: flex;
    align-items: center;
    color: #eab00f;
    font-style: italic; }
    .newsinner .time svg {
      min-width: 16px;
      max-width: 16px;
      height: 16px;
      fill: #eab00f;
      margin-right: 4px; }
  .newsinner .text {
    margin-top: 24px;
    color: #000;
    font-weight: 500; }

.textmessage {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  background: #fff url(../images/slider.png) no-repeat fixed left top/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden; }
  @media (max-width: 991px) {
    .textmessage {
      padding: 24px 0px; } }
  .textmessage .textlight {
    max-width: 60%;
    margin: 24px auto 0px auto; }
    @media (max-width: 991px) {
      .textmessage .textlight {
        max-width: 100%; } }
  .textmessage .bottom {
    margin-top: 24px; }

.contactus {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  background: #fff url(../images/testimonial-bg-1.png) no-repeat fixed center center/cover;
  padding: 24px 0px 48px 0px;
  overflow: hidden; }
  @media (max-width: 991px) {
    .contactus {
      padding: 24px 0px; } }
  .contactus .item {
    margin-top: 24px; }
    @media (max-width: 991px) {
      .contactus .item {
        max-width: 50%;
        flex: 50%; } }
    @media (max-width: 550px) {
      .contactus .item {
        max-width: 100%;
        flex: 100%; } }
    .contactus .item .contact-block {
      position: relative;
      background: #fff;
      padding: 40px 16px;
      -webkit-border-radius: 8px;
      border-radius: 8px;
      background-clip: padding-box;
      min-height: 266px;
      text-align: center;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s;
      -webkit-box-shadow: 4px 4px 60px #0000000a;
      -moz-box-shadow: 4px 4px 60px #0000000a;
      -o-box-shadow: 4px 4px 60px #0000000a;
      -ms-box-shadow: 4px 4px 60px #0000000a;
      box-shadow: 4px 4px 60px #0000000a; }
      .contactus .item .contact-block svg {
        max-width: 56px;
        max-height: 56px;
        fill: #1b77bc;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
      .contactus .item .contact-block .block-info {
        position: relative;
        margin-top: 24px;
        z-index: 10; }
        .contactus .item .contact-block .block-info .title {
          font-size: 28px;
          -moz-transition: all 0.5s ease-in-out 0s;
          -o-transition: all 0.5s ease-in-out 0s;
          -webkit-transition: all 0.5s ease-in-out 0s;
          transition: all 0.5s ease-in-out 0s; }
        .contactus .item .contact-block .block-info p,
        .contactus .item .contact-block .block-info a {
          display: block;
          margin-top: 8px;
          overflow: hidden;
          -moz-transition: all 0.5s ease-in-out 0s;
          -o-transition: all 0.5s ease-in-out 0s;
          -webkit-transition: all 0.5s ease-in-out 0s;
          transition: all 0.5s ease-in-out 0s; }
      .contactus .item .contact-block:hover {
        background: #1b77bc; }
        .contactus .item .contact-block:hover svg {
          fill: #fff; }
        .contactus .item .contact-block:hover::before {
          border: 2px solid #fff; }
        .contactus .item .contact-block:hover .block-info .title {
          color: #fff; }
          .contactus .item .contact-block:hover .block-info .title::after {
            background: #fff; }
        .contactus .item .contact-block:hover .block-info p,
        .contactus .item .contact-block:hover .block-info a {
          color: #fff; }
  .contactus .mt {
    margin-top: 64px; }
    @media (max-width: 991px) {
      .contactus .mt {
        margin-top: 24px;
        max-width: 100%;
        flex: 100%; }
        .contactus .mt .mintitle {
          color: #eab00f; } }
    .contactus .mt .title {
      line-height: 120%;
      margin-top: 12px; }
      @media (max-width: 991px) {
        .contactus .mt .title {
          margin-top: 8px; } }
  .contactus .alert {
    margin: 0px;
    margin-top: 24px; }
  .contactus .field {
    margin-top: 24px; }
    @media (max-width: 767px) {
      .contactus .field {
        max-width: 100%;
        flex: 100%; } }
    .contactus .field .form-control {
      height: 54px;
      text-transform: none;
      box-shadow: none;
      background: #fff; }
      .contactus .field .form-control:focus {
        border: 1px solid #1b77bc; }
    .contactus .field textarea.form-control {
      height: 222px;
      resize: none; }

.map {
  background: #f7f9fc;
  height: 100%; }
  .map iframe {
    display: block;
    border: 0px;
    width: 100%;
    height: 100%; }

.careers {
  position: relative;
  width: 100%;
  padding: 48px 0px; }
  @media (max-width: 991px) {
    .careers {
      padding: 24px 0px; } }
  .careers .item {
    width: 100%;
    background: #fff;
    padding: 24px;
    -webkit-border-radius: 12px;
    border-radius: 12px;
    background-clip: padding-box;
    -webkit-box-shadow: 4px 4px 60px #0000000f;
    -moz-box-shadow: 4px 4px 60px #0000000f;
    -o-box-shadow: 4px 4px 60px #0000000f;
    -ms-box-shadow: 4px 4px 60px #0000000f;
    box-shadow: 4px 4px 60px #0000000f;
    margin-bottom: 24px; }
    .careers .item:last-child {
      margin: 0px; }
    @media (max-width: 991px) {
      .careers .item {
        padding: 16px; } }
    .careers .item .title {
      font-size: 30px;
      color: #1b77bc; }
      @media (max-width: 991px) {
        .careers .item .title {
          font-size: 24px; } }
    .careers .item a.title:hover {
      text-decoration: underline; }
    .careers .item span {
      display: flex;
      align-items: center; }
    .careers .item .expr {
      color: #000;
      margin-top: 12px; }
      .careers .item .expr img {
        max-width: 14px;
        margin-right: 4px; }
    .careers .item p.text {
      margin-top: 8px; }
    .careers .item .location,
    .careers .item .date {
      margin-top: 12px; }
      .careers .item .location img,
      .careers .item .date img {
        max-width: 11px;
        margin-right: 4px; }
    .careers .item .date img {
      max-width: 14px; }
    .careers .item .a-link {
      display: flex;
      margin-top: 16px; }
      .careers .item .a-link li {
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 90px;
        height: 26px;
        font-size: 14px;
        text-transform: capitalize;
        margin-right: 12px;
        -webkit-border-radius: 4px;
        border-radius: 4px;
        background-clip: padding-box; }
        .careers .item .a-link li:nth-child(1) {
          color: #1b77bc;
          border: 1px solid #1b77bc; }
        .careers .item .a-link li:nth-child(2) {
          color: #eab00f;
          border: 1px solid #eab00f; }
        .careers .item .a-link li:nth-child(3) {
          color: #4fa038;
          border: 1px solid #4fa038; }
    .careers .item .bottom {
      width: 264px;
      height: 48px;
      margin-top: 32px; }
    .careers .item .details {
      margin-top: 32px; }
      .careers .item .details .title {
        font-size: 16px !important; }
      .careers .item .details ul {
        margin-top: 20px; }
        .careers .item .details ul li {
          font-weight: 400;
          position: relative;
          padding-left: 20px;
          margin-bottom: 8px; }
          .careers .item .details ul li::before {
            content: '';
            position: absolute;
            top: 7px;
            left: 0;
            width: 6px;
            height: 6px;
            -webkit-border-radius: 50%;
            border-radius: 50%;
            background-clip: padding-box;
            background: #1b77bc;
            opacity: 0.9; }
  .careers .pagination {
    justify-content: center; }

.modal {
  padding: 0px 16px !important;
  overflow-x: hidden;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.64); }
  .modal .modal-dialog {
    margin: 24px auto;
    max-width: 555px; }
  .modal .modal-content {
    padding: 24px;
    text-align: center; }
  .modal .title {
    font-size: 44px;
    color: #000;
    font-weight: 600;
    line-height: 120%;
    position: relative;
    text-transform: capitalize;
    font-size: 20px !important; }
    @media (max-width: 991px) {
      .modal .title {
        font-size: 34px; } }
  .modal .inpudata {
    margin-top: 16px;
    position: relative; }
    .modal .inpudata textarea.form-control {
      height: 160px;
      resize: none; }
    .modal .inpudata .bottom {
      margin: 0px;
      min-width: 140px; }
    .modal .inpudata .cancel {
      margin-left: 16px;
      color: #D1362A;
      text-transform: capitalize; }
      .modal .inpudata .cancel:hover {
        color: #1b77bc; }
    .modal .inpudata.flex {
      display: flex;
      align-items: center; }
  .modal .bot-delet {
    margin-top: 24px; }

.wit-pop {
  max-width: 840px; }
  .wit-pop .modal-content .alert {
    margin: 0px;
    margin-bottom: 16px; }
  .wit-pop .modal-content span.btn.btn-primary {
    width: 100%;
    margin-top: 4px;
    background: none;
    border: 0;
    font-size: 12px;
    line-height: 14px;
    color: #495057; }
    .wit-pop .modal-content span.btn.btn-primary img {
      max-width: 40px;
      margin: 0px 8px; }
  .wit-pop .modal-content .bac {
    width: 100%;
    background-color: #fff;
    border: 1px solid #ced4da;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background-clip: padding-box;
    padding: 8px 12px; }
    .wit-pop .modal-content .bac p {
      color: #495057; }
    .wit-pop .modal-content .bac .input-group-btn {
      width: 100%;
      margin: 0; }
    .wit-pop .modal-content .bac .form-control {
      padding: 0px;
      box-shadow: none !important;
      background: none !important;
      border: 0px !important;
      text-align: center; }

.footer {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  overflow: hidden;
  background: #031d30 url(../images/footer.png) no-repeat fixed left top;
  padding: 0px !important; }
  @media (max-width: 991px) {
    .footer {
      padding: 24px 0px; } }
  .footer::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 0px;
    width: 276px;
    height: 266px;
    z-index: 1;
    background: url(../images/bg1.png) no-repeat right top;
    opacity: 0.4; }
  .footer .container {
    z-index: 2; }
  .footer .item {
    margin-top: 48px; }
    @media (max-width: 991px) {
      .footer .item {
        max-width: 100%;
        flex: 100%; } }
    @media (max-width: 991px) {
      .footer .item .logo {
        width: 100%;
        text-align: center; } }
    .footer .item .logo img {
      max-width: 168px; }
    .footer .item .text {
      overflow: hidden;
      color: #b3b3b3;
      padding-right: 48px;
      margin-top: 16px; }
      @media (max-width: 991px) {
        .footer .item .text {
          text-align: center;
          padding: 0px; } }
    .footer .item .social {
      margin-top: 24px;
      justify-content: flex-start; }
      .footer .item .social a {
        margin: 0px;
        margin-right: 8px; }
      @media (max-width: 991px) {
        .footer .item .social {
          justify-content: center; }
          .footer .item .social a {
            margin: 0px 4px; } }
    .footer .item .title {
      font-size: 22px;
      color: #fff;
      margin-bottom: 12px; }
      @media (max-width: 991px) {
        .footer .item .title {
          text-align: center;
          font-size: 20px; } }
    .footer .item .navmenu {
      margin-top: 12px; }
      .footer .item .navmenu a {
        display: inline-block;
        width: 48%;
        position: relative;
        color: #b3b3b3;
        margin-top: 8px;
        text-transform: capitalize;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
        .footer .item .navmenu a svg {
          -webkit-transform: rotate(-90deg);
          -moz-transform: rotate(-90deg);
          -ms-transform: rotate(-90deg);
          -o-transform: rotate(-90deg);
          transform: rotate(-90deg);
          fill: #c6c6c6;
          margin-right: 4px;
          min-width: 12px;
          max-width: 12px;
          -moz-transition: all 0.5s ease-in-out 0s;
          -o-transition: all 0.5s ease-in-out 0s;
          -webkit-transition: all 0.5s ease-in-out 0s;
          transition: all 0.5s ease-in-out 0s; }
        .footer .item .navmenu a:hover {
          color: #1b77bc; }
          .footer .item .navmenu a:hover svg {
            fill: #f87412; }
        @media (max-width: 991px) {
          .footer .item .navmenu a {
            text-align: center; }
            .footer .item .navmenu a svg {
              display: none; } }
    .footer .item .media {
      display: flex;
      margin-top: 20px; }
      @media (max-width: 991px) {
        .footer .item .media {
          justify-content: center; } }
      .footer .item .media svg,
      .footer .item .media img {
        fill: #b3b3b3;
        min-width: 18px;
        min-height: 18px;
        max-width: 18px;
        max-height: 18px;
        margin-top: 4px; }
      .footer .item .media .contant {
        display: flex;
        margin-left: 12px; }
        .footer .item .media .contant p,
        .footer .item .media .contant a {
          display: block;
          width: 100%;
          color: #b3b3b3;
          text-transform: capitalize;
          -moz-transition: all 0.5s ease-in-out 0s;
          -o-transition: all 0.5s ease-in-out 0s;
          -webkit-transition: all 0.5s ease-in-out 0s;
          transition: all 0.5s ease-in-out 0s; }
        .footer .item .media .contant a:hover {
          color: #1b77bc; }
  .footer .copyright {
    position: relative;
    margin-top: 48px;
    padding: 24px 0px;
    width: 100%;
    border-top: 1px solid #ffffff14;
    z-index: 2; }
    @media (max-width: 991px) {
      .footer .copyright {
        margin-top: 32px; } }
    .footer .copyright p {
      padding: 0px 12px;
      text-align: center;
      color: #fff; }
      .footer .copyright p a {
        color: #1b77bc; }
        .footer .copyright p a:hover {
          text-decoration: underline; }
  .footer .scrollToTop {
    display: none !important;
    position: fixed;
    bottom: 16px;
    left: 16px;
    width: 46px;
    height: 46px;
    z-index: 1000;
    padding: 0px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    background-clip: padding-box;
    font-size: 14px;
    text-align: center;
    padding-top: 12px; }
    .footer .scrollToTop::before {
      -webkit-border-radius: 8px;
      border-radius: 8px;
      background-clip: padding-box; }
    @media (max-width: 991px) {
      .footer .scrollToTop {
        display: none !important; } }
    .footer .scrollToTop.btntop {
      display: block !important; }
      @media (max-width: 991px) {
        .footer .scrollToTop.btntop {
          display: none !important; } }

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img,
ul,
li,
hr,
strong,
b,
input,
select,
textarea,
.highcharts-title,
.highcharts-axis-labels,
.highcharts-yaxis-title {
  margin: 0px;
  padding: 0px;
  border: 0px;
  text-decoration: none;
  list-style: none;
  font-size: 16px;
  line-height: 26px;
  color: #2C2C2C;
  font-family: "Manrope", sans-serif; }

::-webkit-scrollbar {
  width: 8px;
  height: 4px; }

/* Track */
::-webkit-scrollbar-track {
  background: #f7f9fc; }

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: #18AAE3;
  cursor: pointer; }

body {
  direction: ltr;
  text-align: left;
  background: #fff; }
  body.active {
    overflow: hidden; }

.bottom {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-weight: 400;
  padding: 0px 20px;
  background: #1b77bc;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  background-clip: padding-box;
  border: 0px;
  outline-style: none;
  outline: 0px;
  color: #fff;
  width: 154px;
  height: 48px;
  cursor: pointer;
  overflow: hidden;
  justify-content: center;
  -moz-transition: all 0.6s ease-in-out 0s;
  -o-transition: all 0.6s ease-in-out 0s;
  -webkit-transition: all 0.6s ease-in-out 0s;
  transition: all 0.6s ease-in-out 0s; }
  .bottom:before {
    content: '';
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-border-radius: 30px;
    border-radius: 30px;
    background-clip: padding-box;
    background: #eab00f;
    -webkit-transform: scale(0);
    transform: scale(0);
    -moz-transition: all 0.6s ease-in-out 0s;
    -o-transition: all 0.6s ease-in-out 0s;
    -webkit-transition: all 0.6s ease-in-out 0s;
    transition: all 0.6s ease-in-out 0s; }
  .bottom span {
    position: relative;
    z-index: 1; }
  .bottom:focus {
    outline: 0px !important; }
  .bottom:hover::before {
    -webkit-transform: scale(1);
    transform: scale(1); }
  .bottom:hover span {
    color: #fff; }

.social {
  display: flex; }
  .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    -moz-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    -webkit-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
    color: #fff;
    min-width: 38px;
    max-width: 38px;
    height: 38px;
    transform: rotate(0);
    margin-right: 4px;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    background-clip: padding-box; }
    .social a:before {
      content: '';
      position: absolute;
      top: 0;
      right: auto;
      bottom: auto;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: 8px;
      transform: scale(0);
      background: #fff;
      transform-origin: center;
      transform-style: preserve-3d;
      transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
      z-index: -1; }
    @media (max-width: 767px) {
      .social a span {
        display: none; } }
    .social a svg {
      fill: #fff;
      width: 16px;
      height: 16px; }
    .social a.icon-facebook {
      background: #3b5998; }
      .social a.icon-facebook:hover {
        transform: rotate(360deg);
        -webkit-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -o-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -ms-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1); }
        .social a.icon-facebook:hover::before {
          transform: scaleX(1); }
        .social a.icon-facebook:hover svg, .social a.icon-facebook:hover.icon-twitter path {
          fill: #3b5998 !important; }
      .social a.icon-facebook.icon-twitter path {
        fill: #fff !important; }
    .social a.icon-twitter {
      background: #00acee; }
      .social a.icon-twitter:hover {
        transform: rotate(360deg);
        -webkit-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -o-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -ms-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1); }
        .social a.icon-twitter:hover::before {
          transform: scaleX(1); }
        .social a.icon-twitter:hover svg, .social a.icon-twitter:hover.icon-twitter path {
          fill: #00acee !important; }
      .social a.icon-twitter.icon-twitter path {
        fill: #fff !important; }
    .social a.icon-instagram {
      background: #8d5b46; }
      .social a.icon-instagram:hover {
        transform: rotate(360deg);
        -webkit-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -o-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -ms-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1); }
        .social a.icon-instagram:hover::before {
          transform: scaleX(1); }
        .social a.icon-instagram:hover svg, .social a.icon-instagram:hover.icon-twitter path {
          fill: #8d5b46 !important; }
      .social a.icon-instagram.icon-twitter path {
        fill: #fff !important; }
    .social a.icon-youtube {
      background: #c4302b; }
      .social a.icon-youtube:hover {
        transform: rotate(360deg);
        -webkit-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -o-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -ms-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1); }
        .social a.icon-youtube:hover::before {
          transform: scaleX(1); }
        .social a.icon-youtube:hover svg, .social a.icon-youtube:hover.icon-twitter path {
          fill: #c4302b !important; }
      .social a.icon-youtube.icon-twitter path {
        fill: #fff !important; }
    .social a.icon-rss {
      background: #ee802f; }
      .social a.icon-rss:hover {
        transform: rotate(360deg);
        -webkit-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -o-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -ms-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1); }
        .social a.icon-rss:hover::before {
          transform: scaleX(1); }
        .social a.icon-rss:hover svg, .social a.icon-rss:hover.icon-twitter path {
          fill: #ee802f !important; }
      .social a.icon-rss.icon-twitter path {
        fill: #fff !important; }
    .social a.icon-snapchat {
      background: #fbeb0c; }
      .social a.icon-snapchat:hover {
        transform: rotate(360deg);
        -webkit-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -o-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -ms-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1); }
        .social a.icon-snapchat:hover::before {
          transform: scaleX(1); }
        .social a.icon-snapchat:hover svg, .social a.icon-snapchat:hover.icon-twitter path {
          fill: #fbeb0c !important; }
      .social a.icon-snapchat.icon-twitter path {
        fill: #fff !important; }
    .social a.icon-linkedin {
      background: #007fb1; }
      .social a.icon-linkedin:hover {
        transform: rotate(360deg);
        -webkit-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -o-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -ms-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1); }
        .social a.icon-linkedin:hover::before {
          transform: scaleX(1); }
        .social a.icon-linkedin:hover svg, .social a.icon-linkedin:hover.icon-twitter path {
          fill: #007fb1 !important; }
      .social a.icon-linkedin.icon-twitter path {
        fill: #fff !important; }
    .social a.icon-gplus {
      background: #dd4b39; }
      .social a.icon-gplus:hover {
        transform: rotate(360deg);
        -webkit-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -o-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -ms-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1); }
        .social a.icon-gplus:hover::before {
          transform: scaleX(1); }
        .social a.icon-gplus:hover svg, .social a.icon-gplus:hover.icon-twitter path {
          fill: #dd4b39 !important; }
      .social a.icon-gplus.icon-twitter path {
        fill: #fff !important; }
    .social a.icon-whatsapp {
      background: #189d0e; }
      .social a.icon-whatsapp:hover {
        transform: rotate(360deg);
        -webkit-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -o-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -ms-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1); }
        .social a.icon-whatsapp:hover::before {
          transform: scaleX(1); }
        .social a.icon-whatsapp:hover svg, .social a.icon-whatsapp:hover.icon-twitter path {
          fill: #189d0e !important; }
      .social a.icon-whatsapp.icon-twitter path {
        fill: #fff !important; }
    .social a.icon-email {
      background: #dd4b39; }
      .social a.icon-email:hover {
        transform: rotate(360deg);
        -webkit-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -o-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -ms-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1); }
        .social a.icon-email:hover::before {
          transform: scaleX(1); }
        .social a.icon-email:hover svg, .social a.icon-email:hover.icon-twitter path {
          fill: #dd4b39 !important; }
      .social a.icon-email.icon-twitter path {
        fill: #fff !important; }
    .social a.icon-print {
      background: #8d5b46; }
      .social a.icon-print:hover {
        transform: rotate(360deg);
        -webkit-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -o-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -ms-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1); }
        .social a.icon-print:hover::before {
          transform: scaleX(1); }
        .social a.icon-print:hover svg, .social a.icon-print:hover.icon-twitter path {
          fill: #8d5b46 !important; }
      .social a.icon-print.icon-twitter path {
        fill: #fff !important; }
    .social a.icon-behance {
      background: #1b77bc; }
      .social a.icon-behance:hover {
        transform: rotate(360deg);
        -webkit-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -o-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        -ms-box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1);
        box-shadow: 4px 4px 60px rgba(0, 0, 0, 0.1); }
        .social a.icon-behance:hover::before {
          transform: scaleX(1); }
        .social a.icon-behance:hover svg, .social a.icon-behance:hover.icon-twitter path {
          fill: #1b77bc !important; }
      .social a.icon-behance.icon-twitter path {
        fill: #fff !important; }

.title {
  font-size: 44px;
  color: #000;
  font-weight: 600;
  line-height: 120%;
  position: relative;
  text-transform: capitalize; }
  @media (max-width: 991px) {
    .title {
      font-size: 34px; } }

.wizard {
  margin-bottom: 16px; }
  .wizard li {
    display: inline-block;
    margin-left: 16px;
    color: #000;
    line-height: 14.4px;
    font-weight: 400; }
    .wizard li a {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      color: #000;
      line-height: 14.4px;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
      .wizard li a:hover {
        color: #4fa038; }
      .wizard li a svg {
        margin-right: 16px;
        -webkit-transform: rotate(-180deg);
        -moz-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        -o-transform: rotate(-180deg);
        transform: rotate(-180deg); }
  @media (max-width: 991px) {
    .wizard {
      display: none; } }

.form-control {
  height: 54px;
  text-transform: none;
  box-shadow: none;
  background: #fff; }
  .form-control:focus {
    border: 1px solid #1b77bc; }

.che-box {
  position: relative;
  cursor: pointer;
  font-weight: normal;
  margin: 0px;
  padding-left: 28px; }
  .che-box input[type="checkbox"],
  .che-box input[type="radio"] {
    position: absolute;
    right: 9000px; }
  .che-box input[type="checkbox"] + .label-text:before,
  .che-box input[type="radio"] + .label-text:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 6px;
    background: none;
    border-radius: 2px;
    width: 20px;
    height: 20px;
    font-style: initial;
    border: 1px solid #1b77bc; }
  .che-box input[type="radio"] + .label-text:before {
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-clip: padding-box; }
  .che-box input[type="checkbox"]:checked + .label-text:before,
  .che-box input[type="radio"]:checked + .label-text:before {
    content: "";
    background: #1b77bc url(../images/tick.svg) no-repeat center center;
    background-size: 100% 100%;
    animation: effect 250ms ease-in; }
  .che-box span.label-text {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    color: #202043;
    text-transform: capitalize; }
    @media (max-width: 991px) {
      .che-box span.label-text {
        font-size: 14px; } }

.textcenter {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px; }

.alert {
  display: flex;
  align-items: center;
  border: 0px;
  margin: 0px;
  margin-bottom: 16px;
  padding: 16px;
  border-radius: 4px;
  height: 60px;
  color: #fff; }
  .alert a {
    text-decoration: underline;
    color: #fff;
    font-weight: 400; }
    .alert a:hover {
      text-decoration: none; }
  .alert .contant {
    margin: 0px !important;
    margin-left: 12px !important; }
  .alert p {
    margin: 0px !important;
    color: #fff; }
  .alert.alert-success {
    background: linear-gradient(303.91deg, #1F7A66 7.57%, #60B3A7 94.39%); }
  .alert.alert-danger {
    background: linear-gradient(303.91deg, #C24848 7.57%, #D34A4A 94.39%); }

select.form-control {
  -webkit-appearance: none;
  background: url(../images/arrow.svg) no-repeat;
  background-position: 185px 19px; }
  select.form-control option {
    padding: 24px; }

.map-back {
  position: relative;
  width: 100%;
  padding: 48px 0px;
  height: 400px;
  padding: 0px;
  background: #f7f9fc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; }
  @media (max-width: 991px) {
    .map-back {
      padding: 24px 0px; } }
  @media (max-width: 991px) {
    .map-back {
      height: 260px; } }
  .map-back:before {
    content: '';
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(193deg, #023051 0%, #07253bba 51%, #775904b8 100%);
    z-index: 2; }
  .map-back img {
    content: '';
    position: absolute;
    top: 0;
    right: auto;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1; }
  .map-back .container {
    z-index: 2; }
  .map-back .title {
    color: #fff;
    text-align: center;
    margin-top: 48px; }
    @media (max-width: 991px) {
      .map-back .title {
        margin-top: 24px; } }
  .map-back .maplink {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px; }
    @media (max-width: 991px) {
      .map-back .maplink {
        display: none; } }
    .map-back .maplink li {
      display: inline-block;
      color: #eab00f;
      margin-right: 8px;
      font-weight: 600;
      text-transform: capitalize; }
      .map-back .maplink li:last-child {
        margin-left: 0px; }
        .map-back .maplink li:last-child a {
          padding-right: 0px; }
      .map-back .maplink li a {
        color: #fff;
        position: relative;
        padding-right: 16px;
        -moz-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        -webkit-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s; }
        .map-back .maplink li a:hover {
          color: #eab00f; }
        .map-back .maplink li a:before {
          position: absolute;
          top: 0px;
          right: 2px;
          content: "/";
          display: inline-block;
          color: #fff; }
  .map-back .nav__link {
    width: 66px;
    height: 66px; }
    .map-back .nav__link svg {
      width: 8px; }

.pagination {
  width: 100%;
  margin-top: 32px;
  justify-content: center; }
  @media (max-width: 991px) {
    .pagination {
      margin-top: 24px; } }
  .pagination li {
    display: inline-block;
    margin: 0px 4px; }
    .pagination li a,
    .pagination li span {
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      -webkit-border-radius: 8px !important;
      border-radius: 8px !important;
      background-clip: padding-box;
      width: 40px;
      height: 40px;
      border: 0px;
      background: #f7f9fc;
      color: #202043;
      -moz-transition: all 0.5s ease-in-out 0s;
      -o-transition: all 0.5s ease-in-out 0s;
      -webkit-transition: all 0.5s ease-in-out 0s;
      transition: all 0.5s ease-in-out 0s; }
    .pagination li svg {
      width: 12px;
      height: 12px; }
    .pagination li:last-child svg {
      transform: rotate(-90deg); }
    .pagination li:first-child svg {
      transform: rotate(90deg); }
  .pagination .page-link.active,
  .pagination .page-link:hover {
    background: #1b77bc !important;
    color: #fff !important; }
    .pagination .page-link.active svg,
    .pagination .page-link:hover svg {
      fill: #fff; }

/*# sourceMappingURL=home.css.map */
