@font-face {
  font-family: "Futura PT Regular";
  src: url("./assets/fonts/Futura-PT-Regular.ttf");
}
@font-face {
  font-family: "Futura PT Medium";
  src: url("./assets/fonts/Futura-PT-Medium.ttf");
}
@font-face {
  font-family: "Futura PT Bold";
  src: url("./assets/fonts/Futura-PT-Demi.ttf");
}
.bg-cover-center {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.flex-center {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.text-mini, .form-label, .form-error {
  font-size: 14px;
}

.text-large {
  font-size: 20px;
}

.text-x-large {
  font-size: 22px;
}

.text-xx-large, .banner-section .banner-content .description, .page-loader .page-loader-text {
  font-size: 24px;
}

.no-decoration {
  text-decoration: none;
}

.w-fit-content {
  width: -moz-fit-content !important;
  width: fit-content !important;
}

.decoration-underline {
  text-decoration: underline;
}

.min-h-100vh {
  min-height: 100vh;
}

.no-list-style {
  list-style-type: none;
}

.negative-horizontal-margin {
  margin-left: -15px;
  margin-right: -15px;
}

.rounded-large {
  border-radius: 10px;
}

.overflow-hidden {
  overflow: hidden;
}

.table-layout-fixed {
  table-layout: fixed;
}

.container-large {
  max-width: 991px;
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
  margin-left: auto;
  margin-right: auto;
}

.container-medium {
  max-width: 767px;
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
  margin-left: auto;
  margin-right: auto;
}

.container-small {
  max-width: 576px;
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
  margin-left: auto;
  margin-right: auto;
}

.cursor-pointer {
  cursor: pointer;
}

.line-clamp1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.no-bullets {
  list-style-type: none;
}

.bulleted-list li {
  position: relative;
  padding-left: 30px;
  list-style-type: none;
  margin-bottom: 16px;
}
.bulleted-list li:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ffffff;
  position: absolute;
  top: 8px;
  left: 0;
}
.bulleted-list.text-x-large > li:before {
  top: 13px;
}

.vertical-list-with-icon {
  padding: 0;
  margin: 0;
}
.vertical-list-with-icon li {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 16px;
  transition: 0.3s;
}
.vertical-list-with-icon li .icon {
  width: 20px;
}
.vertical-list-with-icon li .text {
  width: calc(100% - 20px);
  padding-left: 12px;
}
.vertical-list-with-icon li:last-child {
  margin-bottom: 0;
}

.section-padding {
  padding: 80px 0;
}

.text-stroke {
  color: transparent;
  -webkit-text-stroke: 1px #ffffff;
}

.rotating-object {
  animation: rotate 60s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.target-section {
  scroll-margin-top: 72px;
}

/***************************************
    TEXT COLORS
***************************************/
.font-futura-pt-regular {
  font-family: "Futura PT Regular" !important;
}

.font-futura-pt-medium {
  font-family: "Futura PT Medium" !important;
}

.font-futura-pt-semibold {
  font-family: "Futura PT Bold" !important;
}

/***************************************
    TEXT COLORS
***************************************/
.text-primary {
  color: #101828 !important;
}

.text-secondary {
  color: #155dfc !important;
}

.text-secondary2 {
  color: #131f46 !important;
}

.text-grey {
  color: #4a5565 !important;
}

.text-lightgrey {
  color: #f5f7f9 !important;
}

.text-lightgrey2 {
  color: #e6eef6 !important;
}

.text-success {
  color: #4E6949 !important;
}

.text-danger {
  color: #D2401E !important;
}

.text-black {
  color: #000000 !important;
}

/***************************************
    BACKGROUND COLORS
***************************************/
.bg-primary {
  background-color: #101828 !important;
}

.bg-secondary {
  background-color: #155dfc !important;
}

.bg-secondary2 {
  background-color: #131f46 !important;
}

.bg-grey {
  background-color: #4a5565 !important;
}

.bg-lightgrey {
  background-color: #f5f7f9 !important;
}

.bg-lightgrey2 {
  background-color: #e6eef6 !important;
}

.bg-success {
  background-color: #4E6949 !important;
}

.bg-danger {
  background-color: #D2401E !important;
}

.bg-black {
  background-color: #000000 !important;
}

/******************************************
    GLOBAL CSS
******************************************/
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #101828;
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 400;
  min-height: 100vh;
}
body.menu-drawer-open {
  overflow: hidden;
}

h1 {
  font-size: 50px;
}
@media only screen and (max-width: 1399.5px) {
  h1 {
    font-size: 44px;
  }
}

h2 {
  font-size: 42px;
}
@media only screen and (max-width: 1399.5px) {
  h2 {
    font-size: 36px;
  }
}

h3 {
  font-size: 34px;
}
@media only screen and (max-width: 1399.5px) {
  h3 {
    font-size: 30px;
  }
}

h4 {
  font-size: 28px;
}
@media only screen and (max-width: 1399.5px) {
  h4 {
    font-size: 24px;
  }
}

h5 {
  font-size: 24px;
}
@media only screen and (max-width: 1399.5px) {
  h5 {
    font-size: 20px;
  }
}

h6 {
  font-size: 20px;
}
@media only screen and (max-width: 1399.5px) {
  h6 {
    font-size: 18px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
}

a {
  display: inline-block;
}

a:focus {
  outline: none;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
}

span {
  display: inline-block;
}

/*************************************
    FORM CONTROL FIELD
*************************************/
.form-error {
  color: #D2401E;
  margin-top: 4px;
}

.form-control {
  padding: 0.5rem 0.75rem !important;
  transition: 0.3s;
  /* Chrome, Safari, Edge, Opera */
  /* Firefox */
}
.form-control::-webkit-outer-spin-button, .form-control::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.form-control[type=number] {
  -moz-appearance: textfield;
}

.form-select {
  cursor: pointer;
}

.form-control,
.form-select {
  background-color: #ffffff;
  height: 50px !important;
  border-color: #4a5565;
  font-size: 16px;
  color: #4a5565;
  border-radius: 8px;
  border: 1px solid #155dfc;
  transition: 0.3s;
}
.form-control:focus,
.form-select:focus {
  box-shadow: none;
  border: 1px solid #155dfc;
}

textarea.form-control {
  min-height: 120px;
  height: auto !important;
}

.field-with-icon {
  position: relative;
}
.field-with-icon input {
  padding-right: 40px;
}
.field-with-icon .field-icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  cursor: pointer;
}

.form-check {
  text-align: left;
}
.form-check label {
  font-size: 14px;
}
@media only screen and (max-width: 1599px) {
  .form-check label {
    font-size: 12px;
  }
}
.form-check .form-check-input {
  width: 20px !important;
  height: 20px !important;
}
.form-check .form-check-input:checked {
  background-color: #155dfc;
  border-color: #155dfc;
}

/**************************************
    BUTTONS
**************************************/
.uma-btn {
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
  text-align: center;
  min-width: 200px;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}
.uma-btn:hover, .uma-btn:focus {
  text-decoration: none;
}
.uma-btn.uma-btn-small {
  padding: 7px 16px 6.4px;
  min-width: 100px;
}

.uma-btn-primary {
  background-color: #101828;
  color: #ffffff;
  border: 1px solid #101828;
}
.uma-btn-primary:hover {
  color: #ffffff;
}

.uma-btn-secondary {
  background-color: #155dfc;
  color: #ffffff;
  border: 1px solid #155dfc;
}
.uma-btn-secondary:hover {
  color: #ffffff;
}

.uma-btn-white {
  background-color: #ffffff;
  color: #101828;
  border: 1px solid #ffffff;
}
.uma-btn-white:hover {
  color: #155dfc;
}

.uma-btn-danger {
  background-color: #D2401E;
  color: #ffffff;
  border: 1px solid #D2401E;
}
.uma-btn-danger:hover {
  color: #ffffff;
}

.uma-btn-primary:after,
.uma-btn-secondary:after,
.uma-btn-white:after,
.uma-btn-danger:after,
.uma-btn-circle-with-text:after {
  background: #ffffff;
  content: "";
  height: 155px;
  left: -75px;
  opacity: 0.2;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
}
.uma-btn-primary:hover:after,
.uma-btn-secondary:hover:after,
.uma-btn-white:hover:after,
.uma-btn-danger:hover:after,
.uma-btn-circle-with-text:hover:after {
  left: 120%;
  transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
}

.uma-btn-outline-primary {
  border: 1px solid #101828;
  background-color: rgba(0, 0, 0, 0);
  color: #101828;
}
.uma-btn-outline-primary:hover {
  background-color: #101828;
  color: #ffffff;
}

.uma-btn-outline-secondary {
  border: 1px solid #155dfc;
  background-color: rgba(0, 0, 0, 0);
  color: #155dfc;
}
.uma-btn-outline-secondary:hover {
  background-color: #155dfc;
  color: #ffffff;
}

.uma-btn-outline-white {
  border: 1px solid #ffffff;
  background-color: rgba(0, 0, 0, 0);
  color: #ffffff;
}
.uma-btn-outline-white:hover {
  background-color: #ffffff;
  color: #155dfc;
}

.uma-btn-secondary-hover-primary {
  background-color: #155dfc;
  color: #ffffff;
  transition: 0.3s;
}
.uma-btn-secondary-hover-primary:hover {
  background-color: #101828;
  color: #ffffff;
}

.uma-btn-circle {
  min-width: unset;
  width: 56px;
  height: 56px;
}
.uma-btn-circle:after {
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}
.uma-btn-circle:hover:after {
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

.uma-btn-circle-with-text {
  min-width: unset;
  color: initial;
  gap: 12px;
  padding: 0;
}
.uma-btn-circle-with-text .btn-icon {
  height: 56px;
  width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.uma-btn-circle-with-text .btn-icon:after {
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}
.uma-btn-circle-with-text .btn-icon:hover:after {
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}
.uma-btn-circle-with-text .btn-icon > img {
  max-width: 100%;
  height: 100%;
}

/**********************************************
    CONTAINERS
**********************************************/
.container-small {
  max-width: 576px;
}

.container-medium {
  max-width: 767px;
}

.container-large {
  max-width: 991px;
}

.container-small,
.container-medium,
.container-large {
  padding-left: 12px;
  padding-right: 12px;
  width: 100%;
}

/**********************************************
    MINI HEADLINE
**********************************************/
.mini-headline {
  position: relative;
  padding-left: 20px;
  font-weight: 400;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
}
.mini-headline:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #155dfc;
  position: absolute;
  top: 8px;
  left: 0px;
}

/**********************************************
    INLINE MENU
**********************************************/
.inline-menu {
  padding-left: 24px;
}
.inline-menu ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
}
.inline-menu ul li a {
  text-decoration: none;
  color: #101828;
  transition: 0.3s;
}
.inline-menu ul li a:hover, .inline-menu ul li a.active {
  color: #155dfc;
}

/**********************************************
    HAMBURGER
**********************************************/
.hamburger {
  width: 40px;
  height: 40px;
  position: relative;
  cursor: pointer;
}
.hamburger .line {
  position: absolute;
  right: 0;
  height: 2px;
  border-radius: 4px;
  border-bottom: 2px solid #ffffff;
  transition: 0.3s;
}
.hamburger .line1 {
  width: 100%;
  top: 10px;
}
.hamburger .line2 {
  width: 50%;
  top: 19px;
  opacity: 1;
  visibility: visible;
}
.hamburger .line3 {
  width: 75%;
  top: 28px;
}

header#uma-header.menu-btn-clicked .hamburger .line1 {
  top: 18px;
  transform: rotate(-45deg);
}
header#uma-header.menu-btn-clicked .hamburger .line2 {
  opacity: 0;
  visibility: hidden;
  top: 18px;
}
header#uma-header.menu-btn-clicked .hamburger .line3 {
  top: 18px;
  transform: rotate(45deg);
  width: 100%;
}

