:root {
  --primary-color: #00c2ff;
  --secondary-color: #f37022;
  --background-color: #fff;
  --bg-nav-color: #fff;
  --text-color: #000;
  --bg-footer: #a8b8d0;
}

@font-face {
  font-family: 'BlackOpsOne';
  src: url('../font/BlackOpsOne-Regular.ttf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('../font/Roboto-Regular.ttf');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('../font/Roboto-Bold.ttf');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('../font/Roboto-Light.ttf');
  font-weight: 300;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  box-sizing: border-box;
  overflow-x: hidden;
  font-family: 'Roboto', sans-serif;
  background: var(--background-color);
  color: var(--text-color);
  font-weight: normal;
  transition: all .3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Background & Color */
.text-primary-color {
  color: var(--primary-color) !important;
}

.text-secondary-color {
  color: var(--secondary-color) !important;
}

.bg-primary-color {
  background: var(--primary-color) !important;
  color: #fff;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.bg-secondary-color {
  background: var(--secondary-color) !important;
  color: #fff;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

/* Primary Color Hover Effect */
.bg-primary-hover:hover {
  background: rgba(0, 255, 255, 0.5) !important;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 255, 255, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color:rgba(0, 0, 0, 1);
}

/* Secondary Color Hover Effect */
.bg-secondary-hover:hover {
  background: rgba(255, 187, 0, 0.5) !important;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(255, 187, 0, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color:rgba(0, 0, 0, 1);
}

.bg-secondary-hover:hover svg {
  fill:#000000!important;
}

.bg-primary-hover:hover svg {
  fill:#000000!important;
}

/* /Background & Color */
.type-writer {
  white-space: nowrap;
  overflow: hidden;
  animation: typewriter 2s steps(13) infinite alternate,
    blink 800ms steps(13) infinite normal;
  border-right: 5px solid var(--secondary-color);
}

.truncate-2-lines {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.text-squire {
  position: relative;
  display: inline-block;
}

.text-squire::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  transform: translate(-50%, -50%) rotate(45deg);
  box-sizing: border-box;
  pointer-events: none;
}

.text-sqire-left:before {
  border-left: 10px solid var(--secondary-color);
  border-bottom: 10px solid var(--secondary-color);
}

.text-sqire-right:before {
  border-right: 10px solid var(--secondary-color);
  border-top: 10px solid var(--secondary-color);
}

.text-squire span {
  position: relative;
  z-index: 1;
}

.require::before {
  display: inline-block;
  margin-right: 4px;
  color: #f5222d;
  font-size: 16px;
  font-family: SimSun, sans-serif;
  line-height: 1;
  content: "*";
}

section {
  margin-top: -1px;
}

.box-shadow {
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.7);
}

/* Header */
header {
  position: relative;
}

.fixed-top {
  top: -30px;
  animation: slide-down 0.3s forwards;
}

.bg-nav-color {
  background: var(--bg-nav-color);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.7);
  transition: all .3s ease-out !important;
}

.p-fixed {
  position: fixed !important;
  transition: all .3s;
}

.image-fixed {
  position: fixed !important;
  top: 5px;
  left: 5px;
  height: 50px !important;
  width: auto !important;
  z-index: 2000;
  filter: drop-shadow(0px 1px 0px rgba(0, 0, 0, 0.5)) drop-shadow(0px 1px 0px rgba(0, 0, 0, 0.5));
}

.nav-img {
  height: 80px;
  max-width: 100%;
}

.heading {
  font-family: "BlackOpsOne" !important;
}

span.sheza {
  color: var(--primary-color);
}

span.soft {
  color: var(--secondary-color);
}

/* Nav */
header .navbar-nav .nav-link {
  color: #b3cde0;
}

header .navbar-nav .nav-link.active {
  color: var(--secondary-color);
}

header .nav {
  height: 50px;
  width: 100%;
}

header .nav>.nav-header {
  display: inline;
}

header .nav>.nav-header>.nav-title {
  display: inline-block;
  font-weight: 700;
  padding: 10px 10px 10px 10px;
  font-size: 22px;
  color: #fff;
  font-weight: 550;
}

header .nav>.nav-links {
  font-size: 18px;
  display: inline;
  float: right;
}

header .nav>.nav-links>ul li a {
  color: var(--primary-color);
  line-height: 40px;
  font-size: 18px;
  display: block;
  padding: 0 8px;
  text-decoration: none;
}

header .nav>.nav-links>ul {
  list-style: none;
  position: relative;
  padding: 0;
  margin-top: 5px;
}

header .nav>.nav-links>ul li {
  display: inline-block;
}

header .nav>.nav-links>ul li a.active {
  border-bottom: 2px solid var(--primary-color);
  display: inline-block;
  position: relative;
}

header .nav>.nav-links>ul li a span {
  display: inline-block;
  transition: transform 0.2s ease-in-out;
}

header .nav>.nav-links>ul>li:hover a span {
  transform: scale(1.1);
  color: var(--secondary-color);
}


header .nav>.nav-btn {
  display: none;
  /*Hide toggle button for desktop*/
}

header .nav>#nav-check {
  display: none;
}

@media (max-width: 767px) {
  header .nav>.nav-btn {
    display: inline-block;
    position: absolute;
    right: 0px;
    top: 0px;
  }

  header .nav-area {
    position: absolute;
    top: 0px;
    right: 0;
    width: 100%;
    z-index: 900;
  }

  header .nav>.nav-btn>label {
    margin-top: 15px;
    height: 50px;
    padding: 13px;
    display: inline-block;
    width: 50px;
  }

  header .nav>.nav-btn>label>span {
    height: 10px;
    border-top: 2px solid var(--primary-color);
    display: block;
    width: 25px;
  }

  header .nav>.nav-links {
    position: absolute;
    height: 0px;
    transition: all 0.3s ease-in;
    overflow-y: hidden;
    top: 100%;
    display: block;
    width: 100%;
    background-color: #e7e9eb;
    left: 0px;
  }

  header .nav>.nav-links>ul li a {
    display: block;
    width: 100%;
  }

  header .nav>.nav-links>ul li {
    padding: 0;
    background-color: #e7e9eb;
    display: block;
    margin-bottom: 20px;
  }

  header .nav>.nav-links>ul li a {
    margin-left: 40%;
  }

  header .nav .nav-links ul a.icon {
    margin-left: 33%;
  }

  header .nav>#nav-check:not(:checked)~.nav-links {
    height: 0px;
  }

  header .nav>#nav-check:checked~.nav-links {
    height: calc(100vh - 65px);
    overflow-y: auto;
  }

  header .nav>.nav-links>ul li:hover,
  header .nav>.nav-links>ul li a.active {
    border-bottom: none;
  }
}

