@font-face {
  font-family: "Sofia Pro Regular Az";
  src: url("../fonts/Sofia Pro Regular Az.woff2") format("woff2"),
    url("../fonts/Sofia Pro Regular Az.woff2") format("woff");
  font-display: auto;
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
}
@font-face {
  font-family: "Anton-Regular";
  src: url(../fonts/Anton-Regular.ttf) format("truetype");
  font-display: swap;
}
:root {
  scroll-behavior: smooth;
}

:root {
  --font-default: "Poppins", sans-serif;
  --font-secondary: "Anton-Regular";
}

:root {
  --color-primary: #3e96f4;
  --color-secondary: #292929;
  --color-white: #fff;
  --color-black: #000;
  --black: #000;
  --white: #fff;
}

a {
  color: var(--color-links);
  text-decoration: none;
}

a:hover {
  color: var(--color-links-hover);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
}

body {
  font-family: var(--font-default);
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-white);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.hide {
  display: none;
}
#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}
.bg-black {
  background: var(--black);
}
.bg-white {
  background: var(--white);
}
.color-blue {
  color: var(--color-primary);
}
.color-white {
  color: var(--white);
}
/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding-bottom: 40px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: 1px;
  color: var(--color-primary);
  font-family: var(--font-secondary);
}

.section-header p {
  margin: 0 auto;
  color: var(--color-black);
  font-weight: 300;
  line-height: normal;
  letter-spacing: 1.35px;
  text-align: justify;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(var(--color-secondary-rgb), 0.05);
  min-height: 40px;
  margin-top: 76px;
}

.breadcrumbs h2 {
  font-size: 30px;
  font-weight: 300;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-secondary-light);
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs h2 {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 995;
  display: none;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  line-height: 45px;
  border-radius: 4px;
  transition: all 0.4s;
  text-align: center;
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-white);
  line-height: 0;
}

.scroll-top:hover {
  background: #1276e1;
  color: var(--color-white);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0s !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  padding: 0px 0;
  /*transition: all 0.5s;*/
  z-index: 997;
}

.header.sticked {
  background: var(--color-white);
  box-shadow: 0px 14px 20px -8px rgba(0, 0, 0, 0.25);
}

.header .logo img {
  margin-right: 6px;
  width: 220px;
  padding: 10px;
  height: auto;
}

.header .logo h1 {
  font-size: 32px;
  font-weight: 300;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}

.header .logo h1 span {
  color: var(--color-primary);
  font-weight: 500;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  font-size: 16px;
  color: var(--color-black);
  padding: 8px 23px;
  font-weight: 500;
  transition: 0.3s;
  border: 1px solid #183c28;
  font-family: var(--font-default);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--color-white);
  background: var(--color-primary);
}
li.getstarted-btn a:before {
  display: none;
}
@media (max-width: 991px) {
  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    margin-right: 50px;
  }
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 992px) {
  .navbar {
    padding: 0;
    position: relative;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navbar ul li {
    margin: 0px 10px;
  }
  .navbar li {
    position: relative;
  }

  .navbar > ul > li {
    white-space: nowrap;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 12px;
    font-family: var(--font-default);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-default);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
    letter-spacing: 1.2px;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar > ul > li > a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    transition: all 0.3s ease-in-out 0s;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover > a:before,
  .navbar .active:before {
    visibility: visible;
    transform: scaleX(0.7);
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: var(--color-primary);
  }

  .navbar .dropdown a:hover:before,
  .navbar .dropdown:hover > a:before,
  .navbar .dropdown .active:before {
    visibility: hidden;
  }

  .navbar .dropdown a:hover,
  .navbar .dropdown .active,
  .navbar .dropdown .active:focus,
  .navbar .dropdown:hover > a {
    color: var(--color-black);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    margin: 0;
    padding: 0 0 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--color-white);
    transition: 0.3s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
    margin: 0px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: rgba(var(--color-white-rgb), 0.5);
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover > a {
    color: var(--color-white);
    background: var(--color-primary);
  }

  .navbar .dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
  }

  .navbar .megamenu {
    position: static;
  }

  .navbar .megamenu ul {
    right: 0;
    padding: 10px;
    display: flex;
  }

  .navbar .megamenu ul li {
    flex: 1;
  }

  .navbar .megamenu ul li a,
  .navbar .megamenu ul li:hover > a {
    color: rgba(var(--color-white-rgb), 0.5);
    background: none;
  }

  .navbar .megamenu ul li a:hover,
  .navbar .megamenu ul li .active,
  .navbar .megamenu ul li .active:hover {
    color: var(--color-white);
    background: var(--color-primary);
  }

  .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%;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .spacemanage {
    display: none;
  }
}

@media (max-width: 991px) {
  .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }
  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    border: none;
    color: #fff;
    box-shadow: none;
  }
  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 40px 0 0px 0px;
    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: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--white);
    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: var(--color-white);
    background: #1d7add;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 0px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid rgba(var(--color-secondary-light-rgb), 0.3);
  }

  .navbar .dropdown > .dropdown-active,
  .navbar .dropdown .dropdown > .dropdown-active {
    display: block;
  }

  .mobile-nav-toggle {
    display: block !important;
    color: var(--color-secondary);
    font-size: 40px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    top: 20px;
    z-index: 9999;
    right: 10px;
  }

  .mobile-nav-toggle.bi-x {
    color: var(--color-white);
    background: #1d7add;
    top: 0px;
    right: 0px;
  }

  .mobile-nav-active {
    overflow: hidden;
    z-index: 9995;
    position: relative;
  }

  .mobile-nav-active .navbar {
    left: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(var(--color-secondary-rgb), 0.8);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Index Page
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Animated Hero Section
--------------------------------------------------------------*/
.hero-animated {
  background: url("../images/circle.png"),
    linear-gradient(108deg, #fafafa 0%, #f0f0f0 54.16%, #fff 100%);
  position: relative;
  padding: 150px 0 60px;
  background-repeat: no-repeat;
  background-position: right 0px top 0px;
  z-index: 1;
}

.mt-10 {
  margin-top: 10px;
}

.arrow-div {
  position: absolute;
  left: 35%;
  top: 40%;
}
.hero-animated h1 {
  margin: 0 0 10px 0;
  font-size: 62px;
  text-align: left;
  font-weight: 300;
  letter-spacing: 3px;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}

.hero-animated h1 span {
  color: var(--color-primary);
  font-size: 44px;
  letter-spacing: 1px;
  margin-top: 15px;
}
.home-hero h1 span {
  font-size: 92px;
  margin-top: -15px;
}
.home-hero h1 {
  font-size: 92px !important;
}
.hero-animated p {
  color: var(--black);
  margin: 0 0 30px 0;
  font-size: 24px;
  font-weight: 100;
  text-align: left;
}
.border-btn {
  padding: 12px 20px;
  float: left;
  border: 1px solid #292929;
  font-weight: 500;
}
.hero-animated .animated {
  margin-bottom: 60px;
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 992px) {
  /*.hero-right img  {
    max-width: 75%;
  }*/
}

@media (max-width: 575px) {
  .hero-right img {
    max-width: 80%;
  }
}

.hero-animated .btn-get-started {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: var(--color-white);
  background: var(--color-primary);
  font-family: var(--font-secondary);
}

.hero-animated .btn-get-started:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
}

.hero-animated .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-family: var(--font-secondary);
  color: var(--color-secondary);
  font-weight: 600;
}

.hero-animated .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero-animated .btn-watch-video:hover {
  color: var(--color-primary);
}

.hero-animated .btn-watch-video:hover i {
  color: rgba(var(--color-primary-rgb), 0.8);
}

