@font-face {
  font-family: 'Roboto';
  src: url('../fonts/Roboto-Light.woff2') format('woff2'),
      url('../fonts/Roboto-Light.woff') format('woff');
  font-style: normal;
  font-display: swap;
}
:root {
  --primary: #06a3da;
  --secondary: #34ad54;
  --light: #eef9ff;
  --dark: #091e3e;
  --bg-lightBlue: #3b8cd8;
  --font-primary: 'Roboto', sans-serif !important;
}
body {
  font-family: var(--font-primary);
}
/*** Spinner ***/
.spinner {
  width: 40px;
  height: 40px;
  background: var(--primary);
  margin: 100px auto;
  -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
  animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
  0% {
    -webkit-transform: perspective(120px);
  }
  50% {
    -webkit-transform: perspective(120px) rotateY(180deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
  }
}

@keyframes sk-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
:focus {
  outline: none;
  border: none;
}
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}
p {
  font-size: 1em;
  line-height: 1.7;
}
a {
  text-decoration: none !important;
}

/*** Button ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}

.btn-primary,
.btn-secondary {
  color: #ffffff;
  box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
  box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
  box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 30px;
  height: 30px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  position: relative;
  margin-left: 25px;
  padding: 0px 0;
  color: var(--light);
  font-size: 1.0em;
  font-weight: 600;
  outline: none;
  transition: 0.5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
  /* padding: 4px 0; */
  color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
  color: #ffffff;
}

.navbar-dark .navbar-toggler {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
  .h5, h5 {font-size: 1rem;}
  .BannerCaption__modifier{height: auto!important;}
  .sticky-top.navbar-dark {
    position: relative;
    background: #ffffff;
  }

  .navbar-dark .navbar-nav .nav-link,
  .navbar-dark .navbar-nav .nav-link.show,
  .sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 10px 0;
    color: var(--dark);
  }

  .navbar-dark .navbar-brand h1 {
    color: var(--primary);
  }
}

@media (min-width: 992px) {
  .navbar-dark {
    position: absolute !important;
    width: 100%;
    top: 0;
    left: 0;
    /* border-bottom: 1px solid rgba(256, 256, 256, .1); */
    z-index: -99;
  }

  .sticky-top.navbar-dark {
    position: fixed !important;
    background: #ffffff;
  }

  .navbar-dark .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: var(--primary);
    transition: 0.5s;
  }

  .navbar-dark .navbar-nav .nav-link:hover::before,
  .navbar-dark .navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
  }

  .navbar-dark .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }

  .sticky-top.navbar-dark .navbar-brand h1 {
    color: var(--primary);
  }
}

/*** Carousel ***/
.Banner__outer{
  -webkit-box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.75);
box-shadow: 0px 4px 5px 0px rgba(0,0,0,0.75);
}
.carousel-caption {
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 40px;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  height: 40px;
  top: 50%;
  margin: 0px 2%;
  border-radius: 100%;
}
.carousel-control-prev:hover,
.carousel-control-next:hover{
background: #b98b07;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 1rem;
  height: 1rem;
}

/*** Section Title ***/
.section-title::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 5px;
  left: 0;
  bottom: 0;
  background: var(--primary);
  border-radius: 2px;
}

.section-title.text-center::before {
  left: 50%;
  margin-left: -75px;
}
.text-blue{
  color:#06A3DA;
}
.section-title.section-title-sm::before {
  width: 90px;
  height: 3px;
}

.section-title::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 5px;
  bottom: 0px;
  background: #ffffff;
  -webkit-animation: section-title-run 5s infinite linear;
  animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
  width: 4px;
  height: 3px;
}

.section-title.text-center::after {
  -webkit-animation: section-title-run-center 5s infinite linear;
  animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
  -webkit-animation: section-title-run-sm 5s infinite linear;
  animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
  0% {
    left: 0;
  }
  50% {
    left: 145px;
  }
  100% {
    left: 0;
  }
}

@-webkit-keyframes section-title-run-center {
  0% {
    left: 50%;
    margin-left: -75px;
  }
  50% {
    left: 50%;
    margin-left: 45px;
  }
  100% {
    left: 50%;
    margin-left: -75px;
  }
}

