:root {
  --color-blue: #014AC8;
  --color-dark-blue: #0A5A92;
  --color-grey: #494949;
  --color-white: #fff;
  --color-black: #2D2D2D;
  --color-orange: #F68A22;
  --color-l-gray: #F7F7F7;
  --gradient: linear-gradient(-90deg, rgba(0, 52, 189, 1) 0%, rgba(1, 166, 252, 1) 100%);
  --gradient2: linear-gradient(45deg, rgba(7, 132, 219, 1) 0%, rgba(0, 150, 255, 1) 100%);
  --font: "Poppins", sans-serif;
}

body {
  background: var(--color-white);
  font-size: 16px;
  color: var(--text-grey);
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-family: var(--font);
}

strong {
  font-weight: 600 !important;
}

::selection {
  background: #666;
  color: var(--color-white);
}

::-webkit-scrollbar {
  width: 5px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-grey-1);
}

::-webkit-scrollbar-thumb {
  background: var(--color-red);
  border-radius: 15px;
}

a {
  text-decoration: none;
  color: #41ABE1;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  max-width: 100%;
}

h1,
h2,
h3 {
  margin: 0;
  padding: 0;
  font-weight: 300;
  color: var(--color-dark-blue);
  line-height: normal;
  font-size: 30px;
}



@media (max-width: 767px) {
  h2 {
    font-size: 22px;
  }

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

ul.txt-list {
  list-style: disc;
  padding-left: 30px;
}

ul.txt-list li {
  margin-bottom: 5px;
}

.terms-box {
  margin-bottom: 30px;
}

figure {
  margin: 0;
}

p {
  margin-bottom: 10px;
}

iframe {
  display: block;
}

button:focus {
  outline: none;
  box-shadow: none;
}

section {
  overflow-x: clip;
}

.form-control {
  border: solid 1px #ddd;
  border-radius: 5px;
  font-size: 14px;
  padding: 10px 15px;
  background: var(--color-white);
  color: var(--color-black);
}

textarea {
  height: 85px;
  resize: none;
}

.img-cover {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

.heading-One {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-black);
}

.heading-Two {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-black);
}

.heading-Three {
  font-size: 16px;
  font-weight: 500;
  color: #8F8F8F;
}

.heading-four {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-black);
}

.heading-five {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-black);
}

.image-round {
  border-radius: 50%;
  width: 50px;
  height: 50px;
  overflow: hidden;
}

.font-12 {
  font-size: 12px;
}

.font-13 {
  font-size: 13px;
}

.font-14 {
  font-size: 14px;
}

.font-15 {
  font-size: 15px;
}

.font-16 {
  font-size: 16px;
}

.font-17 {
  font-size: 17px;
}

.font-18 {
  font-size: 16px;
}

@media (min-width: 1200px) {
  .font-18 {
    font-size: 18px;
  }
}

.font-20 {
  font-size: 18px;
}

@media (min-width: 1366px) {
  .font-20 {
    font-size: 20px;
  }
}

.font-22 {
  font-size: 20px;
}

@media (min-width: 1366px) {
  .font-22 {
    font-size: 22px;
  }
}

.font-30 {
  font-size: 30px;
}

@media (min-width: 1366px) {
  .font-30 {
    font-size: 28px;
  }
}

.font-50 {
  font-size: 32px;
}

@media (min-width: 576px) {
  .font-50 {
    font-size: 36px;
  }
}

@media (min-width: 1024px) {
  .font-50 {
    font-size: 42px;
  }
}

@media (min-width: 1366px) {
  .font-50 {
    font-size: 50px;
  }
}

.font-70 {
  font-size: 40px;
}

@media (min-width: 768px) {
  .font-70 {
    font-size: 48px;
  }
}

@media (min-width: 1024px) {
  .font-70 {
    font-size: 55px;
  }
}

@media (min-width: 1200px) {
  .font-70 {
    font-size: 62px;
  }
}

