/* Googlefont Poppins CDN Link */

:root {
    --text-primary: #000000;
    --dark-color: #080222;
    --text-green: #326D3A;
    --green-button: #326D3A;
    --fade-green: #F2FBE8;
    --text-white: #fff;
    --font-family: 'Poppins', sans-serif;
    --green-button-hover: #235F26;
    --light-green: #CAE1BC;
    --bg-white: #fff;
    --light-gray: #E7EDEB;
    --border-radius: 7px;
    --title-font: 36px;
    --yellow-color: #faf233;
    --secondary-title: 24px;
    --page-sub-title: 20px;
    --h1-font-size: 66px;
    --h2-font-size: 50px;
    --h3-font-size: 36px;
    --h4-font-size: 24px;
    --h5-font-size: 20px;
    --h6-font-size: 18px;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.h1-large-font {
    font-size: var(--h1-font-size);
    font-weight: 700;
}

.h2-font {
    font-size: var(--h2-font-size);
    font-weight: 700;
}

.h3-font {
    font-size: var(--h3-font-size);
    font-weight: 700;
}

.h4-font {
    font-size: var(--h4-font-size);
    font-weight: 600;
}

.h5-font {
    font-size: var(--h5-font-size);
    font-weight: 600;
}

/* Nav doc CSS */
.navbar-doc table {
    border-collapse: collapse;
    width: 100%;
    background: transparent;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
  }
  .navbar-doc table tr th,
  .navbar-doc table tr td {
    text-align: left;
    padding: 15px;
  }
  .navbar-doc table tr:nth-child(odd) th,
  .navbar-doc table tr:nth-child(odd) td {
    background: #f0f5f7;
  }
  .navbar-doc table tr:nth-child(even) td {
    background: #e9f0f3;
  }
  .navbar-doc table tr:first-child th:first-child {
    border-top-left-radius: 5px;
  }
  .navbar-doc table tr:first-child th:last-child {
    border-top-right-radius: 5px;
  }
  .navbar-doc table tr:last-child td:first-child {
    border-bottom-left-radius: 5px;
  }
  .navbar-doc table tr:last-child td:last-child {
    border-bottom-right-radius: 5px;
  }
  .navbar-doc table tr:not(:first-child) {
    border-top: 1px solid #e5ecef;
  }
  .navbar-doc code {
    background: #aed2f5;
    border-radius: 3px;
    color: #000000;
    line-height: 1;
    font-size: 1.2rem;
    padding: 1px 4px;
  }
  .navbar-doc p {
    font-size: 1.4rem;
    line-height: 1.5;
  }

  .menu-header
  {
    position: absolute;
    top: 0px;
    z-index: 999;
    width: 100%;
  }
  .navbar-brand
  {
    max-width: 230px;
  }
  .navbar-nav .nav-item a {
    color: #fff !important;
}
  
  /* Main CSS */
  .navbar-1 {
    display: flex;
    background: rgba(10, 2, 33, 0.6);
    justify-content: space-between;
    align-items: center;
    POSITION: static;
    padding: 12px 50px;
    color: rgb(10 2 33);
    position: -webkit-sticky;
    position: fixed;
    z-index: 10000;
    transition: 0.3s linear;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    width:100%

  }
  .navbar-1 ul {
    list-style: none;
  }
  .navbar-1 ul a {
    text-decoration: none;
  }
  .navbar-1 .navbar-toggler,
  .navbar-1 .nav-link,
  .navbar-1 .utils-search {
    color: #ffffff !important;
  }
  .navbar-1 .navbar-utils > * {
    cursor: pointer;
  }
  .navbar-1 .btn-search {
    font-size: 1.5rem;
    background: transparent;
    outline: none;
    border: none;
    color: inherit;
    cursor: pointer;
  }
  
  .navbar-nav {
    display: flex;
    flex-direction: row;
    list-style: none;
    /* background: #0c0522;  */
  }
  .navbar-nav .nav-link {
    padding: 5px 10px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    transition: 150ms ease;
  }
  .navbar-nav .nav-item {
    margin: 0px 10px;
    position: relative;
    padding: 11px 1px;

  }

  .navbar-nav > .nav-item:hover:after {
    transform: scaleX(1);
    opacity: 1;
  }
  
  .navbar-toggler {
    padding: 0.1rem 0.45rem;
    cursor: pointer;
    font-size: 1.5rem;
    background: none;
    outline: none;
    border: 1px solid #636363;
    border: none;
    border-radius: 3px;
    transition: 0.15s linear;
    display: none;
    margin-left: auto;
    margin-right: 20px;
  }
  .navbar-toggler:hover, .navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.36);
  }
  
  /* Navbar options (bg options) */