@-webkit-keyframes section-title-run-sm {
  0% {
    left: 0;
  }
  50% {
    left: 85px;
  }
  100% {
    left: 0;
  }
}

/*** Service ***/
.service-item {
  position: relative;
  height: 300px;
  padding: 0 30px;
  transition: 0.5s;
}

.service-item .service-icon {
  margin-bottom: 30px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 2px;
  transform: rotate(-45deg);
}

.service-item .service-icon i {
  transform: rotate(45deg);
}

.service-item a.btn {
  position: absolute;
  width: 60px;
  bottom: -48px;
  left: 50%;
  margin-left: -30px;
  opacity: 0;
}

.service-item:hover a.btn {
  bottom: -24px;
  opacity: 1;
}

/*** Testimonial ***/
.testimonial-carousel .owl-dots {
  margin-top: 15px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: #dddddd;
  border-radius: 2px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  width: 30px;
  background: var(--primary);
}

.testimonial-carousel .owl-item.center {
  position: relative;
  z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: #ffffff !important;
  box-shadow: 0 0 30px #dddddd;
}

/*** Team ***/
.team-item {
  transition: 0.5s;
}

.team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.team-social a.btn {
  position: relative;
  margin: 0 3px;
  margin-top: 100px;
  opacity: 0;
}

.team-item:hover {
  box-shadow: 0 0 30px #dddddd;
}

.team-item:hover .team-social {
  background: rgba(9, 30, 62, 0.7);
}

.team-item:hover .team-social a.btn:first-child {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.15s;
}