/**************************************
    CARDS
**************************************/
.uma-card {
  position: relative;
  padding: 50px 40px 90px 40px;
  border-radius: 20px 20px 0 20px;
  background: #f5f7f9;
  z-index: 2;
}
@media only screen and (max-width: 1399.5px) {
  .uma-card {
    padding: 50px 40px 50px 40px;
  }
}
.uma-card .uma-card-title {
  text-decoration: none;
  color: #101828;
  transition: 0.3s;
}
.uma-card .uma-card-icon {
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 90px;
  height: 90px;
  background: #ffffff;
  border-top-left-radius: 50%;
  padding: 15px;
}
.uma-card .uma-card-icon .arrow {
  position: absolute;
  background: #101828;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  width: 60px;
  height: 60px;
  line-height: 60px;
}
.uma-card .uma-card-icon:before {
  position: absolute;
  content: "";
  bottom: 6px;
  left: -20px;
  background: transparent;
  width: 20px;
  height: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 6px 6px 0 6px #fff;
}
.uma-card .uma-card-icon:after {
  position: absolute;
  content: "";
  top: -20px;
  right: 6px;
  background: transparent;
  width: 20px;
  height: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 6px 6px 0 6px #fff;
}
.uma-card:hover .uma-card-title {
  color: #155dfc;
}
.uma-card:hover .uma-card-icon .arrow {
  background: #155dfc;
}