@media (max-width: 640px) {
  .hero-animated h1 {
    font-size: 32px;
  }

  .hero-animated p {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .hero-animated .btn-get-started,
  .hero-animated .btn-watch-video {
    font-size: 14px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Carousel Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  padding: 0;
  background: var(--color-black);
  background: url("../img/hero-bg.png") center center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 60px 0;
}

.hero .carousel-item {
  overflow: hidden;
}

@media (max-width: 640px) {
  .hero .container {
    padding: 0 60px;
  }
}

.hero h2 {
  color: var(--color-secondary);
  margin-bottom: 25px;
  font-size: 48px;
  font-weight: 300;
  animation: fadeInDown 1s both 0.2s;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero p {
  color: var(--color-secondary-light);
  animation: fadeInDown 1s both 0.4s;
  font-weight: 500;
  margin-bottom: 30px;
}

.hero .img {
  margin-bottom: 40px;
  animation: fadeInDownLite 1s both;
}

.hero .btn-get-started {
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 5px;
  transition: 0.5s;
  animation: fadeInUp 1s both 0.6s;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.hero .btn-get-started:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: rgba(var(--color-secondary-rgb), 0.4);
  color: rgba(var(--color-white-rgb), 0.98);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-next-icon {
  padding-left: 3px;
}

.hero .carousel-control-prev-icon {
  padding-right: 3px;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

.hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: rgba(var(--color-secondary-rgb), 0.5);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

.hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--color-primary);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDownLite {
  from {
    opacity: 0;
    transform: translate3d(0, -10%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# Fullscreen Hero Section
--------------------------------------------------------------*/
.hero-fullscreen {
  width: 100%;
  min-height: 100vh;
  background: url("../img/hero-fullscreen-bg.jpg") center center;
  background-size: cover;
  position: relative;
  padding: 120px 0 60px;
}

.hero-fullscreen:before {
  content: "";
  background: rgba(var(--color-white-rgb), 0.85);
  position: absolute;
  inset: 0;
}

@media (min-width: 1365px) {
  .hero-fullscreen {
    background-attachment: fixed;
  }
}

.hero-fullscreen h2 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 300;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}

.hero-fullscreen h2 span {
  color: var(--color-primary);
}

.hero-fullscreen p {
  color: rgba(var(--color-secondary-rgb), 0.8);
  margin: 0 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero-fullscreen .btn-get-started {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: var(--color-white);
  background: var(--color-primary);
  font-family: var(--font-secondary);
}

.hero-fullscreen .btn-get-started:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
}

.hero-fullscreen .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-family: var(--font-secondary);
  color: var(--color-secondary);
  font-weight: 600;
}

.hero-fullscreen .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero-fullscreen .btn-watch-video:hover {
  color: var(--color-primary);
}

.hero-fullscreen .btn-watch-video:hover i {
  color: rgba(var(--color-primary-rgb), 0.8);
}

@media (max-width: 640px) {
  .hero-fullscreen h2 {
    font-size: 32px;
  }

  .hero-fullscreen p {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .hero-fullscreen .btn-get-started,
  .hero-fullscreen .btn-watch-video {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Static Hero Section
--------------------------------------------------------------*/
.hero-static {
  width: 100%;
  min-height: 50vh;
  background: url("../img/hero-bg.png") center center;
  background-size: cover;
  position: relative;
  padding: 120px 0 60px;
}

.hero-static h2 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 300;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}

.hero-static h2 span {
  color: var(--color-primary);
}

.hero-static p {
  color: rgba(var(--color-secondary-rgb), 0.8);
  margin: 0 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero-static .btn-get-started {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: var(--color-white);
  background: var(--color-primary);
  font-family: var(--font-secondary);
}

.hero-static .btn-get-started:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
}

.hero-static .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-family: var(--font-secondary);
  color: var(--color-secondary);
  font-weight: 600;
}

.hero-static .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero-static .btn-watch-video:hover {
  color: var(--color-primary);
}

.hero-static .btn-watch-video:hover i {
  color: rgba(var(--color-primary-rgb), 0.8);
}

@media (max-width: 640px) {
  .hero-static h2 {
    font-size: 32px;
  }

  .hero-static p {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .hero-static .btn-get-started,
  .hero-static .btn-watch-video {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  padding: 30px;
  transition: all ease-in-out 0.4s;
  background: var(--color-white);
  height: 100%;
}

.featured-services .service-item .icon {
  margin-bottom: 10px;
}

.featured-services .service-item .icon i {
  color: var(--color-primary);
  font-size: 36px;
  transition: 0.3s;
}

.featured-services .service-item h4 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 24px;
}

.featured-services .service-item h4 a {
  color: var(--color-secondary);
  transition: ease-in-out 0.3s;
}

.featured-services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.featured-services .service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0px 0 60px 0 rgba(var(--color-secondary-rgb), 0.1);
}

.featured-services .service-item:hover h4 a {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-img {
  position: relative;
  margin: 60px 0 0 60px;
}

.about .about-img:before {
  position: absolute;
  inset: -60px 0 0 -60px;
  z-index: -1;
  content: "";
  background: url("../img/about-bg.png") top left;
  background-repeat: no-repeat;
}

@media (max-width: 575px) {
  .about .about-img {
    margin: 30px 0 0 30px;
  }

  .about .about-img:before {
    inset: -30px 0 0 -30px;
  }
}

.about h3 {
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-weight: 300;
  font-size: 32px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .about h3 {
    font-size: 28px;
  }
}

.about .nav-pills {
  border-bottom: 1px solid rgba(var(--color-secondary-rgb), 0.2);
}

.about .nav-pills li + li {
  margin-left: 40px;
}

.about .nav-link {
  background: none;
  font-size: 18px;
  font-weight: 400;
  color: var(--color-secondary);
  padding: 12px 0;
  margin-bottom: -2px;
  border-radius: 0;
  font-family: var(--font-secondary);
}

.about .nav-link.active {
  color: var(--color-primary);
  background: none;
  border-bottom: 3px solid var(--color-primary);
}

@media (max-width: 575px) {
  .about .nav-link {
    font-size: 16px;
  }
}

.about .tab-content h4 {
  font-size: 18px;
  margin: 0;
  font-weight: 700;
  color: var(--color-secondary);
}

.about .tab-content i {
  font-size: 22px;
  line-height: 0;
  margin-right: 8px;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 0 0 60px 0;
}

.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.cta {
  padding: 0;
  margin-bottom: 60px;
}

.cta .container {
  padding: 80px;
  background: rgba(var(--color-secondary-rgb), 0.1);
  border-radius: 15px;
}

@media (max-width: 992px) {
  .cta .container {
    padding: 60px;
  }
}

.cta .content h3 {
  color: var(--color-secondary);
  font-size: 48px;
  font-weight: 700;
}

.cta .content h3 em {
  font-style: normal;
  position: relative;
}

.cta .content h3 em:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  height: 10px;
  background: rgba(var(--color-primary-rgb), 0.5);
  z-index: -1;
}

.cta .content p {
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
}

.cta .content .cta-btn {
  color: var(--color-white);
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.5s;
  margin-top: 10px;
  background: rgba(var(--color-primary-dark-rgb), 0.9);
}

.cta .content .cta-btn:hover {
  background: var(--color-primary);
}

.cta .img {
  position: relative;
}

.cta .img:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(var(--color-white-rgb), 0.5);
  border-radius: 15px;
  transform: rotate(12deg);
}

.cta .img:after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(var(--color-white-rgb), 0.9);
  border-radius: 15px;
  transform: rotate(6deg);
}

.cta .img img {
  position: relative;
  z-index: 3;
  border-radius: 15px;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  border: 0;
  padding: 12px 20px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: left;
  transition: 0s;
  cursor: pointer;
  height: 100%;
  border-radius: 50px 0px 0px 50px;
}

.features .nav-link i {
  font-size: 32px;
  line-height: 0;
}

.features .nav-link h4,
.features .nav-link h3 {
  font-size: 20px;
  margin: 0px 0 0 20px;
  color: var(--black);
}

.features .nav-link:hover {
  color: var(--color-primary);
}

.features .nav-link.active {
  transition: 0.3s;
  background: var(--black);
}
.features .nav-link.active img {
  filter: brightness(0) invert(1);
}
section#features {
  /* border-radius: 50px; */
  background: linear-gradient(180deg, rgba(239, 247, 255, 0) 0%, #f1f8ff 100%);
}
.blue-brd-btn {
  border: 2px solid #287ad1;
  background: #fff;
  display: inline;
  color: #3e96f4;
  padding: 10px 20px;
  text-transform: uppercase;
}
.blue-brd-btn:hover {
  background: #3e96f4;
  color: #fff;
  transition: 0.2s 0.1s;
}
.features .nav-link img {
  filter: brightness(0) invert(0);
}
.features .nav-link.active h4,
.features .nav-link.active h3 {
  color: var(--color-white);
}

.features .nav-link.active i {
  color: var(--color-white) !important;
}

.features .tab-content {
  padding: 30px 30px 50px 30px;
  /* margin-top: 30px; */
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  box-shadow: 0px 14px 20px -8px rgba(0, 0, 0, 0.25);
}

.features .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.features .tab-pane h3 {
  font-weight: 600;
  font-size: 36px;
  color: var(--color-secondary);
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-bottom: 10px;
}

.features .tab-pane ul i {
  font-size: 24px;
  margin-right: 4px;
  color: var(--color-primary);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .img {
  border-radius: 8px;
  overflow: hidden;
}

.services .img img {
  transition: 0.6s;
}

.services .details {
  padding: 50px 30px;
  margin: -100px 30px 0 30px;
  transition: all ease-in-out 0.3s;
  background: var(--color-white);
  position: relative;
  background: rgba(var(--color-white-rgb), 0.9);
  text-align: center;
  border-radius: 8px;
  box-shadow: 0px 0 25px rgba(var(--color-black-rgb), 0.1);
}

.services .details .icon {
  margin: 0;
  width: 72px;
  height: 72px;
  background: var(--color-primary);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--color-white);
  font-size: 28px;
  transition: ease-in-out 0.3s;
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  border: 6px solid var(--color-white);
}

.services .details h3 {
  color: var(--color-default);
  font-weight: 700;
  margin: 10px 0 15px 0;
  font-size: 22px;
  transition: ease-in-out 0.3s;
}

.services .details p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item:hover .details h3 {
  color: var(--color-primary);
}

.services .service-item:hover .details .icon {
  background: var(--color-white);
  border: 2px solid var(--color-primary);
}

.services .service-item:hover .details .icon i {
  color: var(--color-primary);
}

.services .service-item:hover .img img {
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  background: url("../img/testimonials-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(var(--color-secondary-dark-rgb), 0.8);
}

.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
  color: var(--color-white);
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid rgba(var(--color-white-rgb), 0.15);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--color-white);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: rgba(var(--color-white-rgb), 0.6);
  margin: 0 0 15px 0;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: var(--color-yellow);
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(var(--color-white-rgb), 0.6);
  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: 0 auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(var(--color-white-rgb), 0.4);
  opacity: 0.5;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-white);
  opacity: 1;
}

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing-right {
  border-radius: 10px;
  background: #fff;
  padding: 30px 20px;
  box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.25);
}
.pricing-right ul li {
  display: flex;
  align-items: center;
  /* justify-content: center; */
}
.pricing-bottom {
  background: var(--color-primary);
  text-align: center;
  color: var(--white);
}
.pricing-right ul {
  list-style: none;
  padding-left: 0px;
}
.pricing-right ul li {
  margin-bottom: 20px;
}
.pricing-right ul li img {
  margin-right: 12px;
}
.pricing h2 span {
  font-size: 42px;
  line-height: normal;
}
.pricing h3 {
  text-align: left;
  color: var(--color-primary);
  line-height: 1.5em;
  font-size: 36px;
}
.deployment h2 {
  color: var(--color-primary);
  line-height: 1.5em;
  font-size: 34px;
}
.pricing-left h2 {
  color: #292929;
  text-align: left;
}
.pricing-left h3 {
  color: #000;
  text-align: left;
}
.pricing-left h3 span {
  font-size: 42px;
  color: var(--color-primary);
}
.pricing .arrow-div {
  top: 10%;
  width: 120px;
  left: 40%;
}
.border-shadow-btn {
  border: 2px solid #fff;
  background: #3e96f4;
  box-shadow: 0px 5px 15px 0px rgba(69, 0, 4, 0.2);
  padding: 10px 20px;
  color: var(--white);
}

.elevate {
  background: #242424;
  position: relative;
  z-index: 1;
}
.elevate hr {
  border: 1px solid #fff !important;
}
.elevate h2 {
  color: #fff;
  position: relative;
  text-align: left;
}
.elevate-title {
  font-size: 18px;
  padding: 0px 0px 0px 0px !important;
  /* font-weight: 500; */
  letter-spacing: 1px;
}
.elevate-info p {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
}
.elevate-title {
  background: transparent !important;
  padding-top: 0px !important;
}
/*.elevate-right {
    min-height: 550px;
    height: 550px;
    overflow-y: auto;
}*/
/*.elevate-left {
    background-size: auto;
    background-image: url(../images/Elevate.svg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: top 100px left 30%;
    width: 100%;
    height: 100%;
    margin: auto;
}*/

.elevate h2::after {
  background: url(../images/arrow-white.svg);
  position: absolute;
  content: "";
  width: 150px;
  height: 90px;
  top: 75px;
}
.elevate-right div {
  padding: 25px;
}
.elevate-right div:nth-child(even) {
  background: var(--color-black);
  color: var(--color-white);
}
.elevate-right div:nth-child(odd) {
  background: var(--color-white);
}

.Elevate2 {
  background: #0f4681;
  color: var(--white);
  z-index: 2;
  position: relative;
}
.Elevate2 .col {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.step-middle {
  min-height: 420px;
  line-height: 420px;
}
.Elevate2 p.last {
  letter-spacing: 2px;
}
section.Elevate2 .border-btn {
  border: 2px solid #fff;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 1px;
}
.Elevate2 h2 {
  color: var(--white);
}
.why-left h2 span {
  color: var(--color-primary);
  font-size: 92px;
  letter-spacing: 2px;
}
.why-left h2 {
  font-size: 42px;
  color: #000;
  letter-spacing: 1px;
}
.why-right p {
  text-align: justify;
  letter-spacing: 1px;
  font-size: 16px;
}
.why .border-btn {
  border: 2px solid var(--color-primary);
}
.text-white {
  color: var(--color-white);
}
.text-black {
  color: var(--color-black);
}
.hotelinfo-icon {
  width: 92px;
  text-align: center;
  height: 92px;
  line-height: 85px;
  flex-shrink: 0;
  background: var(--color-primary);
  border-radius: 50%;
}
.hotelinfo-details {
  color: var(--white);
}
section.hotelinfo {
  background: #0f4681;
}
section.readyinfo {
  background: var(--color-black);
}

/*--------------------------------------------------------------
# F.A.Q Section
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .faq {
    padding: 0;
    margin-top: 30px !important;
  }
}

.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
  color: var(--color-secondary);
}

.faq .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.faq .content p {
  font-size: 15px;
  color: var(--color-gray);
}

.faq .img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  min-height: 400px;
}

.faq .accordion-item {
  border: 0;
  margin-top: 15px;
  box-shadow: 0px 5px 25px 0px rgba(var(--color-black-rgb), 0.06);
}

.faq .accordion-collapse {
  border: 0;
}

.faq .accordion-button {
  padding: 15px 25px 15px 25px;
  border: 0;
  font-size: 18px;
  color: var(--color-white);
  text-align: left;
  background: #494949;
  box-shadow: none;
  border-radius: 5px;
}
.faq .accordion-button img {
  margin-right: 20px;
}
.faq .accordion-button:not(.collapsed) {
  color: var(--color-white);
  border-bottom: 0;
  box-shadow: none;
  background: var(--color-black);
}

.faq .question-icon {
  position: absolute;
  top: 14px;
  left: 25px;
  font-size: 20px;
  color: var(--color-primary);
}

.faq .accordion-button:after {
  /* position: absolute; */
  right: 15px;
  content: "\f282";
  text-align: center;
  justify-content: center;
  font-family: "bootstrap-icons";
  top: 15px;
  color: #000;
  font-weight: 600;
  width: 30px;
  height: 30px;
  line-height: 30px;
  background: #fff;
  border-radius: 50px;
  border-radius: 50px;
  border: 1px solid #f2f2f2;
  background: #fff;
}

.faq .accordion-body {
  padding: 30px 30px 30px 60px;
  border: 0;
  font-weight: 300;
  border-radius: 5px;
  background: var(--color-white);
  box-shadow: none;
}
.faq .accordion-body a {
  color: #181919;
  font-weight: 500;
}
.faq .section-header h2 {
  position: relative;
}
.faq .section-header h2::after {
  background: url("../images/blue-arrow.svg");
  position: absolute;
  content: "";
  width: 150px;
  height: 90px;
  top: 25px;
}
.faq-top p {
  color: #fff;
  font-family: var(--font-secondary);
  font-size: 28px;
  margin-bottom: 0px;
}
.faq-top .bg-btn {
  background: var(--color-primary);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font-secondary);
  padding: 5px 30px;
  font-size: 20px;
  letter-spacing: 1px;
  margin-right: 30px;
}
.faq-hero h2 {
  font-size: 52px;
}
/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-flters {
  padding: 0;
  margin: 0 auto 30px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 300;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio .portfolio-flters li:hover,
.portfolio .portfolio-flters li.filter-active {
  color: 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;
    margin: 0 5px;
  }
}

