:root {
  --font-default:
    'Poppins', sans-serif;
  --font-primary:
    'Poppins', sans-serif;
  --font-secondary:
    'Poppins', sans-serif;
  scroll-behavior: smooth;
  --color-bg: #025add;
  --hero-overlay-color: transparent;
  --menu-color: #ffffff;
  --theme-color: #025add;
  --border-color: #e2e2e2;
  --theme-color-dark: #f8f8f8;
  --text-color: #3a3a3a;
  --hero-text-color: #ffffff;
  --text-white-color: #ffffff;
  --text-grey-color: #3a3a3a;
  --text-theme-color: #025add;
  --light-color: #ffffff;
  --color-default: #3a3a3a;
  --color-primary: #025add;
  --color-secondary: #0c6de0;
  --color-start: #3a3a3a;
  --color-end: #3a3a3a;
  --hero-card-bg: rgb(228 227 223 / 17%);
  --box-shadow-color: rgb(82 90 101 / 10%);
}

:root.dark {
  --menu-color-bg: #565656;
  --color-bg: #000000;
  --hero-overlay-color: #000000;
  --menu-color: #ffffff;
  --theme-color: #000000;
  --border-color: #14929a;
  --theme-color-dark: #2c2c2c;
  --text-color: #ffffff;
  --hero-text-color: #ffffff;
  --text-white-color: #ffffff;
  --text-grey-color: #565656;
  --text-theme-color: #14929a;
  --light-color: #000000;
  --color-default: #000000;
  --color-primary: #000000;
  --color-secondary: #000000;
  --color-start: #000000;
  --color-end: #000000;
  --hero-card-bg: rgb(0 0 0 / 83%);
  --box-shadow-color: rgb(20 146 154 / 49%);
}

body {
  font-family: var(--font-default);
  color: var(--text-color);
  background: var(--theme-color);
  transition: 0.5s background ease;
}

body.dark {
  --menu-color-bg: #ffffff;
  --color-bg: #000000;
  --hero-overlay-color: #000000;
  --menu-color: #ffffff;
  --border-color: #025add;
  --theme-color-dark: #151515;
  --text-color: #ffffff;
  --text-white-color: #ffffff;
  --text-grey-color: #565656;
  --text-theme-color: #025add;
  --light-color: #000000;
  --color-default: #000000;
  --color-secondary: #0c6de0;
  --color-start: #000000;
  --color-end: #000000;
  --hero-card-bg: rgb(0 0 0 / 83%);
  --box-shadow-color: rgb(12 109 224 / 69%);
}


#darkmode-button {
  border-radius: 50%;
  border: none;
  outline: none;
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  margin-left: 10px;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

.toggle-container {
  position: relative;
}

.theme-btn {
  width: 6em;
  height: 6em;
  padding: 0.5em;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  background-color: transparent;
}

.theme-btn img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.theme-btn.light {
  display: none;
}

.dark .theme-btn.dark {
  display: none;
}

.dark .theme-btn.light {
  display: block;
}

.hide-on-mobile {
  display: block;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section {
  padding: 40px 0;
  overflow: hidden;
  background: var(--light-color);
}

.section-grey {
  padding: 90px 0;
  overflow: hidden;
  background: var(--theme-color-dark);
}

.sections-bg {
  background-color: var(--theme-color-dark);
}

.section-header {
  text-align: center;
  padding-bottom: 10px;
}

.section-header h2 {
  font-size: 32px;
  position: relative;
  color: var(--color-primary);
}

.section-header h3 {
  font-size: 25px;
  position: relative;
  color: var(--color-primary);
}

.section-header p {
  margin-bottom: 0;
  color: #0b264e;
}

img {
  transition: 0.3s;
}

img:hover {
  transform: scale(1.1);
}

.fill-btn {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  border: 0;
  transition: 0.3s;
  color: var(--text-white-color);
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
}

.fill-btn:hover {
  background: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
  color: var(--text-white-color);
}

.tech {
  text-align: justify !important;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs .page-header {
  padding: 120px 0 60px 0;
  min-height: 20vh;
  background: url(../images/page-header-bg.png) center bottom;
  background-size: cover;
  border-radius: 0px;
  overflow: hidden;
  position: relative;
}

.breadcrumbs .page-header:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--hero-overlay-color), var(--hero-overlay-color));
  z-index: 0;
  opacity: 0.6;
}

.breadcrumbs .page-header h2 {
  color: var(--color-primary);
}

.breadcrumbs .page-header p {
  color: var(--menu-color);
}

/* RemoteAccess */

.breadcrumbs .page-header_re {
  padding: 120px 0 260px 0;
  min-height: 20vh;
  background: url(../images/bannerremote.png) center bottom;
  background-size: cover;
  border-radius: 0px;
  overflow: hidden;
  position: relative;
}

.breadcrumbs .page-header_re:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--hero-overlay-color), var(--hero-overlay-color));
  z-index: 0;
  opacity: 0.6;
}

.breadcrumbs .page-header_re h2 {
  color: var(--color-primary);
}

.breadcrumbs .page-header_re p {
  color: var(--menu-color);
}

/* ERP */

.breadcrumbs .page-header_erp {
  padding: 120px 0 265px 0;
  min-height: 20vh;
  background: url(../images/bannererp.png) center bottom;
  background-size: cover;
  border-radius: 0px;
  overflow: hidden;
  position: relative;
}

.breadcrumbs .page-header_erp:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--hero-overlay-color), var(--hero-overlay-color));
  z-index: 0;
  opacity: 0.6;
}

.breadcrumbs .page-header_erp h2 {
  color: var(--color-primary);
}

.breadcrumbs .page-header_erp p {
  color: var(--menu-color);
}


.breadcrumbs .page-header_crm {
  padding: 120px 0 264px 0;
  min-height: 20vh;
  background: url(../images/bannercrm.png) center bottom;
  background-size: cover;
  border-radius: 0px;
  overflow: hidden;
  position: relative;
}

.breadcrumbs .page-header_crm:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--hero-overlay-color), var(--hero-overlay-color));
  z-index: 0;
  opacity: 0.6;
}

.breadcrumbs .page-header_crm h2 {
  color: var(--color-primary);
}

.breadcrumbs .page-header_crm p {
  color: var(--menu-color);
}


.breadcrumbs .page-header_ind {
  padding: 120px 0 264px 0;
  min-height: 20vh;
  background: url(../images/bannerind.png) center bottom;
  background-size: cover;
  border-radius: 0px;
  overflow: hidden;
  position: relative;
}

.breadcrumbs .page-header_ind:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--hero-overlay-color), var(--hero-overlay-color));
  z-index: 0;
  opacity: 0.6;
}

.breadcrumbs .page-header_ind h2 {
  color: var(--color-primary);
}

.breadcrumbs .page-header_ind p {
  color: var(--menu-color);
}




.breadcrumbs .page-header_mes {
  padding: 120px 0 265px 0;
  min-height: 20vh;
  background: url(../images/mesbanner.png) center bottom;
  background-size: cover;
  border-radius: 0px;
  overflow: hidden;
  position: relative;
}

.breadcrumbs .page-header_mes:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--hero-overlay-color), var(--hero-overlay-color));
  z-index: 0;
  opacity: 0.6;
}

.breadcrumbs .page-header_mes h2 {
  color: var(--color-primary);
}

.breadcrumbs .page-header_mes p {
  color: var(--menu-color);
}

.breadcrumbs .page-header_ab {
  padding: 120px 0 260px 0;
  min-height: 20vh;
  background: url(../images/aboutus.png) center bottom;
  background-size: cover;
  border-radius: 0px;
  overflow: hidden;
  position: relative;
}

.breadcrumbs .page-header_ab:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--hero-overlay-color), var(--hero-overlay-color));
  z-index: 0;
  opacity: 0.6;
}

.breadcrumbs .page-header_ab h2 {
  color: var(--color-primary);
}

.breadcrumbs .page-header_ct p {
  color: var(--menu-color);
}

.breadcrumbs .page-header_ct {
  padding: 113px 0 260px 0;
  min-height: 20vh;
  background: url(../images/contactus.png) center bottom;
  background-size: cover;
  border-radius: 0px;
  overflow: hidden;
  position: relative;
}

.breadcrumbs .page-header_ct:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--hero-overlay-color), var(--hero-overlay-color));
  z-index: 0;
  opacity: 0.6;
}

.breadcrumbs .page-header_ct h2 {
  color: var(--color-primary);
}

.breadcrumbs .page-header_ct p {
  color: var(--menu-color);
}


.breadcrumbs .page-header_crr {
  padding: 120px 0 260px 0;
  min-height: 20vh;
  background: url(../images/career.png) center bottom;
  background-size: cover;
  border-radius: 0px;
  overflow: hidden;
  position: relative;
}

.breadcrumbs .page-header_crr:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--hero-overlay-color), var(--hero-overlay-color));
  z-index: 0;
  opacity: 0.6;
}

.breadcrumbs .page-header_crr h2 {
  color: var(--color-primary);
}

.breadcrumbs .page-header_crr p {
  color: var(--menu-color);
}




.breadcrumbs nav {
  background-color: var(--theme-color);
  padding: 20px 0;
}

.breadcrumbs nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: var(--color-default);
}

.breadcrumbs nav ol a {
  color: var(--text-white-color);
  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: var(--color-secondary);
  content: "/";
}



