* {
  margin: 0;
}

:root {
  --yellow: #ffff00;
  --red: #c7222a;
  --sky-blue: #87ceeb;
}

.background-yellow {
  background-color: #ffff00;
}

.yellow-color {
  color: #ffff00;
}

.background-sky-blue {
  background-color: #87ceeb;
}

.sky-blue-color {
  color: #87ceeb;
}

.background-red {
  background-color: #c7222a;
}

.red-color {
  color: #c7222a;
}

a {
  text-decoration: none;
}
/*------------------ Header--------------------- */
.logo {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: logo-animation 3s ease-in-out infinite;

  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
}

.vertical-center-end {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: end;
}
.vertical-center-start {
  display: flex;
  align-items: center;
  height: 100%;
}
.logo h1{
  color: #14609b;
  font-size: 30px;
  /* font-family: Arial, sans-serif; */
}

@keyframes logo-animation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(0);
  }
}

.logo-style {
  color: #2196f3;
  font-style: italic;
  text-shadow: 2px 2px var(--red);
  font-family: system-ui;
  font-size: 35px !important;
  margin: 0;
}

@media only screen and (max-width: 800px) {
  .logo-style {
    font-size: 30px !important;
  }
}

@media only screen and (max-width: 424px) {
  .logo-style {
    font-size: 25px !important;
  }
}