.portfolio .portfolio-item {
  position: relative;
  border: 1px solid var(--color-white);
  overflow: hidden;
  z-index: 1;
}

.portfolio .portfolio-item img {
  transition: all 0.3s;
}

.portfolio .portfolio-item:before {
  content: "";
  inset: 0;
  position: absolute;
  background: rgba(var(--color-secondary-rgb), 0.8);
  z-index: 2;
  transition: 0.5s;
  visibility: hidden;
  opacity: 0;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: auto 40px 40px 40px;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  padding: 20px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: rgba(var(--color-white-rgb), 0.7);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--color-white);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover:before {
  visibility: visible;
  opacity: 1;
}

.portfolio .portfolio-item:hover img {
  transform: scale(1.2);
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  inset: auto 10px 0 10px;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member .member-img {
  border-radius: 8px;
  overflow: hidden;
}

.team .team-member .social {
  position: absolute;
  left: 0;
  top: -18px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team .team-member .social a {
  transition: color 0.3s;
  color: var(--color-white);
  background: var(--color-primary);
  margin: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: 0.3s;
}

.team .team-member .social a i {
  line-height: 0;
  font-size: 16px;
}

.team .team-member .social a:hover {
  background: var(--color-primary-light);
}

.team .team-member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team .team-member .member-info {
  padding: 30px 15px;
  text-align: center;
  box-shadow: 0px 2px 15px rgba(var(--color-black-rgb), 0.1);
  background: var(--color-white);
  margin: -50px 20px 0 20px;
  position: relative;
  border-radius: 8px;
}

.team .team-member .member-info h4 {
  font-weight: 400;
  margin-bottom: 5px;
  font-size: 24px;
  color: var(--color-secondary);
}

.team .team-member .member-info span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-gray);
}