.nav-link:focus, .nav-link:hover
{
    color: #faf233 !important;
}


  
  @media (min-width: 992px) {
    .bg-blur {
      -webkit-backdrop-filter: blur(3px);
      backdrop-filter: blur(3px);
      background: rgba(255, 255, 255, 0.6);
      z-index: 999;
    }
   
    .bg-blur .navbar-toggler,
  .bg-blur .nav-link,
  .bg-blur .utils-search {
      color: #363636;
    }
    .bg-blur .nav-item:hover > .nav-link {
      color: #faf233;
    }
    .bg-blur .nav-item:after {
      background: #faf233;
    }
  }
 
  
  /* Dropdown CSS */
  .nav-item .dropdown {
    width: 267px;
    display: block;
    position: absolute;
    top: 35px;
    transition: 300ms;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(5px);
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    background: #0c0522;
    border-radius: 4px; 
    color: #fff !important;
    z-index: 999;
    box-shadow: 0 5px 5px 0px rgba(0, 0, 0, 0.15);
  }
  .nav-item .dropdown .nav-link {
    color: #fff !important;
  }
  .nav-item .dropdown .dropdown {
    top: 0;
    left: calc(100% + 20px);
    border-top: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.15);
  }
  .nav-item .dropdown .dropdown:before {
    top: 10px;
    left: -10px;
    border: 5px solid transparent;
    border-right-color: #000;
  }
  .nav-item .dropdown:before {
    content: "";
    position: absolute;
    top: -10px;
    left: 10px;
    border: 5px solid transparent;
    border-bottom-color: #000;
    display: none;
  }
  .nav-item .dropdown .nav-item:not(:last-child) {
    margin-bottom: 5px;
  }
  .nav-item .dropdown > .nav-item:hover > .nav-link {
    color: #faf233 !important;
  }
  .nav-item:hover > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
  }
  .nav-item:hover > a::before {
    transform: rotate(90deg);
  }
  
  .nav-close {
    margin-left: auto;
    margin-top: 10px;
    display: none;
  }
  .nav-close .btn-nav-close {
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 2.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    color: #faf233;
    /* border: 1px solid #faf233; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;

  }
  .nav-close .btn-nav-close .close-btn {
    transform: rotate(45deg);
  }
  .nav-close .btn-nav-close:hover, .nav-close .btn-nav-close:focus {
    background: #363636;
    color: #fff;
  }
  
  .nav-item.icon > a:before {
    content: "";
    position: absolute;
    right: -10px;
    top: calc(50% + 0px);
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-left-color: inherit;
    transition: 0.15s linear;
  }
  .nav-item.icon:hover > a::before {
    transform: rotate(90deg);
  }
  
  /* Responsive (navbar alignments options) */
  @media (min-width: 992px) {
    .navbar-brand,
  .navbar-utils {
      flex: none;
    }
  
    .navbar-nav {
      justify-content: center;
    }
  
    .navbar-utils {
      text-align: right;
    }
  
    .navbar-right .navbar-brand,
  .navbar-right .navbar-utils {
      flex: initial;
    }
    .navbar-right .navbar-nav {
      justify-content: flex-end;
      margin-right: 20px;
    }
  
    .navbar-left .navbar-nav {
      order: 1;
      justify-content: flex-start;
    }
    .navbar-left .navbar-brand {
      order: 2;
    }
    .navbar-left .navbar-utils {
      order: 3;
    }
  
    .navbar-right .dropdown .dropdown {
      left: unset;
      right: calc(100% + 20px);
      border-top: 0;
      border-right: 1px solid rgba(0, 0, 0, 0.15);
    }
  }
  /* Nav Option (Logo Center) */
  @media (min-width: 992px) {
    .navbar-left .navbar-brand {
      text-align: right;
    }
    .navbar-left .navbar-toggler {
      display: block;
      margin-right: 0;
    }
    .navbar-left .navbar-nav {
      background: #ffffff;
      flex-direction: column !important;
      z-index: 99999;
      padding: 0 20px;
      opacity: 0;
      transition: 400ms ease;
      /* Sidebar */
      position: fixed;
      left: 0;
      top: 0;
      width: 300px;
      height: 100%;
      overflow-y: auto;
      box-shadow: 0px 0px 0 2000px rgba(0, 0, 0, 0.5);
      transform: translateX(-300px);
    }
    .navbar-left .navbar-nav .nav-link {
      margin: 10px 0;
      color: #fff !important;
      display: flex;
      align-items: center;
    }
    .navbar-left .navbar-nav > .nav-item:first-child {
      margin-top: 20px;
    }
    .navbar-left .navbar-nav > .nav-item:last-child {
      margin-bottom: 20px;
    }
    .navbar-left .navbar-nav .nav-item:not(:last-child) {
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    .navbar-left .navbar-nav .nav-item:hover > .nav-link {
        color: #0d0a15;
    }
    .navbar-left .navbar-nav > .nav-item:after {
      display: none;
    }
    .navbar-left .navbar-nav .nav-close {
      display: block;
    }
    .navbar-left .navbar-nav.active {
      max-height: initial;
      opacity: 1;
      transform: translateX(0);
      left: 0;
      box-shadow: 0 0 0 10000px rgba(0, 0, 0, 0.5);
    }
    .navbar-left .nav-item .dropdown {
      padding: 0;
      position: initial;
      max-height: 0;
      width: initial;
      border: none;
      box-shadow: none;
    }
    .navbar-left .nav-item .dropdown .dropdown {
      border: none;
    }
    .navbar-left .nav-item .dropdown:before {
      display: none;
    }
    .navbar-left .nav-item:hover > .dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0px);
      max-height: initial;
    }
    .navbar-left .nav-item.icon a:before {
      top: unset;
      right: 0;
    }
  }
  /* Responsive navbar */
  @media (max-width: 991px) {
    .navbar-toggler {
      display: block;
    }
  
  
    .navbar-nav {
        background: #0c0522 !important;
      flex-direction: column !important;
      z-index: 99999;
      padding: 0 20px;
      opacity: 0;
      transition: 400ms ease;
      /* Sidebar */
      position: fixed;
      left: -300px;
      top: 0;
      width: 300px;
      height: 100%;
      overflow-y: auto;
      transform: translateX(-300px);
    }
    .navbar-nav .nav-link {
      margin: 10px 0;
      color: #636363;
      display: flex;
      align-items: center;
    }
    .navbar-nav > .nav-item:first-child {
      margin-top: 20px;
    }
    .navbar-nav > .nav-item:last-child {
      margin-bottom: 20px;
    }
    .navbar-nav .nav-item:not(:last-child) {
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    .navbar-nav .nav-item:hover > .nav-link {
      color: #000 ;
    }
    .navbar-nav > .nav-item:after {
      display: none;
    }
    .navbar-nav .nav-close {
      display: block;
    }
  
    .navbar-nav.active {
      max-height: initial;
      opacity: 1;
      transform: translateX(0);
      left: 0;
      box-shadow: 0px 0px 0 10000px rgba(0, 0, 0, 0.5);
    }
  
    .nav-item .dropdown {
      padding: 0;
      position: initial;
      max-height: 0;
      width: initial;
      border: none;
      box-shadow: none;
    }
    .nav-item .dropdown .dropdown {
      border: none;
    }
    .nav-item .dropdown:before {
      display: none;
    }
    .nav-item:hover > .dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0px);
      max-height: initial;
    }
  
    .nav-item.icon a:before {
      top: unset;
      right: 0;
      transform: translateY(0px);
    }
  }
  /* Search Popup */
  .search-popup {
    opacity: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999999;
    display: grid;
    place-items: center;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
    transition: 200ms;
  }
  .search-popup.active {
    opacity: 1;
    visibility: visible;
  }
  .search-popup.active form {
    transform: translateY(0px);
  }
  .search-popup form {
    position: absolute;
    background: #fff;
    width: 600px;
    height: 200px;
    display: grid;
    place-items: center;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0px 5px 10px 5px rgba(0, 0, 0, 0.2);
    transition: 300ms;
    transform: translateY(20px);
  }
  .search-popup .btn-search-close {
    position: absolute;
    top: 5px;
    right: 5px;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 3rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .search-popup .btn-search-close .close-btn {
    transform: rotate(45deg);
  }
  .search-popup input[type=search] {
    width: 100%;
    height: 70px;
    border: none;
    outline: none;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 400;
    padding: 0px 10px;
    transition: 100ms;
  }
  .search-popup input[type=search]:focus {
    box-shadow: 0 0 0 3px rgba(0, 129, 255, 0.43);
    border-color: transparent;
  }
  .search-popup input[type=search]::-webkit-input-placeholder {
    color: #b3b3b3;
  }
  
  @media (max-width: 576px) {
    .search-popup form {
      width: calc(100% - 30px);
      height: 170px;
      padding: 15px;
    }
  }
.call-to-action {
    position: relative;
    display: flex;
    justify-content: end;
    align-items: center;

}

.call-to-action .bx {
    background: #00A859;
    padding: 5px;
    margin-right: 5px;
    border-radius: 37px;
    font-size: 23px;
    color: #fff;
    cursor: pointer;
    display: block;
}

.call-to-action h4 {
    font-size: 18px;
    margin: 0px !important;
    font-weight: 500;
    padding: 0px;
    color: #fff;
}

.call-to-action .extension {
    position: absolute;
    top: -30px;
    font-size: 12px;
    font-weight: 500;
    background: var(--yellow-color);
    color: #000;
    padding: 3px 8px;
    border-radius: 26px;
    right: 0px;
    animation: jump 1s ease-in-out infinite;
}

.call-to-action .extension::before {
    content: "";
    position: absolute;
    width: 0px;
    height: 0px;
    top: 21px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 11px solid var(--yellow-color);
}

.phone-popup {
    display: none;
    position: absolute;
    top: -100px;
}

.input-box-number {
    display: none;
}

.jump-dotted-bouncy {
    animation: bounce-animation 3s linear infinite;
}

@keyframes bounce-animation {
    0% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-30px)
    }
    to {
        transform: translateY(0)
    }
}