/* Sticky Nav Bar */
.navigation {
  background-color: var(--red);
  color: #fff;
}
.navigation--sticky {
  position: fixed;
  border-bottom: 1px solid #e5e5e5;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100000;
  transition: all 0.4s ease;
}
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu {
  display: inline-block;
  vertical-align: top;
}
.menu::after {
  clear: both;
  content: "";
  display: table;
}
.menu > li {
  display: inline-block;
  margin: 10px 0px;
}
.menu > li > a {
  position: relative;
  z-index: 10;
  display: inline-block;
  font-family: "Archivo Narrow", sans-serif;
  padding: 5px 15px;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
}
.menu > li > a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 30px;
  width: 100%;
  background-color: var(--sky-blue);
  z-index: -1;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  border-radius: 30px;
  -webkit-transform: translate(-50%, -50%) scale(0.5, 0.5);
  -moz-transform: translate(-50%, -50%) scale(0.5, 0.5);
  -ms-transform: translate(-50%, -50%) scale(0.5, 0.5);
  -o-transform: translate(-50%, -50%) scale(0.5, 0.5);
  transform: translate(-50%, -50%) scale(0.5, 0.5);
  visibility: hidden;
  opacity: 0;
}
.menu > li > a:hover {
  color: var(--red);
}
.menu > li > a:hover:before {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1, 1);
  -moz-transform: translate(-50%, -50%) scale(1, 1);
  -ms-transform: translate(-50%, -50%) scale(1, 1);
  -o-transform: translate(-50%, -50%) scale(1, 1);
  transform: translate(-50%, -50%) scale(1, 1);
}
.menu > li.active > a {
  color: var(--red) !important;
}
.menu > li.active > a:before {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1, 1);
  -moz-transform: translate(-50%, -50%) scale(1, 1);
  -ms-transform: translate(-50%, -50%) scale(1, 1);
  -o-transform: translate(-50%, -50%) scale(1, 1);
  transform: translate(-50%, -50%) scale(1, 1);
}
.menu > li > .sub-menu {
  visibility: hidden;
  opacity: 0;
}
.menu > li.has-mega-menu {
  position: static;
}
.menu > li.dropdown {
  position: relative;
}
.menu > li.dropdown:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
}
.menu > li.dropdown:hover > .sub-menu li:nth-child(1) {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.menu > li.dropdown:hover > .sub-menu li:nth-child(2) {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.menu > li.dropdown:hover > .sub-menu li:nth-child(3) {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.menu > li.dropdown:hover > .sub-menu li:nth-child(4) {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.menu > li.dropdown:hover > .sub-menu li:nth-child(5) {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.menu > li.dropdown:hover > .sub-menu li:nth-child(6) {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.menu > li.dropdown:hover > .sub-menu li:nth-child(7) {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.menu > li.dropdown:hover > .sub-menu li:nth-child(8) {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.menu > li.dropdown:hover > .sub-menu li:nth-child(9) {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.menu > li.dropdown:hover > .sub-menu li:nth-child(10) {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.menu > li.dropdown:hover > .sub-menu li:nth-child(11) {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.menu > li.dropdown:hover > .sub-menu li:nth-child(12) {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.menu > li.dropdown:hover > .sub-menu li:nth-child(13) {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.menu > li.dropdown:hover > .sub-menu li:nth-child(14) {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.menu > li.dropdown:hover > .sub-menu li:nth-child(15) {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.menu > li.current-menu-item > a {
  color: #fff;
}
.menu > li.current-menu-item > a:before {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1, 1);
  -moz-transform: translate(-50%, -50%) scale(1, 1);
  -ms-transform: translate(-50%, -50%) scale(1, 1);
  -o-transform: translate(-50%, -50%) scale(1, 1);
  transform: translate(-50%, -50%) scale(1, 1);
}
.menu > li:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.menu > li:hover .mega-menu {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}
.sub-menu {
  min-width: 250px;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  border-top: 1px solid #eee;
  -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform: translateY(-30px);
  -moz-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  -o-transform: translateY(-30px);
  transform: translateY(-30px);
}
.sub-menu > li {
  display: block;
  margin-right: 0;
  width: 100%;
  text-align: left;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.sub-menu > li > a {
  position: relative;
  z-index: 10;
  font-family: "Archivo Narrow", sans-serif;
  display: block;
  padding: 10px 15px;
  font-size: 13px;
  color: #1d1d1d;
  font-weight: 600;
  text-transform: uppercase;
  background-color: #fff;
  border-bottom: 1px solid #eee;
  -webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.sub-menu > li > a:hover {
  color: #fff;
  padding-left: 20px;
  background-color: #0d204d;
}
.sub-menu > li:last-child > a {
  border-bottom: none;
}
.sub-menu > li.menu-item-has-children {
  position: relative;
}
.sub-menu > li.menu-item-has-children > .sub-menu {
  display: block;
  position: absolute;
  top: 0;
  left: auto;
  right: 100%;
  -webkit-transform: translateY(30px);
  -moz-transform: translateY(30px);
  -ms-transform: translateY(30px);
  -o-transform: translateY(30px);
  transform: translateY(30px);
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
}
.sub-menu > li.menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.header--sidebar .sub-menu {
  min-width: 0;
}

.mega-menu {
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 10000;
  background-color: #fff;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: translateY(-30px);
  -moz-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  -o-transform: translateY(-30px);
  transform: translateY(-30px);
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  visibility: hidden;
  opacity: 0;
  border-top: 1px solid #d8d8d8;
}
.mega-menu .mega-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 10px 30px;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row nowrap;
  -moz-flex-flow: row nowrap;
  flex-flow: row nowrap;
  text-align: left;
}
.mega-menu .mega-heading {
  margin-bottom: 15px;
  font-family: "Archivo Narrow", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8em;
  color: #1d1d1d;
  text-transform: uppercase;
}
.mega-menu .mega-column {
  width: 20%;
  padding: 0 30px;
  border-right: 1px solid #d8d8d8;
}
.mega-menu .mega-column:last-child {
  border-right: 0;
}
.mega-menu .mega-item a {
  display: block;
  padding: 5px 0;
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #1d1d1d;
  font-weight: 400;
  transition: all 0.3s ease;
}
.mega-menu .mega-item a:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  content: "";
  width: 0;
  height: 1px;
  background-color: #0d204d;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.mega-menu .mega-item a:hover {
  padding-left: 25px;
  color: #0d204d;
}
.mega-menu .mega-item a:hover:before {
  width: 20px;
}
.mega-menu .mega-item.mega-features li {
  margin-bottom: 0;
}
.mega-menu .mega-item.mega-features a {
  font-family: "Archivo Narrow", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8em;
  color: #1d1d1d;
  text-transform: uppercase;
}
.mega-menu .mega-item.mega-features a:hover {
  color: #0d204d;
}

.menu-toggle {
  position: relative;
  top: 4px;
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-left: 20px;
  overflow: hidden;
  background-color: #607d8b;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}
.menu-toggle span,
.menu-toggle:before,
.menu-toggle:after {
  position: absolute;
  right: 10px;
  height: 2px;
  width: 20px;
  background-color: #fff;
  z-index: 100;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.menu-toggle span {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.menu-toggle:before,
.menu-toggle:after {
  content: "";
}
.menu-toggle:before {
  top: 12px;
}
.menu-toggle:after {
  bottom: 12px;
}
.menu-toggle:hover {
  cursor: pointer;
}
/* .menu-toggle.active {
  background-color: #fc354c;
} */
.menu-toggle.active span {
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  visibility: hidden;
  opacity: 0;
}
.menu-toggle.active:before,
.menu-toggle.active:after {
  top: 50%;
  bottom: auto;
  width: 20px;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.menu-toggle.active:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menu-toggle.active:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* Sticky Nav Bar */
.navigation--sticky {
  position: fixed;
  border-bottom: 1px solid #e5e5e5;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100000;
  transition: all 0.4s ease;
}

.header--sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 240px;
  height: 100%;
  z-index: 10000;
  background-color: #f9f9f9;
  overflow-y: auto;
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header--sidebar.active {
  -webkit-transform: translateX(0%);
  -moz-transform: translateX(0%);
  -ms-transform: translateX(0%);
  -o-transform: translateX(0%);
  transform: translateX(0%);
}

.menu--active {
  -webkit-transform: translateX(-240px);
  -moz-transform: translateX(-240px);
  -ms-transform: translateX(-240px);
  -o-transform: translateX(-240px);
  transform: translateX(-240px);
}
.menu--active .header--sidebar {
  overflow-y: auto;
}
.menu--active.navigation--pin {
  -webkit-transform: translate(-240px, 0);
  -moz-transform: translate(-240px, 0);
  -ms-transform: translate(-240px, 0);
  -o-transform: translate(-240px, 0);
  transform: translate(-240px, 0);
}
.menu--active.navigation--unpin {
  -webkit-transform: translate(-240px, -100%);
  -moz-transform: translate(-240px, -100%);
  -ms-transform: translate(-240px, -100%);
  -o-transform: translate(-240px, -100%);
  transform: translate(-240px, -100%);
}

.header--sidebar .menu {
  display: block;
}
.header--sidebar .menu > li {
  display: block;
  float: none;
  width: 100%;
  border-bottom: 1px solid #eee;
}
.header--sidebar .menu > li > a {
  display: block;
  line-height: 30px;
  font-weight: 600;
  font-size: 13px;
  color: #000;
}
.header--sidebar .menu > li > a:before {
  display: none;
}
.header--sidebar .menu > li:hover > a,
.header--sidebar .menu > li.current > a {
  background-color: #e5e5e5;
  color: #303030;
}
.header--sidebar .menu > li.menu-item-has-children > a:after {
  content: "\25bc";
  /* font-family: FontAwesome; */
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 10px;
}
.header--sidebar .menu .sub-menu {
  padding: 0;
  position: relative;
  -webkit-transition: all 0s ease;
  -moz-transition: all 0s ease;
  transition: all 0s ease;
}
.header--sidebar .menu .sub-menu > li {
  border-bottom: 1px solid #eee;
}
.header--sidebar .menu .sub-menu > li > a {
  padding: 10px 15px;
}
.header--sidebar .menu .sub-menu > li:last-child {
  border-bottom: 0;
}
.header--sidebar .menu .sub-menu > li.menu-item-has-children > .sub-menu {
  position: relative;
  top: 0;
  left: 0;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.header--sidebar .menu .sub-menu > li.menu-item-has-children > .sub-menu li a {
  padding-left: 30px;
}

.header--sidebar .header {
  position: relative;
}
.header--sidebar .header .navigation {
  padding: 0;
  min-height: 50px;
  background-color: #fff;
}
.header--sidebar .header .menu-toggle {
  display: inline-block;
  float: right;
}
.border-line {
  border-top: 1px solid #cddcff;
}
/*------------------ Header End --------------------- */

/* ----------------- Slider Section Start ----------- */
@media (max-width: 500px) {
  #textCarousel .carousel-control-prev {
    display: none !important;
  }
  #textCarousel .carousel-control-next {
    display: none !important;
  }
  #mainCarousel .carousel-control-prev {
    display: none !important;
  }
  #mainCarousel .carousel-control-next {
    display: none !important;
  }
}
#mainCarousel .carousel-item img {
  min-height: 175px;
}
/* ----------------- Slider Section End ------------- */

/* ----------------------About Us--------------------- */
/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: var(--sky-blue);
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: var(--yellow);
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: var(--yellow);
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 12px;
  border: 1px solid #ccc;
  border-top: none;
}
/* -------------------------About Us End --------------------*/

/* ------------------ Features Start -------------- */
body {
  overflow-x: hidden;
  width: 100%;
}

.listar-feature-item-wrapper {
  height: 100%;
  position: relative;
  align-self: flex-start;
}

.listar-feature-item {
  height: calc(100% - 20px);
  background-color: #c7332a;
}
.listar-image-icon {
  font-size: 35px;
  color: var(--red);
  margin-top: 10px;
}
.listar-feature-item.listar-feature-has-link
  ~ .listar-feature-fix-bottom-padding.listar-fix-feature-arrow-button-height {
  position: relative;
  display: block;
  width: 100%;
  height: 30px;
}
.listar-feature-fix-top-padding{
  margin-top: 80px;
}
.listar-feature-item a {
  position: absolute;
  top: -12px;
  left: 15px;
  width: calc(100% - 30px);
  height: calc(100% + 4px);
  border-radius: 1000px;
  z-index: 10;
}

.listar-feature-with-image .listar-feature-item a:before {
  content: "";
  position: absolute;
  top: -74px;
  left: 50%;
  margin-left: -74px;
  width: 148px;
  height: 148px;
  border-radius: 1000px;
  z-index: 10;
}

.listar-feature-item a:after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  margin-left: -25px;
  width: 50px;
  height: 50px;
  border-radius: 1000px;
  z-index: 10;
  animation: ripple 0.7s linear infinite;
  box-shadow: 5px 5px 10px rgba(163, 177, 198, 0.6),
    -5px -5px 10px rgba(255, 255, 255, 0.5);
}

@keyframes ripple {
  0% {
    box-shadow: 0 0 0 0 rgba(163, 177, 198, 0.3),
      0 0 0 0.5em rgba(163, 177, 198, 0.3),
      0 0 0 1.5em rgba(163, 177, 198, 0.03),
      0 0 0 2.5em rgba(163, 177, 198, 0.01);
  }
  100% {
    box-shadow: 0 0 0 0.5em rgba(163, 177, 198, 0.3),
      0 0 0 1.5em rgba(163, 177, 198, 0.03),
      0 0 0 2.5em rgba(163, 177, 198, 0.03), 0 0 0 4em rgba(163, 177, 198, 0.01);
  }
}

.listar-feature-item .listar-feature-item-inner {
  padding: 50px 30px;
  border-radius: 6px;
  z-index: 5;
  position: relative;
  height: 100%;
}

.listar-feature-item .listar-feature-item-inner {
  padding-top: 60px;
  padding-bottom: 60px;
}

.listar-feature-item .listar-feature-item-inner:before {
  border: 0;
  box-shadow: 120px 0px 150px rgba(80, 80, 80, 0.15),
    10px 0px 10px rgba(80, 80, 80, 0.02);
  border-radius: 1000px;
  background: rgba(255, 255, 255, 0);
  background: -moz-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgb(243 137 132) 100%
  );
  background: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgb(243 137 132) 100%
  );
  background: -o-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgb(243 137 132) 100%
  );
  background: -ms-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgb(243 137 132) 100%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgb(243 137 132) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff',endColorstr='#ffffff',GradientType=1);
}

.listar-feature-item .listar-feature-item-inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.listar-feature-right-border {
  position: absolute;
  /* width: calc(100% + 24px) !important; */
  height: calc(100% + 24px) !important;
  top: -12px;
  left: 50%;
  overflow: hidden;
}

.listar-feature-items {
  text-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.listar-feature-right-border:before,
.listar-hovering-features
  .listar-feature-item
  a:hover
  ~ .listar-feature-item-inner
  .listar-feature-right-border:before {
  border: 11px solid #2f53bf;
}

.listar-feature-right-border:before,
.listar-hovering-features
  .listar-feature-item
  a:hover
  ~ .listar-feature-item-inner
  .listar-feature-right-border:before,
.listar-hovering-features-grey
  .listar-feature-item
  a:hover
  ~ .listar-feature-item-inner
  .listar-feature-right-border:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 11px solid var(--sky-blue);
  border-radius: 800px;
  left: -50%;
}

.listar-feature-item .listar-feature-block-content-wrapper {
  position: relative;
  display: block;
  text-decoration: none;
  margin: -30px;
  padding: 30px;
  height: calc(100% + 100px);
}

.listar-features-design-2 .listar-feature-item-wrapper {
  margin-bottom: 120px;
  padding-left: 27px;
  padding-right: 27px;
}

.listar-feature-icon-wrapper {
  animation: ripple 0.7s linear infinite;
  width: 148px;
  height: 148px;
  line-height: 148px;
  border-radius: 500px;
  position: relative;
  background-color: var(--sky-blue);
  box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.06);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  left: 50%;
  vertical-align: middle;
  margin-left: -74px;
  top: -66px;
  margin-top: -74px;
}

.listar-feature-icon-inner {
  width: 120px;
  height: 120px;
  line-height: 120px;
  border-radius: 500px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 10px 10px 20px rgb(14 81 109);
  background: #fff;
}

.listar-feature-icon-inner div {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  display: inline-block;
  position: relative;
  width: 120px;
  height: 120px;
  line-height: 120px;
  text-align: left;
}

.listar-feature-icon-inner img {
  position: relative;
  margin: 0 auto;
  vertical-align: middle;
  display: inline-block;
  width: auto;
  left: 50%;
  -webkit-transform: translate(-50%);
  -moz-transform: translate(-50%);
  -ms-transform: translate(-50%);
  -o-transform: translate(-50%);
  transform: translate(-50%);
  height: 55px;
}

.listar-feature-item img,
.listar-feature-item i {
  position: relative;
  display: inline-block;
  border-bottom: 0;
  font-size: 40px;
  top: 0;
  padding: 0;
  color: #258bd5;
}

.listar-feature-with-image .listar-feature-content-wrapper {
  top: 0;
}
.listar-feature-content-wrapper {
  position: relative;
  margin-top: -15.5px;
}

.listar-feature-item .listar-feature-item-title {
  padding-top: 0;
  margin: 0 0 30px;
  text-align: center;
  line-height: 1.5;
}

.listar-feature-item
  .listar-feature-item-title.listar-feature-counter-added
  > span {
  margin-left: 25px;
  border-radius: 0 50px 50px 0;
}
.listar-feature-item
  .listar-feature-item-title.listar-feature-counter-added
  > span
  > span {
  animation: ripple 0.7s linear infinite;
}

.listar-feature-item .listar-feature-item-title > span {
  box-shadow: 15px 20px 30px rgba(80, 80, 80, 0.12),
    5px 0px 40px rgba(80, 80, 80, 0.1);
  padding: 10px 12px;
  display: inline-block;
  position: relative;
  background-color: #fff;
}

.listar-feature-item .listar-feature-item-title > span span {
  box-shadow: 15px 15px 30px rgba(80, 80, 80, 0.2),
    5px 0px 80px rgba(80, 80, 80, 0.15);
  padding: 10px 0;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 30px;
  white-space: nowrap;
  position: absolute;
  top: -5px;
  left: -40px;
  border-radius: 50px;
  background-color: #fff;
}

.listar-feature-item .listar-feature-item-title span {
  display: inline-block;
  font-size: 14px;
  line-height: normal;
  font-weight: 400;
  text-shadow: none;
  border-radius: 50px;
  color: #252525;
  font-size: 18px;
}

.listar-feature-item-excerpt {
  padding: 0 20px;
}

.listar-feature-item-excerpt {
  color: #ffeb3b;
  position: relative;
  top: 0;
  font-weight: 500;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.pset {
  padding-top: 100px;
}

.listar-map-button-text span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 15px;
  height: 44px;
  line-height: 1.6;
  padding: 10px 25px;
  box-shadow: 0 0 31px rgba(0, 0, 0, 0.65), 0 0 4px rgba(0, 0, 0, 0.06);
  border-radius: 50px;
  background-color: rgba(35, 40, 45, 0.9);
  color: #fff;
  text-shadow: 1px 1px rgba(0, 0, 0, 0.2);
}

.listar-map-button-text span {
  background-color: #fff;
  color: #252525;
  text-shadow: none;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.listar-map-button-text span:after {
  border: 12px solid #fff;
}

.listar-map-button-text span:after {
  content: "";
  position: absolute;
  top: -14px;
  left: -14px;
  width: calc(100% + 28px);
  height: calc(100% + 28px);
  border-radius: 36px;
}

.listar-map-button:hover .listar-map-button-text span {
  padding: 10px 43px 10px 51px;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}

.listar-feature-with-image .listar-feature-item a:before {
  content: "";
  position: absolute;
  top: -74px;
  left: 50%;
  margin-left: -74px;
  width: 148px;
  height: 148px;
  border-radius: 1000px;
  z-index: 10;
}

/* ------------------ Features End -------------- */

/* Footer */
.new_footer_area {
  background: var(--sky-blue);
}

.new_footer_top {
  padding: 20px 0px 40px;
  position: relative;
  overflow-x: hidden;
}
.dream_footer_top {
  padding: 20px 0px 240px;
  position: relative;
  overflow-x: hidden;
}
.new_footer_area .footer_bottom {
  padding-top: 5px;
  padding-bottom: 10px;
}
.footer_bottom {
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  color: #7f88a6;
}
.new_footer_top .company_widget p {
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  color: #6a7695;
  margin-bottom: 20px;
}
.new_footer_top .company_widget .f_subscribe_two .btn_get {
  border-width: 1px;
  margin-top: 20px;
}
.btn_get_two:hover {
  background: transparent;
  color: #5e2ced;
}
.btn_get:hover {
  color: #fff;
  background: var(--sky-blue);
  border-color: var(--sky-blue);
  -webkit-box-shadow: none;
  box-shadow: none;
}
a:hover,
a:focus,
.btn:hover,
.btn:focus,
button:hover,
button:focus {
  text-decoration: none;
  outline: none;
}

.new_footer_top .f_widget.about-widget .f_list li a:hover {
  color: var(--sky-blue);
}
.new_footer_top .f_widget.about-widget .f_list li {
  margin-bottom: 11px;
}
.f_widget.about-widget .f_list li:last-child {
  margin-bottom: 0px;
}
.f_widget.about-widget .f_list li {
  margin-bottom: 15px;
}
.f_widget.about-widget .f_list {
  margin-bottom: 0px;
}
.new_footer_top .f_social_icon {
  font-size: 30px;
}
.new_footer_top .f_social_icon a {
  width: 44px;
  height: 44px;
  font-size: 30px;
  line-height: 43px;
  background: transparent;
  border: 1px solid #e2e2eb;
  font-size: 24px;
}
.f_social_icon a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 14px;
  line-height: 45px;
  color: #858da8;
  display: inline-block;
  background: #ebeef5;
  text-align: center;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.ti-facebook:before {
  content: "\e741";
}
.ti-twitter-alt:before {
  content: "\e74b";
}
.ti-vimeo-alt:before {
  content: "\e74a";
}
.ti-pinterest:before {
  content: "\e731";
}

.btn_get_two {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: var(--yellow);
  border-color: var(--yellow);
  color: #000;
}

.btn_get_two:hover {
  background: var(--red);
  color: #fff !important;
}

.new_footer_top .f_social_icon a:hover {
  background: #5e2ced;
  border-color: #5e2ced;
  color: white;
}
.new_footer_top .f_social_icon a + a {
  margin-left: 4px;
}
.new_footer_top .f-title {
  margin-bottom: 30px;
  color: var(--red);
}
.f_600 {
  font-weight: 600;
}
.f_size_18 {
  font-size: 18px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #4b505e;
}
.new_footer_top .f_widget.about-widget .f_list li a {
  color: #6a7695;
}

.dream_footer_top .footer_bg {
  position: absolute;
  bottom: 0;
  background: url("../images/footer/footer_bg.png") no-repeat scroll 0;
  width: 100%;
  height: 266px;
}

.dream_footer_top .footer_bg .footer_bg_one {
  background: url("../images/footer/volks.gif") no-repeat center center;
  width: 300px;
  height: 105px;
  background-size: 100%;
  position: absolute;
  bottom: 0;
  left: 30%;
  -webkit-animation: myfirst 22s linear infinite;
  animation: myfirst 22s linear infinite;
}

.dream_footer_top .footer_bg .footer_bg_two {
  background: url("../images/footer/cyclist.gif") no-repeat center center;
  width: 88px;
  height: 100px;
  background-size: 100%;
  bottom: 0;
  left: 38%;
  position: absolute;
  -webkit-animation: myfirst 30s linear infinite;
  animation: myfirst 30s linear infinite;
}


@media only screen and (max-width: 800px) {
  .dream_footer_top .footer_bg .footer_bg_one {
    width: 200px !important;
    -webkit-animation: myfirst 15s linear infinite;
    animation: myfirst 15s linear infinite;
  } 
  .dream_footer_top .footer_bg .footer_bg_two {
    width: 64px;
    -webkit-animation: myfirst 18s linear infinite;
    animation: myfirst 18s linear infinite;
  }
}

@media only screen and (max-width: 500px) {
  .dream_footer_top .footer_bg .footer_bg_one {
    width: 200px !important;
    -webkit-animation: myfirst 10s linear infinite;
    animation: myfirst 10s linear infinite;
  } 
  .dream_footer_top .footer_bg .footer_bg_two {
    width: 64px;
    -webkit-animation: myfirst 13s linear infinite;
    animation: myfirst 13s linear infinite;
  }
}


@-moz-keyframes myfirst {
  0% {
    left: -25%;
  }
  100% {
    left: 100%;
  }
}

@-webkit-keyframes myfirst {
  0% {
    left: -25%;
  }
  100% {
    left: 100%;
  }
}

@keyframes myfirst {
  0% {
    left: -25%;
  }
  100% {
    left: 100%;
  }
}


/*************footer End*****************/

/* Home Loan Start */
.home_loan_bg {
  background: url("../images/about_us/about_us_bg.jpg") !important;
}

.home_loan_box_shadow {
  box-shadow: 0 0.5em 0.35em #0003, 0 0.8em 1.4em #0003;
}

.tab-wrapper {
  background-color: #fff;
  margin-bottom: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.tab-header {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
  overflow: scroll;
}

.tab-header .tab-btn {
  padding: 15px;
  border: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  z-index: 1;
  /* border: 1px solid #6a00fb; */
  background-color: transparent;
  transition: all 0.3s ease;
}
.tab-header .tab-btn:focus {
  outline: none;
}
.tab-header .tab-btn i {
  margin-right: 5px;
  font-size: 10px;
}
.tab-header .tab-btn:hover,
.tab-header .tab-btn.active {
  color: var(--red);
}

.tab-header .underline {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  width: 0;
  transform-origin: left;
  background-color: var(--red);
  transition: all 0.3s ease;
}

.tab-body {
  display: flex;
  overflow: hidden;
}
.tab-body .tab-content {
  min-width: 100%;
  padding: 20px;
  font-size: 12px;
  transition: all 0.3s;
  text-align: justify;
}
.tab-wrapper[rounded] {
  border-radius: 10px;
}
.tab-header[full-width] .tab-btn {
  /* flex: 1; */
  text-align: center;
}
.tab-header[background] {
  background-color: #6a00fb;
}
.tab-header[background] .tab-btn {
  color: #fff;
}
.tab-header[background] .tab-btn.active {
  color: #6a00fb;
}
.tab-header[background] .tab-btn.active:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #fff;
}
.tab-header[background] .underline {
  background-color: #fff;
  height: 100%;
  bottom: 0;
}
.tab-header[border] .tab-btn {
  border: 1px solid #e5e5e5;
}
.tab-header[border] .tab-btn.active {
  border: 1px solid var(--yellow);
}
.tab-header[border] .tab-btn.active {
  color: #fff;
}
.tab-header[border] .underline {
  height: 100%;
  bottom: 0;
}
.tab_icon{
  font-size: 20px;
}
/* Home Loan End */

/* Apply Online */
.radio-with-Icon {
  display: block;
}
.radio-with-Icon .radioOption-Item {
  display: inline-block;
  width: 110px;
  height: 100px;
  box-sizing: border-box;
  margin: 0px 10px 0px 0px;
  border: none;
}
.radio-with-Icon .radioOption-Item label {
  display: block;
  height: 100%;
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #de1831;
  color: #de1831;
  cursor: pointer;
  opacity: .8;
  transition: none;
  font-size: 13px;
  padding-top: 25px;
  text-align: center;
  margin: 0 !important;
}
.radio-with-Icon .radioOption-Item label:hover, .radio-with-Icon .radioOption-Item label:focus, .radio-with-Icon .radioOption-Item label:active {
  opacity: .5;
  background-color: #de1831;
  color: #fff;
  margin: 0 !important;
}
.radio-with-Icon .radioOption-Item label::after, .radio-with-Icon .radioOption-Item label:after, .radio-with-Icon .radioOption-Item label::before, .radio-with-Icon .radioOption-Item label:before {
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
}
.radio-with-Icon .radioOption-Item label .radio-icon {
  font-size: 50px;
}
.radio-with-Icon p.radioOption-Item input[type="radio"] {
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
}
.radio-with-Icon p.radioOption-Item input[type="radio"]:active ~ label {
  opacity: 1;
}
.radio-with-Icon p.radioOption-Item input[type="radio"]:checked ~ label {
  opacity: 1;
  border: none;
  background-color: #de1831;
  color: #fff;
}
.radio-with-Icon p.radioOption-Item input[type="radio"]:hover, div.radio-with-Icon p.radioOption-Item input[type="radio"]:focus, div.radio-with-Icon p.radioOption-Item input[type="radio"]:active {
  margin: 0 !important;
}
.radio-with-Icon p.radioOption-Item input[type="radio"] + label:before, div.radio-with-Icon p.radioOption-Item input[type="radio"] + label:after {
  margin: 0 !important;
}

.text-bg-red{
  background: #c7332a;
  padding: 4px 10px;
  color: white !important;
}