@media (min-width: 1366px) {
  .font-70 {
    font-size: 70px;
  }
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.gap-1x {
  gap: 1px;
}

.gap-2x {
  gap: 2px;
}

.gap-3x {
  gap: 3px;
}

.gap-4x {
  gap: 4px;
}

.gap-5x {
  gap: 5px;
}

.text-black {
  color: var(--color-black) !important;
}

.text-red {
  color: var(--color-red) !important;
}

.text-white {
  color: var(--color-white) !important;
}

.text-left {
  text-align: left !important;
}

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

.text-right {
  text-align: right !important;
}

@media (min-width: 1400px) {
  .container {
    max-width: 1170px;
  }
}

.default-padding {
  padding-block: 60px;
}

@media (min-width: 1024px) {
  .default-padding {
    padding-block: 90px;
  }
}

@media (min-width: 1366px) {
  .default-padding {
    padding-block: 110px;
  }
}

.default-margin {
  margin-block: 50px 60px;
}

@media (min-width: 1024px) {
  .default-margin {
    margin-block: 90px;
  }
}

@media (min-width: 1366px) {
  .default-margin {
    margin-block: 110px;
  }
}

.vertical {
  display: flex;
  flex-direction: column;
}

.y-center {
  display: flex;
  align-items: center;
}

.down-arrow {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #8a8a8d;
  transition: border-color 0.3s ease;
}

.flip-x {
  transform: scaleX(-100%);
}

.ul-primary {
  gap: 15px;
}

.ul-primary li {
  display: flex;
  gap: 11px;
}

.ul-primary li::before {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  background: var(--color-red);
  margin-top: 7px;
}

.orangTitle {
  color: #a4a4a3;
  font-size: 20px;
  font-weight: 300;
  margin-top: 10px;
}

.gradient {
  background: var(--gradient);
}

.border-radius-25 {
  border-radius: 20px;
}

.btn-primary {
  background: var(--gradient);
  color: var(--color-white);
  padding: 12px 25px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border: 0;
  font-size: 14px;
  border-radius: 8px;
}

.btn-primary:hover {
  background: var(--color-blue);
}

.btn-secondary {
  background: var(--gradient2) !important;
  color: var(--color-white) !important;
  padding: 10px 15px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  border: 0;
  font-size: 14px;
  border-radius: 8px;
}

.btn-secondary:hover {
  background: var(--color-blue) !important;
  color: var(--color-white);
}

.btn-sm {
  background: var(--gradient);
  color: var(--color-white);
  padding: 6px 15px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  border: 0;
  font-size: 12px;
  border-radius: 8px;
}

.btn-sm:hover {
  background: var(--color-blue);
}

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

.bg-text {
  color: #eee;
  font-size: 100px;
  font-weight: 800;
  text-transform: uppercase;
  width: fit-content;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  line-height: 1;
}

.border-shape {
  width: 555px;
  height: 555px;
  border: solid 20px #f4f4f4;
  position: relative;
}

.border-shape::after {
  content: "";
  width: 47px;
  height: 37px;
  background: #f4f4f4;
  outline: solid 28px var(--color-white);
  border-right: solid 10px #fff;
  position: absolute;
  top: 8px;
  right: 8px;
}

.border-shape .bg-text {
  left: calc(100% + 3px);
  top: -45px;
  z-index: 1;
  font-size: 60px;
}

@media (min-width: 1024px) {
  .border-shape .bg-text {
    font-size: 75px;
  }
}

@media (min-width: 1366px) {
  .border-shape .bg-text {
    top: -75px;
    font-size: 100px;
  }
}

.shape-wrap {
  position: absolute;
  top: 0;
  z-index: -1;
}

.shape-wrap .shape {
  width: 60px;
  height: 85px;
  display: block;
}

.shape-wrap .shape:nth-child(1) {
  background: var(--color-red);
}

.shape-wrap .shape:nth-child(2),
.shape-wrap .shape:nth-child(3) {
  width: 70px;
  background: var(--color-grey-1);
  position: absolute;
}

.shape-wrap .shape:nth-child(2) {
  top: 100%;
}

.shape-wrap .shape:nth-child(3) {
  bottom: 100%;
}

@media (min-width: 1200px) {
  .shape-wrap .shape {
    width: 80px;
    height: 110px;
  }

  .shape-wrap .shape:nth-child(2),
  .shape-wrap .shape:nth-child(3) {
    width: 100px;
  }
}

@media (min-width: 1366px) {
  .shape-wrap .shape {
    width: 140px;
    height: 180px;
  }

  .shape-wrap .shape:nth-child(2),
  .shape-wrap .shape:nth-child(3) {
    width: 190px;
  }
}

@media (max-width: 767px) {
  .shape-wrap .shape {
    width: 30px;
    height: 40px;
  }

  .shape-wrap .shape:nth-child(2),
  .shape-wrap .shape:nth-child(3) {
    width: 40px;
  }
}

.shape-wrap.left {
  left: 0;
}

.shape-wrap.left .shape:nth-child(2),
.shape-wrap.left .shape:nth-child(3) {
  left: 100%;
}

.shape-wrap.left .shape:nth-child(2) {
  left: 100%;
}

.shape-wrap.right {
  right: 0;
}

.shape-wrap.right .shape:nth-child(2),
.shape-wrap.right .shape:nth-child(3) {
  right: 100%;
}

.shape-wrap.right .shape:nth-child(2) {
  right: 100%;
}

.shape.red {
  background: var(--color-red);
}

.shape.white {
  background: var(--color-white);
}

.shape.grey {
  background: var(--color-grey-1);
}

.w-bg-block {
  background: #fff;
  padding: 15px 20px;
  border-radius: 5px;
  box-shadow: 0 3px 2px 0px rgba(0, 0, 0, 0.0588235294);
}

hr {
  border: 0;
  background-color: #a7c9db;
  height: 2px;
}

.to-top {
  background: transparent;
  border: none;
  margin: 45px auto;
  display: flex;
  padding: 3px;
}

@media (min-width: 1024px) {
  .to-top {
    margin-block: 70px;
  }
}

@media (max-width: 767px) {
  .to-top img {
    max-width: 50px;
  }
}

.color-w {
  color: var(--color-white) !important;
}

.bg-w {
  background: var(--color-white) !important;
}

.bg-b {
  background: var(--color-black) !important;
}

.bg-o {
  background: var(--color-orange) !important;
}

.bg-g {
  background: var(--color-l-gray) !important;
}

.tableView th {
  background: transparent;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  color: #757575;
}

.tableView tr {
  border-bottom-width: 3px;
  border-color: #EFF7FF;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 600;
  vertical-align: middle;
}

.z-index {
  z-index: 1;
  position: relative;
}

.bSpace100 {
  margin-bottom: 100px;
}

.bSpace70 {
  margin-bottom: 70px;
}

.preloader {
  position: fixed;
  background: #fff;
  z-index: 99999;
  border-radius: 0px;
  padding: 15px 15px 10px 15px;
  width: 100%;
  height: 100%;
  opacity: 0.9;
}

.preloader .loader {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  animation: pulse 1s infinite;
  left: 50%;
  top: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}

header {
  background: #fff;
  border-radius: 10px;
  padding: 10px 15px;
  box-shadow: 0 6px 10px 0px rgba(0, 0, 0, 0.0392156863);
  position: absolute;
  top: 30px;
  z-index: 99;
  width: 100%;
  transform: translate(-50%);
  left: 50%;
  max-width: 1170px;
  width: 100%;
  transition: all 0.5s;
}

header.newClass {
  transition: all 0.5s;
  position: fixed;
}

@media (max-width: 767px) {
  header {
    width: 100%;
    top: 0px;
    border: 0;
  }

  .bSpace100 {
    margin-bottom: 50px;
  }
}

header .btn-secondary {
  font-size: 12px;
}

header .tabNav {
  padding: 20px;
  background: rgb(236, 250, 255);
  background: linear-gradient(180deg, rgb(236, 250, 255) 0%, rgb(255, 255, 255) 100%);
  -webkit-border-top-left-radius: 10px;
  -webkit-border-bottom-left-radius: 10px;
  -moz-border-radius-topleft: 10px;
  -moz-border-radius-bottomleft: 10px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

header .tabNav a {
  color: #000;
  padding: 10px 15px;
  display: block;
  margin-bottom: 3px;
  border: 1px solid transparent;
  font-size: 14px;
}

header .tabNav a:hover {
  background: #fff;
  padding: 10px 15px;
  border: 1px solid #ABD8E9;
  border-radius: 10px;
}

header .tabNav .tabact {
  background: #fff;
  padding: 10px 15px;
  border: 1px solid #ABD8E9;
  border-radius: 10px;
  margin-bottom: 3px;
}

header .menuContent {
  padding: 0px;
}

header .menuContent .bdr-right {
  border-right: 1px solid #eee;
}

header .menuContent .menuHeading {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}

header .menuContent .menuHeading img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

header .menuContent .menuHeading a {
  border-radius: 10px;
  border: 1px solid #D8DADB;
  padding: 10px 25px;
  color: #000;
  display: inline-block;
}

header .menuContent .menuHeading a:hover {
  background: #000;
  color: #fff;
}

header .menuContent h3 {
  font-size: 16px;
  color: #494949;
  font-weight: 700;
  margin-top: 20px;
  position: relative;
}

header .menuContent h3::after {
  content: "";
  width: 35px;
  height: 1px;
  background: #1B75BC;
  position: absolute;
  left: 0;
  bottom: -20px;
}

header .menuContent ul {
  margin-top: 35px;
  column-count: 2;
}

header .menuContent ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  font-size: 14px;
}

header .menuContent ul li::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: 6px;
  left: 0;
  border-radius: 50%;
  background: #00A3FF;
}