.team .team-member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: var(--color-gray);
}

.team .team-member:hover .social {
  opacity: 1;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .map {
  margin-bottom: 40px;
}

.contact .map iframe {
  border: 0;
  width: 100%;
  height: 400px;
}

.contact .info {
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(var(--color-black-rgb), 0.1);
  overflow: hidden;
}

.contact .info h3 {
  font-weight: 600;
  font-size: 24px;
}

.contact .info p {
  color: var(--color-secondary-light);
  margin-bottom: 30px;
  font-size: 15px;
}

.contact .info-item + .info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(var(--color-secondary-rgb), 0.15);
}

.contact .info-item i {
  font-size: 24px;
  color: var(--color-primary);
  transition: all 0.3s ease-in-out;
  margin-right: 20px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-secondary);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: var(--color-secondary-light);
}

.contact .php-email-form {
  width: 100%;
  background: var(--color-white);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: var(--color-white);
  background: var(--color-red);
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: var(--color-white);
  background: var(--color-green);
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: var(--color-white);
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--color-green);
  border-top-color: var(--color-white);
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-secondary-light);
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"] {
  height: 48px;
  padding: 10px 15px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
  height: 290px;
}

.contact .php-email-form button[type="submit"] {
  background: var(--color-primary);
  border: 0;
  padding: 13px 50px;
  color: var(--color-white);
  transition: 0.4s;
  border-radius: 0;
}

.contact .php-email-form button[type="submit"]:hover {
  background: rgba(var(--color-primary-rgb), 0.85);
}

.contact-info ul {
  list-style: none;
}
.contact-info i {
  font-size: 24px;
  color: var(--color-primary);
  margin-right: 20px;
}

.contact-form-input {
  position: relative;
}

#contactUsFrom .form-group {
  margin-bottom: 0;
}

.contact-form-input .form-control {
  border: 0;
  border-bottom: 1px solid var(--color-white);
  border-radius: 0;
  box-shadow: none;
  padding-left: 0px !important;
  /* padding: 13px 12px 0 12px; */
  background: transparent;
  color: #fff !important;
  font-weight: 300;
}

.contact-form-input .form-control:focus::-webkit-input-placeholder {
  color: transparent;
}
.contact-form-input .form-control:focus:-moz-placeholder {
  color: transparent;
}
.contact-form-input .form-control:focus::-moz-placeholder {
  color: transparent;
}
.contact-form-input .form-control:focus:-ms-input-placeholder {
  color: transparent;
}

#subscribeFrom
  .contact-form-input
  .form-control:focus::-webkit-input-placeholder {
  color: transparent;
}
#subscribeFrom .contact-form-input .form-control:focus:-moz-placeholder {
  color: transparent;
}
#subscribeFrom .contact-form-input .form-control:focus::-moz-placeholder {
  color: transparent;
}
#subscribeFrom .contact-form-input .form-control:focus:-ms-input-placeholder {
  color: transparent;
}

.contact-form-input .form-control:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #ffffff;
}
#subscribeFrom .form-control:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #000;
}
.contactuslablebx {
  font-size: 12px;
  text-align: left;
  width: 100%;
  float: left;
  color: red;
}
.contact-form-input .form-control + label {
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s;
  position: absolute;
  font-weight: 400;
  color: #fff;
  top: 0;
  font-size: 15px;
  display: block !important;
}
.contact-form-input .form-control::placeholder {
  color: #fff;
}
.contact-form-input .form-control::placeholder .asterisk {
  color: red !important;
}
.contact-form-input .form-control:placeholder-shown + label {
  opacity: 0;
}
.contact-form-input .form-control:focus ~ label,
.contact-form-input .form-control:not(:placeholder-shown) + label,
.contact-form-input .form-control:not(:placeholder-shown) + label {
  visibility: visible;
  opacity: 1;
  top: -20px;
  color: #fff;
  font-size: 14px;
}
.asterisk {
  color: red;
}
#contactUsFrom .form-group {
  min-height: 85px;
}
.char-limit {
  color: var(--white);
  font-size: 12px;
  font-weight: 100;
}

.contact-form-input .form-control:focus {
  outline: none;
  box-shadow: none;
  border: 0 !important;
  border-bottom: 1px solid #fff !important;
  background: transparent !important;
}
section.contact-us {
  overflow: initial;
}
.contact-hero .arrow-div {
  top: 75%;
  width: 120px;
}
.contact-form {
  background: var(--color-primary);
  margin-top: -42%;
  z-index: 2;
  color: var(--white);
}
.contactus-sec h2 {
  font-size: 38px;
  color: var(--color-primary);
}
.contactus-sec h3 {
  text-align: left;
  font-size: 38px;
  color: var(--color-primary);
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
.readyinfo a.border-btn {
  text-align: center;
  border: 1px solid #fff;
  color: #fff;
  letter-spacing: 1px;
  font-size: 14px;
  padding: 20px;
}
/** Subscribe **/
.subscribe-hero h2 span {
  font-size: 32px;
  letter-spacing: 0px;
  display: block;
}
.subscribe-hero .arrow-div {
  width: 120px;
  top: 20%;
}
#subscribeFrom .form-control {
  border-bottom: 1px solid #6a6f73;
  color: #000 !important;
}
#subscribeFrom .contact-form-input .form-control + label {
  color: #000;
}
#subscribeFrom .contact-form-input .form-control::placeholder {
  color: #575757;
}
#subscribeFrom .form-control:focus {
  border-bottom: 1px solid #6a6f73 !important;
}
#subscribeFrom .contact-form-input .form-control:placeholder-shown + label {
  opacity: 1;
}
#subscribeFrom
  .contact-form-input
  .form-control:focus
  ~ label
  #subscribeFrom
  .contact-form-input
  .form-control:not(:placeholder-shown)
  + label,