.uma-layer-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 0 20px;
  background: #f5f7f9;
  z-index: 2;
  min-height: 300px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.uma-layer-card .uma-card-body {
  padding: 50px 40px 90px 40px;
  transform: translateY(100%);
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.8) calc(100% - 75px), transparent);
  color: white;
  border-radius: 20px;
  min-height: 330px;
  transition: 1s;
}
.uma-layer-card .uma-card-body > p {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.uma-layer-card .uma-card-title {
  text-decoration: none;
  color: #101828;
  transition: 1s;
}
.uma-layer-card .uma-card-icon {
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 90px;
  height: 90px;
  background: #f5f7f9;
  border-top-left-radius: 50%;
  padding: 15px;
}
.uma-layer-card .uma-card-icon .arrow {
  position: absolute;
  background: #101828;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  width: 60px;
  height: 60px;
  line-height: 60px;
}
.uma-layer-card .uma-card-icon:before {
  position: absolute;
  content: "";
  bottom: 6px;
  left: -20px;
  background: transparent;
  width: 20px;
  height: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 6px 6px 0 6px #f5f7f9;
}
.uma-layer-card .uma-card-icon:after {
  position: absolute;
  content: "";
  top: -20px;
  right: 6px;
  background: transparent;
  width: 20px;
  height: 20px;
  border-bottom-right-radius: 20px;
  box-shadow: 6px 6px 0 6px #f5f7f9;
}
.uma-layer-card .badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: absolute;
  bottom: 24px;
}
.uma-layer-card .badges .single-badge {
  display: inline-flex;
  padding: 4px 20px;
  border: 1px solid white;
  color: white;
  border-radius: 25px;
  font-size: 12px;
}
.uma-layer-card:hover .uma-card-body {
  transform: translateY(0);
}
.uma-layer-card:hover .uma-card-icon .arrow {
  background: #155dfc;
}

