﻿@font-face {
  font-family: Gilmer;
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../../assets/fonts/GilmerLight.otf");
}

@font-face {
  font-family: Gilmer;
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../../assets/fonts/GilmerRegular.otf");
}

@font-face {
  font-family: Gilmer;
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../../assets/fonts/GilmerRegular.otf");
}

@font-face {
  font-family: Gilmer;
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../../assets/fonts/GilmerMedium.otf");
}

@font-face {
  font-family: Gilmer;
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../../assets/fonts/GilmerBold.otf");
}

@font-face {
  font-family: Gilmer;
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../../assets/fonts/GilmerBold.otf");
}

@font-face {
  font-family: Gilmer;
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../../assets/fonts/GilmerHeavy.otf");
}

a:not(.custom) {
  text-decoration: none;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

:root {
  --colorPrimary: #27bbd5;
  --colorPrimary2: #115571;
  --colorAccent: #1f3149;
  --colorAccent2: #0f2243;
  --colorGrey: #e8e8e8;
  --colorText: #8b8b8b;
  --colorError: #ec5559;
  --colorTextPrimary: #262626;
  --colorLabel: #8f8f8f;
  --colorDisabled: #e1dfe9;
  --colorGrey2: #f6f6f6;
  --lengthSm1: 0.7rem;
  --lengthSm2: 0.8rem;
  --lengthSm3: 0.9rem;
  --lengthMd1: 1rem;
  --lengthMd2: 1.25rem;
  --lengthMd3: 1.5rem;
  --lengthLg1: 2rem;
  --lengthLg2: 3rem;
  --lengthLg4: 4rem;
  --shadow1: rgba(0, 0, 0, 0.2) 0px 2px 1px -1px,
    rgba(0, 0, 0, 0.14) 0px 1px 1px 0px, rgba(0, 0, 0, 0.12) 0px 1px 3px 0px;
  --shadow2: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px,
    rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
  --shadow3: rgba(0, 0, 0, 0.2) 0px 3px 3px -2px,
    rgba(0, 0, 0, 0.14) 0px 3px 4px 0px, rgba(0, 0, 0, 0.12) 0px 1px 8px 0px;
  --shadow4: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12),
    0 2px 4px -1px rgba(0, 0, 0, 0.3);
  --shadow5: 0 8px 17px 2px rgba(0, 0, 0, 0.14),
    0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
  --shadow6: 0 16px 24px 2px rgba(0, 0, 0, 0.14),
    0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -7px rgba(0, 0, 0, 0.2);
  --shadow7: 0 24px 38px 3px rgba(0, 0, 0, 0.14),
    0 9px 46px 8px rgba(0, 0, 0, 0.12), 0 11px 15px -7px rgba(0, 0, 0, 0.2);
  --shadow8: 0 22px 43px -20px rgba(0, 0, 0, 0.15);
  --shadow9: 0 12px 23px -15px rgba(0, 0, 0, 0.15);
}

.text-sm-3 {
  font-size: var(--lengthSm3);
}

.text-sm-2 {
  font-size: var(--lengthSm2);
}

.text-sm-1 {
  font-size: var(--lengthSm1);
}

.text-md-3 {
  font-size: var(--lengthMd3);
}

.text-md-2 {
  font-size: var(--lengthMd2);
}

.text-md-1 {
  font-size: var(--lengthMd1);
}

.text-lg-3 {
  font-size: var(--lengthLg4);
}

.text-lg-2 {
  font-size: var(--lengthLg2);
}

.text-lg-1 {
  font-size: var(--lengthLg1);
}

.font-regular {
  font-weight: 400;
}

input[type="text"]:not(.custom),
input[type="search"]:not(.custom),
input[type="email"]:not(.custom),
input[type="password"]:not(.custom),
input[type="number"]:not(.custom),
input[type="tel"]:not(.custom),
select:not(.custom),
textarea:not(.custom) {
  padding: 0.8rem 1rem;
  border: 0;
  border-bottom: 2px solid #828282;
  transition: 0.5s all ease;
  letter-spacing: 0.4px;
  font-size: var(--lengthMd1);
  resize: none;
  color: #fff;
  font-family: "Gilmer", sans-serif !important;
  font-weight: 500;
  background: transparent;
}

input[type="text"]:not(.custom):hover,
input[type="search"]:not(.custom):hover,
input[type="email"]:not(.custom):hover,
input[type="password"]:not(.custom):hover,
input[type="number"]:not(.custom):hover,
input[type="tel"]:not(.custom):hover,
select:hover,
textarea:hover,
input[type="text"]:not(.custom):focus,
input[type="email"]:not(.custom):focus,
input[type="password"]:not(.custom):focus,
input[type="number"]:not(.custom):focus,
input[type="tel"]:not(.custom):focus,
select:not(.custom):focus,
textarea:not(.custom):focus {
  border-bottom: 2px solid #fff;
  outline: none;
  box-shadow: none;
}

.hover-drop > div.droppableContainer,
.focus-drop > div.droppableContainer {
  display: none;
}

.hover-drop > a:hover ~ div.droppableContainer {
  display: flex;
}