/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: rgb(16 16 16 / 80%);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--color-primary);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(48% - 3px);
  left: calc(48% - 3px);
  border: 2px solid #fff;
  border-color: var(--light-color) transparent var(--light-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1.5s linear infinite;
  animation: animate-preloader 1.5s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }

  .hide-on-mobile {
    display: none !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.topbar {
  background: #00796b;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}

.topbar .contact-info i {
  font-style: normal;
  color: #fff;
  line-height: 0;
}

.topbar .contact-info i a,
.topbar .contact-info i span {
  padding-left: 5px;
  color: #fff;
}

@media (max-width: 575px) {

  .topbar .contact-info i a,
  .topbar .contact-info i span {
    font-size: 13px;
  }
}

.topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.topbar .contact-info i a:hover {
  color: #fff;
  text-decoration: underline;
}

.topbar .social-links a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.topbar .social-links a:hover {
  color: #fff;
}

.header {
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
}

.header.sticked {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 90px;
}

.header .logo img {
  max-height: 80px;
  margin-right: 6px;
}

.header.stikcy-menu {
  background: var(--light-color);
}

.header.stikcy-menu .logo h1 {
  color: var(--color-primary);
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  letter-spacing: 0.8px;
  color: var(--color-primary);
  font-family: var(--font-primary);
}

.header .logo h1 span {
  color: var(--color-primary);
}

.sticked-header-offset {
  margin-top: 0;
}

section {
  background: var(--light-color);
}



/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .stikcy-menu .navbar a {
    /* color: var(--text-color); */
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    /* color: var(--color-primary); */
    color: #4d44b5;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--light-color);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 0px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-color);
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    /* color: var(--color-primary); */
    color: #4d44b5;
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: var(--color-primary);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    color: rgb(255 255 255);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: rgba(0, 131, 116, 0.8);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    background-color: var(--color-primary);
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: var(--color-primary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / 80%);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Featured Section
--------------------------------------------------------------*/

.left {
  text-align: right;
}

.right {
  text-align: left;
}

.list-wrap {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.list-wrap p {
  color: var(--text-color);
}

.list-wrap:nth-child(3),
.list-wrap:nth-child(6) {
  margin-bottom: 0;
}

.list-wrap .description h4 {
  color: var(--text-color);
}

.icon {
  width: 150px;
  text-align: center;
  height: 100px;
  border-radius: 50%;
}

.icon svg {
  width: 100%;
}

.list-center-wrap {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  height: 100%;
}

.center-icon {
  width: 100%;
  text-align: center;
}

.center-icon img {
  width: 100%;
  border-radius: 20px;
  opacity: 0.9;
}

/*--------------------------------------------------------------
# About Us Section
--------------------------------------------------------------*/
.about h3 {
  font-size: 28px;
  margin-bottom: 20px;
  font-family: var(--font-secondary);
}

.about .call-us {
  left: 10%;
  right: 10%;
  bottom: 0;
  background-color: #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
}

.about .call-us h4 {
  font-size: 24px;
  margin-bottom: 5px;
}

.about .call-us p {
  font-size: 28px;
  color: var(--color-primary);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 10px 30px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--color-primary);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(0, 131, 116, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.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(0, 131, 116, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.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: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;
}

.about .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

@-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;
  }
}

.img-frame {
  position: relative;
  background: #f6f6f6;
  background-size: contain;
  padding: 9%;
}

.bar {
  background-color: #f1f1f1;
  padding: 1px;
  border-radius: 15px;
  margin-bottom: 20px;
  font-size: 12px;
  color: var(--light-color);
}

.bar::before {
  content: attr(data-skill);
  /* background-color: var(--color-primary); */
  display: inline-block;
  padding: 5px 0 5px 10px;
  border-radius: inherit;
  animation: load 2s 0s;
  -webkit-animation: load 2s 0s;
  -moz-animation: load 2s 0s;
  -o-animation: load 2s 0s;
}

.bar.front::before {
  background-color: var(--color-primary);
}

.bar.back::before {
  background-color: var(--color-primary);
}

.bar.learning::before {
  width: calc(20% - 10px);
}

.bar.basic::before {
  width: calc(40% - 10px);
}

.bar.intermediate::before {
  width: calc(60% - 10px);
}

.bar.advanced::before {
  width: calc(80% - 10px);
}

.bar.expert::before {
  width: calc(100% - 10px);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 90px 0;
}

.clients .swiper {
  padding: 10px 0;
}

.clients .swiper-slide img {
  transition: 0.3s;
  filter: grayscale(1);
  opacity: 1;
  border-radius: 8px;
}

.clients .swiper-slide img:hover {
  transform: scale(1.1);
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  background-color: #ddd;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}


/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  background: url(../images/hero-bg.png) center left;
  background-size: cover;
  padding: 150px 0px;
  border-radius: 0px;
  overflow: hidden;
  position: relative;
  background-attachment: fixed;
}

.call-to-action h3 {
  color: #fff;
  font-size: 28px;
  margin-bottom: 20px;
}

.call-to-action p {
  color: #fff;
  margin-bottom: 20px;
}

.call-to-action .play-btn {
  width: 94px;
  height: 94px;
  margin-bottom: 20px;
  background: radial-gradient(var(--color-primary) 50%, rgba(0, 131, 116, 0.4) 52%);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.call-to-action .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(0, 131, 116, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.call-to-action:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  z-index: 0;
  opacity: 0.6;
}

.call-to-action .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;
}

.call-to-action .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

.call-to-action .cta-btn {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 48px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
}

.call-to-action .cta-btn:hover {
  background: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 10px;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 10px;
  position: relative;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  box-shadow: -1px 5px 20px 0px var(--box-shadow-color);
}

.testimonials .testimonial-item .info-box {
  min-width: 276px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--color-primary);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: var(--color-primary);
  font-size: 26px;
  line-height: 0;
}

.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;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
  color: var(--text-color);
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgb(134 134 134 / 20%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
    flex-direction: column;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}


/*--------------------------------------------------------------
# Our Team Section
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  border-radius: 10px;
  padding: 15px;
  overflow: hidden;
}

.team .member img {
  border-radius: 10px;
  overflow: hidden;
}

.team .member .member-content {
  padding: 0 20px 30px 20px;
}

.team .member h4 {
  margin-top: 16px;
  margin-bottom: 2px;
  font-size: 20px;
  color: var(--color-primary);
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 14px;
  color: var(--text-color);
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #6c757d;
}

.team .member .social {
  margin-top: 15px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .member .social a {
  color: var(--color-primary);
  transition: 0.3s;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e8e8e8;
}

.team .member .social a:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.team .member .social i {
  font-size: 14px;
  margin: 0 2px;
}


/*--------------------------------------------------------------
# Frequently Asked Questions Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content h4 {
  font-size: 20px;
  margin-top: 5px;
}

.faq .content p {
  font-size: 15px;
  color: #6c757d;
}

.faq .accordion-item {
  margin-bottom: 20px;
  border-radius: 8px;
  background: var(--theme-color-dark);
  border: 1px solid var(--border-color);
}

.accordion-flush .accordion-item:last-child {
  border-bottom: 1px solid var(--border-color);
}


.faq .accordion-collapse {
  border: 0;
  background: var(--theme-color-dark);
  border-radius: 0 8px 8px 0;
}

.accordion-flush .accordion-item:first-child {
  border: 1px solid var(--border-color);
}

.faq .accordion-button {
  background: var(--theme-color-dark);
  padding: 20px 50px 20px 20px;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-primary);
  text-align: left;
  box-shadow: none;
  border-radius: 8px !important;
}

.faq .accordion-button .num {
  padding-right: 10px;
  font-size: 20px;
  line-height: 0;
  color: var(--color-primary);
}

.faq .accordion-button:not(.collapsed) {
  color: var(--color-primary);
  box-shadow: none;
}

.faq .accordion-button:after {
  position: absolute;
  right: 20px;
  top: 20px;
  background: url(../images/icons/down-arrow.svg);
}

.faq .accordion-body {
  padding: 40px;
  border: 0;
  border-radius: 0 0 8px 8px;
  background: var(--theme-color-dark);
  box-shadow: none;
  color: var(--text-color);
}

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-posts article {
  background-color: var(--light-color);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
}

.recent-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
  border-radius: 8px;
}

.recent-posts .post-category {
  font-size: 16px;
  color: var(--text-color);
  margin-bottom: 10px;
}

.recent-posts .title {
  font-size: 22px;
  padding: 0;
  margin: 0 0 20px 0;
}

.recent-posts .title a {
  color: var(--color-primary);
  transition: 0.3s;
}

.recent-posts .title a:hover {
  color: var(--text-color);
}

.recent-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.recent-posts .post-author {
  margin-bottom: 5px;
  color: var(--text-color);
}

.recent-posts .post-date {
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 0;
}

@media (min-width: 1280px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1140px;
  }
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  position: relative;
  background: url(../images/hero-bg.png) center center;
  background-size: cover;
  padding: 60px 0 0 0;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
  margin-top: 0;
  background: linear-gradient(360deg, var(--hero-overlay-color), var(--hero-overlay-color));
}

.hero .circle {
  color: var(--color-primary);
}

@media (min-width: 1365px) {
  .hero {
    background-attachment: fixed;
  }
}

.dark-bg {
  padding: 50px 30px;
  border-radius: 8px;
}

.social {
  margin-top: 15px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  /* justify-content: space-around; */
  gap: 10px;
}

.social a {
  color: var(--text-color);
  transition: 0.3s;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social a:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.social i {
  font-size: 14px;
  margin: 0 2px;
  color: var(--color-primary);
}

.mr-20 {
  margin-right: 20px !important;
}

.hero h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--hero-text-color);
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}

.hero span {
  color: var(--color-primary);
  font-weight: bold;
}

.hero p {
  color: var(--hero-text-color);
  font-weight: 400;
  margin-bottom: 30px;
}

.btn-get-started {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 20px;
  border-radius: 50px;
  transition: 0.3s;
  color: var(--text-white-color);
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
}

.btn-get-started:hover {
  background: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
  color: var(--text-white-color);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #fff;
}

.hero .btn-watch-video i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover i {
  color: #fff;
}

@media (max-width: 991px) {
  .hero {
    background: url(../images/hero-bg.png) center center;
  }

  .hero h2 {
    font-size: 22px;
  }

  .call-to-action {
    background: url(../images/cta-bg.html) center left;
    background-size: cover;
    padding: 150px 60px;
    border-radius: 0px;
    overflow: hidden;
  }
}

@media (max-width: 767px) {
  .text-left.caption {
    text-align: center;
  }

  .caption .justify-content-start {
    justify-content: center !important;
  }

  .caption .social {
    justify-content: center;
  }

  .btn-get-started,
  .hero .btn-watch-video {
    font-size: 14px;
  }

  .icon-boxes .card-two {
    margin-top: var(--bs-gutter-y);
    margin-bottom: 0px;
    padding-left: calc(var(--bs-gutter-x) * .5);
    padding-right: calc(var(--bs-gutter-x) * .5);

  }
}

@media (min-width: 768px) {

  .btn-get-started,
  .hero .btn-watch-video {
    font-size: 14px;
  }

  .icon-boxes .card-two {
    margin-top: -20px;
    margin-bottom: -20px;
  }
}

.icon-box {
  padding: 20px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  height: 100%;
  width: 100%;
  text-align: center;
  color: var(--text-color);
  box-shadow: -1px 5px 20px 0px var(--box-shadow-color);
}

.icon-box .icon img {
  width: 77px;
}

.icon-box .title {
  margin-bottom: 15px;
  font-size: 24px;
}

.icon-box .title a {
  color: var(--color-primary);
  transition: 0.3s;
}

.icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 48px;
  line-height: 1;
  color: var(--color-primary);
}

.icon-box:hover {
  transform: scale(1.04);
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog .blog-pagination {
  margin-top: 30px;
  color: #555555;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
  border-radius: 10px;
}

.blog .blog-pagination li a {
  color: var(--color-default);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: var(--color-primary);
  color: #fff;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: var(--color-white);
}

.blog-sidbar {
  background-color: var(--light-color);
  padding: 30px 20px;
  border-radius: 8px;
}

.blog-sidbar ul li a:hover {
  color: rgb(74 74 74);
}

/*--------------------------------------------------------------
# Blog Posts List
--------------------------------------------------------------*/
.blog .posts-list article {
  box-shadow: 0 1px 6px rgb(0 0 0 / 10%);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog .posts-list .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.blog .posts-list .post-category {
  font-size: 16px;
  color: #555555;
  margin-bottom: 10px;
}

.blog .posts-list .title {
  font-size: 22px;

  padding: 0;
  margin: 0 0 20px 0;
}

.blog .posts-list .title a {
  color: var(--color-default);
  transition: 0.3s;
}

.blog .posts-list .title a:hover {
  color: var(--color-primary);
}

.blog .posts-list .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog .posts-list .post-author-list {
  font-weight: 500;
  margin-bottom: 5px;
}

.blog .posts-list .post-date {
  font-size: 14px;
  color: #3c3c3c;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 1px 6px rgb(0 0 0 / 10%);
  padding: 30px;
  border-radius: 10px;
}

.blog .blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.blog .blog-details .title {
  font-size: 28px;

  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-default);
}

.blog .blog-details .content {
  margin-top: 20px;
}

.blog .blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(34, 34, 34, 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .blog-details .content blockquote p {
  color: var(--color-default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-secondary);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .blog-details .meta-top {
  margin-top: 20px;
  color: #6c757d;
}

.blog .blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: var(--color-primary);
}

.blog .blog-details .meta-top a {
  color: #6c757d;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(34, 34, 34, 0.15);
}

.blog .blog-details .meta-bottom i {
  color: #555555;
  display: inline;
}

.blog .blog-details .meta-bottom a {
  color: rgba(34, 34, 34, 0.8);
  transition: 0.3s;
}

.blog .blog-details .meta-bottom a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ",";
}

.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog .blog-details .meta-bottom .share i {
  padding-left: 5px;
}

.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 1px 6px rgb(0 0 0 / 10%);
  border-radius: 10px;
}

.blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog .post-author h4 {
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-default);
}

.blog .post-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .post-author .social-links a {
  color: rgba(34, 34, 34, 0.5);
  margin-right: 5px;
}

