@font-face {
  font-family: 'Gotham Book';
  src: url('./fonts/gotham-book.woff2') format('woff2'),
      url('./fonts/gotham-book.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'gothamblack';
  src: url('./fonts/gotham-black.woff2') format('woff2'),
      url('./fonts/gotham-black.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
a{
  text-decoration: none !important;
}
body {
  font-family: 'Gotham Book';
  color: #005F83;
  max-width: 1920px;
  margin: auto;
}
.info-text-black{
  color: #000;
}
.info-text-white{
  color: #fff;
}
.bg-white-transparency{
  background-color: #ffffffbd !important;
}
.info {
  padding: 50px 0;
}
.info-fw-bold {
  font-family: 'gothamblack';
}
.info-bg-brand{
  background-color: #005F83 !important;
}
.info-bg-light{
  background-color: #F3F7F9 !important;
}
.text-brand {
  color: #005F83;
}
.text-brand-light {
  color: #41B6E9;
}
.text-brand-yellow {
  color: #FFE102;
}
.text-light{
  color: #D9D9D9 !important;
}
.text-gradient {
  background: linear-gradient(90.4deg, #00BFFF 0.77%, #56DB46 100.09%);
  -webkit-text-fill-color: transparent;
  background-size: 100%;
  -webkit-background-clip: text;
  background-clip: text;
}
.info-gradient-btn {
  background: linear-gradient(90.4deg, #00BFFF 0.77%, #56DB46 100.09%);
  color: #fff !important;
  border: 0;
  transition: .3s ease-in-out;
}
.info-gradient-bg {
  background: linear-gradient(99.4deg, #00BFFF 7.17%, #45DB33 89.85%);
}
.info-btn-brand{
  background: #005F83;
  color: #fff !important;
  border: 1px solid #005F83 !important;
  transition: 0.3s ease;
}
.info-btn-brand:hover{
  background: #fff;
  color: #005F83 !important;
  border: 1px solid #005F83 !important;
}
.info-btn-outline{
  background: #ffffff00;
  color: #fff !important;
  border: 1px solid #fff !important;
}
.info-btn-outline:hover{
  background: #fff;
  color: #005F83 !important;
  border: 1px solid #005F83 !important;
}
.info-btn-white{
  background: #fff;
  color: #005F83 !important;
  border: 1px solid #005F83 !important;
}
.info-btn-white:hover{
  background: #005F83;
  color: #fff !important;
  border: 1px solid #005F83 !important;
}
.info-tab-bg .info-btn-white:hover{
  border: 1px solid #ffffff !important;
}
.info-btn-quote {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 50px;
  color: #fff;
  background-color: rgba(255, 255, 255, 0);
  z-index: 1;
}
.info-btn-quote:hover {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 50px;
  color: #005373;
  background: #fff;
  z-index: 1;
}

.info-btn-quote::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px; /* Border thickness */
  border-radius: 50px;
  background: linear-gradient(180deg, #00BFFF 0%, #45DB33 100%);
  -webkit-mask:
    linear-gradient(white 0 0) content-box,
    linear-gradient(white 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}
.info-btn-quote:hover::before{
  padding: 0px;
}

.hero-bg{
  position: relative;
  background: url("../img/hero-banner-bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}
.info-bg-overlay{
  position: relative;
}
.info-bg-overlay::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, #000000 89.49%);
  left: 0;
  top: 0;
}
.info-media-bg{
  background: #F3F7F9;
}
.info-card{
  padding: 20px;
  background: #FFFFFF;
  transition: 0.3s ease-in-out;
}
.info-card:hover{
  box-shadow: 0px 0px 10px 0px #0000001A;
}

.nav-link{
  color: #57B3D1;
  border: 0 !important;
  border-bottom: 2px solid #ffffff00 !important;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active{
  color: #fff;
  background-color: #005F83;
  border-bottom: 2px solid #FFF !important;
}
.nav-link:hover{
  color: #ffffff;
  border-bottom: 2px solid #FFF !important;
}
.info-business-card{
  padding: 10px;
  box-shadow: 0px 0px 10px 0px #00000012;
  border-radius: 10px;
}



/* Horizontal Accordion Start Here */
.horizontal-accordion {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
}

.info-expand {
  height: 150px;
  width: 100%;
  box-sizing: border-box;
  padding: 0;
  overflow: hidden;
  float: left;
  display: flex;
  align-items: center;
  transition: height 0.6s ease;
  border-radius: 3px;
  color: black;
  background: #fff;
  border: 1px solid #E5F3F8;
  position: relative;
}

/* When hovered (desktop) or active (mobile or default) */
.info-expand:hover,
.info-expand.active {
  height: 400px;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background: #005F83;
}

/* Hide the side text when hovered or active */
.info-expand:hover .info-side-text,
.info-expand.active .info-side-text {
  display: none !important;
}

/* Image background overlay on hover or active */
/* .info-expand:hover::before,
.info-expand.active::before {
  content: '';
  position: absolute;
  background: #00000099;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
} */

/* Inner card appearance transition */
.info-accordion-card {
  background: transparent;
  position: relative;
  opacity: 0;
  transition: opacity 0.5s ease-in;
  margin: 16px;
}

.info-accordion-card::before {
  position: absolute;
  content: '';
}

/* Show card when hovered or active */
.info-expand:hover .info-accordion-card,
.info-expand.active .info-accordion-card {
  opacity: 1;
  transition-delay: 0.4s;
}

/* Card wrapper positioning */
.info-accordion-card-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  right: 0;
  margin: auto;
}

/* Centered heading */
.info-side-text {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

/* Image background style (default fallback) */
.info-bg-img {
  position: relative;
  z-index: 0;
}

/* Icon container */
.info-glass-bg {
  /* width: fit-content;
  padding: 25px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%); */
  margin-bottom: 20px;
}
/* .vertical-bg-01{
  background: url('../img/accordion-img-01.webp');
} */
/* .info-expand:hover.vertical-bg-01,
.info-expand.active.vertical-bg-01{
  background: url('../img/accordion-img-01.webp');
}
.info-expand:hover.vertical-bg-02,
.info-expand.active.vertical-bg-02{
  background: url('../img/accordion-img-02.webp');
}
.info-expand:hover.vertical-bg-03,
.info-expand.active.vertical-bg-03{
  background: url('../img/accordion-img-03.webp');
}
.info-expand:hover.vertical-bg-04,
.info-expand.active.vertical-bg-04{
  background: url('../img/accordion-img-04.webp');
}
.info-expand:hover.vertical-bg-05,
.info-expand.active.vertical-bg-05{
  background: url('../img/accordion-img-05.webp');
}
.info-expand:hover.vertical-bg-06,
.info-expand.active.vertical-bg-06{
  background: url('../img/accordion-img-06.webp');
} */


/* Mobile behavior */
@media (max-width: 991px) {
  .info-hide .info-accordion-card {
    transition: none;
  }
  .info-expand {
    cursor: pointer;
  }
}

/* Horizontal Accordion End Here */


.info-vision-bg{
  background: url('../img/vision-bg.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.info-blue-overlay{
  position: relative;
}
.info-blue-overlay::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 95, 131, 0.6) 0%, #005F83 83.47%);
  left: 0;
  top: 0;
}
.info-list li, .info-nav-card{
    position: relative;
}
.info-list .info-list-content{
    position: relative;
    padding-left: 50px;
}
.info-nav-card .info-list-content{
    position: relative;
    padding-left: 60px;
}
.info-list li:not(:last-child){
   margin-bottom: 30px;
}
.info-list li:not(:last-child)::after{
   position: absolute;
   content: '';
   height: 1px;
   width: 100%;
   background: #0D7298;
   bottom: -6px;
   left: 0;
}
.info-list p{
    margin-bottom: 0 !important;
}
.info-list-img{
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.info-nav-img{
  position: absolute;
  left: 0;
  top: 0;
}
.ul-nav li:not(:last-child){
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .ul-nav li{
    margin-right: 0;
  }
  .nav-pills-mobile-slider .slick-list{
    padding-right: 0;
  }
  .info-nav-card, .info-tab-body-content{
    padding: 12px;
  }
  .info-nav-card .info-list-content {
    position: relative;
    padding-left: 50px;
  }
}
.info-nav-card, .info-tab-body-content{
  border: 1px solid #C8E6F0;
  padding: 20px;
  border-radius: 10px;
  text-decoration: none;
}
.info-nav-card:hover{
  border: 1px solid #005F83
}
.info-nav-card.active{
  border: 1px solid #005F83
}
@media (max-width: 768px) {
  .nav-card-bg{
    background-color: #C8E6F0;
  }
  .info-nav-card, .info-tab-body-content{
    border: 1px solid #ffffff00;
  }
  .info-nav-card.active{
    border: 0 !important;
  }
  .ul-nav{
    border-bottom: 1px solid #005F83 !important;
  }
}
.info-list-icon li {
  position: relative;
  padding-left: 30px
}
.info-list-icon li::before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 0;
  top: 0;
}
.info-visa-icon li::before {
  background: url('../img/info-visa.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.info-government-icon li::before {
  background: url('../img/info-government.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.info-check-icon li::before {
  background: url('../img/info-check.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.info-ongoing-icon li::before {
  background: url('../img/info-ongoing.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.alert-danger{
  background: #FFF2F2;
  border-color: #FC9595;
}
.text-danger{
  color: #991B1B !important;
}
.info-alert-content li:not(:last-child){
  margin-bottom: 10px;
}
.alert-success{
  background: #F4FFF4;
  border-color: #6FD96E;
}
.text-success{
  color: #166534 !important;
}
.info-reports-content li:not(:last-child){
  margin-bottom: 15px;
}
.info-list-icon li:not(:last-child){
  margin-bottom: 10px;
}

.info-bot-bg{
  background: #F3F7F9;
}
.info-bot-content{
  background: #fff;
  border: 1px solid #E2E2E2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}
.info-number-bg{
  height: 80px;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-blue{
  background: #E5F3F8;
}
.info-green{
  background: #EAFFE7;
  color: #60DD50;
}
.info-purple{
  background: #FDF3FF;
  color: #BE12E0;
}
.info-hover-green{
  background: #eaffe769;
  border: 1px solid #60DD50;
}
.info-hover-blue:hover{
  border: 1px solid #005F83;
}
.info-hover-green:hover{
  border: 1px solid #60DD50;
}
.info-hover-purple:hover{
  border: 1px solid #BE12E0;
}
.info-stories-slider .info-stories-content{
  margin-right: 20px;
}
.info-stories-content{
  padding: 20px;
}
.info-stories-bg{
  padding: 20px;
  background: #F3F7F9;
  position: relative;
  z-index: -1;
}
.info-stories-slider .slick-list{
  padding-right: 0;
}
.info-yellow-bg{
  position: relative;
}
.info-yellow-bg::before{
  position: absolute;
  content: '';
  height: 100%;
  width: 20px;
  background: #FFE102;
  border-bottom-left-radius: 16px;
  border-top-left-radius: 16px;
  left: -3px;
  top: 0;
}
.info-counter-card{
  background: #0D7298;
  padding: 20px;
}
.info-white-bg{
  position: relative;
}
.info-white-bg::after{
  position: absolute;
  content: '';
  height: 50%;
  width: 100%;
  background: #fff;
  left: 0;
  bottom: 0;
}
.info-partner-bg{
  background: #FFE102;
  padding: 50px;
}

.accordion-item{
  background: #fff;
  border-radius: 0 !important;
  border: 0 !important;
  border-bottom: 1px solid #E5F3F8 !important;
}
.accordion-button{
  color: #00BFFF !important;
  font-weight: bold !important;
  border-radius: 0 !important;
}
.accordion-button.collapsed{
  background: #fff !important;
}
.accordion-item:not(:last-child){
  margin-bottom: 20px;
}
.accordion-button:not(.collapsed){
  background: #fff;
  box-shadow: none;
}
.accordionExample .accordion-button::after{
  filter: invert(79%) sepia(53%) saturate(6362%) hue-rotate(157deg) brightness(100%) contrast(104%) !important;
}
.faq-content .accordion-button{
  color: #005F83 !important;
  font-weight: bold !important;
  border-radius: 0 !important;
}

.info-icon-bg{
  background: #F3F7F9;
  padding: 25px;
  border-radius: 20px;
}
@media (max-width: 767px) {
    .info-icons-mobile-slider .info-icon-bg{
      margin-right: 20px;
    }
}

.info-count-content .info-icon-list li{
    position: relative;
    padding-left: 25px;
}
.info-count-content .info-icon-list li:not(:last-child){
    margin-bottom: 10px;
}
.info-count-content .info-icon-list li::before{
    position: absolute;
    content: '';
    height: 20px;
    width: 14px;
    background: url("../img/info-element-01.png");
    background-position: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    left: 0;
    top: 0;
}

.info-row-list li:not(:last-child){
  margin-bottom: 80px;
}
.info-num-size{
  font-size: 10rem;
}

.info-business-card{
  padding: 10px;
  margin-right: 30px !important;
}
.slider-left-arrow{
  position: absolute;
  left: 15px;
  bottom: 0;
  background-color: #fff;
  border: 1px solid #0D7298;
  color: #0D7298;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.slider-right-arrow{
  position: absolute;
  left: 70px;
  bottom: 0;
  background-color: #fff;
  border: 1px solid #0D7298;
  color: #0D7298;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.slider-arrows:hover{
  background-color: #0D7298;
  border: 1px solid #0D7298;
  color: #fff;
}

.checklist-bg{
  background: url('../img/hero-banner-bg.webp');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.checklist-bg::before{
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: #000000B2;
  left: 0;
  top: 0;
}
.info-checklist ul li:not(:last-child){
  margin-bottom: 20px;
}


.center-slider .slick-list{
  padding-left: 150px;
  padding-right: 150px;
}
.center-slider .img-wrapper {
    overflow: hidden;
    border-radius: 20px;
    margin-left: 20px;
    margin-right: 20px;
}
.img-wrapper .content {
    position: absolute;
    width: 100%;
    text-align: start;
    bottom: 15px;
    left: 30px;
}
@media (max-width:992px) {
  .center-slider .slick-list{
    padding-left: 40px;
    padding-right: 40px;
  }
}
.center-slider .slick-dots li button, .info-vision-slider .slick-dots li button{
	opacity: 1;
  height: 4px;
  transition: all 500ms ease-in-out
}
.center-slider .slick-dots li.slick-active button,  .info-vision-slider .slick-dots li.slick-active button{
	opacity: 1;
	background: #005F83;
	width: 50px;
}

.faq-content .accordion-button::after{
  background-image: url("../img/plus.png");
}
.faq-content .accordion-button:not(.collapsed)::after{
  background-image: url("../img/minus.png");
}

.info-form-bg{
  background: #F3F7F9;
  padding: 50px;
}
.info-contact-bg{
  padding: 20px 30px;
  border: 1px solid #2898C0;
}
@media (max-width: 768px) {
  .info-contact-bg {
    padding: 10px;
  }
}
.info-vision-slider .info-img{
  margin-right: 15px;
}

.info-vision-slider .slick-dots{
  position: absolute;
  bottom: 0;
}

.hero-right{
  position: absolute;
  right: 0;
  top: 5%;
}
.hero-left{
  position: absolute;
  left: 0;
  bottom: 0;
}
/* .hero-footer-logo{
  width: 200px;
} */
.element-left{
  position: absolute;
  left: 0;
  top: 4%;
}
.bottom-right{
  position: absolute;
  right: 0;
  bottom: 8%;
  width: 120px;
}
.bottom-left{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120px;
}
.right-top{
  position: absolute;
  right: 0;
  top: 0;
}
.left-top{
  position: absolute;
  left: 0;
  top: 0;
}
.right-bottom{
  position: absolute;
  right: 0;
  bottom: 0;
}
.left-bottom{
  position: absolute;
  left: 5%;
  bottom: 0;
  width: 150px;
}
.card-right-bottom{
  position: absolute;
  right: 0;
  bottom: 0;
  width: 150px;
}
.info-tab-element{
  position: absolute;
  right: -35px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 440px;
}
@media (max-width: 991px) {
  .info-tab-element {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 215px;
  }
  .hero-right, .hero-left, .element-left, .bottom-right, .bottom-left, .right-top, .left-top, .right-bottom, .left-bottom, .card-right-bottom{
    opacity: 0.4;
  }
}
@media (max-width: 768px) {
  .info-tab-element {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 465px;
  }
}
@media (max-width: 576px) {
  .info-tab-element {
    position: absolute;
    right: -42px;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 390px;
  }
}










.info-footer-bg {
  background-color: #035970 !important;
}
.info-footer .info-content{
  text-align: end;
}
.info-line-height {
  line-height: 2;
}
.info-footer * {
  font-size: .8rem;
}

/* Form Color */
.hbspt-form input::placeholder,.hbspt-form textarea::placeholder {
  color: #2898C0;
}
.hbspt-form input[type="text"], .hbspt-form input[type="email"], .hbspt-form input[type="tel"], .hbspt-form select{
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #2898C0 !important;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #2898C0;
  width: 100% !important;
  height: 40px !important;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
textarea {
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #2898C0;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #2898C0;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
}
.hbspt-form fieldset, .hbspt-form .hs-input {
  margin: 0 !important;
  width: 100% !important;
}
.hbspt-form .hs-button {
  padding: 0.5rem 1.5rem;
  border-radius: 2.5rem;
  background: linear-gradient(to right, #02C0FA, #43DA38) !important;
  border: 0 !important;
  min-width: 175px;
  color: #fff;
  font-family: 'Gotham Book';
  font-size: 1rem;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}
.hs_submit {
  margin-top: 25px !important;
  display: flex;
  justify-content: center;
}
.hbspt-form .inputs-list label p, .hbspt-form .inputs-list label a {
  color: #2898C0;
  font-size: 0.8rem;
}
.hbspt-form .inputs-list label {
  color: #ff4444;
  font-size: 0.8rem;
}
.inputs-list{
  padding: 0;
  list-style: none;
}
.hs-form-booleancheckbox-display{
  position: relative;
  padding: 0.375rem 0.75rem;
  margin-top: 10px;
}
.hs-form-booleancheckbox-display .hs-input{
  position: absolute;
  content: '';
  left: 0 !important;
  width: auto !important;
}
.hbspt-form fieldset {
  max-width: 100% !important;
}


@media (max-width: 767px) {
  .info{
    padding: 30px 15px;
  }
  .navbar-brand {
    max-width: 120px;
  }
  .info-business-card{
    margin-right: 15px !important;
  }
  .info-checklist ul li:not(:last-child){
    margin-bottom: 15px;
  }
  .info-form-bg{
    padding: 20px;
  }
  .center-slider .slick-list{
    padding-left: 0;
    padding-right: 0;
  }
  .img-wrapper .content {
    position: absolute;
    width: 100%;
    text-align: start;
    bottom: 0;
    left: 10px;
  }
  .img-wrapper .content p{
    font-size: 0.8rem;
  }
  .center-slider .img-wrapper {
    margin-left: 10px;
    margin-right: 10px;
  }
  .info-row-list li:not(:last-child) {
    margin-bottom: 10px;
  }




  .info-footer * {
    font-size: .8rem;
    text-align: center !important;
  }
}

.footer{
  position: relative;
  z-index: 0 !important;
}


/* SLICK CSS */
.slick-dots{
  display: block;
  left: 0;
  right: 0;
  margin: auto;
  padding-top: 20px;
  list-style: none;
  text-align: center !important;
}
.slick-dots li{
  display: inline-block;
  margin-right: 10px;
}
.slick-dots li button {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50rem;
  background-color: #c9c9c9;
  text-indent: -999999px;
}
.slick-dots li.slick-active button{
  background-color:  #02C0FA;
}
.slick-list{
  padding-right: 30px;
}
.info-business-slider .slick-list, .info-vision-slider .slick-list{
  padding-right: 0;
}

.nav-tabs-mobile-slider .slick-list, .nav-pills-mobile-slider .slick-list{
  padding-right: 0;
}
.nav-tabs-mobile-slider .slick-arrow, .nav-pills-mobile-slider .slick-arrow {
    background: transparent;
    padding: 0;
    width: 45px;
    height: 45px;
    line-height: 45px;
    position: absolute;
    bottom: 0;
    top: 0;
    margin: auto;
    color: #ffffff;
    z-index: 1;
    border: 0;
    font-size: 0;
    outline: none;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    opacity: 1;
    font-family: "Font Awesome 6 Free";
}
.nav-tabs-mobile-slider .slick-arrow, .nav-pills-mobile-slider .slick-arrow {
  color: #000;
  background: #adadad69;
}
.nav-tabs-mobile-slider .slick-arrow:hover, .nav-pills-mobile-slider .slick-arrow:hover {
  background: linear-gradient(to right, #02C0FA, #43DA38) !important;
  color: #fff;
}
.nav-tabs-mobile-slider .slick-prev::before, .nav-pills-mobile-slider .slick-prev::before{
  content: '\f053';
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  font-size: 14px;
}
.nav-tabs-mobile-slider .slick-next::before, .nav-pills-mobile-slider .slick-next::before {
  content: '\f054';
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  font-size: 14px;
}
.nav-tabs-mobile-slider .slick-arrow, .nav-pills-mobile-slider .slick-arrow{
  padding: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.nav-tabs-mobile-slider .slick-arrow.slick-prev, .nav-pills-mobile-slider .slick-arrow.slick-prev{
    left: -40px;
}
.nav-tabs-mobile-slider .slick-arrow.slick-next, .nav-pills-mobile-slider .slick-arrow.slick-next{
    right: -40px;
}
@media (max-width: 600px) {
    .nav-tabs-mobile-slider .slick-arrow.slick-prev, .nav-pills-mobile-slider .slick-arrow.slick-prev {
        left: -20px;
    }
    .nav-tabs-mobile-slider .slick-arrow.slick-next, .nav-pills-mobile-slider .slick-arrow.slick-next {
        right: -20px;
    }
}

.info-stories-slider .slick-dots li button {
  width: 12px;
  height: 5px;
  border: 0;
  border-radius: 50rem;
  background-color: #2898C0;
  text-indent: -999999px;
  transition: all 500ms ease-in-out
}
.info-stories-slider .slick-dots li.slick-active button {
	opacity: 1;
	background: #fff;
	width: 40px
}