.team-item .team-img img,
.blog-item .blog-img img {
  transition: 0.5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
  transform: scale(1.15);
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

.bg-header {
  background: linear-gradient(rgba(9, 30, 62, 0.7), rgba(9, 30, 62, 0.7)),
    url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.link-animated a {
  transition: 0.5s;
}
.link-animated a:hover {
  padding-left: 10px;
}

/*Custom styles*/
.top_rightList {
  display: flex;
  gap: 10px;
  margin-top: 0px;
  align-items: center;
  padding-left: 0px;
  margin-bottom: 0px;
}
.top_rightList li {
  list-style: none;
  text-decoration: none;
}
.top_rightList li a {
  font-size: 14px;
  color: #fff;
  list-style: none;
  text-decoration: none;
}
.top_rightList small a {
  color: #fff;
}
.top_rightList li img {
  width: 55px;
  display: block;
  margin: 0px auto;
  padding-bottom: 3px;
}
.top_rightList li:nth-child(1) a {
  font-size: 10px;
}
.top_rightList li:nth-child(2) a {
  font-size: 12px;
}
.top_rightList li:nth-child(3) a {
  font-size: 14px;
}
.top_rightList li:nth-child(4) {
  background: #000;
  width: 22px;
  height: 22px;
  text-align: center;
  line-height: 20px;
  font-weight: 600;
  font-size: 0.8em;
}
.top_rightList li:nth-child(5) {
  background: #fff;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-weight: 600;
  font-size: 0.8em;
}
.top_rightList li:nth-child(5) a {
  color: #000;
}
.custom__QRCode {
 font-size: 12px;
}
.custom__QRCode img {
  width: 29%;
}
.custom__QRCode p {
  font-size: 12px;
  padding-top: 5px;
}
.mainBanner__modifier img {
  height: 480px;
}
.display-5 {
  font-size: 2.5rem;
}
.Features__modifier i {
  font-size: 20px;
}
.Features__modifier .itemBox {
  width: 60px;
  height: 60px;
}
.Features__modifier--bigBox {
  height: 100px;
}
.container-fluid .Features--items,
.container-fluid .footer-about > div {
  background: #212529 !important;
}
.sticky-top {
  padding: 4px 10px !important;
}
.top__header {
  min-height: 40px;
}
.skeepTo a {
  color: #fff;
  font-size: 0.9em;
}
.top__header--inner {
  align-items: center;
  justify-content: space-between;
  line-height: 40px;
}
.copyright {
  background: #061429;
}
.copyright--box {
  height: 41px;
  font-size: 12px;
  padding-left: 10px;
}
.btn-primary {
  background: #104c84 !important;
  border-color: #083965 !important ;
}

.container-fluid .Features--items i,
.container-fluid .footer-about > div i {
  color: #104c84 !important;
}
.Features__modifier--bigBox .text-primary {
  color: #104c84 !important;
}
.Features__modifier--bigBox h1 {
  font-size: 1.5em;
}
	
.carousel-caption h5 {
  line-height: 1.7;
  margin-top: 7em;
}

/*new 29 Aug 2024*/
.Custom__dropdown select {
  width: 100%;
  height: 42px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0px 5px;
}
.custom__TableFirst table {
  border: 1px solid #ccc;
}
.custom__TableFirst thead tr th {
  background: #ccc;
  padding: 5px;
  font-size: 0.8em;
  font-weight: 600;
  color: #fff;
}
.custom__TableFirst thead tr td {
color: #000;
font-weight: 600;
text-transform: capitalize;
}
#goTop {
  display: none;
  position: fixed;
  bottom: 41px;
  right: 30px;
  z-index: 99;
  font-size: 15px;
  border: none;
  outline: none;
  background-color: #3b8cd8;
  color: white;
  cursor: pointer;
  padding: 7px 10px;
  border-radius: 4px;
}

#goTop:hover {
  background-color: #555;
}
.bg-lightBlud {
  background-color: var(--bg-lightBlue);
}
.logomain img {
  height: 54px;
  margin: 5px 0px;
}
.logomain--first img {
  height: 72px;
  margin: 5px 0px;
}
.logomain--inner img {
  background: #fff;
  padding: 2px 10px;
  border-radius: 4px;
  margin: 0px 0px 0px 10px;
  border: 1px solid #ccc;
}
ul.pagination {
  margin: 0px 0px 30px 0px;
}
.pagination li a:not(::nth-last-child()) {
  background: #104c84;
  padding: 0px 8px;
  margin: 0px 5px;
  color: #fff;
}
/*Citizen Login*/
#iframeContainer,
.backdrop {
  z-index: 9999 !important;
}
.inner-banner {
  min-height: 100px;
  margin-top: 83px;
  background: #e6e3e3 url(../img/inner-banner-bg.jpg) no-repeat;
  background-attachment: fixed;
  width: 100%;
  background-size: cover;
}
.inner-banner h1 {
  font-size: 2em;
  color: #fff;
}
.breadcrumb {
  display: flex;
  font-size: 13px;
  color: #fff;
}
.breadcrumb li {
  padding: 0px 6px;
  line-height: 1;
}
.breadcrumb li:first-child {
  padding-left: 0px;
}
.breadcrumb li:not(:last-child) {
  border-right: 1px solid #fff;
}
.breadcrumb a {
  color: #f9cd1c;
  font-weight: 600;
}
.sticky-top .logomain--first img,
.logomain--inner img {
  height: 45px;
}
.helpCenter {
  font-size: 0.9em;
  margin-left: 15px;
  margin-top: 1px;
}