header .menuContent .menuTesti {
  padding-right: 10px;
}

header .menuContent .menuTesti .block {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  margin-top: 20px;
}

header .menuContent .menuTesti h3::after {
  display: none;
}

header .menuContent .menuTesti h4 {
  font-size: 16px;
}

.bannerArea {
  padding-top: 150px;
  position: relative;
  height: 100%;
  padding-bottom: 150px;
  margin-bottom: 150px;
  overflow: hidden;
  -webkit-border-bottom-right-radius: 100px;
  -webkit-border-bottom-left-radius: 100px;
  -moz-border-radius-bottomright: 100px;
  -moz-border-radius-bottomleft: 100px;
  border-bottom-right-radius: 100px;
  border-bottom-left-radius: 100px;
}

@media (max-width: 767px) {
  .bannerArea {
    padding-top: 130px;
    -webkit-border-bottom-right-radius: 0px;
    -webkit-border-bottom-left-radius: 0px;
    -moz-border-radius-bottomright: 0px;
    -moz-border-radius-bottomleft: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
    padding-bottom: 30px;
    margin-bottom: 50px;
  }

  .bannerArea span {
    display: block;
    width: 100%;
  }
}

.bannerArea::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #E8F7FF;
  height: 100%;
  width: 100%;
  -webkit-border-bottom-right-radius: 100px;
  -webkit-border-bottom-left-radius: 100px;
  -moz-border-radius-bottomright: 100px;
  -moz-border-radius-bottomleft: 100px;
  border-bottom-right-radius: 100px;
  border-bottom-left-radius: 100px;
  z-index: -1;
}

@media (max-width: 767px) {
  .bannerArea::before {
    -webkit-border-bottom-right-radius: 0px;
    -webkit-border-bottom-left-radius: 0px;
    -moz-border-radius-bottomright: 0px;
    -moz-border-radius-bottomleft: 0px;
    border-bottom-right-radius: 0px;
    border-bottom-left-radius: 0px;
  }
}

.bannerArea .roundshade {
  border-radius: 100%;
  z-index: -1;
  filter: blur(150px);
  position: absolute;
  width: 500px;
  height: 500px;
}

.bannerArea .roundshade-1 {
  background: #C0D1FF;
  position: absolute;
  left: 0;
  top: 0;
}

.bannerArea .roundshade-2 {
  background: #3312FF;
  position: absolute;
  right: 150px;
  bottom: 0;
  opacity: 0.3;
}

.bannerArea .roundshade-3 {
  background: #00A3FF;
  position: absolute;
  left: 150px;
  bottom: 0;
  opacity: 0.5;
}

.bannerArea h1 {
  font-size: 50px;
  margin-bottom: 30px;
}

.bannerArea h1 span {
  background: linear-gradient(45deg, rgb(1, 153, 244) 0%, rgb(1, 71, 199) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 767px) {
  .bannerArea h1 {
    font-size: 30px;
  }
}

.bannerArea .tabSection {
  padding: 30px 0 0;
}

.bannerArea .tabSection .owl-stage {
  margin: auto;
}

.bannerArea .tabSection #tabs-nav {
  list-style: none;
  margin: 0 auto;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 700px;
}

@media (max-width: 767px) {
  .bannerArea .tabSection #tabs-nav {
    align-items: start;
    justify-content: left;
  }
}

.bannerArea .tabSection #tabs-nav .icons {
  font-weight: bold;
  margin: 0 0px;
  padding: 8px 10px;
  cursor: pointer;
  text-align: center;
}

.bannerArea .tabSection #tabs-nav .icons span {
  display: block;
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  border-radius: 12px;
  margin: 0 auto 0px;
}

.bannerArea .tabSection #tabs-nav .icons span img {
  width: 40px;
  object-fit: contain;
  height: 30px;
}

@media (max-width: 767px) {
  .bannerArea .tabSection #tabs-nav .icons span img {
    filter: brightness(0) invert(1);
  }
}

.bannerArea .tabSection #tabs-nav .icons a {
  text-decoration: none;
  color: #454545;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .bannerArea .tabSection #tabs-nav .icons a {
    color: #fff;
    opacity: 0.8;
  }
}

.bannerArea .tabSection #tabs-nav .owl-item.active {
  transition: all 0.5s;
}

.bannerArea .tabSection #tabs-nav .owl-item.active:hover {
  margin-top: -5px;
  transition: all 0.5s;
}

.bannerArea .tabSection #tabs-nav .owl-item.active.center a {
  text-decoration: none;
  color: #454545;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .bannerArea .tabSection #tabs-nav .owl-item.active.center a {
    color: #fff;
    opacity: 1;
  }
}

.bannerArea .tabSection #tabs-nav .owl-item.active.center span {
  background: var(--color-blue);
  opacity: 1;
}

.bannerArea .tabSection #tabs-nav .owl-item.active.center span img {
  filter: brightness(0) invert(1);
  opacity: 1;
}

.bannerArea .tabSection tabs-nav .icons a {
  text-decoration: none;
  color: #454545;
  font-weight: 300;
  font-size: 14px;
  text-transform: uppercase;
}

.bannerArea .tabSection .tab-content {
  padding: 0px 0 50px;
  background: transparent;
}