.blog .post-author p {
  font-style: italic;
  color: rgba(108, 117, 125, 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
dl,
ol,
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.single-page ul {
  list-style: none;
}

.single-page ul li {
  position: relative;
  color: var(--text-color);
  margin-bottom: 5px;
  border-radius: 8px;
}

.blog .sidebar {
  padding: 30px;
  box-shadow: 0 1px 6px rgb(0 0 0 / 10%);
  border-radius: 10px;
}

.search-form {
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  margin-bottom: 30px;
  border: 0;
}

.search-form input {
  width: 100%;
  padding: 14px 28px;
  background: #ffffff;
  border: none;
  color: #393838;
  outline: none;
}

.search-form button {
  position: absolute;
  right: 0;
  padding: 16px 20px;
  border: none;
  top: 0px;
  color: var(--text-white-color);
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
  outline: none;
}

.search-form button:hover {
  cursor: pointer;
  background: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
  color: var(--text-white-color);
}

.search-form button i {
  color: #fff;
}

.blog .sidebar .sidebar-title {
  font-size: 20px;

  padding: 0;
  margin: 0;
  color: var(--color-default);
}

.blog .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(34, 34, 34, 0.3);
  padding: 5px 10px;
  position: relative;
  border-radius: 50px;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 50px;
  width: calc(100% - 60px);
}

.blog .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 25px;
  margin: -1px;
  background: var(--color-primary);
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: rgba(0, 131, 116, 0.8);
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: var(--color-default);
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: var(--color-primary);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(34, 34, 34, 0.4);
  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: var(--color-default);
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: rgba(34, 34, 34, 0.4);
}

.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: #555555;
  font-size: 14px;
  padding: 6px 20px;
  margin: 0 6px 8px 0;
  border: 1px solid #d5d5d5;
  display: inline-block;
  transition: 0.3s;
  border-radius: 50px;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(85, 85, 85, 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.blog .comments {
  margin-top: 30px;
}

.blog .comments .comments-count {
  font-weight: bold;
}

.blog .comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .comments .comment .comment-img {
  margin-right: 14px;
}

.blog .comments .comment .comment-img img {
  width: 60px;
}

.blog .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .comments .comment h5 a {
  font-weight: bold;
  color: var(--color-default);
  transition: 0.3s;
}

.blog .comments .comment h5 a:hover {
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(34, 34, 34, 0.8);
  margin-bottom: 5px;
}

.blog .comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.blog .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .comments .reply-form p {
  font-size: 14px;
}

.blog .comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form input:focus {
  box-shadow: none;
  border-color: rgba(0, 131, 116, 0.8);
}

.blog .comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: rgba(0, 131, 116, 0.8);
}

.blog .comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .comments .reply-form .btn-primary {
  border-radius: 50px;
  padding: 14px 40px;
  border: 0;
  background-color: var(--color-secondary);
}

.blog .comments .reply-form .btn-primary:hover {
  background-color: rgba(248, 90, 64, 0.8);
}


/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/

.stats-counter .stats-item .purecounter {
  padding-right: 0;
}

.stats-counter .stats-item i {
  font-size: 90px;
  line-height: 0;
  color: var(--color-primary);
  margin-bottom: 30px;
}

.stats-counter .stats-item span {
  font-size: 28px;
  display: block;
  color: var(--color-primary);
  line-height: 36px;
  text-align: center;
}

.stats-counter .stats-item p {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
}


/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-flters {
  padding: 0 0 40px 0;
  margin: 0 auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  color: var(--text-white-color);
  line-height: 1;
  transition: all 0.3s ease-in-out;
  padding: 15px 25px;
  border-radius: 30px;
  margin-bottom: 20px;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
}

.portfolio .portfolio-flters li:hover,
.portfolio .portfolio-flters li.filter-active {
  color: var(--text-white-color);
  background: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
}

.portfolio .portfolio-flters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-flters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-flters li {
    font-size: 14px;
  }
}

.portfolio .portfolio-wrap {
  box-shadow: -1px 5px 20px 0px rgb(82 90 101 / 10%);
  border-radius: 8px;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.portfolio .portfolio-wrap img {
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.portfolio .portfolio-wrap .portfolio-info {
  padding: 25px 20px;
  position: absolute;
  z-index: 2;
  bottom: -1px;
  -webkit-backdrop-filter: saturate(180%) blur(5px);
  backdrop-filter: saturate(180%) blur(5px);
  background: var(--color-secondary);
  border-radius: 0 8px 0 0;
}

.portfolio .portfolio-wrap .portfolio-info:hover {
  background: #1c042e;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 18px;
  margin-bottom: 0;
  color: #fff;
}

.portfolio .portfolio-wrap .portfolio-info h4 a {
  color: var(--light-color);
  transition: 0.3s;
}

.portfolio .portfolio-wrap .portfolio-info h4 a:hover {
  color: var(--color-primary);
}

.portfolio .portfolio-wrap .project-btn a {
  color: var(--light-color);
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #6c757d;
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-wrap .portfolio-info .portfolio-details {
  margin-bottom: 20px;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.card {
  position: relative;
  height: auto;
  background: var(--light-color);
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  margin: 0 auto;
  padding: 40px 20px;
  transition: .5s;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  overflow: hidden;
  margin-bottom: 20px;
  border: 0;
  box-shadow: -1px 5px 20px 0px var(--box-shadow-color);
}

.card:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.card .title img {
  width: 120px;
}

.col-sm-3:nth-child(1) .card,
.col-sm-3:nth-child(1) .card .title .fa {
  /* background: linear-gradient(-45deg, var(--color-primary), #ec9f00); */
}

.col-sm-3:nth-child(2) .card,
.col-sm-4:nth-child(2) .card .title .fa {
  /* background: linear-gradient(-45deg, var(--color-primary), #ec9f00); */
}

.col-sm-3:nth-child(3) .card,
.col-sm-3:nth-child(3) .card .title .fa {
  background: linear-gradient(-45deg, var(--color-primary), #ec9f00);
}

.col-sm-3:nth-child(3) .card a {
  color: var(--light-color);
  border: 2px solid var(--light-color);
}

.card:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  z-index: 1;
  transform: skewY(-5deg) scale(1.5);
  -webkit-transform: skewY(-5deg) scale(1.5);
  -moz-transform: skewY(-5deg) scale(1.5);
  -ms-transform: skewY(-5deg) scale(1.5);
  -o-transform: skewY(-5deg) scale(1.5);
}

.title .fa {
  color: #fff;
  font-size: 60px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  text-align: center;
  line-height: 100px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, .2);
}

.title h2 {
  position: relative;
  margin: 20px 0 0;
  padding: 0;
  color: var(--text-color);
  font-size: 28px;
  z-index: 2;
}

.price {
  position: relative;
  z-index: 2;
  color: var(--text-color);
}

.price h4 {
  margin: 0;
  padding: 20px 0;
  color: var(--text-color);
  font-size: 60px;
}

.option {
  position: relative;
  z-index: 2;
}

.option ul {
  margin: 0;
  padding: 0;
}

.option ul li {
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
  color: var(--text-color);
  font-size: 16px;
}

.card a {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  transition: all 0.3s ease-in-out;
  padding: 15px 25px;
  border-radius: 30px;
  margin-bottom: 20px;
  position: relative;
  color: var(--text-white-color);
  z-index: 2;
  margin: 20px auto 0;
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
}

.card a:hover {
  text-decoration: none;
  background: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
}

/*--------------------------------------------------------------
# Blog Posts List
--------------------------------------------------------------*/
.blog .posts-list article {
  box-shadow: 0 1px 6px rgb(0 0 0 / 10%);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog .posts-list .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.blog .posts-list .post-category {
  font-size: 16px;
  color: #555555;
  margin-bottom: 10px;
}

.blog .posts-list .title {
  font-size: 22px;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .posts-list .title a {
  color: var(--color-default);
  transition: 0.3s;
}

.blog .posts-list .title a:hover {
  color: var(--color-primary);
}

.blog .posts-list .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog .posts-list .post-author-list {
  margin-bottom: 5px;
}

.blog .posts-list .post-date {
  font-size: 14px;
  color: #3c3c3c;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 1px 6px rgb(0 0 0 / 10%);
  padding: 30px;
  border-radius: 10px;
}

.blog .blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.blog .blog-details .title {
  font-size: 28px;
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-default);
}

.blog .blog-details .content {
  margin-top: 20px;
}

.blog .blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(34, 34, 34, 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .blog-details .content blockquote p {
  color: var(--color-default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-secondary);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .blog-details .meta-top {
  margin-top: 20px;
  color: #6c757d;
}

.blog .blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: var(--color-primary);
}

.blog .blog-details .meta-top a {
  color: #6c757d;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(34, 34, 34, 0.15);
}

.blog .blog-details .meta-bottom i {
  color: #555555;
  display: inline;
}

.blog .blog-details .meta-bottom a {
  color: rgba(34, 34, 34, 0.8);
  transition: 0.3s;
}

.blog .blog-details .meta-bottom a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ",";
}

.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog .blog-details .meta-bottom .share i {
  padding-left: 5px;
}

.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 1px 6px rgb(0 0 0 / 10%);
  border-radius: 10px;
}

.blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog .post-author h4 {
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-default);
}

.blog .post-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .post-author .social-links a {
  color: rgba(34, 34, 34, 0.5);
  margin-right: 5px;
}

.blog .post-author p {
  font-style: italic;
  color: rgba(108, 117, 125, 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar {
  padding: 30px;
  box-shadow: 0 1px 6px rgb(0 0 0 / 10%);
  border-radius: 10px;
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  padding: 0;
  margin: 0;
  color: var(--color-default);
}

.blog .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(34, 34, 34, 0.3);
  padding: 5px 10px;
  position: relative;
  border-radius: 50px;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 50px;
  width: calc(100% - 60px);
}

.blog .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 25px;
  margin: -1px;
  background: var(--color-primary);
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: rgba(0, 131, 116, 0.8);
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: var(--color-default);
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: var(--color-primary);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(34, 34, 34, 0.4);
  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: var(--color-default);
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: rgba(34, 34, 34, 0.4);
}

.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: #555555;
  font-size: 14px;
  padding: 6px 20px;
  margin: 0 6px 8px 0;
  border: 1px solid #d5d5d5;
  display: inline-block;
  transition: 0.3s;
  border-radius: 50px;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(85, 85, 85, 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.blog .comments {
  margin-top: 30px;
}

.blog .comments .comments-count {
  font-weight: bold;
}

.blog .comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .comments .comment .comment-img {
  margin-right: 14px;
}

.blog .comments .comment .comment-img img {
  width: 60px;
}

.blog .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .comments .comment h5 a {
  font-weight: bold;
  color: var(--color-default);
  transition: 0.3s;
}

.blog .comments .comment h5 a:hover {
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(34, 34, 34, 0.8);
  margin-bottom: 5px;
}

.blog .comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.blog .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .comments .reply-form p {
  font-size: 14px;
}

.blog .comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form input:focus {
  box-shadow: none;
  border-color: rgba(0, 131, 116, 0.8);
}

.blog .comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: rgba(0, 131, 116, 0.8);
}

.blog .comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .comments .reply-form .btn-primary {
  border-radius: 50px;
  padding: 14px 40px;
  border: 0;
  background-color: var(--color-secondary);
}

.blog .comments .reply-form .btn-primary:hover {
  background-color: rgba(248, 90, 64, 0.8);
}


/**************************************
  Contact
 **************************************/
.contact-section .contact-form-3 form .form-control {
  font-size: 15px;
  width: 100%;
  padding: 10px 20px;
  height: 52px;
  color: #fff;
  border: none;
  border-radius: 8px;
  text-transform: capitalize;
  transition: all 0.4s;
  background: var(--theme-color-dark);
}

.contact-section .contact-form-3 form input:focus,
.contact-section .contact-form-3 form textarea:focus {
  outline: none;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.contact-information-box-3 {
  padding: 25px 20px;
  border-radius: 8px;
  margin-bottom: 50px;
}

.contact-information-box-3 .single-contact-info-box {
  position: relative;
  z-index: 1;
  padding: 10px 10px;
  display: block;
  border-radius: 3px;
  text-align: left;
  margin-bottom: 10px;
  overflow: hidden;
}

.contact-information-box-3 .contact-info {
  position: relative;
  z-index: 1;
}

.contact-information-box-3 .contact-info h6 {
  font-size: 18px;
  color: var(--text-color);
  margin-bottom: 7px;
  text-transform: capitalize;
}

.contact-information-box-3 .contact-info p {
  color: var(--text-color);
  font-size: 14px;
  font-weight: 500;
  margin: 0;
}

.contact-information-box-3 .single-contact-info-box .contact-info-bg-icon {
  color: #f44336;
  opacity: .2;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -25px;
  margin: 0 auto;
  z-index: -1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.contact-information-box-3 .single-contact-info-box .contact-info-bg-icon i {
  font-size: 100px;
}

.contact-section .contact-form .form-group {
  margin-bottom: 30px;
}

.contact-section .contact-form form textarea.form-control {
  height: auto;
  padding-top: 15px;
  line-height: initial;
}

.contact-section .form-message {
  margin: 0;
}

.contact-form button[type=submit] {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  transition: 0.3s;
  border: 0;
  color: var(--text-white-color);
  background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
}

.contact-form button[type=submit]:hover {
  color: var(--text-white-color);
  background: linear-gradient(45deg, var(--color-secondary), var(--color-primary));
}

.contact-section .form-message.success {
  background: #03b103;
  color: #fff;
  padding: 10px 15px;
  border-radius: 3px;
  margin-bottom: 30px;
}

.contact-section .form-message.error {
  background: #ff4d15;
  color: #fff;
  padding: 10px 15px;
  border-radius: 3px;
  margin-bottom: 30px;
}

.contact-area .form-message.success {
  background: #03b103;
  color: #fff;
  padding: 10px 15px;
  border-radius: 3px;
  display: block;
  margin-bottom: 15px;
}

.contact-area .form-message.error {
  background: #ff4d15;
  color: #fff;
  padding: 10px 15px;
  border-radius: 3px;
  display: block;
  margin-bottom: 15px;
}

.with-errors {
  color: #dc3545;
}

.messages {
  margin-top: 30px;
}

.alert-success {
  margin-left: 15px;
}

.hidden {
  display: none;
}


/*--------------------------------------------------------------
# Particles
--------------------------------------------------------------*/
#particles-js {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

canvas {
  display: block;
  vertical-align: bottom;
}


.count-particles {
  background: #000022;
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: #13E8E9;
  font-size: .8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}

.js-count-particles {
  font-size: 1.1em;
}

#stats,
.count-particles {
  -webkit-user-select: none;
  margin-top: 5px;
  margin-left: 5px;
}

#stats {
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}

.count-particles {
  border-radius: 0 0 3px 3px;
}

/* -----------------chat-bot----------------- */
.frame-content {
  display: block;
  border: none;
  position: fixed;
  inset: auto 0px 0px auto;
  width: 450px;
  height: 647px;
  max-height: 100%;
  opacity: 1;
  color-scheme: none;
  background: none transparent !important;
  margin: 0px;
  max-width: 100vw;
  transform: translateY(0px);
  transition: none 0s ease 0s !important;
  visibility: visible;
  z-index: 999999999 !important;
}

#chat-button {
  position: fixed;
  width: 112px;
  height: 70px;
  /* bottom: 12px; */
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
  right: 0px;
}

#chat-button:not(.sidebar) .buttonWave {
  position: absolute;
  z-index: -1;
  width: 60px;
  height: 60px;
}

#chat-button:not(.sidebar).clicked .buttonWave::after {
  animation: 0.5s ease-out 0s 1 normal none running buttonWave;
}

