/* @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap"); */

/* @import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap"); */

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */

/* @font-face {

  font-family: "SF Pro Text";

  src: url("../fonts/SF-Pro-Text-Bold.otf") format("opentype"),

    url("../fonts/SF-Pro-Text-Heavy.otf") format("opentype"),

    url("../fonts/SF-Pro-Text-Light.otf") format("opentype");

  font-weight: normal;

  font-style: normal;

} */

:root {
  --font-family: "Plus Jakarta Sans", sans-serif !important;

  /* font-family: "SF Pro Text" !important; */

  --background-color: #ffffff;

  /* Background color for the entire website, including individual sections */

  --default-color: #212529;

  /* Default color used for the majority of the text content across the entire website */

  --heading-color: #2d465e;

  /* Color for headings, subheadings and title throughout the website */

  --accent-color: #0d83fd;

  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */

  --surface-color: #ffffff;

  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */

  --contrast-color: #ffffff;

  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */

  --nav-color: #212529;

  /* The default color of the main navmenu links */

  --nav-hover-color: #175385;

  /* Applied to main navmenu links when they are hovered over or active */

  --nav-mobile-background-color: #ffffff;

  /* Used as the background color for mobile navigation menu */

  --nav-dropdown-background-color: #ffffff;

  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */

  --nav-dropdown-color: #212529;

  /* Used for navigation links of the dropdown items in the navigation menu. */

  --nav-dropdown-hover-color: #175385;

  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

* {
  ::-webkit-scrollbar {
    width: 10px;

    height: auto;
  }

  /* The track (background of the scrollbar) */

  ::-webkit-scrollbar-track {
    background: #f4f4f4;

    /* Light gray background */

    border-radius: 5px;

    /* Optional: Rounded corners */
  }

  /* The draggable part of the scrollbar */

  ::-webkit-scrollbar-thumb {
    background: #175385;

    /* Dark gray color */

    border-radius: 5px;

    /* Rounded corners for the thumb */
  }
}

body {
  font-family: var(--font-family);

  color: #313030;
}

a {
  color: #145484;

  text-decoration: none;

  cursor: pointer !important;
}

a:hover {
  color: #ff7e54;

  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family);
}

.back-to-top {
  position: fixed;

  visibility: hidden;

  opacity: 0;

  right: 15px;

  bottom: 15px;

  z-index: 996;

  background: #145484;

  width: 40px;

  height: 40px;

  border-radius: 4px;

  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;

  color: #fff;

  line-height: 0;
}

.back-to-top:hover {
  background: #1e7ec6;

  color: #fff;
}

.back-to-top.active {
  visibility: visible;

  opacity: 1;
}

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }

  #enterpriseDevelopment,
  #softwareProduct,
  #designtoFigma,
  #cloudMigration {
    flex-direction: column-reverse !important;
  }
}

/* @media (max-width: 768px) {



  [data-aos] {



    opacity: 1 !important;



    transform: none !important; 



    transition: none !important; 



  }



} */

/*Top Bar Starts*/

#topbar {
  background: black;

  font-size: 14px;

  padding: 0;

  color: rgba(255, 255, 255, 0.8);

  height: 40px;

  display: none !important;
}

#topbar .contact-info i {
  font-style: normal;

  color: #1e7ec6;
}

#topbar .contact-info i a,
#topbar .contact-info i span {
  padding-left: 5px;

  color: #ffffff !important;
}

#topbar .contact-info i a {
  line-height: 0;

  transition: 0.3s;
}

#topbar .contact-info i a:hover {
  color: #1e7ec6;
}

#topbar .cta a {
  color: #fff;

  background: #145484;

  padding: 10px 20px;

  display: inline-block;

  transition: 0.3s;
}

#topbar .cta a:hover {
  background: #ff6b3b;
}

/*Top Bar ENDS*/

/*--------------------------------------------------------------



# Global Header



--------------------------------------------------------------*/

.header {
  --background-color: rgba(255, 255, 255, 0);

  color: #ffffff;

  /* background-color: var(--background-color); */

  /* padding: 20px 0; */

  transition: all 0.3s;

  z-index: 997;
}

.header .header-container {
  transition: background-color 0.3s ease, box-shadow 0.3s ease;

  background-color: transparent;

  min-width: 100%;

  padding: 0px 50px 0px 25px;

  min-height: 70px;
}

.header-container.scrolled {
  background-color: white;

  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1); /* Optional shadow for effect */

  color: #000000 !important;
}

.header-container.scrolled .navmenu a {
  color: #000000; /* color when scrolled */
}

.header-container.scrolled .mobile-nav-toggle {
  color: #000000; /* color when scrolled */
}

.scrolled .header .header-container {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);
}

.header .logo {
  line-height: 1;

  padding-left: 5px;
}

.header .logo img {
  max-height: 36px;

  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;

  margin: 0;

  font-weight: 500;

  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);

  background: var(--accent-color);

  font-size: 14px;

  padding: 8px 20px;

  margin: 0 0 0 30px;

  border-radius: 50px;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);

  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  /* .header {

    padding-top: 20px;

  }



  .header .header-container {

    margin-left: 10px;

    margin-right: 10px;

  } */

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;

    margin: 0 10px 0 0;

    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

#multiColUl {
  left: -400px !important;
}

@media (max-width: 1100px) {
  #multiColUl {
    left: -370px !important;

    zoom: 0.85;
  }
}

@media (max-width: 991px) {
  #multiColUl {
    left: -270px !important;

    zoom: 0.8;
  }
}

/*--------------------------------------------------------------



# Navigation Menu



--------------------------------------------------------------*/

/* Navmenu - Desktop */

@media (min-width: 850px) {
  #multiColUl {
    min-height: 450px;
  }

  /* .companyUl {

    min-height: 200px;

  }



  .SolutionsUl {

    min-height: 700px;

  }



  .ServicesUl {

    min-height: 480px;

  } */

  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;

    padding: 0;

    display: flex;

    list-style: none;

    align-items: center;
  }

  .navmenu li {
    position: relative;

    cursor: pointer;

    transition: 0.3s ease-in-out;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #ffffff;

    padding: 18px 15px;

    font-size: 16px;

    font-family: var(--font-family);

    font-weight: 400;

    display: flex;

    align-items: center;

    justify-content: space-between;

    white-space: nowrap;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;

    line-height: 0;

    margin-left: 5px;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    /* color: var(--nav-hover-color) !important; */

    cursor: pointer;

    /* font-weight: 600; */

    /* transition: 0.3s ease-in-out; */
  }

  .navmenu .dropdown ul {
    margin: 0;

    padding: 10px 0;

    background: #ffffff;

    display: block;

    position: absolute;

    visibility: hidden;

    left: 14px;

    top: 130%;

    opacity: 0;

    border-radius: 15px;

    z-index: 99;

    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);

    transform-origin: top;

    transform: scaleY(0);

    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s 0.3s;

    /* background-image: url(../img/shapes/wave.svg); */

    background-repeat: no-repeat;

    background-position: center;

    background-size: cover;

    line-height: 35px;
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 5px 20px;

    font-size: 15px;

    text-transform: none;

    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;

    top: 130%;

    left: 0;

    right: 0;

    width: fit-content;

    visibility: visible;

    /* transform: scaleY(1); */

    transform: scaleY(1);

    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0s;
  }

  .multiColUltitle {
    padding: 5px 19px;
  }

  #othersUl {
    left: -100px;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;

    left: -90%;

    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;

    top: 0;

    left: -100%;

    visibility: visible;
  }
}