@media (max-width: 767px) {
  .bannerArea .tabSection .tab-content {
    padding: 0px;
  }
}

.bannerArea .tabSection .tab-content .bigImage {
  text-align: center;
  bottom: 0;
  opacity: 0;
  transition: all 0.5s;
}

.bannerArea .tabSection .tab-content .smallImage {
  position: absolute;
  right: 0;
  bottom: -50px;
}

@media (max-width: 767px) {
  .bannerArea .tabSection .tab-content .smallImage {
    position: absolute;
    right: 30px;
    bottom: 10px;
    width: 70%;
  }
}

.bannerArea .tabSection .tab-content .contentBlock {
  position: absolute;
  left: 0;
  bottom: 50px;
  border-radius: 20px;
  padding: 50px;
  background: var(--gradient2);
  opacity: 0;
  transition: all 0.5s;
}

.bannerArea .tabSection .tab-content .contentBlock h2 {
  font-size: 20px;
  color: var(--color-white);
  line-height: 26px;
  margin-bottom: 20px;
}

.bannerArea .tabSection .tab-content .contentBlock h2 span {
  font-size: 16px;
  display: block;
  font-weight: 300;
}

.bannerArea .tabSection .tab-content .contentBlock ul li {
  font-size: 16px;
  color: #fff;
  position: relative;
  padding-left: 35px;
  margin: 8px 0;
}

.bannerArea .tabSection .tab-content .contentBlock ul li::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../images/tick.svg);
  position: absolute;
  left: 0;
  top: 0;
}

.bannerArea .tabSection .tab-content .contentBlock .sm-bttn {
  border: 1px solid #fff;
  padding: 6px 12px;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  margin-top: 15px;
  display: inline-block;
  transition: all 0.5s;
}

.bannerArea .tabSection .tab-content .contentBlock .sm-bttn:hover {
  background: #fff;
  color: var(--color-blue);
}

@media (max-width: 767px) {
  .bannerArea .tabSection .tab-content .contentBlock {
    display: none;
  }
}

.bannerArea .tabSection .tab-content.first .contentBlock {
  position: absolute;
  left: 0;
  bottom: 100px;
  border-radius: 20px;
  padding: 50px;
  background: var(--gradient2);
  opacity: 1;
}

.bannerArea .tabSection .tab-content.first .bigImage {
  position: relative;
  bottom: -50px;
  transition: all 0.5s;
  opacity: 1;
}

@media (max-width: 767px) {
  .bannerArea .tabSection .tab-content.first .bigImage {
    bottom: 0;
  }
}

.bannerArea .tabSection .tab-content.act .contentBlock {
  position: absolute;
  left: 0;
  bottom: 60px;
  border-radius: 20px;
  padding: 50px;
  background: var(--gradient2);
  opacity: 1;
  transition: all 0.5s;
}

.bannerArea .tabSection .tab-content.act .bigImage {
  position: relative;
  bottom: -50px;
  transition: all 0.5s;
  opacity: 1;
}

.byteriverTitle {
  padding-bottom: 20px;
  margin-bottom: 40px;
  position: relative;
}

.byteriverTitle::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 1px;
  background: var(--color-dark-blue);
}

.foldTwo {
  margin: 0 0 100px;
  padding: 0;
}

@media (max-width: 767px) {
  .foldTwo {
    padding: 0 15px;
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .foldTwo h2 br {
    display: none;
  }
}

.foldTwo .productSec {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0px;
  padding: 10px;
  position: relative;
}

@media (max-width: 767px) {
  .foldTwo .productSec {
    display: block;
    column-count: 3;
    padding-top: 260px;
  }
}

.foldTwo .productSec::before {
  content: "";
  left: -70px;
  top: -60px;
  width: 388px;
  height: 388px;
  background: url(../images/productImage.jpg);
  border-radius: 25px;
  position: absolute;
  z-index: -1;
}

@media (max-width: 767px) {
  .foldTwo .productSec::before {
    left: 0;
    top: 20px;
    width: 100%;
  }
}

.foldTwo .productSec .logoItem {
  border: 1px solid #C5DDEA;
  width: 250px;
  height: 250px;
  border-radius: 20px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .foldTwo .productSec .logoItem {
    width: 100px;
    height: 100px;
    border-radius: 10px !important;
    margin-bottom: 15px;
  }

  .foldTwo .productSec .logoItem img {
    width: 50px;
    height: 50px;
    object-fit: contain;
  }
}

.foldTwo .productSec .logoItem:first-child {
  background: transparent !important;
}

.foldTwo .productSec .bdr-left-bottom {
  border-bottom-left-radius: 0px;
}

.foldTwo .productSec .bdr-right-top {
  border-top-right-radius: 0px;
}

.foldTwo .productSec .bdr-right-bottom {
  border-bottom-right-radius: 0px;
}

.foldTwo .productSec .bdr-left-top {
  border-top-left-radius: 0px;
}

.foldTwo .productSec .left-pos {
  position: relative;
  left: -25px;
  top: -25px;
}

@media (max-width: 767px) {
  .foldTwo .productSec .left-pos {
    left: 0;
    top: 0;
  }
}

.foldTwo .productSec .right-pos {
  position: relative;
  right: -25px;
  top: 25px;
}

@media (max-width: 767px) {
  .foldTwo .productSec .right-pos {
    left: 0;
    top: 0;
  }
}

.foldTwo .productSec .blueBg {
  background: #F0F6FE;
}

.foldThree {
  margin: 0 0 100px;
  padding: 0;
}

@media (max-width: 767px) {
  .foldThree {
    padding: 0 15px;
    margin-bottom: 50px;
  }
}

.foldThree .swiper-slide {
  text-align: center;
}

.foldThree .darkblueBox {
  background: rgb(0, 24, 87);
  background-image: conic-gradient(from 36deg, #001857, #0776C3);
  padding: 20px;
  font-size: 14px;
  border-radius: 15px;
  color: #fff;
  text-align: center;
  max-width: 185px;
}

@media (max-width: 767px) {
  .foldThree .darkblueBox {
    max-width: 100%;
    margin-bottom: 25px;
  }
}

.foldThree .darkblueBox strong {
  font-weight: 700;
}

.foldThree .darkblueBox i {
  font-size: 30px;
}

.foldThree .mySwiper {
  padding-bottom: 0px;
}

.foldThree .swiper-pagination {
  top: 60px;
  text-align: left;
}

.foldFour {
  margin: 0 0 100px;
}

@media (max-width: 767px) {
  .foldFour {
    padding: 0 15px;
    margin-bottom: 50px;
  }
}

.foldFour .blueboxBig {
  background: rgb(0, 95, 212);
  background: linear-gradient(45deg, rgb(0, 95, 212) 27%, rgb(29, 57, 108) 93%);
  padding: 70px;
}

@media (max-width: 767px) {
  .foldFour .blueboxBig {
    padding: 50px 25px;
  }
}

.foldFour .blueboxBig .title {
  font-size: 37px;
  color: #fff;
  margin-bottom: 20px;
}

.foldFour .blueboxBig .title span {
  display: block;
  font-size: 16px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.foldFour .blueboxBig p {
  color: #fff;
}

.foldFour .blueboxBig .logoImage {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
}

@media (max-width: 767px) {
  .foldFour .blueboxBig .logoImage {
    display: none;
  }
}

.foldFive {
  margin: 0 0 50px;
}

@media (max-width: 767px) {
  .foldFive {
    padding: 0 15px;
    margin-bottom: 0;
  }
}

.foldFive .customerBlock {
  padding: 25px 0px 0 25px;
  border-radius: 10px;
  background: rgb(236, 250, 255);
  background: linear-gradient(0deg, rgb(236, 250, 255) 0%, rgb(207, 222, 253) 100%);
}

.foldFive .customerBlock h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 0px;
  line-height: 20px;
}

@media (max-width: 767px) {
  .foldFive .customerBlock h3 {
    font-size: 14px;
  }
}

.foldFive .customerBlock h3 span {
  display: block;
  font-size: 12px;
  font-weight: 300;
}

.foldFive .tabSection {
  padding: 0px 0 30px;
}

@media (max-width: 767px) {
  .foldFive .tabSection {
    margin-top: 35px;
  }
}

.foldFive .tabSection h3 {
  font-size: 14px;
}

@media (max-width: 767px) {
  .foldFive .tabSection h3 {
    display: none;
  }
}

.foldFive .tabSection ul#tabs-nav1 {
  list-style: none;
  margin: 0 auto;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.foldFive .tabSection ul#tabs-nav1 li {
  float: left;
  font-weight: bold;
  margin: 0 15px;
  padding: 8px 10px;
  cursor: pointer;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin: 0 auto 10px;
  height: 50px;
  font-size: 12px;
}

@media (max-width: 767px) {
  .foldFive .tabSection ul#tabs-nav1 li {
    padding: 8px 0;
  }
}