#subscribeFrom
  .contact-form-input
  .form-control:not(:placeholder-shown)
  + label {
  visibility: visible;
  opacity: 1;
  top: -20px;
  color: #000;
  font-size: 14px;
}
.term-textare-box {
  border: 1px solid #5a5a5a;
  color: #444444;
  padding: 20px;
  overflow-y: scroll;
  height: 300px;
  font-size: 15px;
}
.term-textare-box p {
  letter-spacing: normal;
  margin-bottom: 20px;
}
.subscribe-hero {
  padding-bottom: 0px !important;
}

.chkbx .form-group {
  display: block;
  margin-bottom: 15px;
}

.chkbx .form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.chkbx .form-group label {
  position: relative;
  cursor: pointer;
}

.chkbx .form-group label:before {
  content: "";
  -webkit-appearance: none;
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
    inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 12px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 5px;
  margin-right: 15px;
  border: 1px solid #ccc;
}

.chkbx .form-group input:checked + label:before {
  background-color: #000;
}
.chkbx .form-group input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 9px;
  width: 6px;
  height: 14px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
/** Subscribe **/

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.footer {
  color: var(--color-white);
  font-size: 14px;
}

.footer .footer-content {
  background: var(--color-black);
  padding: 30px 0 0px 0;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}
.footer-info img {
  width: 230px;
  height: auto;
}
.footer .footer-content .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.footer .footer-content .footer-info h3 span {
  color: var(--color-primary);
}

.footer .footer-content .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: var(--color-white);
}
.footer .footer-content .footer-info p i {
  font-size: 18px;
}
.footer .footer-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}
.footer-info i.bi.bi-heart-fill {
  color: red;
}
a.btn-bg {
  color: #fff;
  background: #3e96f4;
  padding: 12px 30px;
}
.footer .footer-content h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-primary);
  bottom: 0;
  left: 0;
}

.footer .footer-content .footer-links {
  margin-bottom: 30px;
}

.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-content .footer-links ul i {
  padding-right: 2px;
  color: var(--color-white);
  font-size: 12px;
  line-height: 1;
}

.footer .footer-content .footer-links ul li {
  padding: 10px 0;
  align-items: center;
}

.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-content .footer-links ul a {
  color: rgba(var(--color-white-rgb), 0.7);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
  color: var(--color-white);
}

.footer .footer-content .footer-newsletter form {
  margin-top: 30px;
  background: var(--color-white);
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

.footer .footer-content .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

.footer
  .footer-content
  .footer-newsletter
  form
  input[type="email"]:focus-visible {
  outline: none;
}

.footer .footer-content .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--color-primary);
  color: var(--color-white);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-content .footer-newsletter form input[type="submit"]:hover {
  background: rgba(var(--color-primary-rgb), 0.85);
}

.footer .footer-legal {
  padding: 10px 0;
  background: var(--bs-body-bg);
}

.footer .footer-legal .credits {
  padding-top: 4px;
  font-size: 13px;
  color: var(--color-black);
}

.footer .footer-legal .credits a {
  color: var(--color-primary);
}

.footer .footer-legal .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(var(--color-white-rgb), 0.1);
  color: var(--color-white);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .footer-legal .social-links a:hover {
  background: var(--color-primary);
  text-decoration: none;
}

.btn-footer a {
  padding: 12px 20px !important;
  display: inline-block;
  text-align: center;
  min-width: 100px;
  margin: auto;
  text-align: center;
}

.social {
  width: 100%;
  height: auto;
}
.social a {
  display: inline-block;
}
.social a:hover {
  text-align: center;
}
.social a i {
  color: #ffffff;
  width: 45px;
  height: 45px;
  font-size: 24px;
  line-height: 40px !important;
  border: 3px solid #000;
  /* opacity: .8;*/
  transition-property: transform;
  -moz-transition-property: -moz-transform;
  -webkit-transition-property: -webkit-transform;
  transition: all 0.6s cubic-bezier(0.88, -0.48, 0.38, 1.85);
  border-radius: 50%;
}
.social a i:hover {
  opacity: 1;
  border-radius: 20%;
}
.social a .bi {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.social a:hover i.bi-linkedin,
.social a:hover i.bi-twitter-x {
  transition: 0.6s ease-in;
  background: #0088cc;
  color: white;
  border: 3px solid #00aaff;
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
}
.social a:hover i.bi-facebook {
  transition: 0.6s ease-in;
  background: #3b5999;
  color: white;
  border: 3px solid #7092da;
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
}
.social a:hover i.bi-instagram {
  transition: 0.6s ease-in;
  background: linear-gradient(
    #f58529 20%,
    #feda77 50%,
    #dd2a7b 75%,
    #8134af 90%,
    #515bd4
  );
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  border: 3px solid #fd8e8e;
  color: white;
}
/** features **/
.shadow-bg-btn {
  text-transform: uppercase;
  padding: 12px 20px;
  display: inline-block;
  color: #fff;
  border: 1px solid #287ad1;
  background: #3e96f4;
  box-shadow: 0px 5px 15px 0px rgba(69, 0, 4, 0.2);
}
.shadow-bg-btn:hover {
  color: #ffffff;
}
.feature-title span {
  font-size: 72px;
  color: var(--color-primary);
}
.Feature3 h2 span {
  font-size: 58px;
}
.feature-hero {
  padding-bottom: 0px;
}
/** features **/
.feature-hero-container::before {
  content: "";
  position: absolute;
  right: 0;
  background: url(/assets/images/feature.png);
  background-repeat: no-repeat;
  width: 53%;
  height: 100%;
  background-position: right;
  background-size: contain;
}

.feature-hero h1 span {
  font-size: 38px;
  letter-spacing: 0px;
}
.Feature1 {
  border-radius: 0px 0px 100px 100px;
  background: #3e96f4;
}
.Feature1 h2,
.Feature1 p {
  color: #fff;
  text-align: center;
}
.feature-enhance {
  border-radius: 50px;
  background: #f5f5f5;
  padding: 50px;
}
.feature-enhance .pricing-right {
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.25);
}
.feature-hero h2 {
  font-size: 52px;
  letter-spacing: 3px;
}
/** term Page css **/

.tc_wrap {
  max-width: 100%;
  height: 825px;
  /* background: var(--white); */
  display: flex;
  /* border-radius: 3px; */
  padding: 2px;
  overflow: hidden;
  background: #d5d5d5;
}

.tc_wrap .tabs_list {
  width: 350px;
  background: #f1f1f1;
  height: 100%;
}

.tc_wrap .tabs_content {
  width: calc(100% - 200px);
  padding: 10px 0px 20px 20px;
  height: 100%;
  background: #ffffff;
}

.tc_wrap .tabs_content .tab_head,
.tc_wrap .tabs_content .tab_foot {
  color: var(--white);
  padding: 25px 0;
  height: 70px;
}

.tc_wrap .tabs_content .tab_head {
  text-align: center;
}

.tc_wrap .tabs_content .tab_body {
  height: calc(100% - 20px);
  overflow: auto;
}

.tc_wrap .tabs_list ol {
  padding: 20px 20px;
  text-align: left;
  margin-left: 20px;
}

.tc_wrap .tabs_list ol li {
  padding: 10px 0;
  position: relative;
  margin-bottom: 3px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--grey);
  transition: all 0.5s ease;
}
ul.upperroman li,
ul.lower-alpha li {
  color: var(--black);
  margin-bottom: 15px;
}
.tc_wrap .tabs_list ol li:before {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 2px;
  height: 100%;
  background: var(--color-primary);
  opacity: 0;
  transition: all 0.5s ease;
}

.tc_wrap .tabs_list ol li.active,
.tc_wrap .tabs_list ol li:hover {
  color: var(--color-primary);
}

.tc_wrap .tabs_list ol li.active:before {
  opacity: 1;
}

.tc_wrap .tabs_content .tab_body .tab_item h3,
.tc_wrap .tabs_content .tab_body .tab_item h4 {
  padding-top: 10px;
  margin-bottom: 10px;
  color: var(--color-primary);
  font-size: 22px;
}

.tc_wrap .tabs_content .tab_body .tab_item p {
  margin-bottom: 20px;
  color: var(--black);
}
.tc_wrap .tabs_content .tab_body .tab_item p a {
  color: var(--color-primary);
}
.tc_wrap .tabs_content .tab_body .tab_item.active {
  display: block !important;
}
@media (max-width: 767px) {
  .tc_wrap .tabs_list {
    width: 100%;
    height: auto;
  }
  .tc_wrap .tabs_content {
    width: 100%;
    height: auto;
  }
  .link-a {
    word-wrap: break-word;
  }
}