@keyframes jump {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}

@media (max-width:1200px) {
    .call-to-action h4 {
        display: none;
    }
    .call-to-action .extension {
        top: -32px;
        width: 66px;
        right: -12px;
    }
    .call-to-action .bx {
        background: #00A859;
        /* padding: 5px; */
        margin-right: 5px;
        width: 38px;
        height: 38px;
        justify-content: center;
        border-radius: 37px;
        align-items: center;
        display: flex;
        font-size: 20px;
        color: #fff;
        cursor: pointer;
        /* display: block; */
    }
    .phone-popup {
        display: none;
        position: absolute;
        top: 50px;
        right: 0px;
        width: 180px;
        height: auto;
        justify-content: center;
        align-items: center;
        background: var(--dark-color);
        padding: 10px;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        transition: 0.3s ease-in-out;
        opacity: 0;
    }
    .phone-popup.show {
        display: block;
        opacity: 1;
    }
    .phone-popup p {
        display: flex;
        justify-content: center;
        height: auto;
        text-align: center;
        margin: 0px;
        flex-grow: 1;
        align-items: center;
        color: var(--text-white);
    }
    .phone-popup p a {
        color: var(--text-white);
        text-decoration: none;
    }
}


/*slider area*/
.hero-slider {
    width: 100%;
    height: 700px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 0;
}

img.slide-bg-image {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

@media (max-width: 1600px) {
    img.slide-bg-image {
        height: 100%;
        width: unset !important;
    }
    .hero-slider {
        height: 600px;
    }
}

@media (max-width: 991px) {
    .hero-slider {
        height: 600px;
    }
}

@media (max-width: 767px) {
    .hero-slider {
        height: 600px;
    }
}

.hero-slider .swiper-slide {
    overflow: hidden;
    color: #fff;
}

.hero-slider .swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.hero-slider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    padding: 0px 100px;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
}

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
    background: transparent;
    width: 35px;
    height: 35px;
    line-height: 28px;
    margin-top: -30px;
    text-align: center;
    border: 2px solid #d4d3d3;
    border-radius: 55px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

@media (max-width: 767px) {
    /* .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next {
        display: none;
    } */
}

.hero-slider .swiper-button-prev {
    left: 25px;
    transform: translateX(50px);
}

.hero-slider .swiper-button-prev:before {
    font-family: boxicons;
    content: "\ee05";
    font-size: 18px;
    color: #d4d3d3;
    font-style: normal;
    padding-left: 5px;
    display: inline-block;
    vertical-align: middle;
    font-weight: 900;
}

.hero-slider .swiper-button-next {
    right: 25px;
    transform: translateX(-50px);
}

