@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
:root {
  --main-color-one: #001bb7;
  --main-color-two: #e62727;
  --secondary-color: #cce5ff;
  --heading-color: #272b2e;
  --paragraph-color: #5b6880;
  --body-font-size: 15px;
  --line-height30: 30px;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
  font-family: "Inter" !important;
  scroll-behavior: smooth;
}

.sidebar::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, Opera */
}


* {
  box-sizing: border-box;
  outline: none;
  -moz-osx-font-smoothing: grayscale;
  /* Firefox */
  -webkit-font-smoothing: antialiased;
  /* WebKit  */
}

body {
  margin: 0;
  color: var(--paragraph-color);
  overflow-x: hidden;
  font-family: "Inter" !important;
  font-size: var(--body-font-size);
}

/* Top navigation styling */
.top-nav {
  background-color: #f8f9fa;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid #e9ecef;
  width: 100%;
}

.top-nav a {
  color: #6c757d;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s;
}

.top-nav a:hover {
  color: #0d6efd;
}

.top-nav .divider {
  color: #dee2e6;
  margin: 0 5px;
}

.top-nav .nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  white-space: nowrap;
}

.top-nav .nav-right a {
  margin: 0 8px;
}

.top-nav .speed-test {
  color: white;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 500;
}

.top-nav .speed-test:hover {
  background-color: #0c3f7c;
  color: white;
}

.nav-right-content ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-right-content li {
  margin-left: 20px;
  position: relative;
}

.nav-right-content .search {
  margin-top: 6px !important;
}

h1 {
  font-size: 65px;
  line-height: 1.0833333333;
}

h2 {
  font-size: 46px;
  line-height: 1.2380952381;
}

h3 {
  font-size: 36px;
  line-height: 1.0833333333;
}

h4 {
  font-size: 20px;
  line-height: 1.2380952381;
}

h5 {
  font-size: 24px;
  line-height: 1.2380952381;
}

h6 {
  font-size: 22px;
  line-height: 1.2380952381;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

p {
  color: var(--paragraph-color);
  -webkit-hyphens: auto;
  hyphens: auto;
  margin-bottom: 10px;
  line-height: var(--line-height30);
}

a {
  color: inherit;
  text-decoration: none;
  color: var(--paragraph-color);
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
  color: inherit;
}

pre {
  word-break: break-word;
}

a i {
  padding: 0 2px;
}

img {
  max-width: 100%;
}

ol {
  counter-reset: counter;
  padding-left: 0;
}

ol li {
  list-style: none;
  margin-bottom: 1rem;
}

ol li:before {
  counter-increment: counter;
  content: counter(counter);
  font-weight: 500;
  margin-right: 10px;
}

.desktop-center-item {
  display: flex;
  align-items: center;
}

/*input and button type focus outline disable*/
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
select:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid #ddd;
}

code {
  color: #faa603;
}

.border-none {
  border: 0 !important;
}

.gray-bg {
  background: #f5f8ff;
}

.blue-bg {
  background: #01358d;
}

.dark-bg {
  background-color: #111d5c;
}

.section-bg-1 {
  background-color: #f4f7fc;
}

.border-bottom-dashed {
  border-bottom: 1px dashed #8f98a8;
}

.bg-none {
  background: none;
}

.bg-none:after {
  display: none;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: block;
  padding-left: 20px;
  position: relative;
  z-index: 0;
}

.check-list li:after {
  position: absolute;
  left: 0;
  top: 0;
  font-family: "fontawesome";
  content: "";
  color: var(--main-color-one);
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  clear: both;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

.comment-navigation .nav-previous>a,
.posts-navigation .nav-previous>a,
.post-navigation .nav-previous>a,
.comment-navigation .nav-next>a,
.posts-navigation .nav-next>a,
.post-navigation .nav-next>a {
  transition: 0.3s ease-in;
}

.comment-navigation .nav-previous:hover>a,
.posts-navigation .nav-previous:hover>a,
.post-navigation .nav-previous:hover>a,
.comment-navigation .nav-next:hover>a,
.posts-navigation .nav-next:hover>a,
.post-navigation .nav-next:hover>a {
  color: var(--main-color-one);
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Globals
--------------------------------------------------------------*/
.bg-gray {
  background: #f5f8ff;
}

.pd-top-30 {
  padding-top: 30px;
}

.pd-top-40 {
  padding-top: 40px;
}

.pd-top-50 {
  padding-top: 50px;
}

.pd-top-80 {
  padding-top: 80px;
}

.pd-top-90 {
  padding-top: 90px;
}

.pd-top-100 {
  padding-top: 100px;
}

.pd-top-105 {
  padding-top: 105px;
}

.pd-top-110 {
  padding-top: 110px;
}

.pd-top-112 {
  padding-top: 30px;
}

.pd-top-115 {
  padding-top: 115px;
}

.pd-top-120 {
  padding-top: 20px;
}

.pd-top-135 {
  padding-top: 135px;
}

.pd-top-150 {
  padding-top: 150px;
}

.pd-top-170 {
  padding-top: 170px;
}

.pd-top-190 {
  padding-top: 190px;
}

.pd-bottom-65 {
  padding-bottom: 65px;
}

.pd-bottom-90 {
  padding-bottom: 90px;
}

.pd-bottom-100 {
  padding-bottom: 100px;
}

.pd-bottom-120 {
  padding-bottom: 20px;
}

.pd-default-120 {
  padding: 20px 0;
}

.pd-default-two {
  padding: 110px 0 120px 0;
}

.mg-top-40 {
  margin-top: 40px;
}

.mg-top-45 {
  margin-top: 45px;
}

.mg-top-60 {
  margin-top: 60px;
}

.mg-top-65 {
  margin-top: 65px;
}

.mg-top-75 {
  margin-top: 75px;
}

.mg-top-80 {
  margin-top: 80px;
}

.mg-top-100 {
  margin-top: 10px;
}

.mg-top-105 {
  margin-top: 105px;
}

.mg-top-110 {
  margin-top: 110px;
}

.mg-top-120 {
  margin-top: 20px;
}

.mg-top-135 {
  margin-top: 135px;
}

.mg-top-170 {
  margin-top: 170px;
}

.mg-bottom-30 {
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  float: left;
  clear: both;
  margin-right: 20px;
}

.alignright {
  float: right;
  clear: both;
  margin-left: 20px;
}

.aligncenter {
  clear: both;
  display: block;
  margin: 0 auto 1.75em;
}

.alignfull {
  margin: 1.5em 0;
  max-width: 100%;
}

.alignwide {
  max-width: 1100px;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

.updated:not(.published) {
  display: none;
}

.blog-pagination ul li {
  display: inline-block;
}

.blog-pagination ul li+li {
  margin: 0 5px;
}

.blog-pagination {
  display: block;
  width: 100%;
}

.blog-pagination ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-pagination ul li a,
.blog-pagination ul li span {
  display: block;
  width: 40px;
  height: 40px;
  border: 1px solid #e2e2e2;
  line-height: 40px;
  text-align: center;
  font-weight: 600;
  transition: 0.3s ease-in;
}

.blog-pagination ul li span.current,
.blog-pagination ul li a:hover {
  background-color: var(--main-color-one);
  color: #fff;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
  clear: both;
}

.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

/*----------------------------------------
    # Unit test
------------------------------------------*/
.wp-link-pages a {
  margin: 0 5px;
  transition: 0.3s ease-in;
}

.wp-link-pages {
  margin-bottom: 30px;
  margin-top: 25px;
}

.wp-link-pages span,
.wp-link-pages a {
  border: 1px solid #e2e2e2;
  padding: 5px 15px;
  display: inline-block;
}

.wp-link-pages .current,
.wp-link-pages a:hover {
  background-color: var(--main-color-one);
  color: #fff;
  border-color: var(--main-color-one);
}

.wp-link-pages span:first-child {
  margin-right: 5px;
}

dl,
ol,
ul {
  padding-left: 15px;
}

.post-password-form input {
  display: block;
  border: 1px solid #e2e2e2;
  height: 50px;
  border-radius: 3px;
  padding: 0 20px;
}

.post-password-form label {
  font-weight: 600;
  color: #333;
}

.post-password-form input[type="submit"] {
  width: 100px;
  height: 50px;
  background-color: var(--main-color-one);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: 0.3s ease-in;
}

.post-password-form input[type="submit"]:hover {
  background-color: #121a2f;
}

.footer-widget .table td,
.footer-widget .table th {
  padding: 0.5rem !important;
}

@media all and (max-width: 1500px) {
  :root {
    --body-font-size: 14px;
    --line-height30: 1.9;
  }
}

@media all and (min-width: 1500px) {

  .custom-gutters-60>.col,
  .custom-gutters-60>[class*="col-"] {
    padding-right: 29px;
    padding-left: 29px;
  }
}

@media all and (min-width: 576px) {

  .custom-gutters-16>.col,
  .custom-gutters-16>[class*="col-"] {
    padding-right: 8px;
    padding-left: 8px;
  }

  .custom-gutters-18>.col,
  .custom-gutters-18>[class*="col-"] {
    padding-right: 9px;
    padding-left: 9px;
  }

  .custom-gutters-20>.col,
  .custom-gutters-20>[class*="col-"] {
    padding-right: 10px;
    padding-left: 10px;
  }

  .custom-gutters-28>.col,
  .custom-gutters-28>[class*="col-"] {
    padding-right: 14px;
    padding-left: 14px;
  }
}

/*--------------------------------------------------------------
# Gutenberg	Default Style
--------------------------------------------------------------*/
.single-post-details-item .entry-content>.alignwide {
  max-width: 1100px;
}

.single-post-details-item .entry-content>.alignfull {
  margin: 1.5em 0;
  max-width: 100%;
}

.wp-block-video video {
  max-width: 636px;
}

.wp-block-image img {
  display: block;
}

.wp-block-image.alignleft,
.wp-block-image.alignright {
  width: 100%;
}

.wp-block-image.alignfull img {
  width: 100vw;
}

.wp-block-gallery:not(.components-placeholder) {
  margin: 1.5em auto;
}

.wp-block-cover-text p {
  padding: 1.5em 14px;
}

ul.wp-block-latest-posts.alignwide,
ul.wp-block-latest-posts.alignfull,
ul.wp-block-latest-posts.is-grid.alignwide,
ul.wp-block-latest-posts.is-grid.alignwide {
  padding: 0 14px;
}

.wp-block-table {
  display: block;
  overflow-x: auto;
}

.wp-block-table table {
  border-collapse: collapse;
  width: 100%;
}

.wp-block-table td,
.wp-block-table th {
  padding: 0.5em;
}

.wp-block-embed.type-video>.wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.wp-block-embed.type-video>.wp-block-embed__wrapper>iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.wp-block-quote.is-large {
  margin: 0 auto 16px;
}

.wp-block-pullquote>p:first-child {
  margin-top: 0;
}

.wp-block-separator {
  margin: 3em auto;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .wp-block-cover-text p {
    padding: 1.5em 0;
  }
}

wp-block-video video {
  max-width: 636px;
}

.wp-block-image img {
  display: block;
}

.wp-block-image.alignleft,
.wp-block-image.alignright {
  width: 100%;
}

.wp-block-image.alignfull img {
  width: 100vw;
}

.wp-block-gallery:not(.components-placeholder) {
  margin: 1.5em auto;
}

.wp-block-cover-text p {
  padding: 1.5em 14px;
}

ul.wp-block-latest-posts.alignwide,
ul.wp-block-latest-posts.alignfull,
ul.wp-block-latest-posts.is-grid.alignwide,
ul.wp-block-latest-posts.is-grid.alignwide {
  padding: 0 14px;
}

.wp-block-table {
  display: block;
  overflow-x: auto;
}

.wp-block-table table {
  border-collapse: collapse;
  width: 100%;
}

.wp-block-table td,
.wp-block-table th {
  padding: 0.5em;
}

.wp-block-embed.type-video>.wp-block-embed__wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.wp-block-embed.type-video>.wp-block-embed__wrapper>iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.wp-block-quote.is-large {
  margin: 0 auto 16px;
}

.wp-block-pullquote>p:first-child {
  margin-top: 0;
}

.wp-block-quote:not(.is-large):not(.is-style-large) {
  border-left: 4px solid #000;
  padding-left: 1em;
}

.wp-block-separator {
  margin: 3em auto;
  padding: 0;
}

@media screen and (min-width: 768px) {
  .wp-block-cover-text p {
    padding: 1.5em 0;
  }
}

.wp-block-pullquote {
  border-top: 4px solid #555d66;
  border-bottom: 4px solid #555d66;
  color: #40464d;
}

/*--------------------------------------------------------------
## Block Color Palette Colors
--------------------------------------------------------------*/
.has-strong-blue-color {
  color: #0073aa;
}

.has-strong-blue-background-color {
  background-color: #0073aa;
}

.has-lighter-blue-color {
  color: #229fd8;
}

.has-lighter-blue-background-color {
  background-color: #229fd8;
}

.has-very-light-gray-color {
  color: #eee;
}

.has-very-light-gray-background-color {
  background-color: #eee;
}

.has-very-dark-gray-color {
  color: #444;
}

.has-very-dark-gray-background-color {
  background-color: #444;
}

/*---------------------
    ## Breadcumb 
----------------------*/
.breadcrumb-area {
  background-image: url(../img/bg/breadcrumb-bg.jpg);
  text-align: center;
  padding: 194px 0 114px;
  background-size: cover;
}

.breadcrumb-area .page-title {
  font-size: 46px;
  font-weight: 700;
  letter-spacing: 1.38px;
  color: white;
  margin-bottom: 15px;
}

.breadcrumb-area .page-list {
  margin: 0;
  padding: 0;

}

.breadcrumb-area .page-list li {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 1.32px;
  color: white;
  list-style: none;
  display: inline-block;
  position: relative;
  padding-left: 10px;
}

.breadcrumb-area .page-list li:after {
  position: absolute;
  left: 0;
  top: 0;
  content: "\f054";
  font-size: 12px;
  line-height: 1;
  top: 7px;
  font-family: "fontawesome";
}

.breadcrumb-area .page-list li:first-child {
  padding-left: 0;
}

.breadcrumb-area .page-list li:first-child:after {
  display: none;
}

/*--------------------------------------------------------------
	## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

.comments-area {
  margin-top: 45px;
}

.comments-area .comments-title {
  font-size: 24px;
  line-height: 33px;
  font-weight: 500;
  margin-bottom: 40px;
  color: #01358d;
}

.comments-area .comments-title span {
  font-size: 18px;
  line-height: 24px;
  color: #97a1b3;
}

.comments-area .comment-list .comment-respond {
  margin-bottom: 30px;
}

.comments-area .comment-list {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
  margin-bottom: 20px;
}

.comments-area .comment-list li {
  margin-bottom: 55px;
}

.comments-area .comment-list li:last-child {
  margin-bottom: 0;
}

.comments-area .comment-list li ul.children {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}

.comments-area .comment-list li ul {
  list-style: none;
}

.comments-area .comment-list li ul.children li {
  margin-left: 50px;
  list-style-type: none;
  list-style: none;
}

.comments-area .comment-list li .single-comment-wrap {
  display: flex;
  align-self: flex-start;
}

.comments-area .comment-list li .single-comment-wrap .thumb {
  margin-right: 35px;
  height: 75px;
  width: 75px;
  border-radius: 50%;
}

.comments-area .comment-list li .single-comment-wrap .thumb img {
  border-radius: 50%;
}

.comments-area .comment-list li .single-comment-wrap .date,
.blog-details-page-content-area .comments-area .comment-list li .single-comment-wrap .time {
  display: block;
  font-size: 13px;
  line-height: 17px;
  letter-spacing: 0.14px;
  margin-bottom: 18px;
  color: #97a1b2;
}

.comments-area .comment-list li .single-comment-wrap .content {
  flex: 1;
  position: relative;
}

.comments-area .comment-list li .single-comment-wrap .content .title {
  font-size: 20px;
  line-height: 27px;
  font-weight: 500;
  letter-spacing: 0.22px;
  color: #01358d;
  margin-bottom: 6px;
}

.comments-area .comment-list li .single-comment-wrap .content .comment-content {
  max-width: 620px;
}

.comments-area .comment-list li .single-comment-wrap .content p {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.3px;
  margin-bottom: 15px;
  color: #5b6880;
  word-break: break-word;
}

.comments-area .comment-list li .single-comment-wrap .content p:last-child {
  margin-bottom: 0;
}

.comments-area .comment-list li .single-comment-wrap .content .reply {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.3px;
  color: #97a1b3;
  transition: 0.4s;
}

.comments-area .comment-list li .single-comment-wrap .content .reply:hover {
  color: #01358d;
}

.comments-area .reply-title,
.comments-area .comment-reply-title {
  font-size: 26px;
  line-height: 34px;
  font-weight: 600;
  margin-bottom: 20px;
}

.comments-area .form-submit {
  margin-bottom: 0;
}

.comment-form .form-group.textarea .form-control {
  min-height: 160px;
  resize: none;
  line-height: 26px;
}

.comment-form .form-group.textarea .form-control:focus {
  outline: none;
  box-shadow: none;
}

.comment-form .form-group .form-control {
  height: 50px;
  line-height: 50px;
  border: 1px solid #e2e2e2;
}

.comment-form .submit-btn {
  height: 50px;
  width: auto;
  border-radius: 5px;
  font-weight: 400;
  background-color: var(--main-color-one);
  border: none;
  cursor: pointer;
  transition: 0.3s ease-in;
  color: #fff;
}

.comment-form .submit-btn:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

.comment-respond {
  /*margin-top: 20px;*/
}

.comments-area .comment-list .children li:last-child {
  margin-bottom: 30px;
}

.comments-area .comment-list li ul.children {
  margin-top: 30px;
}

.comment-form-cookies-consent input[type="checkbox"] {
  margin-right: 5px;
}

/*--------------------------------------------------------------
	## WIdgets
--------------------------------------------------------------*/
.footer-widget .widget-title {
  font-size: 22px;
  line-height: 27px;
  letter-spacing: 0.22px;
  color: #01358d;
  margin-bottom: 10px;
}

.footer-widget .widget-title:after {
  display: none;
}

.footer-widget .footer_top_widget {
  border-bottom: 1px solid rgba(151, 161, 179, 0.1);
  margin-bottom: 46px;
  padding-bottom: 34px;
}

.footer-widget .footer_top_widget .footer-logo {
  margin-bottom: 30px;
  display: block;
}

.footer-widget .footer_top_widget .footer-logo img {
  width: 160px;
  height: auto;
}

.footer-widget .footer_top_widget p {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.3px;
  color: #5b6880;
}

.footer-widget.widget_nav_menu {
  margin-bottom: 78px;
}

.footer-widget.widget_nav_menu ul li {
  display: inline-block;
}

.footer-widget.widget_nav_menu ul li a {
  font-size: 16px;
  letter-spacing: 0.32px;
  color: #01358d;
  line-height: 19px;
  margin: 0 24px;
  font-weight: 500;
}

.footer-widget .about_us_widget .footer-logo {
  margin-bottom: 44px;
  display: inline-block;
}

.footer-widget .about_us_widget .footer-logo img {
  width: 140px;
  height: auto;
}

.footer-widget .about_us_widget p {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.3px;
  color: #5b6880;
  margin-bottom: 39px;
}

.footer-widget .about_us_widget .social-icon li:first-child {
  margin-left: 0;
}

.footer-widget .contact_info_list .contact-content {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.3px;
  color: #5b6880;
  margin-bottom: 22px;
}

.footer-widget .contact_info_list p {
  font-size: var(--body-font-size);
  line-height: 18px;
  letter-spacing: 0.3px;
  color: #5b6880;
}

.footer-widget .contact_info_list p span {
  font-weight: 500;
  color: #01358d;
}

.footer-widget .about_recent_post {
  padding-top: 9px;
}

.footer-widget .about_recent_post .media {
  margin-bottom: 24px;
}

.footer-widget .about_recent_post .media img {
  margin-right: 26px;
  border-radius: 4px;
}

.footer-widget .about_recent_post .media .media-body {
  margin-top: 15px;
}

.footer-widget .about_recent_post .media .media-body h6 {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.18px;
  color: #01358d;
  font-weight: 500;
  font-family: var(--body-font);
  margin-bottom: 0;
}

.footer-widget .about_recent_post .media .media-body span {
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 0.42px;
  color: #97a1b3;
}

.footer-area-2 .widget_nav_menu ul {
  padding-left: 0;
}

.footer-area-2 .widget_nav_menu ul li {
  display: block;
}

.footer-area-2 .widget_nav_menu ul li a {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.3px;
  color: #5b6880;
  font-weight: 400;
  margin: 0;
  transition: all 0.3s ease-in;
}

.footer-area-2 .widget_nav_menu ul li a:hover,
.footer-area-2 .widget_nav_menu ul li a:active,
.footer-area-2 .widget_nav_menu ul li a:focus {
  color: #01358d;
}

/******* site bar widget ********/
.sidebar-area {
  border: 1px solid #e4e7eb;
  padding: 55px 68px 0 68px;
}

.sidebar-area .widget {
  margin-bottom: 65px;
}

.widget-title {
  font-size: 24px;
  line-height: 33px;
  letter-spacing: 0.28;
  color: #01358d;
  font-weight: 500;
  position: relative;
  margin-bottom: 10px;
}

.widget-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: #e4e7eb;
}

.shop-sidebar .widget-title {
  font-size: 24px;
  margin-bottom: 25px;
}

.shop-sidebar .widget-title:after {
  display: none;
}

.widget_search .search-form {
  position: relative;
  background: #f5f5f5;
  border-radius: 4px;
}

.widget_search .search-form input {
  letter-spacing: 0.3px;
  color: #5b6880;
  width: 100%;
  font-size: var(--body-font-size);
  font-weight: 400;
  border: 0;
  background: transparent;
  padding: 0 60px 0 24px;
  height: 52px;
  line-height: 52px;
}

.widget_search .search-form button {
  position: absolute;
  right: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 15px;
  padding: 0 23px;
  height: 52px;
  line-height: 52px;
  top: 0;
  right: 0;
}

.widget_search .search-form button i {
  color: #5b6880;
}

.widget_search .search-form button:active,
.widget_search .search-form button:focus {
  box-shadow: none;
  outline: 0;
}

.widget_search.style-two .search-form {
  border-radius: 35px;
}

.widget_search.style-two .search-form input {
  padding: 0 60px 0 28px;
}

.widget_search.style-two .search-form button {
  right: 4px;
}

.widget-recent-post ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget-recent-post ul li .media {
  margin-bottom: 30px;
  align-items: center;
}

.widget-recent-post ul li .media .media-body {
  margin-left: 16px;
}

.widget-recent-post ul li .media .media-body .title {
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0;
  color: #01358d;
  margin-bottom: 5px;
}

.widget-recent-post ul li .media .media-body .post-date {
  font-size: 14px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: #97a1b2;
}

.widget-recent-post ul li:last-child .media {
  margin-bottom: 0;
}

.widget_categories ul li {
  list-style: none;
  position: relative;
  padding-left: 32px;
  margin-bottom: 19px;
}

.widget_categories ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -6px;
  width: 12px;
  height: 12px;
  border: 2px solid #97a1b3;
  border-radius: 50%;
}

.widget_categories ul li a {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.96;
  color: #5b6880;
}

.widget_categories ul li:last-child {
  margin-bottom: 0;
}

.widget_categories.product_category ul {
  padding-left: 0;
}

.widget_categories.product_category ul li {
  padding-left: 0;
  margin-bottom: 10px;
}

.widget_categories.product_category ul li a {
  font-size: 15px;
  font-weight: 400;
}

.widget_categories.product_category ul li:before {
  display: none;
}

.widget_archive ul {
  list-style: none;
  margin: 0;
  padding: 0 14px;
}

.widget_archive ul li {
  border-bottom: 1px solid #e4e7eb;
  padding-bottom: 5.5px;
  margin-bottom: 12.5px;
  position: relative;
  padding-left: 34px;
}

.widget_archive ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -15px;
  font-family: FontAwesome;
  background-repeat: no-repeat;
  background-size: 100%;
}

.widget_archive ul li a {
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0.96px;
  color: #5b6880;
}

.widget_archive ul li:last-child {
  margin-bottom: 0;
}

.widget-gallery .thumb {
  margin-bottom: 16px;
  display: block;
}

.widget-newslatter .newsletter-subcribe {
  margin-top: 0px;
}

/********* shop sidebar *********/
.shop-sidebar {
  padding: 0 0 0 45px;
  border: 0;
}

.widget-product-sorting .slider-product-sorting {
  height: 3px;
  border-radius: 0;
  background: #e4e7eb;
  border: 0 !important;
  margin: 0 10px 25px 10px;
}

.widget-product-sorting .slider-product-sorting .ui-slider-range {
  background: var(--main-color-one);
}

.widget-product-sorting .slider-product-sorting .ui-slider-handle {
  height: 11px;
  width: 11px;
  border-radius: 50%;
  background: var(--main-color-one);
  border: 0 !important;
  top: -4px;
  cursor: pointer;
}

.widget-product-sorting label,
.widget-product-sorting input {
  font-size: 15px;
  letter-spacing: 0.15px;
  color: var(--main-color-one);
  border: 0;
  background: transparent;
  margin-bottom: 0;
  line-height: 36px;
}

.widget-product-sorting label:focus,
.widget-product-sorting input:focus {
  border: 0;
}

.widget-product-sorting button {
  height: 35px;
  line-height: 37px;
  padding: 0 25px;
  background: var(--main-color-one);
  font-size: 14px;
  letter-spacing: 0.42px;
  color: #fff;
  border: 0;
  border-radius: 30px;
  cursor: pointer;
}

.widget-product-sorting button:focus {
  outline: 0;
}

.widget-product ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget-product ul li .media {
  margin-bottom: 28px;
  align-items: center;
}

.widget-product ul li .media .media-body {
  margin-left: 25px;
}

.widget-product ul li .media .media-body .title {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.4;
  color: #01358d;
  margin-bottom: 14px;
  font-weight: 400;
}

.widget-product ul li .media .media-body .product-price {
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: #97a1b3;
}

.widget-product ul li:last-child .media {
  margin-bottom: 0;
}

.widget_tag_cloud .tagcloud a {
  font-size: var(--body-font-size);
  font-style: italic;
  letter-spacing: 0.3px;
  color: #fff;
  margin-right: 10px;
  margin-bottom: 10px;
  display: inline-block;
  transition: all 0.3s ease-in;
}