/** term page css end **/

/** term page css end **/
/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/** Cookie Policy CSS **/
table.cookiet {
  border: 1px solid #ccc;
}
table.cookiet th {
  background: #d9d9d9;
}
.cookiet td,
.cookiet th {
  padding: 10px;
}
.cookietable {
  display: none;
}
@media only screen and (max-width: 760px),
  (min-width: 768px) and (max-width: 1024px) {
  /* Force table to not be like tables anymore */
  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
  }

  /* Hide table headers (but not display: none;, for accessibility) */
  thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  tr {
    /*margin: 0 0 1rem 0;*/
  }

  tr:nth-child(odd) {
    background: #ccc;
  }

  td {
    /* Behave  like a "row" */
    border: none;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 50% !important;
    font-size: 14px;
    word-break: break-word;
  }

  td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
  }

  /*
        Label the data
    You could also use a data-* attribute and content for this. That way "bloats" the HTML, this way means you need to keep HTML and CSS in sync. Lea Verou has a clever way to handle with text-shadow.
        */
  td:nth-of-type(1):before {
    content: "Provider";
  }

  td:nth-of-type(2):before {
    content: "Name";
  }

  td:nth-of-type(3):before {
    content: "Purpose";
  }
}
@media screen and (max-width: 768px) {
  .cookietable {
    display: block !important;
  }
}
/** Cookie Policy CSS **/

.sitemap-div ul li {
  list-style: none;
  position: relative;
  margin-bottom: 20px !important;
}

/** feature-slider **/
.card {
  border: none;
  padding: 15px 20px;
}
.card:hover {
  border-radius: 50px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  box-shadow: 0px 14px 20px -8px rgba(0, 0, 0, 0.25);
  border: none;
}
.carousel-inner {
  padding: 1em;
}
.carousel-control-prev,
.carousel-control-next {
  background-color: var(--color-primary);
  width: 6vh;
  height: 6vh;
  opacity: 1;
  border-radius: 50%;
  top: 100%;
  transform: translateY(-60%);
}
.carousel-control-prev span,
.carousel-control-next span {
  width: 1.5rem;
  height: 1.5rem;
}
.image-wrapper img {
  border-radius: 30px;
  padding: 15px;
  background: #e5f1fe;
}
.carousel-control-prev {
  left: auto !important;
  margin-right: 10px;
}

.carousel-control-prev,
.carousel-control-next {
  background: no-repeat;
}
.carousel-control-next-icon,
.carousel-control-prev-icon {
  background-image: none;
}
.cont-dot {
  content: "";
  margin: 0px 15px;
  background: #000;
  width: 10px;
  height: 10px;
  border-radius: 50px;
}
button.carousel-control-prev,
button.carousel-control-next {
  position: relative;
}
.carousel-control-prev img,
.carousel-control-next img {
  width: 40px;
}
#carouselExampleControls .card-title {
  color: var(--color-primary);
  padding: 10px 0px;
  font-size: 1.25rem;
}
#carouselExampleControls .carousel-indicators {
  position: relative;
  margin: 0px 20px;
}
#carouselExampleControls .carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  content: "";
  margin: 0px 15px;
  background: #000;
  width: 12px !important;
  height: 12px !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 0;
  text-indent: -999px;
  cursor: pointer;
  background-color: #000;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
#carouselExampleControls .carousel-indicators .active {
  opacity: 1 !important;
}
@media screen and (min-width: 577px) {
  .cards-wrapper {
    display: flex;
  }
  .card {
    margin: 0 0.5em;
    width: calc(100% / 2);
  }
  .image-wrapper {
    margin-right: auto;
  }
}
@media screen and (max-width: 576px) {
  .card:not(:first-child) {
    display: none;
  }
}
.card-body {
  padding: 20px 0px;
}
.image-wrapper img {
  width: 100px;
}
/** feature-slider **/

