@font-face {
  font-family: 'Gordita';
  src: url('../fonts/Gordita-Black.eot');
  src: url('../fonts/Gordita-Black.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Gordita-Black.woff2') format('woff2'),
      url('../fonts/Gordita-Black.woff') format('woff'),
      url('../fonts/Gordita-Black.ttf') format('truetype'),
      url('../fonts/Gordita-Black.svg#Gordita-Black') format('svg');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gordita';
  src: url('../fonts/Gordita-Bold.eot');
  src: url('../fonts/Gordita-Bold.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Gordita-Bold.woff2') format('woff2'),
      url('../fonts/Gordita-Bold.woff') format('woff'),
      url('../fonts/Gordita-Bold.ttf') format('truetype'),
      url('../fonts/Gordita-Bold.svg#Gordita-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gordita';
  src: url('../fonts/Gordita-Regular.eot');
  src: url('../fonts/Gordita-Regular.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Gordita-Regular.woff2') format('woff2'),
      url('../fonts/Gordita-Regular.woff') format('woff'),
      url('../fonts/Gordita-Regular.ttf') format('truetype'),
      url('../fonts/Gordita-Regular.svg#Gordita-Regular') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gordita';
  src: url('../fonts/Gordita-Light.eot');
  src: url('../fonts/Gordita-Light.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Gordita-Light.woff2') format('woff2'),
      url('../fonts/Gordita-Light.woff') format('woff'),
      url('../fonts/Gordita-Light.ttf') format('truetype'),
      url('../fonts/Gordita-Light.svg#Gordita-Light') format('svg');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gordita';
  src: url('../fonts/Gordita-Medium.eot');
  src: url('../fonts/Gordita-Medium.eot?#iefix') format('embedded-opentype'),
      url('../fonts/Gordita-Medium.woff2') format('woff2'),
      url('../fonts/Gordita-Medium.woff') format('woff'),
      url('../fonts/Gordita-Medium.ttf') format('truetype'),
      url('../fonts/Gordita-Medium.svg#Gordita-Medium') format('svg');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}




.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

.fa-facebook:before {
  content: "\f09a"
}

.fa-instagram:before {
  content: "\f16d"
}

.fa-twitter:before {
  content: "\f099"
}

.fa-linkedin:before {
  content: "\f0e1"
}

body {
  font-size: 16px;
  overflow-x: hidden;
  color: #000;
  font-family: 'Gordita';
}

:root {
    --Primary-Color: #18499E;
    --blue-primary-color: #F2F7FF;
    --blue-color: #0E3A6B;
    --gray: #555;
    --black: #000000;
    --white: #ffffff;
}

.bg-blue-primary{ background: var(--blue-primary-color);}

/*.text-gray{ color: #667085;}*/

.contact-list a{
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

img {
  max-width: 100%;
}

a,
a:hover {
  text-decoration: none;
}

button,
select {
  outline: none !important;
}

ul,
ol {
  padding: 0px;
  margin: 0px;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
  line-height: 1.1;
}

.user-auth a {
  transition: all 500ms ease 0s;
}

.header .btn-primary {
  font-size: 16px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 126px;
}

img {
  max-width: 100%;
}

p{color: var(--gray);}

.header {
  z-index: 5;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  padding: 15px 0px;
  background-color: #fff;
  width: 100%;
  transition: all 0.3s ease 0s;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.08);
}

.header.sticky {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 5px;
}

.header .btn {
  box-shadow: none !important;
  outline: none !important;
}

.header-right .offcanvas-body {
  padding: 0px;
  overflow-y: visible;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}

.logo a {
  outline: none !important;
}

.offcanvas {
  border-right: none;
}

.header-right .navbar-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}

.navbar-nav .nav-item {
  padding: 0px 20px;
}

.navbar-nav a {
  font-size: 16px;
  position: relative;
  transition: all 0.3s ease 0s;
  padding: 0px;
  font-weight: 500;
  color: #171640;
}

.navbar-nav a i {
  font-size: 15px;
}

.navbar-nav .nav-link::before {
  content: "";
  height: 2px;
  background: var(--blue-color);
  width: 0px;
  position: absolute;
  bottom: 0;
  left: 0px;
  transition: all 0.3s ease 0s;
}

.navbar-nav a:hover::before {
  width: 100%;
}

.menu-item li a:hover::before {
  width: 100%;
}

.mobile-nav {
  width: 30px;
  height: 30px;
  position: relative;
  display: inline-block;
}