@media (max-width: 1200px) {
  .header .logo img {
    max-height: 28px;
  }
}

/* Navmenu - Mobile */

@media (max-width: 851px) {
  .mobile-nav-toggle {
    color: #ffffff;

    font-size: 28px;

    line-height: 0;

    margin-right: 10px;

    cursor: pointer;

    transition: color 0.3s;

    display: block !important;
  }

  .header .header-container {
    padding: 10px;
  }

  .header .logo img {
    max-height: 25px;
  }

  .navmenu {
    padding: 0;

    z-index: 9997;
  }

  .navmenu ul {
    display: none;

    list-style: none;

    position: absolute;

    inset: 60px 20px 20px 20px;

    padding: 10px 0;

    margin: 0;

    border-radius: 6px;

    background-color: var(--nav-mobile-background-color);

    overflow-y: auto;

    z-index: 9998;

    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color) !important;

    padding: 10px 20px;

    font-family: var(--font-family);

    font-size: 13px;

    font-weight: 500;

    display: flex;

    align-items: center;

    justify-content: space-between;

    white-space: normal;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;

    line-height: 0;

    margin-left: 5px;

    width: 30px;

    height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);

    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);

    color: var(--contrast-color);

    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;

    display: none;

    z-index: 99;

    padding: 10px 0;

    margin: 5px 20px;

    background-color: var(--nav-dropdown-background-color);

    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);

    box-shadow: none;

    transition: all 0.3s ease-in-out;

    background-image: url(../img/Ul-bg.jpg);
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;

    background-color: #ffffff;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;

    position: absolute;

    font-size: 32px;

    top: 15px;

    right: 15px;

    margin-right: 0;

    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;

    overflow: hidden;

    inset: 0;

    background: rgba(33, 37, 41, 0.8);

    min-height: 100vh;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }

  .multiColContent {
    flex-direction: column;

    gap: 10px;
  }

  .multiColContent h5 {
    padding: 5px 20px;
  }
}

.scrolled-offset {
  margin-top: 70px;
}

#main {
  z-index: 3;
}

#hero {
  width: 100%;

  height: 100vh;

  /* background: url("../img/hero-bg.jpg") center center; */

  background-size: cover;

  position: relative;

  z-index: 1;

  padding: 0;

  margin-bottom: -120px;

  overflow: hidden !important;
}

#hero:before {
  content: "";

  /* background: rgba(0, 0, 0, 0.4); */

  position: absolute;

  bottom: 0;

  top: 0;

  left: 0;

  right: 0;
}

#hero .container {
  z-index: 2;

  overflow: hidden;
}

#hero h1 {
  margin: 0 0 10px 0;

  font-size: 48px;

  font-weight: 700;

  line-height: 56px;

  color: #fff;
}

#hero h2 {
  color: #eee;

  margin-bottom: 50px;

  font-size: 24px;
}

/* Slide-in animation */

@keyframes slideIn {
  from {
    transform: translateX(100%);

    opacity: 0;
  }

  to {
    transform: translateX(0);

    opacity: 1;
  }
}

/* Slide-out animation */

@keyframes slideOut {
  from {
    transform: translateX(0);

    opacity: 1;
  }

  to {
    transform: translateX(-100%);

    opacity: 0;
  }
}

/* Initial styles for sliding elements */

.slide {
  animation-duration: 1s;

  animation-fill-mode: forwards;
}

.slide-in {
  animation-name: slideIn;
}

.slide-out {
  animation-name: slideOut;
}

#hero .get-started-icon {
  font-size: 24px;

  background: #145484;

  padding: 14px;

  color: #fff;

  border-radius: 50px;

  position: relative;

  z-index: 5;

  box-shadow: 10px 2px 15px rgba(0, 0, 0, 0.1);
}

#hero .btn-get-started {
  font-family: var(--font-family);

  font-weight: 400;

  font-size: 16px;

  letter-spacing: 1px;

  display: inline-block;

  transition: 0.5s;

  margin-left: -10px;

  padding: 8px 26px 8px 26px;

  color: #fff;

  background: #584b48;

  border-radius: 0 50px 50px 0;

  position: relative;

  z-index: 4;
}

#hero .btn-get-started:hover {
  background: #145484;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 1024px), (max-height: 768px) {
  #hero {
    margin-bottom: -150px;

    height: 80vh;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 80vh;
  }

  #hero h1 {
    font-size: 28px;

    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;

    line-height: 24px;

    margin-bottom: 30px;
  }

  .promo video {
    width: 100% !important;

    height: auto;
  }

  #particles-js .container-js {
    padding: 0.3rem !important;
  }

  #particles-js h1 {
    font-size: 54px !important;
  }

  #paragraph {
    font-size: 16px;
  }
  .breadcrumbs nav ol {
    font-size: 14px !important;
  }
}

/* @media (max-height: 850px) {

  .SolutionsUl,

  .ServicesUl {

    zoom: 0.8 !important;

  }

} */

@media (max-height: 640px) {
  #hero {
    height: 120vh;
  }

  #particles-js h1 {
    font-size: 40px !important;
  }

  #paragraph {
    font-size: 16px;
  }

  #particles-js .container-js {
    padding: 0.3rem !important;
  }
}

section {
  padding: 60px 0;

  overflow: hidden;

  border-bottom: 1px solid #eeeeee;
}

.section-bg {
  background-color: #fbfdfe;
}

/* .section-title {

  text-align: center;

} */

.more-btn:hover {
  box-shadow: 1px 1px 15px rgb(90, 203, 255);
}

.section-title h2 {
  font-size: 32px;

  font-weight: 500;

  margin-bottom: 20px;

  padding-bottom: 0;

  font-family: var(--font-family);

  color: #175385;

  /* background-clip: text;



  background: -webkit-linear-gradient(#145484, #5d95c2);



  -webkit-background-clip: text;



  -webkit-text-fill-color: transparent; */
}

.section-title p {
  margin-bottom: 0;
}

.breadcrumbs .page-header {
  padding: 80px 0 80px 0;

  position: relative;

  background-size: cover;

  background-position: center;

  background-repeat: no-repeat;

  height: 300px;
}

.breadcrumbs .page-header:before {
  content: "";

  background-color: rgba(14, 29, 52, 0.8);

  position: absolute;

  inset: 0;
}