/*Saurabh*/
li,
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sec-title {
  position: relative;
  padding-bottom: 40px;
}
.sec-title .title {
  position: relative;
  color: #00b8ca;
  font-size: 18px;
  font-weight: 700;
  padding-right: 50px;
  margin-bottom: 15px;
  display: inline-block;
  text-transform: capitalize;
}
.sec-title .title:before {
  position: absolute;
  content: "";
  right: 0;
  bottom: 7px;
  width: 40px;
  height: 1px;
  background-color: #bbb;
}
.sec-title h2 {
  position: relative;
  color: #252525;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5em;
  display: block;
}
.sec-title.light h2 {
  color: #fff;
}
.contact-page-section {
  position: relative;
  padding-top: 110px;
  padding-bottom: 110px;
}
.contact-page-section .inner-container {
  position: relative;
  z-index: 1;
  background-color: #104c84 !important;
  box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.1);
}
.contact-page-section .form-column {
  position: relative;
  padding: 0 0 0 15px;
}
.contact-page-section .form-column .inner-column {
  position: relative;
  padding: 60px 45px 30px;
  background-color: #fff;
}
.contact-page-section .info-column {
  position: relative;
}
.contact-page-section .info-column .inner-column {
  position: relative;
  padding: 60px 35px;
}
.contact-page-section .info-column h2 {
  position: relative;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4em;
  margin-bottom: 20px;
}
.contact-page-section .info-column .list-info {
  position: relative;
  margin-bottom: 60px;
}
.contact-page-section .info-column .list-info li {
  position: relative;
  margin-bottom: 10px;
  font-size: 18px;
  color: #fff;
  line-height: 1.8em;
  padding-left: 0px;
}
.contact-page-section .info-column .list-info li:last-child {
  margin-bottom: 0;
}
.contact-page-section .info-column .list-info li i {
  position: absolute;
  left: 0;
  top: 8px;
  color: #fff;
  font-size: 30px;
}
.contact-form {
  position: relative;
}
.contact-form .form-group {
  position: relative;
  margin-bottom: 20px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  color: #222;
  font-size: 14px;
  line-height: 38px;
  padding: 10px 30px;
  border: 1px solid #ddd;
  background-color: #fff;
  transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
  border-color: #00b8ca;
}
.contact-form textarea {
  height: 250px;
  resize: none;
}
.contact-form .theme-btn {
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
  text-transform: capitalize;
  padding: 16px 39px;
  border: 2px solid #104c84 !important;
  font-family: var(--font-primary);
  background: #104c84 !important;
  display: inline-block;
  position: relative;
  line-height: 24px;
  cursor: pointer;
  color: #fff;
}
.contact-form .theme-btn:hover {
  color: #fff;
  border-color: #00b8ca;
  background: 0 0;
}
.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error {
  border-color: red !important;
}
.contact-form label.error {
  display: block;
  line-height: 24px;
  padding: 5px 0 0;
  margin: 0;
  text-transform: uppercase;
  font-size: 12px;
  color: red;
  font-weight: 500;
}
.social-icon-four {
  position: relative;
}
.social-icon-four li {
  position: relative;
  margin-right: 18px;
  display: inline-block;
}
.social-icon-four li.follow {
  color: #fff;
  font-weight: 600;
  font-size: 24px;
  display: block;
  margin-bottom: 20px;
}
.social-icon-four li a {
  position: relative;
  font-size: 20px;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.social-icon-four li a:hover {
  color: #222;
}
.list-unstyled li{
  padding-bottom: 10px;
}
.inneractive .navbar-nav a {
  color: black !important;
}
.nav-item.nav-link.active,
.nav-item.nav-link:hover{
  color: var(--primary)!important;
}
.BannerCaption__modifier {
  text-align: left;
  /* height: 80vh; */
}
.BannerCaption__modifier h1{font-size: 2em; font-weight: 600;}
iframe.Google__Map{width: 100%; height: 250px;}
.logomain h4{font-size: 1.5em;color:var(--light); font-weight: 600;margin-bottom: 1px;}
@media (min-width: 1200px) and (max-width: 1399px) {
  .BannerCaption__modifier h1{font-size: 1.5em;}
  .h5, h5 {font-size: 1rem;}
  .navbar-dark .navbar-nav .nav-link {
    margin-left: 20px;
  }
  .logomain h4{font-size: 1.2em;}
  .BannerCaption__modifier {  
      /* height: 65vh; */
      padding-left: 2em;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .facts {margin-bottom: 40px!important;}
  .BannerCaption__modifier h1 {font-size: 1.5em;}
  .h5, h5 {font-size: 1rem;}
  .navbar-dark .navbar-nav .nav-link {margin-left: 14px!important;font-size: 0.7em!important;}
  .sticky-top .logomain--first img, .logomain--inner img {height: 38px;}
  .logomain--first img{height: 50px;}
  .navbar-dark .navbar-nav .nav-link {
    margin-left: 20px;
  }
  .logomain h4{font-size: 1.2em;}
  .facts {
    margin-top: -69px!important;
  }
  .BannerCaption__modifier {  
    /* height: 50vh; */
    padding-left: 2em;
}
}
/*Responsive*/
@media (min-width: 991.98px) {
  .facts {
    position: relative;
    margin-top: -150px;
    margin-bottom: 90px;
    z-index: 1;
  }
}
@media (min-width: 320px) and (max-width: 991px) {
.carousel-caption h5{margin-top: 0px!important;}
  #navbarCollapse{
    position: absolute;left:0px; top:64px;z-index: 9999;
    width: 100%;background: #000;padding: 10px 5px 20px 10px; height: 100vh;
  }
  .helpCenter {
    margin-top: 20px;
}
  #navbarCollapse a{color: #fff;}
  .logomain--first img{height: 38px!important;}
}
@media (max-width: 991.98px) {
  .h5, h5 {font-size: 1rem;}
  .BannerCaption__modifier{height: auto!important;}
  .sticky-top.navbar-dark {
    position: relative;
    background: #ffffff;
  }

  .navbar-dark .navbar-nav .nav-link,
  .navbar-dark .navbar-nav .nav-link.show,
  .sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 10px 0;
    color: var(--dark);
  }

  .navbar-dark .navbar-brand h1 {
    color: var(--primary);
  }
}