/* /Header */

/* primary-section */
.primary-section {
  font-weight: bold;
  /* background: url("../img/bg36.png"); */
}

/* secondary-section */
.information-section,
.svg {
  font-weight: 300;
  background: #84cdee;
}

.information-section {
  font-size: 0.9em;
}

.information-section h3 {
  font-size: 1.3rem;
}

.information-section .card {
  background-color: transparent;
  border: none;
}

/* /secondary-section */

.module-area {
  background-color: #224671;
}

/* client-section */
.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

@media (max-width: 767px) {
  .carousel-inner .carousel-item>div {
    display: none;
  }

  .carousel-inner .carousel-item>div:first-child {
    display: block;
  }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
  display: flex;
}

/* medium and up screens */
@media (min-width: 768px) {

  .carousel-inner .carousel-item-end.active,
  .carousel-inner .carousel-item-next {
    transform: translateX(25%);
  }

  .carousel-inner .carousel-item-start.active,
  .carousel-inner .carousel-item-prev {
    transform: translateX(-25%);
  }
}

.carousel-inner .carousel-item-end,
.carousel-inner .carousel-item-start {
  transform: translateX(0);
}

/* /client-section */
/* trial-section */
.trial-section {
  background: #ffd7b5;
  color: #000;
}

.trial-section h1 {
  font-weight: bold;
}