.hero-slider .swiper-button-next:before {
    font-family: boxicons;
    content: "\ee90";
    font-size: 18px;
    padding-left: 4px;
    color: #d4d3d3;
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
    font-weight: 900;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    text-align: left;
    line-height: 12px;
    font-size: 12px;
    color: #000;
    opacity: 0.3;
    background: #fff;
    transition: all .2s ease;
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
}

.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
    bottom: 30px;
}

@media screen and (min-width: 992px) {
    .hero-slider .swiper-container-horizontal>.swiper-pagination-bullets,
    .hero-slider .swiper-pagination-custom,
    .hero-slider .swiper-pagination-fraction {
        /*     display: none; */
    }
}


.hero-slider .swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 50px;
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
}
@media (min-width: 767px) {
    .hero-slider .swiper-container-horizontal>.swiper-pagination-bullets {
        bottom: 30px;
    }
    .swiper-pagination {
         text-align: none !important;
    }
}
@media (max-width: 768px) 
{
    .hero-slider .swiper-button-prev {
        left: 5px;
        transform: translateX(50px);
    }
    .hero-slider .swiper-button-next {
        right: 5px;
        transform: translateX(-50px);
    }
    
}

/*--------------------------------------------------------------
      #hero-style
  --------------------------------------------------------------*/
.hero-style {
    height: 780px;
    transition: all .4s ease;
}
@media (max-width: 991px) {
    .hero-style {
        height: 600px;
    }
}
@media (max-width: 767px) {
    .hero-style {
        height: 500px;
    }
}
@media screen and (min-width: 992px) {
    .hero-style .container {
        padding-top: 95px;
    }
}
.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btns {
    max-width: 690px;
}
.hero-style .slide-title h2 {
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 60px;
    color: #ffffff;
    margin: 0 0 30px;
    transition: all .4s ease;
    
}
@media (max-width: 1199px) {
    .hero-style .slide-title h2 {
        font-size: 48px;
    }
}
@media (max-width: 991px) {
    .hero-style .slide-title h2 {
        font-size: 50px;
        margin: 0 0 35px;
    }
}
@media (max-width: 767px) {
    .hero-style .slide-title h2 {
        font-size: 28px;
        margin: 0 0 12px;
        line-height: 34px;
    }

    
    
    .hero-slider .slide-inner {
        padding: 50px 10px;
        align-items: end;
    }
}
.hero-style .slide-text p {
    opacity: 1;
    font-family: inherit;
    font-size: 22px;
    font-weight: 300 !important;
    line-height: 1.35;
    letter-spacing: normal;
    color: #ffffff;
    margin: 0 0 20px;
    transition: all .4s ease;
}
@media (max-width: 767px) {
    .hero-style .slide-text p {
        font-size: 16px;
        font-size: 1rem;
        font-weight: normal;
        margin: 0 0 30px;
    }
}
.hero-style .slide-btns>a:first-child {
    margin-right: 10px;
}

/*--------------------------------------------------------------
      #button-style
  --------------------------------------------------------------*/
.theme-btn,
.theme-btn-s2 {
    background-color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    color: #2b3b95;
    padding: 9px 32px;
    border: 0;
    border-radius: 3px;
    text-transform: uppercase;
    display: inline-block;
    line-height: initial;
    transition: all .4s ease;
}
a {
    text-decoration: none;
    transition: all 0.2s ease;
}
.theme-btn-s2 {
    background-color: rgba(255, 255, 255, 0.9);
    color: #131e4a;
}
.theme-btn:hover,
.theme-btn-s2:hover,
.theme-btn:focus,
.theme-btn-s2:focus,
.theme-btn:active,
.theme-btn-s2:active {
    background-color: #2b3b95;
    color: #fff;
}
.theme-btn-s3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #ffffff;
    text-transform: uppercase;
}
i.fa-chevron-circle-right {
    height: 22px;
    width: 22px;
}
a:hover {
    text-decoration: none;
}
@media (max-width: 991px) {
    .theme-btn,
    .theme-btn-s2,
    .theme-btn-s3 {
        font-size: 13px;
        padding: 15px 25px;
    }
}
@media (max-width: 767px) {
    .theme-btn,
    .theme-btn-s2 {
        padding: 13px 20px;
        font-size: 13px;
    }
}

/* who we are section */
section {
    padding: 40px 0px;
    position: relative;
    display: block;
}
.who-we-are {
    padding: 40px 0px;
    overflow: hidden;
    position: relative;
    display: block;
}
.circle {
    width: 80%;
    position: absolute;
    height: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px dashed transparent;
    animation: pulse 2s infinite alternate;
    z-index: 0;
}
@keyframes pulse {
    0% {
        border-color: #00A859;
    }
    
    60% {
        border-color: #00A859;
    }
    
    100% {
        border-color: #FEF116;
    }
}
.dotted {
    position: absolute;
    bottom: 50px;
    left: 50px;
}
.florida-map {
    position: absolute;
    right: -10px;
    top: 150px;
    z-index: -1;
}
.who-we-are-content {
    position: relative;
    padding-top: 90px;
}
.who-we-are-content h6 {
    font-size: 22px;
    margin: 0;
    font-weight: 700;
}
.who-we-are-content .text-with-border {
    font-size: 100px;
    font-weight: 700;
    margin: -20px 0px;
    color: #fff;
    -webkit-text-stroke: 3px #326D3A;
    text-transform: uppercase;
}
.extension {
    animation: jump-dotted-updown 7s linear infinite;
}
@keyframes jump-dotted-updown {
    0% {
        transform: translateY(0);
    }
    
    50% {
        transform: translateY(30px);
    }
    
    100% {
        transform: translateY(0);
    }
}
.read-more-btn {
    background: var(--green-button);
    color: var(--text-white);
    padding: 12px 35px;
    width: fit-content;
    text-decoration: none;
    margin-top: 20px;
    display: block;
    position: relative;
    border: none;
    box-sizing: border-box;
    border-radius: var(--border-radius);
    transition: 0.3s linear;
}
.read-more-btn .arrow-icon {
    width: 12px;
    margin: 0px 5px;
    transition: transform 0.5s ease;
}
.read-more-btn:hover {
    background: var(--green-button-hover);
    color: var(--text-white);
    padding: 12px 35px;
    text-decoration: none;
    border-radius: var(--border-radius);
}
.read-more-btn:hover .arrow-icon {
    transform: rotate(52deg);
}
@media only screen and (max-width: 768px) {
    .who-we-are-content {
        position: relative;
        padding-top: 10px;
    }
}

