:root {
    --font-heading: "Bricolage Grotesque", serif;
    --font--body: "Instrument Sans", serif;
}

body {
    font-family: var(--font--body);
    font-size: 18px;
}

@media (min-width: 1500px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1400px;
    }
}

.header{
    padding: 15px 0;
    transition: all .2s ease-in-out;
}

.header.sticky{
    background-color: #fff;
    box-shadow: 0 0 15px rgba(102, 102, 102, 0.2);
    padding: 5px 0;
}

.navbar-nav .nav-link{
    font-size: 16px;
    padding: 12px 25px !important;
    transition: all .2s ease-in-out;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link:hover, .navbar-nav .nav-link:focus{
    color: #0057A4;
}

.dropdown-menu{
    background-color: #0057A4;
    color: #fff;
}

.dropdown-menu .dropdown-item{
    color: #fff;
    transition: all .2s ease-in-out;
}

.dropdown-menu .dropdown-item:hover{
    color: #0057A4;
}

.navbar-nav .nav-link.active::before{
    display: inline-block;
    border-radius: 100%;
    margin-right: 10px;
    content: '';
    width: 10px;
    height: 10px;
    background-color: #0057A4;
}

section {
    padding: 80px 0;
}

.bg-gray {
    background-color: #F5F7F9;
}

.btn-link {
    font-size: 18px;
    padding: 0;
    font-weight: bold;
    text-decoration: none;
    color: #222;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-right: 30px; /* Space for arrow */
}

.btn-link::after {
    content: "\f178";
    font-family: FontAwesome;
    color: #ff7f00;
    position: absolute;
    right: 0;
    transition: transform 0.3s ease-in-out;
}

.btn-link.type2::after{
    color: #0057A4;
}

.btn-link:hover::after {
    transform: translateX(10px);
}

.subhead {
    display: inline-block;
    background-color: #fff;
    padding: 8px 12px;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #EBEEF2;
    border-radius: 10px;
    margin-bottom: 75px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subhead.type2 {
    background-color: #FFF2E6;
    color: #212121;
    border-color: #FFF2E6;
}

.subhead::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 13px;
    background-color: #0057A4;
    width: 7px;
    height: 7px;
    border-radius: 100%;
}

.subhead.type2::before {
    background-color: #FF7900;
}

.section-head {
    font-size: 48px;
    color: #003462;
    margin-bottom: 25px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.section-title {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 600;
    color: #003462;
    font-size: 32px;
    flex: 0 0 calc(100% - 75px);
    max-width: calc(100% - 75px);
    margin-bottom: 16px;
}

.section-title .title-pic {
    background-color: #fff;
    padding: 12px;
    border-radius: 15px;
    margin-right: 15px;
    flex: 0 0 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 60px;
}

.ticker-list {
    padding-left: 0;
    list-style: none;
}

.ticker-list>li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 20px;
}

.ticker-list>li::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    background-image: url(../images/icon-check.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.blogs-card .blog-category {
    color: #FF7900;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.blogs-card .title {
    font-size: 24px;
    font-weight: 600;
    font-family: var(--font-heading);
    margin-bottom: 15px;
}

.blogs-card .content {
    font-size: 16px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
}

.form-control {
    height: 50px;
}

textarea.form-control {
    height: auto;
    resize: none;
}

.btn-primary {
    padding: 12px 15px;
    font-family: var(--font-heading);
    font-weight: 600;
    background-color: #0057A4;
}

.hm-banner {
    position: relative;
}

.hm-banner video {
    width: 100%;
}

.hm-banner .hm-banner-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    padding: 15px;
    text-align: center;
    max-width: 700px;
    margin: auto;
}

.hm-banner .hm-banner-content h2 {
    font-family: var(--font-heading);
    font-size: 52px;
    color: #fff;
}

.pic-overlay {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    margin-bottom: 40px;
}

.overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    color: #fff;
    background: rgb(255, 121, 0);
    background: linear-gradient(90deg, rgba(255, 121, 0, 1) 0%, rgba(102, 102, 102, 0.2) 50%);

    &.type1 {
        background: rgb(32, 32, 32);
        background: linear-gradient(90deg, rgba(32, 32, 32, 1) 0%, rgba(102, 102, 102, 0.2) 50%);
    }

    &.type2 {
        background: rgb(0, 65, 123);
        background: linear-gradient(90deg, rgba(0, 65, 123, 1) 0%, rgba(255, 255, 255, 0.02) 50%);
    }
}

.counter {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 600;
    display: flex;
}

.card-testim {
    background-color: #fff;
    border-radius: 25px;
    border: 1px solid #FFF2E6;
    padding: 32px;
}