.reviews-card {
  background: #f5f7f9;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 2px;
}
@media only screen and (max-width: 767.5px) {
  .reviews-card {
    min-height: 250px;
  }
}
.reviews-card .reviews-card-stars {
  width: 100px;
  height: auto;
  display: block;
}
.reviews-card .reviews-card-text {
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
}
.reviews-card .reviews-card-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
}
.reviews-card .reviews-card-footer .reviews-card-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
.reviews-card .reviews-card-footer .reviews-card-author {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  margin: 0;
  line-height: 1.2;
}

.uma-process-card {
  padding: 32px 24px;
  border-radius: 20px;
  background: radial-gradient(circle at 0% 0%, rgba(22, 21, 21, 0.3019607843) 0, transparent 55%), radial-gradient(circle at 100% 100%, rgba(109, 74, 255, 0) 0, transparent 55%), radial-gradient(circle at 0% 100%, rgba(0, 198, 255, 0.08) 0, transparent 60%);
}
.uma-process-card .title {
  margin-bottom: 32px;
  font-weight: 500;
}
.uma-process-card .description {
  max-width: 600px;
}
.uma-process-card .description p:last-child {
  margin-bottom: 0;
}

/**************************************
    TABLES
**************************************/
.uma-table tr th,
.uma-table tr td {
  padding: 24px;
  border-color: #dee2e6;
  vertical-align: middle;
}
.uma-table tr th {
  color: #155dfc;
  border-bottom-width: 1px;
}
.uma-table tr:last-child td {
  border-bottom: 0;
}