/* quick access wrap */
.quick-access {
    padding: 60px 0px;
    /* background: url(/themes/custom/silver/assets/images/quick-access-bg.jpg); */
}
.main-title {
    font-size: var(--title-font);
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-green);
}
.secondary-title {
    font-size: var(--secondary-title);
    font-weight: 700;
    margin-bottom: 15px;
}
.page-sub-title {
    font-size: var(--page-sub-title);
    font-weight: 600;
    margin-bottom: 15px;
}
.access-item {
    display: flex;
    align-items: center;
    background: #ffffff;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 10px;
    box-shadow: 0px 37px 79px 0px rgba(0, 0, 0, 0.13);
    padding: 35px;
    padding-right: 50px;
    margin-top: 30px;
    transition: all 0.3s linear;
}
@media only screen and (max-width: 449px) {
    .access-item {
        padding: 30px;
        padding-right: 25px;
    }
}
.access-item .access-content {
    flex: 1;
    margin-left: 20px;
}
@media only screen and (max-width: 449px) {
    .access-item .access-content {
        margin-left: 15px;
    }
}
.access-item .access-content .title {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    color: var(--text-white);
}
@media only screen and (max-width: 449px) {
    .access-item .access-content .title {
        font-size: 20px;
    }
}
.quick-access-wrap {
    position: relative;
    z-index: 5;
}
.access-item {
    background: #52645A;
    padding: 40px 35px;
    min-height: 274px;
    padding-right: 90px;
    transition: all 0.6s;
    border: 1px solid #52645A;
}
.access-item:hover {
    border: 1px solid #6c917a;
}
.access-item .access-icon {
    transition: all 0.3s linear;
}
.access-item:hover .access-icon {
    transform: scale(1.1);
}
.access-item .access-content {
    margin-left: 40px;
}
.access-item .access-content .title {
    font-size: 28px;
    line-height: 30px;
    font-weight: 700;
    color: var(--text-white);
}
.access-item .access-content .title a,
.access-item .access-content .title:hover a {
    color: var(--text-white);
    text-decoration: none;
}
.access-item .access-content p {
    font-size: 16px;
    line-height: 24px;
    color: var(--text-white);
    margin-top: 15px;
}
.access-item .access-content .lern-more {
    font-size: 14px;
    line-height: 30px;
    color: var(--text-white);
    padding: 8px 0px;
    margin-top: 5px;
    text-decoration: none;
    border-bottom: 1px dashed var(--text-white);
}
.access-item .access-content .lern-more:hover {
    font-size: 14px;
    line-height: 30px;
    color: var(--light-green);
    padding: 8px 0px;
    margin-top: 5px;
    text-decoration: none;
    border-bottom: 1px dashed var(--light-green);
}
.access-item .access-content .lern-more .arrow-icon {
    width: 12px;
    margin: 0px 5px;
    transition: transform 0.5s ease;
}
.access-item .access-content .lern-more:hover .arrow-icon {
    transform: rotate(52deg);
}
@media only screen and (max-width: 1399px) {
    .access-item {
        padding-right: 38px;
    }
    
    .access-item .access-content {
        margin-left: 30px;
    }
}
@media only screen and (max-width: 1199px) {
    .access-item {
        padding: 40px 25px;
        padding-right: 25px;
    }
    
    .access-item .access-content {
        margin-left: 25px;
    }
    
    .access-item .access-content .title {
        font-size: 22px;
    }
}
@media only screen and (max-width: 449px) {
    .access-item {
        align-items: self-start;
        flex-direction: column;
        gap: 25px;
    }
    
    .access-item .access-content {
        margin-left: 0px;
    }
}

/* call to action section */
.call-to-action-section {
    padding: 60px 0px;
    background: #fff;
}
.call-to-action-section .key-provisions {
    background: url(/themes/custom/silver/assets/images/call-to-action.jpg) no-repeat center;
    background-size: cover;
    height: 494px;
    padding: 100px 30px 30px 30px;
    position: relative;
    border-radius: 36px;
    z-index: 2;
}
.call-to-action-section .generic-title {
    float: right;
    max-width: 501px;
}
.call-to-action-section .generic-title h2 {
    position: relative;
    font-size: var(--title-font);
    z-index: 2;
    color: var(--text-white);
    font-weight: 700;
}
.call-to-action-section .generic-title h2 {
    color: var(--text-white);
}
.call-to-action-section .generic-title h2 {
    margin-bottom: 42px;
}
.read-more-btn-border {
    background: var(--bg-white);
    color: var(--text-green);
    padding: 12px 35px;
    width: fit-content;
    text-decoration: none;
    margin-top: 20px;
    display: block;
    position: relative;
    box-sizing: border-box;
    border-radius: var(--border-radius);
    transition: 0.3s linear;
}
.read-more-btn-border .arrow-icon {
    width: 12px;
    margin: 0px 5px;
    transition: transform 0.5s ease;
}
.read-more-btn-border:hover {
    background: var(--bg-white);
    color: var(--text-green);
    padding: 12px 35px;
    text-decoration: none;
    border-radius: var(--border-radius);
}
.read-more-btn-border:hover .arrow-icon {
    transform: rotate(52deg);
}
@media only screen and (max-width: 768px) {
    .call-to-action-section .key-provisions {
        background-position: right;
    }
}