.widget-newslatter .newsletter-subcribe .form-group .subcribe-submit {
  font-size: 15px;
}

/********* widget job details *********/
.widget-job-details {
  background: #fff;
  box-shadow: 0px 2px 50px #97a1b229;
  border-radius: 8px;
  padding: 70px 38px;
}

.widget-job-details .widget-title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.2px;
  padding-bottom: 15px;
  margin-bottom: 32px;
}

.widget-job-details .single-job-details {
  margin-bottom: 25px;
}

.widget-job-details .single-job-details img {
  margin-top: 2px;
}

.widget-job-details .single-job-details .media-body {
  margin-left: 25.25px;
}

.widget-job-details .single-job-details .media-body h6 {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.2px;
  color: #535764;
  margin-bottom: 10px;
}

.widget-job-details .single-job-details .media-body span {
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.3px;
  color: #97a1b3;
}

.tagcloud a {
  background: #2b71e8;
  height: 26px;
  line-height: 26px;
  padding: 0 10px;
  color: #fff;
  display: inline-block;
  margin-bottom: 5px;
  margin-right: 5px;
  border-radius: 3px;
}

/*----------------------------------------------
    # Nav bar 
----------------------------------------------*/
.navbar.navbar-area.white .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.50)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar.navbar-area .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.50)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.mobile-logo {
  display: none;
}

.navbar {
  flex-direction: column;
}

.navbar-area {
  padding: 0;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 8;
  transition: all 0.3s ease-in;
}

.navbar-area.nav-absolute {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0px;
  z-index: 1;
}

.navbar-area .nav-container {
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

.navbar-area .nav-container .nav-right-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-left: 15px;
}

.navbar-area .nav-container .nav-right-content ul li {
  display: inline-block;
  margin: 0 15px;
  line-height: 80px;
  cursor: pointer;
  color: #6a7795;
}

.navbar-area .nav-container .nav-right-content ul li .cart-icon i {
  font-size: 26px;
  font-weight: 500;
}

.navbar-area.navbar-area-fixed .nav-container .responsive-mobile-menu .mobile-logo .logo {
  background-image: url(../img/logo.png);
}

.navbar-area .nav-container .responsive-mobile-menu .mobile-logo .custom-width {
  width: 150px;
}