.breadcrumbs .page-header h1 {
  font-size: 28px;

  font-weight: 500;

  color: #fff;

  font-family: var(--font-family);

  position: relative;

  top: 50px;
}

.breadcrumbs .page-header p {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs nav {
  background-color: #f3f6fc;

  padding: 20px 0;
}

.breadcrumbs nav ol {
  display: flex;

  flex-wrap: wrap;

  list-style: none;

  margin: 0;

  padding: 0;

  font-size: 16px;

  font-weight: 600;

  color: var(--color-secondary);
}

.breadcrumbs nav ol a {
  color: var(--color-primary);

  transition: 0.3s;
}

.breadcrumbs nav ol a:hover {
  text-decoration: underline;
}

.breadcrumbs nav ol li + li {
  padding-left: 10px;
}

.breadcrumbs nav ol li + li::before {
  display: inline-block;

  padding-right: 10px;

  color: #4278cc;

  content: "/";
}

.breadcrumbs h2 {
  font-size: 28px;

  font-weight: 500;
}

.breadcrumbs ol {
  display: flex;

  flex-wrap: wrap;

  list-style: none;

  padding: 0 0 10px 0;

  margin: 0;

  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;

  padding-right: 10px;

  color: #635551;

  content: "/";
}

.why-us {
  position: relative;

  z-index: 3;
}

.why-us .content {
  padding: 30px;

  background: #145484;

  color: #fff;

  border-radius: 27px;
}

.why-us .content h3 {
  font-weight: 700;

  font-size: 34px;

  margin-bottom: 30px;
}

.why-us .content p {
  margin-bottom: 30px;
}

.why-us .content .more-btn {
  display: inline-block;

  background: rgba(255, 255, 255, 0.2);

  padding: 6px 30px 8px 30px;

  color: #fff !important;

  border-radius: 50px;

  transition: all ease-in-out 0.4s;
}

.why-us .content .more-btn i {
  font-size: 14px;
}

.why-us .icon-boxes .icon-box {
  text-align: center;

  border-radius: 27px;

  background: #ffffff;

  padding: 40px 30px 20px 30px;

  width: 100%;

  /* box-shadow: 2px 13px 21px -1px rgba(0, 20, 31, 0.2); */

  /* box-shadow: 10px 10px 0px #145484; */

  transition: box-shadow 0.5s ease-in-out;

  border: 1px solid #000;
}

.why-us .icon-boxes .icon-box:hover {
  box-shadow: 10px 10px 0px #145484;

  transition: box-shadow 0.5s ease-in-out;
}

.why-us .icon-boxes .icon-box i {
  font-size: 40px;

  color: #145484;

  margin-bottom: 30px;
}

.why-us .icon-boxes .icon-box h4 {
  font-size: 18px;

  font-weight: 700;

  margin: 0 0 30px 0;

  color: #554945 !important;
}

.why-us .icon-boxes .icon-box p {
  font-size: 13px;

  color: #716f6f;
}

.about .row h4 {
  font-size: 18px;

  color: #7f6d68;

  margin-bottom: 15px;
}

.bluetext {
  /* background-clip: text;



  background: -webkit-linear-gradient(#145484, #5d95c2);



  -webkit-background-clip: text;



  -webkit-text-fill-color: transparent; */

  color: #175385;
}

.social-links a {
  font-size: 18px;

  display: inline-block;

  background: #145484;

  color: #fff;

  line-height: 1;

  padding: 8px 0;

  margin-right: 4px;

  border-radius: 50%;

  text-align: center;

  width: 36px;

  height: 36px;

  transition: 0.3s;
}

.about .row h3 {
  font-size: 28px;

  font-weight: 700;

  color: #554945;

  margin-bottom: 15px;
}

.about .icon-box {
  margin-top: 40px;
}

.about .icon-box .icon {
  float: left;

  display: flex;

  align-items: center;

  justify-content: center;

  width: 64px;

  height: 64px;

  border: 2px solid #ffcbba;

  border-radius: 50px;

  transition: 0.5s;

  background: #fff;
}

.about .icon-box .icon i {
  color: #145484;

  font-size: 32px;
}

.about .icon-box:hover .icon {
  background: #145484;

  border-color: #145484;
}

.about .icon-box:hover .icon i {
  color: #fff;
}

.about .icon-box .title {
  margin-left: 85px;

  font-weight: 700;

  margin-bottom: 10px;

  font-size: 18px;
}

.about .icon-box .title a {
  color: #343a40;

  transition: 0.3s;
}

.about .icon-box .title a:hover {
  color: #145484;
}

.about .row .description {
  margin-left: 85px;

  line-height: 24px;

  font-size: 14px;
}

.about .video-box {
  background: url("../img/about-img.jpg") center center no-repeat;

  background-size: cover;

  min-height: 500px;
}

.about .play-btn {
  width: 94px;

  height: 94px;

  background: radial-gradient(#145484 50%, rgba(255, 88, 33, 0.4) 52%);

  border-radius: 50%;

  display: block;

  position: absolute;

  left: calc(50% - 47px);

  top: calc(50% - 47px);

  overflow: hidden;
}

.about .play-btn::after {
  content: "";

  position: absolute;

  left: 50%;

  top: 50%;

  transform: translateX(-40%) translateY(-50%);

  width: 0;

  height: 0;

  border-top: 10px solid transparent;

  border-bottom: 10px solid transparent;

  border-left: 15px solid #fff;

  z-index: 100;

  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn::before {
  content: "";

  position: absolute;

  width: 120px;

  height: 120px;

  -webkit-animation-delay: 0s;

  animation-delay: 0s;

  -webkit-animation: pulsate-btn 2s;

  animation: pulsate-btn 2s;

  -webkit-animation-direction: forwards;

  animation-direction: forwards;

  -webkit-animation-iteration-count: infinite;

  animation-iteration-count: infinite;

  -webkit-animation-timing-function: steps;

  animation-timing-function: steps;

  opacity: 1;

  border-radius: 50%;

  border: 5px solid rgba(255, 88, 33, 0.7);

  top: -15%;

  left: -15%;

  background: rgba(198, 16, 0, 0);
}

.about .play-btn:hover::after {
  border-left: 15px solid #145484;

  transform: scale(20);
}

.about .play-btn:hover::before {
  content: "";

  position: absolute;

  left: 50%;

  top: 50%;

  transform: translateX(-40%) translateY(-50%);

  width: 0;

  height: 0;

  border: none;

  border-top: 10px solid transparent;

  border-bottom: 10px solid transparent;

  border-left: 15px solid #fff;

  z-index: 200;

  -webkit-animation: none;

  animation: none;

  border-radius: 0;
}

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);

    opacity: 1;
  }

  100% {
    transform: scale(1, 1);

    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);

    opacity: 1;
  }

  100% {
    transform: scale(1, 1);

    opacity: 0;
  }
}