.foldFive .tabSection ul#tabs-nav1 li span {
  padding: 0 10px;
}

.foldFive .tabSection ul#tabs-nav1 li span img {
  height: 40px;
  width: 40px;
  margin-bottom: 10px;
}

.foldFive .tabSection ul#tabs-nav1 li:hover img,
.foldFive .tabSection ul#tabs-nav1 li.active img {
  filter: sepia(100%) hue-rotate(190deg) saturate(1000%);
}

.foldFive .tabSection #tabs-nav1 li a {
  text-decoration: none;
  color: #454545;
  font-weight: 300;
  font-size: 12px;
  text-transform: uppercase;
}

.foldFive .tabSection .tab-content1 {
  padding: 0px 0;
}

.foldFive .tabSection .tab-content1 .testi-block {
  padding: 30px 37px;
  border-radius: 20px;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgb(246, 246, 246) 0%, rgb(255, 255, 255) 100%);
}

.foldFive .tabSection .tab-content1 .testi-block h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 0 0px;
}

.foldFive .tabSection .tab-content1 .testi-block h4 span {
  display: block;
  font-weight: 300;
}

.foldFive .tabSection .tab-content1 .testi-block ul {
  margin-top: 15px;
}

.foldFive .tabSection .tab-content1 .testi-block ul li {
  font-size: 14px;
  padding-left: 30px;
  position: relative;
  margin-bottom: 5px;
}

.foldFive .tabSection .tab-content1 .testi-block ul li::before {
  content: "";
  left: 0;
  top: 0;
  position: absolute;
  background: url(../images/green-tick.svg);
  width: 20px;
  height: 20px;
}

.foldFive .tabSection .tab-content1 .testi-block .client {
  display: flex;
  align-items: center;
}

.foldFive .tabSection .tab-content1 .testi-block .client .userimage {
  width: 50px;
  height: 50px;
  border-radius: 35px;
  background: #000;
  margin-right: 15px;
}

.letstartSec {
  background: #014BC9;
  border-radius: 50px;
}

.swiper-wrapper {
  padding-bottom: 80px;
}

.navigationwrap {
  position: absolute;
  bottom: 25px;
  width: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99;
  background: #fff;
  border-radius: 15px;
}

.navigationwrap .swiper-button-next,
.navigationwrap .swiper-button-prev {
  width: 35px;
  height: 35px;
  border-radius: 25px;
  background: #fff;
  border: 1px solid #acacac;
}

.navigationwrap .swiper-button-next:after,
.navigationwrap .swiper-button-prev:after {
  font-size: 10px;
  color: #525252;
  font-weight: 700;
}

.blueStrip {
  background: #014BC9;
  padding: 10px 10px 10px 55px;
  border-radius: 45px;
  margin-top: 0px;
  max-width: 100%;
  width: 600px;
  margin: 0 auto 50px;
  align-items: center;
  display: flex;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .blueStrip {
    display: block;
    text-align: center;
    border-radius: 0;
    padding: 20px;
  }
}

.blueStrip h3 {
  color: #fff;
  font-size: 20px;
}

@media (max-width: 767px) {
  .blueStrip h3 {
    margin-bottom: 15px;
    display: block;
  }
}

.blueStrip .btn-primary {
  border-radius: 35px;
  background: #013AC0;
}

.blueStrip .btn-primary:hover {
  background: var(--gradient);
}

.blogSection {
  margin: 0 0 100px;
  padding: 0;
}

@media (max-width: 767px) {
  .blogSection {
    margin-bottom: 50px;
  }
}

.blogSection .title {
  text-align: center;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 5px;
}

.blogSection .gradient-blue {
  background: rgb(236, 250, 255);
  background: linear-gradient(180deg, rgb(236, 250, 255) 0%, rgb(207, 222, 253) 100%);
}