.bar1,
.bar2,
.bar3 {
  background-color: #000;
  cursor: pointer;
  height: 2px;
  margin: 7px 0px;
  transition: all 0.25s ease-in-out 0s;
  width: 30px;
  display: block;
  position: absolute;
}

.bar1 {
  top: 0px;
}

.bar2 {
  top: 8px;
  width: 20px;
}

.bar3 {
  top: 16px;
}

.open-menu .bar1 {
  top: 6px;
  transform: rotate(45deg);
}

.open-menu .bar2 {
  display: none;
}

.open-menu .bar3 {
  top: 6px;
  transform: rotate(-45deg);
}

.header-right button.btn.d-md-none {
  padding: 0px;
  margin-left: 20px;
  box-shadow: none !important;
}

.navbar-nav .nav-item .dropdown-menu {
  padding: 10px;
  box-shadow: rgba(11, 15, 25, 0.05) 0px 0.275rem 1.25rem, rgba(11, 15, 25, 0.03) 0px 0.25rem 0.5625rem;
  border-color: rgb(255, 255, 255);
  border-radius: 0px;
  padding: 0px;
  border: 0;
  transform: inherit !important;
  inset: inherit !important;
}

.navbar-nav .nav-item .dropdown-menu li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.navbar-nav .nav-item .dropdown-menu li a {
  color: rgb(0, 0, 0);
  display: block;
  font-size: 1rem;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
}

.navbar-nav .nav-item .dropdown-menu li a:hover {
  background: var(--Primary-Color);
  color: var(--Primary-Color);
}

.header-right button.btn.d-md-none {
  padding: 0px;
  margin-left: 20px;
  box-shadow: none !important;
}

.menu-item li a {
  font-size: 14px;
  color: rgb(0, 0, 0);
  padding: 5px 0px;
  display: block;
}

.menu-item li a:hover {
  color: rgb(26, 8, 83);
}

.header-right{flex: 1;}

.user-auth+.user-auth{ margin-left: 10px;}


@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0px);
  }
}

@media screen and (min-width: 768px) {
  .offcanvas {
    position: static;
    z-index: auto;
    display: block;
    width: 100%;
    height: auto;
    border: 0px;
    visibility: visible;
    transition: none 0s ease 0s;
    transform: inherit;
    background-color: transparent;
  }

  .navbar-nav .dropdown-menu {
    position: absolute;
    min-width: 188px;
    display: block;
    top: 15px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }

  .navbar-nav .nav-item:hover .dropdown-menu {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
  }

  .navbar-nav .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
  }

}

.navbar-nav li .nav-link {
  text-decoration: none;
  padding: 8px 0px;
  display: block;
  color: var(--gray);
}

.navbar-nav li.active a{ color: var(--blue-color);}
.navbar-nav a:hover {
  color: var(--blue-color);
}


@media screen and (max-width: 767px) {
  .navbar-nav {
    display: block;
  }

  .navbar-nav a {
    color: rgb(255, 255, 255);
  }
}



.btn-primary,
.btn-secondary,
.btn-outline {
  position: relative;
  min-width: 214px;
  padding: 16px 31px;
  overflow: hidden;
  box-shadow: none;
  font-size: 16px;
  display: inline-block;
  background: var(--Primary-Color);
  text-align: center;
  border-radius: 6.25rem;
  color: rgb(255, 255, 255);
  z-index: 1;
  border: 0;
  transition: all 500ms ease;
}

.btn-primary:before {
  position: absolute;
  content: '';
  background: var(--blue-color);
  width: 0%;
  height: 100%;
  top: 0px;
  right: 0px;
  border-radius: 5px;
  z-index: -1;
  transition: all 500ms ease;
}

.btn-primary:hover:before {
  width: 100%;
  left: 0px;
}

.btn-primary:hover,
.btn-outline:hover {
  background: var(--blue-color);
  border-color: var(--blue-color);
}

.btn-primary:hover,
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active {
  color: rgb(255, 255, 255);
  box-shadow: 0px 3px 22px rgba(48, 48, 48, 33%) !important;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
  color: rgb(255, 255, 255);
  background: var(--blue-color);
  border-color: var(--blue-color);
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
  background: var(--blue-color);
  border-color: var(--blue-color);
  box-shadow: 0px 3px 22px rgba(48, 48, 48, 33%) !important;
}

.btn-check:focus+.btn-outline,
.btn-outline:focus {
  box-shadow: 0px 3px 22px rgba(48, 48, 48, 33%) !important;
}

/* button primary css end  */

.main {margin-top: 90px;}

.hero-banner {
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-color: #F8F8F8;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: calc(100vh - 85px);
  min-height: 550px;
  padding: 50px 0px;
}