.clients .swiper-pagination {
  margin-top: 20px;

  position: relative;

  padding-top: 25px;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  display: none;

  width: 14px;

  height: 14px;

  background-color: #fff;

  opacity: 1;

  border: 1px solid #145484;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #145484;
}

.clients .swiper-slide img {
  opacity: 1;
}

.clients .swiper-slide img:hover {
  filter: none;

  opacity: 1;
}

@keyframes backgroundMove {
  0% {
    background-position: bottom left;
  }

  50% {
    background-position: top right;
  }

  100% {
    background-position: bottom left;
  }
}

.services .icon-box {
  padding: 50px 20px;

  margin-top: 35px;

  margin-bottom: 25px;

  text-align: center;

  height: 326px;

  position: relative;

  color: black;

  border-radius: 27px;

  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */

  box-shadow: -10px -10px 0px #14548430;

  border: 1px solid #000;

  background: #ffffff;

  transition: box-shadow 0.5s ease-in-out;
}

.services .icon-box:hover {
  box-shadow: 10px 10px 0px #145484;

  transition: box-shadow 0.5s ease-in-out;
}

.services .icon {
  position: absolute;

  top: -36px;

  left: calc(50% - 36px);

  transition: 0.2s;

  border-radius: 50%;

  border: 6px solid #fff;

  display: flex;

  justify-content: center;

  align-items: center;

  flex-direction: column;

  text-align: center;

  width: 72px;

  height: 72px;

  background: #145484;

  box-shadow: 2px 13px 52px -1px rgba(0, 20, 31, 0.2);
}

.services .icon i {
  color: #fff;

  font-size: 24px;

  line-height: 0;
}

.services .title {
  font-weight: 700;

  margin-bottom: 15px;

  font-size: 18px;

  text-transform: none;
}

.services .title a {
  color: #343a40;
}

.services .icon-box:hover .icon {
  background: #fff;

  border: 2px solid #145484;
}

.services .icon-box:hover .icon i {
  color: #145484;
}

.services .icon-box:hover .title a {
  color: #145484;
}

.services .description {
  line-height: 24px;

  font-size: 13px;
}

.values .card {
  border: 0;

  padding: 160px 20px 20px 20px;

  position: relative;

  width: 100%;

  background-size: cover;

  background-repeat: no-repeat;

  background-position: center center;
}

.values .card-body {
  z-index: 10;

  background: rgba(255, 255, 255, 0.9);

  padding: 15px 30px;

  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);

  transition: 0.3s;

  transition: ease-in-out 0.4s;

  border-radius: 5px;
}

.values .card-title {
  font-weight: 700;

  text-align: center;

  margin-bottom: 15px;
}

.values .card-title a {
  color: #473d3a;
}

.values .card-text {
  color: #4b4949;
}

.values .read-more a {
  color: #656262;

  text-transform: uppercase;

  font-weight: 600;

  font-size: 12px;

  transition: 0.4s;
}

.values .read-more a:hover {
  text-decoration: underline;
}

.values .card:hover .card-body {
  background: #145484;
}

.values .card:hover .read-more a,
.values .card:hover .card-title,
.values .card:hover .card-title a,
.values .card:hover .card-text {
  color: #fff;
}

.testimonials {
  padding: 80px 0;

  background: url("../img/testimonials-bg.jpg") no-repeat;

  background-position: center center;

  background-size: cover;

  position: relative;
}

.testimonials::before {
  content: "";

  position: absolute;

  left: 0;

  right: 0;

  top: 0;

  bottom: 0;

  background: rgba(0, 0, 0, 0.5);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;

  color: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;

  border-radius: 50%;

  border: 6px solid rgba(255, 255, 255, 0.15);

  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;

  font-weight: bold;

  margin: 10px 0 5px 0;

  color: #fff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;

  color: #ddd;

  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(255, 255, 255, 0.4);

  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;

  left: -5px;

  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;

  right: -5px;

  position: relative;

  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;

  margin: 0 auto 15px auto;

  color: #eee;
}

.testimonials .swiper-pagination {
  margin-top: 20px;

  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;

  height: 12px;

  background-color: rgba(255, 255, 255, 0.5);

  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #145484;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

.portfolio #portfolio-flters {
  padding: 0;

  margin: 0 auto 35px auto;

  list-style: none;

  text-align: center;

  border-radius: 50px;

  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;

  display: inline-block;

  padding: 10px 20px 12px 20px;

  font-size: 14px;

  font-weight: 600;

  line-height: 1;

  text-transform: uppercase;

  color: #313030;

  margin-bottom: 5px;

  transition: all 0.3s ease-in-out;

  border-radius: 50px;
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  color: #145484;

  background: #fff1ed;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;

  position: absolute;

  left: 30px;

  right: 30px;

  bottom: 0;

  z-index: 3;

  transition: all ease-in-out 0.3s;

  background: rgba(255, 255, 255, 0.9);

  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;

  color: #fff;

  font-weight: 600;

  color: #473d3a;
}

.portfolio .portfolio-item .portfolio-info p {
  color: #7f6d68;

  font-size: 14px;

  margin-bottom: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;

  right: 40px;

  font-size: 24px;

  top: calc(50% - 18px);

  color: #635551;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #145484;
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}

.portfolio .portfolio-item .portfolio-links {
  opacity: 0;

  left: 0;

  right: 0;

  text-align: center;

  z-index: 3;

  position: absolute;

  transition: all ease-in-out 0.3s;
}

.portfolio .portfolio-item .portfolio-links a {
  color: #fff;

  margin: 0 2px;

  font-size: 28px;

  display: inline-block;

  transition: 0.3s;
}

.portfolio .portfolio-item .portfolio-links a:hover {
  color: #ffa587;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;

  bottom: 20px;
}

.portfolio-details {
  padding-top: 20px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;

  position: relative;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 12px;

  height: 12px;

  background-color: #fff;

  opacity: 1;

  border: 1px solid #145484;
}

.portfolio-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background-color: #145484;
}