.navbar-area .nav-container .responsive-mobile-menu .mobile-logo .logo {
  height: 40px;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  background-image: url(../img/logo-2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.navbar-area.navbar-area-fixed .nav-container .navbar-collapse .desktop-logo .logo {
  background-image: url(../img/logo.png);
}

.navbar-area .nav-container .navbar-collapse .desktop-logo .custom-width {
  width: 280px;
}

.navbar-area .nav-container .navbar-collapse .desktop-logo .logo {
  height: 40px;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  background-image: url(../img/logo-2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.navbar-area .nav-container .nav-right-content.default-blue ul li i {
  color: #325ca3;
}

.navbar-area.navbar-area-fixed .nav-container .nav-right-content ul li i {
  color: #325ca3;
}

.navbar-area .nav-container .nav-right-content ul li i {
  color: #ffffff;
  transition: all 0.3s ease-in;
  font-weight: 700;
  font-size: 18px;
}

.navbar-area .nav-container .nav-right-content ul li li {
  line-height: normal;
  cursor: default;
}

.navbar-area .nav-container .nav-right-content ul li:last-child {
  margin-right: 0;
}

.navbar-area .nav-container .nav-right-content ul li a {
  color: #6a7795;
  transition: all 0.3s ease-in;
}

.navbar-area .nav-container .nav-right-content ul li a:hover {
  color: var(--main-color-one);
}

.navbar-area .nav-container .nav-right-content ul li:hover i {
  color: var(--main-color-one);
}

.navbar-area .nav-container .nav-right-content ul li.nav-btn .btn-boxed {
  font-weight: 600;
  text-transform: capitalize;
  border-radius: 5px;
  background-color: var(--main-color-one);
}

.navbar-area .nav-container .nav-right-content ul li.nav-btn .btn-boxed:hover {
  background-color: var(--secondary-color);
}

.navbar-area .nav-container .nav-right-content ul .notification a {
  position: relative;
}

.navbar-area .nav-container .nav-right-content ul .notification .notification-count {
  background-color: var(--main-color-two);
  height: 16px;
  width: 16px;
  line-height: 16px;
  font-size: 9px;
  display: inline-block;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  position: absolute;
  top: -2px;
  right: -9px;
}

.navbar-area .nav-container .navbar-brand .site-title {
  font-weight: 700;
  font-size: 30px;
  font-family: var(--heading-font);
  line-height: 80px;
  color: var(--heading-color);
}

.navbar-area .nav-container .desktop-logo {
  margin-right: 100px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav {
  display: block;
  width: 100%;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  margin: 0 23px;
  position: relative;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li:before {
  position: absolute;
  left: auto;
  right: 0;
  top: 61%;
  content: "";
  background: var(--main-color-two);
  height: 1px;
  width: 0%;
  visibility: hidden;
  opacity: 0;
  /* IE 9 */
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
  transition: 0.6s;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li:hover:before {
  visibility: visible;
  opacity: 1;
  right: auto;
  left: 0;
  width: 100%;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.current-menu-item:before {
  position: absolute;
  left: 0;
  top: 61%;
  content: "";
  background: var(--main-color-one);
  height: 1px;
  width: 100%;
  visibility: visible;
  opacity: 1;
  /* IE 9 */
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
  transition: all 0.3s ease-in;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.current-menu-item a {
  color: var(--main-color-one);
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children {
  position: relative;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover>.sub-menu {
  visibility: visible;
  opacity: 1;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
  position: absolute;
  text-align: left;
  min-width: 205px;
  margin: 0;
  list-style: none;
  left: 0;
  top: 100%;
  box-shadow: 0px 6px 20px #84848442;
  z-index: 9;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  background: #fff;
  transition: all 0.3s ease-in;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
  display: block;
  margin-left: 0;
  line-height: 24px;
  font-size: 16px;
  margin-right: 0;
  transition: all 0.3s ease-in;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:before {
  display: none;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li a {
  display: block;
  padding: 5px 17px;
  font-size: 15px;
  white-space: nowrap;
  line-height: inherit;
  color: #5b6880;
  font-weight: 400;
  transition: all 0.3s ease-in;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:first-child {
  padding-top: 13px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:last-child {
  padding-bottom: 13px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children {
  position: relative;
  z-index: 0;
  padding-right: 0px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children:before {
  position: absolute;
  right: 15px;
  top: 50%;
  content: "";
  font-family: "fontawesome";
  /* IE 9 */
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children a:after {
  position: absolute;
  right: 23px;
  top: 20px;
  content: "";
  font-family: "fontawesome";
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu {
  left: 100%;
  top: 0;
  box-shadow: 6px 6px 20px #84848442;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu a:after {
  display: none;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu .sub-menu .sub-menu {
  left: auto;
  right: 100%;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav.default-blue li a {
  color: #01358d;
}

.navbar-area.navbar-area-fixed .nav-container .navbar-collapse .navbar-nav li a {
  color: #01358d;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li a {
  line-height: 80px;
  display: inline-block;
  color: #ffffff;
  transition: all 0.3s ease-in;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li a:hover {
  color: #2E2EFF;
  font-weight: 600;
}

.navbar-area-fixed {
  background: #fff;
  box-shadow: 0px 4px 6px 0px rgba(12, 0, 46, 0.06);
}

@media only screen and (max-width: 991px) {

  .navbar-area .nav-container .navbar-collapse .navbar-nav li a {
    color: #01358d;
  }
}


.navbar-area-2 .nav-container .logo-wrapper .sticky-logo {
  display: none;
}

.navbar-area-2.navbar-area-fixed .nav-container .logo-wrapper .main-logo {
  display: none;
}

.navbar-area-2.navbar-area-fixed .nav-container .logo-wrapper .sticky-logo {
  display: block;
}

@media only screen and (min-width: 992px) {
  .navbar-area-2 .nav-container .navbar-collapse .navbar-nav>li>a {
    color: rgba(255, 255, 255, 0.8);
  }

  .navbar-area-2 .nav-container .navbar-collapse .navbar-nav li.current-menu-item a {
    color: #fff;
  }

  .navbar-area-2 .nav-container .navbar-collapse .navbar-nav li.current-menu-item:before {
    background: #fff;
  }

  .navbar-area-2 .nav-container .navbar-collapse .navbar-nav li:before {
    background: #fff;
  }

  .navbar-area-2 .nav-container .navbar-collapse .navbar-nav li:hover a {
    color: #fff;
  }

  .navbar-area-2 .nav-container .nav-right-content ul li {
    color: rgba(255, 255, 255, 0.8);
  }

  .navbar-area-2 .nav-container .nav-right-content ul li a {
    color: rgba(255, 255, 255, 0.8);
  }

  .navbar-area-2.navbar-area-fixed .nav-container .navbar-collapse .navbar-nav>li>a {
    color: #01358d;
  }

  .navbar-area-2.navbar-area-fixed .nav-container .navbar-collapse .navbar-nav li.current-menu-item a {
    color: var(--main-color-one);
  }

  .navbar-area-2.navbar-area-fixed .nav-container .navbar-collapse .navbar-nav li.current-menu-item:before {
    background: var(--main-color-one);
  }

  .navbar-area-2.navbar-area-fixed .nav-container .navbar-collapse .navbar-nav li:before {
    background: var(--main-color-one);
  }

  .navbar-area-2.navbar-area-fixed .nav-container .navbar-collapse .navbar-nav li:hover a {
    color: var(--main-color-one);
  }

  .navbar-area-2.navbar-area-fixed .nav-container .nav-right-content ul li {
    color: #6a7795;
  }

  .navbar-area-2.navbar-area-fixed .nav-container .nav-right-content ul li a {
    color: #6a7795;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
    padding-left: 6px;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li:hover {
    padding-left: 3px;
  }

  .navbar-area .nav-container .nav-right-content ul li a {
    color: #6a7795;
  }
}

@media only screen and (max-width: 991px) {
  .navbar-area .nav-container {
    position: relative;
    z-index: 0;
    min-height: 80px;
  }

  .navbar-area .nav-container .navbar-brand {
    display: block;
  }

  .navbar-area .nav-container .navbar-brand .navbar-toggler {
    position: absolute;
    right: 10px;
    border: 1px solid #e2e2e2;
  }

  .navbar-area .nav-container .mobile-logo {
    padding-left: 15px;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav {
    display: block;
    margin-top: 20px;
    padding: 0 15px;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li {
    display: block;
    text-align: left;
    line-height: 30px;
    padding: 10px 0;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li:last-child {
    border-bottom: none;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li+li {
    margin-left: 0;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:before {
    top: 25px;
    right: 20px;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover {
    padding-bottom: 0;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover>.sub-menu {
    visibility: visible;
    height: auto;
    opacity: 1;
    background-color: transparent;
    border-bottom: none;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu {
    position: initial;
    display: block;
    width: 100%;
    border-top: none;
    box-shadow: none;
    margin-left: 0;
    padding-bottom: 0;
    visibility: hidden;
    opacity: 0;
    height: 0;
    overflow: hidden;
    max-height: 250px;
    overflow-y: scroll;
    overflow-y: auto;
    transition: height 500ms;
    scrollbar-color: #f5576c #f5f5f5;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .sub-menu .menu-item-has-children:before {
    content: "";
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li {
    padding: 0;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li.menu-item-has-children:hover:before {
    top: 30px;
    color: #fff;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu li+li {
    border-top: none;
  }
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu::-webkit-scrollbar {
  width: 2px;
  background-color: rgba(151, 161, 179, 0.1);
  border-radius: 30px;
}

.navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu::-webkit-scrollbar-thumb {
  background-color: #5b6880;
}

.responsive-mobile-menu .nav-right-content.default-blue li a {
  color: #01358d;
}

.responsive-mobile-menu .nav-right-content {
  display: none;
}

@media only screen and (max-width: 991px) {
  .mobile-logo {
    display: inline-block;
    line-height: 80px;
  }

  .desktop-logo {
    display: none !important;
  }

  .responsive-mobile-menu {
    display: contents;
    width: 100%;
  }

  .responsive-mobile-menu .navbar-toggler {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 36px;
    outline: 0;
  }

  .nav-right-content {
    display: none;
  }

  .responsive-mobile-menu .nav-right-content {
    display: inline-block;
    float: right;
    margin-right: 70px;
    padding-top: 6px;
  }

  .navbar-area .navbar-collapse .navbar-nav {
    background: #fff;
  }

  .navbar-area .navbar-collapse .navbar-nav li.menu-item-has-children:before {
    display: none;
  }

  .navbar-area .navbar-collapse .navbar-nav li:before {
    display: none;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li {
    border: 0;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li a {
    line-height: 24px;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li:first-child {
    margin-left: 0;
  }

  .navbar-area .nav-container {
    padding: 0;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav {
    margin-top: 0;
    border-top: 1px solid rgba(151, 161, 179, 0.1);
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li {
    padding: 6px 0;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children .sub-menu .menu-item-has-children>.sub-menu {
    left: 0;
    top: 0;
    box-shadow: none;
    margin-left: 22px;
  }

  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children:hover {
    padding-bottom: 6px;
  }

  .navbar-area .navbar-toggle-icon.default-blue .line {
    background: #325ca3;
  }

  .navbar-area.navbar-area-fixed .navbar-toggle-icon .line {
    background: #325ca3;
  }

  .navbar-area .navbar-toggle-icon .line {
    height: 2px;
    width: 21px;
    background: #ffffff;
    margin-bottom: 4px;
    display: block;
    transition: all 0.3s ease-in;
  }

  .navbar-area .navbar-toggle-icon .line:nth-child(3) {
    margin-bottom: 0;
  }

  .navbar-area button.navbar-toggler[aria-expanded="true"] .line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .navbar-area button.navbar-toggler[aria-expanded="true"] .line:nth-child(2) {
    opacity: 0;
  }

  .navbar-area button.navbar-toggler[aria-expanded="true"] .line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

@media only screen and (max-width: 575px) {
  .navbar-area .nav-container {
    min-height: 70px;
  }

  .mobile-logo {
    display: inline-block;
    line-height: 70px;
  }

  .navbar-area .nav-container .nav-right-content ul li {
    line-height: 70px;
  }

  .responsive-mobile-menu .navbar-toggler {
    top: 31px;
  }
}

.navbar-area-2 .nav-container .nav-right-content ul li i {
  color: #fff;
}

.navbar-area-2.navbar-area-fixed .nav-container .nav-right-content ul li i {
  color: #325ca3;
}

.navbar-area-2 .navbar-toggle-icon .line {
  background: #fff;
}

.navbar-area-2.navbar-area-fixed .navbar-toggle-icon .line {
  background: #325ca3;
}

.nav-style-02 {
  border-bottom: 1px solid rgba(225, 225, 225, 0.3);
}

/*----------------------------
    Info Bar
----------------------------*/
.info-bar-area.style-three .info-bar-inner {
  padding: 10px 0 18px 0;
}

.info-bar-area.style-three .info-bar-inner .social-icon {
  margin-top: 15px;
}

.info-bar-area.style-two .info-bar-inner {
  padding: 0;
}

.info-bar-area .social-icon .title {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--heading-color);
}

.info-bar-inner {
  padding: 32px 0 35px 0;
}

.info-bar-inner div {
  display: inline-block;
}

.info-bar-inner .logo-wrapper .logo {
  margin-top: 5px;
  display: block;
}

.info-bar-inner .logo-wrapper .site-title {
  font-size: 35px;
  font-weight: 700;
  margin-top: 10px;
}

.info-bar-inner .right-content {
  display: inline-block;
  float: right;
}

.info-bar-inner .right-content .request-quote {
  margin-left: 40px;
}

.info-bar-inner .right-content .request-quote .rq-btn {
  padding: 15px 25px;
  background-color: var(--main-color-one);
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  text-transform: capitalize;
  display: block;
  position: relative;
  top: -5px;
  transition: all 0.3s ease-in;
}

.info-bar-inner .right-content .request-quote .rq-btn.blank {
  background-color: #f1f1f1;
  border-radius: 0;
  top: 0;
  padding: 15px 40px;
  color: var(--heading-color);
}

.info-bar-inner .right-content .request-quote .rq-btn.blank i {
  color: var(--main-color-one);
  transition: all 0.3s ease-in;
}

.info-bar-inner .right-content .request-quote .rq-btn.blank:hover {
  background-color: var(--main-color-one);
  color: #fff;
}

.info-bar-inner .right-content .request-quote .rq-btn.blank:hover i {
  color: #fff;
}

.info-bar-inner .right-content .request-quote .rq-btn:hover {
  background-color: var(--secondary-color);
}

.info-items {
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.info-items li {
  display: inline-block;
  margin: 0 30px;
}

.info-items li:hover .single-info-item .content .title {
  color: var(--main-color-one);
}

.info-items li:first-child {
  margin-left: 0;
}

.info-items li:last-child {
  margin-right: 0;
}

.info-items li .single-info-item {
  display: flex;
  align-self: flex-start;
}

.info-items li .single-info-item .icon {
  margin-right: 20px;
  font-size: 40px;
  line-height: 40px;
  color: var(--main-color-one);
}

.info-items li .single-info-item .content .title {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 0;
  transition: all 0.3s ease-in;
}

.info-items li .single-info-item .content .details {
  font-size: 14px;
  line-height: 24px;
}

.info-items-two {
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 10px;
}

.info-items-two li {
  display: inline-block;
  margin: 0 30px;
}

.info-items-two li:hover .single-info-item .content .title {
  color: var(--main-color-one);
}

.info-items-two li:first-child {
  margin-left: 0;
}

.info-items-two li:last-child {
  margin-right: 0;
}

.info-items-two li .single-info-item {
  display: flex;
  align-self: flex-start;
}

.info-items-two li .single-info-item .icon {
  margin-right: 15px;
  font-size: 30px;
  line-height: 30px;
  color: var(--main-color-one);
}

.info-items-two li .single-info-item .content {
  margin-top: 3px;
}

.info-items-two li .single-info-item .content .title {
  font-size: 16px;
  line-height: 26px;
  font-weight: 700;
  margin-bottom: 0;
  transition: all 0.3s ease-in;
}

.info-items-two li .single-info-item .content .details {
  margin-left: 5px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  color: var(--paragraph-color);
}

/*--------------------------------------------------------------
	## Header
--------------------------------------------------------------*/
.header-area {
  padding: 0 0 98px;
  position: relative;
  height: 96vh;
  overflow: hidden;
}

.header-area .slideshow-container {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.header-area .slideshow-container .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.header-area .slideshow-container .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* fade effect */
.header-area .slideshow-container .slide.active {
  opacity: 1;
  z-index: 1;
}

.header-inner {
  padding: 40px;
  max-width: 700px;
  position: absolute;
  top: 57%;
  left: 25%;
  transform: translate(-50%, -50%);
  text-align: start;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.header-area .banner-slider-item {
  height: 96vh;
}

.header-area .header-inner-details {
  height: 100vh;
  display: flex;
  align-items: center;
}

.header-area .banner-thumb-wrap {
  height: 100vh;
  display: flex;
  align-items: center;
}

.header-area .sub-title {
  font-size: 20px;
  line-height: 52px;
  color: #fff;
  margin-bottom: 5px;
  font-weight: 100;
  font-family: var(--poppins-font) !important;
}

.header-area .sub-title.style-two {
  color: var(--main-color-two);
}

.header-area .title {
  font-size: 65px;
  line-height: 74px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 30px;
  font-family: var(--poppins-font) !important;
}

.header-area .title span {
  color: var(--main-color-two);
}

.header-area .title span.typed {
  color: inherit;
}

.header-area .title span.typed-cursor {
  color: inherit;
}

.header-area p {
  font-size: 16px;
  line-height: 28px;
  color: #ffffff;
  margin-bottom: 35px !important;
  visibility: visible;
}

.header-area .btn-wrapper .btn {
  font-weight: 400;
  cursor: pointer;
  color: white;
}

.header-area .btn-wrapper .btn-outline-light:hover {
  color: black;
}

.header-area .header-thumb {
  margin-top: 190px;
}

.banner-slider {
  height: 100vh;
}

.banner-slider .owl-prev {
  position: absolute;
  left: -106px;
  top: 50%;
  opacity: 0.3;
  transition: all 0.3s ease-in;
  font-size: 35px;
  color: #01358d;
}

.banner-slider .owl-prev:hover,
.banner-slider .owl-prev:active,
.banner-slider .owl-prev:focus {
  opacity: 1;
}

.banner-slider .owl-next {
  position: absolute;
  right: -106px;
  top: 50%;
  opacity: 0.3;
  transition: all 0.3s ease-in;
  font-size: 35px;
  color: #01358d;
}

.banner-slider .owl-next:hover,
.banner-slider .owl-next:active,
.banner-slider .owl-next:focus {
  opacity: 1;
}

.banner-slider .owl-dots {
  z-index: 2;
  text-align: center;
}

.banner-slider .owl-dots .owl-dot {
  width: 8px;
  height: 8px;
  background: #e62727;
  display: inline-block;
  margin: 0 10px;
  border-radius: 50%;
  z-index: 2;
  text-align: center;
  position: relative;
  transition: all 0.3s ease-in;
  cursor: pointer;
}

.banner-slider .owl-dots .owl-dot:after {
  content: "";
  border: 0.5px solid #e62727;
  position: absolute;
  left: 0;
  right: 0;
  top: 0px;
  bottom: 0;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in;
}

.banner-slider .owl-dots .owl-dot.active {
  background: #e62727;
}

.banner-slider .owl-dots .owl-dot.active:after {
  height: 14px;
  width: 14px;
  left: -3px;
  right: 3px;
  top: -3px;
  bottom: 3px;
  visibility: visible;
  opacity: 1;
}

.banner-slider .header-inner {
  padding-left: 10px;
}

.banner-slider .owl-item.active .s-animate-1 {
  animation: 1.5s 0.3s fadeInLeft both;
}

.banner-slider .owl-item.active .s-animate-2 {
  animation: 1.5s 0.7s fadeInLeft both;
}

.banner-slider .owl-item.active .s-animate-3 {
  animation: 1.5s 1s fadeInLeft both;
}

.banner-slider .owl-item.active .s-animate-4 {
  animation: 1.5s 1.3s fadeInLeft both;
}

.banner-slider .owl-item.active .s-animate-5 {
  animation: 1.5s 1.4s fadeInLeft both;
}

/********* banner one **********/
.banner-slider-one .banner-slider-item {
  margin-right: 30px;
}

.banner-slider-one .banner-thumb {
  position: relative;
}

.banner-slider-one .banner-thumb .banner-1-img2 {
  position: absolute;
  right: -30px;
  top: 0;
  width: auto !important;
  height: 58%;
}

.banner-slider-one .banner-thumb .banner-1-img3 {
  position: absolute;
  right: 50px;
  bottom: 35px;
  width: auto !important;
  z-index: -1;
  box-shadow: 0px 2px 69px #97a1b238;
}

.banner-slider-one .header-inner-img {
  width: auto !important;
  z-index: 2;
}

.banner-slider-one .owl-item.active .header-inner-img {
  animation: 1.5s 0.3s fadeInRight both;
}

.banner-slider-one .owl-item.active .banner-1-img2 {
  animation: 1.5s 0.3s fadeInLeft both;
}

.banner-slider-one .owl-item.active .banner-1-img3 {
  animation: 1.5s 0.3s fadeInLeft both;
}

.banner-slider-one .banner-thumb-wrap {
  float: right;
}

.banner-slider-one.style-two .banner-thumb-wrap .banner-thumb {
  height: 88vh;
  margin-top: 60px;
}

.banner-slider-one.style-two .banner-thumb-wrap .banner-thumb img {
  height: inherit;
}

.sba-header-area .btn-wrapper {
  margin-bottom: 35px;
}

.sba-header-area .hover a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  line-height: 34px;
  padding-left: 2px;
  border: 2px solid var(--main-color-one);
  color: var(--main-color-one);
  background: #fff;
  font-size: 15px;
  display: inline-block;
  text-align: center;
  margin-right: 22px;
}

.sba-header-area .hover a i {
  padding-left: 3px;
}

.sba-header-area .hover span {
  font-size: 16px;
  letter-spacing: 0.32px;
  color: #01358d;
  font-weight: 500;
}

.sba-header-area .banner-thumbnail {
  margin-top: 130px;
}

.header-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/******** sbbs-header-area ********/
.sbbs-header-area {
  background-repeat: no-repeat;
  height: 104vh;
}

.sbbs-header-area .header-inner {
  padding-top: 130px;
}

.sbbs-header-area .header-inner .title {
  font-weight: 500;
  color: #fff;
  margin-bottom: 42px;
  font-size: 56px;
  line-height: 1.4;
}

.sbbs-header-area .header-inner .btn-wrapper {
  margin-bottom: 64px;
}

.sbbs-header-area .header-inner .btn-wrapper .btn {
  margin: 0 11px;
}

.sbbs-header-area .banner-thumbnail {
  position: relative;
  max-width: inherit;
  margin: 0 auto;
}

.sbbs-header-area .banner-thumbnail .hover {
  position: absolute;
  left: 50%;
  margin-left: -45px;
  top: 50%;
  margin-top: -60px;
}

.sbbs-header-area .banner-thumbnail .hover a {
  width: 90px;
  height: 90px;
  background: transparent linear-gradient(180deg, #32e2a9 0%, #29c3a2 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 10px 16px #00644b7a;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  line-height: 90px;
}

.sbbs-header-area .banner-thumbnail .hover a img {
  margin-left: 6px;
}

/********* sbtc-header-area ***********/
.sbtc-header-area {
  background-repeat: no-repeat;
  background-position: 100% 100%;
  padding: 0 0 85px;
  height: 103vh;
  background-size: cover;
}

.sbtc-header-area .header-inner .title {
  color: #fff;
}

.sbtc-header-area .header-inner p {
  color: #fff;
}

.banner-animate-thumb {
  margin-top: 295px;
  position: relative;
}

.banner-animate-thumb .header-img-2 {
  position: absolute;
  top: -160px;
  left: 0;
}

.banner-animate-thumb .header-img-3 {
  position: absolute;
  top: 81px;
  left: 30%;
}

.banner-animate-thumb .header-img-4 {
  position: absolute;
  right: 0;
  bottom: 0;
}

.banner-animate-thumb .header-img-5 {
  position: absolute;
  left: 19px;
  bottom: 129px;
  width: 178px;
}

/********** header 6 style **********/
.sbtl-header-area {
  background: transparent radial-gradient(closest-side at 67% 50%, #01358d 0%, #002970 100%) 0% 0% no-repeat padding-box;
  padding: 0 0 60px;
}

.sbtl-header-area .banner-slider-item {
  padding-bottom: 0;
}

.sbtl-header-area .banner-slider-item .title,
.sbtl-header-area .banner-slider-item p {
  color: #fff;
}

.sbtl-header-area .banner-slider .owl-prev {
  opacity: 1;
}

.sbtl-header-area .banner-slider .owl-prev:hover {
  color: #fff;
}

.sbtl-header-area .banner-slider .owl-next {
  opacity: 1;
}

.sbtl-header-area .banner-slider .owl-next:hover {
  color: #fff;
}

.sbtl-header-area .banner-slider .owl-dots .owl-dot {
  background: #fff;
}

.sbtl-header-area .banner-slider .owl-dots .owl-dot.active {
  background: #f9556d;
}

/********** header 7 style **********/
.sbmc-header-area {
  padding: 0 0 60px;
}

.sbmc-header-area .banner-slider-item {
  padding-bottom: 0;
}

.shape1 {
  animation: MoveUpDown 20s linear infinite;
  position: absolute;
  left: 500px;
  opacity: 0.3;
}

@keyframes MoveUpDown {

  0%,
  100% {
    top: 35%;
  }

  50% {
    top: 80%;
  }
}

.shape2 {
  animation: MoveLeftRight 80s linear infinite;
  position: absolute;
  bottom: 10px;
  opacity: 0.3;
}

@keyframes MoveLeftRight {

  0%,
  100% {
    right: 25%;
  }

  50% {
    right: 75%;
  }
}

/**** home 8 ********/
.h8-banner-area {
  padding: 0 0 25px;
}

.h8-banner-area .banner-animate-thumb-2 {
  margin-top: 40px !important;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
}

.h8-banner-area .banner-animate-thumb .header-img-2 {
  position: absolute;
  top: auto !important;
  left: auto;
}

.h8-banner-area.style-two {
  background-size: cover;
}

.h8-banner-area.style-two .title {
  font-size: 46px;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.3;
  font-weight: 500;
}

.h8-banner-area.style-two .sub-title {
  line-height: 1.3;
}

.sbh-main-search {
  margin-top: 48px;
}

.sbh-main-search input {
  height: 50px;
  border: 0;
  width: 100%;
  padding: 0 24px;
  border-radius: 36px 0 0 36px;
}

.sbh-main-search input::placeholder {
  color: #97a1b2;
}

.sbh-main-search .search-input {
  width: 60%;
}

.sbh-main-search .single-select {
  height: 50px;
  line-height: 50px;
  width: 100px;
  border: 0;
  border-radius: 0;
  background: var(--main-color-one);
  color: #fff;
}

.sbh-main-search .single-select:after {
  border-color: #fff;
  right: 16px;
}

.sbh-main-search .single-select .list {
  width: 100%;
}

.sbh-main-search .single-select .list li {
  color: #97a1b3;
}

.sbh-main-search button {
  height: 50px;
  line-height: 50px;
  padding: 0 30px 0 20px;
  border: 0;
  cursor: pointer;
  background: var(--main-color-one);
  color: #fff;
  border-left: 1px solid #e24f65;
  border-radius: 0 36px 36px 0;
}

.sbh-main-search button:focus {
  outline: 0;
}

.domain-price {
  padding-left: 0;
  margin-top: 30px;
}

.domain-price li {
  display: inline-block;
  letter-spacing: 0.36px;
  color: #fff;
  font-family: var(--poppins-font);
  margin-right: 25px;
}

.domain-price li span {
  color: var(--main-color-two);
  margin-left: 2px;
}

/****** about header ********/
.about-header {
  background: transparent linear-gradient(180deg, #f7f9ff 0%, #ffffff 100%) 0% 0% no-repeat padding-box;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
}

/*-----------------------
    Error 404 Page
-----------------------*/
.error-area {
  height: 100vh;
  display: flex;
  align-items: center;
}

.error-page-left-img .top-image {
  animation: top-image-bounce 3s infinite ease-in-out;
  margin-bottom: 40px;
}

.error-page-left-img .top-image span {
  font-size: 66px;
  font-weight: 300;
  color: var(--main-color-one);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: -20px;
}

@keyframes top-image-bounce {
  0% {
    transform: translateY(-5px);
  }

  50% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-5px);
  }
}

.error-back-to-home a {
  background: #01358d;
  box-shadow: 0px 7px 19px #01358d7d;
  border-radius: 4px;
  font-size: var(--body-font-size);
  display: inline-block;
  padding: 0 80px;
  color: #fff;
  margin-top: 55px;
}

/*----------------------------------------
    shop style
----------------------------------------*/
.navbar-area .nav-container .nav-right-content ul li.cart {
  position: relative;
}

.navbar-area .nav-container .nav-right-content ul li.cart:hover .widget_shopping_cart_content {
  visibility: visible;
  opacity: 1;
  margin-top: 0;
}

.navbar-area .nav-container .nav-right-content ul li.cart .cart-icon {
  transform: rotateY(-180deg);
}

.widget_shopping_cart_content {
  position: absolute;
  right: -13px;
  top: 100%;
  margin-top: 30px;
  z-index: 99;
  width: 400px;
  box-sizing: border-box;
  background: #fff;
  box-shadow: 0px 4px 26px #01358d17;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in;
}

.widget_shopping_cart_content:after {
  content: "";
  position: absolute;
  right: 5px;
  top: -2px;
  background: #fff;
  height: 30px;
  width: 30px;
  transform: rotate(45deg);
  border-radius: 1px;
}

.widget_shopping_cart_content ul {
  margin-left: 0 !important;
  padding: 40px 25px !important;
}

.widget_shopping_cart_content ul li {
  margin: 0 0 25px !important;
  padding: 0;
  width: 100%;
  position: relative;
}

.widget_shopping_cart_content ul li .media {
  align-items: center;
}

.widget_shopping_cart_content ul li .media .media-left {
  margin-right: 18px;
}

.widget_shopping_cart_content ul li .media .title {
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.16px;
  color: #5b6880;
}

.widget_shopping_cart_content ul li .media p {
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 0.14px;
  color: #97a1b3;
  margin-bottom: 0;
}

.widget_shopping_cart_content ul li .media .price {
  font-size: 14px;
  line-height: 17px;
  letter-spacing: 0.28px;
  color: #5b6880;
}

.widget_shopping_cart_content ul li .remove-product {
  position: absolute;
  right: 0;
  top: 2px;
  font-size: 12px;
}

.widget_shopping_cart_content ul li:last-child {
  margin: 0 !important;
}

.widget_shopping_cart_content .total {
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0.96px;
  color: #5b6880;
  font-weight: 500;
  border-top: 1px solid #e4e7eb;
  border-bottom: 1px solid #e4e7eb;
  padding: 18px 25px;
}

.widget_shopping_cart_content .total strong {
  text-align: left;
}

.widget_shopping_cart_content .total .amount {
  float: right;
}

.widget_shopping_cart_content .buttons {
  text-align: center;
  padding: 38px 0 50px 0;
}

.widget_shopping_cart_content .buttons .button {
  height: 48px;
  line-height: 48px;
  background: #f0f0f0;
  border-radius: 6px;
  font-size: 15px;
  letter-spacing: 0.3px;
  color: #5b6880 !important;
  display: inline-block;
  padding: 0 25px;
}

.widget_shopping_cart_content .buttons .button:hover {
  background: #ef4060;
  color: #fff !important;
  box-shadow: 0px 12px 18px #f9556d4d;
}

.riyaqas-pagination ul {
  padding-left: 0;
  margin-bottom: 0;
}

.riyaqas-pagination ul li {
  display: inline-block;
}

.riyaqas-pagination ul li .page-numbers {
  width: 36px;
  height: 36px;
  border: 1px solid #97a1b3;
  border-radius: 50%;
  line-height: 37px;
  text-align: center;
  display: inline-block;
  font-size: 17px;
  letter-spacing: 0.51;
  color: #97a1b3;
  transition: all 0.3s ease-in;
  cursor: pointer;
  margin: 0 3px;
}

.riyaqas-pagination ul li .page-numbers.prev,
.riyaqas-pagination ul li .page-numbers.next {
  border: none;
}

.riyaqas-pagination ul li .page-numbers:hover,
.riyaqas-pagination ul li .page-numbers.current {
  background: #01358d;
  color: #fff;
  border: 1px solid #01358d;
}

.riyaqas-pagination ul li .page-numbers.prev:hover,
.riyaqas-pagination ul li .page-numbers.next:hover {
  background: none;
  color: #01358d;
  border: none;
}

.woocommerce-result-count {
  font-size: 14px;
  line-height: 48px;
  letter-spacing: 0.28;
  color: #97a1b2;
}

.woocommerce-sorting-select {
  height: 42px;
  line-height: 44px;
  padding: 0 28px;
  background: #f7f7f7;
  border-radius: 35px;
  border: 0;
  font-size: 14px;
  letter-spacing: 0.28;
  color: #97a1b2;
}

.woocommerce-sorting-select span.current {
  width: 180px;
  display: block;
}

.woocommerce-sorting-select:after {
  border-bottom: 1px solid #999;
  border-right: 1px solid #999;
  height: 7px;
  right: 28px;
  width: 7px;
}

.woocommerce-sorting-select .list {
  width: 100%;
}

.woocommerce-sorting-select .list li {
  font-size: 14px !important;
  letter-spacing: 0.28 !important;
  color: #97a1b2 !important;
  font-weight: 400 !important;
  transition: 0.4s !important;
}

.woocommerce-sorting-select .list li:hover,
.woocommerce-sorting-select .list li:focus,
.woocommerce-sorting-select .list li.selected {
  color: #01358d !important;
}

.woocommerce-sorting-select:hover,
.woocommerce-sorting-select:focus {
  border: 0;
  outline: 0;
}

.single-shop {
  text-align: center;
  margin-bottom: 50px;
}

.single-shop .thumb {
  overflow: hidden;
  position: relative;
}

.single-shop .thumb img {
  transform: scale(1);
  transition: 0.8s;
}

.single-shop .thumb .cart-btn {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  align-items: center;
  display: inline-grid;
  transition: all 0.6s ease;
  visibility: hidden;
  opacity: 0;
}

.single-shop .thumb .cart-btn a {
  box-shadow: 0px 14px 18px #80001369;
  border-radius: 26px;
  height: 46px;
  line-height: 46px;
  padding: 0 35px;
  display: inline-block;
}

.single-shop .thumb .cart-btn a i {
  margin-left: 10px;
}

.single-shop .thumb .product-badge {
  position: absolute;
  left: 0;
  top: 18px;
  height: 32px;
  line-height: 33px;
  padding: 0 14px 0 13px;
  font-size: var(--body-font-size);
  border-radius: 0px 16px 16px 0px;
  cursor: pointer;
  z-index: 3;
  transition: 0.4s;
  display: inline-block;
}

.single-shop .thumb:before {
  content: "";
  position: absolute;
  left: -50%;
  top: -50%;
  width: 100%;
  height: 100%;
  background-color: rgba(1, 53, 141, 0.15);
  transition: all 0.6s ease;
  z-index: 1;
  opacity: 0;
}

.single-shop .thumb:after {
  content: "";
  position: absolute;
  right: -50%;
  bottom: -50%;
  width: 100%;
  height: 100%;
  background-color: rgba(1, 53, 141, 0.15);
  transition: all 0.6s ease;
  z-index: 1;
  opacity: 0;
}

.single-shop:hover .thumb img {
  transform: rotate(6deg) scale(1.2);
}

.single-shop:hover .thumb:before {
  left: 0;
  top: 0;
  opacity: 1;
}

.single-shop:hover .thumb:after {
  right: 0;
  bottom: 0;
  opacity: 1;
}

.single-shop:hover .thumb .cart-btn {
  visibility: visible;
  opacity: 1;
}

.single-shop .content {
  padding-top: 22px;
}

.single-shop .content .rating {
  color: #ff9100;
  margin-bottom: 10px;
}

.single-shop .content a {
  line-height: 1.2;
  font-size: 18px;
  margin-bottom: 14px;
  letter-spacing: 0.54px;
  color: #01358d;
  font-weight: 600;
  display: block;
  transition: 0.4s;
  font-family: var(--heading-font);
}

.single-shop .content a:hover {
  color: var(--main-color-one);
}

.single-shop .content .price {
  font-size: 18px;
  letter-spacing: 0.3px;
  color: #97a1b3;
}

.single-shop .content .price del {
  color: #c7cdd6;
  margin-left: 12px;
}

.single-shop.style-two {
  box-shadow: 0px 3px 18px #5b688029;
  background: #edf3f5;
  border-radius: 5px;
  margin-bottom: 30px;
  border: 2px solid #fff;
}

.single-shop.style-two .thumb {
  padding: 20px 0;
}

.single-shop.style-two .thumb:before,
.single-shop.style-two .thumb:after {
  border-radius: 5px 5px 0 0;
}

.single-shop.style-two .content {
  padding-bottom: 20px;
  background: #fff;
  border-radius: 0 0 5px 5px;
}

/******* single product page ********/
.product-thumbnail-wrapper .product-thumbnail-carousel .single-thumbnail-item {
  margin-bottom: 16px;
  border: 0 !important;
}

.product-thumbnail-wrapper .product-thumbnail-carousel .slick-list {
  height: auto !important;
}

.product-description {
  padding: 20px 0 0;
}

.product-description .customer-review {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.28px;
  color: #97a1b3;
  margin-bottom: 20px;
  display: block;
}

.product-description .customer-review span {
  margin-left: 10px;
}

.product-description .customer-review i {
  color: #ff9100;
  margin-right: 8px;
}

.product-description .title {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0.6px;
  font-weight: 500;
  color: #01358d;
  margin-bottom: 20px;
}

.product-description .price {
  font-size: 18px;
  letter-spacing: 0.3px;
  color: #5b6880;
  margin-bottom: 30px;
}

.product-description .price del {
  color: #c7cdd6;
  margin-left: 12px;
}

.product-description .content {
  font-size: var(--body-font-size);
  line-height: 27px;
  letter-spacing: 0.28px;
  color: #5b6880;
  margin-bottom: 55px;
}

.product-description .check-box-area {
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.26px;
  color: #8a8a8a;
  margin-top: 50px;
  margin-bottom: 19px;
}

.product-description .check-box-area input {
  float: left;
  margin-right: 6px;
  margin-top: 1px;
}

.product-description .category {
  margin-top: 70px;
  margin-bottom: 20px;
}

.product-description .category span {
  font-size: var(--body-font-size);
  color: #01358d;
  font-weight: 500;
  margin-right: 4px;
  letter-spacing: 0.3px;
}

.product-description .category a {
  font-size: var(--body-font-size);
  color: #5b6880;
  letter-spacing: 0.3px;
}

.product-description .tags span {
  font-size: var(--body-font-size);
  color: #01358d;
  font-weight: 500;
  margin-right: 4px;
  letter-spacing: 0.3px;
}

.product-description .tags a {
  font-size: var(--body-font-size);
  color: #5b6880;
  letter-spacing: 0.3px;
}

.quantity {
  position: relative;
  display: inline-block;
}

.quantity input {
  height: 52px;
  width: 50px;
  border: 0;
  background: #f0f0f0;
  font-size: 20px;
  letter-spacing: 0.2px;
  color: #5b6880;
  font-family: var(--raleway-font);
  text-align: center;
  margin: 0 52px;
}

.quantity .qty-button {
  height: 52px;
  width: 50px;
  border: 0;
  background: #f0f0f0;
  font-size: 33px;
  letter-spacing: 0.2px;
  color: #5b6880;
  font-family: var(--raleway-font);
  text-align: center;
  display: inline-block;
  cursor: pointer;
}

.quantity .qty-button.inc {
  position: absolute;
  right: 0;
  border-radius: 0 6px 6px 0;
  line-height: 53px;
}

.quantity .qty-button.dec {
  position: absolute;
  left: 0;
  border-radius: 6px 0 0 6px;
  line-height: 50px;
}

.quantity input[type="number"]::-webkit-inner-spin-button,
.quantity input[type="number"]::-webkit-outer-spin-button {
  display: none;
}

.product-information {
  padding-top: 64px;
}

.product-information ul.nav-tabs {
  border-bottom: 1px solid #e4e7eb;
  padding-bottom: 20px;
  margin-bottom: 31px;
}

.product-information ul.nav-tabs li a {
  height: 52px;
  line-height: 52px;
  background: #f0f0f0;
  border-radius: 6px;
  padding: 0 60px;
  font-size: 15px;
  letter-spacing: 0.3px;
  color: #97a1b3;
  border: 0;
  transition: all 0.3s ease-in;
  margin-right: 25px;
}

.product-information ul.nav-tabs li a.active,
.product-information ul.nav-tabs li a:hover,
.product-information ul.nav-tabs li a:focus {
  background: #f9556d;
  color: #fff;
}

.product-information .tab-content .description-tab-content p {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  color: #5b6880;
}

.review-title {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.18px;
  color: #5b6880;
  font-weight: 500;
  margin-bottom: 40px;
}

.single-review {
  margin-bottom: 60px;
}

.single-review .media {
  align-items: center;
  margin-bottom: 15px;
}

.single-review .media img {
  margin-right: 30px;
  box-shadow: 0px 3px 26px -8px #97a1b3;
  border-radius: 50%;
  height: 70px;
  width: 70px;
}

.single-review .media span {
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.18px;
  color: #5b6880;
  margin-bottom: 10px;
  display: block;
}

.single-review .media p {
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.12px;
  color: #97a1b3;
  margin-bottom: 0;
}

.single-review p {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  color: #5b6880;
}

/****** checkout page ******/
.checkout-form-wrap {
  padding-right: 65px;
  position: relative;
}

.checkout-form-wrap:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  background: #e4e7eb;
  right: -14px;
  top: 0;
}

.checkout-form-product {
  padding-left: 60px;
}

.checkout-form-product .single-cart-product .media-body p {
  font-size: 14px;
}

.checkout-title {
  border-bottom: 1px solid #d9dde4;
  margin-bottom: 35px;
}

.checkout-title h6 {
  letter-spacing: 0.22px;
  color: #5b6880;
  font-weight: 400;
}

.checkout-title span {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.3px;
  color: #5b6880;
  margin-right: 8px;
}

.checkout-title a {
  font-size: var(--body-font-size);
  line-height: 18px;
  letter-spacing: 0.6px;
  color: #01358d;
  font-weight: 500;
}

.payment-method ul li {
  font-size: var(--body-font-size);
  line-height: 18px;
  letter-spacing: 0.15px;
  color: #97a1b3;
  list-style: none;
  position: relative;
  padding-left: 32px;
  margin-bottom: 13px;
}

.payment-method ul li img {
  margin-right: 14px;
}

.payment-method ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -7px;
  height: 14px;
  width: 14px;
  border-radius: 50%;
  border: 1px solid #97a1b3;
}

.payment-method.style-two {
  box-shadow: 0px 24px 50px #4a4a4a1f;
  display: inline-block;
  padding: 20px;
  border-radius: 4px;
}

.payment-method.style-two ul,
.payment-method.style-two ul li {
  margin-bottom: 0;
  padding: 0;
}

.payment-method.style-two ul:before,
.payment-method.style-two ul li:before {
  display: none;
}

.single-cart-product {
  align-items: center;
}

.single-cart-product .media-left {
  margin-right: 25px;
}

.single-cart-product .media-body span {
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.16px;
  color: #5b6880;
  margin-bottom: 9px;
  display: block;
}

.single-cart-product .media-body p {
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.16px;
  color: #97a1b3;
  margin-bottom: 0;
}

.cart-close {
  cursor: pointer;
}

.cart-product-price {
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.32px;
  color: #5b6880;
}

.table-responsive tr td {
  vertical-align: middle;
  padding: 0.75rem 0;
  border-top: 0 !important;
  border-bottom: 1px solid #dee2e6;
}

.total-shapping-area {
  width: 100%;
}

.total-shapping-area .charge {
  padding-top: 25px;
}

.total-shapping-area .charge span {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.3px;
  color: #5b6880;
}

.total-shapping-area .total-amount {
  border-bottom: 1px solid #dee2e6;
  padding-top: 30px;
  padding-bottom: 10px;
}

.total-shapping-area .total-amount span {
  font-size: 16px;
  letter-spacing: 0.3px;
  color: #5b6880;
  font-weight: 500;
}

.total-shapping-area .total-amount span.amount {
  font-weight: 400;
}

.single-shop-related-product .section-title {
  margin-bottom: 57px;
}

/**job-position-area **/
.single-job-list {
  background: #fff;
  box-shadow: 0px 4px 20px #9398a11a;
  border-radius: 8px;
  padding: 22px 35px 22px 26px;
  transition: all 0.3s ease;
  margin-bottom: 40px;
  align-items: center;
}

.single-job-list:hover {
  box-shadow: 0px 7px 30px #9398a11c;
}

.single-job-list img {
  width: 66px;
  height: 66px;
}

.single-job-list .media-body {
  border-left: 1px solid #eeebf7;
  margin-left: 26.5px;
  padding-left: 25.5px;
}

.single-job-list .media-body h6 {
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.18px;
  color: #5b6880;
  display: inline-block;
  margin-bottom: 12px;
}

.single-job-list .media-body span {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  font-weight: 400;
  letter-spacing: 0.3px;
  color: #5b6880;
  display: block;
}

.job-apply-btn {
  background: #ffffff;
  border: 1px solid #d6dae1;
  border-radius: 4px;
  font-size: var(--body-font-size);
  letter-spacing: 0.3px;
  color: #97a1b3;
  height: 44px;
  line-height: 44px;
  transition: all 0.3s ease;
  cursor: pointer;
  padding: 0 30px;
  display: inline-block;
}

.job-apply-btn:hover {
  box-shadow: 0px 7px 16px #01358d6b;
  background: #01358d;
  color: #fff;
  border: 1px solid #01358d;
}

.job-apply-btn:focus,
.job-apply-btn:active {
  box-shadow: none;
  outline: 0;
}

/**job-details-area**/
.job-details-area .section-title .title {
  font-size: 36px;
  margin-bottom: 0;
  font-weight: 500;
  letter-spacing: 0.72px;
  border-bottom: 1px solid #01358d;
  padding: 0;
  display: inline-block;
}

.job-details-area h6.title {
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  letter-spacing: 0.24px;
  color: #01358d;
  margin-bottom: 10px;
}

.job-details-area span {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.36px;
  color: #5b6880;
}

.job-details-area .sub-title {
  margin-top: 26px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: #01358d;
  margin-bottom: 10px;
}

.job-details-area ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.job-details-area ul li {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.3px;
  color: #5b6880;
  position: relative;
  padding-left: 18px;
}

.job-details-area ul li:after {
  content: "";
  position: absolute;
  height: 5px;
  width: 5px;
  left: 0;
  top: 13px;
  border-radius: 50%;
  background: #5b6880;
}

.job-details-area .job-apply-btn {
  margin-top: 30px;
  margin-bottom: 60px;
  border: 0;
  box-shadow: 0px 7px 16px #01358d6b;
  background: #01358d;
  color: #fff;
}

.job-details-area .job-apply-btn:hover {
  opacity: 0.9;
}

.single-blog-content {
  border: 0;
  margin-bottom: 40px;
}

.single-blog-content .thumb {
  margin-bottom: 30px;
}

.single-blog-content .single-blog-details .post-meta {
  list-style: none;
  padding: 0;
  margin: 0;
}

.single-blog-content .single-blog-details .post-meta li {
  font-size: var(--body-font-size);
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 0.3px;
  color: #97a1b3;
  margin-right: 3px;
  margin-bottom: 9px;
  display: inline-block;
}

.single-blog-content .single-blog-details .post-meta li i {
  margin-right: 5px;
  float: left;
  margin-top: 5px;
}

.single-blog-content .single-blog-details .post-meta li.admin {
  letter-spacing: 0.45px;
  color: #dfe5ef;
  background: #01358d;
  border-radius: 2px;
  height: 23px;
  line-height: 24px;
  padding: 0 15px;
  margin-right: 17px;
}

.single-blog-content .single-blog-details h5 {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.72px;
  color: #01358d;
  margin-bottom: 21px;
  display: block;
}

.single-blog-content .single-blog-details h5 {
  margin-top: 12px;
}

.single-blog-content .single-blog-details h5 a {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: 0.72px;
  color: #01358d;
  display: block;
}

.single-blog-content .single-blog-details p {
  font-size: var(--body-font-size);
  line-height: 27px;
  color: #5b6880;
  margin-bottom: 16px;
}

.single-blog-content .single-blog-details a {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.3px;
  color: #01358d;
  transition: all 0.3s ease;
}

.single-blog-content .single-blog-details a span {
  transition: all 0.3s ease;
  position: relative;
}

.single-blog-content .single-blog-details a:hover {
  color: var(--main-color-one);
}

.single-blog-content .single-blog-details a:hover span {
  margin-left: 3px;
}

.single-blog-content .single-blog-details a i {
  font-size: 22px;
  position: absolute;
  bottom: -3px;
  right: -28px;
}

.single-blog-content.style-two .thumb img {
  width: 100%;
}

.single-blog-content.style-two .single-blog-details h5 a {
  font-size: 26px;
  line-height: 32px;
}

.single-blog-content .audio-player iframe {
  width: 100%;
  border: 0;
}

/* news css */
.clamp-2 {
  display: -webkit-box !important;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 2em;
}

.news-image-wrapper {
  height: 400px;
  overflow: hidden;
  border-radius: 5px;
}

.news-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-link {
  text-decoration: underline;
  color: #01358D;
  cursor: pointer;
}

/******* blog details style *******/
.post-share-area {
  border-top: 1px solid #e4e7eb;
  border-bottom: 1px solid #e4e7eb;
  padding: 40px 0;
}

.post-share-area .sb-inner-title {
  font-size: 24px;
  line-height: auto;
  font-weight: 500;
  letter-spacing: 0.28px;
  color: #01358d;
  margin-bottom: 0;
  margin-right: 30px;
}

.post-share-area .social-icon li:first-child {
  margin-left: 0;
}

.rq-blockquote {
  padding: 40px 30px 35px 30px;
  position: relative;
  margin: 13px 0 20px 0;
  background: #f1f2f6;
}

.rq-blockquote p {
  font-weight: 500;
  font-size: 18px !important;
  font-style: Italic;
  color: #515d73;
  font-family: var(--body-font);
}

/*--------------------------------------------------------------
	## content
--------------------------------------------------------------*/
/********** home 1 content **********/
.header-inner {
  padding-top: 40px;
}

.service-area {
  position: relative;
}

.service-area:after {
  content: "";
  position: absolute;
  background-image: url("../../assets/img/service/bg.png");
  background-repeat: no-repeat;
  right: 0;
  top: 50%;
  background-size: auto;
  left: 94%;
  bottom: 0;
  margin-top: -150px;
  z-index: -1;
}

.sbs-what-riyaqas {
  background-repeat: no-repeat;
  background-size: 48% 100%;
}

.sbs-testimonial-section {
  margin-top: 90px;
}

.sbs-business-tool {
  background-repeat: no-repeat;
  background-size: 52% 100%;
  padding-top: 70px;
}

/********** home 2 content **********/
.sba-featute-area {
  margin-bottom: 70px;
}

.sba-header-area {
  position: relative;
  padding: 0px 0 104px;
}

.sba-header-area:before {
  content: "";
  position: absolute;
  background-image: url(../../assets/img/app/banner/bg1.png);
  background-repeat: no-repeat;
  left: 0;
  top: 50px;
  background-size: 17%;
  right: 0;
  bottom: 0;
}

.sba-header-area:after {
  content: "";
  position: absolute;
  background-image: url(../../assets/img/app/banner/bg2.png);
  background-repeat: no-repeat;
  left: 0;
  top: -20px;
  background-size: 51%;
  right: 0;
  bottom: 0;
  background-position: right;
  z-index: -1;
}

.sba-manage-data-area {
  padding-top: 42px;
}

/******** home 3 centent *********/
/********* home 4 content **********/
.sbst-banner-area:before {
  content: "";
  position: absolute;
  background-image: url(../../assets/img/bg/8h1.png);
  background-repeat: no-repeat;
  left: 0;
  top: 50px;
  background-size: contain;
  right: 0;
  bottom: 0;
}

.sbst-provide-security {
  background-repeat: no-repeat;
  background-size: 65% 100%;
  background-position: right;
  padding: 100px 0 70px 0;
}

.sbst-team-area-wrpper {
  margin-top: 92px;
}

.team-area-wrpper {
  padding: 80px 0 50px;
  position: relative;
}

.team-area-wrpper:after {
  content: "";
  position: absolute;
  background-image: url(../../assets/img/startup/team/4.png);
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

/********* home 5 content *********/
.sbtc-goal-counter-area {
  position: relative;
}

.sbtc-goal-counter-area .thumb {
  position: relative;
}

.sbtc-goal-counter-area .goal-counter {
  background: #01358d;
  padding: 78px 76px 110px;
  position: absolute;
  right: -37%;
  top: 18%;
  z-index: 1;
  width: 674px;
  max-height: 454px;
}

.sbtc-goal-counter-area .goal-counter .section-title .title {
  color: #fff;
}

/********** home 6 ********/
.riyaqas-check-bg {
  position: absolute;
  z-index: -1;
  margin-top: -80px;
  width: 121%;
  margin-left: -150px;
}

.riyaqas-check-bg2 {
  position: absolute;
  z-index: -1;
  margin-top: -199px;
  width: 100%;
  margin-left: -150px;
}

.marketing-area .section-title {
  padding: 85px 80px 80px;
}

.marketing-area .section-title .title {
  color: #fff;
}

.marketing-area .section-title p {
  color: #fff;
  margin-top: 25px;
}

/*********** home 7 ***********/
.sbdm-image-gurd {
  position: relative;
}

.sbdm-image-gurd .sbdm-image-2 {
  position: absolute;
  left: 0;
  top: 90px;
}

.sbdm-image-gurd .sbdm-image-3 {
  position: absolute;
  bottom: 0;
  left: 200px;
  width: 80%;
}

.sbdm-image-gurd2 {
  position: relative;
}

.sbdm-image-gurd2 .sbdm-image-2 {
  position: absolute;
  right: 0;
  bottom: 0;
}

.sbdm-image-gurd2 .sbdm-image-3 {
  position: absolute;
  left: -40px;
  bottom: 0;
}

/******** home 8 *******/
.sb-animate-img {
  position: relative;
}

.sb-animate-img .thumb-2 {
  position: absolute;
  top: 0;
}

.h8-banner-area-bg {
  position: relative;
}

.h8-banner-area-bg:before {
  content: "";
  position: absolute;
  background-image: url(../../assets/img/bg/8h1.png);
  background-repeat: no-repeat;
  left: 0;
  top: 50px;
  background-size: contain;
  right: 0;
  bottom: 0;
}

.comment-form-area .single-input-wrap .single-input.textarea {
  margin-bottom: 10px;
}

.comment-form-area .riyaqas-form-wrap .btn {
  padding: 0 30px;
}

.sbtc-success-section.sbst-provide-security {
  background-size: 48% 100%;
}

.accordion-h-five {
  border-top: 1px dashed #8f98a8;
  border-bottom: 1px dashed #8f98a8;
  padding-top: 70px;
  padding-bottom: 56px;
}

.about-area.sbst-provide-security {
  background-size: 50%;
}

.bg-img-right-area {
  background-position: 100%;
  background-repeat: no-repeat;
  padding: 150px 0;
  background-size: 41% 100%;
}

/*----------------------------------
    Footer Area
----------------------------------*/
.newsletter-subcribe .form-group {
  position: relative;
  margin-bottom: 0;
}

.newsletter-subcribe .form-group input {
  height: 60px;
  background: #ffffff 0% 0% no-repeat padding-box;
  border: 1px solid #97a1b2;
  border-radius: 30px;
  padding: 0 182px 0 38px;
  font-size: var(--body-font-size);
  letter-spacing: 0.45px;
  color: #97a1b2;
}

.newsletter-subcribe .form-group input::placeholder {
  font-size: var(--body-font-size);
  letter-spacing: 0.45px;
  color: #97a1b2;
  opacity: 0.51;
}

.newsletter-subcribe .form-group .subcribe-submit {
  position: absolute;
  right: 3px;
  top: 3px;
  height: 54px;
  line-height: 56px !important;
  padding: 0 39px;
  font-size: 17px;
  letter-spacing: 1.02px;
  color: #fff;
  text-transform: uppercase;
  line-height: 24px;
  border-radius: 30px;
  border: 0;
  cursor: pointer;
  transition: all 0.3s ease-in;
  border: 0 !important;
}

.newsletter-subcribe .form-group .subcribe-submit:hover,
.newsletter-subcribe .form-group .subcribe-submit:focus {
  opacity: 0.8;
  outline: 0;
}

.footer-area {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.footer-area-2 .footer-widget-area {
  padding-top: 35px;
  border-top: 1px solid rgba(151, 161, 179, 0.2);
}

.footer-area-2 .copyright-inner {
  border-top: 1px solid rgba(151, 161, 179, 0.2);
  padding: 12px 0;
  margin-top: 45px;
}

.footer-area-2 .copyright-inner .copyright-text {
  padding-bottom: 0;
}

.footer-area-2 .newsletter-subcribe .form-group input {
  border: 1px solid rgba(151, 161, 179, 0.5);
}

.copyright-inner {
  padding-bottom: 20px;
}

.copyright-inner .copyright-text {
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.28px;
  color: #acb4c1;
  line-height: 44px;
}

.copyright-inner .copyright-text a {
  font-size: 14px;
  letter-spacing: 0.42px;
  font-weight: 500;
  display: inline-block;
  color: #acb4c1;
}

.copyright-inner .copyright-text a i {
  color: var(--main-color-one);
  padding: 0 3px 0 5px;
}

.copyright-inner .copyright-text a span {
  position: relative;
  color: #01358d;
}

.copyright-inner .copyright-text a span:before {
  position: absolute;
  left: auto;
  right: 0;
  top: 100%;
  content: "";
  background: #01358d;
  height: 1px;
  width: 0%;
  visibility: hidden;
  opacity: 0;
  /* IE 9 */
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
  transition: 0.6s;
}

.copyright-inner .copyright-text a span:hover:before {
  visibility: visible;
  opacity: 1;
  right: auto;
  left: 0;
  width: 100%;
}

.social-icon {
  margin-bottom: 0;
  padding-left: 0;
}

.social-icon li {
  display: inline-block;
  margin: 0 5px;
}

.social-icon li a {
  height: 42px;
  width: 42px;
  display: inline-block;
  box-shadow: 0px 3px 14px #666c752e;
  border-radius: 50%;
  text-align: center;
  line-height: 44px;
  color: #5b6880;
  transition: all 0.3s ease-in;
  background: #fff;
  font-size: 16px;
}

.social-icon li .dribbble:hover {
  color: #ea4c89;
}

.social-icon li .facebook:hover {
  color: #3b5999;
}

.social-icon li .twitter:hover {
  color: #55acee;
}

.social-icon li .linkedin:hover {
  color: #0077b5;
}

.social-icon li .pinterest:hover {
  color: #c8232c;
}

/*---------------------------------------
    ## Back Top
---------------------------------------*/
.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 50px;
  height: 50px;
  background-color: #001BB7;
  color: #fff;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  z-index: 99;
  font-size: 25px;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  display: none;
}

/*-------------------------
    ## Preloader Css
---------------------------*/
.pre-wrap {
  position: fixed;
  content: "";
  transform: translate(-100%, -240%);
  font-size: 62px;
}

.preloader-inner {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  background-color: rgba(2, 48, 71, 0.8);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-inner .cancel-preloader {
  position: absolute;
  bottom: 30px;
  right: 30px;
}

.preloader-inner .cancel-preloader a {
  background-color: #fff;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--main-color-one);
  width: 200px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 30px;
  display: block;
  transition: all 0.3s ease-in;
}

.preloader-inner .cancel-preloader a:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

.spinner {
  margin: 120px auto;
  width: 60px;
  height: 60px;
  position: relative;
  text-align: center;
  animation: sk-rotate 2s infinite linear;
}

.dot1,
.dot2 {
  width: 60%;
  height: 60%;
  display: inline-block;
  position: absolute;
  top: 0;
  background-color: var(--main-color-one);
  border-radius: 100%;
  animation: sk-bounce 2s infinite ease-in-out;
}

.dot2 {
  top: auto;
  bottom: 0;
  animation-delay: -1s;
}

@keyframes sk-rotate {
  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
  }
}

@keyframes sk-bounce {

  0%,
  100% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }

  50% {
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}

/*----------------------------------------
  ## Search Popup
----------------------------------------*/
.search-popup.active .search-form {
  visibility: visible;
  opacity: 1;
}

.search-popup .search-form {
  min-width: 600px;
  position: fixed;
  top: 50%;
  left: 50%;
  transition: 0.5s ease;
  visibility: hidden;
  opacity: 0;
  /* IE 9 */
  /* Chrome, Safari, Opera */
  transform: translate(-50%, -50%);
  z-index: 9;
}

.search-results {
  position: absolute;
  top: 100%;
  /* directly below the input */
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 8px;
  margin-top: 1px;
  z-index: 1000;
  max-height: 250px;
  overflow-y: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.search-results div {
  padding: 10px;
  cursor: pointer;
}

.search-results div:hover {
  background: #f0f0f0;
}

.search-popup .search-form .form-group .form-control {
  border: none;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  height: 54px;
  padding: 0 100px 0 30px;
}

.search-popup .search-form .submit-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 54px;
  border: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background-color: var(--main-color-two);
  color: #fff;
  transition: all 0.3s ease-in;
  padding: 0;
  text-align: center;
  cursor: pointer;
}

.search-popup .search-form .submit-btn:hover {
  background-color: #5b6880;
}

.body-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(2, 48, 71, 0.8);
  z-index: 9;
  content: "";
  left: 0;
  top: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in;
  cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==),
    progress;
}

.body-overlay.active {
  visibility: visible;
  opacity: 0.8;
}

/******** cart popup **********/
.cart-popup.active .order-table {
  visibility: visible;
  opacity: 1;
}

.cart-popup .order-table {
  width: 57%;
  position: absolute;
  position: fixed;
  top: 50%;
  left: 50%;
  transition: 0.5s ease;
  visibility: hidden;
  opacity: 0;
  /* IE 9 */
  /* Chrome, Safari, Opera */
  transform: translate(-50%, -50%);
  max-height: calc(100% - 15%);
  overflow-y: auto;
  background: #ffffff;
  box-shadow: 0px 3px 26px #01358d0d;
  border-radius: 8px;
  z-index: 99;
  padding: 60px 44px;
}

.cart-popup .order-table .table {
  margin-bottom: 0;
}

.cart-popup .order-table .checkout-title h6 {
  color: #01358d;
  font-weight: 500;
  margin-bottom: 30px;
}

.login-register-popup.active {
  visibility: visible;
  opacity: 1;
}

.login-register-popup {
  background: #fff;
  position: absolute;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 56%;
  transition: 0.5s ease;
  /* IE 9 */
  /* Chrome, Safari, Opera */
  transform: translate(-50%, -50%);
  max-height: calc(100% - 15%);
  overflow-y: auto;
  transition: 0.5s ease;
  visibility: hidden;
  opacity: 0;
  z-index: 9999;
  box-shadow: 0px 2px 69px #97a1b238;
  border-radius: 6px;
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 20px;
  color: #6e6b6b;
  cursor: pointer;
  z-index: 10000;
  transition: 0.3s ease;
}

.popup-close:hover {
  color: #01358d;
  transform: scale(1.1);
}

.login-register-popup .riyaqas-form-wrap {
  display: block;
  width: 100%;
  padding: 0 55px;
}

.login-register-popup .riyaqas-form-wrap .single-input-wrap label {
  line-height: unset;
}

.login-register-popup .riyaqas-form-wrap .widget-title {
  font-size: 20px;
}

.login-register-popup .riyaqas-form-wrap span,
.login-register-popup .riyaqas-form-wrap label {
  font-size: 12px;
  color: #97a1b3;
  letter-spacing: 0.24px;
}

.login-register-popup .riyaqas-form-wrap .check-box-area {
  overflow: hidden;
}

.login-register-popup .riyaqas-form-wrap .check-box-area input {
  margin-right: 5px;
  float: left;
}

.login-register-popup .riyaqas-form-wrap .check-box-area label {
  margin-bottom: 0;
  margin-top: -3px;
  float: left;
}

.login-register-popup .riyaqas-form-wrap .btn-wrap {
  line-height: 41px;
  margin-top: 30px;
}

.login-register-popup .riyaqas-form-wrap .btn-wrap .btn {
  height: 40px;
  line-height: 41px;
  padding: 0 30px;
  border-radius: 0;
  margin-top: 0;
  margin-right: 15px;
}

.login-register-popup .riyaqas-form-wrap .btn-wrap a.signup {
  color: #01358d;
  font-size: 12px;
  border-bottom: 1px solid #01358d;
  margin-left: 5px;
}

/*---------------------------------------
    ## Button
---------------------------------------*/
.box-shadow {
  box-shadow: 0px 25px 70px #01358d1a;
}

.padding-60px {
  padding: 60px;
}

.btn-wrapper {
  display: block;
}

.btn-wrapper .btn-appstore {
  margin-right: 18px;
  display: inline-block;
  border-radius: 8px;
  transition: all 0.3s ease-in;
}

.btn-wrapper .btn-appstore:hover {
  box-shadow: 0px 15px 22px #5b68801c;
}

.btn-wrapper .btn-playstore {
  display: inline-block;
  border-radius: 8px;
  transition: all 0.3s ease-in;
}

.btn-wrapper .btn-playstore:hover {
  box-shadow: 0px 15px 22px #5b68801c;
}

.btn {
  height: 52px;
  line-height: 52px;
  padding: 0 48px;
  letter-spacing: 0.45px;
  font-weight: 400;
  transition: all 0.3s ease-in;
}

.btn i {
  margin-left: 15px;
}

.btn:focus {
  outline: 0;
  box-shadow: none;
}

.btn.btn-rounded {
  border-radius: 30px;
}

.btn.btn-radius {
  border-radius: 4px;
}

.btn-extra-small {
  height: 36px;
  line-height: 36px;
  padding: 0 30px;
  font-size: 14px;
}

.btn-small {
  height: 42px;
  line-height: 42px;
  padding: 0 30px;
  font-size: 14px;
}

.btn-large {
  height: 48px;
  line-height: 48px;
  padding: 0 30px;
}

.btn-extra-large {
  height: 60px;
  line-height: 60px;
  padding: 0 70px;
}

.btn-transparent {
  border: 1px solid #fff;
  color: #fff;
}

.btn-transparent:hover,
.btn-transparent:focus {
  color: #5b6880;
  background: #fff;
}

.btn-no-border-radius {
  border-radius: 0;
}

.btn-border-radius {
  border-radius: 4px;
}

.btn-ex-border-radius {
  border-radius: 40px;
}

.btn-white {
  background: #fff;
  border: 1px solid #fff;
  color: #5b6880;
}

.btn-white:hover,
.btn-white:focus {
  color: #fff;
  background: transparent;
}

.btn-normal {
  background: #fff;
  border: 1px solid #97a1b3;
  color: #5b6880;
}

.btn-normal:hover,
.btn-normal:focus {
  color: #97a1b3;
  background: transparent;
}

.btn-deactive {
  background: #fff;
  border: 1px solid #d6dae1;
  color: #d6dae1;
}

.btn-deactive:hover,
.btn-deactive:focus {
  color: #d6dae1;
  background: transparent;
}

.btn-green {
  background: #001bb7;
  box-shadow: 0px 11px 14px #001bb74d;
  color: #fff;
}

.btn-green:hover,
.btn-green:focus {
  opacity: 0.7;
  color: #fff;
}

.btn-blue {
  background: #01358d;
  color: #fff;
}

.btn-blue:hover {
  opacity: 0.7;
  color: #fff;
}

.btn-red {
  background: var(--main-color-one);
  box-shadow: 0px 10px 14px #4038ea4f;
  color: #fff;
}

.btn-red:hover {
  opacity: 0.8;
  color: #fff;
}

.btn-red-border {
  background: #fff;
  border: 1px solid var(--main-color-one);
}

.btn-red-border:hover {
  opacity: 0.8;
  color: #fff;
  box-shadow: 0px 10px 14px #f524434f;
  background: var(--main-color-one);
}

.btn-gray {
  background: #f0f0f0;
  color: #97a1b3;
}

.btn-gray:hover {
  background: var(--main-color-one);
  color: #fff;
}

.single-video-play span {
  font-size: 16px;
  line-height: 28px;
  font-weight: 500;
  letter-spacing: 0.96px;
  color: #97a1b3;
  margin-right: 30px;
}

.single-video-play a {
  width: 52px;
  height: 52px;
  display: inline-block;
  background: #ff657c;
  box-shadow: 0px 10px 16px #f9556d45;
  border-radius: 50%;
  line-height: 57px !important;
  text-align: center;
  display: inline-block !important;
}

.single-video-play a i {
  color: #fff;
  font-size: 18px;
  padding-left: 5px;
}

.desktop-center {
  text-align: center;
}

.desktop-left {
  text-align: left;
}

.desktop-right {
  text-align: right;
}

@media only screen and (max-width: 768px) {
  .tablet-center {
    text-align: center;
  }

  .tablet-left {
    text-align: left;
  }

  .tablet-right {
    text-align: right;
  }
}

@media only screen and (max-width: 414px) {
  .mobile-center {
    text-align: center;
  }

  .mobile-left {
    text-align: left;
  }

  .mobile-right {
    text-align: right;
  }
}

/*----------------------------------------
  ## Section title
----------------------------------------*/
.section-title {
  margin-bottom: 16px;
}

.section-title .counting-number {
  font-size: 92px;
  font-weight: 500;
  letter-spacing: 1.84px;
  color: #5b6880;
  background: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
  position: relative;
  display: inline-block;
}

.section-title .counting-number:after {
  content: "";
  position: absolute;
  height: 42px;
  width: 42px;
  background: rgba(216, 255, 243, 0.7);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  margin-top: -21px;
  margin-left: -21px;
  z-index: -1;
}

.section-title .title {
  letter-spacing: 0.92px;
  color: black;
  opacity: 1;
  font-weight: 700;
  margin-bottom: 0;
  font-family: var(--poppins-font);
}

.section-title .title span {
  color: var(--main-color-one);
}

.section-title .title-2 {
  font-size: 36px;
  line-height: 44px;
}

.section-title p {
  letter-spacing: 0.32px;
  color: #5b6880;
  opacity: 1;
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  margin-top: 18px;
  margin-bottom: 0;
  font-weight: 400;
}

.section-title a {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  font-weight: 500;
  letter-spacing: 0.45px;
  color: #97a1b3;
  transition: all 0.3s ease-in;
  margin-top: 24px;
  display: inline-block;
  position: relative;
}

.section-title a img {
  margin-left: 6px;
  transition: 0.3s;
}

.section-title a:hover img {
  margin-left: 9px;
}

.section-title a.read-more i {
  font-size: 35px;
  position: absolute;
  right: -42px;
  bottom: -3px;
}

.section-title a:hover {
  color: var(--main-color-one);
}

.section-title.style-two {
  margin-bottom: 44px;
}

.section-title.style-three {
  max-width: 80%;
  margin-bottom: 45px;
}

.section-title.style-four .title {
  font-size: 36px;
  line-height: 1.2;
}

.order-now-btn {
  padding: 2px 13px;
  border-radius: 4px;
  color: #f4f4f4 !important;
  margin-right: 0 !important;
}

.section-title.style-four p {
  line-height: 26px;
}

.section-title.style-five .sub-title {
  font-size: 18px;
  font-weight: 500;
}

.section-title.style-five .sub-title span {
  color: var(--main-color-one);
}

.section-title.ui-element-section-title {
  margin-bottom: 0;
}

.section-title.ui-element-section-title .title {
  font-size: 32px;
  line-height: 1.2;
  color: #5b6880;
}

.section-title.ui-element-section-title p {
  font-size: 16px;
  line-height: 26px;
  color: #5b6880;
  position: relative;
  display: inline-block;
}

.section-title.ui-element-section-title p:after {
  content: "";
  position: absolute;
  right: -50px;
  top: 50%;
  background: #4b4b4b;
  height: 1px;
  width: 30px;
}

.section-title-3 {
  max-width: 80%;
}

.riyaqas-check-list {
  margin-bottom: 25px;
}

.riyaqas-check-list img {
  margin-top: 5px;
  margin-right: 18px;
  width: 15px;
  height: 15px;
}

.riyaqas-check-list span {
  letter-spacing: 0.34px;
  color: #5b6880;
  font-size: 17px;
  line-height: 28px;
}

.client-slider-title {
  font-size: 32px;
  line-height: 28px;
  font-family: var(--poppins-font);
  letter-spacing: 0.64px;
  color: #5b6880;
  font-weight: 400;
}

.client-slider-title span {
  color: var(--main-color-one);
  font-weight: 500;
}

.newsletter-section {
  margin-bottom: 20px;
}

.newsletter-section .title {
  letter-spacing: 0.92px;
  color: black;
  opacity: 1;
  font-weight: 700;
  margin-bottom: 0;
  font-family: var(--poppins-font);
}

.newsletter-section p {
  letter-spacing: 0.32px;
  color: #5b6880;
  opacity: 1;
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  margin-top: 18px;
  margin-bottom: 0;
  font-weight: 400;
}

/*-----------------------------------------
    Accordion Item
-----------------------------------------*/
/********* single accordion *********/
.single-accordion {
  border: 1px solid #f5f9ff;
  border-radius: 3px;
  margin-bottom: 14px;
}

.single-accordion .card-header {
  background: transparent;
  border-radius: 0;
  border: 0;
  padding: 0;
  margin-bottom: 14px;
}

.single-accordion .card-header h2 button {
  font-size: 18px;
  letter-spacing: 0.32px;
  color: #01358d;
  width: 100%;
  text-align: left;
  position: relative;
  background: #f5f9ff;
  border-radius: 3px;
  border: 0;
  padding: 19px 60px 19px 34px;
  height: auto;
  line-height: 34px;
  float: left;
  font-weight: 500;
  white-space: normal;
}

.single-accordion .card-header h2 button:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 12px;
  background: #01358d;
  top: 50%;
  right: 30px;
}

.single-accordion .card-header h2 button:before {
  content: "";
  position: absolute;
  height: 2px;
  width: 12px;
  background: #01358d;
  top: 50%;
  transition: all 0.3s ease;
  right: 30px;
}

.single-accordion .card-header h2 button:hover,
.single-accordion .card-header h2 button:focus,
.single-accordion .card-header h2 button:active {
  text-decoration: none;
}

.single-accordion .card-header h2 button i {
  float: right;
}

.single-accordion .card-header h2 button.collapsed:before {
  transform: matrix(0, 1, -1, 0, 0, 0);
}

.single-accordion .card-body {
  padding: 21px 71px 23px 37px;
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.3px;
  color: #97a1b3;
}

.accordion.style-two .single-accordion {
  box-shadow: 0px 10px 54px #97a1b224;
  border: 0;
}

.accordion.style-two .single-accordion .card-header h2 button {
  background: transparent;
  padding: 14px 35px 14px 55px;
  color: #5b6880;
}

.accordion.style-two .single-accordion .card-header h2 button:before,
.accordion.style-two .single-accordion .card-header h2 button:after {
  left: 30px;
  background: var(--main-color-one);
}

.accordion.style-two .single-accordion .card-header h2 button.collapsed:before,
.accordion.style-two .single-accordion .card-header h2 button.collapsed:after {
  background: #5b6880;
}

.accordion.style-two .single-accordion .card-body {
  padding: 10px 30px 35px 53px;
}

/*----------------------------------------
  ## list
----------------------------------------*/
.riyaqas-check-list {
  margin-bottom: 20px;
}

.riyaqas-check-list img {
  margin-right: 17px;
}

.riyaqas-check-list span {
  letter-spacing: 0.34px;
  color: #5b6880;
  font-size: var(--body-font-size);
  line-height: 24px;
}

.riyaqas-check-list.style-two {
  margin-bottom: 3px;
  list-style: none;
  position: relative;
}

.riyaqas-check-list.style-two:after {
  content: "";
  position: absolute;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  left: -15px;
  top: 9px;
  border: 1px solid var(--main-color-one);
}

.talented-pepole-list ul {
  margin-bottom: 0;
  padding-left: 0;
}

.talented-pepole-list ul li {
  display: inline-block;
  text-align: center;
  position: relative;
  padding: 0 34px;
}

.talented-pepole-list ul li h3 {
  font-size: 32px;
  font-weight: 600 !important;
  letter-spacing: 0.64px;
  color: #e62727;
  line-height: 24px;
  font-weight: 400;
}

.talented-pepole-list ul li span {
  font-size: var(--body-font-size);
  letter-spacing: 0.3px;
  color: #97a1b3;
  line-height: 24px;
}

.talented-pepole-list ul li:after {
  content: "";
  position: absolute;
  height: 50px;
  width: 1px;
  top: 0;
  right: 0;
  background: #97a1b3;
  opacity: 0.46;
}

.talented-pepole-list ul li:first-child {
  padding: 0 34 0 0px;
  padding-left: 0 !important;
}

.talented-pepole-list ul li:last-child:after {
  display: none;
}

.riyaqas-list-2 {
  padding-left: 0 !important;
}

.riyaqas-list-2 li {
  box-shadow: 0px 5px 22px #01358d2e;
  height: 100px;
  width: 100px;
  text-align: center;
  line-height: 100px;
  border-radius: 50%;
  display: inline-block;
  margin: 0 25px;
  background: #fff;
  transition: all 0.3s ease-in;
}

.riyaqas-list-2 li img {
  transition: 0.8s;
}

.riyaqas-list-2 li:first-child {
  margin-left: 0;
}

.riyaqas-list-2 li:last-child {
  margin-right: 0;
}

.riyaqas-list-2 li:hover {
  box-shadow: 0px 10px 22px #01358d2e;
}

.riyaqas-list-2 li:hover img {
  transform: rotateY(180deg);
}

.riyaqas-list-3 {
  padding-left: 0 !important;
}

.riyaqas-list-3 li {
  list-style: none;
  position: relative;
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.3px;
  color: #5b6880;
  padding-left: 34px;
  margin-bottom: 5px;
}

.riyaqas-list-3 li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  border: 1px solid #01358d;
  background: #fff;
}

.riyaqas-check-list-wrap .riyaqas-check-list {
  margin-bottom: 10px;
}

.riyaqas-check-list-wrap .riyaqas-check-list img {
  margin-top: 6px;
}

.single-hosting-content {
  padding-left: 50px;
}

.single-hosting-content p {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
}

/******** image shape *********/
.shape-bg-image {
  padding-bottom: 30px;
}

.shape-bg-image .thumb {
  position: relative;
  display: block;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("../../assets/img/startup/skill/2.png");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  overflow: hidden;
}

.shape-bg-image .thumb img {
  width: 100%;
  height: 100%;
}

.shape-bg-image:after {
  content: "";
  position: absolute;
  background-image: url("../../assets/img/startup/skill/3.png");
  background-repeat: no-repeat;
  left: 25px;
  top: 30px;
  background-size: 98%;
  right: 0;
  bottom: 0;
  background-position: right;
  z-index: -1;
}

.mask-bg-wrap {
  position: relative;
  padding-bottom: 30px;
}

.mask-bg-wrap .thumb {
  position: relative;
  display: block;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  overflow: hidden;
}

.mask-bg-wrap .thumb img {
  width: 100%;
  height: 100%;
}

.mask-bg-wrap:after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  left: 0;
  top: 0;
  background-size: 100%;
  right: 0;
  bottom: 0;
  background-position: right;
  z-index: -1;
}

.mask-bg-wrap.mask-bg-img-1 .thumb {
  -webkit-mask-image: url("../../assets/img/bg/8h4.png");
}

.mask-bg-wrap.mask-bg-img-1:after {
  background-image: url("../../assets/img/bg/8h4.png");
}

.mask-bg-wrap.mask-bg-img-2 .thumb {
  -webkit-mask-image: url("../../assets/img/bg/8h5.png");
}

.mask-bg-wrap.mask-bg-img-2:after {
  background-image: url("../../assets/img/bg/8h5.png");
  bottom: -20px;
  right: -15px;
}

/* .mask-bg-wrap.mask-bg-img-3 .thumb {
  -webkit-mask-image: url("../../assets/img/bg/1.png");
} */

.mask-bg-wrap.mask-bg-img-3:after {
  background-image: url("../../assets/img/bg/1.png");
  bottom: -20px;
  right: -15px;
}

.riyaqas-stab .nav-tabs .nav-item:last-child .nav-link {
  margin-right: 0;
}

.riyaqas-stab .nav-tabs .nav-link {
  border: 0 !important;
  background: transparent;
  font-size: 18px;
  position: relative;
  transition: 0.3s;
  padding: 0 0 10px 0;
  margin: 0 50px 0 10px;
}

.riyaqas-stab .nav-tabs .nav-link:hover,
.riyaqas-stab .nav-tabs .nav-link.active {
  color: var(--main-color-one);
}

.riyaqas-stab .nav-tabs .nav-link:hover:after,
.riyaqas-stab .nav-tabs .nav-link.active:after {
  visibility: visible;
  opacity: 1;
  transition: 0.3s;
}

.riyaqas-stab .nav-tabs .nav-link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--main-color-one);
  height: 1px;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
}

.riyaqas-stab .riyaqas-stab-content {
  padding: 35px 0;
}

/*----------------------------------------
	## ui elements
----------------------------------------*/
.bs-popover-right {
  top: 85px !important;
  margin-left: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #424344 !important;
  box-shadow: 0px 15px 18px #00000029;
}

.bs-popover-right .arrow {
  display: none !important;
}

.bs-popover-right .popover-body {
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.42px;
  color: #f6f6f6;
  padding: 30px;
}

.navbar-area-ui-element {
  position: inherit !important;
}

.single-alert {
  max-width: 536px;
  box-shadow: 0px 12px 50px #97a1b238;
  border-radius: 6px;
  padding: 70px 0 62px;
}

.single-alert .thumb {
  margin-bottom: 25px;
}

.single-alert p {
  font-size: 18px;
  letter-spacing: 0;
  color: #97a1b2;
  margin-bottom: 0;
}

.single-alert-mail-check {
  max-width: 536px;
  box-shadow: 0px 12px 50px #97a1b238;
  border-radius: 6px;
  padding: 100px 0;
  position: relative;
}

.single-alert-mail-check p {
  margin-bottom: 0;
}

.single-alert-mail-check .mail-alert-close {
  position: absolute;
  right: -22px;
  top: -20px;
  cursor: pointer;
}

.login-register-basic {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  transform: translate(0);
  visibility: visible;
  opacity: 1;
  z-index: 1;
}

/*--------------------------------
    ## All map 
----------------------------------*/
.worldmap-wrap {
  overflow: hidden;
  height: 360px;
}

.worldmap-wrap .world-map {
  height: 360px;
}

.worldmap-wrap .water {
  fill: none;
}

.worldmap-wrap .land {
  fill: #d9e3f1;
  stroke: #ffffff;
  stroke-width: 0.7px;
  width: 100% !important;
  margin: 0 auto;
}

/***** google map *****/
.map-area-wrap {
  box-shadow: 0px 25px 70px #01358d1a;
  border-radius: 6px;
  overflow: hidden;
}

#map {
  height: 610px;
}

.map-area-wrap .desktop-center-item {
  display: grid;
}

.contact-info {
  padding: 50px;
}

.contact-info .title {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.36px;
  color: #01358d;
  position: relative;
  margin-bottom: 15px;
  display: block;
}

.contact-info .sub-title {
  margin-bottom: 26px;
}

.contact-info p {
  font-size: var(--body-font-size);
  line-height: 28px;
  letter-spacing: 0.3px;
  color: #5b6880;
}

.contact-info p span {
  color: #01358d;
  font-weight: 500;
}

.more-question-area .single-service {
  padding: 96px 40px 78px 40px;
  height: 387.95px;
}

.more-question-area .single-service img {
  margin-bottom: 35px;
}

.more-question-area .single-service h6 {
  margin-bottom: 16px;
}

/*--------------------------------
    ## Video popup
----------------------------------*/
.img-with-video {
  background-position: center -2px;
  background-size: 83%;
  background-repeat: no-repeat;
}

.img-with-video .img-wrap {
  position: relative;
  text-align: center;
}

.img-with-video .img-wrap .hover {
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -33px;
  margin-top: -52px;
}

.img-with-video .img-wrap .hover img {
  width: 76px;
  height: 76px;
}

.img-with-video .img-wrap .hover a {
  position: relative;
  display: inline-block;
}

.img-with-video .img-wrap .hover a i {
  font-size: 75px;
  color: var(--main-color-one);
}

.img-with-video-2 {
  padding-top: 0;
  padding-bottom: 0;
}

/****** Vider Magnific-popup ***/
.mfp-zoom-in .mfp-container {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.mfp-zoom-in {
  /* animate in */
  /* animate out */
}

.mfp-zoom-in .mfp-content {
  opacity: 0;
  transition: all 0.3s ease-in;
  transform: scale(0.7);
}

.mfp-zoom-in.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-in;
}

.mfp-zoom-in.mfp-ready .mfp-content {
  opacity: 1;
  transform: scale(1);
}

.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.7;
}

.mfp-zoom-in.mfp-removing .mfp-content {
  transform: scale(0.7);
  opacity: 0;
}

.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

/*----------------------------------------
	## All slider
----------------------------------------*/
.sbs-testimonial-slider {
  height: 450px;
  margin-left: -250px;
  position: relative;
  padding-top: 75px;
}

.sbs-arrowleft {
  position: absolute;
  left: 120px;
  height: 42px;
  width: 42px;
  border-radius: 50%;
  line-height: 42px;
  text-align: center;
  display: inline-block;
  color: #5B6880;
  z-index: 2;
}

.sbs-arrowleft i {
  transition: all 0.3s ease-in;
}

.sbs-arrowleft a {
  display: block;
}

.sbs-arrowleft:hover i {
  opacity: 0.7;
}

.sbs-arrowright {
  position: absolute;
  left: 140px;
  height: 42px;
  width: 42px;
  border-radius: 50%;
  line-height: 42px;
  text-align: center;
  display: inline-block;
  color: #5B6880;
  z-index: 2;
}

.sbs-arrowright i {
  transition: all 0.3s ease-in;
}

.sbs-arrowright a {
  display: block;
}

.sbs-arrowright:hover i {
  opacity: 0.7;
}

.testimonial-slider-bg {
  background-image: url(../img/client/testimonial.png);
  background-repeat: no-repeat;
  background-size: cover;
}

/********* home 1 client slider **********/
.choose_slider_items {
  position: relative;
}

.choose_slider_items ul {
  position: relative;
}

.choose_slider_items ul li {
  width: 500px;
  background: #ffffff;
  box-shadow: 0px 12px 36px #97a1b224;
  border-radius: 6px;
  padding: 67px 30px 55px 75px;
}

.choose_slider_items ul li img {
  height: 74px;
  width: 74px;
  border-radius: 50%;
  background: #efefef;
  margin-right: 33px;
}

.choose_slider_items ul li .media {
  margin-bottom: 25px;
}

.testimonial-section .section-title {
  padding-left: 120px;
}

.choose_slider_items ul li .media-body h6 {
  font-size: 21px;
  letter-spacing: 0.21px;
  color: #001BB7;
  line-height: 25px;
  font-weight: 700;
  margin-bottom: 0;
}

.choose_slider_items ul li .media-body .designation {
  font-size: var(--body-font-size);
  letter-spacing: 0.45px;
  color: #808080;
  line-height: 25px;
  margin-bottom: 0;
}

.choose_slider_items ul li .media-body span i {
  color: #ffc82a;
  font-size: 12px;
}

.choose_slider_items ul li p {
  font-size: var(--body-font-size);
  letter-spacing: 0.3px;
  color: #000000;
}

.choose_slider_items .previous_item {
  top: 0;
  transform: scale(0.9, 0.9);
  left: 150px;
  padding: 67px 30px 55px 60px;
  z-index: 1;
}

.choose_slider_items .previous_item_2 {
  top: 0;
  padding: 67px 30px 55px 60px;
  transform: scale(0.7, 0.7);
  left: 32px;
}

.choose_slider_items .previous_hidden {
  top: 0;
  transform: scale(0.7, 0.7);
  padding: 67px 30px 55px 60px;
}

.choose_slider_items .current_item {
  transition: all 0.5s ease-in-out;
}

.testimonial-quote {
  position: absolute;
  left: 22%;
  top: -11%;
  color: #3E66DF33;
  font-size: 10rem;
}

/********* home 2 client slider **********/
.client-slider {
  margin-top: -10px;
  background-image: url(assets/img/client/testimonial.jpg);
  padding: 100px;
  background-repeat: no-repeat;
  background-size: cover;
  color: #000000;
}

.client-slider .owl-item.active.center .client-slider-item {
  box-shadow: 0px 10px 40px #97a1b238;
  transition: all 0.3s ease-in;
}

.client-slider .client-slider-item {
  background: #FFFFFF;
  box-shadow: 0px 28.93px 61.56px 0px #15151526;
  padding: 20px 45px 37px 45px;
  border-radius: 6px;
  margin: 30px 10px 45px 10px;
  transition: all 0.3s ease-in;
}

.client-slider .client-slider-item .star {
  color: #3E66DF;
  font-size: 1.5rem;
}

.client-slider .client-slider-item .testimonial-icon {
  background-color: #5D5DFF;
  color: white;
  border-radius: 50%;
  padding: 0.1rem 0.3rem;
  font-size: 0.8rem;
}

.client-slider .client-slider-item .media .media-left {
  position: relative;
  padding-top: 22px;
  margin-right: 9px;
  display: inline-block;
}

.client-slider .client-slider-item .media .media-left:after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  height: 155px;
  width: 155px;
  top: -22px;
  left: -35px;
  z-index: -1;
  background-size: 100%;
}

.client-slider .client-slider-item .media .media-left.media-left-one:after {
  background-image: url("../img/client/1.svg");
}

.client-slider .client-slider-item .media .media-left.media-left-two:after {
  background-image: url("../img/client/2.svg");
}

.client-slider .client-slider-item .media .media-left.media-left-three:after {
  background-image: url("../img/client/3.svg");
}

.client-slider .client-slider-item .media img {
  padding-right: 0;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  background: #fff;
}

.client-slider .client-slider-item .media .media-body {
  margin-top: 25px;
}

.client-slider .client-slider-item .media .media-body h6 {
  font-size: 18px;
  font-weight: 800;
  line-height: 24px;
  letter-spacing: 0.2px;
  margin: 0px;
}

.client-slider .client-slider-item .media .media-body p {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.42px;
  color: #5b6880;
  margin: 0px;
}

.client-slider .client-slider-item .client-content {
  font-size: var(--body-font-size);
  line-height: 26px;
  letter-spacing: 0.3px;
  color: #000000;
}

.client-slider .owl-dots {
  text-align: center;
  line-height: initial;
}

.client-slider .owl-dots .owl-dot {
  width: 16px;
  height: 8px;
  background: #97a1b3;
  display: inline-block;
  margin: 0 4px;
  border-radius: 7px;
  transition: all 0.3s ease-in;
}

.client-slider .owl-dots .owl-dot.active {
  width: 60px;
  height: 8px;
  background: #01358d;
}

/***** screenshot-slider ******/
.screenshot-slider {
  position: relative;
}

.screenshot-slider .thumb {
  box-shadow: 0px 2px 18px -7px #01358d2e;
  margin: 15px 10px;
  transition: all 0.3s ease-in;
}

.screenshot-slider .thumb img {
  width: auto !important;
  max-height: 563px;
  width: 100% !important;
  transition: all 0.3s ease-in;
}

.screenshot-slider:after {
  content: "";
  background-image: url(../../assets/img/screenshot/mockup.png);
  height: 100%;
  width: 311px;
  position: absolute;
  background-repeat: no-repeat;
  left: 50%;
  top: 0;
  margin-left: -155px;
  background-size: 100%;
}

.screenshot-slider .owl-item.active~.owl-item.active~.owl-item.active .screenshot-slider-item .thumb {
  border-radius: 30px;
}

.screenshot-slider .owl-item.active~.owl-item.active~.owl-item.active .screenshot-slider-item .thumb img {
  border-radius: 30px;
}

.screenshot-slider .owl-item.active~.owl-item.active~.owl-item.active~.owl-item.active .screenshot-slider-item .thumb {
  border-radius: 0 !important;
}

.screenshot-slider .owl-item.active~.owl-item.active~.owl-item.active~.owl-item.active .screenshot-slider-item .thumb img {
  border-radius: 0;
}

.screenshot-slider .owl-prev {
  position: absolute;
  left: 50%;
  margin-left: -55px;
  z-index: 2;
  margin-top: 25px;
}

.screenshot-slider .owl-next {
  position: absolute;
  left: 50%;
  margin-left: 15px;
  z-index: 2;
  margin-top: 25px;
}

/***** testimonial-slider-2- ******/
.testimonial-slider2-bg {
  position: relative;
}

.testimonial-slider2-bg:after {
  content: "";
  position: absolute;
  background-image: url("../../assets/img/business/testimonial/5.png");
  background-repeat: no-repeat;
  background-size: 60%;
  background-position: 81% 0;
  width: 100%;
  right: 0;
  bottom: 0;
  top: 30px;
  z-index: -1;
}

.testimonial-slider-2 .media {
  margin: 60px;
}

.testimonial-slider-2 .media .media-left {
  margin-left: 65px;
}

.testimonial-slider-2 .media .media-left:before {
  content: "";
  position: absolute;
  left: 0;
  top: -56px;
  bottom: 0;
  width: 100%;
  background-size: 48%;
  background-image: url("../../assets/img/business/testimonial/1.png");
  background-repeat: no-repeat;
}

.testimonial-slider-2 .media .media-left img {
  height: 370px;
  width: 370px;
  border-radius: 50%;
}

.testimonial-slider-2 .media .media-body {
  background: #fcfcfc;
  box-shadow: 0px 10px 34px #0000001c;
  border-radius: 6px;
  padding: 60px 65px 55px 65px;
  z-index: 1;
  margin-top: 85px;
}

.testimonial-slider-2 .media .media-body p {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.32px;
  color: #5b6880;
  padding: 0 22px;
  position: relative;
}

.testimonial-slider-2 .media .media-body p:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 20px;
  width: 20px;
  background-image: url("../../assets/img/business/testimonial/left.png");
  background-repeat: no-repeat;
}

.testimonial-slider-2 .media .media-body p:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  height: 20px;
  width: 20px;
  background-image: url("../../assets/img/business/testimonial/right.png");
  background-repeat: no-repeat;
}

.testimonial-slider-2 .media .media-body h6 {
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 0.24px;
  color: #01358d;
  position: relative;
  display: inline-block;
}

.testimonial-slider-2 .media .media-body h6:after {
  content: "";
  background: #01358d;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  width: 100%;
  opacity: 0.5;
}

.testimonial-slider-2 .media .media-body span {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.3px;
  color: #97a1b3;
  display: block;
}

.testimonial-slider-2 .owl-dots {
  text-align: center;
  margin-left: 36%;
  margin-top: -50px;
  background: transparent;
}

.testimonial-slider-2 .owl-dots .owl-dot {
  width: 16px;
  height: 8px;
  background: #97a1b3;
  display: inline-block;
  margin: 0 4px;
  border-radius: 7px;
  transition: all 0.3s ease-in;
  position: relative;
}

.testimonial-slider-2 .owl-dots .owl-dot.active {
  width: 60px;
  height: 8px;
  background: #01358d;
}

/***** client-slider-2 *****/
.client-slider-2 {
  box-shadow: 0px 10px 46px #97a1b212;
  border-radius: 10px;
  padding: 28px 0;
  background: #fff;
}

.client-slider-2 .client-slider-2-item {
  text-align: center;
}

.client-slider-2 .thumb img {
  width: auto;
  filter: grayscale(10);
  opacity: 0.4;
  display: inherit;
  transition: all 0.3s ease-in;
}

.client-slider-2 .thumb:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.client-slider-2.style-two {
  box-shadow: none;
}

/***** team slider *****/
.team-slider .team-slider-item {
  display: flex;
  align-items: center;
}

.team-slider .team-slider-item .row {
  align-items: center;
}

.team-slider .team-slider-item .team-member-details {
  margin-right: 100px;
}

.team-slider .team-slider-item .team-member-details h3 {
  font-size: 36px;
  line-height: 44px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #01358d;
}

.team-slider .team-slider-item .team-member-details h3 span {
  color: var(--main-color-one);
}

.team-slider .team-slider-item .team-member-details p {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.3px;
  color: #5b6880;
  margin-bottom: 25px;
}

.team-slider .team-slider-item .team-member-details .name {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: #01358d;
}

.team-slider .team-slider-item .team-member-details .designation {
  font-size: 13px;
  line-height: 28px;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.52px;
  color: #97a1b3;
  margin-bottom: 43px;
}

.team-slider .team-slider-item .team-member-details .social-media-title {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.03px;
  color: #97a1b3;
  float: left;
  margin-right: 100px;
  position: relative;
}

.team-slider .team-slider-item .team-member-details .social-media-title:after {
  content: "";
  position: absolute;
  right: -44px;
  top: 16px;
  height: 1px;
  width: 34px;
  background: #97a1b2;
}

.team-slider .team-slider-item .team-member-details ul {
  padding-left: 0;
  margin-bottom: 0;
  display: inline-block;
}

.team-slider .team-slider-item .team-member-details ul li {
  display: inline-block;
}

.team-slider .team-slider-item .team-member-details ul li a {
  margin: 0 7px;
  display: inline-block;
}

.team-slider .team-slider-item .team-member-details ul li a img {
  width: auto !important;
}

.team-slider .team-slider-item .team-member-img {
  position: relative;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 132px;
}

.team-slider .team-slider-item .team-member-img .thumb {
  max-width: 460px;
  height: auto;
  border-radius: 20px;
}

.team-slider .team-slider-item .team-member-img .thumb img {
  width: 100%;
  border-radius: 20px;
}

.team-slider .team-slider-item .team-member-img .team-shape1 {
  width: 200px;
  height: 60%;
  background: #ffd8de;
  border-radius: 20px;
  position: absolute;
  margin-left: -70px;
}

.team-slider .team-slider-item .team-member-img .team-shape2 {
  width: 88%;
  height: 100%;
  background: #01358d;
  border-radius: 20px;
  position: absolute;
  margin-right: -20px;
  bottom: 0;
  z-index: -1;
}

.team-slider .owl-item.active .team-member-img .team-shape1 {
  animation: 1.5s 0.3s fadeInRight both;
}

.team-slider .owl-item.active .team-member-img .team-shape2 {
  animation: 1.5s 0.3s fadeUpLeft both;
}

.team-slider .owl-prev {
  position: absolute;
  left: 35%;
  margin-top: -120px;
}

.team-slider .owl-next {
  position: absolute;
  right: -60px;
  margin-top: -120px;
}

.team-slider .owl-dots {
  text-align: center;
  padding-left: 492px;
  margin-top: 43px;
  line-height: normal;
}

.team-slider .owl-dots .owl-dot {
  width: 16px;
  height: 8px;
  background: #97a1b3;
  display: inline-block;
  margin: 0 4px;
  border-radius: 7px;
  transition: all 0.3s ease-in;
}

.team-slider .owl-dots .owl-dot.active {
  width: 60px;
  height: 8px;
  background: #01358d;
}

.marketing-slider .owl-stage {
  right: 125px;
}

.marketing-slider .marketing-slider-details {
  overflow: hidden;
  position: relative;
}

.marketing-slider .marketing-slider-details .thumb {
  overflow: hidden;
}

.marketing-slider .marketing-slider-details .thumb img {
  transform: scale(1);
  transition: 0.8s;
}

.marketing-slider .marketing-slider-details:before {
  content: "";
  position: absolute;
  left: -50%;
  top: -50%;
  width: 100%;
  height: 100%;
  background-color: rgba(1, 53, 141, 0.4);
  transition: all 0.5s ease;
  z-index: 1;
  opacity: 0;
}

.marketing-slider .marketing-slider-details:after {
  content: "";
  position: absolute;
  right: -50%;
  bottom: -50%;
  width: 100%;
  height: 100%;
  background-color: rgba(1, 53, 141, 0.4);
  transition: all 0.5s ease;
  z-index: 1;
  opacity: 0;
}

.marketing-slider .marketing-slider-details .marketing-slider-content {
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  padding: 20px 30px;
  z-index: 2;
}

.marketing-slider .marketing-slider-details .marketing-slider-content a {
  width: 106px;
  height: 106px;
  display: inline-block;
  background: #fff;
  border-radius: 50%;
  line-height: 106px;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -35px;
  margin-left: -53px;
  transition: 0.4s;
  opacity: 0;
}

.marketing-slider .marketing-slider-details .marketing-slider-content a img {
  width: auto !important;
  display: inline-block;
}

.marketing-slider .marketing-slider-details .marketing-slider-content p {
  position: absolute;
  bottom: 5px;
  color: #fff;
  opacity: 0;
  transition: 0.6s;
}

.marketing-slider .marketing-slider-details:hover:before {
  left: 0;
  top: 0;
  opacity: 1;
}

.marketing-slider .marketing-slider-details:hover:after {
  right: 0;
  bottom: 0;
  opacity: 1;
}

.marketing-slider .marketing-slider-details:hover .thumb img {
  transform: rotate(3deg) scale(1.1);
}

.marketing-slider .marketing-slider-details:hover .marketing-slider-content a {
  margin-top: -53px;
  opacity: 1;
}

.marketing-slider .marketing-slider-details:hover .marketing-slider-content p {
  bottom: 15px;
  opacity: 1;
}

.marketing-slider .owl-prev {
  position: absolute;
  bottom: -52px;
}

.marketing-slider .owl-next {
  position: absolute;
  left: 76px;
  bottom: -52px;
}

/***** blog-gallery-slider *******/
.blog-gallery-slider .owl-prev,
.blog-gallery-slider .owl-next {
  position: absolute;
  top: 50%;
  margin-top: -20px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid #ffffff;
  width: 54px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  transition: 0.3s;
  color: #fff;
}

.blog-gallery-slider .owl-prev:hover,
.blog-gallery-slider .owl-next:hover {
  background: black;
}

.blog-gallery-slider .owl-prev {
  left: 0;
}

.blog-gallery-slider .owl-next {
  right: 0;
}

/*--------------------------------------------------------------
	## service section
--------------------------------------------------------------*/
.single-service {
  background: #ffffff 0% 0% no-repeat padding-box;
  box-shadow: 0px 10px 34px #97a1b21f;
  padding: 96px 40px 35px 40px;
  margin-bottom: 16px;
  transition: all 0.3s ease-in;
}

.single-service img {
  margin-bottom: 42px;
  width: auto !important;
}

.single-service h6 {
  margin-bottom: 26px;
  font-weight: 600;
  letter-spacing: 0.22px;
  color: #01358d;
}

.single-service h6 a {
  color: #01358d;
}

.single-service p {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.3px;
}

.single-service .read-more {
  margin-top: 35px;
  position: relative;
  text-align: right;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in;
}

.single-service .read-more img {
  margin-bottom: 0;
  width: auto !important;
}

.single-service .read-more a {
  margin-right: 10px;
  transition: all 0.3s ease-in;
}

.single-service .read-more:before {
  content: "";
  position: absolute;
  height: 32px;
  width: 2px;
  left: -29px;
  top: -4px;
  background: #32e2a9;
  transition: all 0.3s ease-in;
}

.single-service:hover {
  box-shadow: 0px 18px 34px #97a1b24f;
}

.single-service:hover .read-more {
  visibility: visible;
  opacity: 1;
}

.single-service:hover .read-more a {
  margin-right: 0;
}

.single-service:hover .read-more:before {
  left: -39px;
}

.service-carousel .owl-item {
  padding: 50px 7px;
}

/******* single-service-left *******/
.single-service-left {
  margin: 0 10px;
  background: #fff;
  padding: 57px 44px 60px;
  box-shadow: 0px 12px 34px #97a1b221;
  border-radius: 6px;
  transition: all 0.3s ease-in;
  margin-bottom: 20px;
}

.single-service-left:hover {
  box-shadow: 0px 15px 40px #97a1b247;
}

.single-service-left .media .thumb {
  height: 130px;
  width: 130px;
  border-radius: 50%;
}

.single-service-left .media .thumb img {
  width: 100%;
}

.single-service-left .media .media-body {
  margin-left: 38px;
}

.single-service-left .media .media-body h6 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  letter-spacing: 0.24px;
  color: #01358d;
  margin-bottom: 25px;
}

.single-service-left .media .media-body p {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.03px;
  color: #5b6880;
  margin-bottom: 20px;
}

.single-service-left .media .media-body a {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  line-height: 30px;
  letter-spacing: 0.3px;
  color: #5b6880;
  position: relative;
  transition: all 0.3s ease-in;
}

.single-service-left .media .media-body a img {
  margin-left: 9px;
  transition: all 0.3s ease-in;
}

.single-service-left .media .media-body a i {
  font-size: 26px;
  position: absolute;
  right: -33px;
  bottom: -4px;
}

.single-service-left .media .media-body a:hover {
  color: var(--main-color-one);
}

.single-service-left .media .media-body a:hover img {
  margin-left: 13px;
}

/** single-service-area-2 **/
.single-service-2 {
  padding: 57px 44px 48px;
  box-shadow: 0px 3px 44px #97a1b238;
  border-radius: 8px;
  transition: all 0.3s ease-in;
  margin-bottom: 20px;
}

.single-service-2:hover {
  box-shadow: 0px 18px 69px #97a1b245;
}

.single-service-2 .thumb {
  margin-bottom: 30px;
}

.single-service-2 h6 {
  font-size: 24px;
  line-height: 30px;
  font-weight: 600;
  letter-spacing: 0.48px;
  color: #01358d;
  margin-bottom: 20px;
}

.single-service-2 p {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  line-height: 30px;
  letter-spacing: 0.3px;
  color: #5b6880;
}

.single-service-2.style-two {
  box-shadow: none;
}

.single-service-2.style-two.active,
.single-service-2.style-two:hover {
  box-shadow: 0px 2px 69px #97a1b245;
  background: #fff;
}

.single-service-2.style-three {
  padding: 42px 40px 42px;
}

.single-service-2.style-three .thumb {
  margin-bottom: 14px;
}

.single-service-2.style-three h6 {
  margin-bottom: 18px;
}

.single-service-2.style-three a.arrow {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.3px;
  color: #5b6880;
  position: relative;
  padding-right: 25px;
  transition: all 0.3s ease-in;
}

.single-service-2.style-three a.arrow i {
  margin-left: 2px;
  transition: all 0.3s ease-in;
  position: absolute;
  right: -2px;
  top: 2px;
}

.single-service-2.style-three a.arrow:hover {
  color: var(--main-color-one);
}

.single-service-2.style-three a.arrow:hover i {
  right: -6px;
}

/** single-offer  **/
.single-offer {
  background: #fff;
  padding: 52px 46px 51px;
  box-shadow: 0px 2px 69px #97a1b238;
  border-radius: 18px;
  transition: all 0.3s ease-in;
  margin-bottom: 30px;
}

.single-offer .media .media-body {
  margin-left: 44px;
  display: flex;
  align-items: center;
}

.single-offer .media .media-body h6 {
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0.22px;
  color: #01358d;
  margin-bottom: 0;
}

.single-work-processing {
  margin-bottom: 80px;
}

.work-processing-details .section-title {
  margin-bottom: 0;
}

/********* single-software-store style *********/
.bg-after {
  position: relative;
}

.bg-after:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #01358d;
  opacity: 0.7;
  z-index: 0;
}

.software-store-wrap {
  margin: 0;
  padding: 0;
}

.software-store-wrap li {
  width: 20%;
  display: inline-block;
  float: left;
  padding: 0 15px;
}

.single-software-store {
  background: #fff;
  padding: 50px 20px 37px 20px;
  position: relative;
  z-index: 1;
  display: block;
  border-radius: 8px;
  margin-bottom: 30px;
  transition: all 0.3s ease-in;
}

.single-software-store:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in;
  z-index: 0;
}

.single-software-store .thumb {
  margin-bottom: 17px;
  position: relative;
  z-index: 1;
}

.single-software-store .thumb img {
  width: 90px;
  height: 90px;
}

.single-software-store h4 {
  color: #5b6880;
  position: relative;
  z-index: 1;
}

.single-software-store:hover {
  box-shadow: 0px 10px 30px #00000029;
}

.single-software-store:hover .thumb {
  animation: top-image-bounce 3s infinite ease-in-out;
}

.single-software-store:hover:after {
  visibility: visible;
  opacity: 0.06;
}

/*----------------------------------------------
	## Feature
-----------------------------------------------*/
.single-feature {
  margin-bottom: 52px;
}

.single-feature .media {
  background: #fff;
  box-shadow: 0px 12px 50px #afafaf38;
  border-radius: 0px 100px 0px 0px;
  padding: 62px 57px 52px 52px;
}

.single-feature .media .media-left {
  margin-right: 26px;
}

.single-feature .media .media-body h6 {
  letter-spacing: 0.22px;
  color: #01358d;
  margin-bottom: 12px;
  font-weight: 600;
}

.single-feature .media .media-body p {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.3px;
  color: #5b6880;
}

.single-feature .border-radius-2 {
  border-radius: 0px 0px 0px 100px;
}

.single-feature .border-radius-3 {
  border-radius: 100px 0px 0px 0px;
}

.single-feature .border-radius-4 {
  border-radius: 0px 0px 100px 0px;
}

.single-feature-left {
  margin-right: 17px;
}

.single-feature-right {
  margin-left: 17px;
}

/*----------------------------------------
	## Pricing
----------------------------------------*/
.single-pricing {
  background: #fff;
  box-shadow: 0px 3px 26px #01358d0d;
  padding: 54px 50px 46px 50px;
  transition: all 0.3s ease-in;
}

.single-pricing .title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.36px;
  color: #5b6880;
  margin-bottom: 40px;
}

@media (max-width: 800px) {
  .single-pricing .title {
    font-size: 14px;
  }
}

.single-pricing .thumb {
  margin-bottom: 40px;
}

.single-pricing .amount {
  border-bottom: 1px solid #e4e4e5;
  margin-bottom: 20px;
  padding-bottom: 16px;
}

.single-pricing .amount del {
  display: block;
  margin-bottom: 5px;
}

.single-pricing .amount p {
  color: var(--main-color-one);
}

.single-pricing .price {
  font-size: 36px;
  line-height: 43px;
  font-weight: 500;
  letter-spacing: 0.72px;
  color: #01358d;
  margin-bottom: 18px;
}

.single-pricing .price span {
  font-size: 18px;
  line-height: 22px;
  font-weight: 400;
  letter-spacing: 0.36px;
  color: #5b6880;
  margin-left: -9px;
}

.single-pricing ul {
  padding-bottom: 40px;
  padding-left: 0;
  transition: 0.4s ease-in-out;
  text-align: left; /* ✅ ensure left alignment */
}

.single-pricing ul li {
  font-size: 13px;
  line-height: 40px;
  letter-spacing: 0.3px;
  color: #404a5c;
  list-style: none;

  /* ✅ ADD THESE */
  position: relative;
  padding-left: 28px;
}

/* ✅ Tick icon */
.single-pricing ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #22c55e; /* green */
  font-size: 14px;
}

.single-pricing .btn {
  border-color: #97a1b2;
}

.single-pricing.style-two .title {
  margin-bottom: 30px;
}

.single-pricing.style-two .thumb {
  width: 120px;
  height: 120px;
  line-height: 120px;
  text-align: center;
  background: #fff7f8;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 30px;
}

.single-pricing-active {
  background: #0041af !important;
  box-shadow: 0px 12px 20px #01358d57;
}

.single-pricing-active .title {
  color: #fff;
}

.single-pricing-active .thumb {
  margin-bottom: 40px;
}

.single-pricing-active .amount del {
  color: #fff;
}

.single-pricing-active .price {
  color: #fff;
}

.single-pricing-active .price span {
  color: #fff;
}

.single-pricing-active ul li {
  color: #fff;
}

.single-pricing-active .btn {
  border-color: #fff;
}

.sb-pricing-tabs {
  display: inline-block;
  border-bottom: 0;
  margin-bottom: 70px;
}

.sb-pricing-tabs .nav-item {
  display: inline-block;
}

.sb-pricing-tabs .nav-item a {
  border: 1px solid #f1e7e8;
  font-size: 14px;
  border-radius: 0;
  height: 46px;
  padding: 0 20px;
  line-height: 46px;
  margin: 0 2px;
  position: relative;
}

.sb-pricing-tabs .nav-item a:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  background: var(--main-color-one);
  height: 10px;
  width: 10px;
  transform: rotate(45deg);
  margin-left: -5px;
  visibility: hidden;
  opacity: 0;
}

.sb-pricing-tabs .nav-item a.active {
  border: 1px solid var(--main-color-one);
  background: var(--main-color-one);
  color: #fff;
}

.sb-pricing-tabs .nav-item a.active:after {
  visibility: visible;
  opacity: 1;
}

.sb-hosting-tabs {
  border-bottom: 0;
}

.sb-hosting-tabs .nav-item {
  display: block;
  width: 100%;
  margin-bottom: 16px;
}

.sb-hosting-tabs .nav-item a {
  border: 1px solid #f1e7e8;
  font-size: 20px;
  border-radius: 0;
  padding: 10px 20px;
  margin: 0 2px;
  position: relative;
  display: block;
  letter-spacing: 0.4px;
}

.sb-hosting-tabs .nav-item a img {
  margin-right: 10px;
}

.sb-hosting-tabs .nav-item a.active {
  border: 1px solid var(--main-color-one);
  background: var(--main-color-one);
  color: #fff;
}

.sb-hosting-tabs .nav-item a.active img {
  filter: brightness(200);
}

.sb-hosting-tabs .nav-item:last-child {
  margin-bottom: 0;
}

/********* progress bar style **********/
.progress-item {
  padding-top: 5px;
  padding-bottom: 18px;
}

.progress-item .progress-heading {
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.18px;
  color: #01358d;
}

.progress-item .progress-count {
  font-size: 14px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 0.84px;
  color: #01358d;
  float: right;
}

.progress-item .progress-bg {
  position: relative;
  height: 10px;
  border-radius: 5px;
  background: rgba(249, 85, 109, 0.2);
  margin-top: 12px;
}

.progress-item .progress-bg .progress-rate {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: #f9556d;
  transition: 2.5s;
  border-radius: 5px;
}

/******* team style ********/
.single-team {
  padding: 0 30px;
  margin-bottom: 65px;
}

.single-team .thumb {
  max-height: 220px;
  max-width: 220px;
  margin: 0 auto;
}

.single-team .thumb:after {
  content: "";
  position: absolute;
  background-image: url("../img/startup/team/bg.svg");
  background-repeat: no-repeat;
  height: 300px;
  width: 300px;
  margin: 0 auto;
  left: 0;
  right: 0;
  z-index: -1;
}

.single-team .thumb img {
  border-radius: 50%;
  border: 12px solid #175198;
}

.single-team h6 {
  margin: 58px 0 5px;
}

.single-team h6 a {
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.48px;
  color: #01358d;
}

.single-team span {
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  line-height: 28px;
  letter-spacing: 1.02px;
  color: #97a1b3;
  font-family: var(--raleway-font);
  font-style: italic;
}

.single-team p {
  font-size: var(--body-font-size);
  line-height: 26px;
  letter-spacing: 0.3px;
  color: #5b6880;
  margin-top: 18px;
  margin-bottom: 0;
}

/********* songle blog post **********/
.single-case-studies {
  box-shadow: 0px 10px 34px #97a1b21f;
  border-radius: 6px;
  margin-bottom: 20px;
  transition: all 0.3s ease-in;
}

.single-case-studies .thumb {
  overflow: hidden;
}

.single-case-studies .thumb img {
  transform: scale(1);
  transition: 0.6s;
}

.single-case-studies .details {
  padding: 34px 28px 38px;
}

.single-case-studies .details h6 {
  margin-bottom: 0;
}

.single-case-studies .details h6 a {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0;
  color: #01358d;
  line-height: 1.2;
}

.single-case-studies .details p {
  margin-top: 15px;
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  margin-bottom: 0;
}

.single-case-studies .details .read-more {
  color: #97a1b2;
  margin-top: 15px;
  display: inline-block;
  position: relative;
}

.single-case-studies .details .read-more i {
  position: absolute;
  bottom: 0px;
  right: -28px;
  transition: 0.3s;
  font-size: 22px;
}

.single-case-studies .details .read-more:hover {
  color: var(--main-color-one);
}

.single-case-studies .details .read-more:hover i {
  right: -33px;
}

.single-case-studies .details .admin {
  margin-top: 20px;
}

.single-case-studies .details .admin img {
  width: 30px;
  height: 30px;
  border: 1px solid #97a1b3;
  border-radius: 50%;
  margin-right: 5px;
}

.single-case-studies .details .admin span {
  color: #97a1b3;
}

.single-case-studies:hover {
  box-shadow: 0px 16px 42px #97a1b230;
}

.single-case-studies:hover .thumb img {
  transform: scale(1.1) rotate(2deg);
}

.single-case-studies.style-two {
  box-shadow: none;
}

.single-case-studies.style-two .details {
  padding: 28px 0 0 0;
}

.single-case-studies.style-two .details .admin {
  margin-bottom: 10px;
  margin-top: 0;
  font-size: 13px;
}

.single-post {
  margin-bottom: 50px;
}

.single-post .thumb {
  overflow: hidden;
}

.single-post .thumb img {
  transform: scale(1);
  transition: 0.6s;
}

.single-post:hover .thumb img {
  transform: scale(1.1) rotate(2deg);
}

.single-post h6 {
  margin: 17px 0 12px;
}

.single-post h6 a {
  font-size: 24px;
  font-weight: 500;
  line-height: 44px;
  color: #01358d;
}

.single-post p {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.3px;
  color: #5b6880;
  margin-bottom: 16px;
}

.single-post a {
  font-size: var(--body-font-size);
  line-height: var(--line-height30);
  letter-spacing: 0.3px;
  color: #97a1b2;
  transition: all 0.3s ease-in;
}

.single-post a span {
  transition: all 0.3s ease-in;
}

.single-post a:hover {
  color: #01358d;
}

.single-post a:hover span {
  padding-left: 3px;
  color: #01358d;
}

/*---------------------------------------
    ## Counter area
---------------------------------------*/
.single-counter .counting {
  font-size: 45px;
  line-height: 30px;
  font-weight: 300;
  letter-spacing: 1.04px;
  color: #fff;
}

.single-counter h6 {
  font-size: 16px;
  line-height: 30px;
  font-weight: 400;
  font-family: var(--raleway-font);
  letter-spacing: 0.36px;
  color: #fff;
  margin: 5px 0 0;
}

/******* comming soon count down ********/
.comming-soon-area {
  height: 100vh;
  display: flex;
  align-items: center;
}

.comming-soon-area .comming-soon-title {
  margin-bottom: 50px;
}

.comming-soon-area .newsletter-subcribe {
  margin-top: 200px;
}

.comming-soon-area .newsletter-subcribe p {
  font-size: 20px;
  color: #01358d;
  margin-bottom: 35px;
}

.comming-soon-title {
  font-size: 100px;
  font-weight: 300;
  letter-spacing: 0;
  color: #01358d;
}

.countdown-item {
  height: 160px;
  width: 160px;
  padding-top: 44px;
  margin-right: 40px;
  display: inline-block;
  border: 1px solid var(--main-color-one);
  border-radius: 50%;
  text-align: center;
}

.countdown-item h2 {
  margin: 0;
  line-height: 1.3;
  color: #5b6880;
  font-weight: 300;
  font-size: 36px;
}

.countdown-item span {
  margin: 0;
  line-height: 1.2;
  color: #5b6880;
  font-size: 18px;
  font-weight: 300;
}

.countdown-item:last-child {
  margin-right: 0;
}

/*----------------------------------------
    ## All form
------------------------------------------*/
.riyaqas-form-wrap .btn {
  height: 48px;
  line-height: 48px;
  padding: 0 60px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.3px;
  margin-top: 30px;
}

.single-input-wrap {
  position: relative;
}

.single-input-wrap .single-input {
  width: 100%;
  height: 52px;
  background: transparent;
  border: 1px solid #d9dde4;
  border-radius: 4px;
  padding: 14px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.3px;
  color: #97a1b2;
}

select {
  padding: 12px 40px 12px 16px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill=\'%23333\' height=\'20\' viewBox=\'0 0 20 20\' width=\'20\' xmlns=\'http://www.w3.org/2000/svg\'><path d=\'M5 7l5 5 5-5z\'/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.single-input-wrap .single-input.textarea {
  min-height: 134px;
}

.single-input-wrap.input-checkbox {
  margin-bottom: 30px;
}

.single-input-wrap.input-checkbox .single-input {
  width: auto;
  height: auto;
}

.single-input-wrap .input-checkbox-text span {
  color: var(--main-color-one);
}

.single-input-wrap .single-select {
  width: 100%;
  height: 52px;
  background: transparent;
  border: 1px solid #d9dde4;
  border-radius: 4px;
  padding: 16px 18px;
  margin-bottom: 30px;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.3px;
  color: #97a1b2;
  cursor: pointer;
}

.single-input-wrap .single-select span.current {
  width: 180px;
  display: block;
}

.single-input-wrap .single-select:after {
  border-bottom: 1px solid #999;
  border-right: 1px solid #999;
  height: 7px;
  right: 20px;
  width: 7px;
}

.single-input-wrap .single-select .list {
  width: 100%;
}

.single-input-wrap .single-select .list li {
  font-size: 14px !important;
  letter-spacing: 0.28 !important;
  color: #97a1b2 !important;
  font-weight: 400 !important;
  transition: 0.4s !important;
}

.single-input-wrap .single-select .list li:hover,
.single-input-wrap .single-select .list li:focus,
.single-input-wrap .single-select .list li.selected {
  color: #01358d !important;
}

.single-input-wrap label {
  position: absolute;
  top: 17px;
  left: 20px;
  color: #999;
  cursor: text;
  transition: all 0.15s ease-in-out 0s;
  z-index: -1;
  font-size: var(--body-font-size);
  line-height: 1.2;
  letter-spacing: 0.3px;
  color: #97a1b2;
}

.single-input-wrap label.active {
  top: -6px;
  left: 17px;
  font-size: 11px;
  color: inherit;
  cursor: pointer;
  color: #97a1b2;
  background: #fff;
  z-index: 1;
  padding: 0 1px;
}

.riyaqas-file-input-wrap {
  margin-top: 10px;
  height: 100%;
}

.riyaqas-file-input-wrap .riyaqas-file-input {
  cursor: pointer;
  height: 60px;
  line-height: 60px;
  width: 100%;
}

.riyaqas-file-input-wrap label {
  cursor: pointer;
  border: 0;
  color: #fff;
  border-radius: 0;
  background: #32e2a9;
  height: 62px;
  line-height: 64px;
  text-align: center;
  padding: 0;
  cursor: cell;
}

.riyaqas-file-input-wrap label:after {
  display: none !important;
}

.job-apply-area {
  box-shadow: 0px 8px 30px #97a1b224;
  border-radius: 8px;
  padding: 120px 68px;
}

.job-apply-area .single-input-wrap .single-input {
  border: 0;
  border-bottom: 1px solid #d9dde4;
  border-radius: 0;
  padding: 0;
}

.job-apply-area .single-input-wrap textarea {
  padding: 10px 0 !important;
}

.job-apply-area .single-input-wrap label {
  left: 0;
}

.job-apply-area .btn-blue {
  margin-top: 70px;
}

/*------------------------------------------
    gallery Item
------------------------------------------*/
.gallery-menu {
  margin-bottom: 60px;
  padding-left: 0 !important;
}

.gallery-menu li {
  display: inline-block;
  font-size: 16px;
  color: #5b6880;
  margin: 0 27px;
  cursor: pointer;
  position: relative;
  font-weight: 500;
}

.gallery-menu li:before {
  position: absolute;
  left: auto;
  right: 0;
  top: 100%;
  content: "";
  background: var(--main-color-one);
  height: 1px;
  width: 0%;
  visibility: hidden;
  opacity: 0;
  /* IE 9 */
  /* Chrome, Safari, Opera */
  transform: translateY(-50%);
  transition: 0.9s;
}

.gallery-menu li.active:before,
.gallery-menu li:hover:before {
  visibility: visible;
  opacity: 1;
  right: auto;
  left: 0;
  width: 100%;
}

.gallery-menu li.active,
.gallery-menu li:hover {
  color: var(--main-color-one);
}




.single-work-item {
  text-align: center;
  position: relative;
  overflow: hidden;
  display: block;
}

.single-work-item .thumb {
  overflow: hidden;
}

.single-work-item .thumb img {
  transform: scale(1);
  transition: 0.8s;
}

.single-work-item .thumb:before {
  content: "";
  position: absolute;
  left: -50%;
  top: -50%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 24, 64, 0.3);
  transition: all 0.6s ease;
  z-index: 1;
  opacity: 0;
}

.single-work-item .thumb:after {
  content: "";
  position: absolute;
  right: -50%;
  bottom: -50%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 24, 64, 0.3);
  transition: all 0.6s ease;
  z-index: 1;
  opacity: 0;
}

.single-work-item .content-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  align-items: center;
  display: inline-grid;
  transition: all 0.6s ease;
  visibility: hidden;
  opacity: 0;
}

.single-work-item .content-wrap .cats {
  font-size: 16px;
  color: #f9556d;
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.single-work-item .content-wrap .title {
  font-size: 24px;
  color: #fff;
  padding: 0 35px;
  display: inline-block;
  letter-spacing: 0.48px;
  font-weight: 500;
  display: block;
}

.single-work-item:hover .thumb img {
  transform: scale(1.1) rotate(3deg);
}

.single-work-item:hover .thumb:before {
  left: 0;
  top: 0;
  opacity: 1;
}

.single-work-item:hover .thumb:after {
  right: 0;
  bottom: 0;
  opacity: 1;
}

.single-work-item:hover .content-wrap {
  visibility: visible;
  opacity: 1;
}

.mfp-bg {
  background-color: rgba(2, 48, 71, 0.8);
}

.mfp-zoom-out-cur {
  cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==),
    progress;
}

.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: pointer !important;
}

.partners-section-offer {
  background: #fff;
  padding: 10px 20px;
  text-align: center;
}

.partners-section-news {
  background: #fff;
  padding: 5px 20px;
  text-align: center;
}

.partners-section-use-case {
  background: #fff;
  padding: 35px 20px;
  text-align: center;
}

.partners-section-legal {
  background: #fff;
  padding: -70px 20px;
  text-align: center;
}

.partners-section-about {
  background: #fff;
  padding: 20px 20px;
  margin-top: -70px;
  text-align: center;
}


.partners-section-map-analytics {
  background: #fff;
  padding: 5px 20px;
  text-align: center;
}

.partners-section {
  background: #fff;
  padding: 10px 20px;
  text-align: center;
}

.partners-container {
  max-width: 1200px;
  margin: 0 auto;
}

.partners-badge {
  display: inline-block;
  margin-bottom: 15px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(to right, #60a5fa, #1e3a8a);
  border-radius: 6px;
}

.partners-title {
  font-size: 36px;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.partners-title .partners-icon {
  width: 40px;
  height: 40px;
  color: #1e3a8a;
}

.partners-description {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  color: #5b6880;
}

/* Marquee */
.partners-logos-wrapper {
  background: #fff;
  padding: 40px 0;
  overflow: hidden;
}

.partners-marquee-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.partners-marquee-track {
  display: flex;
  width: max-content;
  animation: partners-marquee 25s linear infinite;
}

.partners-logo-strip {
  display: flex;
  align-items: center;
  gap: 50px;
  padding-right: 50px;
}

.partners-logo-strip img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

@keyframes partners-marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.partners-section {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.partners-container {
  max-width: 1200px;
  margin: 0 auto;
 
}

.partners-badge {
  display: inline-block;
  margin-bottom: 15px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(to right, #60a5fa, #1e3a8a);
  border-radius: 6px;
}

.partners-title {
  font-size: 36px;
  font-weight: bold;
  color: #1e293b;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.partners-title .partners-icon {
  width: 40px;
  height: 40px;
  color: #1e3a8a;
}

.partners-description {
  max-width: 1000px;
  margin: 0 auto;
  font-size: 16px;
  color: #5b6880;
}

/* Marquee */
.partners-logos-wrapper {
  background: #fff;
  padding: 40px 0;
  overflow: hidden;
}

.partners-marquee-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.partners-marquee-track {
  display: flex;
  width: max-content;
  animation: partners-marquee 25s linear infinite;
}

.partners-logo-strip {
  display: flex;
  align-items: center;
  gap: 50px;
  padding-right: 50px;
}

.partners-logo-strip img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

@keyframes partners-marquee {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}


/* Use Case */
.main-container {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 40px;
}

/* Sidebar */
.sidebar {
  width: 25%;
  background: #1E293B;
  color: #fff;
  padding: 20px;
  border-radius: 8px;
  position: sticky;
  top: 20px;
  height: fit-content;
  flex: 0 0 25%;
}

/* Main Content */
.main {
  flex: 1;
  min-width: 0;
  /* height: 100vh; */
  overflow-y: auto;
}

/* Sidebar title */
.sidebar h2 {
  font-size: 16px;
  margin-bottom: 15px;
  color: white;
}

/* Sidebar links */
.sidebar a {
  display: block;
  padding: 10px;
  margin-bottom: 5px;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  color: #f4f4f4;
}

.sidebar a:hover {
  background: #1A33CC;
  color: #fff;
}

.sidebar a.active {
  background: #001BB7;
  box-shadow: 0px 11px 14px #7c7e854d;
  color: #fff;
}

/* ✅ Responsive: Sidebar above main on small screens */
@media (max-width: 768px) {
  .main-container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex: none;
    position: static;
    /* remove sticky for mobile */
    margin-bottom: 20px;
  }

  .main {
    width: 100%;
    flex: none;
  }
}


.promo-box {
  background: linear-gradient(to bottom right, #2563eb, #9333ea);
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
  text-align: center;
}

.promo-box h4 {
  margin: 0 0 10px;
  color: #fff;
}

.promo-box p {
  color: #ddd;
  margin: 0 0 10px;
  font-size: 14px;
}

.promo-box a {
  display: inline-block;
  background: #ec4899;
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 14px;
  text-decoration: none;
}

.promo-box a:hover {
  background: #db2777;
}



.section {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.section h1,
.section h2,
.section h3 {
  margin-top: 0;
  color: #111827;
  text-align: center;
  font-size: x-large;
  font-weight: bold;
}

.section p {
  color: #555;
  line-height: 1.6;
  font-size: 15px;
  text-align: center;
}

.hero {
  text-align: center;
  margin-bottom: 30px;

}

.services-heading h1 {
  text-align: center;
  font-size: xx-large;
  font-weight: bold;
  padding-top: 25px;
}

.services-heading p {
  text-align: center;
  font-size: large;
  padding-top: 10px;
  padding-bottom: 10px;
}

.hero h1 {
  font-size: 36px;
  font-weight: bold;
}

.hero span {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  background: linear-gradient(to right, #60a5fa, #1e3a8a);
  color: #fff;
  font-size: 13px;
  margin-bottom: 10px;
}


.banner {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
}

.banner img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.overlay-text p {
  color: white;
}

.overlay-text h3 {
  color: white;
  font-size: x-large;
  font-weight: bold;
}

.overlay-text h1 {
  color: white;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  padding-top: 10px;
}

.feature {
  border: 1px solid #e5e7eb;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  transition: 0.3s;
}

.feature h4 {
  font-weight: bold;
}

.feature:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Services grid */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.service {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 20px;
  border-radius: 8px;
  transition: 0.3s;
}

.service h3 {
  font-weight: bold;
  font-size: x-large;
}

.service:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* CTA */
.cta {
  text-align: center;
}

.cta a {
  display: inline-block;
  background: #001BB7;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 14px;
  box-shadow: 0 4px 6px rgba(12, 63, 124, 0.3);

}

.cta a:hover {
  background: #0c3f7c;
}

/* Features Css */

.features-tabs {
  padding: 20px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.features-tabs .nav-underline {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  min-width: max-content;
}

.features-tabs .nav-link {
  color: #C3C3C3;
  font-weight: 400;
  padding: 10px 18px;
  white-space: nowrap;
  transition: color 0.9s ease;
}

.features-tabs .nav-link.active {
  color: #001BB7;
  font-weight: 600;
  border-bottom: 2px solid #001BB7;
}

.features-tab-pane {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  display: none;
}

.features-tab-pane.active {
  display: block;
}

.features-tab-pane.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.features-tab-pane .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 30px;
}

.features-tab-pane .content h2 {
  text-align: center;
  font-weight: 600;
  font-size: 36px !important;
}

/* Grid Layout */
.features-tab-pane .content .features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 20px;
}

/* Card Style */
.features-tab-pane .content .features-grid .card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 9px;
  border: 1px solid #EBEBEB;
  box-shadow: 0px 3px 16px 0px #001BB714;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 500px;
}

.features-tab-pane .content .features-grid .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Icon */
.features-tab-pane .content .features-grid .card .icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* Content */
.features-tab-pane .content .features-grid .card .card-content h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 500;
  color: #000000;
}

.features-tab-pane .content .features-grid .card .card-content p {
  font-size: 14px;
  color: #000000;
  line-height: 1.4;
  font-weight: 400;
}

@media (max-width: 768px) {
  .features-tab-pane .content .features-grid {
    grid-template-columns: 1fr;
    /* Only 1 card per row */
  }
}

/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.signIn-btn,
.client-btn {
  cursor: pointer;
}

.remember-text {
  display: flex;
  gap: 2px;
  align-items: center;
  justify-content: space-between;

}

.checkbox-area-popup {
  display: flex;
  align-items: center;
  gap: 6px;
}

.checkbox-area-popup .checkbox {
  cursor: pointer;
}

.btn-wrap {
  padding-top: 20px;
}

.dont-have-account-text {
  padding-left: 20px;
}

.forgot-password-text {
  cursor: pointer;
}

.popup-widget-title .forgot-heading {
  font-size: 24px;
  line-height: 33px;
  letter-spacing: 0.28;
  color: #01358d;
  font-weight: 500;
  position: relative;
}

.popup-widget-title {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #d9dde4;
  margin-bottom: 20px;
}

.popup-widget-title .forgot-text {
  margin-bottom: 10px;
}

.forgot-form .btn-wrap {
  padding-top: 0px;
  display: flex;
  flex-direction: column;
}

.back-to-login {
  padding-top: 20px;
  color: #001BB7;
  font-weight: 500;
  font-size: 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#result-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
}

#result-div a {
  width: 100%;
  background: #fff;
  box-shadow: 0px 4px 20px #9398a11a;
  border-radius: 8px;
  padding: 22px 35px 22px 26px;
  transition: all 0.3s ease;
  margin-bottom: 10px;
  align-items: center;
  text-align: center;
}

#result-div a:hover {
  font-weight: 600;
  color: #01358d;
  text-decoration: underline;
}

.MapUI-stab-content {
  margin-top: 15px;
}

.counter-box {
  display: flex;
  justify-content: center;
}

.btn-wrap {
  display: flex;
  align-items: center;
}

@media (max-width:640px) {
  .pd-top-80 {
    padding-top: 10px;
  }

  .counter-box {
    display: flex;
    justify-content: flex-start;
  }

  .img-with-video {
    display: none;
  }

  .section-title .title {
    text-align: center;
  }

  .worldmap-wrap {
    margin-bottom: 100px;
  }

  .partners-title {
    font-size: 24px;
  }

  .btn-wrap {
    display: flex;
    padding-top: 0px;
  }

  .dont-have-account-text {
    padding-left: 10px;
    font-size: 10px;
    padding-top: 15px;
  }

  .remember-text {
    font-size: 12px;
  }

  .client-content {
    padding-top: 10px;
  }

  .client-slider .client-slider-item {
    margin: 20px 0px;
    width: 350px;
  }

  .client-slider {
    padding: 20px;
    width: auto;
  }

  .media {
    display: flex;
    align-items: center;
    margin-top: 14px;
  }

  .client-slider .client-slider-item .media .media-left {
    padding-top: 0px;
  }

  .client-slider .client-slider-item .client-content {
    margin-bottom: 0px;
  }

}

@media (max-width:992px) {
  .top-nav {
    display: none;
  }

  .media {
    display: flex;
    align-items: center;
    margin-top: 14px;
  }
}

@media (min-width:400px) and (max-width:500px) {
  .client-slider .client-slider-item {
    margin: 20px 0px;
    width: 450px;
  }
}

@media (min-width:400px) and (max-width:640px) {
  .client-slider .client-slider-item {
    margin: 20px 0px;
    width: 550px;
  }
}

/* LEFT image area business tool */

.leftside-image-area-business-tool {
  padding-top: 80px;
  padding-bottom: 80px;
}


/* LEFT image area business tool */

.leftside-image-area-business-tool {
  padding-top: 80px;
  padding-bottom: 80px;
}


.placeholder-option {
  color: #ccc;
}

.pricing-section .thumb img {
  border-radius: 8px;
  width: 200px;   /* set fixed width */
  height: 120px;  /* set fixed height */
  object-fit: contain; /* keeps image proper */
}

.map-container {
  position: relative;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background: transparent;
  z-index: 2;
}

/* Compare Tabel for Pricing */

/* Compare Table for Pricing - Simple & Clean */

.compare-section {
  max-width: 1200px;
  width: 100%;
  margin: 50px auto 0;
  padding: 0 20px;
}

.compare-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: 700;
  color: var(--mapui-text, #1a2533);
}

.compare-table-wrapper {
  overflow-x: auto;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--mapui-border, #dde3ee);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
  font-family: var(--mapui-font, 'Nunito', sans-serif);
}

.compare-table thead {
  background: #f1f5f9;
}

.compare-table th {
  padding: 18px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 15px;
  color: var(--mapui-accent, #01358d);
  border-bottom: 2px solid var(--mapui-border, #dde3ee);
}

.compare-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 14px;
  color: var(--mapui-text, #1a2533);
  border-bottom: 1px solid var(--mapui-border, #dde3ee);
}

.compare-table tbody tr:nth-child(odd) {
  background: #f9fafb;
}

.compare-center {
  text-align: center;
}

.compare-check {
  color: #16a34a;
  font-weight: 700;
  font-size: 16px;
}

.compare-cross {
  color: #dc2626;
  font-weight: 700;
  font-size: 16px;
}

/* First column styling */
.compare-table td:first-child,
.compare-table th:first-child {
  font-weight: 700;
  background-color: #fafcff;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .compare-section {
    padding: 0 15px;
  }
  
  .compare-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  
  .compare-table th,
  .compare-table td {
    padding: 14px 16px;
  }
}

@media (max-width: 768px) {
  .compare-section {
    margin: 30px auto 0;
    padding: 0 12px;
  }
  
  .compare-title {
    font-size: 22px;
    margin-bottom: 25px;
  }
  
  .compare-table-wrapper {
    border-radius: 12px;
  }
  
  /* Card-based layout for mobile */
  .compare-table,
  .compare-table thead,
  .compare-table tbody,
  .compare-table th,
  .compare-table td,
  .compare-table tr {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .compare-table thead {
    display: none;
  }

  .compare-table tr {
    margin-bottom: 20px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--mapui-border, #dde3ee);
  }

  .compare-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #eef2f6;
    gap: 10px;
  }

  .compare-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--mapui-accent, #01358d);
    font-size: 13px;
    min-width: 100px;
    flex-shrink: 0;
  }

  .compare-table td:last-child {
    border-bottom: none;
  }
  
  .compare-table td:first-child {
    background: #fafcff;
  }
  
  .compare-check,
  .compare-cross {
    font-size: 14px;
  }
  
  .compare-center {
    text-align: right;
  }
}

@media (max-width: 480px) {
  .compare-section {
    margin: 20px auto 0;
    padding: 0 10px;
  }
  
  .compare-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .compare-table td {
    padding: 10px 12px;
    font-size: 13px;
  }
  
  .compare-table td::before {
    font-size: 12px;
    min-width: 85px;
  }
  
  .compare-table tr {
    margin-bottom: 15px;
  }
}

/* Small screens like iPhone SE */
@media (max-width: 375px) {
  .compare-table td {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  .compare-table td::before {
    min-width: auto;
  }
  
  .compare-center {
    text-align: left;
  }
}
.upload-resume-title {
  display: block;
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 16px;
  color: #97a1b2;
}
/* ================================================================
   MapUI — pricing.css + checkout.css
   Drop into: assets/css/checkout.css
   ================================================================ */

/* ── MapUI Brand Variables ───────────────────────────────────── */
:root {
  --mapui-primary: #0041af;
  --mapui-primary-dark: #002f82;
  --mapui-primary-light: #e6eeff;
  --mapui-accent: #01358d;
  --mapui-text: #1a2533;
  --mapui-muted: #5b6880;
  --mapui-border: #dde3ee;
  --mapui-bg: #f4f6fb;
  --mapui-white: #ffffff;
  --mapui-success: #16a34a;
  --mapui-success-bg: #dcfce7;
  --mapui-success-dark: #166534;
  --mapui-danger: #dc2626;
  --mapui-shadow: 0 4px 24px rgba(0, 65, 175, 0.10);
  --mapui-radius: 10px;
  --mapui-font: 'Nunito', sans-serif;
}


/* ================================================================
   SECTION 1 — PRICING PAGE
   ================================================================ */

/* ── Title row: heading centred, selector at far right ───────── */
.mapui-pricing-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 10px;
  position: relative;
  /* allows pseudo-centring trick */
}

.mapui-pricing-title-row .title {
  margin: 0;
  flex: 1;
  text-align: center;
}

/* ── Currency Wrapper — fixed width so button never shrinks ──── */
.mapui-currency-wrapper {
  position: relative;
  flex-shrink: 0;
  /*
    Fixed width ensures the button keeps the same footprint regardless
    of which country name is displayed (India vs United States, etc.)
  */
  width: 200px;
}

/* ── Currency Button — fills its fixed-width wrapper ─────────── */
.mapui-currency-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: 100%;
  /* always fills the 200 px wrapper */
  box-sizing: border-box;
  background: var(--mapui-white);
  border: 1.5px solid var(--mapui-border);
  border-radius: 8px;
  /* subtle, NOT fully rounded */
  padding: 7px 12px 7px 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--mapui-accent);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: var(--mapui-font);
  white-space: nowrap;
  overflow: hidden;
}

/* Currency code text truncates if too long */
#currencyCode {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.mapui-currency-btn:hover,
.mapui-currency-btn.open {
  border-color: var(--mapui-primary);
  box-shadow: 0 0 0 3px rgba(0, 65, 175, 0.10);
}

.mapui-globe-icon {
  color: var(--mapui-primary);
  flex-shrink: 0;
}

.mapui-chevron {
  transition: transform 0.2s;
  flex-shrink: 0;
  color: var(--mapui-muted);
  margin-left: auto;
  /* push chevron to the right */
}

.mapui-currency-btn.open .mapui-chevron {
  transform: rotate(180deg);
}

/* ── Currency Dropdown Menu ───────────────────────────────────── */
.mapui-currency-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;

  min-width: 100%;
  width: 100%;
  /* ✅ same as button */
  max-width: 100%;
  /* ✅ prevent overflow */

  background: var(--mapui-white);
  border: 1.5px solid var(--mapui-border);
  border-radius: var(--mapui-radius);
  box-shadow: var(--mapui-shadow);

  list-style: none;
  margin: 0;
  padding: 0;

  max-height: 260px;
  overflow-y: auto;
  overflow-x: hidden;
  /* ✅ remove horizontal scroll */

  z-index: 9999;
}

.mapui-currency-menu.open {
  display: block;
}

/* Sticky search row */
.mapui-currency-search-li {
  position: sticky;
  top: 0;
  background: var(--mapui-white);
  border-bottom: 1px solid var(--mapui-border);
  padding: 8px 10px;
  list-style: none;
  z-index: 2;
}

.mapui-currency-search-li input {
  width: 100%;
  border: 1px solid var(--mapui-border);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 12px;
  outline: none;
  font-family: var(--mapui-font);
  color: var(--mapui-text);
  box-sizing: border-box;
}

.mapui-currency-menu li[data-currency] {
  padding: 9px 14px;
  font-size: 13px;
  color: var(--mapui-text);
  cursor: pointer;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  /* ✅ prevents overflow nicely */
}

.mapui-currency-menu li[data-currency]:hover,
.mapui-currency-menu li[data-currency].selected {
  background: var(--mapui-primary-light);
  color: var(--mapui-primary);
}

.mapui-currency-menu li[data-currency].selected {
  font-weight: 700;
}

.mapui-currency-loading {
  padding: 12px 14px;
  font-size: 12px;
  color: var(--mapui-muted);
}

/* ── Billing Toggle (Monthly / Annually pill) ─────────────────── */
.mapui-billing-toggle-wrap {
  display: flex;
  justify-content: center;
  margin: 32px 0 40px;
}

.mapui-billing-toggle {
  display: inline-flex;
  align-items: center;
  background: #dde3ee;
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
}

.mapui-billing-btn {
  border: none;
  outline: none;
  background: transparent;
  border-radius: 999px;
  padding: 9px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--mapui-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  font-family: var(--mapui-font);
}

.mapui-billing-btn:focus {
  outline: none;
  box-shadow: none;
}

.mapui-billing-btn.active {
  background: var(--mapui-primary);
  color: var(--mapui-white);
}

.mapui-billing-btn:hover:not(.active) {
  background: #c8d0e2;
  color: var(--mapui-text);
}

.mapui-save-badge {
  background: var(--mapui-success-bg);
  color: var(--mapui-success);
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  padding: 2px 8px;
  line-height: 1.4;
}

.mapui-billing-btn.active .mapui-save-badge {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

/* =========================
   CUSTOM SCROLLBAR (MapUI Theme)
   ========================= */

/* Chrome, Edge, Safari */
.mapui-currency-menu::-webkit-scrollbar {
  width: 6px;
  /* thin scrollbar */
}

.mapui-currency-menu::-webkit-scrollbar-track {
  background: transparent;
  /* clean look */
}

.mapui-currency-menu::-webkit-scrollbar-thumb {
  background-color: var(--mapui-primary);
  /* your theme color */
  border-radius: 10px;
}

.mapui-currency-menu::-webkit-scrollbar-thumb:hover {
  background-color: var(--mapui-primary-dark);
}

/* Firefox */
.mapui-currency-menu {
  scrollbar-width: thin;
  scrollbar-color: var(--mapui-primary) transparent;
}

/* ── Price block inside pricing cards ─────────────────────────── */
.mapui-price-block {
  margin-bottom: 2px;
}

.price {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  white-space: nowrap;
}

.mapui-symbol,
.mapui-amount {
  font-size: 32px !important;
  font-weight: 700;
  color: #01358d;
}


.mapui-period {
  font-size: 15px;
  font-weight: 400;
  color: var(--mapui-muted);
  margin-left: 2px;
}

.single-pricing-active .mapui-period {
  color: rgba(255, 255, 255, 0.75);
}

.mapui-custom-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--mapui-accent);
  margin-bottom: 0;
}

/* ── PRO Annual badge (inside card, above strip) ──────────────── */
.mapui-pro-annual-badge {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  margin-top: 8px;
  text-align: center;
  display: inline-block;
}

/* ================================================================
   ANNUAL SAVINGS STRIP
   Always green (#dcfce7 bg / #166534 text) — visible on ALL states:
   default, hover, and active (blue) card.
   ================================================================ */
.mapui-annual-strip {
  background: #dcfce7 !important;
  color: #166534 !important;
  border: 1px solid #bbf7d0;
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  padding: 7px 12px;
  margin: 10px 0 8px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  /* Force single line — matches order summary callout */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

/* Override ANY inherited or hover-state colour changes */
.single-pricing-active .mapui-annual-strip,
.single-pricing:hover .mapui-annual-strip,
.mapui-annual-strip--active {
  background: #dcfce7 !important;
  color: #166534 !important;
  border-color: #bbf7d0 !important;
}

/* Button sits right below the strip */
.single-pricing .btn {
  margin-top: 6px;
}


/* ================================================================
   SECTION 2 — CHECKOUT PAGE
   ================================================================ */

body {
  font-family: var(--mapui-font);
  background: var(--mapui-bg);
  color: var(--mapui-text);
}

/* ── Checkout Nav ─────────────────────────────────────────────── */
.mapui-checkout-nav {
  background: var(--mapui-white);
  border-bottom: 1.5px solid var(--mapui-border);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.mapui-checkout-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mapui-nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 800;
  color: var(--mapui-primary);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.mapui-nav-logo:hover {
  color: var(--mapui-primary-dark);
  text-decoration: none;
}

.mapui-nav-secure {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--mapui-success);
}

/* ── Checkout Page Wrapper ────────────────────────────────────── */
.mapui-checkout-page {
  padding: 36px 0 60px;
  min-height: calc(100vh - 56px);
}

/* ── Progress Steps ───────────────────────────────────────────── */
.mapui-steps {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}

.mapui-step {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mapui-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--mapui-border);
  color: var(--mapui-muted);
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.mapui-step-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--mapui-muted);
  transition: color 0.2s;
}

.mapui-step.active .mapui-step-num {
  background: var(--mapui-primary);
  color: #fff;
}

.mapui-step.active .mapui-step-label {
  color: var(--mapui-primary);
}

.mapui-step.done .mapui-step-num {
  background: var(--mapui-success);
  color: #fff;
}

.mapui-step-line {
  flex: 1;
  height: 2px;
  background: var(--mapui-border);
  margin: 0 10px;
}

/* ── Form Panels ──────────────────────────────────────────────── */
.mapui-form-panel {
  background: var(--mapui-white);
  border: 1.5px solid var(--mapui-border);
  border-radius: var(--mapui-radius);
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 65, 175, 0.05);
}

.mapui-form-panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  border-bottom: 1.5px solid var(--mapui-border);
  background: #f8faff;
}

.mapui-form-panel-head svg {
  color: var(--mapui-primary);
  flex-shrink: 0;
}

.mapui-form-panel-head h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--mapui-text);
  margin: 0;
}

.mapui-form-panel-body {
  padding: 22px;
}

/* ── Form Group ───────────────────────────────────────────────── */
.mapui-form-group {
  margin-bottom: 18px;
}

.mapui-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--mapui-text);
  margin-bottom: 6px;
}

.mapui-form-group label small {
  font-weight: 400;
  color: var(--mapui-muted);
}

/* ── Inputs ───────────────────────────────────────────────────── */
.mapui-input {
  width: 100%;
  height: 42px;
  border: 1.5px solid var(--mapui-border);
  border-radius: 8px;
  padding: 0 12px;
  font-size: 14px;
  font-family: var(--mapui-font);
  color: var(--mapui-text);
  background: var(--mapui-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.mapui-input:focus {
  border-color: var(--mapui-primary);
  box-shadow: 0 0 0 3px rgba(0, 65, 175, 0.10);
}

.mapui-input.error {
  border-color: var(--mapui-danger);
}

.mapui-input.error:focus {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.10);
}

/* ── Select Wrapper ───────────────────────────────────────────── */
.mapui-select-wrap {
  position: relative;
}

.mapui-select-wrap::after {
  content: '';
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--mapui-muted);
  border-bottom: 2px solid var(--mapui-muted);
  transform: translateY(-70%) rotate(45deg);
  position: absolute;
  right: 14px;
  top: 50%;
  pointer-events: none;
}

.mapui-select-wrap .mapui-input {
  padding-right: 36px;
  cursor: pointer;
}

/* ── Error messages ───────────────────────────────────────────── */
.mapui-err {
  display: none;
  font-size: 11px;
  font-weight: 600;
  color: var(--mapui-danger);
  margin-top: 4px;
}

/* ── Terms checkbox ───────────────────────────────────────────── */
.mapui-terms-wrap {
  margin-top: 4px;
}

.mapui-checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mapui-text);
  cursor: pointer;
  user-select: none;
}

.mapui-checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--mapui-primary);
  cursor: pointer;
  flex-shrink: 0;
}

.mapui-link {
  color: var(--mapui-primary);
  font-weight: 600;
}

.mapui-link:hover {
  color: var(--mapui-primary-dark);
}

.req {
  color: var(--mapui-danger);
  font-weight: 700;
}

/* ── Review panel ─────────────────────────────────────────────── */
.mapui-review-panel {
  background: var(--mapui-white);
  border: 1.5px solid var(--mapui-border);
  border-radius: var(--mapui-radius);
  margin-bottom: 20px;
  overflow: hidden;
  animation: mapuiFadeUp 0.35s ease both;
  box-shadow: 0 2px 12px rgba(0, 65, 175, 0.05);
}

.mapui-review-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  border-bottom: 1.5px solid var(--mapui-border);
  background: #f8faff;
}

.mapui-review-panel-head h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--mapui-text);
  margin: 0;
}

.mapui-edit-btn {
  font-size: 12px;
  padding: 4px 14px;
  border: 1.5px solid var(--mapui-primary);
  color: var(--mapui-primary);
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-family: var(--mapui-font);
  transition: background 0.15s, color 0.15s;
}

.mapui-edit-btn:hover {
  background: var(--mapui-primary);
  color: #fff;
}

.mapui-review-panel-body {
  padding: 18px 22px;
}

.mapui-review-field {
  margin-bottom: 14px;
}

.mapui-review-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--mapui-muted);
  margin-bottom: 3px;
}

.mapui-review-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--mapui-text);
}