.sec-gap {
  padding: 100px 0px;
}

.banner-text h1 {
  font-size: 64px;
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 74px;
  max-width: 760px;
}

.banner-text h1 span{ color: var(--Primary-Color);}

.banner-text p {
  font-size: 20px;
  margin-bottom: 30px;
}

.banner-text .banner-lead {
  font-size: 32px;
  font-weight: 500;
  color: var(--black);
}


.block-header {
  max-width: 830px;
  margin: 0 auto 56px auto;
}
.block-header h2 {font-weight: bold;color: #000;font-size: 32px;text-transform: uppercase;line-height: 42px;}
.block-header span{ color: var(--Primary-Color);}
.block-header p{ max-width: 830px; margin: 0 auto;}

.t-hover {
  -webkit-transition: -webkit-box-shadow .25s ease, -webkit-transform .25s ease;
  transition: -webkit-box-shadow .25s ease, -webkit-transform .25s ease;
  -o-transition: box-shadow .25s ease, transform .25s ease;
  transition: box-shadow .25s ease, transform .25s ease;
  transition: box-shadow .25s ease, transform .25s ease, -webkit-box-shadow .25s ease, -webkit-transform .25s ease;
}

.t-hover:hover {
  -webkit-box-shadow: 0 1rem 2.5rem rgba(22, 28, 45, .1), 0 0.5rem 1rem -0.75rem rgba(22, 28, 45, .1) !important;
  box-shadow: 0 1rem 2.5rem rgba(22, 28, 45, .1), 0 0.5rem 1rem -0.75rem rgba(22, 28, 45, .1) !important;
  -webkit-transform: translate3d(0, -3px, 0);
  transform: translate3d(0, -3px, 0);
}

.asideBar .nav {border-bottom: 0;}

.asideBar .nav-item .nav-link {
  color: var(--gray);
  text-align: left;
  font-size: 1.375rem;
  width: 100%;
  border: 0;
  border-radius: 5px;
  padding: 10px 40px;
}
.asideBar .nav-item .nav-link.active{ background: var(--blue-color); color: var(--white);}


.sec-accordion .accordion-item {
  border: none;
  background-color: transparent;
  border-radius: 4px !important;
  margin-bottom: 12px;
}

.sec-accordion .accordion-body{ color: var(--gray);}
.title-step-lead {
  font-size: 1.5rem;
  color: var(--black);
  font-weight: 700;
}

.title-heading-lead-text {
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--black);
  line-height: normal;
}

.sec-why-choose-glass-tint{ background: var(--Primary-Color);}
.shape-hexagon {
  display: flex;
  align-items: center;
  width: 54px;
  height: 48px;
  position: relative;
  margin-right: 20px;
}
.shape-hexagon span {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  text-align: center;
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 700;
}


.list li {font-size: 22px;position: relative;margin-bottom: 25px;display: flex;align-items: center;min-height: 62px;}
.videobox img {
  border-radius: 10px;
  width: 100%;
}

.list-our-history li {position: relative;}
.list-our-history li::before, .list-our-history li::after{
  position: absolute;
  content: "";
  background: var(--Primary-Color);
  border-radius: 50%;
}