.portfolio-details .portfolio-info {
  padding: 30px;

  box-shadow: 0px 0 30px rgba(71, 61, 58, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;

  font-weight: 700;

  margin-bottom: 20px;

  padding-bottom: 20px;

  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;

  padding: 0;

  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;

  font-weight: 700;

  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

.team .member {
  margin-bottom: 20px;

  overflow: hidden;

  text-align: center;

  border-radius: 27px;

  background: #fff;

  box-shadow: 2px 13px 21px -1px rgba(0, 20, 31, 0.2);
}

.team .member .member-img {
  position: relative;

  overflow: hidden;
}

.team .member .social {
  position: absolute;

  left: 0;

  bottom: 0;

  right: 0;

  height: 40px;

  opacity: 0;

  transition: ease-in-out 0.3s;

  background: rgba(255, 255, 255, 0.85);

  display: flex;

  align-items: center;

  justify-content: center;
}

.team .member .social a {
  transition: color 0.3s;

  color: #473d3a;

  margin: 0 10px;

  display: inline-flex;

  align-items: center;

  justify-content: center;
}

.team .member .social a:hover {
  color: #145484;
}

.team .member .social i {
  font-size: 18px;

  line-height: 0;
}

.team .member .member-info {
  padding: 25px 15px;
}

.team .member .member-info h4 {
  font-weight: 700;

  margin-bottom: 5px;

  font-size: 18px;

  color: #473d3a;
}

.team .member .member-info span {
  display: block;

  font-size: 13px;

  font-weight: 400;

  color: #989595;
}

.team .member .member-info p {
  font-style: italic;

  font-size: 14px;

  line-height: 26px;

  color: #656262;
}

.team .member:hover .social {
  opacity: 1;
}

.pricing .box {
  padding: 20px;

  background: #fff;

  text-align: center;

  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);

  border-radius: 5px;

  position: relative;

  overflow: hidden;
}

.pricing h3 {
  font-weight: 400;

  margin: -20px -20px 20px -20px;

  padding: 20px 15px;

  font-size: 16px;

  font-weight: 600;

  color: #656262;

  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;

  color: #145484;

  font-weight: 600;

  font-family: var(--font-family);

  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;

  top: -15px;

  left: -3px;
}

.pricing h4 span {
  color: #bababa;

  font-size: 16px;

  font-weight: 300;
}

.pricing ul {
  padding: 0;

  list-style: none;

  color: #313030;

  text-align: center;

  line-height: 20px;

  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: #145484;

  font-size: 18px;

  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;

  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;

  padding: 20px 15px;

  background: #f8f8f8;

  text-align: center;
}

.pricing .btn-buy {
  background: #145484;

  display: inline-block;

  padding: 6px 35px 8px 35px;

  border-radius: 4px;

  color: #fff;

  transition: none;

  font-size: 14px;

  font-weight: 400;

  font-family: var(--font-family);

  font-weight: 600;

  box-shadow: 0 3px 7px rgba(255, 88, 33, 0.4);

  transition: 0.3s;
}

.pricing .btn-buy:hover {
  background: #ff7e54;
}

.pricing .featured h3 {
  color: #fff;

  background: #145484;

  box-shadow: 0 3px 7px rgba(255, 88, 33, 0.4);
}

.pricing .advanced {
  width: 200px;

  position: absolute;

  top: 18px;

  right: -68px;

  transform: rotate(45deg);

  z-index: 1;

  font-size: 14px;

  padding: 1px 0 3px 0;

  background: #145484;

  color: #fff;
}

.faq .faq-list {
  padding: 0 100px;
}

.faq .faq-list ul {
  padding: 0;

  list-style: none;
}

.faq .faq-list li + li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;

  background: #fff;

  border-radius: 4px;

  position: relative;
}

.faq .faq-list a {
  display: block;

  position: relative;

  font-family: var(--font-family);

  font-size: 16px;

  line-height: 24px;

  font-weight: 500;

  padding: 0 30px;

  outline: none;

  cursor: pointer;
}

.faq .faq-list .icon-help {
  font-size: 24px;

  position: absolute;

  right: 0;

  left: 20px;

  color: #ffb8a1;
}

.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
  font-size: 24px;

  position: absolute;

  right: 0;

  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;

  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #343a40;
}

.faq .faq-list a.collapsed:hover {
  color: #145484;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

.contact .info-box {
  color: #313030;

  box-shadow: 3px 13px 59px -1px rgba(0, 20, 31, 0.2);

  padding: 14px;

  height: 217px;

  width: 280px;

  margin: auto;

  border-radius: 27px;
}

/* .info-item:hover {

  transform: translateY(-10px);



  transition: all 0.5s ease-in-out;

} */

.contact .info-box i {
  font-size: 32px;
}

.contact .info-box h3 {
  font-size: 18px;

  color: #656262;

  font-weight: 700;

  margin: 10px 0 10px 0px;

  text-align: center;
}

/* a {



  color: #554945 !important;



} */

.contact .info-box p {
  padding: 0;

  line-height: 24px;

  font-size: 12px;

  text-align: center;

  color: #554945;
}

.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);

  padding: 30px;
}

.contact .php-email-form .error-message {
  display: none;

  color: #fff;

  background: #ed3c0d;

  text-align: left;

  padding: 15px;

  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;

  color: #fff;

  background: #18d26e;

  text-align: center;

  padding: 15px;

  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;

  background: #fff;

  text-align: center;

  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";

  display: inline-block;

  border-radius: 50%;

  width: 24px;

  height: 24px;

  margin: 0 10px -6px 0;

  border: 3px solid #18d26e;

  border-top-color: #eee;

  -webkit-animation: animate-loading 1s linear infinite;

  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;

  box-shadow: none;

  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #145484;
}

.contact .php-email-form input {
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 12px 15px;
}

.contact .php-email-form button[type="submit"] {
  background: #145484;

  border: 0;

  padding: 10px 24px;

  color: #fff;

  transition: 0.4s;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #ff7e54;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.iframe-div {
  padding-top: 20px;
}

.iframe {
  height: 370px;

  width: 900px;
}

.blog {
  padding: 20px 0;
}

.blog .entry {
  padding: 30px;

  margin-bottom: 60px;

  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .entry .entry-img {
  max-height: 440px;

  margin: -30px -30px 20px -30px;

  overflow: hidden;
}

.blog .entry .entry-title {
  font-size: 28px;

  font-weight: bold;

  padding: 0;

  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: #473d3a;

  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: #145484;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;

  color: #afa29e;
}

.blog .entry .entry-meta ul {
  display: flex;

  flex-wrap: wrap;

  list-style: none;

  align-items: center;

  padding: 0;

  margin: 0;
}

.blog .entry .entry-meta ul li + li {
  padding-left: 20px;
}

.blog .entry .entry-meta i {
  font-size: 16px;

  margin-right: 8px;

  line-height: 0;
}

.blog .entry .entry-meta a {
  color: #656262;

  font-size: 14px;

  display: inline-block;

  line-height: 1;
}

.blog .entry .entry-content p {
  line-height: 24px;
}

.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;

  text-align-last: right;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;

  background: #145484;

  color: #fff;

  padding: 6px 20px;

  transition: 0.3s;

  font-size: 14px;

  border-radius: 4px;
}

.blog .entry .entry-content .read-more a:hover {
  background: #ff6b3b;
}

.blog .entry .entry-content h3 {
  font-size: 22px;

  margin-top: 30px;

  font-weight: bold;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;

  background-color: #fafafa;

  padding: 60px;

  position: relative;

  text-align: center;

  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #313030;

  line-height: 1.6;

  margin-bottom: 0;

  font-style: italic;

  font-weight: 500;

  font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
  content: "";

  position: absolute;

  left: 0;

  top: 0;

  bottom: 0;

  width: 3px;

  background-color: #473d3a;

  margin-top: 20px;

  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;

  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #988782;

  display: inline;
}