.card-testim .user {
    display: flex;
    align-items: center;
}

.pic-testim {
    margin-right: 10px;
}

.card-testim .user .user-content {
    flex: 0 0 calc(100% - 63px);
}

.card-testim .user-content p.user-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
}

.card-testim .user-content p {
    margin-bottom: 0;
    font-size: 14px;
}



.footer {
    background-color: var(--color-secondary);
    padding: 40px 0 20px;
    color: #333;
    font-size: 14px;
}

.ftr-logo {
    /* max-width: 180px; */
    font-size: 2rem;
    font-family: var(--color-primary);
    text-decoration: none;
    color: #333;
    display: block;
}

.ftr-link {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
}

.ftr-link li a {
    /* font-size: .9rem;
        letter-spacing: 2px;*/
    padding: 0 20px;
    color: #333;
    text-decoration: none;
}

.ftr-link li {
    line-height: 1;
}

.ftr-list {
    padding-left: 0;
    margin-bottom: 0;
}

.ftr-list>li .ftr-title {
    font-size: 14px;
    color: #5E5E5E;
}

.social-list {
    padding: 0;
    list-style: none;
}


.ftr-list>li,
.social-list>li {
    display: inline-block;
}

.social-list>li:not(:last-child) {
    margin-right: 15px;
}

.ftr-list>li {
    display: block;
    margin-bottom: 15px;
    font-size: 14px;
}

.social-list>li:last-child {
    margin-right: 0;
}

.ftr-list>li a {
    color: #333;
    text-decoration: none;
}

.ftr-list>li:not(:last-child) {
    margin-right: 15px;
}

.ftr-bottom{
    padding-top: 25px;
    border-top: 1px solid #FFF2E6;
    margin-top: 35px;
}

.showcase-slider, .testmimonial-slider{
    padding-bottom: 50px;
}

.testmimonial-slider .swiper-slide:nth-of-type(even){
    padding-top: 35px;
}

.testmimonial-slider .swiper-slide .card-testim:not(:last-child){
    margin-bottom: 25px;
}

.showcase-slider .swiper-slide{
    /* width: 350px; */
    opacity: 0;
  }

  .showcase-slider .swiper-slide-fully-visible{
    opacity: 1;
  }

  .showcase-slider .swiper-slide-visible:not(.swiper-slide-fully-visible){
    opacity: 0.2;
  }

  .swiper-button-next, .swiper-button-prev{
    /* background: url(../images/slider-arrow.svg) no-repeat center;
    background-size: 15px; */
    width: 50px;
    height: 50px;
    background-color: #FF7900;
    border-radius: 100%;
    display: flex;
  }

  .swiper-button-next img, .swiper-button-prev img{
    filter: brightness(0) invert(1);
  }

  .swiper-button-next:after, .swiper-button-prev:after{
    display: none;
  }

  .swiper-button-next{
    transform: rotateZ(180deg);
    right: 15px;
  }

  .swiper-button-prev{
    left: 15px;
  }

  .swiper-pagination-bullet{
    background-color: #212121;
  }

  .swiper-pagination-bullet-active{
    width: 25px;
    border-radius: 15px;
  }
  
 .swiper-marquee .swiper-slide {
    text-align: center;
    font-size: 33px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: auto;
    position: relative;
    overflow: hidden;
    padding: 0 50px;
  }

  .watch-vid{
    padding: 12px 15px;
    background-color: #fff;
  }

  .watch-vid .fa{
    color: #ff7f00;
    font-size: 18px;
    margin-left: 10px;
  }

  .watch-vid:hover{
    background-color: #0057A4;
  }


  @media(max-width: 991px){
    body{
        padding-top: 112px;
        font-size: 1rem;
    }

    .navbar-toggler{
        border: 0;
    }

    section{
        padding: 40px 0;
    }

    .navbar-nav .nav-link{
        padding-left: 0 !important;
    }

    .subhead{
        font-size: 14px;
        margin-top: 15px;
        margin-bottom: 25px;
    }
    .hm-banner .hm-banner-content h2{
        font-size: 25px;
    }

    .section-head, .section-title{
        font-size: 24px;
    }

    .watch-vid, .btn-link{
        font-size: 1rem;
    }

    .watch-vid{
        white-space: nowrap;
        padding: 10px !important;
    }

    .overlay-text{
        padding: 12px;
    }

    .pic-overlay{
        margin-bottom: 15px;
    }

    .counter{
        font-size: 20px;
    }

    .showcase-slider .swiper-slide{
        opacity: 1;
    }

    .showcase-slider .swiper-button-next, .showcase-slider .swiper-button-prev{
        display: none;
    }

    .ftr-list{
        margin-bottom: 35px;
    }
  }