/**************************************
    SOCIAL ICONS
**************************************/
.social-icons-list .footer-social-icon {
  font-size: 18px;
  height: 52px;
  width: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffffff;
  color: #ffffff;
  text-align: center;
  border-radius: 50%;
  margin: 4px;
  text-decoration: none;
  transition: 0.3s;
}
.social-icons-list .footer-social-icon:hover {
  background-color: #ffffff;
  color: #155dfc;
}

/**************************************
    STYLISH SCROLL
**************************************/
.stylish-scroll, body {
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.stylish-scroll::-webkit-scrollbar, body::-webkit-scrollbar {
  width: 10px;
}
.stylish-scroll::-webkit-scrollbar-track, body::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.stylish-scroll::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb {
  background: #888;
}
.stylish-scroll::-webkit-scrollbar-thumb:hover, body::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.stylish-scroll-thin::-webkit-scrollbar, header#uma-header .header-inner .header-menu ul::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.stylish-scroll-thin::-webkit-scrollbar-track, header#uma-header .header-inner .header-menu ul::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.stylish-scroll-thin::-webkit-scrollbar-thumb, header#uma-header .header-inner .header-menu ul::-webkit-scrollbar-thumb {
  background: #155dfc;
}

/**************************************
    ACCORDION
**************************************/
.uma-accordion button.accordion-button {
  padding: 24px;
  min-height: 100px;
  border-bottom: 0;
}
@media only screen and (max-width: 1399.5px) {
  .uma-accordion button.accordion-button {
    min-height: 80px;
  }
}
.uma-accordion button.accordion-button:focus {
  box-shadow: unset;
}
.uma-accordion button.accordion-button:not(.collapsed) {
  background-color: #e9f6db !important;
  color: #101828 !important;
}
.uma-accordion button.accordion-button::after {
  background-image: url("./assets/images/plus-icon.svg");
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition-property: height, visibility;
    transition-duration: 0.35s;
  }
}
/****************************************
    PAGE LOADER
****************************************/
@keyframes loaderFade {
  0%, 100% {
    opacity: 0.35;
  }
  50% {
    opacity: 1;
  }
}
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.page-loader .page-loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
}
.page-loader .page-loader-logo {
  width: 200px;
  height: auto;
  animation: loaderFade 1.5s ease-in-out infinite;
}
.page-loader .page-loader-text {
  margin: 0;
  color: #ffffff;
  animation: loaderFade 1.5s ease-in-out infinite 0.25s;
}
.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  pointer-events: none;
}

/****************************************
    HEADER
****************************************/
header#uma-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0);
  z-index: 9;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  transition: 0.3s;
}
header#uma-header .header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  transition: 0.3s;
}
header#uma-header .header-inner .header-left {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 250px;
}
@media only screen and (max-width: 1199.5px) {
  header#uma-header .header-inner .header-left {
    width: 200px;
  }
}
header#uma-header .header-inner .header-right {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  width: 250px;
}
@media only screen and (max-width: 1199.5px) {
  header#uma-header .header-inner .header-right {
    width: 200px;
  }
}
@media only screen and (max-width: 991.5px) {
  header#uma-header .header-inner .header-right {
    width: -moz-fit-content;
    width: fit-content;
  }
}
header#uma-header .header-inner .header-right .dropdown-toggle:focus {
  box-shadow: unset;
}
header#uma-header .header-inner .header-right .dropdown-toggle:after {
  margin-left: 8px;
}
header#uma-header .header-inner .header-right .dropdown-menu {
  top: 21px !important;
  border-radius: 0;
}
header#uma-header .header-inner .uma-btn {
  padding: 7px 16px 6.4px;
}
header#uma-header .header-inner .logo-box .logo img {
  width: 100%;
  transition: 0.3s;
}
header#uma-header .header-inner .header-menu {
  transition: 0.3s;
}
@media only screen and (max-width: 991.5px) {
  header#uma-header .header-inner .header-menu {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 400px;
    background-color: rgba(0, 0, 0, 0.8);
    border-right: 1px solid rgba(222, 226, 230, 0.231372549);
    padding: 24px;
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
  }
}
@media only screen and (max-width: 480.5px) {
  header#uma-header .header-inner .header-menu {
    width: 100%;
    border-right: 0;
  }
}
header#uma-header .header-inner .header-menu .logo-box img {
  width: 200px !important;
}
header#uma-header .header-inner .header-menu ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 30px;
}
@media only screen and (max-width: 1199.5px) {
  header#uma-header .header-inner .header-menu ul {
    gap: 0 24px;
  }
}
@media only screen and (max-width: 991.5px) {
  header#uma-header .header-inner .header-menu ul {
    margin-bottom: 16px;
    overflow-y: auto;
    display: block;
  }
}
@media only screen and (max-width: 991.5px) {
  header#uma-header .header-inner .header-menu ul li {
    width: 100%;
    margin-bottom: 16px;
  }
}
header#uma-header .header-inner .header-menu ul li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: 0.3s;
}
header#uma-header .header-inner .header-menu ul li a:hover, header#uma-header .header-inner .header-menu ul li a.active {
  color: #155dfc;
}
@media only screen and (max-width: 991.5px) {
  header#uma-header .header-inner .header-menu ul li a {
    font-size: 24px;
  }
}