.blog .entry .entry-footer a {
  color: #554945;

  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #145484;
}

.blog .entry .entry-footer .cats {
  list-style: none;

  display: inline;

  padding: 0 20px 0 0;

  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;

  display: inline;

  padding: 0;

  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li + li::before {
  padding-right: 6px;

  color: #6c757d;

  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}

.blog .blog-author {
  padding: 20px;

  margin-bottom: 30px;

  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
  width: 120px;

  margin-right: 20px;
}

.blog .blog-author h4 {
  font-weight: 600;

  font-size: 22px;

  margin-bottom: 0px;

  padding: 0;

  color: #473d3a;
}

.blog .blog-author .social-links {
  margin: 0 10px 10px 0;

  background: #1e7ec6;
}

#footer .social-links a:hover {
  background: #1e7ec6;

  color: #fff;

  text-decoration: none;
}

.blog .blog-author .social-links a {
  color: rgba(71, 61, 58, 0.5);

  background: #1e7ec6;

  margin-right: 5px;
}

.blog .blog-author p {
  font-style: italic;

  color: #a4a2a2;
}

.blog .blog-comments {
  margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
  font-weight: bold;
}

.blog .blog-comments .comment {
  margin-top: 30px;

  position: relative;
}

.blog .blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
  width: 60px;
}

.blog .blog-comments .comment h5 {
  font-size: 16px;

  margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
  font-weight: bold;

  color: #313030;

  transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
  color: #145484;
}

.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;

  color: #473d3a;
}

.blog .blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .blog-comments .comment time {
  display: block;

  font-size: 14px;

  color: #635551;

  margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .blog-comments .reply-form {
  margin-top: 30px;

  padding: 30px;

  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
  font-weight: bold;

  font-size: 22px;
}

.blog .blog-comments .reply-form p {
  font-size: 14px;
}

.blog .blog-comments .reply-form input {
  border-radius: 4px;

  padding: 10px 10px;

  font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
  box-shadow: none;

  border-color: #ffa587;
}

.blog .blog-comments .reply-form textarea {
  border-radius: 4px;

  padding: 10px 10px;

  font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;

  border-color: #ffa587;
}

.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
  border-radius: 4px;

  padding: 10px 20px;

  border: 0;

  background-color: #473d3a;
}

.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #554945;
}

.blog .blog-pagination {
  color: #7f6d68;
}

.blog .blog-pagination ul {
  display: flex;

  padding: 0;

  margin: 0;

  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;

  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: #473d3a;

  padding: 7px 16px;

  display: flex;

  align-items: center;

  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: #145484;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: #fff;
}

.blog .sidebar {
  padding: 30px;

  margin: 0 0 60px 20px;

  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;

  font-weight: 700;

  padding: 0 0 0 0;

  margin: 0 0 15px 0;

  color: #473d3a;

  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog .sidebar .search-form form {
  background: #fff;

  border: 1px solid #ddd;

  padding: 3px 10px;

  position: relative;
}

.blog .sidebar .search-form form input[type="text"] {
  border: 0;

  padding: 4px;

  border-radius: 4px;

  width: calc(100% - 40px);
}

.blog .sidebar .search-form form button {
  position: absolute;

  top: 0;

  right: 0;

  bottom: 0;

  border: 0;

  background: none;

  font-size: 16px;

  padding: 0 15px;

  margin: -1px;

  background: #145484;

  color: #fff;

  transition: 0.3s;

  border-radius: 0 4px 4px 0;

  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: #ff6735;
}

.blog .sidebar .categories ul {
  list-style: none;

  padding: 0;
}

.blog .sidebar .categories ul li + li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: #473d3a;

  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: #145484;
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;

  color: #989595;

  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item + .post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;

  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;

  margin-left: 95px;

  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: #473d3a;

  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: #145484;
}

.blog .sidebar .recent-posts time {
  display: block;

  margin-left: 95px;

  font-style: italic;

  font-size: 14px;

  color: #989595;
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;

  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #8d7973;

  font-size: 14px;

  padding: 6px 14px;

  margin: 0 6px 8px 0;

  border: 1px solid #f4f2f2;

  display: inline-block;

  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;

  border: 1px solid #145484;

  background: #145484;
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;

  color: #ddd7d6;

  font-size: 14px;
}

#footer {
  color: #313030;

  font-size: 14px;

  background: #fff;
}

#footer .footer-top {
  padding: 60px 0 30px 0;

  background: #fbfdfe;

  /* border: 1px solid #f1e7e7; */
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;

  margin: 0 0 30px 0;

  padding: 2px 0 2px 0;

  line-height: 1;

  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;

  line-height: 24px;

  margin-bottom: 0;

  font-family: var(--font-family);

  color: #656262;

  padding-left: 4px;
}

#footer .footer-top h4 {
  font-size: 16px;

  font-weight: bold;

  color: #313030;

  position: relative;

  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;

  padding: 0;

  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;

  color: #145484;

  font-size: 18px;

  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;

  display: flex;

  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #656262;

  transition: 0.3s;

  display: inline-block;

  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;

  color: #145484;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;

  font-weight: bold;

  color: #313030;

  position: relative;

  padding-bottom: 12px;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;

  padding: 4px 8px;

  width: calc(100% - 100px);

  outline: none;

  border: 0px;
}

#sub {
  position: absolute;

  top: 0;

  right: 0;

  bottom: 0;

  border: 0;

  background: none;

  font-size: 16px;

  padding: 0 20px;

  background: #145484;

  color: #fff;

  transition: 0.3s;

  border-radius: 50px;

  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#sub:hover {
  background: #1e7ec6;
}

#footer .credits {
  padding-top: 5px;

  font-size: 13px;

  color: #313030;
}

#footer .social-links a {
  font-size: 18px;

  display: inline-block;

  background: #145484;

  color: #fff !important;

  line-height: 1;

  padding: 8px 0;

  margin-right: 4px;

  border-radius: 50%;

  text-align: center;

  width: 36px;

  height: 36px;

  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #145484;

  color: #fff;

  text-decoration: none;
}

.footer-logo {
  margin-bottom: 8px;

  height: 30px;

  width: 180px;
}

.map {
  overflow: hidden;

  padding-bottom: 56.25%;

  position: relative;

  margin-top: 40px;

  height: 0;
}

.map iframe {
  left: 0;

  top: 0;

  width: 100%;

  height: 100%;

  position: absolute;

  /* padding-top: 20px; */
}

a.sitemap-list {
  font-size: 15px;

  font-weight: 600;
}

.SIGNUP_HEADING_CLASS {
  font-size: 14px;

  font-weight: bold;

  color: #175385;

  /* background: -webkit-linear-gradient(#145484, #5d95c2);



  -webkit-background-clip: text;



  -webkit-text-fill-color: transparent; */

  text-align: left;

  padding: 10px 0px;

  width: 100%;

  display: block;
}