.focus-drop > a:focus ~ div.droppableContainer,
div.droppableContainer:hover {
  display: flex !important;
}

button:disabled {
  background: var(--colorDisabled) !important;
  color: var(--colorLabel) !important;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--colorLabel);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--colorText);
}

:focus {
  outline: none;
}

html,
body {
  height: 100%;
}

body {
  background: var(--colorGrey2);
  margin: 0;
}

body,
body > *:not(.fa):not(.fas):not(.far):not(.fab):not(.customFont),
button {
  color: avr(--colorTextPrimary);
  font-family: "Gilmer", sans-serif;
}

.nav-right > a:not(:last-child), .nav-bottom-inner > ul > li:not(:last-child) > a{
  color: #000;
}

.customFont {
  font-family: "AgletSans", sans-serif !important;
}

@media (min-width: 768px) {
  .home-left {
    width: 50%;
  }
  .custom-container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .custom-container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .custom-container {
    width: 95%;
    max-width: 1400px;
  }
}

.custom-container {
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}

.custom-form.grid,
.custom-grid {
  display: grid;
  grid-gap: 3.5rem;
}

.custom-form.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.custom-form > div > span:not(.custom) {
  font-size: var(--lengthMd2);
  color: var(--colorTextPrimary);
  font-weight: 400;
}

.custom-form.form-text > div:not([class]) {
  flex-direction: row;
  align-items: flex-end;
  line-height: 1;
}

.custom-form.form-text > div {
  margin: 0.25em 0;
}

.custom-form.form-text > div > *:last-child {
  flex: 1;
  padding-left: 0.5em;
}

.custom-form.form-text > div > span {
  font-size: var(--lengthMd1);
  font-weight: 600;
  color: #333;
}

.custom-form.form-text > div > label {
  margin: 0;
  width: 30%;
  font-size: var(--lengthMd1);
}

.custom-form.flex > div.full {
  width: 100%;
}

.custom-form.flex > div.quarter {
  width: 25%;
}

.custom-form.flex > div.flex_1 {
  flex: 1;
}

.custom-form.flex > div.half {
  width: calc(50% - 0.5rem);
}

.custom-form.flex > div {
  margin: 0.5rem 0;
}

.grid._5,
.custom-grid._5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid._4,
.custom-grid._4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid._3,
.custom-grid._3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid._2,
.custom-grid._2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid._1,
.custom-grid._1 {
  grid-template-columns: repeat(1, 1fr);
}

.custom-form > div {
  display: flex;
  flex-direction: column;
  position: relative;
}

.custom-form > div > label {
  font-weight: 400;
  color: var(--colorText);
  font-size: var(--lengthSm3);
  margin-bottom: 0.2rem;
  position: relative;
}

.custom-form > div > input,
.custom-form > div > select {
  width: 100%;
}

label.asterix::before {
  content: "*";
  position: absolute;
  color: var(--colorError);
  left: -0.6rem;
  top: 50%;
  transform: translate(0, -50%);
  font-size: var(--lengthMd3);
  font-weight: 600;
}

.btn-row {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
}

.btn-row > *:not(:last-child) {
  margin-right: 1rem;
}

.custom-btn {
  padding: 0.85rem 1.5rem;
  font-size: var(--lengthSm3);
  border-radius: 0;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  opacity: 1;
  cursor: pointer;
  width: max-content;
  transition: 0.2s all ease;
  border-radius: 0.35rem;
  border: 2px solid transparent;
}

.custom-btn.sm {
  padding: 0.6rem 1.5rem;
  font-size: var(--lengthSm2);
}

.custom-btn > svg {
  margin-right: 0.5rem;
  fill: var(--colorTextPrimary);
}

.custom-btn.bordered {
  border: 2px solid var(--colorAccent);
  background: transparent;
  color: var(--colorAccent);
  transition: 0.4s all ease;
  cursor: pointer;
  opacity: 0.8;
}

.custom-btn.bordered:hover {
  opacity: 1;
}

.mt-2 {
  margin-top: 2rem;
}

.bg-light {
  background: #fff;
}

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

.bg-primary-2 {
  background: var(--colorPrimary2);
}

.bg-primary-3 {
  background: var(--colorTextPrimary);
}

.custom-btn.colored.dark {
  border: 0;
  background: var(--colorPrimary);
  color: #fff;
}

.custom-btn.colored:hover {
  background: #fff;
  color: var(--colorPrimary);
}

.custom-btn.colored2:hover {
  background: #fff;
  color: var(--colorPrimary2);
}

.custom-btn.sm > svg {
  width: 18px;
  height: 18px;
}

.modal-header {
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  border-bottom: 0;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  padding: 1rem 1.5rem;
  border-top: 0;
}

.modalCloseBtn {
  background: transparent;
  border: 0;
  transition: 0.3s all ease;
  opacity: 0.75;
}

.modalCloseBtn svg {
  fill: var(--colorError);
}

.modalCloseBtn:hover {
  opacity: 1;
}

.modal-backdrop {
  background-color: #565656;
}

.modal-content {
  border-radius: 0;
  box-shadow: var(--shadow9);
  border: 0;
}