/* ================================================================
   ORDER SUMMARY SIDEBAR
   ================================================================ */

.mapui-sidebar-sticky {
  position: sticky;
  top: 80px;
}

.mapui-order-panel {
  background: var(--mapui-white);
  border: 1.5px solid var(--mapui-border);
  border-radius: var(--mapui-radius);
  overflow: hidden;
  box-shadow: var(--mapui-shadow);
}

.mapui-order-panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1.5px solid var(--mapui-border);
  background: #f8faff;
}

.mapui-order-panel-head svg {
  color: var(--mapui-primary);
}

.mapui-order-panel-head h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--mapui-text);
  margin: 0;
}

.mapui-order-panel-body {
  padding: 18px 20px;
}

/* ── Plan Selector tiles ──────────────────────────────────────── */
.mapui-plan-selector-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--mapui-muted);
  margin: 0 0 8px;
}

.mapui-plan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mapui-plan-tile {
  border: 2px solid var(--mapui-border);
  border-radius: 8px;
  padding: 9px 10px 8px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  text-align: center;
  user-select: none;
  background: var(--mapui-white);
  font-family: var(--mapui-font);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.mapui-tile-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--mapui-muted);
  line-height: 1.2;
}

.mapui-tile-price {
  font-size: 11px;
  font-weight: 400;
  color: var(--mapui-muted);
  line-height: 1.3;
}