.blogSection .blogstyleOne {
  border: 1px solid #B9D4E4;
  border-radius: 15px;
  padding: 30px;
}

@media (max-width: 767px) {
  .blogSection .blogstyleOne {
    margin-bottom: 25px;
  }
}

.blogSection .blogstyleOne .logo-icon {
  background: #013AC0;
  padding: 10px 20px;
  border-radius: 10px;
  width: fit-content;
}

.blogSection .blogstyleOne .logo-icon img {
  height: 15px;
  object-fit: contain;
}

.blogSection .blogstyleOne span {
  color: #0138BF;
  font-size: 14px;
  font-weight: 500;
  display: block;
}

.blogSection .blogstyleOne h3 {
  font-size: 16px;
  color: #2D2D2D;
  font-weight: 700;
  line-height: 24px;
}

.blogSection .blogstyleOne p {
  font-size: 14px;
  margin: 10px 0;
}

.blogSection .blogstyleOne .blogimg {
  height: 140px;
  object-fit: cover;
  border-radius: 15px;
  width: 100%;
  margin-top: 25px;
}

.blogSection .blogstyleTwo {
  border-radius: 15px;
  padding: 0px;
  position: relative;
  overflow: hidden;
}

.blogSection .blogstyleTwo img {
  height: 360px;
  width: 100%;
  object-fit: cover;
}

.blogSection .blogstyleTwo .whiteblock {
  background: #fff;
  position: absolute;
  padding: 20px;
  bottom: 20px;
  left: 50%;
  width: 90%;
  border-radius: 10px;
  transform: translate(-50%);
}

.blogSection .blogstyleTwo .whiteblock span {
  color: #0138BF;
  font-size: 14px;
  font-weight: 500;
  display: block;
  margin-bottom: 20px;
}

.blogSection .blogstyleTwo .whiteblock h3 {
  font-size: 16px;
  color: #2D2D2D;
  font-weight: 700;
  line-height: 24px;
}

.footer {
  background: #242424;
  padding: 70px 0 25px;
}