#chat-button:not(.sidebar) .buttonWave::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  /* background-color: rgb(20, 127, 255); */
  opacity: 0.5;
}

#button-body {
  width: 60px;
  height: 60px;
  border-radius: 28px;
  display: inherit;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  pointer-events: initial;
  background-size: 130% 130%;
  transition: all 0.2s ease-in-out 0s;
  position: relative;
  color: rgb(0, 125, 252);
  /* border: 1px solid #1E88E5; */
}

#button-body::before {
  content: "";
  transition: opacity 0.5s ease-in-out 0s;
  position: absolute;
  inset: -1px;
  opacity: 0;
  border-radius: 50%;
  background-color: rgb(198, 204, 220);
}

#chat-button button i.for-closed.active {
  transform: translateX(0px);
}

#chat-button button i.for-closed {
  transform: translateX(-10px);
}

#chat-button button i.active {
  opacity: 1;
}

#chat-button button i {
  height: 26px;
  width: 26px;
  position: absolute;
  opacity: 0;
  transition: all 0.2s ease-in-out 0s;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  /* justify-content: center; */
}

i {
  user-select: none;
}

#chat-button button i.type1 svg {
  fill: currentcolor;
}

svg {
  width: 24px;
  height: 24px;
}

#chat-button button i.type1::after {
  content: "";
  position: absolute;
  width: 68px;
  height: 68px;
  border-radius: 32px;
  background: rgb(255, 255, 255);
  transition: all 0.2s ease-in-out 0s;
  transform: scale(0);
  right: -18px;
}

#chat-button button i.for-closed.active {
  transform: translateX(0px);
}

#chat-button button i.for-closed {
  transform: translateX(-10px);
}

#chat-button button i.type2 {
  width: 32px;
  height: 32px;
}

#button button i.type1.for-opened {
  width: 31px;
  height: 28px;
}

#chat-button button i.for-opened {
  transform: translateX(10px);
}

button,
button.material-icons {
  background: none;
  border: 0px;
  color: inherit;
  font-style: inherit;
  font-variant: inherit;
  font-weight: inherit;
  font-stretch: inherit;
  font-size: inherit;
  font-family: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0px;
  user-select: none;
  outline: none;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


#chat-button button i.type2 svg {
  width: 32px;
  height: 32px;
  fill: rgb(0, 125, 252);
  transform: scale(0);
}

svg:not(:root) {
  overflow-clip-margin: content-box;
  overflow: hidden;
}

#button-body {
  /* box-shadow: rgb(148 118 175) 0px 4px 24px; */
}

body:not(.mobile) #button button:not(.disabled):hover i.type1 svg,
body:not(.mobile) #button button:not(.disabled):focus i.type1 svg {
  transform: scale(1.4);
}

body:not(.mobile) #button button:not(.disabled):hover i.type1::after,
body:not(.mobile) #button button:not(.disabled):focus i.type1::after {
  transform: scale(1);
}

#chat-button button i.for-closed.active {
  transform: translateX(0px);
}

.chat.chrome,
.start-group.chrome {
  box-shadow: rgb(0 18 46 / 38%) 0px 8px 36px 0px;
}

.chat {
  max-height: calc(100% - 47px);
  display: flex;
  flex-direction: column;
}

.chat,
.start-group {
  width: 372px;
  position: fixed;
  bottom: 0px;
  border-radius: 12px 12px 0px 0px;
  pointer-events: auto;
  box-shadow: rgba(0, 18, 46, 0.16) 0px 8px 22px 0px;
  overflow: hidden;
  z-index: 999;
  right: 48px;
  left: auto;
  background-color: white;
}

.message-operator.bots-quick-replies {
  width: 85%;
  background-color: #dfdfdf !important;
  /* margin-top: 0px; */
  float: right;
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.message-operator.bots-quick-replies .button-wrapper {
  margin-top: 0px;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  justify-content: flex-end;
  width: 100%;
  border: none;
}

.message-operator {
  color: rgb(6, 19, 43);
  background: #896ad463 !important;
  float: left;
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.message {
  padding: 10px 16px;
  border-radius: 10px;
  margin: 8px 0px;
  font-size: 12px;
  line-height: 20px;
  overflow-wrap: break-word;
  display: inline-block;
  max-width: 85%;
  clear: both;
  position: relative;
  transition: margin 0.28s ease-in-out 0s;
}

.input-group {
  padding: 20px 25px 25px;
  width: 100%;
  position: relative;
  background: linear-gradient(331deg, rgba(88, 72, 173, 1) 0%, rgba(137, 106, 212, 1) 49%);
  z-index: 3;
  flex: 0 0 auto;
}

.input-group .footer-input-wrapper,
.input-group .footer-icons-wrapper {
  transition: all 0.5s ease-in-out 0s;
  opacity: 1;
  transform: translateY(0px);
}

textarea {
  border: 0px;
  width: 100%;
  font-size: 17px;
  margin: 20px 0px 14px;
  resize: none;
  line-height: 24px;
  overflow: hidden;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0px;
  flex: 1 0 0;
}

.send-icon {
  width: 26px;
  height: 26px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 26px;
  flex: 0 0 26px;
  -webkit-backface-visibility: hidden;
  -webkit-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
  margin-left: 8px;
}

hr {
  margin: 0px;
  border-width: 0px 0px 1px;
  border-top-style: initial;
  border-right-style: initial;
  border-left-style: initial;
  border-top-color: initial;
  border-right-color: initial;
  border-left-color: initial;
  border-image: initial;
  border-bottom-style: solid;
  border-bottom-color: rgb(219, 223, 230);
}

#conversation-group {
  padding: 10px 28px;
  width: 100%;
  height: 357px;
  overflow: hidden auto;
  background: rgb(255, 255, 255);
  transition: all 0.3s ease 0s;
  max-height: 357px;
  min-height: 160px;
  flex: 0 1 auto;
}

.message-operator.bots-quick-replies button {
  font-size: 15px;
  padding: 8px 16px;
  border: 1px solid;
  border-radius: 20px;
  margin: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: inherit;
}

.offline-message span.online::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  top: calc(50% - 4px);
  background: rgb(88, 183, 67);
  border-radius: 50%;
  left: 0px;
}

.no-clip-path .offline-message {
  padding: 14px 28px 20px;
}

.offline-message span {
  z-index: 2;
  position: relative;
  display: inline-block;
  font-size: 16px;
}

.message-operator.message-with-buttons .button-wrapper,
.message-operator .message-with-buttons .button-wrapper,
.message-operator.bots-quick-replies .button-wrapper {
  background: rgb(255, 255, 255);
  width: 100%;
  margin-top: 10px;
  /* border-width: 0px 1px 1px;
                border-right-style: solid;
                border-bottom-style: solid;
                border-left-style: solid;
                border-right-color: rgb(235, 238, 240);
                border-bottom-color: rgb(235, 238, 240);
                border-left-color: rgb(235, 238, 240);*/
  border-image: initial;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-top-style: initial;
  border-top-color: initial;
  position: relative;
}

#chat-button button i.for-opened.active {
  transform: translateX(0px);
}

.message-operator.bots-quick-replies .sent {
  font-size: 15px;
  padding: 8px 16px;
  border: none;
  border-radius: 20px;
  margin: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: inherit;
}

.message-operator.message-with-buttons .sent,
.message-operator .message-with-buttons .sent,
.message-operator.bots-quick-replies .sent {
  margin: 0px auto;
  min-width: 100%;
  display: block;
  font-size: 16px;
  line-height: 19px;
  padding: 8px 16px;
  color: rgb(0, 125, 252);
  background: #f2f9ff;
  position: relative;
  z-index: 2;
  outline: none;
  border-radius: 20px;
  font-weight: normal;
}