/** Deployment **/
.deployment1-right h2 span,
.deployment1-right h3 span {
  font-size: 52px;
}
.deploy-tab-banner-title {
  z-index: 2;
  bottom: 0;
  background: linear-gradient(90deg, #fff 11.66%, rgba(217, 217, 217, 0) 100%);
}
.deploy-tab-banner-title h4 {
  font-size: 28px;
}
.deploy-tab-banner-title h4 span {
  font-size: 52px;
}
/** Deployment **/
.pricing-bottom h3 {
  font-size: 40px;
  letter-spacing: 2px;
}
span.tab-item-span {
  text-transform: initial;
}

.sitemap-div ul li::before {
  content: "";
  background: url(../images/blue-star.svg) no-repeat;
  width: 30px;
  height: 100%;
  position: absolute;
  left: 0;
  background-size: contain;
}
.sitemap-div ul li a {
  margin-left: 30px;
}
.cookies a {
  color: var(--color-primary);
}
.cookies h2 {
  font-size: 24px;
}
.how-works {
  background: linear-gradient(180deg, rgba(239, 247, 255, 0) 0%, #f1f8ff 100%);
}
.why-tab .tabs {
  width: 80%;
  justify-content: center;
  height: 100px;
  margin: auto;
  margin-top: 50px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.why-tab .tabs li {
  background-color: #fff;
  width: 25%;
  height: 85%;
  display: flex;
  border: 2px solid #a9a8a8;
  font-family: "Anton-Regular";
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 22px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  cursor: pointer;
}
.why-tab {
  position: relative;
}
.why-tab .tabs li {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.why-tab .tabs li + li {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-left: none;
  border-right: none;
}
.why-tab .tabs li + li + li {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-right: 2px solid #a9a8a8;
  border-left: 2px solid #a9a8a8;
}
.work-list-div {
  display: flex;
  align-items: center;
}
span.work-num {
  color: #272727;
  font-size: 34px;
  font-weight: 500;
  position: relative;
  z-index: 1;
  margin-right: 20px;
}
.work-list-div p {
  color: #000 !important;
  opacity: 1 !important;
  margin: 0px;
}
.why-tab .tabs li.active::after {
  content: "";
  background: #000;
  width: 12px;
  height: 12px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
  right: -5px;
  position: absolute;
}
.how-works .section-header p {
  letter-spacing: normal;
  color: #272727;
  font-weight: 400;
  line-height: 28px;
}
.why-tab .tabs li + li::before {
  content: "";
  background: #fff;
  width: 12px;
  height: 12px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
  left: -8px;
  position: absolute;
}
.why-tab .tabs li + li + li::after {
  display: none;
}
.why-tab .tabs li:hover {
  background: #000;
  color: #ffff;
  position: relative;
  z-index: 1;
}

.why-tab .active {
  background: #000 !important;
  color: #fff !important;
  position: relative;
  z-index: 1;
}

.why-tab .contents {
  width: 95%;
  margin: auto;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
.why-tab .contents h2 {
  color: var(--color-primary);
  margin-bottom: 30px;
  font-size: 30px;
}
.why-tab .box {
  gap: 30px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  padding: 20px;
  width: 100%;
  animation: moving 1s ease;
  -webkit-animation: moving 1s ease;
}

.why-tab .box img {
  width: 50%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.why-tab .box h3 {
  color: #c4cfde;
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  margin-bottom: 20px;
}

.why-tab .box p {
  color: #c4cfde;
  opacity: 0.5;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
}

.why-tab .show {
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-tab .hide {
  display: none;
}

@keyframes moving {
  from {
    transform: translateX(-50px);
    -webkit-transform: translateX(-50px);
    -moz-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    -o-transform: translateX(-50px);
    opacity: 0;
  }

  to {
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    opacity: 1;
  }
}

.elevate-left {
  position: relative;
}

.fixed-image {
  position: fixed;
  top: 28%;
  z-index: 1;
}
section#mySection {
  padding: 0px;
}

.deployment2-fixed .deploy-nav {
  position: fixed;
  top: 16%;
  bottom: auto;
  z-index: 10;
  width: 430px;
  overflow: auto;
  height: 550px;
  min-height: 550px;
}
.deployment2 ul {
  list-style: none;
  padding: 0;
}
.deployment2 li {
  padding: 10px 0;
}
.deployment2 span {
  display: inline-block;
  position: relative;
}
.deployment2 nav a {
  display: inline-block;
  color: #272727;
  text-decoration: none;
  font-size: 20px;
  background: #000;
  padding: 20px 30px !important;
  font-family: "Anton-Regular";
}
.deployment2 .circle {
  height: 10px;
  width: 10px;
  display: none;
  left: -10px;
  border-radius: 50%;
  background-color: #272727;
}
.deployment2 .rect {
  height: 3px;
  width: 0px;
  left: 0;
  bottom: 0px;
  background-color: #272727;
  -webkit-transition: -webkit-transform 0.6s, width 1s;
  -moz-transition: -webkit-transform 0.6s, width 1s;
  transition: transform 0.6s, width 1s;
}
.deployment2 nav a:hover,
.deployment2 nav .active-section {
  color: var(--color-primary);
}
.deployment2 nav .active-section span.circle {
  height: 10px;
  width: 10px;
  display: block !important;
  left: -8px;
  top: 0px;
  border-radius: 50%;
  background-color: #3e96f4;
}

.deployment2 nav a:hover span,
.deployment2 nav .active-section span {
  background-color: var(--color-primary);
}
.deployment2 nav .active-section .rect {
  width: 40px;
}
.deploy-tab-banner img {
  width: 100%;
}
.deployment2 .content-section {
  position: relative;
  left: 50%;
  margin-bottom: 30px;
  border-top-right-radius: 0px !important;
  border-top-left-radius: 0px !important;
  padding: 0px !important;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  box-shadow: 0px 14px 20px -8px rgba(0, 0, 0, 0.25);

  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}
section#subscribe {
  padding-bottom: 0px;
}
#subscribeFrom .chkbx span#error_9 {
  margin-left: 40px;
}

section.clients_reviews {
  background: #1e1e1e;
}

.clients-left h2 {
  font-size: 42px;
  color: var(--color-white);
  letter-spacing: 1px;
  line-height: 1.3;
}

.clients-left .border-btn {
  border: 2px solid #fff;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--color-white);
  margin-top: 20px;
}

.clients-left h2 span {
  color: var(--color-white);
  font-size: 92px;
  letter-spacing: 2px;
}

.clients-right {
  display: flex;
  gap: 15px;
}

.partners-title {
  font-family: var(--font-secondary);
}

.testimonial-card {
  color: var(--color-white);
  padding: 20px 20px 0px 20px;
  border-radius: 10px;
  max-width: 400px;
  text-align: left;
  border: 1px solid #fff;
}

.testimonial-title {
  font-size: 22px;
  font-family: var(--font-secondary);
  margin-bottom: 2rem;
  height: 15%;
}

.testimonial-descp {
  font-size: 15px;
  color: #e9e9e9;
}

.author {
  line-height: 1.8;
}

.designation {
  line-height: 1.8;
}

.reviews h2 {
  color: var(--color-primary);
  font-size: 62px;
}

.hotel-logo .owl-stage {
  padding-bottom: 10px;
}

.card_shadow {
  box-shadow: 0px 4px 5px 2px #00000024;
}

.trusted_partners {
  padding: 15px 0;
  padding-bottom: 40px;
}

.rvw_btn {
  color: var(--bs-link-color);
}

.rvw-btn-arrow {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 5px;
}

.rvw-btn-arrow i {
  transition: transform 0.3s ease;
}

.rvw-btn-arrow:hover i {
  transform: translateX(5px);
}

.reviews-section {
  padding-top: 0px;
  padding-bottom: 15px;
}

.review_card {
  border-radius: 15px;
  border: 1px solid #d5d5d5;
  transition: all 0.3s ease;
}

.mt35 {
  margin-top: 35px;
}

.review_card .card-title {
  color: #5a5a5a;
  font-size: 20px;
}

.review_card .card-text {
  color: #4e4e4e;
  line-height: 24px;
}

.icon-flip {
  display: inline-block;
  transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
}

.review_card .name {
  font-weight: 500;
}

.ratings i {
  color: #ffc107;
  display: inline-block;
  transition: all 0.3s;
}

.owl-carousel.hotel-logo .owl-item img {
  margin: auto !important;
}

.review_card .designation {
  font-weight: 500;
}

.hotel-logo .owl-item {
  align-content: center !important;
  height: 169px;
  box-shadow: 0px 4.4px 4.4px 0px #00000040;
  border: 1px solid #e2e2e2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  transition: transform 0.5s ease;
}

.signup_section {
  padding: 32px 0;
  background-color: #003765;
}

.signup-wrap p {
  font-family: var(--font-secondary);
  color: var(--white);
  font-size: 28px;
}

.signup-wrap .border-btn {
  border: 1px solid #fff;
  color: var(--white);
  padding: 12px 85px;
}

@media (min-width: 1200px) {
  .privacy-hero {
    padding-top: 100px !important;
  }

  .review_card:hover {
    box-shadow: 0px 4px 5px 2px #00000024;
    border: 1px solid var(--color-primary);
    transform: scale(1.02);
    transition: all 0.3s ease;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .spacemanage img {
    width: 250px !important;
    height: auto;
  }
  .spacemanage {
    padding-top: 15% !important;
  }
  .deployment2-fixed .deploy-nav {
    width: 370px;
  }
  .contact-form {
    margin-top: -50%;
  }

  .clients-left h2 span {
    font-size: 80px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .term-hero .arrow-div {
    left: 42%;
    top: 33%;
  }
  #subscribe h2 {
    font-size: 38px;
  }
  .subscribe-hero h1 span {
    font-size: 30px;
  }
  .deployment2-fixed .deploy-nav {
    width: 305px;
  }
  .deployment-hero h1 {
    font-size: 50px;
  }
  .pricing-left {
    margin-right: 20px;
  }
  .pricing-hero h1 {
    font-size: 56px;
  }
  .header .logo img {
    width: 170px;
  }
  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    padding: 6px 15px;
  }
  .navbar a,
  .navbar a:focus {
    padding: 14px 2px;
  }
  .Feature1 h2 {
    font-size: 38px;
  }
  .feature-hero {
    padding-top: 100px;
  }
  .feature-hero h1 span {
    font-size: 27px;
  }
  .hotelinfo-details {
    margin-bottom: 20px;
  }
  .faq-hero.hero-animated {
    padding: 90px 0 60px;
  }
  .contact-hero h1 {
    font-size: 44px;
  }
  .contact-hero h2 {
    font-size: 34px;
  }
  .feature-hero h1 {
    font-size: 50px;
  }
  .contact-form {
    margin-top: -52%;
  }

  .clients-left h2 span {
    font-size: 75px;
  }

  .testimonial-card {
    padding: 20px;
  }

  .review_card .card-text {
    line-height: 36px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .faq-hero .hero-left h1 {
    font-size: 34px;
  }
  .deployment-hero h1 {
    font-size: 36px;
    text-align: left !important;
  }
  .deployment-hero h2 {
    text-align: left;
    font-size: 28px;
  }
  .deployment1-right h2 span {
    font-size: 42px;
  }
  .QR-code-hero h1 {
    font-size: 48px;
    text-align: left !important;
  }
  section.readyinfo h2 {
    font-size: 32px;
  }
  .pricing-right {
    margin-top: 30px;
  }
  .pricing-hero h1 {
    font-size: 42px;
  }
  .feature-enhance {
    padding: 20px 20px !important;
  }
  .header .logo img {
    width: 210px;
  }
  .feature-enhance .pricing-right {
    margin-top: 0px !important;
  }
  .pricing-left .shadow-bg-btn {
    padding: 10px 5px !important;
  }
  .feature-hero h1 {
    font-size: 36px;
    text-align: left !important;
  }
  .feature-hero h1 span {
    font-size: 24px !important;
  }
  .feature-hero {
    padding-top: 60px;
  }
  .why-tab .contents h2 {
    font-size: 26px;
  }
  .feature-hero::before {
    display: block !important;
  }
  .feature-hero .border-btn {
    margin-bottom: 20px !important;
  }
  .why-left h2 span {
    font-size: 72px;
  }
  .contact-hero h1 {
    font-size: 32px;
  }
  .about .section-header h2 {
    font-size: 34px;
  }
  .contact-info ul {
    display: flex;
    width: 100%;
    align-items: baseline;
    justify-content: space-between;
    padding-left: 0px;
  }
  .contact-info ul li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .step-middle {
    margin: 10px;
    min-height: 320px;
    line-height: 320px;
  }
  .step-bottom {
    padding: 0px 10px !important;
  }
  .pricing-hero .hero-left h1,
  .pricing-hero .hero-left p {
    text-align: left;
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  .contact-hero h2 {
    font-size: 28px;
  }
  .chkbx .form-group label:before {
    margin-right: 5px !important;
    bottom: 2px !important;
  }
  #subscribeFrom .chkbx label {
    font-size: 14px !important;
  }
  #subscribeFrom .chkbx span#error_9 {
    margin-left: 30px !important;
  }
}

@media (min-width: 320px) and (max-width: 991px) {
  .faq .section-header {
    padding-bottom: 5px;
  }
  .pricing-bottom h3 {
    font-size: 28px;
  }
  section.contact-us {
    padding-top: 30px;
  }
  .hotelinfo-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
  .hotelinfo-icon img {
    width: 28px;
  }
  .temp-img {
    width: 18px !important;
  }
  .hotelinfo-right {
    margin-bottom: 20px;
    margin-left: 25px;
  }
}

@media (min-width: 991px) {
  .feature-hero .hero-right img {
    max-width: 100% !important;
  }
  .feature-hero .arrow-div {
    top: 9%;
    width: 120px;
    left: 49%;
  }
  .faq-hero .arrow-div {
    top: 34%;
    left: 35%;
  }
  .feature-hero .arrow-div img {
    transform: rotate(26deg);
  }
  .deployment .arrow-div {
    top: -10% !important;
    left: 48% !important;
    transform: rotate(20deg);
  }
  .home-hero .hero-right img {
    width: 75%;
  }
}
@media (max-width: 991px) {
  .features .nav-tabs {
    background: #eeeded;
    border-radius: 50px;
  }
  .term-policy-row {
    margin-top: 30px !important;
  }
  .features .nav-tabs li {
    margin-top: 0px;
    padding: 0px;
  }
  h2.term-h2 {
    margin-bottom: 20px !important;
  }
  .faq .section-header h2 {
    margin-bottom: 0px;
  }
  .cookies {
    margin-top: 0px !important;
  }
  .pricing-left .shadow-bg-btn {
    padding: 10px 10px;
  }
  .features .nav-link {
    justify-content: center;
  }
  .features .nav-link.active {
    border-radius: 50px;
  }
  .features .nav-tabs {
    margin: 0px 0px;
  }
  .footer-newsletter {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-evenly;
    border-top: 1px solid #fff;
    padding-top: 20px;
    flex-wrap: wrap;
    align-items: end;
  }
  .btn-footer a {
    width: 100%;
  }
  .Elevate2 p.last {
    margin-top: 10px !important;
  }
  .deployment2-fixed .deploy-nav {
    display: none;
  }
  .deploy-tab-banner-title h4 span {
    font-size: 24px;
  }
  .footer .footer-content {
    padding-bottom: 20px;
  }
  .feature-hero::before {
    display: none;
  }
  .feature-hero .hero-right img {
    max-width: 100% !important;
  }
  .faq .accordion-body {
    padding: 30px 0px;
  }
  .home-hero h1,
  .home-hero h1 span {
    font-size: 52px !important;
  }
  .elevate h2::after {
    top: 85%;
  }
  .hotelinfo-details p {
    font-size: 22px;
  }
  .faq .section-header h2::after {
    display: none;
  }
  .hero-left h1,
  .hero-left p {
    text-align: center;
  }
  .hero-animated h1 span {
    font-size: 32px;
  }
  .hero-animated {
    text-align: center;
    padding: 100px 0 60px;
    background-position: center center;
    background-size: cover;
  }
  .arrow-div {
    display: none;
  }
  .contact-form {
    margin-top: 0px;
    padding: 40px 20px !important;
  }
  .why-tab .tabs {
    width: 100%;
    margin-top: 30px;
    padding-left: 0px;
  }
  .why-tab .tabs li {
    width: 50%;
  }

  .clients-left h2 {
    text-align: center;
  }

  .mobile-btn {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }

  .mobile-btn .border-btn {
    color: var(--color-white);
    border: 1px solid var(--color-white);
  }

  .testimonial-card {
    padding: 20px;
  }

  .clients-left {
    margin-bottom: 15px;
  }

  .review_card .card-text {
    line-height: 38px;
  }
}
.verysmall nav a {
  font-size: 16px;
  padding: 14px 30px;
}
.verysmall li {
  padding: 3px 0px;
}
@media (max-width: 767px) {
  .scroll-top {
    bottom: 100px;
  }
  .section-header h2 {
    font-size: 32px;
  }
  .deployment h2 {
    font-size: 22px;
  }
  .deployment1-right h3 span {
    font-size: 32px;
  }
  .pricing-left h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
  }
  .home-hero h1 span {
    margin-top: 0px;
  }
  .card .image-wrapper {
    text-align: center;
  }
  .pricing-left {
    text-align: center;
    margin: auto;
  }
  .pricing-left h2 {
    text-align: center;
    font-size: 30px;
  }
  .feature-title span {
    font-size: 52px;
  }
  #carouselExampleControls .card-title {
    text-align: center;
    font-size: 28px;
  }
  #carouselExampleControls p.card-text {
    text-align: justify;
  }
  #carouselExampleControls .card {
    border: none;
    padding: 0px 5px;
  }
  .Feature3 h2 span {
    font-size: 40px;
  }
  .feature-title {
    text-align: center;
  }
  .features .nav-link img {
    max-width: 30px !important;
  }
  .features .nav-link {
    padding: 10px 10px;
  }
  .header .logo img {
    width: 200px;
  }
  .why-tab .show {
    flex-direction: column;
  }
  .why-tab .box img {
    width: 100%;
  }
  .cookies a {
    word-break: break-all;
  }
  .footer-info-div {
    border-bottom: 1px solid #fff;
    margin-bottom: 30px;
  }
  .elevate-right br,
  .pricing-left h3 br,
  .pricing-left h2 br {
    display: none;
  }
  .elevate-left {
    text-align: center;
    margin-bottom: 20px;
  }
  /*.fixed-image {
		max-width: 80%;
	}*/
  .tc_wrap {
    display: block;
    height: auto;
  }
  .why-left h2 span {
    font-size: 66px;
  }
  .fixed-image {
    position: relative;
    top: 0px;
  }

  .slider-elevate {
    overflow: hidden;
  }
  .slider-elevate .slides {
    display: flex;
    /*
  scroll-snap-points-x: repeat(300px);
  scroll-snap-type: mandatory;
  */
  }
  .slider-elevate .slides > div {
    width: 100%;
  }

  .slider-elevate .slider > a {
    display: inline-flex;
    width: 1.5rem;
    height: 1.5rem;
    background: white;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 0 0.5rem 0;
    position: relative;
  }
  .slider-elevate .slider > a:active {
    top: 1px;
  }
  .slider-elevate .slider > a:focus {
    background: #000;
  }
  .slide-indi-div a {
    background: #fff;
    font-size: 18px;
    color: #000;
    margin: 0px 2px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 10px 15px;
  }
  .slide-indi-div {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .clients-right {
    flex-direction: column;
  }

  .clients-left h2 {
    font-size: 30px;
  }

  .signup-wrap p {
    font-size: 25px;
  }

  .review_card .card-text {
    line-height: 30px;
  }
}
.right-panel-wrap {
  background: #3e96f4;
}
.right-panel {
  background: #ffffff;
  margin: 10px 0;
}
.right-panel h2 {
  color: #000000;
  font-size: 26px;
}
.right-panel h3 {
  color: #000000;
  font-size: 1rem;
  letter-spacing: 1px;
}
.right-panel li {
  color: #000000;
  font-size: 0.9rem;
}
h3.price {
  font-size: 26px;
  color: #000000;
}
.blue-text {
  color: var(--color-primary);
}
.custom-h3 {
  margin: 0 auto;
  color: var(--color-black);
  font-weight: 300;
  line-height: normal;
  letter-spacing: 1.35px;
  text-align: justify;
  font-size: 1.2rem;
}

.spacemanage {
  padding-left: 6%;
  padding-top: 9%;
}
.spacemanage img {
  width: 306px;
  height: auto;
}