@media (min-width: 992px) {
  .navbar-dark {
    position: absolute !important;
    width: 100%;
    top: 0;
    left: 0;
    /* border-bottom: 1px solid rgba(256, 256, 256, .1); */
    z-index: -99;
  }

  .sticky-top.navbar-dark {
    position: fixed !important;
    background: #ffffff;
  }

  .navbar-dark .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: var(--primary);
    transition: 0.5s;
  }

  .navbar-dark .navbar-nav .nav-link:hover::before,
  .navbar-dark .navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
  }

  .navbar-dark .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }

  .sticky-top.navbar-dark .navbar-brand h1 {
    color: var(--primary);
  }
}
@media (max-width: 768px) {
  .section-title {margin-top: 20px;}
  .mainBanner__modifier img {
    height: 280px !important;
  }
}
@media (min-width: 992px) {
  .footer-about {
    width: 36% !important;
  }
}
@media (min-width: 767.98px) {
.section-title {margin-top: 20px;}
.footer-about {margin-bottom: -41px;}
}
@media (min-width: 430px) and (max-width: 576px){
  .carousel-item img {
    height: 225px !important;
  }
  .carousel-caption {
    position: static;
    margin-top: 200px;
}
  .carousel-control-prev, .carousel-control-next {
    top: 21%;
  }  
}
@media (min-width: 320px) and (max-width: 992px){
  .Print__modicier {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}
  .Print__modicier--items {
    flex: 1 0 11%;
}
  #SkiToMainContent span h4 {color: #104c84!important;}
  .logomain--inner {margin-top: 24px;margin-left: 14px;}
.logomain--inner img {height: 50px!important;}
  .logomain span {align-items: center !important;}
  #SkiToMainContent span h4 {color: #104c84!important;font-size: 22px;padding-left: 10px;}
  #SkiToMainContent span a {margin-right: 5px!important;}
}
@media (min-width: 320px) and (max-width: 430px){
  #SkiToMainContent span h4 {font-size: 14px;padding-left: 5px;}
  .carousel-control-prev, .carousel-control-next {
    top: 14%;
  }  
  .carousel-item img {
    height: 170px !important;
  }
  .carousel-caption {
    position: static;
    margin-top: 170px;
    object-fit: cover;
}
}
@media (min-width: 320px) and (max-width: 365px){
  .top__header--inner .top--left .skeepTo{display: flex; justify-content: center; flex-direction: column;}
}
@media (max-width: 576px) {
  .top__header--inner .top--left, .top__header--inner .top--right{text-align: center!important;}
  .navbar-dark .navbar-nav .nav-link{margin-left: 15px!important;}
  .Features__modifier{margin-top: 2em;}
  .footeLink{display: flex;flex-direction: column;gap: 10px;}
  .footeLink i{margin: 0px !important;margin-right: 3px !important;}
  .carousel-caption {object-fit: cover;}
  .searchBG__modifier .select{width: 18em!important;}
  .searchBG__modifier h4{font-size: 1em;}
  .searchBG__modifier, .searchBG__modifier:after{border-radius: 0px!important;}
  .copyright--box{padding-left: 0px;}
  .justify-content-sm-start {
    justify-content: flex-start !important;
}
  .carousel-caption {
    background: #4e4d4d;
  }  
  .sticky-top .logomain--first img, 
  .logomain--inner img {
    height: 27px;
}
  .carousel-caption h5 {
    font-size: 14px;
    font-weight: 500 !important;
  }

  .carousel-caption h1 {
    font-size: 1em!important;
    font-weight: 600 !important;
  }
  .logomain--inner img {
    margin: 0px 2px;
}
}
.sticky-top h4, .inneractive h4, .footeLink i{color: var(--primary);}
.footeLink i{font-size:0.8em;}
.GIG__logo{align-items: end!important;}
.searchBG__modifier{
  background: url(../img/search-bg.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
  padding-bottom: 17px;
  border-radius: 20px;
}
.searchBG__modifier:after {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  content: ".";
  top: 0px;
  left: 0px;
  border-radius: 20px;
}
.searchBG__modifier select {
  -webkit-appearance:none;
  -moz-appearance:none;
  -ms-appearance:none;
  appearance:none;
  outline:0;
  box-shadow:none;
  border:0!important;
  background: #fff;
  background-image: none;
  flex: 1;
  padding: 0 .5em;
  color:#000;
  cursor:pointer;
  font-size: 1em;
  font-family: 'Roboto', sans-serif !important;
}
.searchBG__modifier h4 {
  color: #fff;
  z-index: 999;
  position: absolute;
  display: flex;
  justify-content: center;
  top: 20px;
  width: 100%;
  left: 0;

}
.searchBG__modifier select::-ms-expand {
  display: none;
}
.searchBG__modifier .select {
  position: relative;
  display: flex;
  width: 20em;
  height: 3em;
  line-height: 3;
  background: #fff;
  overflow: hidden;
  border-radius: .25em;
  z-index: 999;
  margin-top: 120px;
}

.searchBG__modifier .select::after {
  content: '\25BC';
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 1em;
  background: #104c84;
  cursor:pointer;
  pointer-events:none;
  transition:.25s all ease;
  color: #fff;
}
.searchBG__modifier .select:hover::after {
  color: #23b499;
}
.footeLink a:hover, .copyright a:hover {
  color:#a8d5ff !important;
}
.Root__innerpage {
  min-height: calc(100vh - 450px);
}
/*Site Map*/
#sitemap2 ul, li {margin: 0px 0px;padding: 0;}
 #sitemap2 > li > ul {
	 margin-top: 1.5rem;
}
#sitemap2 ul {
	 list-style: none;
}
#sitemap ul li {
	 line-height: 1.5rem;
	 vertical-align: top;
	 position: relative;
   float: left;
   margin: 10px;
}
#sitemap2 ul li a {
	 text-decoration: none;
	 color: #fff;
	 display: inline-block;
    background: #104c84 ;
    margin: 10px 0px;
    padding: 5px 8px 5px 12px;
    /* min-width:150px; */
    border-radius:4px;
    width: auto;

}
#sitemap2 ul ul {
	 margin-left: 1.5rem;
	 margin-bottom: 1.5rem;
}
#sitemap2 ul ul li {
	 position: relative;
}
#sitemap2 ul ul li::before {
	 content: "";
	 display: inline-block;
	 width: 3rem;
	 height: 100%;
	 border-left: 1px #ccc solid;
	 position: absolute;
	 top: 0rem;
	 /* top: -0.75rem; */
}
#sitemap2 ul ul li::before {
	 content: "";
	 display: inline-block;
	 width: 3rem;
	 height: 1.7rem;
	 border-bottom: 1px #ccc solid;
	 position: absolute;
	 top:0rem;
}
#sitemap2 ul ul li a {
	 margin-left: 3.75rem;
}