#EMBED_FORM_EMAIL_LABEL {
  font-size: 14px;

  border: 1px solid rgb(221, 221, 221);

  border-radius: 0;

  width: 100%;

  height: 40px;

  border-radius: 30px;

  z-index: 4;

  outline: none;

  padding: 10px 120px 10px 10px;

  color: rgb(136, 136, 136);

  text-align: left;

  background-color: rgb(255, 255, 255);

  box-sizing: border-box;
}

#zcWebOptin {
  text-align: center;

  border-radius: 5px;

  width: 35%;

  height: 40px;

  z-index: 5;

  border: 0px;

  color: rgb(255, 255, 255);

  cursor: pointer;

  outline: none;

  font-size: 14px;

  background-color: rgb(20, 84, 132);

  position: absolute;

  right: 0px;

  bottom: 20px;

  border-radius: 25px;
}

.whatsapp-section {
  position: fixed;

  right: 9px;

  bottom: 80px;

  z-index: 100;

  width: 55px;
}

div#zsiq_float {
  background-color: #145484 !important;
}

.info-item:hover .social-links a i {
  background-color: #145484 !important;

  color: #ffffff;
}

.info-item .social-links a i {
  background-color: #145484 !important;

  color: #ffffff;
}

.ceo-card {
  width: 300px;

  height: 400px;

  position: relative;

  transform-style: preserve-3d;

  transform: rotateY(0deg);

  transition: transform 0.6s ease-in-out;

  border-radius: 10px;

  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.ceo-card:hover {
  transform: rotateY(180deg);
}

.card-side {
  width: 100%;

  height: 100%;

  position: absolute;

  backface-visibility: hidden;

  overflow: hidden;

  box-shadow: 1px 1px 5px #0093e935;

  border-radius: 8px;
}

.card-front {
  display: flex;

  justify-content: center;

  align-items: end;
}

.card-front img {
  width: 100%;

  height: auto;
}

.card-back {
  background-color: #0093e9;

  background-image: linear-gradient(160deg, #0093e9 0%, #80d0c7 100%);

  gap: 10px;

  justify-content: center;

  align-items: center;

  transform: rotateY(180deg);
}

.card-back img {
  width: 150px;

  height: auto;
}

.card-back h3 {
  margin: 0;

  padding: 20px;

  text-align: center;
}

#linkedinlogo {
  position: absolute;

  bottom: 0px;
}

#linkedinlogo img {
  width: 90px;
}

.slideshow-container {
  width: 1100px;

  padding-top: 50px;

  position: relative;

  margin: 0 auto;
}

.clients h1 {
  text-align: center;

  padding-bottom: 25px;
}

.clients img {
  display: block;

  margin: auto;
}

.clients p {
  text-align: center;

  font-size: 14px;
}

.column {
  float: left;

  width: 20%;
}

.row::after {
  content: "";

  clear: both;

  display: table;
}

.prev,
.next {
  cursor: pointer;

  position: absolute;

  top: 50%;

  width: auto;

  margin-top: 28px;

  color: black;

  font-weight: bold;

  font-size: 24px;

  transition: 0.6s ease;

  border-radius: 0 3px 3px 0;

  user-select: none;
}

.next {
  right: 0;

  border-radius: 3px 10px 0 3px;
}

.prev:hover,
.next:hover {
  color: white;
}

.promo {
  margin: auto;

  padding-top: 40px;

  padding-left: 50px;

  padding-right: 50px;

  display: flex;

  justify-content: center;

  align-items: center;
}

.promo video {
  width: 80%;

  height: auto;
}

.p1pic {
  margin-right: 14%;

  float: right;

  height: auto;

  width: 20%;
}

.icons {
  font-size: 22px;

  float: right;

  color: red;

  line-height: 1;

  padding: 8px 0;

  margin-right: 4px;

  border-radius: 50%;

  text-align: center;

  width: 36px;

  height: 36px;

  transition: 0.3s;
}

.icons:hover {
  background: #1e7ec6;

  color: white;

  text-decoration: none;
}

.p1pic {
  margin-right: auto;

  float: right;

  height: auto;

  width: 20%;
}

.heroButtons {
  display: flex;

  gap: 10px;

  margin-top: 20px;

  justify-content: center;
}

.heroButtons button {
  padding: 10px 15px;

  font-size: 14px;

  cursor: pointer;

  border: none;

  border-radius: 5px;

  background-color: #007bff;

  color: white;

  transition: background-color 0.3s;
}

.heroButtons button:hover {
  background-color: #0056b3;
}

.erp-sercices-section .row {
  margin-bottom: 2rem !important;
}

.servicesContent {
  display: flex;

  flex-direction: column;

  align-items: start;

  justify-content: center;
}

.servicesImage {
  display: flex;

  justify-content: center;

  align-items: center;

  overflow: hidden;
}

.servicesImage img {
  max-width: 500px;

  height: auto;

  object-fit: contain;

  aspect-ratio: 3/2;
}

.count {
  font-size: 40px;

  font-weight: bold;
}

.counter-inner {
  position: relative;

  z-index: 2;
}

.count-icon {
  font-size: 48px;
}

/* Slide container */

.slideContainer {
  position: relative;

  width: 100%;

  height: 100%;
}

/* Individual slides */

#slide {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  display: none; /* Initially hidden */

  text-align: start;

  /* border: 1px solid #ddd; */

  opacity: 0;

  /* background-color: #00000050; */

  justify-content: center;

  align-items: flex-start;

  flex-direction: column;

  gap: 15px;
}

#slide.active {
  display: flex; /* Only show active slide */

  animation: fadeIn 1s ease-in-out forwards; /* Fade-in animation */
}

#slide.fade-out {
  display: flex; /* Show while fading out */

  animation: fadeOut 1s ease-in-out forwards; /* Fade-out animation */
}

/* FadeIn animation */

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* FadeOut animation */

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.background-video {
  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  object-fit: cover; /* Cover the container while preserving aspect ratio */

  z-index: -1;
}

#slide p {
  margin: 10px 0 10px 0;

  font-size: 22px;

  font-weight: 500;

  line-height: inherit;

  color: #fff;
}

/*--------------------------------------------------------------

# Stats Section

--------------------------------------------------------------*/

.stats .stats-item {
  padding: 30px;

  width: 100%;
}

.stats .stats-item:hover {
  border: 1px solid #cccccc50;

  box-shadow: 1px 1px 5px #cccccc50;

  border-radius: 10px;
}

.stats .stats-item span {
  color: #145484;

  font-size: 48px;

  display: block;

  font-weight: 700;

  margin-bottom: 20px;

  padding-bottom: 20px;

  position: relative;
}

/* .stats .stats-item span:after {

  content: "";

  position: absolute;

  display: block;

  width: 50px;

  height: 3px;

  background: #dddddd;

  left: 0;

  right: 0;

  bottom: 0;

  margin: auto;

} */