.footerlogos {
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.footerlogos img {
  height: 40px;
  object-fit: contain;
}

@media (max-width: 767px) {
  .footer .footerlink {
    display: none;
  }

  .footerlogos {
    text-align: center;
    align-items: center;
    justify-content: center !important;
    gap: 5px;
    margin-top: 15px;
  }
}

.footer h3 {
  color: #fff;
  font-weight: 200;
  font-size: 24px;
  line-height: 32px;
}

.footer .btn-primary {
  background: #0138BF;
}

.footer .title {
  color: #fff;
  font-weight: 600;
  margin-top: 18px;
}

.footer p {
  color: #fff;
  font-size: 14px;
}

.footer ul {
  margin-top: 25px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #fff;
  font-size: 14px;
}

.footer ul li a:hover {
  text-decoration: underline;
}

.footer .copyright {
  border-top: 1px solid #000000;
  padding-top: 25px;
}

.innerbanner {
  padding-top: 165px;
  position: relative;
  height: 100%;
  padding-bottom: 50px;
  margin-bottom: 100px;
}

@media (max-width: 767px) {
  .innerbanner {
    padding-top: 130px;
    padding-bottom: 30px;
    margin-bottom: 50px;
  }

  .innerbanner span {
    display: block;
    width: 100%;
  }

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

.innerbanner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #E8F7FF;
  height: 250px;
  width: 100%;
  display: none;
  z-index: -1;
}

.innerbanner .roundshade {
  border-radius: 100%;
  z-index: -1;
  filter: blur(150px);
  position: absolute;
  width: 800px;
  height: 600px;
}

.innerbanner .roundshade-1 {
  background: #C0D1FF;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.2;
}

.innerbanner .roundshade-2 {
  background: #3312FF;
  position: absolute;
  right: 150px;
  bottom: 0;
  opacity: 0.2;
}

.innerbanner .roundshade-3 {
  background: #00A3FF;
  position: absolute;
  left: 150px;
  bottom: 0;
  opacity: 0.2;
}

.innerbanner h1 {
  font-size: 50px;
  margin-bottom: 0px;
}

.innerbanner h1 span {
  background: linear-gradient(45deg, rgb(1, 153, 244) 0%, rgb(1, 71, 199) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

@media (max-width: 767px) {
  .innerbanner h1 {
    font-size: 26px;
  }
}

.innerbanner .innebannerSection {
  max-width: 1170px;
  width: 100%;
  margin: 50px auto 0px;
}

.innerbanner .innebannerSection h2 {
  line-height: 36px;
}

@media (max-width: 767px) {
  .innerbanner .innebannerSection {
    max-width: 1240px;
    width: 100%;
    margin: 50px auto 0px;
    padding: 0 30px;
    text-align: center;
  }

  .innerbanner .innebannerSection h2 {
    line-height: normal;
    font-size: 18px;
  }
}

.bgTitle {
  background: #fff;
  border-radius: 35px;
  padding: 6px 25px;
  color: rgb(72, 72, 72);
  box-shadow: 0 10px 10px 0 #e5e5e5;
  margin: auto;
  display: table;
  font-weight: 500;
}

.accSection {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 100px;
}


.tab-content {
  width: 100%;

  padding: 0px 0 0 0px;
  border-radius: 24px;
}

.tab-content-1 {
  width: 100%;
  background: #0149C7;
  padding: 20px 20px 0 20px;
  border-radius: 24px;
}

.shaped-image {
  border-radius: 24px 24px 0 0;
}

.acc-container {
  gap: 20px;
}

.acc-container .current {
  border-color: #5BC7FF;
  background: #F4FBFF;
}

.acc-item {
  background: #fff;
  border: solid 1px #E1E1E1;
  border-radius: 15px;
}

.acc-head {
  color: #565454;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  gap: 18px;
  cursor: pointer;
  line-height: 1.3;
  transition: padding-block 0.5s ease, font-weight 0.5s ease;
}

.acc-head.open {
  font-weight: 500;
  padding-block: 25px 15px;
}

.acc-content {
  padding: 0px 38px 15px 60px;
  font-size: 14px;
  font-weight: 300;
  display: none;
}

@media (min-width: 1366px) {
  .acc-container {
    gap: 10px;
  }

  .acc-head {
    padding: 10px 20px;
    font-size: 14px;
    text-transform: capitalize;
  }

  .acc-head.open {
    padding-block: 20px 20px;
    color: var(--color-blue);
    font-weight: 600;
  }

  .acc-content {
    padding: 0px 38px 15px 60px;
  }
}

.tab-item {
  display: none;
}

.tab-item.current {
  display: block;
}

.sectorSec .block {
  border: 1px solid #5BC7FF;
  background: #F4FBFF;
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 15px;
}

.sectorSec .block h3 {
  color: #1D396C;
  font-size: 16px;
  font-weight: 600;
}

.sectorSec .block p {
  font-size: 14px;
  color: #494949;
}

.sectorSec .knowmore {
  border: 1px solid #5BC7FF;
  background: var(--gradient);
  padding: 25px;
  border-radius: 15px;
  margin-bottom: 15px;
  text-align: center;
  height: 90%;
  align-items: center;
  justify-content: center;
  display: flex;
  transition: all 0.5s;
}

.sectorSec .knowmore a {
  color: #fff;
}

.sectorSec .knowmore a i {
  transition: all 0.5s;
}

.sectorSec .knowmore a:hover i {
  margin-left: 10px;
  transition: all 0.5s;
}

.no-bg::before {
  display: none;
}

.imageblock {
  width: 100%;
  background: #0149C7;
  padding: 30px 0 0 30px;
  border-radius: 30px;
}

.graditentTitle {
  background: linear-gradient(45deg, rgb(1, 153, 244) 0%, rgb(1, 71, 199) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  font-weight: 600;
  line-height: 38px;
}

@media (max-width: 767px) {
  .graditentTitle {
    line-height: 28px;
    font-size: 22px;
  }
}

.innerbanner .fullshade {
  /* border-radius: 100%; */
  z-index: -1;
  filter: blur(150px);
  position: absolute;
  width: 800px;
  height: 600px;
}



.innerbanner .fullshade-1 {
  background: #C0D1FF;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.2;
}

.innerbanner .fullshade-2 {
  background: #3312FF;
  position: absolute;
  right: 150px;
  bottom: 0;
  opacity: 0.2;
}

.innerbanner .fullshade-3 {
  background: #00A3FF;
  position: absolute;
  left: 150px;
  bottom: 0;
  opacity: 0.2;
}

.innerbanner h2 {
  /*
  font-size: 20px;
  letter-spacing: 3px;
  */
  margin-bottom: 0px;

}

.innerbanner h2 span {
  color: var(--color-black);
  -webkit-background-clip: text;
  display: block;
}

.innerbanner_img {
  height: 480px;
  width: 100%;
  object-fit: cover;
  transform: scaleX(-1);
  transform-origin: center;
  border-radius: 10px;
}

.bottom-left-div {
  position: absolute;
  bottom: 35px;
  left: 50px;
  background-color: #0C4D9E;
  color: white;
  padding: 10px;
  width: 330px;
  padding: 25px;
  border-radius: 10px;
}

.bottom-left-div h1 {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  color: #fff;
  margin-bottom: 1rem;
}

.bottom-left-div p {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}

.bottom-left-div button {
  font-size: 16px;
  font-weight: 600;
  color: #4F4F4F;
  align-self: flex-end;
  border-radius: 10px;
  padding: 10px;
  border: none;
}

.blog-container h1 {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 1rem;
}

.blog-container .article-box {
  border: 1px solid #B9D4E4;
  border-radius: 10px;
  padding: 25px 15px;
  margin: 20px 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.blog-container .article-box h1 {
  font-size: 16px;
  font-weight: 500;
  color: #0138BF;

}

.blog-container .article-box h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-black);
  margin-bottom: 1rem;
}

.blog-container .article-box p {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-black);
}

.blog-container .article-box button {
  align-self: flex-start;
  background: linear-gradient(85.52deg, #0195F2 -1.49%, #013DC1 107.63%);
  padding: 10px 15px;
  border-radius: 10px;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  margin-top: 1.5rem;
}

.pagination {
  display: inline-block;
  margin: 2rem 0px;
}

.pagination a {
  color: black;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
}

.pagination a.active {
  background-color: #0147C6;
  color: white;
  border-radius: 50%;
}

.pagination a:hover:not(.active) {
  background-color: #ddd;
  border-radius: 50%;
}

.innerbanner button {
  background: var(--gradient);
  color: var(--color-white);
  padding: 12px 25px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border: 0;
  font-size: 14px;
  border-radius: 8px;
}

.innerbanner .banner-heading {
  font-size: 36px;
  font-weight: 400;
  color: var(--color-black);
  width: 800px;
}

.innerbanner .arrow-text {
  font-size: 16px;
  font-weight: 500;
  color: #0148C7;
  margin: 0;

}

.blog-open {
  margin-bottom: 5rem;
}

.blog-open h1 {
  font-size: 20px;
  font-weight: 500;
  color: var(--color-black);
  margin: 3rem 0;
}

.blog-open h2 {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-black);
  margin-bottom: 1.5rem;
}

.blog-open p {
  font-size: 16px;
  font-weight: 300;
  color: var(--color-black);
  margin-bottom: 1.5rem;
}

.innerbanner .innebannerSection .product-box {

  position: absolute;
  top: -48px;
  left: -72px;

}

.innerbanner .innebannerSection .client-box {
  background: linear-gradient(85.52deg, #0195F2 -1.49%, #013DC1 107.63%);
  border-radius: 10px;
  padding: 20px;
  position: absolute;
  bottom: 202px;
  left: -35px;
  width: 155px;
}

.innerbanner .innebannerSection .client-box h1 {
  font-size: 28px;
  font-weight: 500;
  color: var(--color-white);
}

.innerbanner .innebannerSection .client-box p {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-white);
}

.innerbanner .innebannerSection .product-box-2 {
  position: absolute;
  bottom: 177px;
  right: -79px;
  z-index: 1;
}

.product-box_img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  /* transform: scaleX(-1); */
  transform-origin: center;
  border-radius: 50%;
}

.innerbanner .innebannerSection .right-box-content {
  margin-left: 150px;
}

.innerbanner .innebannerSection .right-box-content h2 {
  font-size: 60px;
  font-weight: 275;
  color: var(--color-black);
  margin-bottom: 1rem;
}

.innerbanner .innebannerSection .right-box-content h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 1rem;
  color: linear-gradient(90deg, #0199F4 0%, #0147C7 100%);

}

.innerbanner .innebannerSection .right-box-content p {
  font-size: 16px;
  font-weight: 300;
  color: var(--color-black);
  margin-bottom: 1rem;
}

.innerbanner .innebannerSection .right-box-content button {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  border-radius: 10px;
  padding: 10px 15px;
  border: none;
}

.securityPolicy .securityTitle {
  font-size: 26px;
  font-weight: 600;
  color: var(--color-white);
  background-color: #0669E3;
  padding: 25px 45px;
  width: 360px;
  border-radius: 20px 20px 0 0;

}

.underline {
  display: inline-block;
  position: relative;
}

.underline::after {
  content: '';
  display: block;
  width: 25%;
  height: 2px;
  background-color: #FFF;
  position: absolute;
  bottom: 0;
}

.securityPolicy .securityPolicy-innerbox {
  background-color: #0669E3;
  padding: 45px;
  border-radius: 0px 20px 20px 20px;
}

.securityPolicy .securityPolicy-innerbox h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-white);

}