.modal-body {
  padding: 1rem 1.5rem;
}

.modal-header:before,
.modal-header:after {
  content: none;
}

.modal-title {
  font-size: var(--lengthMd2);
  color: var(--colorTextPrimary);
}

.toast-close {
  opacity: 0.4;
  padding: 0 0 0 1rem;
}

.info-toast {
  background: linear-gradient(135deg, #73a5ff, #5477f5);
}

.success-toast {
  background: linear-gradient(165deg, #58bb58, #68ca68);
}

.error-toast {
  background: linear-gradient(90deg, #d84949, #d46464);
}

.warning-toast {
  background: linear-gradient(45deg, #ffc04c, #e6980a);
}

.toastify {
  /* border-radius: 0.5rem; */
  font-size: var(--lengthMd1);
}

.dt-btn-row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.dt-btn-row > button:not(:last-child) {
  margin-right: 1rem;
}

.dt-btn {
  font-size: var(--lengthSm3);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.75rem;
  font-weight: 600;
  font-weight: 600;
  transition: 0.2s all ease;
}

.dt-btn:hover {
  border: 2px solid var(--colorText);
  color: var(--colorText);
}

.dt-btn:hover svg {
  fill: var(--colorText);
}

.dt-btn > svg {
  height: 20px;
  width: 20px;
  margin-right: 0.5rem;
  transition: 0.2s all ease;
}

.dt-btn.edit:not(:hover) {
  border: 2px solid var(--colorAccent);
  color: var(--colorAccent);
}

.dt-btn.edit:not(:hover) svg {
  fill: var(--colorAccent);
}

.dt-btn.remove:not(:hover) svg {
  fill: var(--colorError);
}

.dt-btn.remove:not(:hover) {
  border: 2px solid var(--colorError);
  color: var(--colorError);
}

.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid var(--colorDisabled);
}

.h3-block h3 {
  margin: 0 0 1rem;
  font-size: var(--lengthMd3);
  color: var(--colorTextPrimary);
}

.mb-2 {
  margin-bottom: 2rem;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider.round {
  border-radius: 34px;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider.round:before {
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--colorText);
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

.switch-wrap {
  display: flex;
  margin-top: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.switch-wrap > label {
  color: var(--colorText);
  font-size: var(--lengthMd1);
  font-weight: 400;
}

.mb-1_5 {
  margin-bottom: 1.5rem;
}

.custom-btn.rounded {
  border-radius: 2rem;
}

.custom-btn.outline.primary {
  border: 2px solid var(--colorPrimary);
}

.custom-btn.outline.accent:hover {
  color: var(--colorPrimary);
  border: 2px solid var(--colorPrimary);
}

.custom-btn.outline.light:hover {
  border: 2px solid #fff;
  background: var(--colorPrimary);
  color: #fff;
}

.custom-btn.accent {
  border-color: var(--colorAccent);
}

.custom-btn:not(.colored).accent {
  color: var(--colorAccent);
}

section {
  position: relative;
}

.font-bold {
  font-weight: 600;
}

.m0 {
  margin: 0;
}

.custom-btn.light {
  color: var(--colorTextPrimary);
  background: #fff;
}

.custom-btn > img {
  margin-right: 0.5rem;
}

.bg-grey {
  background: var(--colorGrey);
}

.bg-grey-2 {
  background: var(--colorGrey2);
}

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

.mt-60 {
  margin-top: 60px;
}

.m-0 {
  margin: 0;
}

.uppercase {
  text-transform: uppercase;
}

.color-grey {
  color: var(--colorLabel);
}

.bg-accent {
  background: var(--colorAccent);
}

.bg-accent-2 {
  background: var(--colorAccent2);
}

small {
  font-size: 75%;
}

.footer-row.end {
  justify-content: flex-end;
}

.font-mid {
  font-weight: 500;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mt-0 {
  margin-top: 0;
}

.d-block {
  display: block;
}

.mb-1 {
  margin-bottom: 1rem;
}

.font-extra-bold {
  font-weight: 800;
}

.m-auto {
  margin: auto;
}

.italic {
  font-style: italic;
}

.uppercase {
  text-transform: uppercase;
}

.pad-top-lg {
  padding-top: 90px;
}

.pad-bottom-lg {
  padding-bottom: 90px;
}

.pad-top-md {
  padding-top: 60px;
}

.pad-bottom-md {
  padding-bottom: 60px;
}

.pad-top-sm {
  padding-top: 40px;
}

.pad-bottom-sm {
  padding-bottom: 40px;
}

.pad-top-xs {
  padding-top: 20px;
}

.pad-bottom-xs {
  padding-bottom: 20px;
}

.custom-btn.colored {
  background: var(--colorPrimary);
  color: var(--colorTextPrimary);
}

.custom-btn.colored2 {
  background: var(--colorPrimary2);
  color: #fff;
}

.nav-top-inner,
.nav-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-left,
.nav-right,
.nav-bottom-inner > ul {
  display: flex;
  align-items: center;
}

.nav-left a,
.nav-right a,
.nav-bottom-inner > ul a {
  padding: 1.5rem 0.5rem;
  display: flex;
  align-items: center;
}

.nav-left a img {
  height: 19px;
}

.nav-right > a:last-child,
.nav-bottom-inner > ul > li:last-child > a {
  padding-right: 0;
}

.nav-right a img {
  margin-right: 0.5rem;
}

.nav-bottom-inner {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.nav-bottom-inner > div:first-child img {
  height: 90px;
}

.nav-bottom-inner > ul a {
  font-weight: 600;
  font-size: var(--lengthSm3);
}

.home-section {
  height: 700px;
  background-image: url(../images/home.jpg);
  background-size: cover;
  /* background-position: center center; */
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.home-wrap {
}

.home-wrap h1 {
  font-size: 4.5rem;
  font-weight: 600;
  text-shadow: 0px 2px 3px rgb(0 0 0 / 25%);
}

.home-wrap h1 span {
  background: rgb(39 187 213 / 50%);
  margin: -1rem;
  padding: 0.5rem 1rem;
}

.icon-wrap,
.about-wrap {
  display: flex;
}

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

.icon-wrap > div {
  flex: 1;
}

.icon-block {
  display: flex;
  align-items: center;
}

.icon-inner h5 {
  margin: 0 0 0.75rem;
  font-size: var(--lengthMd1);
  font-weight: 600;
}

.icon-inner p {
  margin: 0;
  font-size: var(--lengthSm2);
}

.sub-header {
  margin: 0 0 2rem;
  font-size: var(--lengthMd3);
  font-weight: 600;
  color: var(--colorTextPrimary);
}

.para-text {
  margin: 0;
  font-size: var(--lengthSm3);
  color: var(--colorText);
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 1.5;
}

.about-right {
  position: relative;
}

.about-list {
  padding: 0;
  margin: 1.5rem 0;
  list-style-type: none;
}

.about-list li {
  display: flex;
  align-items: center;
  font-size: var(--lengthSm3);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin: 0.5rem 0;
}

.about-list li svg {
  margin-right: 0.5rem;
  height: 22px;
  width: 22px;
}

.about-list li span {
  flex: 1;
}

.solution-list {
  display: grid;
  margin-top: 3rem;
}

.news-list {
  display: grid;
  margin-top: 5rem;
}

.solution-block,
.news-block {
  border-radius: 1rem;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow8);
}

.solution-block img,
.news-block img {
  width: 100%;
  object-fit: cover;
  height: 338px;
}

.solution-block h4 {
  text-align: center;
  font-size: var(--lengthMd2);
  font-weight: 600;
  color: var(--colorTextPrimary);
  margin: 0;
  padding: 2rem;
}

.btn-row.center {
  justify-content: center;
}

.news-inner {
  padding: 2rem;
}

.news-inner h4 {
  margin: 0 0 1rem;
  font-weight: 600;
  color: var(--colorTextPrimary);
  font-size: var(--lengthMd2);
}

.blog-block h4 {
  margin: 1rem 0;
  font-weight: 600;
  color: var(--colorTextPrimary);
  font-size: var(--lengthMd2);
}

.news-inner p {
}

.news-inner a,
.content-left a,
.blog-block a,
.read-more {
  margin-top: 1rem;
  font-size: var(--lengthSm3);
  display: flex;
  font-weight: 500;
  color: var(--colorTextPrimary);
}

.footer-wrap {
  display: grid;
}

.footer-block {
}

.footer-block h3 {
  margin: 0 0 2rem;
  font-size: var(--lengthMd3);
  font-weight: 600;
  color: var(--colorTextPrimary);
}

.footer-links {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: var(--lengthMd2);
  font-weight: 500;
  color: #777;
}

.connect-social {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
}

.connect-social > li:not(:last-child) {
  margin-right: 1rem;
}

.connect-social a {
}

.contact-info {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
}

.contact-info a {
  display: flex;
  align-items: center;
}

.contact-info img {
  margin-right: 0.5rem;
}

.content-top {
  display: flex;
}

.content-top > div:not(:last-child) {
  margin-right: 2rem;
}

.content-block {
  transition: 0.5s all ease;
  text-align: center;
  padding: 1.75rem 1.5rem;
  background: #e9e9e9;
  border-radius: 0.5rem;
  position: relative;
  cursor: pointer;
}

.content-block h5 {
  margin: 0.75rem 0 0;
  font-size: var(--lengthSm3);
  font-weight: 600;
  color: #c2c2c2;
}

.content-block.current {
  background: var(--colorPrimary2);
}

.content-block.current h5 {
  color: #fff;
}

.content-block.current::before {
  content: " ";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border-width: 15px;
  border-style: solid;
  border-color: var(--colorPrimary2) transparent transparent transparent;
  animation: fadeIn 0.5s ease;
}

.content-block.current img {
  filter: brightness(2);
}

.content-div {
  display: flex;
  background: #fff;
  padding: 2.5rem 2.5rem 2.5rem 4rem;
  border-radius: 1rem;
  box-shadow: var(--shadow8);
  animation: fadeIn 0.5s ease;
}

.content-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-right {
}

.testimonial-section {
  height: 544px;
  background-image: url("../../assets/images/Group\ 4.png");
  background-position: center;
}

.testimonial-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-item {
  width: 42rem;
  margin: auto;
  max-width: 100%;
}

.testimonial-item p {
  color: #fff;
  font-weight: 500;
  font-size: var(--lengthMd3);
}

.testimonial-item h5 {
  color: #fff;
  font-weight: 600;
  font-size: var(--lengthLg1);
  margin: 2rem 0 0;
}

.testimonial-wrap .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.testimonial-wrap .owl-dots > button:not(:last-child) {
  margin-right: 0.5rem;
}

.testimonial-wrap .owl-dots button.active {
  background: #fff;
}

.testimonial-wrap .owl-dots button {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid #fff !important;
}

.newsletter-right {
  position: relative;
}

.newsletter-right input {
  border: 0;
  background: #fff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  width: 100%;
  font-size: var(--lengthMd1);
  font-weight: 600;
  font-family: "Gilmer", sans-serif !important;
}

.newsletter-right a {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translate(0, -50%);
}

.mob-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--colorPrimary2);
  border-radius: 50%;
  padding: 0 !important;
}

.mob-icon svg {
  fill: #fff;
}

.nav-bottom-inner > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.blog-list {
  display: grid;
}

.blog-block img {
  width: 100%;
  height: 350px;
  border-radius: 1rem;
  box-shadow: var(--shadow8);
}

.article-wrap img {
  margin: 0 0 2rem;
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 1rem;
}

#contentContainer > div:not(.showContainer) {
  display: none;
}

.about-header-section {
  height: 413px;
  background-image: url("../images/about_banner.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-head-inner {
}
.about-head-inner h1 {
  text-align: center;
  margin: 0 0 1.5rem;
  font-size: 4.5rem;
  color: #fff;
}
.breadcrumb {
}
.breadcrumb ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  color: #fff;
  justify-content: center;
}
.breadcrumb li {
  font-size: var(--lengthMd2);
}
.breadcrumb > ul > li:not(:last-child) {
  margin-right: 1rem;
}
.breadcrumb li svg {
  fill: #fff;
  height: 15px;
  width: 15px;
}
.breadcrumb li.current {
  color: var(--colorPrimary);
}
.about-header-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.75;
  background: #000;
}
.about-header-section * {
  position: relative;
  z-index: 1;
}
.about-content-img img {
  border-radius: 2rem;
  max-width: 100%;
}
.about-content-inner {
  display: flex;
  align-items: center;
}

.color-light {
  color: #fff !important;
}

.color-dark {
  color: var(--colorTextPrimary);
}

.color-accent {
  color: var(--colorAccent);
}

.color-primary {
  color: var(--colorPrimary);
}

.color-primary-2 {
  color: var(--colorPrimary2);
}
.main-header {
  margin: 0 0 1rem;
  font-size: var(--lengthLg2);
}
.about-list-block {
  margin: 2rem 0 3rem;
}
.about-list-block {
  display: flex;
}
.about-list-block img {
}
.about-list-block > div:first-child {
  margin-right: 1.5rem;
}
.about-list-block h4 {
  margin: 0 0 1rem;
}
.help-section {
  background-image: url("/assets/images/features-three--about-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.help-inner {
  text-align: center;
}
.help-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 6rem;
  grid-gap: 3rem;
}
.help-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 45px 35px 45px;
  background: #fff;
}
.help-block {
}
.help-block > img {
  margin-bottom: 1.5rem;
}
.help-block > a {
  font-size: var(--lengthMd2);
  font-weight: 600;
  margin: 0 0 1.5rem;
}
.help-block > a:last-child {
  width: 45px;
  height: 45px;
  border-radius: 7px;
  margin: 1.5rem 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(39 187 213 / 10%);
}
.help-block svg,
.overlap-block svg {
  width: 20px;
  height: 20px;
  fill: var(--colorPrimary);
  transition: 0.5s all ease;
}
.choose-inner {
  display: flex;
  align-items: center;
}
.choose-img img {
  border-radius: 2rem;
  max-width: 100%;
}
.about-list-block svg {
  fill: var(--colorPrimary);
  width: 30px;
  height: 30px;
}
.overlap-inner {
  display: flex;
  justify-content: center;
}
.overlap-block {
  display: flex;
  align-items: center;
  max-width: 585px;
  box-shadow: var(--shadow8);
  padding: 2.5rem;
}
.overlap-block img {
  margin-right: 1.5rem;
}
.overlap-block a {
  font-size: var(--lengthMd2);
  font-weight: 600;
  flex: 1;
}
.overlap-block > a:last-child {
  width: 60px;
  height: 60px;
  border-radius: 7px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(39 187 213 / 10%);
  transition: 0.5s all ease;
  flex: none;
}
.overlap-block > a:last-child:hover {
  background: var(--colorPrimary);
}
.overlap-block > a:last-child:hover svg {
  fill: #fff;
}
.about-item {
  padding: 60px 0;
  border-radius: 2px;
  border: 1px solid #eee;
  transition: 0.8s all ease;
}
.about-item:hover img,
.sponsor-item:hover img {
  filter: grayscale(1);
}
.about-item img,
.sponsor-item img {
  width: auto !important;
  margin: auto;
  transition: 0.8s all ease;
}
.service-inner {
  display: flex;
}
.float-block {
  position: relative;
  display: block;
  padding: 32px 40px 26px;
  border-radius: 7px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgb(207 207 207 / 50%);
  margin-bottom: 2.5rem;
}

.float-block h3 {
  color: #2e2e36;
  font-size: var(--lengthMd3);
  font-weight: 600;
  margin: 0 0 1.5rem;
}
.float-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.float-list a {
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  transition: 0.8s all ease;
  font-size: var(--lengthMd1);
  font-weight: 500;
  letter-spacing: 0.4px;
  color: #74787c;
}
.float-list a:hover {
  border-top: 1px solid var(--colorPrimary);
  color: var(--colorPrimary);
}
.float-list a:hover svg {
  fill: var(--colorPrimary);
}
.float-list a svg {
  fill: #74787c;
  transition: 0.8s all ease;
  height: 12px;
}
.contact-custom-form input {
  position: relative;
  display: block;
  background: #f4f4f5;
  width: 100%;
  height: 60px;
  border: none;
  color: #74787c;
  font-size: 15px;
  font-weight: 500;
  padding: 0 30px;
  margin-bottom: 10px;
  border-radius: 7px;
  transition: all 500ms ease;
  outline: none;
  font-family: "Gilmer", sans-serif !important;
}

.contact-custom-form textarea {
  position: relative;
  display: block;
  background: #f4f4f5;
  width: 100%;
  height: 60px;
  border: none;
  color: #74787c;
  font-size: 15px;
  font-weight: 500;
  padding: 15px 30px;
  margin-bottom: 10px;
  border-radius: 7px;
  transition: all 500ms ease;
  outline: none;
  min-height: 140px;
  font-family: "Gilmer", sans-serif !important;
}
.contact-custom-form {
  grid-gap: 0 !important;
}
.download-btn a {
  position: relative;
  padding: 17px 25px 18px;
  background: #f4f4f5;
  border-radius: 7px;
  width: 100%;
  color: #2e2e36;
  font-size: var(--lengthMd1);
  line-height: 26px;
  font-weight: 500;
  font-family: var(--thm-manrope-font);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.download-btn a svg {
  transition: all 200ms linear;
  transition-delay: 0.1s;
}
.download-btn a:hover svg {
  fill: #fff;
}
.download-btn a:hover {
  background: var(--colorPrimary);
  color: #fff;
}
.service-right > *:not(:last-child) {
  margin: 0 0 1.75rem;
}
.header-1 {
  color: #2e2e36;
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
}
.header-2 {
  color: #2e2e36;
  font-size: 27px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}
.header-3 {
  color: #2e2e36;
  font-size: 20px;
  line-height: 35px;
  font-weight: 500;
  margin: 0;
  font-family: var(--thm-manrope-font);
  margin-bottom: 15px;
}
.service-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.service-list svg {
  fill: var(--colorPrimary);
  margin-right: 1rem;
}
.service-list li {
  display: flex;
  align-items: center;
  font-size: var(--lengthMd1);
  margin: 1rem 0;
  color: var(--colorText);
}
.service-right img {
  max-width: 100%;
}
.contact-header-section {
  height: 400px;
}
#map {
  height: 100%;
}
.contact-body-inner {
  display: flex;
}
.contact-left h2 {
  margin: 0 0 1.5rem;
}
.contact-details {
  margin-top: 1.5rem;
}
.contact-details-block {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
}
.contact-details-block > div:first-child {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgb(39 187 213 / 15%);
  margin-right: 1rem;
}
.contact-details-block > div > svg {
  height: 20px;
  width: 20px;
  fill: var(--colorPrimary2);
}
.contact-details-block ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.contact-details-block li {
  display: flex;
  align-items: center;
}
.contact-details-block li > div:first-child {
}
.contact-details-block li p,
.contact-details-block li a {
  margin: 0.25rem 0;
  color: #6a7c92;
  font-size: var(--lengthSm3);
  font-weight: 500;
}

.contact-right {
  background-color: #fff;
  padding: 50px;
  box-shadow: 0px 20px 30px 5px rgb(61 1 4 / 10%);
}
.contact-right h1 {
  margin: 0 0 2rem;
}
.contact-form {
  margin-top: 2rem;
  grid-gap: 1rem 2.5rem !important;
}
.contact-form input, .contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  background-color: rgba(90, 73, 248, 0.1);
  height: 45px;
  border-radius: 2px;
  box-shadow: none;
  border: none;
  outline: none;
  font-family: "Gilmer", sans-serif !important;
}

.contact-form textarea {
  height: inherit;
  min-height: 130px;
}
.sponsor-item {
  padding: 2rem 1rem;
}
.footer-info {
}
.footer-info-inner {
  background: linear-gradient(
    to right,
    var(--colorPrimary2),
    var(--colorPrimary)
  );
  display: flex;
  align-items: center;
  border-radius: 2px;
}
.footer-info-inner .footer-info-list:not(:last-of-type) {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}
.footer-info-list {
  width: 33.33%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.footer-info-list h3 {
  font-size: 16px;
  color: #fff;
  text-align: left;
  margin: 0;
  font-weight: 500;
  line-height: 1.5;
}
.footer-info-list svg {
  width: 40px;
  fill: #fff;
  margin-right: 20px;
}

footer {
  position: relative;
}
@media (min-width: 769px) {
  .contact-right {
    margin-top: -120px;
  }
  .col-span-2 {
    grid-column: 1 / span 2;
  }
  .contact-right {
    margin-left: 6rem;
  }
  .service-left {
    width: 32%;
    padding-right: 1rem;
  }
  .service-right {
    flex: 1;
    padding-left: 5rem;
  }
  .overlap-block a {
    margin-right: 3rem;
  }
  .about-content-block,
  .choose-block {
    padding: 0 85px;
  }
  .blog-list {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 4rem;
  }
  .nav-right > a:not(:last-child),
  .nav-bottom-inner > ul > li:not(:last-child) > a {
    margin-right: 1.5rem;
  }
  .mob-nav-btn {
    display: none;
  }
  .content-top {
    justify-content: center;
  }
  .contact-info > a:not(:last-child) {
    margin-right: 1rem;
  }
  .footer-wrap {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 4rem;
  }
  .newsletter-right {
    width: 27rem;
  }
  .reach-wrap > div.custom-form {
    padding: 0 8rem 4rem;
  }
  .about-right > img:first-child {
    position: relative;
    z-index: 1;
    right: 5rem;
    width: 399px;
    height: 378px;
  }
  .about-right > img:last-child {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    right: 0;
    height: 467px;
    object-fit: contain;
    max-height: 100%;
  }
  .content-left {
    padding-right: 3rem;
  }
  .icon-block img {
    margin-right: 1.5rem;
  }
  .nav-left > a:first-child {
    padding-left: 0;
  }
  .newsletter-left {
    width: 55%;
  }
  .solution-list,
  .news-list {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 4rem 8rem;
  }
  .about-left {
    width: 55%;
    margin-right: 10rem;
  }
  .about-right {
    width: 45%;
    display: flex;
    align-items: center;
  }
  .icon-wrap > div:not(:last-child) {
    margin-right: 5rem;
  }
  a {
    cursor: pointer;
  }
  .mdl-xl {
    width: 90vw;
  }
  .mdl-lg {
    width: 80vw;
  }
}

@media only screen and (max-width: 768px) {
  .footer-info-inner {
    flex-wrap: wrap;
  }
  .footer-info-list {
    width: 100%;
  }
  .footer-info-inner .footer-info-list:not(:last-of-type) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
  .contact-right {
    margin-top: 2rem;
    padding: 2rem;
  }
  .overlap-block > a:last-child {
    margin: 1rem 1rem 0;
  }
  .overlap-block {
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
  .about-content-block,
  .choose-block {
    margin-top: 2rem;
  }
  .blog-list {
    grid-gap: 2rem;
  }
  .blog-block img {
    height: 250px;
  }
  .article-wrap img {
    height: 350px;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-bottom-inner > ul a {
    padding: 1rem;
    text-align: center;
    justify-content: center;
  }
  .nav-links > li:last-child {
    display: none;
  }
  .nav-bottom-inner > div:first-child img {
    height: 70px;
  }
  .nav-links > li:last-child {
    padding: 14px 0px;
  }
  .nav-links > li:not(:last-child) {
    border-bottom: 1px solid #eee;
  }
  .nav-links {
    position: absolute;
    overflow: hidden;
    right: 0;
    background: #fff;
    width: calc(100vw - 2rem);
    border-radius: 1rem;
    top: 5rem;
    transition: 0.8s all ease;
    flex-direction: column;
    z-index: 100;
  }
  .nav-links.openNav {
    max-height: 300px;
  }
  .nav-links:not(.openNav) {
    max-height: 0;
  }
  .mob-nav-btn {
    background: transparent;
    border: 2px solid var(--colorPrimary2);
    padding: 0.5rem;
    border-radius: 0.75rem;
    border-bottom: 4px solid var(--colorPrimary2);
  }
  .mob-nav-btn svg {
    fill: var(--colorPrimary2);
    height: 20px;
    width: 20px;
  }
  .content-top {
    overflow-x: scroll;
  }
  .content-block {
    padding: 1rem;
  }
  .content-block img {
    height: 30px;
  }
  .content-top > div:not(:last-child) {
    margin-right: 1rem;
  }
  .contact-info > a:not(:last-child) {
    margin-bottom: 1rem;
  }
  .contact-info {
    align-items: flex-start;
  }
  .footer-wrap {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 2rem;
  }
  .newsletter-right input {
    padding: 1.5rem 8rem 1.5rem 1.5rem;
  }
  .newsletter-right {
    width: 100%;
  }
  .reach-wrap > div.custom-form {
    padding: 0 0 2rem;
  }
  .news-list {
    margin-top: 0;
    grid-gap: 1rem;
  }
  .solution-list {
    grid-gap: 1rem;
  }
  .solution-block img,
  .news-block img {
    height: 250px;
  }
  .nav-left {
    margin-bottom: 0.5rem;
  }
  .about-right > img:first-child {
    max-width: 100%;
    position: relative;
    z-index: 1;
  }
  .about-right > img:last-child {
    max-width: 100%;
    margin-top: -10rem;
  }
  .content-right,
  .about-right,
  .newsletter-left {
    margin-bottom: 1rem;
  }
  .content-div,
  .testimonial-wrap {
    padding: 2rem;
  }
  .content-right img {
    max-width: 100%;
  }
  .content-div,
  .about-wrap,
  .choose-inner {
    flex-direction: column-reverse;
  }
  .icon-inner {
    text-align: center;
  }
  .icon-wrap > .icon-block:not(:last-child) {
    margin-right: 1rem;
  }
  .icon-block img {
    margin-bottom: 1rem;
    height: 30px;
  }
  .home-section {
    height: 350px;
  }
  .nav-top-inner {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .nav-left a,
  .nav-right a {
    padding: 0.5rem;
  }
  .grid._4,
  .custom-grid._4,
  .grid._2,
  .custom-grid._2,
  .help-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .pad-top-lg {
    padding-top: 60px;
  }
  .pad-bottom-lg {
    padding-bottom: 60px;
  }
  .pad-top-md {
    padding-top: 40px;
  }
  .pad-bottom-md {
    padding-bottom: 40px;
  }
  .pad-top-sm {
    padding-top: 20px;
  }
  .pad-bottom-sm {
    padding-bottom: 20px;
  }
  .pad-top-xs {
    padding-top: 10px;
  }
  .pad-bottom-xs {
    padding-bottom: 10px;
  }
  /* fstart */
  .text-lg-4 {
    font-size: 2.5rem;
  }
  .text-lg-3 {
    font-size: var(--lengthLg2);
  }
  .text-lg-2,
  .home-wrap h1,
  .about-head-inner h1,
  .header-1 {
    font-size: var(--lengthLg1);
  }
  .text-md-2,
  .footer-links a,
  .breadcrumb li,
  .overlap-block a,
  .header-3 {
    font-size: var(--lengthMd1);
  }
  .text-md-3,
  .sub-header,
  .testimonial-item p,
  .footer-block h3,
  .float-block h3 {
    font-size: var(--lengthMd2);
  }
  .text-lg-1,
  .testimonial-item h5,
  .main-header,
  .header-2 {
    font-size: var(--lengthMd3);
  }
  .text-md-1,
  .icon-inner h5,
  .float-list a,
  .download-btn a,
  .service-list li {
    font-size: var(--lengthSm3);
  }
  .text-sm-3,
  .custom-btn,
  .nav-left a,
  .nav-right a,
  .nav-bottom-inner > ul a,
  .para-text,
  .news-inner a,
  .content-left a,
  .about-list li,
  .newsletter-right input::placeholder,
  .content-block h5 {
    font-size: var(--lengthSm2);
  }
  .icon-inner p {
    font-size: var(--lengthSm1);
  }
  /* dnone */
  .welcome-image img {
    display: none;
  }
  /* fcolumn */
  .nav-top-inner,
  .icon-wrap > div,
  .newsletter-wrap,
  .contact-info,
  .about-content-inner,
  .overlap-inner,
  .service-inner,
  .contact-body-inner {
    flex-direction: column;
  }
  /* w100 */
  .trial-right > .input-style {
    width: 100%;
  }
}

@-webkit-keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.scaleInCenter {
  -webkit-animation-name: scale-in-center;
  animation-name: scale-in-center;
}

@-webkit-keyframes scale-out-center {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
}

@keyframes scale-out-center {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
}

.scaleOutCenter {
  animation: scale-out-center 0.8s ease;
}


/* EditCss */

.page-ul li{
  margin: 0;
  font-size: var(--lengthSm3);
  color: var(--colorText);
  font-weight: 500;
  letter-spacing: 0.5px;
  line-height: 2.5;
}

.page-ul{
  padding: 15px!important
}

.service-right img{
  width: 100%!important;
}

.img-fluid{
  max-width: 100%;
}

.cus-font{
  font-size: 22px!important;
  font-weight: bold!important;
  color: #000!important;
}

.page_active{
  color: #27bbd5!important;
}

.custom-footer{
  background: #e6e6e6;
}
.footer-block li a{
  font-size: 15px!important;
}

.custom-btn.outline.primary{
  color: #27bbd5;
}


/*CMS*/
.contact-info a{text-decoration: none;color:inherit;}

.modify-ul ul{
  padding:0;
}

.modify-ul ul li {
    margin-bottom: 10px;
    list-style: none;
    font-weight: normal;
}

.modify-ul ul li::before {
  content: "\2713";
  color: #fff;
  background: #27bbd5;
  padding: 2px 6px 4px 6px;
  font-weight: bold;
  border-radius: 50%;
  margin-right: 10px;
}