.mapui-plan-tile:hover,
.mapui-plan-tile.selected {
  border-color: var(--mapui-primary);
  background: var(--mapui-primary-light);
}

.mapui-plan-tile:hover .mapui-tile-name,
.mapui-plan-tile:hover .mapui-tile-price,
.mapui-plan-tile.selected .mapui-tile-name,
.mapui-plan-tile.selected .mapui-tile-price {
  color: var(--mapui-primary);
}

.mapui-plan-tile--enterprise {
  grid-column: 1 / -1;
}

/* ── Divider ──────────────────────────────────────────────────── */
.mapui-divider {
  border: none;
  border-top: 1.5px solid var(--mapui-border);
  margin: 14px 0;
}

/* ── Sidebar Billing Toggle ───────────────────────────────────── */
.mapui-sidebar-billing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.mapui-sidebar-billing-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--mapui-text);
  white-space: nowrap;
  flex-shrink: 0;
}

.mapui-sidebar-billing-right {
  display: flex;
  align-items: center;
  gap: 7px;
}

.mapui-sidebar-toggle-label {
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s, font-weight 0.2s;
}

/* Toggle switch */
.mapui-toggle-track {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
  border-radius: 999px;
  cursor: pointer;
  flex-shrink: 0;
}

.mapui-toggle-track input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.mapui-toggle-slider {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #ccc;
  transition: background 0.2s;
  cursor: pointer;
}