.stats .stats-item p {
  color: #000000;

  padding: 0;

  margin: 0;

  font-family: var(--font-family);

  font-size: 22px;

  font-weight: 500;
}

.statsImage {
  margin-bottom: 20px;
}

.statsImage img {
  width: 85px;

  height: auto;

  object-fit: contain;
}

.statsCounter {
  display: flex;

  justify-content: center;

  align-items: center;
}

.statsCounter strong {
  color: #145484;

  font-size: 48px;

  display: block;

  font-weight: 700;

  margin-bottom: 20px;

  padding-bottom: 20px;

  position: relative;
}

/* From Uiverse.io by satyamchaudharydev */

.clientsbutton {
  position: relative;

  transition: all 0.3s ease-in-out;

  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);

  padding-block: 0.5rem;

  padding-inline: 1.25rem;

  background-color: #145484;

  border-radius: 9999px;

  display: flex;

  align-items: center;

  justify-content: center;

  color: #ffff;

  gap: 10px;

  font-weight: bold;

  border: 3px solid #ffffff4d;

  outline: none;

  overflow: hidden;

  font-size: 15px;

  cursor: pointer;
}

.icon {
  width: 24px;

  height: 24px;

  transition: all 0.3s ease-in-out;
}

.clientsbutton:hover {
  transform: scale(1.05);

  border-color: #fff9;
}

.clientsbutton:hover .icon {
  transform: translate(4px);
}

.clientsbutton:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.clientsbutton::before {
  content: "";

  position: absolute;

  width: 100px;

  height: 100%;

  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,

    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );

  top: 0;

  left: -100px;

  opacity: 0.6;
}

@keyframes shine {
  0% {
    left: -100px;
  }

  60% {
    left: 100%;
  }

  to {
    left: 100%;
  }
}

@media (max-width: 554px) {
  .whatsapp-section {
    right: 5px;

    bottom: 75px;
  }

  .whatsapp-section a img {
    width: 45px;
  }
}

.client-row img {
  max-width: 100%;

  height: auto;

  transition: opacity 0.5s ease-in-out, filter 0.5s ease-in-out;
}

/* Fade-out animation */

.fade-out {
  opacity: 0;
}

/* Fade-in animation */

.fade-in {
  opacity: 1;
}

/* Active image filter */

.client-row img.active {
  filter: brightness(1.2) saturate(1.2); /* Example filter for active images */
}

.clientsimgCard {
  margin-bottom: 20px;
}

.image-container {
  position: relative;

  display: inline-block;

  height: 200px;

  width: 100%;

  overflow: hidden;

  display: flex;

  justify-content: center;

  align-items: center;

  background-color: #ffffff;

  border-radius: 15px;

  box-shadow: 1px 1px 5px #00000040;
}

.image-container img {
  width: 100px;

  height: auto;

  display: block;

  object-fit: contain;
}

.image-container .hover-text {
  display: flex;

  justify-content: center;

  align-items: center;

  position: absolute;

  text-align: center;

  bottom: 0;

  left: 0;

  width: 100%;

  height: 100%;

  background-color: #d9afd9;

  background-image: linear-gradient(0deg, #d9afd9 0%, #97d9e1 100%);

  color: #131313;

  padding: 5px 5px;

  opacity: 0;

  transition: opacity 0.3s ease-in-out;

  font-weight: normal;

  letter-spacing: 2px;

  text-transform: uppercase;

  font-family: "Knewave", serif !important;
}

.image-container:hover .hover-text {
  opacity: 1;
}

#trySarpBtn {
  position: fixed;

  /* top: 370px; */

  bottom: 20px;

  right: 10px;

  background-color: #007bff;

  color: white;

  font-size: 14px;

  font-weight: bold;

  border: none;

  padding: 12px 15px;

  border-radius: 8px;

  cursor: pointer;

  animation: blink 1s infinite alternate;
}

/* #trySarpBtn.fixed {

  position: fixed;

  top: 80px;

  right: 10px;

} */

#trySarpBtn:hover {
  animation: none;
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}

.mainFeatureCard {
  height: 330px;
}

/* Unique Custom Styles */
.feature-icon {
  background: white;
  padding: 17px;
  border-radius: 50%;
}

.feature-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  aspect-ratio: 3/ 3;
}

.invoice-section {
  padding: 60px 0;
}

.contact-section {
  background-color: #145484;
  color: white;
  padding: 60px 0;
}

.contact-section h2 {
  font-weight: 700;
}

.btn-contact {
  background-color: white;
  color: #145484;
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 30px;
  transition: 0.3s;
}

.btn-contact:hover {
  background-color: #f8f9fa;
  color: #222222;
}

/* .slide-track {
   animation: slide-left 15s linear infinite; 
} 
    @keyframes slide-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
} */

/* From Uiverse.io by Gaurav-WebDev */
.hoverCard {
  background: rgba(211, 211, 211, 0.432);
  font-size: 16px;
  color: #333;
  cursor: pointer;
  padding: 20px 10px 0px 10px;
  position: relative;
  transition: all 0.7s ease-in-out;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

.hoverCard::before {
  content: "";
  position: absolute;
  height: 40%;
  width: 100%;
  /* background-color: #088080; */
  background-color: #145484;
  bottom: 0;
  right: 0;
  transform: translatey(70px);
  border-radius: 100%;
  transition: all 0.7s ease-in-out;
}

.c-txt {
  z-index: 2;
}

.hoverCard:hover::before {
  transform: scale(7) translate(-20px);
}

.hoverCard:hover {
  /* box-shadow: 1px -10px 500px 500px #9fe4e44a; */
  color: #f3f3f3;
}

.list-group-item {
  border-radius: 8px !important;
  margin-bottom: 5px;
  font-weight: 600;
  box-shadow: 0px 0px 5px #cccccc50;
  background-color: white;
  transition: all 0.3s ease-in-out;
}
.list-group-item:hover {
  scale: 1.1;
  transition: all 0.3s ease-in-out;
  cursor: default;
}
.list-group-item img {
  width: 25px;
  height: auto;
  object-fit: contain;
  margin-right: 10px;
}
.sliderSec p {
  margin-top: 10px;
  font-weight: 600;
  font-size: 1rem;
}
.fs-3 img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.text-muted {
  color: #333333 !important;
}
.fbrImage {
  width: 500px;
  height: 500px;
  object-fit: contain;
  position: relative;
  scale: 1;
  transition: all 0.3s ease-in-out;
  /* box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1); */
}
.fbrImage:hover {
  scale: 1.1;
  transition: all 0.3s ease-in-out;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}
.new-indicator {
  background-color: red;
  color: white;
  font-size: 0.7em;
  /* padding: 2px 5px; */
  margin-left: 5px;
  border-radius: 3px;
  animation: blink 1s infinite;
  position: absolute;
  width: 40px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 18px;
  top: -13px;
  border-radius: 5px;
  font-weight: bold;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