/* footer start  */
.footer {
    position: relative;
    padding: 60px 0px;
    background: var(--light-gray);
    color: var(--text-primary);
    font-size: 16px;
}
a.privacy_polcy {
    color: #60ff00;
}
.footer {
    padding: 60px 0 30px 0;
}
.footer .footer-info {
    margin-bottom: 15px;
    background: #05101e;
    border-top: 4px solid #0098ff;
    text-align: center;
    padding: 30px 20px;
}
.footer .footer-info h3 {
    font-size: 24px;
    margin: 0 0 20px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
}
.footer .footer-info p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
}
.social-links {
    display: flex;
    list-style: none;
    margin: 0px;
    padding: 0;
}
.social-links li {
    transition: all 0.3s ease-in-out;
}
.social-links li a {
    text-align: center;
    margin-right: 16px;
    transition: all 0.3s ease-in-out;
}
.social-links li:hover {
    margin-top: -10px;
}
.footer-contact,
.footer-links,
.social-media-links {
    padding: 0px 20px !important;
}
.contact_info {
    position: relative;
    margin-bottom: 15px;
}
.icon_contact {
    position: absolute;
    left: 0;
    /* display: flex; */
    top: -2px;
    background: #D3DBD8;
    width: 32px;
    height: 32px;
    border-radius: 42px;
}
.icon_contact .bx {
    color: var(--text-primary);
    display: grid;
    align-items: center;
    top: 6px;
    line-height: 32px;
    font-size: 17px;
    justify-content: center;
    width: -webkit-fill-available;

}
.contact_text h6 {
    margin-left: 26px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
}
.contact_text p {
    margin-left: 44px;
}
.footer h4 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 12px;
}
.profile-div {
    display: flex;
    gap: 10px;
    margin: 10px 0px;
    justify-content: flex-start;
}
.profile-content {
    position: relative;
}
.profile-content h5 {
    font-weight: 700;
}
.profile-content p {
    font-size: 14px;
}
.footer .footer-links {
    margin-bottom: 30px;
}
.footer .footer-links ul {
    list-style: none;
    padding: 0;
    position: relative;
    margin: 0;
}
.footer .footer-links ul i {
    position: absolute;
    color: var(--text-primary);
    font-size: 22px;
    line-height: 1;
    left: -7px;
    margin-top: 4px;

}
.footer .footer-links ul li .rotate-90 {
    transform: rotate(147deg);
}
.footer .footer-links ul li {
    padding: 10px 0;
    margin-left: 30px;
    display: flex;
    align-items: center;
}
.footer .footer-links ul li:first-child {
    padding-top: 0;
}
.footer .footer-links ul a {
    transition: 0.3s;
    color: var(--text-primary);
    display: inline-block;
    line-height: normal;
    text-decoration: none;
}
.footer .footer-links ul a:hover {
    color: var(--text-green);
}
.bottom-footer .copyright {
    text-align: center;
    padding-top: 10px;
}
.footer-copyright {
    padding: 10px 0px;
    background: var(--dark-color);
}
.footer-copyright .copyright {
    font-size: 13px;
    text-align: center;
    color: #fff;
}
@media only screen and (max-width: 990px) {
    .img-fluid {
        margin: 20px 0px;
    }
}
@media only screen and (max-width: 768px) {
    .footer {
        padding: 20px 0 30px 0;
    }
    
    .footer h4 {
        padding-top: 20px;
    }
    
    .footer-contact,
    .footer-links,
    .social-media-links {
        padding: 0px 10px !important;
    }
    
    .img-fluid {
        margin: 20px 0px;
    }
}

/* typography style started */
.page-breadcrumbs {
    position: relative;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    padding: 180px 0 70px;
    min-height: 180px;
    text-align: center;
}
.container-large {
    position: static;
    padding: 0 15px;
    margin: 0 auto;
    width: 100%;
}
.page-breadcrumbs .title {
    font-size: 42px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 17px;
}
.page-breadcrumb-list {
    position: relative;
    margin-top: 5px;
    padding: 0px;
    margin-left: 0px;
}
.page-breadcrumb-list li {
    position: relative;
    display: inline-block;
    margin-right: 12px;
    padding-right: 13px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    text-transform: capitalize;
}
.page-breadcrumb-list li a {
    color: var(--light-green);
    font-weight: 500;
    text-transform: capitalize;
    transition: all .3s ease;
    text-decoration: none;
}
.page-breadcrumb-list li:after {
    position: absolute;
    content: "\ea50";
    right: -6px;
    top: 1px;
    font-size: 14px;
    font-weight: 700;
    font-family: boxicons;
    color: #fff;
}
.page-breadcrumb-list li:last-child {
    padding-right: 0;
    margin-right: 0;
}
.page-breadcrumb-list li:last-child:after {
    display: none
}
.inner-page-content {
    padding: 60px 0px;
    position: relative;
    overflow: hidden;
    cursor: auto;
}
.list-style {
    list-style: none;
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
}
.list-style li {
    padding: 10px 0px;
    margin-left: 30px;
    font-weight: 500;
}
.list-style li::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: url(/themes/custom/silver/assets/images/check-mark.svg);
    background-size: 20px;
    left: 0;
}
.border-radius {
    border-radius: var(--border-radius);
}
.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}
.accordion-header {
    margin-bottom: 0px !important;
}
.accordion-button {
    font-size: var(--h5-font-size) !important;
    font-weight: 700;
}
.accordion-collapse {
    -webkit-transition: all .4s ease !important;
    transition: all .4s ease !important;
}
.accordion-button:not(.collapsed) {
    color: #ffffff !important;
    background-color: #326d3a !important;
}
.accordion-button:not(.collapsed)::after {
    mix-blend-mode: screen !important;
}
.button-style{
    border-radius: var(--border-radius);
    background: var(--light-green);
    color: var(--dark-color);
    font-size: 14px !important;
    border: none;
}
.view-button{
    border-radius: var(--border-radius);
    background: #b1d8ff; 
    color: var(--text-primary);
    font-size: 14px !important;
    padding: 6px 12px;
    text-decoration: none;
    border: none;
}
.view-button:hover
{
    background: #3376b8;
    color: var(--text-white) !important; 
}
.hypertext-color {
    color: var(--dark-color);
    text-decoration: none;
    padding: 6px 12px;
    line-height: 30px;
}
.hypertext-color:hover {
    background: var(--green-button-hover);
    color: var(--text-white) !important; 
}
.hypertext-color:hover{
    color: var(--text-white); 
}