.mapui-toggle-slider::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  transition: left 0.2s;
}

.mapui-toggle-track input:checked+.mapui-toggle-slider {
  background: var(--mapui-primary);
}

.mapui-toggle-track input:checked+.mapui-toggle-slider::before {
  left: 21px;
}

.mapui-sidebar-save-badge {
  background: var(--mapui-success-bg);
  color: var(--mapui-success);
  font-size: 10px;
  font-weight: 700;
  border-radius: 999px;
  padding: 1px 6px;
  margin-left: 2px;
}

/* ── Plan Box ─────────────────────────────────────────────────── */
.mapui-plan-box {
  background: var(--mapui-primary-light);
  border: 1.5px solid #b3c5ef;
  border-radius: 8px;
  padding: 14px;
}

.mapui-plan-box-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
  gap: 8px;
}

.mapui-plan-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--mapui-primary);
  white-space: nowrap;
}

.mapui-plan-price-block {
  display: flex;
  align-items: baseline;
  gap: 1px;
  flex-shrink: 0;
}

.mapui-plan-sym {
  font-size: 14px;
  font-weight: 700;
  color: var(--mapui-accent);
}

.mapui-plan-amt {
  font-size: 22px;
  font-weight: 800;
  color: var(--mapui-accent);
}

.mapui-plan-period {
  font-size: 12px;
  font-weight: 400;
  color: var(--mapui-muted);
  margin-left: 2px;
}