.list-our-history li::before{width: 32px;height: 32px;top: 0;left: 0;}
.list-our-history li::after{width: 24px;height: 24px;top: 4px;border: 3px solid #fff;left: 4px;}

.list-our-history li:not(:last-child) {
  padding-bottom: 50px;
}

.ic-icon {
  width: 88px;
  height: 88px;
  border-radius: 5px;
  background: var(--blue-primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.label {
  min-width: 330px;
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  padding: 0px 50px;
  line-height: 1.1;
}

.timeline-layer {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  width: 15px;
}

.timeline-layer:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  border-left:1px solid var(--Primary-Color);
}

.list-our-history li:last-child .timeline-layer::after{ display: none;}
.sec-software-integration [class*='col']{ margin-bottom: 25px;}

.card-price-row {
  display: flex;
}

.card-price-box {
  flex: 0 0 25%;
  max-width: 25%;
  margin: 0px -1px;
}

.boxinner{background: var(--white);border: 1px solid #75C5FF;height: 100%;}

.price-box-header{background: var(--blue-primary-color);font-weight: 500;padding: 15px 10px;min-height: 120px;}
.price-box-header h2 {font-size: 24px;margin-bottom: 10px;}
.price-box-header .item-price {font-size: 2rem;color: var(--Primary-Color);/* margin-bottom: 10px; */}
.price-box-header p {font-size: 1rem; margin: 0px;}
.card-price-body{ padding: 15px;}
.price-features ul li {
 color: var(--gray);
 position: relative;
 padding-left: 16px;
 margin-bottom: 15px;
}
.price-features ul li::before{position: absolute;content: "";left: 0;top: 8px;width: 6px;height: 6px;border-radius: 50%;background: var(--gray);}

.card-price-box.plan-recommended {
  position: relative;
  background: #F2F7FF;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.25);
}

.head-hero {background: linear-gradient(90deg, #18499E -1.31%, #001842 100%);color: var(--white);text-align: center;font-size: 0.875rem;font-weight: 500;text-transform: uppercase;padding: 5px;margin-top: -31px;}

.card-contact {
  border: 1px solid #CCCCCC;
  padding: 30px;
  border-radius: 10px;
  background: #fff;
}

.card-contact h2 {
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 40px;
}
.card-contact .form-group {
  margin-bottom: 15px;
}
.card-contact label {
  color: #555;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 6px;
}

.input-single .form-control {
  height: 48px;
  border-radius: 0.3125rem;
  border: 1px solid #CCC;
  background: #FFF;
}

.input-single .form-control:focus {
  border-color: rgba(140,152,164,.25);
  outline: 0;
  box-shadow: 0 0 1rem 0 rgba(140,152,164,.25);
  background-color: var(--white);
}

.input-single textarea.form-control {
  height: 100px;
  resize: none;
}

.imgcontact img {
  border-radius: 20px;
  width: 100%;
}

.card-contact .btn-primary {
  margin-top: 30px;
}

.footer{ background: var(--Primary-Color);}

.footer-bottom.text-center {
  background: #113B85;
  padding: 15px 0px;
}


.footer-top {padding-top: 100px;padding-bottom: 60px;}

.footer-logo {
    margin-bottom: 56px;
}

.footer-top h2 {
    font-size: 24px;
    margin-bottom: 24px;
}

.contact-list a {
    display: flex;
    align-items: center;
    background: #2152A7;
    padding: 10px 20px;
    color: #CCCCCC;
    border-radius: 5px;
}

.contact-list a:hover{ background: var(--blue-color); color: var(--white);}

.contact-list li {
    padding: 0px 12px;
}

.contact-list a i {
    margin-right: 15px;
}

.footer-bottom.text-center p {
  color: #CCCCCC;
}




.video-main {
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translate(-50%);
  left: 50%;
}

.video {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 100%;
  background: transparent;
  color: #fff;
  display: inline-block;
  background: #75C5FF;
  font-size: 20px;
  z-index: 999;
}

@keyframes waves {
  0% {
    -webkit-transform: scale(0.2, 0.2);
    transform: scale(0.2, 0.2);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  50% {
    opacity: 0.9;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  }
  100% {
    -webkit-transform: scale(0.9, 0.9);
    transform: scale(0.9, 0.9);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

.fa-play:before {content: "\f04b";}

.waves {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(117, 197, 255, 0.50);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  border-radius: 100%;
  right: -50px;
  bottom: -50px;
  z-index: -1;
  -webkit-animation: waves 3s ease-in-out infinite;
  animation: waves 3s ease-in-out infinite;
}
        
.wave-1 {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.wave-2 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.wave-3 {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.videobox .video-iframe-link {
  position: relative;
  z-index: 1;
}

.footlead.text-center {
  border-radius: 0.3125rem;
  background: #2051A6;
  color: #FFF;
  padding: 15px;
}

.page-banner {
  position: relative;
  padding: 97px 0px;
  background-size: cover;
  background-position: center center;
}
.page-banner::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.80) 1.02%, rgba(0, 0, 0, 0.00) 100%);
}
.page-banner .container {
  position: relative;
}

.page-title p {
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
}
.page-title h2 {
  color: #FFF;
  font-size: 4rem;
  font-weight: 700;
  line-height: 4.625rem;
  margin-bottom: 30px;
}

.card-widget {
  height: 100%;
}
.card-widget a {
  border-radius: 0.3125rem;
  border: 1px solid #CCC;
  background: #FFF;
  box-shadow: 0px 6px 16px 0px rgba(0, 0, 0, 0.08);
  padding: 15px;
  height: 100%;
}
.ic {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border-radius: 5px;
  color: var(--white);
  background: var(--Primary-Color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-right: 10px;
}
.text-right h6 {
  color: #000;
  font-size: 1.25rem;
  font-style: normal;
  margin-bottom: 5px;
  font-weight: 600;
  line-height: normal;
}
.text-right p {
  color: #555;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}