.chat-header {
  padding: 10px 25px;
  background: linear-gradient(-61deg, rgb(0, 224, 216), rgb(32, 29, 142));
  position: relative;
  z-index: 4;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.avatars-wrapper {
  width: 52px;
  height: 52px;
  margin: 0px 18px 0px 0px;
  float: left;
}

.chat h2.oneline {
  margin-top: 0px;
  line-height: 52px;
  min-height: 52px;
}

.chat h2 {
  font-size: 18px;
  font-weight: 600;
  color: currentcolor;
  margin: 4px 0px 0px;
  padding: 0px;
  display: inline-block;
  position: relative;
  max-width: calc(100% - 145px);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  vertical-align: bottom;
  text-transform: capitalize;
}

.chat h2 .emoji {
  width: 31px;
  height: 31px;
}

button.material-icons.exit-chat,
label.material-icons.exit-chat {
  margin-right: -3px;
}

button.material-icons.options,
button.material-icons.exit-chat,
label.material-icons.options,
label.material-icons.exit-chat {
  z-index: unset;
}

button.material-icons,
label.material-icons {
  position: relative;
  z-index: 1;
  margin: 0px 0px 8px 11px;
  float: right;
}

button.material-icons.options::before,
button.material-icons.exit-chat::before,
label.material-icons.options::before,
label.material-icons.exit-chat::before {
  background: rgba(0, 36, 92, 0.16);
}

button.material-icons::before,
label.material-icons::before {
  content: "";
  position: absolute;
  background: rgb(239, 242, 246);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  z-index: -1;
  transition: all 0.16s ease-in-out 0s;
  transform: scale(0);
  top: calc(50% - 20px);
  left: calc(50% - 20px);
}

button.material-icons svg#ic-minimize,
button.material-icons svg.options-icon,
label.material-icons svg#ic-minimize,
label.material-icons svg.options-icon {
  fill: currentcolor;
}


element.style {}

.tidio-1s5t5ku span {
  background: rgb(255, 255, 255);
  padding: 6px 8px;
  border-radius: 2px;
  box-shadow: rgba(0, 18, 46, 0.32) 0px 2px 8px 0px;
  font-size: 13px;
  position: absolute;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  transition: all 0.16s ease-in-out 0s;
  z-index: 1;
  right: calc(100% + 10px);
  top: 50%;
  transform: translate(5px, -50%);
  color: rgb(6, 19, 43);
}

.offline-message {
  margin: 18px -28px 0px;
  color: currentcolor;
  width: calc(100% + 56px);
  padding: 14px 28px 7px;
  position: relative;
  background-size: 100% calc(100% + 12px);
  z-index: 1;
}

.no-clip-path .offline-message {
  padding: 14px 28px 20px;
}

.offline-message span.online {
  padding-left: 20px;
}

.no-clip-path .offline-message::after {
  content: "";
  position: absolute;
  width: calc(100% + 10px);
  bottom: -8px;
  left: -5px;
  border-image-source: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzNzIgMTUiPgogIDxwYXRoIGQ9Ik0zNDkuOCAxLjRDMzM0LjUuNCAzMTguNSAwIDMwMiAwaC0yLjVjLTkuMSAwLTE4LjQuMS0yNy44LjQtMzQuNSAxLTY4LjMgMy0xMDIuMyA0LjctMTQgLjUtMjggMS4yLTQxLjUgMS42Qzg0IDcuNyA0MS42IDUuMyAwIDIuMnY4LjRjNDEuNiAzIDg0IDUuMyAxMjguMiA0LjEgMTMuNS0uNCAyNy41LTEuMSA0MS41LTEuNiAzMy45LTEuNyA2Ny44LTMuNiAxMDIuMy00LjcgOS40LS4zIDE4LjctLjQgMjcuOC0uNGgyLjVjMTYuNSAwIDMyLjQuNCA0Ny44IDEuNCA4LjQuMyAxNS42LjcgMjIgMS4yVjIuMmMtNi41LS41LTEzLjgtLjUtMjIuMy0uOHoiIGZpbGw9IiNmZmYiLz4KPC9zdmc+Cg==);
  border-image-slice: 0 0 100%;
  border-image-width: 0 0 15px;
  border-image-repeat: stretch;
  border-width: 0px 0px 15px;
  border-bottom-style: solid;
  border-color: initial;
  border-top-style: initial;
  border-left-style: initial;
  border-right-style: initial;
}

.input-group .footer-input-wrapper,
.input-group .footer-icons-wrapper {
  transition: all 0.5s ease-in-out 0s;
  opacity: 1;
  transform: translateY(0px);
}

.send-icon:hover svg path {
  fill: #fff;
}

.message-operator {
  color: rgb(6, 19, 43);
  background: rgb(240, 242, 247);
  float: left;
}

.message span.message-content {
  white-space: pre-line;
}

#chatContainer {
  transition: all 0.3s ease-in-out;
  right: -300px;

}

.onlyBubble {
  display: none;
  transition: all 0.3s ease-in-out;
}

.open {
  display: block;
  transition: all 0.3s ease-in-out;
}

#chatContainer.open {
  right: 0;
}

.footer-input-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.clicked {
  display: none !important;
}

#button:not(.sidebar).clicked .buttonWave::after {
  animation: 0.5s ease-out 0s 1 normal none running buttonWave;
}

#button:not(.sidebar) .buttonWave::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgb(20, 127, 255);
  opacity: 0.5;
}

.sentText {
  margin: 0px auto;
  min-width: 100%;
  display: block;
  font-size: 16px;
  line-height: 19px;
  padding: 8px 16px;
  color: rgb(0, 125, 252);
  background: #f2f9ff;
  position: relative;
  z-index: 2;
  outline: none;
  border-radius: 20px;
  font-weight: normal;
  margin: 10px;
}

.botText {
  color: rgb(6, 19, 43);
  background: rgb(240, 242, 247);
  padding: 10px 16px;
  border-radius: 20px;
  margin: 2px 0px;
  font-size: 15px;
  line-height: 20px;
  overflow-wrap: break-word;
  display: inline-block;
  max-width: 85%;
  clear: both;
  position: relative;
  transition: margin 0.28s ease-in-out 0s;
}



textarea#chat-input {
  border: none;
  padding: 10px;
  height: 40px;
  border-radius: 5px;
  /* margin: 0px; */
  margin-right: 10px;
  outline: none;
  font-size: 14px;

}


textarea#chat-input::placeholder {
  color: #778899;
  font-size: 14px;
}

* {
  scrollbar-width: auto;
  scrollbar-color: rgb(24 16 110) #ffffff;
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 16px;
}

*::-webkit-scrollbar-track {
  background: #ffffff;
}

*::-webkit-scrollbar-thumb {
  background-color: linear-gradient(135deg, rgb(44, 41, 230) 0%, rgb(0, 204, 255) 100%);
  border-radius: 10px;
  border: 3px solid #ffffff;
}

.frommsg {
  border-radius: 20px 0px 20px 20px;
}

.tomsg {
  border-radius: 0px 20px 20px 20px;
}

#bars {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1px;
  position: relative;
  /* top: -27px; */
}

.bar {
  background: #ffffff;
  bottom: 1px;
  height: 3px;
  width: 4px;
  margin: 0px 4px;
  border-radius: 5px;
  animation: sound 0ms -600ms linear infinite alternate;
}

@keyframes sound {
  0% {
    opacity: .35;
    height: 3px;
  }

  100% {
    opacity: 1;
    height: 35px;
  }
}

.bar:nth-child(1) {
  left: 1px;
  animation-duration: 474ms;
}

.bar:nth-child(2) {
  left: 15px;
  animation-duration: 433ms;
}

.bar:nth-child(3) {
  left: 29px;
  animation-duration: 407ms;
}

.bar:nth-child(4) {
  left: 43px;
  animation-duration: 458ms;
}

.bar:nth-child(5) {
  left: 57px;
  animation-duration: 400ms;
}

.bar:nth-child(6) {
  left: 71px;
  animation-duration: 427ms;
}

.bar:nth-child(7) {
  left: 85px;
  animation-duration: 441ms;
}

.bar:nth-child(8) {
  left: 99px;
  animation-duration: 419ms;
}

.bar:nth-child(9) {
  left: 113px;
  animation-duration: 487ms;
}

.bar:nth-child(10) {
  left: 127px;
  animation-duration: 442ms;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/


.footer-section {
  background: url(../images/hero-bg.png) center left;
  background-size: cover;
  padding: 60px 0;
  border-radius: 0px;
  position: relative;
  background-attachment: fixed;
}

.footer-section:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  z-index: 0;
  opacity: 0.8;
}

.footer-cta {
  border-bottom: 1px solid #373636;
}

.copyright-text {
  margin-top: 30px;
}

.single-cta i {
  color: #c00113;
  font-size: 30px;
  float: left;
  margin-top: 8px;
}

.cta-text {
  padding-left: 15px;
  display: inline-block;
}

.cta-text h4 {
  color: #c00113;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 2px;
}

.cta-text span {
  color: #757575;
  font-size: 15px;
}

.footer-content {
  position: relative;
  z-index: 2;
}

.footer-content .list {
  padding-left: 0;
}

.footer-pattern img {
  position: absolute;
  top: 0;
  left: 0;
  height: 330px;
  background-size: cover;
  background-position: 100% 100%;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo img {
  max-width: 200px;
}

.footer-widget ul li,
.footer-widget ul li a {
  font-size: 14px;
}

.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--text-white-color);
  line-height: 28px;
}

.footer-social-icon span {
  color: var(--color-primary);
  display: block;
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}

.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}

.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 41px;
  border-radius: 50%;
}

.facebook-bg {
  background: var(--color-primary);
}

.twitter-bg {
  background: var(--color-primary);
}

.google-bg {
  background: var(--color-primary);
}

.footer-widget-heading h3 {
  color: var(--color-primary);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  position: relative;
}

.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 100%;
  margin-bottom: 12px;
}

.footer-widget ul li a:hover {
  color: var(--color-primary);
}

.footer-widget ul li a {
  color: var(--text-white-color);
  text-transform: capitalize;
}

.subscribe-form {
  position: relative;
  overflow: hidden;
  border-radius: 50px;
}

.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #e4e4e4;
  border: 1px solid #e4e4e4;
  color: #222222;
  outline: none;
}

.subscribe-form button {
  position: absolute;
  right: -3px;
  background: transparent;
  border: 0;
  top: -8px;
}

.subscribe-form button i {
  color: var(--color-primary);
  font-size: 3rem;
  transform: rotate(-6deg);
}

.copyright-area {
  padding: 25px 0;
}

.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #b9b9b9;
}

.copyright-text p a {
  color: var(--color-primary);
}

.footer-menu li {
  display: inline-block;
  margin-left: 20px;
}

.footer-menu li:hover a {
  color: var(--color-primary);
}

.footer-menu li a {
  font-size: 14px;
  color: #b9b9b9;
}

.footer-menu li a:hover {
  color: #000000;
}

.career h3 {
  color: #025add;
  font-size: 24px;
  font-weight: 600;
}

.BK {
  color: rgb(74 74 74) !important;
}


/*--------------------------------------------------------------
# Modification - Home
--------------------------------------------------------------*/

body {
  background: #fff;
}

body {
  overflow-x: hidden;
}

.nav_item {
  color: #000000;
}

.login {
  position: relative;
  left: 17px;
  width: 90px;
  padding-left: 22px;
  border: unset;

}

.login:hover {
  background: #4d44b5;
  color: #fff !important;
}

.header.sticked {
  background: #ffff;
  height: 70px;
}

.card_home {
  padding: 0%;
  height: 100%;
}

.card_home img:hover {
  transform: unset;
}

.card_home h5 {
  font-size: 17px;
  font-weight: 700;
  color: #0b264e !important;
  margin-top: 10px;
  margin-bottom: 15px;
}

.card_home::before {
  content: none;
}

.card_home .card-body {
  padding: 20px 30px;
}

.section_1 {
  position: relative;
  bottom: 170px;
  padding-bottom: 78px;
}

.dark-bg {
  position: relative;
  bottom: 57px;
}

.section .section-header h2 {
  font-weight: 700;
  opacity: 0.9;
  color: #0b264e;
  position: relative;
  top: 16px;
  padding: 0 20px 0 20px;
}

.section_2 {
  position: relative;
  top: 50px;
}

/* .box_img1{
  background-image: url(..//images/501.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 447px;
} */

/* .box_img2{
  background-image: url(..//images/502.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 447px;
}


.box_img3{
  background-image: url(..//images/503.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 447px;
}

.box_img4{
  background-image: url(..//images/504.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 447px;
} */