.mapui-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mapui-feature-list li {
  font-size: 13px;
  color: var(--mapui-muted);
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 7px;
}

.mapui-feature-list li::before {
  content: '✓';
  color: var(--mapui-primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Annual callout in sidebar — same green as pricing card strip */
.mapui-annual-callout {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 10px;
  margin-top: 10px;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Price Breakdown ──────────────────────────────────────────── */
.mapui-price-breakdown {
  margin-top: 4px;
}

.mapui-breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--mapui-muted);
  padding: 4px 0;
}

.mapui-discount-row {
  color: var(--mapui-success);
  font-weight: 600;
}

.mapui-breakdown-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--mapui-text);
  padding: 10px 0 4px;
  border-top: 1.5px solid var(--mapui-border);
  margin-top: 6px;
}

.mapui-breakdown-total span:last-child {
  color: var(--mapui-primary);
}

/* ── Coupon ───────────────────────────────────────────────────── */
.mapui-coupon-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--mapui-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mapui-coupon-row {
  display: flex;
  gap: 8px;
}

.mapui-coupon-input {
  flex: 1;
  height: 38px;
}

.mapui-coupon-btn {
  height: 38px;
  padding: 0 16px;
  font-size: 13px;
  white-space: nowrap;
  flex-shrink: 0;
}