header#uma-header.scrolled {
  background-color: #000000;
  border-bottom: 1px solid;
}
header#uma-header.scrolled .header-inner {
  padding: 16px 0;
}
header#uma-header.scrolled .header-inner .logo-box .logo img {
  width: 100%;
}

header#uma-header.menu-btn-clicked .header-inner .header-menu {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

/****************************************
  MAIN STYLES
****************************************/
.banner-section {
  background-color: #101828;
  min-height: 100vh;
  padding-top: 130px;
  padding-bottom: 50px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.banner-section.banner-bg-loaded {
  background-image: url("./assets/images/banner-img1.webp");
}
@media only screen and (max-width: 575.5px) {
  .banner-section {
    padding-bottom: 80px;
  }
}
.banner-section > .container {
  position: relative;
}
.banner-section .banner-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
@media only screen and (max-width: 1199.5px) {
  .banner-section .banner-content {
    max-width: 580px;
  }
}
@media only screen and (max-width: 991.5px) {
  .banner-section .banner-content {
    max-width: 100%;
  }
}
.banner-section .banner-content .banner-title {
  font-size: 100px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1399.5px) {
  .banner-section .banner-content .banner-title {
    font-size: 80px;
  }
}
@media only screen and (max-width: 1199.5px) {
  .banner-section .banner-content .banner-title {
    font-size: 70px;
  }
}
@media only screen and (max-width: 767.5px) {
  .banner-section .banner-content .banner-title {
    font-size: 50px;
  }
}
@media only screen and (max-width: 480.5px) {
  .banner-section .banner-content .banner-title {
    font-size: 42px;
  }
}
.banner-section .banner-content .description {
  max-width: 650px;
}
@media only screen and (max-width: 991.5px) {
  .banner-section .banner-content .description {
    max-width: 100%;
  }
}
.banner-section .backgorund-shape {
  min-height: 500px;
  height: 100%;
  position: absolute;
  top: 55%;
  right: 10%;
  transform: translateY(-50%);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 1399.5px) {
  .banner-section .backgorund-shape {
    min-height: 400px;
  }
}
@media only screen and (max-width: 1199.5px) {
  .banner-section .backgorund-shape {
    right: 0;
  }
}
@media only screen and (max-width: 991.5px) {
  .banner-section .backgorund-shape {
    display: none;
  }
}
.banner-section .backgorund-shape > img {
  max-height: 100%;
}

@media only screen and (max-width: 480.5px) {
  .about-section .left-col .about-cta-btns .uma-btn {
    width: 100%;
  }
}
.about-section .right-col {
  border-left: 1px solid #dee2e6;
}
@media only screen and (max-width: 991.5px) {
  .about-section .right-col {
    border-left: none;
    padding-top: 40px;
    display: flex;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 991.5px) {
  .about-section .right-col > div {
    width: 50%;
  }
}

.statistic-counter {
  font-size: 80px;
  animation-duration: 1s;
  animation-delay: 1s;
}
@media only screen and (max-width: 1399.5px) {
  .statistic-counter {
    font-size: 70px;
  }
}
@media only screen and (max-width: 991.5px) {
  .statistic-counter {
    font-size: 50px;
  }
}

.section-title-area-horizontal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.section-title-area-horizontal .headlines {
  width: 45%;
  padding-right: 32px;
}
.section-title-area-horizontal .description {
  width: 55%;
  padding-left: 32px;
  position: relative;
}
.section-title-area-horizontal .description p:last-child {
  margin-bottom: 0;
}
.section-title-area-horizontal .description:before {
  content: "";
  width: 3px;
  height: 90%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #155dfc;
}

.projects-section .section-title-area-horizontal {
  max-width: calc(100% - 200px);
}
@media only screen and (max-width: 991.5px) {
  .projects-section .section-title-area-horizontal {
    max-width: 100%;
  }
}
@media only screen and (max-width: 991.5px) {
  .projects-section .section-title-area-horizontal .headlines {
    width: 100%;
  }
}
@media only screen and (max-width: 991.5px) {
  .projects-section .section-title-area-horizontal .description {
    width: 100%;
    padding-left: 0;
    margin-top: 24px;
  }
}
@media only screen and (max-width: 991.5px) {
  .projects-section .section-title-area-horizontal .description:before {
    display: none;
  }
}

@media only screen and (max-width: 991.5px) {
  .portfolio-slider {
    padding-bottom: 100px;
  }
}
.portfolio-slider .slick-slide {
  padding: 0 12px;
}
.portfolio-slider .slick-slide.slick-current.slick-active .uma-layer-card .uma-card-body {
  transform: translateY(0);
}
.portfolio-slider .slick-slide.slick-current.slick-active .uma-layer-card .uma-card-icon .arrow {
  background: #155dfc;
}
.portfolio-slider .slick-list {
  margin: 0 -12px;
}
.portfolio-slider .slick-arrow {
  top: -120px;
  width: 50px;
  height: 50px;
}
@media only screen and (max-width: 991.5px) {
  .portfolio-slider .slick-arrow {
    top: unset;
    bottom: -20px;
    width: 40px;
    height: 40px;
  }
}
.portfolio-slider .slick-arrow.slick-prev {
  left: calc(100% - 120px);
}
@media only screen and (max-width: 991.5px) {
  .portfolio-slider .slick-arrow.slick-prev {
    left: calc(50% - 50px);
  }
}
.portfolio-slider .slick-arrow.slick-prev:before {
  content: "";
  background-image: url("./assets/images/chevron-left-blue.png");
}
.portfolio-slider .slick-arrow.slick-next {
  right: 0;
}
@media only screen and (max-width: 991.5px) {
  .portfolio-slider .slick-arrow.slick-next {
    right: calc(50% - 50px);
  }
}
.portfolio-slider .slick-arrow.slick-next:before {
  content: "";
  background-image: url("./assets/images/chevron-right-blue.png");
}
.portfolio-slider .slick-arrow.slick-prev:before, .portfolio-slider .slick-arrow.slick-next:before {
  width: 100%;
  height: 100%;
  display: block;
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: center;
}
@media only screen and (max-width: 991.5px) {
  .portfolio-slider .slick-arrow.slick-prev:before, .portfolio-slider .slick-arrow.slick-next:before {
    background-size: 20px;
  }
}

.technology-slider {
  position: relative;
}
.technology-slider:before, .technology-slider:after {
  content: "";
  width: 200px;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 1;
}
@media only screen and (max-width: 767.5px) {
  .technology-slider:before, .technology-slider:after {
    width: 100px;
  }
}
.technology-slider:before {
  left: 0;
  background-image: linear-gradient(90deg, #f5f7f9 15%, rgba(0, 0, 0, 0));
}
.technology-slider:after {
  right: 0;
  background-image: linear-gradient(270deg, #f5f7f9 15%, rgba(0, 0, 0, 0));
}
.technology-slider .tech-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin: 8px auto;
  padding: 8px;
  background-color: white;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 2px;
}
@media only screen and (max-width: 991.5px) {
  .technology-slider .tech-icon {
    width: 80px;
    height: 80px;
  }
}
.technology-slider .tech-icon > img {
  max-width: 120px;
  max-height: 50px;
}
@media only screen and (max-width: 991.5px) {
  .technology-slider .tech-icon > img {
    max-width: 100%;
    max-height: 40px;
  }
}
.technology-slider.ltr {
  direction: rtl;
}
.technology-slider.ltr .slick-slide {
  direction: ltr;
}

.reviews-container {
  position: relative;
}
.reviews-container:before, .reviews-container:after {
  content: "";
  width: 100%;
  height: 100px;
  position: absolute;
  left: 0;
  z-index: 1;
}
.reviews-container:before {
  top: 0;
  background-image: linear-gradient(white, transparent);
}
.reviews-container:after {
  bottom: 0;
  background-image: linear-gradient(transparent, white);
}

.reviews-slider .slick-track {
  display: flex !important;
  flex-direction: column;
}
.reviews-slider .slick-slide {
  display: flex !important;
  flex-direction: column;
  margin-bottom: 24px;
}
.reviews-slider .slide-inner {
  flex: 1 0 auto;
}

.reviews-container-for-mobile .reviews-slider-mobile .slick-slide {
  padding: 0 8px;
}
.reviews-container-for-mobile .reviews-slider-mobile .slick-list {
  overflow: visible !important;
}

@media only screen and (max-width: 991.5px) {
  .testimonials-section {
    padding-bottom: 0 !important;
  }
}

.contact-info-section .content-wrapper {
  padding: 80px 50px;
  border-radius: 30px;
  border: 1px solid rgba(21, 93, 252, 0.3882352941);
  box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.1);
  background-image: url(./assets/images/aPW6qrpReVYa3dUQ_BackgroundWebPImage.avif);
  background-size: 400px;
  background-repeat: no-repeat;
  background-position: left top;
}
@media only screen and (max-width: 991.5px) {
  .contact-info-section .content-wrapper {
    background-position: right top;
  }
}
@media only screen and (max-width: 767.5px) {
  .contact-info-section .content-wrapper {
    padding: 50px 24px;
  }
}
.contact-info-section .content-wrapper .inner-1 {
  position: relative;
}
.contact-info-section .content-wrapper .inner-1:before {
  content: "";
  width: 1px;
  height: 90%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-color: rgba(21, 93, 249, 0.3882352941);
}
@media only screen and (max-width: 991.5px) {
  .contact-info-section .content-wrapper .inner-1:before {
    right: unset;
    top: unset;
    left: 16px;
    bottom: 0;
    height: 1px;
    width: 90%;
  }
}
.contact-info-section .content-wrapper .inner-1:after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 50%;
  transform: translateX(50%);
  background-color: #155dfc;
}
@media only screen and (max-width: 991.5px) {
  .contact-info-section .content-wrapper .inner-1:after {
    top: unset;
    right: unset;
    bottom: 0;
    transform: translateY(calc(50% - 2px));
  }
}

.process-section .left-col {
  position: relative;
}
.process-section .left-col .sticky-content {
  position: sticky;
  top: 200px;
}
@media only screen and (max-width: 991.5px) {
  .process-section .left-col .sticky-content {
    top: 120px;
  }
}

/****************************************
  FOOTER
****************************************/
footer#uma-footer .form-control,
footer#uma-footer .form-select {
  background-color: rgba(0, 0, 0, 0);
  color: #ffffff;
}
footer#uma-footer .form-control::-moz-placeholder, footer#uma-footer .form-select::-moz-placeholder {
  color: #ffffff;
}
footer#uma-footer .form-control::placeholder,
footer#uma-footer .form-select::placeholder {
  color: #ffffff;
}
footer#uma-footer .form-control option,
footer#uma-footer .form-select option {
  color: #000000;
}
@media only screen and (max-width: 991.5px) {
  footer#uma-footer #contact-us input[type=submit] {
    width: 100%;
  }
}
@media only screen and (max-width: 1399.5px) {
  footer#uma-footer .logo-box {
    width: 100px;
  }
}
@media only screen and (max-width: 1199.5px) {
  footer#uma-footer .logo-box {
    width: 80px;
  }
}
footer#uma-footer .footer-bottom {
  border-top: 1px solid rgba(21, 93, 252, 0.3019607843);
}

.uma-btn-fixed {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 8;
}
.uma-btn-fixed img {
  max-width: 100%;
  max-height: 100%;
}/*# sourceMappingURL=style.css.map */