/* .box {
  p {
    text-align: left;
    position: relative;
    top: 74px;
  }

  h4{
    text-align: justify;
  }

  .stretched-link {
    font-size: 17px;
    position: relative;
    top: 69px;
    font-weight: 700;
    color: #0b264e !important;
    
  }
} */

.banner_img {
  background-image: url(..//images/Home_Img1.jpg);
  background-size: cover;
  height: 540px;
  background-repeat: no-repeat;
  position: relative;
  bottom: 114px;

  h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
    text-align: center;
    line-height: 2;
    padding-right: 320px;

  }

  p {
    color: #fff;
  }

}

.hero span {
  color: #cf30be;
}

.banner_txt {
  position: relative;
  top: 147px;
  left: 50px;

}

.social i:hover {
  color: #cf30be;
}

.container .section-header h2 {
  font-weight: 700;
  opacity: 0.9;
  color: #0b264e;
  padding-bottom: 50px;
}

.section_4 {
  position: relative;
  bottom: 114px;
  padding-top: 60px;

  .icon img {
    height: 70px;
  }

}

.list-wrap .description h4 {
  color: #6c0761;
}

.icon_delivery {
  position: relative;
  top: 50px;
}

.icon_support {
  position: relative;
  top: 120px;
}

.section_5 {

  .col-md-7 {
    position: relative;
    left: 120px;
    bottom: 45px;
  }

  p {
    padding: 15px 112px 0 0;
    font-weight: 500;
    font-size: unset;
  }

  h2 {
    color: #0b264e;
    font-weight: 600 !important;
    opacity: 0.9;
  }

  .col-md-5 {
    position: relative;
    bottom: 70px;
    left: 60px;

    img {
      height: 350px;
      border-radius: 20px;

    }

  }

}

.section_5b {

  .col-md-7 {
    position: relative;
    top: 130px;
  }


  p {
    padding: 15px 112px 0 0;
    font-weight: 500;
    font-size: unset;
  }

  h2 {
    color: #0b264e;
    font-weight: 600 !important;
    opacity: 0.9;
  }

  .col-md-5 {
    position: relative;
    top: 80px;
    left: 120px;

    img {
      height: 350px;
      border-radius: 20px;

    }

  }

}

.section_5c {

  .col-md-7 {
    position: relative;
    left: 120px;
    top: 240px;
  }

  p {
    padding: 15px 112px 0 0;
    font-weight: 500;
    font-size: unset;
  }

  h2 {
    color: #0b264e;
    font-weight: 600 !important;
    opacity: 0.9;
  }

  .col-md-5 {
    position: relative;
    top: 190px;
    left: 60px;


    img {
      height: 350px;
      border-radius: 20px;
    }

  }

}

.section_6 {
  position: relative;
  top: 280px;
  /* background: #1c57b3; */
  background-image: linear-gradient(90deg, #3c1ad6 0%, #FC00FF 100%);


}

.stats-counter .stats-item span {
  color: #fff;
  margin-top: 20px;
}

.section_7 {
  position: relative;
  top: 280px;
}

@media only screen and (max-width: 575px) {
  .login {
    position: unset !important;
  }

  .login:hover {
    background: unset;
    color: unset;
  }

  .banner_txt {
    position: unset !important;
    padding: 0 30px 0 38px;
    margin-top: 90px;

    h2 {
      font-size: 14px;
      padding-top: 15px;
      padding-right: 70px;
      text-align: center;
    }
  }

  .section_1 {
    h2 {
      font-size: 22px;
    }


  }

  .banner_img {
    height: 410px;
  }

  /* .box{
    p{
      top: 45px;
    }
    
    .stretched-link{
      top: 50px;
    }
  } */
  .section_2 {
    .col-md-6 {
      padding: 0 40px 0 40px;
      margin-top: 40px;
    }
  }

  .section_4 {
    h2 {
      font-size: 28px;
    }
  }


  .section_5,
  .section_5b,
  .section_5c {
    margin: 0%;
    position: relative;
    bottom: 49px;

    .col-md-7 {
      position: unset !important;

    }

    .col-md-5 {
      position: unset !important;
      padding: 34px 0;

      img {
        height: 300px;
      }

      text-align: center;
    }

  }

  .section_5C {
    h2 {
      text-align: center;
    }

    p {
      padding: 0%;
      text-align: center;
    }
  }

  .section_5Ca {
    h2 {
      text-align: center;
      margin-bottom: 30px;
    }

    p {
      text-align: center;
      font-size: unset;
      padding: 0 20px 0 20px;
      color: #3a3a3a;

    }
  }

  .right_b {
    margin-bottom: 0%;
  }

  .section_6,
  .section_7 {
    top: 20px;
  }


}

@media only screen and (min-width: 576px) and (max-width: 991px) {
  .login {
    position: unset !important;
  }

  .login:hover {
    background: unset;
    color: unset;
  }

  .banner_txt {
    position: unset !important;
    padding: 0 30px 0 38px;
    margin-top: 90px;

    h2 {
      font-size: 14px;
      padding-top: 15px;
      padding-right: 70px;
      text-align: center;
    }
  }

  .section_1 {
    h2 {
      font-size: 22px;
    }


  }

  .banner_img {
    height: 410px;
  }

  /* .box{
    p{
      top: 45px;
    }
    
    .stretched-link{
      top: 50px;
    }
  } */
  .section_2 {
    .col-md-6 {
      padding: 0 20px 0 20px;
      margin-top: 40px;
    }
  }

  .section_4 {
    h2 {
      font-size: 28px;
    }
  }


  .section_5 {
    margin: 0%;
    position: relative;
    bottom: 119px;

    .col-md-7 {
      position: unset !important;

    }

    .col-md-5 {
      position: unset !important;
      padding: 34px 0;

      img {
        height: 300px;
      }

      text-align: center;
    }

  }

  .section_5b {
    margin: 0%;
    position: relative;
    bottom: 39px;

    .col-md-7 {
      position: unset !important;

    }

    .col-md-5 {
      position: unset !important;
      padding: 34px 0;

      img {
        height: 300px;
      }

      text-align: center;
    }

  }

  .section_5c {
    margin: 0%;
    position: relative;
    top: 39px;

    .col-md-7 {
      position: unset !important;

    }

    .col-md-5 {
      position: unset !important;
      padding: 34px 0;

      img {
        height: 300px;
      }

      text-align: center;
    }

  }

  .section_5C {
    h2 {
      text-align: center;
    }

    p {
      padding: 0%;
      text-align: center;
    }
  }

  .section_5Ca {
    h2 {
      text-align: center;
      margin-bottom: 30px;
    }

    p {
      text-align: center;
      font-size: unset;
      padding: 0 20px 0 20px;
      color: #3a3a3a;

    }
  }

  .right_b {
    margin-bottom: 0%;
  }

  .section_6,
  .section_7 {
    top: 90px;
  }


}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .login {
    position: unset !important;
  }

  .login:hover {
    background: unset;
    color: unset;
  }

  .banner_txt {
    position: unset !important;
    padding: 0 30px 0 38px;
    margin-top: 90px;

    h2 {
      font-size: 14px;
      padding-top: 15px;
      padding-right: 70px;
      text-align: center;
    }
  }

  .section_1 {
    h2 {
      font-size: 22px;
    }


  }

  .banner_img {
    height: 410px;
  }

  /* .box{
    p{
      top: 45px;
    }
    
    .stretched-link{
      top: 50px;
    }
  } */
  .section_2 {
    .col-md-6 {
      /* padding: 0 40px 0 40px; */
      margin-top: 40px;
    }
  }

  .section_4 {
    h2 {
      font-size: 28px;
    }
  }


  .section_5 {
    margin: 0%;
    position: relative;
    bottom: 119px;

    .col-md-7 {
      position: unset !important;

    }

    .col-md-5 {
      position: unset !important;
      padding: 34px 0;

      img {
        height: 300px;
      }

      text-align: center;
    }

  }

  .section_5b {
    margin: 0%;
    position: relative;
    bottom: 39px;

    .col-md-7 {
      position: unset !important;

    }

    .col-md-5 {
      position: unset !important;
      padding: 34px 0;

      img {
        height: 300px;
      }

      text-align: center;
    }

  }

  .section_5c {
    margin: 0%;
    position: relative;
    top: 39px;

    .col-md-7 {
      position: unset !important;

    }

    .col-md-5 {
      position: unset !important;
      padding: 34px 0;

      img {
        height: 300px;
      }

      text-align: center;
    }

  }

  .section_5C {
    h2 {
      text-align: center;
    }

    p {
      padding: 0%;
      text-align: center;
    }
  }

  .section_5Ca {
    h2 {
      text-align: center;
      margin-bottom: 30px;
    }

    p {
      text-align: center;
      font-size: unset;
      padding: 0 20px 0 20px;
      color: #3a3a3a;

    }
  }

  .right_b {
    margin-bottom: 0%;
  }

  .section_6,
  .section_7 {
    top: 90px;
  }


}

/*--------------------------------------------------------------
# Modification - INDUSTRIES
--------------------------------------------------------------*/

.overlay {
  height: 100%;
  background-color: rgba(0, 45, 255, 0.5);
}