.trial-section p {
  font-weight: 300;
  font-size: .9rem;
}

.trial-section button {
  background-color: #0078d0;
  border: 0;
  border-radius: 56px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: system-ui, -apple-system, system-ui, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", sans-serif;
  font-size: 18px;
  font-weight: 600;
  outline: 0;
  padding: 12px 30px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: all .3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.trial-section button:before {
  background-color: initial;
  background-image: linear-gradient(#fff 0, rgba(255, 255, 255, 0) 100%);
  border-radius: 125px;
  content: "";
  height: 80%;
  left: 4%;
  opacity: .5;
  position: absolute;
  top: 0;
  transition: all .3s;
  width: 92%;
}

.trial-section button:hover {
  box-shadow: rgba(255, 255, 255, .2) 0 3px 15px inset, rgba(0, 0, 0, .1) 0 3px 5px, rgba(0, 0, 0, .1) 0 10px 13px;
  transform: scale(1.05);
}

/* /trial-section */
/* product-section */
.product-section {
  background: #001f3f;
}

/* /product-section */
/* team-section */
.team-section {
  background: #50b8e7;
}

.team-section .card-body img {
  width: 200px;
  height: 250px;
}

.img-container {
  position: relative;
  width: 100%;
}

.img-overlay {
  position: absolute;
  left: 0;
  right: 0;
  background-color: #008CBA;
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: .5s ease;
}

.img-overlay-bottom {
  bottom: 0;
}

.img-overlay-top {
  top: 0;
}

.img-container:hover .img-overlay {
  height: 100%;
}

.text {
  white-space: nowrap;
  color: white;
  font-size: 20px;
  position: absolute;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.top-left-radius {
  border-top-left-radius: 150px;
}

.top-right-radius {
  border-top-right-radius: 150px;
}

.bottom-left-radius {
  border-bottom-left-radius: 150px;
}

.bottom-right-radius {
  border-bottom-right-radius: 150px;
}

/* /team-section */
/* footer */
.pg-footer {
  font-family: 'Roboto', sans-serif;
}


.footer {
  background-color: #004658;
  color: #fff;
}

.footer-wave-svg {
  background-color: transparent;
  display: block;
  height: 30px;
  position: relative;
  top: -1px;
  width: 100%;
}

.footer-wave-path {
  fill: #ffd7b5;
}

.footer-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 1230px;
  padding: 40px 15px 450px;
  position: relative;
}

.footer-content-column {
  box-sizing: border-box;
  float: left;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
  color: #fff;
}

.footer-content-column ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-logo-link {
  display: inline-block;
}

.footer-menu {
  margin-top: 30px;
}

.footer-menu-name {
  color: #fffff2;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 18px;
  margin-bottom: 0;
  margin-top: 0;
  text-transform: uppercase;
}

.footer-menu-list {
  list-style: none;
  margin-bottom: 0;
  margin-top: 10px;
  padding-left: 0;
}

.footer-menu-list li {
  margin-top: 5px;
}

.footer-call-to-action-description {
  color: #fffff2;
  margin-top: 10px;
  margin-bottom: 20px;
}

.footer-call-to-action-button:hover {
  background-color: #fffff2;
  color: #00bef0;
}

.button:last-of-type {
  margin-right: 0;
}

.footer-call-to-action-button {
  background-color: #027b9a;
  border-radius: 21px;
  color: #fffff2;
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 18px;
  padding: 12px 30px;
  margin: 0 10px 10px 0;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color .2s;
  cursor: pointer;
  position: relative;
}

.footer-call-to-action {
  margin-top: 30px;
}

.footer-call-to-action-title {
  color: #fffff2;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 18px;
  margin-bottom: 0;
  margin-top: 0;
  text-transform: uppercase;
}

.footer-call-to-action-link-wrapper {
  margin-bottom: 0;
  margin-top: 10px;
  color: #fff;
  text-decoration: none;
}

.footer-call-to-action-link-wrapper a {
  color: #fff;
  text-decoration: none;
}

.footer-social-links {
  bottom: 0;
  height: 54px;
  position: absolute;
  right: 0;
  width: 236px;
}

.footer-social-amoeba-svg {
  height: 54px;
  left: 0;
  display: block;
  position: absolute;
  top: 0;
  width: 236px;
}

.footer-social-amoeba-path {
  fill: #027b9a;
}

.footer-social-link.linkedin {
  height: 26px;
  left: 3px;
  top: 11px;
  width: 45px;
}

.footer-social-link {
  display: block;
  padding: 10px;
  position: absolute;
}

.hidden-link-text {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(0px 0px 99.9% 99.9%);
  clip-path: inset(0px 0px 99.9% 99.9%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  padding: 0;
  border: 0;
  top: 50%;
}

.footer-social-icon-svg {
  display: block;
}

.footer-social-icon-path {
  fill: #fffff2;
  transition: fill .2s;
}

.footer-social-link.twitter {
  height: 28px;
  left: 62px;
  top: 3px;
  width: 47px;
}

.footer-social-link.youtube {
  height: 24px;
  left: 123px;
  top: 12px;
  width: 45px;
}

.footer-social-link.github {
  height: 34px;
  left: 172px;
  top: 7px;
  width: 55px;
}

.footer-copyright {
  background-color: #027b9a;
  color: #fff;
  padding: 15px 30px;
  text-align: center;
}

.footer-copyright-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
}

.footer-copyright-text {
  color: #fff;
  font-size: 13px;
  font-weight: 400;
  line-height: 18px;
  margin-bottom: 0;
  margin-top: 0;
}

.footer-copyright-link {
  color: #fff;
  text-decoration: none;
}

/* Media Query For different screens */
@media (min-width:320px) and (max-width:479px) {

  /* smartphones, portrait iPhone, portrait 480x320 phones (Android) */
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 1140px;
    position: relative;
  }
}

@media (min-width:480px) and (max-width:599px) {

  /* smartphones, Android phones, landscape iPhone */
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 1050px;
    position: relative;
  }
}