.mapui-coupon-msg {
  font-size: 12px;
  font-weight: 600;
  margin-top: 6px;
  min-height: 18px;
}

.mapui-coupon-ok {
  color: var(--mapui-success);
}

.mapui-coupon-err {
  color: var(--mapui-danger);
}

/* ── Primary Brand Button ─────────────────────────────────────── */
.mapui-btn-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--mapui-primary);
  border: none;
  border-radius: 8px;
  color: var(--mapui-white);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--mapui-font);
  padding: 10px 22px;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
}

.mapui-btn-brand:hover {
  background: var(--mapui-primary-dark);
  box-shadow: 0 4px 16px rgba(0, 65, 175, 0.25);
  transform: translateY(-1px);
}

.mapui-btn-brand:active {
  transform: translateY(0);
}

.mapui-btn-brand:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.mapui-btn-block {
  width: 100%;
}

/* ── Secure note ──────────────────────────────────────────────── */
.mapui-secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 11px;
  color: var(--mapui-muted);
  margin-top: 10px;
  margin-bottom: 0;
}

.mapui-secure-note svg {
  flex-shrink: 0;
}


/* ================================================================
   PAYMENT MODAL
   ================================================================ */

.mapui-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 45, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.mapui-modal-overlay.open {
  display: flex;
}

.mapui-modal-box {
  background: var(--mapui-white);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 65, 175, 0.22);
  width: 100%;
  max-width: 460px;
  padding: 30px 28px 26px;
  position: relative;
  animation: mapuiModalIn 0.28s cubic-bezier(0.22, 0.68, 0, 1.2);
}

@keyframes mapuiModalIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.mapui-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--mapui-muted);
  transition: color 0.15s;
  padding: 0;
  line-height: 1;
}

.mapui-modal-close:hover {
  color: var(--mapui-text);
}

.mapui-modal-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.mapui-modal-icon {
  width: 42px;
  height: 42px;
  background: var(--mapui-primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--mapui-primary);
}

.mapui-modal-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--mapui-text);
  margin: 0 0 3px;
}

.mapui-modal-subtitle {
  font-size: 13px;
  color: var(--mapui-muted);
  margin: 0;
}

.mapui-card-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--mapui-primary-light) 0%, #d6e4ff 100%);
  border: 1.5px solid #b3c5ef;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 20px;
}

.mapui-chip {
  width: 38px;
  height: 28px;
  background: linear-gradient(135deg, #f6c941 0%, #e0a800 100%);
  border-radius: 5px;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.mapui-card-strip-track {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mapui-card-dots {
  font-size: 18px;
  letter-spacing: 5px;
  color: var(--mapui-accent);
  opacity: 0.6;
}

.mapui-card-brand {
  font-size: 20px;
  font-weight: 800;
  color: var(--mapui-primary);
  letter-spacing: -0.5px;
  font-family: Georgia, serif;
}

.mapui-card-input {
  letter-spacing: 3px;
  font-size: 15px;
}

.mapui-amount-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--mapui-primary-light);
  border: 1.5px solid #b3c5ef;
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 16px;
}

.mapui-amount-label {
  font-size: 13px;
  color: var(--mapui-muted);
  font-weight: 500;
}

.mapui-amount-total {
  font-size: 20px;
  font-weight: 800;
  color: var(--mapui-primary);
}


/* ================================================================
   COMPARE TABLE
   ================================================================ */

.compare-section {
  padding: 60px 0 40px;
}

.compare-title {
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  color: var(--mapui-text);
  margin-bottom: 32px;
}

.compare-table-wrapper {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--mapui-font);
  font-size: 14px;
}

.compare-table th,
.compare-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--mapui-border);
}

.compare-table thead th {
  background: var(--mapui-primary-light);
  color: var(--mapui-accent);
  font-weight: 700;
  font-size: 13px;
}

.compare-table thead th:first-child {
  border-radius: 8px 0 0 0;
}

.compare-table thead th:last-child {
  border-radius: 0 8px 0 0;
}

.compare-table tbody tr:hover {
  background: #f8faff;
}

.compare-table td {
  color: var(--mapui-muted);
}

.compare-table td:first-child {
  color: var(--mapui-text);
  font-weight: 600;
}

.compare-center {
  text-align: center;
}

.compare-check {
  color: var(--mapui-success);
  font-weight: 700;
  font-size: 15px;
}

.compare-cross {
  color: var(--mapui-danger);
  font-weight: 700;
  font-size: 13px;
}


/* ================================================================
   ANIMATIONS
   ================================================================ */

@keyframes mapuiFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 991px) {
  .mapui-sidebar-sticky {
    position: static;
    margin-top: 28px;
  }
}

@media (max-width: 767px) {
  .mapui-checkout-page {
    padding: 20px 0 40px;
  }

  .mapui-form-panel-body {
    padding: 16px;
  }

  .mapui-order-panel-body {
    padding: 14px;
  }

  .mapui-modal-box {
    padding: 22px 18px 20px;
  }

  .mapui-steps {
    flex-wrap: wrap;
    gap: 8px;
  }

  .mapui-step-line {
    display: none;
  }

  .mapui-pricing-title-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  /* On mobile currency wrapper can be auto-width */
  .mapui-currency-wrapper {
    width: auto;
    min-width: 180px;
  }

  .mapui-billing-toggle-wrap {
    margin: 20px 0 28px;
  }
}

@media (max-width: 540px) {

  .mapui-annual-strip,
  .mapui-annual-callout {
    white-space: normal;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .mapui-plan-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mapui-coupon-row {
    flex-direction: column;
  }

  .mapui-coupon-btn {
    width: 100%;
  }
}

/* ================================================================
   MapUI Pricing & Compare Table - Complete CSS
   ================================================================ */

/* Center the pricing section */
.mapui-pricing-responsive {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto !important;
  padding: 0 15px;
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
}

/* Target columns inside - proper centering */
.mapui-pricing-responsive > [class*="col-"] {
  padding-left: 15px !important;
  padding-right: 15px !important;
  margin-bottom: 30px !important;
  display: flex !important;
}

/* Make cards equal height */
.mapui-pricing-responsive .single-pricing {
  display: flex !important;
  flex-direction: column !important;
  width: 100% !important;
  height: 100% !important;
}

/* Fix thumb/image sizes - make ALL images same size */
.mapui-pricing-responsive .thumb {
  margin-bottom: 30px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 120px !important;
}

.mapui-pricing-responsive .thumb img {
  width: 100px !important;
  height: 100px !important;
  object-fit: contain !important;
}

/* Push button to bottom */
.mapui-pricing-responsive .single-pricing ul {
  flex: 1 !important;
  margin-bottom: 0 !important;
  width: 100% !important;
}

/* Fix button text alignment */
.mapui-pricing-responsive .single-pricing .btn {
  margin-top: 20px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 10px 24px !important;
  line-height: 1.2 !important;
}

/* Fix price block alignment and spacing - consistent height */
.mapui-pricing-responsive .mapui-price-block {
  text-align: center !important;
  width: 100% !important;
  margin-bottom: 5px !important;
  min-height: 70px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.mapui-pricing-responsive .price {
  display: inline-flex !important;
  align-items: baseline !important;
  justify-content: center !important;
  gap: 8px !important;
  margin: 0 !important;
}

/* Fix symbol, amount, period spacing - consistent styling */
.mapui-pricing-responsive .mapui-symbol,
.mapui-pricing-responsive .mapui-amount {
  font-size: 36px !important;
  font-weight: 700 !important;
  color: #01358d !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.2 !important;
}

.mapui-pricing-responsive .mapui-period {
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #5b6880 !important;
  margin-left: 4px !important;
  padding: 0 !important;
  line-height: 1.2 !important;
}

/* Fix Custom text alignment - match height with price cards */
.mapui-pricing-responsive .mapui-custom-price {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  font-size: 36px !important;
  font-weight: 700 !important;
  color: #01358d !important;
  margin: 0 !important;
  line-height: 1.2 !important;
  min-height: 43px !important;
}

/* Active card custom price color */
.mapui-pricing-responsive .single-pricing-active .mapui-custom-price {
  color: #fff !important;
}

/* Fix for active card */
.mapui-pricing-responsive .single-pricing-active {
  background: #0041af !important;
}

.mapui-pricing-responsive .single-pricing-active .price .mapui-symbol,
.mapui-pricing-responsive .single-pricing-active .price .mapui-amount,
.mapui-pricing-responsive .single-pricing-active .price {
  color: #fff !important;
}

.mapui-pricing-responsive .single-pricing-active .mapui-period {
  color: rgba(255, 255, 255, 0.75) !important;
}

/* Fix list items alignment */
.mapui-pricing-responsive .single-pricing ul li {
  text-align: left !important;
  position: relative !important;
}

/* Fix annual strip positioning */
.mapui-pricing-responsive .mapui-annual-strip {
  margin: 10px 0 8px !important;
  width: 100% !important;
}

/* Desktop - 3 columns */
@media (min-width: 1200px) {
  .mapui-pricing-responsive > [class*="col-xl-4"] {
    flex: 0 0 33.333333% !important;
    max-width: 33.333333% !important;
  }
}

/* Small desktop / laptop - 3 columns */
@media (min-width: 992px) and (max-width: 1199px) {
  .mapui-pricing-responsive > [class*="col-lg-6"] {
    flex: 0 0 33.333333% !important;
    max-width: 33.333333% !important;
  }
  
  .mapui-pricing-responsive .thumb {
    min-height: 110px !important;
  }
  
  .mapui-pricing-responsive .thumb img {
    width: 90px !important;
    height: 90px !important;
  }
  
  .mapui-pricing-responsive .mapui-symbol,
  .mapui-pricing-responsive .mapui-amount {
    font-size: 34px !important;
  }
  
  .mapui-pricing-responsive .mapui-custom-price {
    font-size: 34px !important;
  }
  
  .mapui-pricing-responsive .mapui-price-block {
    min-height: 65px !important;
  }
}

/* Tablet - 2 columns */
@media (min-width: 768px) and (max-width: 991px) {
  .mapui-pricing-responsive > [class*="col-lg-6"] {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
  
  .mapui-pricing-responsive .single-pricing {
    padding: 40px 30px 35px 30px !important;
  }
  
  .mapui-pricing-responsive .single-pricing .title {
    font-size: 16px !important;
    margin-bottom: 30px !important;
  }
  
  .mapui-pricing-responsive .thumb {
    margin-bottom: 25px !important;
    min-height: 100px !important;
  }
  
  .mapui-pricing-responsive .thumb img {
    width: 85px !important;
    height: 85px !important;
  }
  
  .mapui-pricing-responsive .mapui-symbol,
  .mapui-pricing-responsive .mapui-amount {
    font-size: 32px !important;
  }
  
  .mapui-pricing-responsive .mapui-period {
    font-size: 15px !important;
  }
  
  .mapui-pricing-responsive .mapui-custom-price {
    font-size: 32px !important;
  }
  
  .mapui-pricing-responsive .mapui-price-block {
    min-height: 60px !important;
  }
  
  .mapui-pricing-responsive .single-pricing ul li {
    font-size: 12px !important;
    line-height: 35px !important;
    padding-left: 25px !important;
  }
  
  .mapui-pricing-responsive .single-pricing .btn {
    padding: 8px 20px !important;
  }
}

/* Mobile - 1 column */
@media (max-width: 767px) {
  .mapui-pricing-responsive > [class*="col-sm-12"] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  
  .mapui-pricing-responsive {
    padding: 0 10px !important;
  }
  
  .mapui-pricing-responsive > [class*="col-"] {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  
  .mapui-pricing-responsive .single-pricing {
    padding: 35px 25px 30px 25px !important;
  }
  
  .mapui-pricing-responsive .single-pricing .title {
    font-size: 16px !important;
    margin-bottom: 25px !important;
  }
  
  .mapui-pricing-responsive .thumb {
    margin-bottom: 20px !important;
    min-height: 90px !important;
  }
  
  .mapui-pricing-responsive .thumb img {
    width: 80px !important;
    height: 80px !important;
  }
  
  .mapui-pricing-responsive .mapui-symbol,
  .mapui-pricing-responsive .mapui-amount {
    font-size: 30px !important;
  }
  
  .mapui-pricing-responsive .mapui-period {
    font-size: 14px !important;
    margin-left: 3px !important;
  }
  
  .mapui-pricing-responsive .mapui-custom-price {
    font-size: 30px !important;
  }
  
  .mapui-pricing-responsive .mapui-price-block {
    min-height: 55px !important;
  }
  
  .mapui-pricing-responsive .single-pricing ul {
    padding-bottom: 25px !important;
  }
  
  .mapui-pricing-responsive .single-pricing ul li {
    font-size: 12px !important;
    line-height: 32px !important;
    padding-left: 24px !important;
  }
  
  .mapui-pricing-responsive .single-pricing .btn {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 10px 18px !important;
    margin-top: 15px !important;
  }
  
  .mapui-pricing-responsive .mapui-annual-strip {
    font-size: 10px !important;
    padding: 6px 10px !important;
    white-space: normal !important;
    line-height: 1.3 !important;
  }
}

/* Small mobile devices */
@media (max-width: 480px) {
  .mapui-pricing-responsive .single-pricing {
    padding: 28px 18px 25px 18px !important;
  }
  
  .mapui-pricing-responsive .single-pricing .title {
    font-size: 15px !important;
  }
  
  .mapui-pricing-responsive .thumb {
    min-height: 80px !important;
  }
  
  .mapui-pricing-responsive .thumb img {
    width: 70px !important;
    height: 70px !important;
  }
  
  .mapui-pricing-responsive .mapui-symbol,
  .mapui-pricing-responsive .mapui-amount {
    font-size: 28px !important;
  }
  
  .mapui-pricing-responsive .mapui-period {
    font-size: 13px !important;
  }
  
  .mapui-pricing-responsive .mapui-custom-price {
    font-size: 28px !important;
  }
  
  .mapui-pricing-responsive .mapui-price-block {
    min-height: 50px !important;
  }
  
  .mapui-pricing-responsive .single-pricing ul li {
    font-size: 11px !important;
    line-height: 30px !important;
  }
  
  .mapui-pricing-responsive .single-pricing .btn {
    min-width: 120px !important;
  }
}


/* ============================================================
   thankyou.css
   Styles for the Thank You / Order Confirmation page.
   Matches existing site palette: primary #057A96.
   All classes prefixed with "ty-" to avoid conflicts.
   ============================================================ */


/* ============================================================
   CSS VARIABLES — site palette tokens
   ============================================================ */
:root {
  --ty-primary: var(--mapui-primary);
  --ty-primary-dark: var(--mapui-primary-dark);
  --ty-primary-light: var(--mapui-primary-light);

  /* Mid tone (not directly available, so derived) */
  --ty-primary-mid: #b3c5ef;

  /* Gradient using MapUI colors */
  --ty-primary-grad: linear-gradient(135deg,
      var(--mapui-primary) 0%,
      #003a9c 60%,
      #4d79ff 100%);

  --ty-text: var(--mapui-text);
  --ty-text-mid: var(--mapui-muted);
  --ty-text-light: #9aa5b5;

  --ty-border: var(--mapui-border);
  --ty-bg: var(--mapui-bg);
  --ty-white: var(--mapui-white);

  --ty-success: var(--mapui-success);

  --ty-radius: var(--mapui-radius);
  --ty-shadow: var(--mapui-shadow);
}

/* ============================================================
   BASE
   ============================================================ */
body {
  background: var(--ty-bg);
  font-family: 'Segoe UI', sans-serif;
  color: var(--ty-text);
  margin: 0;
}

/* Confetti canvas — fixed behind everything */
#confettiCanvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Page wrapper — sits above confetti */
.ty-page-wrap {
  position: relative;
  z-index: 1;
}


/* ============================================================
   TY-NAVBAR — top navigation bar
   ============================================================ */
.ty-navbar {
  background: var(--ty-white);
  border-bottom: 2px solid var(--ty-primary-light);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}

/* Brand / logo link */
.ty-navbar-brand {
  font-size: 20px;
  font-weight: 700;
  color: var(--ty-primary);
  text-decoration: none;
  letter-spacing: -0.3px;
}

/* Breadcrumb trail (right-aligned) */
.ty-navbar-trail {
  margin-left: auto;
  font-size: 13px;
  color: var(--ty-text-light);
}

.ty-navbar-trail strong {
  color: var(--ty-primary);
}


/* ============================================================
   TY-HERO — coloured banner at top of page
   ============================================================ */
.ty-hero {
  background: var(--ty-primary-grad);
  padding: 52px 20px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle dot-pattern overlay */
.ty-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Circular check icon wrapper */
.ty-hero-check {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border: 3px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 36px;
  color: var(--ty-white);
  animation: tyPopIn 0.5s 0.1s cubic-bezier(0.22, 0.68, 0, 1.5) both;
}

@keyframes tyPopIn {
  from {
    transform: scale(0);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.ty-hero h1 {
  color: var(--ty-white);
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 8px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.ty-hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  margin: 0;
}


/* ============================================================
   PANEL OVERRIDES — match existing site panel style
   These reinforce the site's .panel styles in case this CSS
   is loaded before Bootstrap / site CSS.
   ============================================================ */
.panel {
  border-radius: var(--ty-radius);
  box-shadow: var(--ty-shadow);
  border: none;
  background: var(--ty-white);
  margin-bottom: 20px;
}

.panel-heading {
  background: var(--ty-white) !important;
  border-bottom: 2px solid var(--ty-primary-light);
  border-radius: var(--ty-radius) var(--ty-radius) 0 0 !important;
  padding: 14px 20px;
}

.panel-heading h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--ty-primary);
}

.panel-body {
  padding: 20px;
}


/* ============================================================
   TY-PLAN-BOX — active plan highlight card (reuses .plan-box
   style but scoped under ty- for the thank you page)
   ============================================================ */
.ty-plan-box {
  background: var(--ty-primary-light);
  border: 1px solid var(--ty-primary);
  border-radius: 6px;
  padding: 14px 16px;
  margin-bottom: 16px;
}

/* Plan name (e.g. "Advanced") */
.ty-plan-box__name {
  font-size: 20px;
  font-weight: 700;
  color: var(--ty-primary);
  display: inline;
}

/* "ACTIVE" badge */
.ty-plan-box__badge {
  display: inline-block;
  background: var(--ty-primary);
  color: var(--ty-white);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  vertical-align: middle;
  margin-left: 8px;
}

/* Price shown right-aligned */
.ty-plan-box__price {
  float: right;
  font-size: 22px;
  font-weight: 700;
  color: var(--ty-primary);
}

/* Feature list inside plan box */
.ty-plan-box ul {
  padding-left: 0;
  list-style: none;
  margin: 10px 0 0;
  clear: both;
}

.ty-plan-box ul li {
  font-size: 13px;
  color: #2c5a68;
  padding: 2px 0;
}

.ty-plan-box ul li::before {
  content: '✓ ';
  color: var(--ty-primary);
  font-weight: 700;
}


/* ============================================================
   TY-SUMMARY-ROW — order detail rows (mirrors .summary-row)
   ============================================================ */
.ty-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--ty-border);
  color: var(--ty-text-mid);
  font-size: 14px;
}

.ty-summary-row:last-of-type {
  border-bottom: none;
}

.ty-summary-row strong {
  color: var(--ty-text);
  font-weight: 600;
}

/* Total row — bold with top border */
.ty-summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 0 4px;
  border-top: 2px solid #ddd;
  margin-top: 4px;
  color: var(--ty-primary);
}


/* ============================================================
   TY-ORDER-ID — styled badge for the order reference number
   ============================================================ */
.ty-order-id {
  display: inline-block;
  background: var(--ty-primary-light);
  border: 1px solid var(--ty-primary-mid);
  border-radius: 4px;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ty-primary);
  letter-spacing: 0.04em;
  font-family: monospace;
}


/* ============================================================
   TY-STEPS — numbered next-steps list
   ============================================================ */
.ty-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ty-steps li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--ty-border);
  font-size: 14px;
  color: #444;
}

.ty-steps li:last-child {
  border-bottom: none;
}

/* Circular step number */
.ty-step-num {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--ty-primary);
  color: var(--ty-white);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ty-steps li strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ty-text);
}

.ty-steps li .text-muted {
  font-size: 13px;
}


/* ============================================================
   TY-ACTIONS — button group panel
   ============================================================ */
.ty-actions {
  text-align: center;
}

.ty-actions .btn {
  margin-bottom: 10px;
}


/* ============================================================
   TY-FOOTER-NOTE — small disclaimer below actions
   ============================================================ */
.ty-footer-note {
  font-size: 12px;
  color: var(--ty-text-light);
  text-align: center;
  margin-top: 20px;
  line-height: 1.7;
}

.ty-footer-note a {
  color: var(--ty-primary);
  text-decoration: none;
}

.ty-footer-note a:hover {
  text-decoration: underline;
}


/* ============================================================
   FADE-IN ANIMATIONS — staggered panel entrance
   ============================================================ */
.ty-fade {
  animation: tyFadeUp 0.4s ease both;
}

.ty-fade-2 {
  animation: tyFadeUp 0.4s ease 0.1s both;
}

.ty-fade-3 {
  animation: tyFadeUp 0.4s ease 0.2s both;
}

@keyframes tyFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ============================================================
   BTN-BRAND override — ensure button matches site colour
   (in case site CSS isn't loaded alongside this file)
   ============================================================ */
.btn-brand {
  background-color: var(--ty-primary);
  border-color: var(--ty-primary-dark);
  color: var(--ty-white);
}

.btn-brand:hover,
.btn-brand:focus {
  background-color: var(--ty-primary-dark);
  border-color: #035e74;
  color: var(--ty-white);
}

#file-error-msg {
  padding-top: 10px ;
}


.client-tab-container {
    position: relative;
    display: inline-flex;
    background: #EFEFF0;
    border-radius: 6px;
    padding: 4px;
    width: 100%;
    margin-bottom: 20px;
}

/* Slider */
.client-tab-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: #FFFFFF;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* Move slider */
.client-tab-container.active-admin .client-tab-slider {
    transform: translateX(100%);
}

/* Tabs */
.client-tab {
    flex: 1;
    text-align: center;
    padding: 8px 0;
    font-size: 14px;
    color: #555;
    cursor: pointer;
    z-index: 1;
    transition: all 0.3s ease;
}

.client-tab.active {
    color: #000;
    font-weight: 500;
}