.text-green
{
    color: var(--text-green);
}
.font-size-large
{
    font-size: 1.3rem;
}

.contact-form-section {
    position: relative;
    overflow: hidden;
}
.contact-form-section form ul {
    display: block;
    justify-content: center;
    margin-bottom: 21px;
}
.contact-form-section form ul li input,
.contact-form-section form ul li textarea {
    width: 100%;
    border: none;
    font-size: 16px;
    line-height: 20px;
    border: 1px solid #cbcbcb;
    padding: 21px 16px;
    margin: 10px 0px;
    caret-color: var(--text-green);
    background: var(--bg-white);
    box-shadow: 5px 0 30px rgb(204 204 204 / 20%);
}
.contact-form-section form ul li textarea {
    padding: 20px 16px;
}
.contact-form-section form ul li input::placeholder,
.contact-form-section form ul li textarea::placeholder {
    font-size: 16px;
    line-height: 20px;
    color: #787878 !important;
}
.contact-form-section form ul li:last-child {
    grid-column: 1/-1;
}
.contact-form-section form .generic-btn button:focus {
    outline: none;
}
.contact-form-section form ul li input:focus,
.contact-form-section form ul li textarea:focus,
.contact-form-section form ul li input:focus-visible,
.contact-form-section form ul li textarea:focus-visible {
    outline-color: var(--yellow-color);
}
.contact-form-section form ul li textarea {
    min-height: 130px;
    resize: none;
}
.contact-form-section form ul li span.error {
    color: red;
    font-size: 16px;
    line-height: 24px;
}
.contact-form-section form ul li input::placeholder {
    color: var(--text-color);
}
.contact-form-section form .submit-btn {
    text-align: center;
}
.contact-form-section form .generic-btn button {
    border: none;
    border: 1px solid var(--green-button);
}
.contact-form-section form .generic-btn button:hover {
    cursor: pointer;
    background: transparent;
    color: var(--green-button-hover);
}
.contact-form-section .generic-title .small-text {
    margin-bottom: 16px;
}
.contact-form-section .generic-title {
    margin-bottom: 61px;
}
.contact-us-page .contact_info {
    position: relative;
    display: flex;
    margin-bottom: 15px;
    align-items: center;
    min-height: 60px;
}
.contact-us-page .icon_contact {
    position: absolute;
    left: 0;
    display: flex;
    top: -2px;
    background: #fff;
    width: 65px;
    height: 65px;
    border-radius: 66px;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;
}
.contact-us-page .contact_text p {
    font-size: 18px;
    padding-left: 40px;
}
.contact-us-page .icon_contact .bx {
    color: var(--text-green);
    display: flex;
    align-items: center;
    font-size: 32px;
    justify-content: center;
    width: -webkit-fill-available;
}

.list-download-style
{
    margin: 0;
    padding: 0;
    list-style: none;
}
.list-download-style li 
{
    display: flex;
    padding: 10px;
    align-items: center;
border: 1px solid #f2f2f2;
   
}
.list-download-style li h3
{
    font-size: 18px;
    margin: 0px;
    font-weight: 700;
    min-width: 274px;
    
}

.button-style {

    border-radius: var(--border-radius);
    background: var(--light-green);
    color: var(--dark-color);
    font-size: 14px !important;
    border: none;
}
.hypertext-color a {
    color: var(--dark-color);
    text-decoration: none;
    padding: 6px 12px;
    line-height: 30px;
}
.hypertext-color:hover {
    background: var(--green-button-hover);
    color: var(--text-white) !important; 
}
.hypertext-color a:hover{
    color: var(--text-white); 
}


@media (max-width:560px) 
{
    .list-download-style li h3
{
    font-size: 18px;
    margin: 0px 60px 0px 0px;
    min-width: 0px;
   
}
}

.nav-item span {
    color: #fff;
}

.btn-submit
{
    color: #fff;
        margin: 0px;
    padding: 0;
}
.btn-submit:hover

{
color: #fff;
}
.thankyou-img
{
    width: 300px;
}
.text-larger
{
    font-size: 18px;
}

.list-style li a {
    color: #000;
    text-decoration: none;
}

.list-style li a:hover
{
    color: #326d3a !important;
}




@media (max-width: 760px)
{
.navbar-brand img {
    width: 131px;
}
}

.submit-btn {
    color: #fff !important;
    margin: 0px;
    /* padding: 0px; */
    padding: 8px 26px;
}
input#submitBtn {
    color: #fff !important;
}

.error{
    color:red;
}

.navbar-nav li:hover .htmlcss-arrow,
.navbar-nav li:hover .js-arrow {
    transform: rotate(180deg);
}

.navbar-nav li:hover .htmlcss-arrow,
.navbar-nav li:hover .js-arrow {
    transform: rotate(0deg);
}

.navbar-nav .nav-links.show1 .links .htmlcss-arrow,
.navbar-nav .nav-links.show3 .links .js-arrow {
    transform: rotate(180deg);
}