@media (min-width:600px) and (max-width: 800px) {

  /* portrait tablets, portrait iPad, e-readers (Nook/Kindle), landscape 800x480 phones (Android) */
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 1050px;
    position: relative;
  }
}

@media (min-width: 760px) {
  .footer-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 1230px;
    padding: 40px 15px 450px;
    position: relative;
  }

  .footer-wave-svg {
    height: 50px;
  }

  .footer-content-column {
    width: 24.99%;
  }
}

/* /footer */

@media (max-width: 767px) {
  .text-squire::before {
    width: 50px;
    height: 50px;
  }
}

/* Keyframes for animation */
@keyframes moveLeft {
  0% {
    transform: translateX(40px);
  }

  100% {
    transform: translateX(-40px);
  }
}

@keyframes moveRight {
  0% {
    transform: translateX(-40px);
  }

  100% {
    transform: translateX(40px);
  }
}

/* Image */
.img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Learn Section */
.learn-section .document-area.card-primary.card-outline-tabs > .card-header a.active, .card-primary.card-outline-tabs > .card-header a.active:hover {
  border-top: 3px solid #007bff;
}

/* Sweet Alert 2 */
.colored-toast.swal2-icon-success {
  background-color: #a5dc86 !important;
}

.colored-toast.swal2-icon-error {
  background-color: #f27474 !important;
}

.colored-toast.swal2-icon-warning {
  background-color: #f8bb86 !important;
}

.colored-toast.swal2-icon-info {
  background-color: #3fc3ee !important;
}

.colored-toast.swal2-icon-question {
  background-color: #87adbd !important;
}

.colored-toast .swal2-title {
  color: white;
}

.colored-toast .swal2-close {
  color: white;
}

.colored-toast .swal2-html-container {
  color: white;
}

.swal2-container.swal2-backdrop-show,
.swal2-container.swal2-noanimation {
  z-index: 11000;
}