.ind_section1 {
  background: #1c57b3;
  background: url(..//images/Industries/ind_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 70px;
  height: 508px;

  .text {
    position: relative;
    top: 100px;
    left: 620px;
    text-align: right;
    font-size: 40px;
  }

  h2 {
    margin-top: 18%;
    color: #ffffff;
    font-weight: 700;
    font-size: 40px;
    text-align: center;
  }

  p {
    color: #ffffff;
    font-weight: 400;
    text-align: right;
    margin-right: 55px;
  }


}

.B3,
.B4,
.O3,
.O4 {
  margin-top: 70px;
}

.overlay2 {
  height: 100%;
  background-color: rgba(0, 45, 255, 0.5);
}

.ind_banner_img {
  background-image: url(..//images/Industries/ind_bg2.png);
  background-size: cover;
  height: 540px;
  background-repeat: no-repeat;
  margin: 50px 0 50px 0;
  /* position: relative; */
  /* bottom: 114px; */

  h2 {
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 0.7px;
    font-weight: 600;
    text-align: center;
    line-height: 2;
    padding-right: 270px;
    margin-top: 30px;
    padding-left: 50px;


  }

  p {
    color: #fff;
  }

}

.ind_banner_txt {
  position: relative;
  top: 147px;
  left: 50px;

}

.ind_section2 p {
  margin-top: 70px;
}


@media only screen and (max-width: 600px) {
  .ind_section1 {
    height: 390px;

    h2 {
      /* background: white; */
      text-align: center;
      font-size: 30px;
      margin-right: 0px;
      margin-top: 200px;
    }

    p {
      background: white;
      margin-right: 0px;
      text-align: center;

    }

  }

  .ind_section2 p {
    margin-top: 0px;
  }

}

@media only screen and (min-width: 992px) and (max-width: 1300px) {

  .ind_section1 {
    h2 {
      padding-left: 141px;
      margin-top: 70px;
    }

    p {
      margin-top: 5px;
    }
  }




}

@media only screen and (max-width: 600px) {
  .ind_section3 {
    height: 2080px !important;
    padding-top: 0%;
  }
}

@media only screen and (max-width: 575px) {


  .ind_banner_txt {
    position: unset !important;
    padding: 0 30px 0 38px;
    margin-top: 90px;

    h2 {
      padding-left: 0%;
      padding-right: 0%;
    }
  }


  .ind_banner_img {
    height: 410px;
  }


}



@media only screen and (min-width: 576px) and (max-width: 991px) {


  .ind_banner_txt {
    position: unset !important;
    padding: 0 30px 0 38px;
    margin-top: 90px;

    h2 {
      font-size: 14px;
      padding-top: 15px;
      padding-right: 70px;
      text-align: center;
    }
  }


  .ind_banner_img {
    height: 410px;
  }


}









/*--------------------------------------------------------------
# Modification - CONTACT
--------------------------------------------------------------*/

.con_section_1 {
  position: relative;
  top: 70px;
  height: 460px;
  background: #d2e5ff;

  .con_section_1_text {
    position: relative;
    top: 85px;
    left: 73px;
    color: #0b264e;

    h1 {
      font-weight: 700;
    }

    p {
      font-weight: 400;
    }
  }

  .con_img {
    height: 430px;
    position: relative;
    bottom: 28px;
    left: 93px;

  }

  .con_img:hover {
    transform: unset;
  }
}

.con_section_2 {
  .section-header h2 {
    font-weight: 700;
    opacity: 0.9;
    color: #0b264e;
    position: relative;
    top: 60px;
  }
}

.con_section_2a {
  position: relative;
  top: 50px;
}

.con_section_3 {
  position: relative;
  top: 70px;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .con_img {
    display: none;
  }

  .con_section_1_text {
    position: unset !important;
    text-align: center;
    margin-top: 40px;
  }

  .con_section_1 {
    height: 360px;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) and (max-width: 767px) {
  .con_img {
    display: none;
  }

  .con_section_1_text {
    position: unset !important;
    text-align: center;
    padding-right: 0px;
    margin-top: 48px;
  }

  .con_section_1 {
    height: 360px;
  }

}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .con_img {
    display: none;
  }

  .con_section_1_text {
    position: unset !important;
    text-align: center;
    padding-right: 0px;
    margin-top: 48px;
  }

  .con_section_1 {
    height: 360px;
  }
}


/*--------------------------------------------------------------
# Modification - ABOUT US
--------------------------------------------------------------*/

.abt_banner_img {
  background-image: url(..//images/About_Us_Icon.jpg);
  background-size: cover;
  height: 588px;
  background-repeat: no-repeat;
  position: relative;
  bottom: 9px;

  .abt_banner_txt {

    margin-top: 240px;
    padding: 0px 66px 0px 109px;


    h2 {
      font-size: 50px;
      margin-bottom: 20px;
      color: #fff;
      text-transform: capitalize;
      letter-spacing: 0.7px;
      font-weight: 600;
    }

    p {
      color: #fff;
      font-size: 18px;
      padding-right: 10px;
      line-height: 1.6;

    }
  }


}

.abt_section2 {
  position: relative;
  top: 150px;
  padding: 0 100px 0px 100px !important;
  height: 575px;

  p {
    font-size: 25px;
    text-align: center !important;
    line-height: 1.8;

  }

  h3 {
    font-weight: 700;
    opacity: 0.9;
    color: #0b264e;
    font-size: 30px;
    padding-bottom: 30px;

  }

}

@media only screen and (max-width: 600px) {
  .abt_banner_txt {
    margin-top: 199px !important;
    text-align: center;
    padding: 0% !important;

    p {
      padding: 0 25px 0 25px !important;
    }

    h2 {
      font-size: 30px !important;
    }
  }

  .abt_section2 {
    position: unset !important;
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 0% !important;
    height: unset;

    p {
      padding: 0 25px 0px 25px !important;
      font-size: 18px;
    }

  }
}

/*--------------------------------------------------------------
# Modification - CAREERS
--------------------------------------------------------------*/

.car_section1 {
  background: #1c57b3;
  margin-top: 70px;
  height: 460px;

  .img-size {
    position: relative;
    bottom: 30px;
    left: 78px;
    max-width: 625px;

  }

  .img-size {
    img:hover {
      transform: unset;
    }
  }

  .text {
    position: relative;
    top: 126px;
    color: #fff;
    height: 194px;

    h2 {
      font-weight: 700;
      font-size: 40px;
      padding-bottom: 10px;
    }

    p {
      font-size: 20px;
    }

  }


}


.car_boxa {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 250px;
  width: 250px;
  background-color: #fff;
  border: 1px solid #ddd;

  span {
    color: #1c57b3;
    font-size: 18px;
  }

  h3 {
    font-size: 18px;
    font-weight: 600;
  }
}

.car_boxa:hover {
  box-shadow: 0px 10px 30px 0px rgba(133, 66, 189, 0.1);
  color: #1c57b3;

}

.car_box {
  padding: 25px;

  .img-size img {
    max-width: 150px;

  }

  img:hover {
    transform: unset;
  }
}



.car_section2_text {
  h3 {
    font-weight: 700;
    opacity: 0.9;
    color: #0b264e;
    font-size: 32px;
    padding-bottom: 30px;

  }

}

.car_section3 {
  h3 {
    font-weight: 700;
    opacity: 0.9;
    color: #0b264e;
    font-size: 25px;


  }

  p {
    margin-bottom: 2rem;
  }
}

.car_section4 {
  /* background: #a0d1fc; */
  background: url(..//images/career_banner_2.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 650px;

  h3 {
    font-size: 32px;
    margin-top: 80px;
    margin-bottom: 70px;
    font-weight: 700;

  }

  h5 {
    color: #000000;
    margin-bottom: 10px;
    font-weight: 600;
  }

  p {
    color: #ffff;
    padding-top: 10px;
  }

  .card {
    border-radius: unset;
  }

  .card:hover {
    transform: unset;
  }
}

.car_section4a {
  padding: 55px 28px 0px 28px;
  background: #48c6c5;
  height: 350px;
  width: 301px;
}

.car_section5 {
  padding: 20px 0 60px 0;

  h3 {
    font-weight: 700;
    opacity: 0.9;
    color: #0b264e;
    font-size: 25px;


  }

  p {
    margin-bottom: 2rem;
  }
}

.car_section6 {
  background: #a0d1fc;
  padding-top: 0%;

  p {
    margin-bottom: 2rem;
  }

  h3 {
    color: #000;
  }

  p {
    font-size: 18px;
    color: #000000;
  }
}

@media only screen and (max-width: 600px) {

  .car_section1 {
    img {
      display: none;
    }

    .text {
      position: unset !important;
      text-align: center;
      padding: 0px;
      margin-top: 70px;
    }

    h2 {
      font-size: 22px !important;
    }

    p {
      font-size: 16px !important;
      padding: 0 30px 0 30px;
    }

  }

  .car_section1 {
    height: 360px;
  }

  .car_section2_text {
    h3 {
      font-size: 23px;
      position: relative;
      bottom: 40px;
      padding: 0%;
      margin: 0;
    }
  }

  .side {
    padding: 0 40px 0 0;
  }

  .car_boxa {
    height: 150px;
    width: 150px;
  }

  .car_section4 {
    height: 1361px;

    h3 {
      color: #00b9b8;
    }
  }

  .car_section5 {
    padding-top: 0%;
    padding-bottom: 0%;

    h3 {
      font-size: 20px;
    }
  }

  .car_section6 {
    margin-top: 35px;
    padding-bottom: 95px;

    h3 {
      margin-top: 50px;

    }
  }

  .car_section3 {
    h3 {
      margin-left: 10px;
      font-size: 22px;
    }

    p {
      margin-left: 10px;

    }
  }

  .car_section5 {
    h3 {
      margin-left: 10px;
    }

    p {
      margin-left: 10px;

    }
  }

  .car_box {
    max-width: 50%;
  }


}




/*--------------------------------------------------------------
# Modification - RAM
--------------------------------------------------------------*/
/* .ram_box_img1{
  background-image: url(..//images/ram_Img/card1.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 447px;
}

.ram_box_img2{
  background-image: url(..//images/ram_Img/card2.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 447px;
}
.ram_box_img3{
  background-image: url(..//images/ram_Img/card3.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 447px;
}
.ram_box_img4{
  background-image: url(..//images/ram_Img/card4.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 447px;
} */

.ram_section1 {
  background: #1c57b3;
  background: url(..//images/ram_Img/ram_banner.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 70px;
  height: 508px;

  .text {
    position: relative;
    top: 100px;
    left: 620px;
    text-align: right;
    font-size: 40px;
  }

  h2 {
    float: right;
    margin-top: 9%;
    color: #000;
    font-weight: 700;
    font-size: 40px;
    text-align: right;
    margin-right: 55px;
  }

  p {
    color: #000000;
    font-weight: 400;
    text-align: right;
    margin-right: 55px;
  }


}

.ram_section2 {


  h3 {
    font-weight: 700;
    opacity: 0.9;
    color: #0b264e;
    font-size: 25px;
    margin-top: 40px;
    padding-bottom: 15px;

  }

}

.ram_section3 {
  .top-icon-box {
    height: 600px;
  }

  .section_2 {

    .ram_box_img1,
    .ram_box_img2,
    .ram_box_img3,
    .ram_box_img4 {
      height: 507px;
    }

  }

}

.ram_section4 {
  padding: 0%;

  .ram_section4a {
    padding: 60px;

    img {
      max-width: 145px;
    }

    h4 {
      color: #0b264e;
    }
  }

  img:hover {
    transform: unset;
  }

}


.ram_section5 {
  .row {
    padding-bottom: 50px;
  }

  .last_row {
    padding-bottom: 0%;
  }

  h3 {
    color: #0b264e;
    font-weight: 600;
  }

  img {
    padding: 50px;
  }

  img:hover {
    transform: unset;
  }

  padding-bottom: 0%;

  .img_size {
    max-width: 600px;
  }

}

.ram_section5a {
  padding: 50px;
  margin-top: 25px;

  h3 {
    text-align: left;
  }
}

.ram_section6 {
  padding: 0%;
  padding-bottom: 60px;

  .ram_section6a {
    padding: 60px;

    img {
      max-width: 145px;
    }

    h4 {
      color: #0b264e;
    }
  }

  img:hover {
    transform: unset;
  }

}

@media only screen and (max-width: 600px) {
  .ram_section1 {
    height: 390px;

    h2 {
      background: white;
      text-align: center;
      font-size: 30px;
      margin-right: 0px;
      margin-top: 100px;
    }

    p {
      background: white;
      margin-right: 0px;
      text-align: center;

    }
  }

  .ram_section2 {
    position: relative;
    top: 30px;
    padding: 15px 20px 0 20px;

    h3 {
      font-size: 20px;
      margin-top: 10px;
    }
  }

  .ram_section3 {
    height: 2250px;
    padding-top: 0%;

  }

  .ram_section4 {
    text-align: center;

    .key {
      top: 0px;
      padding-top: 0px;

      h3 {
        font-size: 25px;
      }
    }
  }

  .ram_section4a {
    padding-top: 10px !important;
    padding-bottom: 0px !important;

    p {
      margin-bottom: 3rem;
    }
  }

  .ram_section5 {
    .img_size {
      img {
        padding: 0 30px 30px 30px;
      }
    }

    .bottom {
      padding-bottom: 0%;
    }
  }

  .ram_section5a,
  .ram_section5 {
    padding-top: 0px !important;

  }

  .ram_section5a {
    padding: 0 20px 0 20px;
    position: relative;
    bottom: 30px;

  }

  .ram_section6 {
    position: relative;
    bottom: 20px;
    text-align: center;

    .key {
      top: 0px;
      padding-top: 0px;

      h3 {
        font-size: 25px;
      }
    }
  }

  .ram_section6a {
    padding-top: 20px !important;

    .bottom {
      padding-bottom: 30px;

    }
  }


}

@media only screen and (min-width: 992px) and (max-width: 1300px) {

  .ram_section1 {
    h2 {
      padding-left: 141px;
      margin-top: 70px;
    }

    p {
      margin-top: 5px;
    }
  }




}

/*--------------------------------------------------------------
# Modification - ERP
--------------------------------------------------------------*/

.erp_section1 {
  background: #1c57b3;
  background: url(..//images/erp_banner.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  margin-top: 70px;
  height: 508px;

  h2 {
    float: right;
    margin-top: 9%;
    color: #fff;
    font-weight: 700;
    font-size: 40px;
    text-align: right;
    margin-right: 65px;
  }

  p {
    color: #ffffff;
    font-weight: 400;
    text-align: right;
    margin-right: 65px;
  }


}

.erp_section2 {
  p {
    margin-top: 60px;
    font-size: 19px;
  }

}

/* .erp_box_img1{
  background-image: url(..//images/erp_Img/card1.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 447px;
}
.erp_box_img2{
  background-image: url(..//images/erp_Img/card2.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 447px;
}
.erp_box_img3{
  background-image: url(..//images/erp_Img/card3.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 447px;
}
.erp_box_img4{
  background-image: url(..//images/erp_Img/card4.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 447px;
  h4{text-align: left;}

} */





.erp_section3 {
  padding-top: 0%;

  .top-icon-box {
    height: 650px;
  }

  .section_2 {

    .erp_box_img1,
    .erp_box_img2,
    .erp_box_img3,
    .erp_box_img4 {
      height: 430px;
    }

  }

}

.erp_section_4 {
  position: relative;
  bottom: 114px;
  padding-top: 60px;
  height: 1030px;

  .icon img {
    height: 70px;
  }

  .first {
    margin-bottom: 175px;
  }

  .second {
    margin-bottom: 102px;
  }


}

.erp_section_5 {


  .col-md-7 {
    position: relative;
    left: 120px;
    bottom: 45px;
  }

  p {
    padding: 15px 112px 0 0;
    font-weight: 500;
    font-size: unset;
  }

  h2 {
    color: #0b264e;
    font-weight: 600 !important;
    opacity: 0.9;
  }

  .col-md-5 {
    position: relative;
    bottom: 50px;
    left: 80px;

    img {
      height: 350px;
      border-radius: 20px;

    }

  }


}

.erp_section_5b {
  position: relative;
  bottom: 60px;

  .col-md-7 {
    position: relative;
    top: 140px;
  }


  p {
    padding: 15px 112px 0 0;
    font-weight: 500;
    font-size: unset;
  }

  h2 {
    color: #0b264e;
    font-weight: 600 !important;
    opacity: 0.9;
  }

  .col-md-5 {
    position: relative;
    top: 150px;
    left: 120px;

    img {
      height: 350px;
      border-radius: 20px;

    }

  }

}

.erp_section_5c {
  height: 800px;
  position: relative;
  bottom: 120px;

  .col-md-7 {
    position: relative;
    left: 120px;
    top: 360px;
  }

  p {
    padding: 15px 112px 0 0;
    font-weight: 500;
    font-size: unset;
  }

  h2 {
    color: #0b264e;
    font-weight: 600 !important;
    opacity: 0.9;
  }

  .col-md-5 {
    position: relative;
    top: 370px;
    left: 80px;

    img {
      height: 350px;
      border-radius: 20px;
    }

  }

}

@media only screen and (max-width: 600px) {

  .erp_section1 {
    height: 390px;

    h2 {
      text-align: unset;
      margin-right: unset;
      font-size: 30px;
      margin-top: 120px;
      background: #011945;

    }

    p {
      text-align: unset;
      background: #fff;
      margin: 0%;
      color: #000;
    }
  }

  .erp_section2 {
    padding: 0 20px 0 20px;
  }

  .erp_section3 {
    padding-bottom: 1440px;
  }

  .erp_section_4 {
    height: 2310px;

    .first,
    .second {
      margin-bottom: 75px;
    }
  }


  .erp_section_5,
  .erp_section_5b,
  .erp_section_5c {
    margin: 0%;
    position: relative;
    bottom: 49px;

    .col-md-7 {
      position: unset !important;

    }

    .col-md-5 {
      position: unset !important;
      padding: 34px 0;

      img {
        height: 300px;
      }

      text-align: center;
    }

  }

  .erp_section_5c {
    height: 1000px;

    h2 {
      text-align: center;
    }

    p {
      padding: 0%;
      text-align: center;
    }
  }


  .erp_section_5Ca {
    h2 {
      text-align: center;
      margin-bottom: 30px;
    }

    p {
      text-align: center;
      font-size: unset;
      padding: 0 20px 0 20px;
      color: #3a3a3a;

    }
  }

}



/*--------------------------------------------------------------
# Modification - MES
--------------------------------------------------------------*/

.mes_section1 {
  background: #1c57b3;
  background: url(..//images/mes_banner.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 70px;
  height: 508px;


  h2 {
    float: right;
    margin-top: 5%;
    color: #fff;
    font-weight: 700;
    font-size: 40px;
    text-align: right;
    margin-right: 65px;
  }

  p {
    color: #ffffff;
    font-weight: 400;
    text-align: right;
    margin-right: 65px;
    padding-left: 152px;
    padding-top: 10px
  }


}

.mes_section2a {
  padding-top: 0%;

  .top-icon-box {
    height: 650px;
  }

  .section_2 {

    .erp_box_img1,
    .erp_box_img2,
    .erp_box_img3,
    .erp_box_img4 {
      height: 430px;
    }

  }

}

.mes_box_img1 {
  background-image: url(..//images/mes_card1.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 447px;
}

.mes_box_img2 {
  background-image: url(..//images/mes_Img2.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 447px;
}

.mes_box_img3 {
  background-image: url(..//images/shutterstoc.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 447px;
}

.mes_section_2 {

  .mes_box_img1,
  .mes_box_img2,
  .mes_box_img3 {
    height: 480px;
  }

  .row {
    justify-content: center;
    padding-top: 100px;
  }

  .margin {
    margin: 0 30px 0 30px;
  }


}

.mes_section2 {
  p {
    margin-top: 60px;
    font-size: 22px;
    padding-top: 20px;
  }

}

.mes_section3 {
  background: #025add;

  h1 {
    color: #fff;
    font-size: 45px;
  }


  p {
    font-size: 16px !important;
    padding-top: 10px;
  }
}

.mes_paimg1 {
  margin-top: 25px;
}

.mes_paimg2 {
  margin-top: 15px;
}

.mes_section5a {
  padding: 50px;
  margin-top: 25px;

  h3 {
    text-align: left;
  }
}

@media only screen and (max-width: 600px) {
  .mes_section1 {
    height: 390px;

    h2 {
      background: #009ebd;
      text-align: center;
      margin-right: 0px;
      margin-top: 55px;
      font-size: 30px;
    }

    p {
      background: rgb(0, 0, 0);
      margin-right: 0px;
      text-align: center;
      padding-left: 0%;

    }
  }

  .mes_section2 {
    p {
      font-size: unset;
      padding: 0 20px 0 20px;
    }

  }

  .margin {
    padding: 0 40px 40px 40px;
  }

  .height {
    height: 380px !important;
  }

  .mes_section2a {
    height: 1560px;

    .box {
      p {
        top: 70px
      }
    }
  }

  .mes_section_2 {
    .row {
      padding-top: 70px;
    }

    /* .col-md-6{
      padding: 0 40px 0 40px;
      margin-top: 40px;
    } */
  }

  .mes_section3 {
    h1 {
      font-size: 29px;
    }

    p {
      font-size: unset;
    }

    padding: 70px 0 70px 30px;
  }


  .mes_section5a {
    padding-top: 0px !important;

  }

  .mes_section5a {
    padding: 0 20px 0 20px;
    position: relative;
    bottom: 30px;
    top: 20px;


  }

  .mes_paimg2,
  .mes_mpimg3,
  .mes_isimg4 {
    padding-left: 30px !important;
    padding-right: 30px !important;
    padding-top: 0px !important;
    margin-top: 0px !important;
  }
}




/*--------------------------------------------------------------
# Modification - CRM
--------------------------------------------------------------*/

.crm_section3 {
  background: #009ebd;
  height: 800px;

  h1 {
    color: #fff;
    font-size: 45px;
  }

  h4 {
    color: #fff;
  }

  p {
    font-size: 16px !important;
    padding-top: 10px;
    position: unset;
  }


}

.crm_section_1 {
  padding-bottom: 150px;
}

.crm_box_img1 {
  background-image: url(..//images/crm_card1.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 447px;
}

.crm_box_img3 {
  background-image: url(..//images/crm_card3.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 447px;
}

.crm_section_2 {

  .crm_box_img1,
  .crm_box_img2,
  .crm_box_img3 {
    height: 600px;
  }

  .row {
    justify-content: center;
    padding-top: 100px;
  }

  .margin {
    margin: 0 30px 0 30px;
  }


}



.crm_section_2a {

  .box_img1,
  .box_img2,
  .box_img3,
  .box_img4 {
    height: 480px;
  }

  .row {
    justify-content: center;
    padding-top: 180px;
  }

  .margin {
    margin: 0 30px 0 30px;
  }


}



/* .crm_section1{
  background: #ccc;
  background: url(..//images/crm_banner.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 70px;
  height: 460px;

   
  h2 {
    float: right;
    margin-top: 11%;
    color: #fff;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.3;
    text-align: center;
    margin-right: 260px
    
  }
   

} */

.crm_section1 {
  background: #ccc;
  background: url('../images/crm_banner.jpg') no-repeat center center;
  background-size: cover;
  margin-top: 70px;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.crm_section1 h2 {
  color: #fff;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.3;
  margin: 0;
}

@media (max-width: 1200px) {
  .crm_section1 h2 {
    font-size: 2rem;
    margin-right: 0;
  }
}

@media (max-width: 992px) {
  .crm_section1 h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .crm_section1 h2 {
    font-size: 1.5rem;
    margin-top: 0;
  }
}



.crm_icon,
.crm_icon2 {
  color: #fff;
  font-size: 70px;
  position: absolute;
  bottom: 180px;
  right: 200px;

}

.crm_icon2 {
  font-size: 60px;
}

.crm_bg {
  background: #eef1f2;

  .phone {
    height: 600px;
  }
}

/* .crm_section5{
  .row {padding-bottom: 50px;}
  .last_row{padding-bottom: 0%;}
  h3{
    color: #0b264e;
    font-weight: 600;
  }
   
  img{padding: 50px;}

  img:hover {transform: unset;}
  padding-bottom: 0%;

  .img_size{
    max-width: 600px;
  }
  
}

.crm_section5a{
  padding: 50px;
  padding-left: 90px;
  margin-left: 30px;
  margin-top: 100px;
  h3{text-align: left;}
}

.crm_section5b{
  padding: 50px;
  padding-right: 90px;
  margin-right: 30px;
  margin-top: 150px;
  h3{text-align: left;}
} */

.crm_section5 {
  background: #eef1f2;
}

.crm_section5 .row {
  padding-bottom: 50px;
}

.crm_section5 .last_row {
  padding-bottom: 0;
}

.crm_section5 h3 {
  color: #0b264e;
  font-weight: 600;
  text-align: left;
}

.crm_section5 img {
  padding: 50px;
}

.crm_section5 .img_size {
  max-width: 600px;
}

.crm_section5a {
  padding: 50px;
  margin-top: 100px;
}

.crm_section5b {
  padding: 50px;
  margin-top: 150px;
}

.crm_section5 .img-fluid {
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 600px) {
  .crm_section1 {
    height: 390px;
  }

  .crm_section_2 {
    .margin {
      padding: 0 40px 40px 40px;
    }

  }

  .crm_section_2a {
    .box {
      p {
        text-align: left;
      }
    }

    .margin {
      padding-bottom: 20px;
    }

    .row {
      padding-top: 90px;
    }
  }

  .crm_icon,
  .crm_icon2 {
    bottom: 132px;
    right: 230px;
  }

  .crm_section_1 {
    height: 1930px;
  }

  .crm_section3 {
    height: 1100px;

    h1 {
      font-size: 25px;
      font-weight: 700;
    }

    p {
      text-align: center;
    }

  }

  .crm_box_img1,
  .crm_box_img2,
  .crm_box_img3 {
    p {
      top: 50px;
    }
  }

  .crm_section3 {
    padding: 100px 30px 0 30px;
  }

  .crm_section5a,
  .crm_section5b {
    margin-top: 0px;
    padding: 0 30px 0 30px;
  }

  .crm_section5 img {
    padding: 0%;
  }
}