.bxs-chevron-down {
    color:#fff !important;
}
@media only screen and (max-width: 768px) {

    .navbar-1 {
          padding: 12px 15px;
    }
    
    .call-to-action {
        position: absolute;
        display: flex;
        /* justify-content: end; */
        /* resize: inline; */
        right: 59px;
        top: 39px;
        /* align-items: center; */
    }
    
    .navbar-toggler {
           margin-right: 0px;
    }
    
    }




    #edit-submit{
    color: #fff !important;
    margin: 0px;
    padding: 8px 26px;
    background: #326D3A !important;
    border: 0px;
    margin-top: 10px;
    }
    .user-login-form {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .user-login-form > div >.form-required {
        font-weight: 700 !important;
    }
    /* .description{
        display: none;
    } */

    .pdf-style {
        list-style: none;
        position: relative;
        display: block;
        margin: 0;
        padding: 0;
    }
    .pdf-style li {
        padding: 10px 0px;
        margin-left: 30px;
        font-weight: 500;
    }
    .pdf-style li::before {
        content: "";
        position: absolute;
        width: 20px;
        height: 20px;
        background: url(/themes/custom/silver/assets/images/doc_image.png);
        background-size: 20px;
        left: 0;
    }
    .pdf-style li a
    {
        color: #000;
    }
    .pdf-style li a:hover
    {
        color: var(--text-green);
        text-decoration: underline;
    }
    .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
        border: 1px solid #326d3a;
        background: #326d3a;
        font-weight: normal;
        font-size: 18px !important;
        font-weight: 600 !important;
        color: #ffffff;
        padding: 15px 15px !important;
    }
    .ui-accordion .ui-accordion-header {
        display: block;
        cursor: pointer;
        position: relative;
        margin: 0px 0 0 0;
        padding: .8em .5em .8em .7em;
        font-size: 100%;
        font-weight: 600;
        font-size: 18px;
    }
    
    .ui-accordion .ui-accordion-content {
        /* padding: 15px; */
        height: auto !important;
        /* font-family: 'Montserrat', sans-serif; */
        /* font-size: 16px; */
    }
    .ui-accordion-content .views-row
    {
        display: flex;
        
        justify-content: center;
        
        border-bottom: 1px solid #dfdfdf;
    }
    .ui-accordion-content .views-row .views-field 
    {
        margin-right: 40px;
        padding: 10px 0px;
        width: 33%;
       
    }
    .ui-accordion-content .views-row .views-field.views-field-field-month
    {
        
        font-weight: 700;   
    }

  
    .ui-accordion-content .views-row .views-field.views-field-field-month
    div#ui-id-2 {
        height: auto !important;
    }



    .view-id-presentation > .view-content {
        list-style: none;
        position: relative;
        display: block;
        margin: 0;
        padding: 0;
    }
    .view-id-presentation > .view-content > .views-row {
        padding: 10px 0px;
        margin-left: 30px;
        font-weight: 500;
    }
    .view-id-presentation > .view-content > .views-row::before {
        content: "";
        position: absolute;
        width: 20px;
        height: 20px;
        background: url(/themes/custom/silver/assets/images/doc_image.png);
        background-size: 20px;
        left: 0;
    }
    .view-id-presentation > .view-content > .views-row a
    {
        color: #000;
    }
    .view-id-presentation > .view-content > .views-row a:hover
    {
        color: var(--text-green);
        text-decoration: underline;
    }
    
    @media only screen and (max-width: 1206px)
    {

        .navbar-nav .nav-item {
            font-size: 13px;

        }
    }
    @media only screen and (max-width: 990px)
    {

        .navbar-1 {
           
            -webkit-backdrop-filter: none !important;
            backdrop-filter: none !important;
           
        }

    }
    @media only screen and (max-width: 768px)
    {
        .ui-accordion-content .views-row .views-field {
           
            font-size: 13px;
        }
    
        .ui-accordion .ui-accordion-content {
            padding: 1em 0.5em !important;
           
        }
        .ui-accordion-content .views-row .views-field {
           
            width: 23%;
        }
        .ui-accordion-content .views-row .views-field.views-field-field-agenda {
            width: 8%;
        }

        .ui-accordion-content .views-row {
            display: flex;
            justify-content: left;
           
        }
        
    }

    /* Add Banner Page Style */
    body {
        font-size: 16px;
        background: #fff;
        color: #000;
        margin: 0 auto;
        font-family: 'Montserrat', sans-serif;
        line-height: 1.8;
        background-color:#eef5fb;
    }
    h1, h2, h3 {
        color: #23527c;
    }
    .inner-content-section
    {
    padding: 50px 0;
    }
    .inner-content-section p{
        font-size:16px;
    }
    .inner-content-section {
        padding: 30px 0;
        min-height: 638px;
    }

    h2, h3 {
        font-weight: 600;
    }
    .admin-primary-btn {
        border: 1px solid #326d3a;
        padding: 7px 20px;
        font-family: "Montserrat", sans-serif;
        font-size: 1rem;
        color: #fff;
        text-decoration: none;
        transition: all .2s ease;
        background: #326d3a;
        font-weight: 500;
        border-radius: 6px;
        text-transform: uppercase;
    }
    .input {
        width: 100%;
        border: 1px solid #e6e6e6;
        padding: 5px;
        border-radius: 5px;
        color: black;
    }
    /* Add Banner Page Style*/
   
    .title-for-label
    {
        margin-bottom: 0px !important;
        font-weight: 600;
    }
    .field 
    {
        margin-bottom: 15px;
    }
.font-size-13
{
    font-size: 13px !important;
}
.input {
    width: 100%;
    border: 1px solid #e6e6e6;
   
    padding: 5px 12px;
    border-radius: 5px;
    color: black;
    background: #fff;
}
.header-notification
{
    background: #fef116;
    font-size: 18px;
    padding: 10px 30px;
    top: 141px;
    margin: 0px;
    line-height: normal;
    font-weight: 600;
    text-align: center;
    color: #1e1d1b;
    z-index: 90;
    position: relative;
}
@media only screen and (max-width: 768px)

{

.header-notification {
    top: 112px;
  }

}