.securityPolicy .securityPolicy-innerbox span {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-white);

}

.securityPolicy .securityPolicy-innerbox p {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-white);
  margin-top: 1rem;
}

.securityPolicy .devTitle {
  font-size: 26px;
  font-weight: 600;
  color: var(--color-white);
  background-color: #0C4D9E;
  padding: 25px 45px;
  width: 360px;
  border-radius: 20px 20px 0 0;
}

.securityPolicy .devpolicy-innerbox {
  background-color: #0C4D9E;
  ;
  padding: 45px;
  border-radius: 0px 20px 20px 20px;
  margin-bottom: 1rem;
}

.securityPolicy .devpolicy-innerbox p {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 1rem;
}



.byteriver_Title {
  font-size: 18px;
  font-weight: 400;
  color: var(--color-dark-blue);
  letter-spacing: 3px;
}

.byteriver_SubTitle {
  font-size: 40px;
  font-weight: 300;
  color: var(--color-black);
  margin-top: 1rem;
}

.securityPolicy .gdpr-innerbox {
  background-color: #0C4D9E;
  ;
  /* padding: 45px; */
  border-radius: 0px 20px 20px 20px;
  margin-bottom: 1rem;
}

.securityPolicy .gdpr-innerbox p {
  font-size: 18px;
  font-weight: 400;
  padding: 6px 45px;
  color: var(--color-white);
  margin-bottom: 1rem;

}

.securityPolicy .gdpr-innerbox img {
  object-fit: cover;
  border-radius: 0 0 20px 20px;
}

.innebannerSection .bottom-right-div {
  position: absolute;
  top: -140px;
  background: #1D396C;
  color: white;
  padding: 70px 150px 70px 70px;
  border-radius: 0 230px 0 0;
}

.innebannerSection .bottom-right-div h2 {
  font-size: 36px;
  font-weight: 300;
  color: var(--color-white);
  width: 300px;
}

.innebannerSection .bottom-right-div span {
  font-size: 36px !important;
  font-weight: 600 !important;
  color: #fff !important;
}

.innebannerSection .bottom-right-div p {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  margin: 2rem 0;
}

.innebannerSection .bottom-right-div select {
  background: linear-gradient(85.52deg, #0195F2 -1.49%, #013DC1 107.63%);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  /* margin: 1.5rem 0; */
  border: none;
  padding: 10px 15px;
  border-radius: 10px;
}

.dashboard-banner-img {
  border-radius: 0px 0 0 0;
}

.twinboxSection {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto 100px;
}

.twinboxSection p {
  font-size: 16px;
  font-weight: 300;
  color: var(--color-black);
  margin-bottom: 1.5rem;
}

.twinboxSection button {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(85.52deg, #0195F2 -1.49%, #013DC1 107.63%);
  padding: 10px 15px;
  border: none;
  border-radius: 10px;
}

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

  .twinboxSection {
    text-align: center;
  }

  .twinboxSection button {
    margin-bottom: 20px
  }


  .innerbanner .innebannerSection .product-box {
    width: 200px;
    top: -25px;
    left: 30px;
  }

  .innerbanner .innebannerSection .product-box-2 {
    width: 200px;
    bottom: 98px;
    right: 5px;
  }

  .innerbanner .innebannerSection .client-box {
    bottom: 100px;
    left: 2px;

  }

  .innerbanner .innebannerSection .right-box-content {
    margin-left: 40px;
    margin-top: 70px;
  }

  .innebannerSection .bottom-right-div {
    position: relative !important;
    top: 0;
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
  }


  .dashboard-banner-img {
    border-radius: 0;
  }

  .securityPolicy .securityTitle {

    width: 100% !important;
    font-size: 24px;

  }

  .securityPolicy .securityPolicy-innerbox {
    border-radius: 0px 0px 20px 20px;
  }

  .securityPolicy .devTitle {
    width: 100% !important;
    font-size: 24px;
  }

  .securityPolicy .devpolicy-innerbox {
    border-radius: 0px 0px 20px 20px;
  }

  .securityPolicy .gdpr-innerbox {
    border-radius: 0px 0px 20px 20px;
  }

  .securityPolicy .securityPolicy-innerbox h5 {
    font-size: 16px;
  }

  .securityPolicy .securityPolicy-innerbox p {
    font-size: 16px;
  }

  .securityPolicy .devpolicy-innerbox p {
    font-size: 16px;
  }

  .byteriver_SubTitle {
    font-size: 35px;
  }

  .securityPolicy .gdpr-innerbox p {
    font-size: 16px;
  }
}

.reviews i {
  color: orange;
}

.chatIcon {
  text-align: right;
}

.blog-detail-ctn h3 {
  font-size: 23px;
  margin-bottom: 15px;
}

.blog-detail-ctn strong {
  font-weight: 700;
}

.border {
  border: 1px solid #eee;
  padding: 40px;
  border-radius: 15px;
  background: #fff;
}

.map {
  border-radius: 25px;
}

.formSection input {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid #cccccc;
}

.formSection label {
  margin-bottom: 8px;
}

.formSection textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 10px;
  height: 100px;
  border-radius: 10px;
  border: 1px solid #cccccc;
}