  /*----- Default CSS -----*/
  body {
    font-family: 'Be Vietnam Pro', cursive;
    color: #011f4c;
    background-color: #fff;
    font-size: 16px;
  }

  .text-right {
    text-align: right;
  }

  .text-left {
    text-align: left;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-weight: 700;
    color: #000;
    line-height: 1.4;
  }

  .row {
    margin: 0;
  }

  .border-rl {
    border-right: 2px solid #e4e4e4;
    border-left: 2px solid #e4e4e4;
  }

  .landing-page-title {
    font-size: 48px;
    font-family: 'Overlock SC', sans-serif !important;
    font-weight: 500;
    text-align: center;
    margin-bottom: 50px;
    color: #000;
  }

  p {
    line-height: 1.7;
  }

  a {
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
    text-decoration: none;
  }

  img {
    max-width: 100%;
  }

  ::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
  }

  ::-webkit-scrollbar {
    width: 8px;
    background-color: #F5F5F5;
    height: 5px;
  }

  ::-webkit-scrollbar-thumb {
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #80ab50;
  }

  .main-nav nav .right .navbar-nav .nav-item .dropdown-menu::-webkit-scrollbar {
    width: 3px;
  }

  .d-table {
    width: 100%;
    height: 100%;
  }

  .d-table-cell {
    vertical-align: middle;
  }

  .ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .pt-100 {
    padding-top: 100px;
  }

  .pt-50 {
    padding-top: 50px;
  }

  .pb-70 {
    padding-bottom: 70px;
  }

  .pb-50 {
    padding-bottom: 50px;
  }

  .pb-100 {
    padding-bottom: 100px;
  }

  .mb-100 {
    margin-bottom: 100px;
  }

  button:focus {
    outline: 0;
  }

  .btn.focus,
  .btn:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  ul {
    margin: 0;
    padding: 0;
  }

  .container {
    max-width: 1230px;
  }

  .bk-wihte {
    background: #fff;
  }

  .s-pad {
    padding: 0 8px;
  }

  .l-pad {
    padding-left: 0;
  }


  .preloader {
    position: fixed;
    left: 0;
    width: 0;
    height: 100%;
    width: 100%;
    text-align: center;
    z-index: 999999999999999;
    -webkit-transition: .9s;
    transition: .9s;
  }

  .preloader .loader {
    position: absolute;
    display: inline-block;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 35%;
    -webkit-transform: translateY(-45%);
    transform: translateY(-45%);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    max-width: 29%;
  }

  .preloader .loader .loader-outter {
    position: absolute;
    border: 4px solid #ffffff;
    border-left-color: transparent;
    border-bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -webkit-animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
    animation: loader-outter 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
  }

  .btn i {
    padding: 0 5px;
  }

  .preloader .loader .loader-inner {
    position: absolute;
    border: 4px solid #ffffff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    left: calc(40% - 21px);
    top: calc(40% - 21px);
    border-right: 0;
    border-top-color: transparent;
    -webkit-animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
    animation: loader-inner 1s cubic-bezier(0.42, 0.61, 0.58, 0.41) infinite;
  }

  .preloader .loader .indicator {
    position: absolute;
    right: 0;
    left: 0;
    top: 50%;
  }

  .preloader .loader .indicator svg polyline {
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .preloader .loader .indicator svg polyline#back {
    stroke: #ffffff;
  }

  .preloader .loader .indicator svg polyline#front {
    stroke: #2574A9;
    stroke-dasharray: 12, 36;
    stroke-dashoffset: 48;
    -webkit-animation: dash 1s linear infinite;
    animation: dash 1s linear infinite;
  }

  .preloader::before,
  .preloader::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 60%;
    z-index: -1;
    background: #fff;
    -webkit-transition: .9s;
    transition: .9s;
  }

  .preloader::after {
    left: auto;
    right: 0;
  }

  .preloader.preloader-deactivate {
    visibility: hidden;
  }

  .preloader.preloader-deactivate::after,
  .preloader.preloader-deactivate::before {
    width: 0;
  }

  .preloader.preloader-deactivate .loader {
    opacity: 0;
    visibility: hidden;
  }

  @-webkit-keyframes loader-outter {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }

    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }

  @keyframes loader-outter {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }

    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }

  @-webkit-keyframes loader-inner {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }

    100% {
      -webkit-transform: rotate(-360deg);
      transform: rotate(-360deg);
    }
  }

  @keyframes loader-inner {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
    }

    100% {
      -webkit-transform: rotate(-360deg);
      transform: rotate(-360deg);
    }
  }

  @-webkit-keyframes dash {
    62.5% {
      opacity: 0;
    }

    to {
      stroke-dashoffset: 0;
    }
  }

  @keyframes dash {
    62.5% {
      opacity: 0;
    }

    to {
      stroke-dashoffset: 0;
    }
  }

  /*----- Go Top CSS -----*/
  .go-top {
    position: fixed;
    cursor: pointer;
    bottom: 15px;
    right: 0;
    color: #ffffff;
    background-color: #80ab50;
    z-index: 4;
    width: 45px;
    text-align: center;
    height: 45px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: .9s;
    transition: .9s;
    border-radius: 50%;
    border: 1px solid #80ab50;
    -webkit-box-shadow: 0 2px 6px 0 #00000029;
    box-shadow: 0 2px 6px 0 #00000029;
  }

  .go-top i {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-transition: 0.6s;
    transition: 0.6s;
    font-size: 25px;
    line-height: 45px;
  }

  .go-top i:last-child {
    opacity: 0;
    visibility: hidden;
    top: 60%;
  }

  .go-top.active {
    right: 1%;
    -webkit-transform: translateY(-1%);
    transform: translateY(-1%);
    opacity: 1;
    visibility: visible;
  }

  .go-top:hover,
  .go-top:focus {
    color: #ffffff;
    border: 1px solid #535353;
    background-color: #535353;
  }

  .go-top:hover i:first-child,
  .go-top:focus i:first-child {
    opacity: 0;
    top: 0;
    visibility: hidden;
  }

  .go-top:hover i:last-child,
  .go-top:focus i:last-child {
    opacity: 1;
    visibility: visible;
    top: 50%;
  }

  .clear {
    clear: both;
  }

  /*----- End Go Top CSS -----*/
  /*----- Preloader CSS -----*/
  .loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
  }

  .spinner {
    width: 40px;
    height: 40px;
    position: relative;
    margin: 100px auto;
  }

  .double-bounce1,
  .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
  }

  .double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
  }

  @-webkit-keyframes sk-bounce {

    0%,
    100% {
      -webkit-transform: scale(0);
      transform: scale(0);
    }

    50% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }

  @keyframes sk-bounce {

    0%,
    100% {
      -webkit-transform: scale(0);
      transform: scale(0);
    }

    50% {
      -webkit-transform: scale(1);
      transform: scale(1);
    }
  }

  .section-title {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
  }

  .section-title h2 {
    margin-bottom: 0;
    font-size: 38px;
    position: relative;
    color: #fff;
  }

  .section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 115px;
    height: 3px;
    background: #80ab50;
  }

  .section-title-center {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
    text-align: center;
    margin-top: 72px;
  }

  .section-title-center h2 {
    margin-bottom: 0;
    font-size: 38px;
    position: relative;
    text-transform: capitalize;
  }

  .section-title-center h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 115px;
    height: 3px;
    background: #80ab50;
    margin: auto;
  }

  .main-btn {
    background-color: #80ab50;
    color: #fff !important;
    border: 1px solid #fff;
    transition: all 0.5s ease-in-out
  }

  .main-btn:hover {
    background-color: #fff;
    color: #80ab50 !important;
    border: 1px solid #80ab50;
  }

  /*----- Home Demo One CSS -----*/
  /*-- Header --*/
  .header-area {
    background-color: #011a41;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .header-area .left ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 15px;
  }

  .header-area .left ul li:last-child {
    margin-right: 0;
  }

  .header-area .left ul li i {
    display: inline-block;
    font-size: 20px;
    position: relative;
    top: 4px;
    color: #011a41;
    margin-right: 2px;
  }

  .header-area .left ul li a {
    display: inline-block;
    color: #fff;
    font-size: 14px;
  }

  .header-area .left ul li a:hover {
    color: #011a41;
  }

  .header-area .right {
    text-align: right;
  }

  .header-area .right ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 10px;
  }

  .header-area .right ul li:last-child {
    margin-right: 0;
  }

  .header-area .right ul li a {
    display: block;
    font-size: 18px;
    color: #fff;
  }

  .header-area .right ul li a:hover {
    color: #011a41;
  }

  /*-- Navbar --*/
  .main-nav {
    background: initial;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
    padding: 5px;
    -webkit-box-shadow: 0 2px 6px 0 #00000029;
    box-shadow: 0 2px 6px 0 #00000029;
    position: relative;
  }

  .navbar-area {
    background-color: #00000033;
    -webkit-box-shadow: 0 3px 10px 0 rgb(0 0 0 / 16%);
    box-shadow: 0 3px 10px 0 rgb(0 0 0 / 16%);
    min-height: 90px;
    position: fixed;
    width: 100%;
    top: 0;
  }

  .main-nav.menu-shrink {
    padding-top: 8px;
    padding-bottom: 8px;
    background: #000000b3;
  }

  .top-header {
    background: #80AB50;
  }

  .top-header ul {
    list-style: none;
    display: flex;
  }

  .top-header .right {
    float: right;
  }

  .top-header ul li {
    padding: 5px 10px;
    font-size: 13px;
    color: #fff;
    display: inline-block;
  }

  .top-header ul li img {
    max-width: 20px;
    vertical-align: sub;
  }

  .mean-menu {
    display: flex !important;
    flex-grow: 1;
    align-items: center;
    flex-basis: auto;
  }

  .main-nav nav {
    padding: 0;
  }

  .main-nav .logo {
    position: relative;
    width: 100%;
    height: 80px;
  }

  .main-nav .logo img {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }

  .navbar-brand {
    width: 100%;
    padding: 0;
  }

  .main-nav nav .navbar-nav {
    height: auto;
    overflow: initial;
    flex-direction: row;
    align-items: center;
  }

  .main-nav nav .navbar-nav .nav-item:hover a {
    color: #80ab50;
  }

  .main-nav nav .navbar-nav .nav-item a {
    font-weight: 600;
    color: #fff;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 14px;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
  }
.main-nav nav .navbar-nav .nav-item a img{width: 35px;height: 35px;border-radius: 50px;}
  .main-nav nav .navbar-nav .nav-item a:hover,
  .main-nav nav .navbar-nav .nav-item a:focus,
  .main-nav nav .navbar-nav .nav-item a.active {
    color: #80ab50;
  }

  .main-nav nav .navbar-nav .nav-item a i {
    display: inline-block;
    font-weight: 600;
    font-size: 18px;
    position: relative;
    top: 3px;
  }

  .main-nav nav .navbar-nav .nav-item .dropdown-menu {
    padding: 0;
    background: #fff;
    border: 0;
    border-radius: 0;
    scrollbar-width: thin;
    scrollbar-color: #80ab50 #b2b2b2;
  }

  .main-nav .drop-right nav .navbar-nav .nav-item .dropdown-menu {
    right: inherit;
    left: 0;
  }

  .main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
    top: 0 !important;
  }

  .main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover a {
    color: #011a41;
  }

  .main-nav nav .navbar-nav .nav-item .dropdown-menu li:last-child a {
    border-bottom: 0;
  }

  .main-nav nav .navbar-nav .nav-item .dropdown-menu li a {
    font-weight: 600;
    padding: 9px 15px;
    color: #011a41;
    position: relative;
    z-index: 1;
    border-bottom: 1px solid #f1f1f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
  }

  .main-nav nav .navbar-nav .nav-item .dropdown-menu li a:before {
    position: absolute;
    content: '';
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #80ab50;
    -webkit-transition: .3s;
    transition: .3s;
    z-index: -1;
    border-radius: 0px 50px 50px 0px;
  }

  .main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover,
  .main-nav nav .navbar-nav .nav-item .dropdown-menu li a:focus,
  .main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active {
    color: #80ab50;
    padding-left: 18px;
  }

  .main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover:before,
  .main-nav nav .navbar-nav .nav-item .dropdown-menu li a:focus:before,
  .main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active:before {
    width: 3px;
  }

  .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
    top: 15px;
    left: unset;
    right: -100%;
  }

  .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
    color: #011a41;
  }

  .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover,
  .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus,
  .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
    color: #011a41;
  }

  .main-nav .dropdown-toggle::after {
    display: none;
  }

  .side-nav .language {
    display: inline-block;
    vertical-align: middle;
    margin-right: 20px;
  }

  .side-nav .language .nice-select {
    height: 30px;
    line-height: 30px;
    background-color: transparent;
    border: 0;
    font-size: 16px;
    color: #011a41;
    font-weight: 600;
  }

  .side-nav .language .nice-select:after {
    border-bottom: 2px solid #011a41;
    border-right: 2px solid #011a41;
  }

  .side-nav .language .nice-select ul {
    border: 0;
    border-radius: 0;
    display: block;
    width: 100%;
  }

  .side-nav .language .nice-select ul li {
    display: block;
    width: 100%;
    color: #011a41;
    font-size: 15px;
  }

  .side-nav .consultant-btn {
    display: inline-block;
    color: #fff;
    background-color: #011a41;
    border-radius: 5px;
    padding: 12px 25px;
    font-weight: 600;
    vertical-align: middle;
  }

  .side-nav .consultant-btn:hover {
    background-color: #011a41;
  }

  .user-box {
    padding: 15px;
  }

  .user-box .user-img {
    position: relative;
    width: 70px;
    height: 70px;
  }

  .user-box .user-img img {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    border-radius: 50%;
  }

  .user-box .flex-grow-1 {
    align-self: center;
  }

  .user-box .flex-grow-1 h5 {
    font-size: 16px;
    font-weight: 500;
  }

  .user-box .flex-grow-1 h5 i {
    float: right;
    color: #676767;
  }

  /*-- HEADER --*/
  /*-- Footer --*/

  /*-- Copyright --*/
  .copyright-area.three .copyright-item p a {
    color: #355efc;
  }

  .copyright-area.three .copyright-item p a:hover {
    color: #fff;
  }

  .sidebarCollapse {
    width: auto;
    height: auto;
    background: none;
    cursor: pointer;
    border: 0;
    padding: 0;
  }

  .sidebarCollapse.navbar-btn {

    width: 40px;
    height: 40px;
  }

  .sidebarCollapse span {
    width: 80%;
    height: 3px;
    margin: 0 auto;
    display: block;
    background: #5c5c5c;
    transition: all 0.8s cubic-bezier(0.810, -0.330, 0.345, 1.375);
    transition-delay: 0.2s;
  }

  .sidebarCollapse span:first-of-type {
    transform: rotate(45deg) translate(2px, 2px);
  }

  .sidebarCollapse span:nth-of-type(2) {
    opacity: 0;
  }

  .sidebarCollapse span:last-of-type {
    transform: rotate(-45deg) translate(2px, -2px);
  }

  #sidebar {
    min-width: 360px;
    max-width: 250px;
    background: #fff;
    color: #5a5a5a;
    transition: all 0.6s cubic-bezier(0.945, 0.020, 0.270, 0.665);
    transform-origin: bottom left;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999999;
    bottom: 0;
    overflow-y: scroll;
  }

  #sidebar .navbar-myHeader {

    position: absolute;

    top: 0px;

    z-index: 999999999999999999999999;

    right: initial;

    left: 0;
  }

  #sidebar .logo-img {
    position: relative;
    width: 90%;
    height: 60px;
  }

  #sidebar .logo-img img {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }

  #sidebar.active {
    margin-left: -250px;
    transform: rotateY(100deg);
  }

  #sidebar .sidebar-myHeader {
    padding: 20px;
    background: #6d7fcc;
  }

  #sidebar ul.components {
    padding: 15px 0;
    border-bottom: 0;
  }
    #sidebar ul.components .accordion-button {
        padding: 0;
        border-bottom: 2px solid #e4e4e4;
        background: none;
    }
    #sidebar ul.components .accordion-button a{
        border-bottom: 0;
    }
    #sidebar ul.components .accordion-body ul{
        list-style: none;
    }
    .accordion-button:not(.collapsed)::after{
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }
  #sidebar ul p {
    color: #000;
    padding: 10px;
    text-align: center;
  }

  #sidebar ul li a {
    padding: 10px 20px;
    font-size: 1.1em;
    display: block;
    color: #5a5a5a;
    border-bottom: 2px solid #e4e4e4;
  }


  #sidebar ul li.active>a,
  a[aria-expanded="true"] {
    color: #173134 !important;
  }



  .sidebarCollapse.active span {
    transform: none;
    opacity: 1;
    margin: 10px auto;
    background: #fff;
  }

  .list-unstyled i {
    padding-right: 30px;
  }


  /*----- End Home Demo Three CSS -----*/
  /*-- Footer --*/
  footer {
    background-color: #80ab50;
  }

  .footer-item {
    margin-bottom: 30px;
  }

  footer h5 {
    color: #fff;
    margin: 0;
  }

  footer p {
    color: #fff;
  }

  .footer-item h3 {
    font-size: 24px;
    padding-bottom: 10px;
    margin-bottom: 30px;
    position: relative;
    color: #fff;
  }

  .footer-item h3:before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #e3e6ea;
  }

  .footer-item .footer-logo .logo {
    display: block;
    margin-bottom: 20px;
    height: 100%;
  }

  .footer-item p,
  .footer-item a {
    color: #fff;
  }

  .footer-item .footer-logo ul li {
    list-style-type: none;
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
  }

  .footer-item .footer-logo ul li:last-child {
    margin-bottom: 0;
  }

  .footer-item .footer-logo ul li i {
    position: absolute;
    top: 0;
    left: 0;
    color: #e2e5e9;
    font-size: 25px;
  }

  .footer-item .footer-logo ul li span {
    display: inline-block;
    font-weight: 600;
    margin-right: 3px;
    color: #fff;
  }

  .footer-item .footer-logo ul li a {
    display: inline-block;
    color: #fff;
  }

  .footer-item .footer-logo ul li a:hover {
    color: #c4c9d2;
  }

  .footer-item .footer-links ul li {
    list-style-type: none;
    display: block;
    margin-bottom: 10px;
  }

  .footer-item .footer-links ul li:last-child {
    margin-bottom: 0;
  }

  .footer-item .footer-links ul li a {
    color: #fff;
    display: block;
  }

  .footer-item .footer-links ul li a:hover {
    color: #c4c9d2;
    padding-left: 5px;
  }

  .footer-item .footer-newsletter p {
    color: #fff;
    margin-bottom: 30px;
  }

  .footer-item .footer-newsletter .newsletter-form .form-control {
    height: 50px;
    border: 0;
    border-radius: 0;
    padding-left: 15px;
    font-size: 15px;
  }

  .footer-item .footer-newsletter .newsletter-form .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
  }

  .footer-item .footer-newsletter .newsletter-form .common-btn {
    padding-top: 0;
    padding-bottom: 0;
    display: block;
    width: 100%;
    text-align: center;
    height: 50px;
    opacity: 1;
    -webkit-transition: 0.5s all ease;
    transition: 0.5s all ease;
    border: 0;
    border-radius: 0;
    margin-top: 10px;
    background: #c4c9d2;
    color: #011a41;
  }

  .footer-item .footer-newsletter .newsletter-form .validation-danger {
    color: #fff;
    margin-top: 10px;
  }

  .footer-logo {
    position: relative;
    width: 100%;
    height: 75px;
  }

  .footer-logo img {
    max-width: 100%;
    max-height: 100%;
  }

  .footer-social ul {
    margin: 15px 0;
  }

  .footer-social ul li {
    display: inline-block;
    padding: 5px;
    transition: all 0.5s ease-in-out;
  }

  .footer-social ul li img {
    max-width: 38px;
  }

  .footer-social ul li:hover img {
    transform: translate(0px, -7px);
  }

  /*-- Copyright --*/
  .copyright-area {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #fff;
    text-align: center;
  }

  .copyright-area .logo {
    max-width: 80px;
  }

  .copyright-area a.mail {
    color: #80ab50;
  }

  .copyright-area ul.links {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .copyright-area ul.links li {
    display: inline-block;
  }

  .copyright-area ul.links li a img {
    transition: all 0.5s ease-in-out;
  }

  .copyright-area ul.links li a:hover img {
    transform: translatey(-7px);
  }

  .copyright-area .copyright-item p {
    margin-bottom: 0;
    font-size: 13px;
    color: #80ab50;
  }

  .copyright-area .copyright-item p a {
    display: inline-block;
    color: #535253;
    font-weight: 700;
  }

  .copyright-area .copyright-item p a:hover {
    color: #000;
  }

  #slider .carousel-indicators {
    margin: auto;
    bottom: 5px;
  }

  #slider .carousel-indicators [data-bs-target] {
    width: 15px;
    height: 15px;
    border: 0;
    border-radius: 50%;
    transition: all 0.5s ease-in-out;
    opacity: 0.9;
  }

  #slider .carousel-indicators .active {
    background: #80ab50;
    width: 50px;
    border-radius: 15px;
    opacity: 1;
  }

  /*----- About Us -----*/
  #about-us {
    padding: 140px 0 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
  }
  #about-us h2{
      color: #80ab50;;
  }
#about-us .overlay{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: #0000005e;
}
#about-us p{
    color: #fff;
    z-index: 99;
    position: relative;
}
#about-us .btn{
    z-index: 99;
    position: relative;
}
#about-us .section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
  right: 0;
  margin: auto;
    width: 115px;
    height: 3px;
    background: #80ab50;
}
  /*----- About Us -----*/
  /*----- Booking -----*/
  #book {
    padding: 40px 0;
    background: #f2f2f2;
  }

  #book .card {
    padding: 30px 15px;
    border: 0;
    box-shadow: 0px 0px 20px -11px;
  }

  #book .card .form-control, #book .card .select2{
    border: 0;
    background: #f7f7f7;
    height: calc(2.5rem + 2px);
    padding: 15px 15px 5px 15px;
    font-size: 16px;
    border-radius: 10px;
    width: 100% !important
  }
#book .card .select2{
  padding: 0 !important;
}
.select2-container--default .select2-selection--single .select2-selection__rendered{
  line-height: calc(2.5rem + 2px);
}
.select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: calc(2.5rem + 2px);
    user-select: none;
    -webkit-user-select: none;
    border: 0 !important;
    background: #f7f7f7;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
    bottom: 0;
    margin: auto;
}
  #book .card .form-floating>label {
    left: 15px;
    padding: 7px;
  }

  #book .card .form-control:focus {
    box-shadow: none;
  }

  .form-floating>.form-control:focus~label,
  .form-floating>.form-control:not(:placeholder-shown)~label,
  .form-floating>.form-select~label {
    opacity: .65;
    transform: scale(.85) translateY(-0.5rem) translateX(0.15rem);
    font-size: 14px;
  }

  #book .form-check {
    padding: 7px 16px;
    border: 1px solid #A9A9A9;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
  }
  #book .form-check.normal-radio{
    border: 0;
}
  #book .form-check .form-check-input {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    border-radius: 0;
    background: none;
    border: 0;
  }
#book .form-check.normal-radio .form-check-input{
    width: 15px;
    height: 15px;
    right: inherit;
    border-radius: 15px;
    border: 1px solid #a29595;
    margin: 13px auto;
}
  #book .form-check .form-check-label {
    font-size: 12px;
    cursor: pointer;
    z-index: 2;
    position: relative;
  }
#book .form-check.normal-radio .form-check-label{
    padding: 0 25px;
    font-size: 14px;
}
  #book .form-check .form-check-label img {
    max-width: 20px;
    max-height: 20px;
    vertical-align: sub;
    margin: 0 5px;
  }

  #book .form-check .form-check-input:checked {
    border: 2px solid #e9e9e9;
    background: #80ab50;
    z-index: 1;
    outline: 0;
    box-shadow: none;
  }
#book .form-check.normal-radio .form-check-input:checked {
    width: 15px;
    height: 15px;
}

  /*----- Booking -----*/
  /*----- services -----*/
  #services,
  #team {
    padding: 40px 0;
    background: #f2f2f2;
  }

  #services .card,
  #team .card {
    border: 0;
    box-shadow: 0px 0px 20px -11px;
    margin: 10px 0;
  }

  #services .card .card-img {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
  }

  #team .card .card-img {
    position: relative;
    width: 100%;
    height: 288px;
    overflow: hidden;
  }

  #services .card .card-img img {
    /* position: absolute; */
    /* max-width: 100%; */
    /* max-height: 100%; */
    /* top: 0; */
    /* bottom: 0; */
    /* right: 0; */
    /* left: 0; */
    /* margin: auto; */
    transition: all 0.5s ease-in-out;
    object-fit: cover;
    width: 100%;
    height: 220px;
  }
#team .card .card-img img {
    position: absolute;
    max-width: 100%;
    max-height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    transition: all 0.5s ease-in-out;
    /* object-fit: cover; */
    /* width: 100%; */
    /* height: 288px; */
  }
  #services .card .card-body h5,
#services .card .card-body h4,
  #team .card .card-body h5 {
    text-align: center;
    text-transform: capitalize;
    transition: all 0.5s ease-in-out;
    
  }
#services .card .card-body a{
  color: #80ab50;
}
  #services .card .card-body p,

  #team .card .card-body p {
    text-align: center;
    transition: all 0.5s ease-in-out;
    font-size: 14px;
    color: #80ab50;
    margin: 0;
  }

  #services .card:hover img,
  #team .card:hover img {
    transform: scale(1.1);
  }

  #services .card:hover h5,
  #team .card:hover h5 {
    color: #80ab50;
  }

  #blog .card-img {
    height: 350px;
  }

  #blog .card-body h4 {
    color: #80AB50;
    text-align: initial;
  }

  #blog .card-body p {
    color: #000;
    text-align: initial;
  }

  #blog .card .d-flex .flex-shrink-0 {
    position: relative;
    width: 150px;
    height: 113px;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
  }

  #blog .card .d-flex .flex-shrink-0 img {
    position: absolute;
    max-height: 100%;
    max-width: 100%;
    top: 0;
    margin: auto;
    bottom: 0;
    right: 0;
    left: 0;
    transition: all 0.5s ease-in-out;
  }

  #blog .card .d-flex .flex-grow-1 h5, #blog .card .d-flex .flex-grow-1 h5 a {
    color: #80ab50;
  }

  #blog .card .d-flex .flex-grow-1 p {
    height: 54px;
    overflow: hidden;
    margin: 0;
    font-size: 11px;
  }

  /*----- services -----*/
  /*----- About -----*/
  #about,
  #contactUs {
    padding: 45px 0;
  }

  #about .about-text {
    padding: 5px;
    height: 100%;
  }

  #about .about-img {
    width: 100%;
    position: relative;
    text-align: center;
  }

  #about .about-img img {
    display: block;
    margin: 0 auto;
  }

  #about .card {
    border: 0;
    margin: 15px 0;
    transition: all 0.5s ease-in-out;
  }

  #about .card:hover {
    box-shadow: 0px 0px 20px -11px;
  }

  #about .about-text h5 {
    color: #80ab50;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  #about .about-text h5 span {
    float: right;
    font-size: 14px;
    font-weight: 500;
  }

  #about .about-text p {
    color: #000;
    font-size: 14px;
    max-height: 95px;
    margin: 0;
    overflow: hidden;
  }

  #about .about-text p.top {
    color: #000;
    font-size: 14px;
    max-height: none;
    margin: 0;
  }

  /*----- About -----*/
  /*----- Contact -----*/
  #contactUs ul {
    margin: 25px 0;
    list-style-type: none;
  }

  #contactUs ul li h4 {
    color: #80ab50;
  }

  #contactUs .contact li {
    padding: 5px 0;
  }

  #contactUs .contact li a {
    color: #000;
    transition: all 0.5s ease-in-out;
  }

  #contactUs .contact li a:hover {
    color: #80ab50;
  }

  #contactUs .contact li a i {
    vertical-align: middle;
    margin: 0 5px;
  }

  #contactUs form h5 {
    color: #80ab50;
  }

  #contactUs .links li {
    display: inline-block;
  }

  #contactUs .links li a:hover img {
    transform: translatey(-7px);
  }

  #contactUs .links li a img {
    transition: all 0.5s ease-in-out;
  }

  #about.member .member-info .member-img {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
  }

  #about.member .member-info .member-img img {
    position: absolute;
    max-height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
  }

  #about.member .member-info h5 {
    text-align: center;
    margin: 15px 0;
    color: #80ab50;
  }

  #about.member .member-info p {
    text-align: center;
    color: #000;
  }

  #about.member .member-info .links {
    text-align: center;
  }

  #about.member .member-info .links li {
    display: inline-block;
  }

  #about.member .member-info .links li img {
    transition: all 0.5s ease-in-out;
  }

  #about.member .member-info .links li a:hover img {
    transform: translatey(-7px);
  }

  #about.member .card {
    box-shadow: 0px 0px 20px -11px;
    padding: 10px;
  }

  #about.member .card ul {
    list-style: none;
  }

  #about.member .card img {
    display: block;
    margin: 15px auto;
  }

  /*----- Contact -----*/
  /*----- blog -----*/
  #blog {
    padding: 45px 0;
  }

  #blog .card {
    margin: 20px;
    border: 0;
    box-shadow: 0px 0px 20px -11px #000;
  }

  #blog .card .card-img {
    position: relative;
    width: 100%;
  }

  #blog .card .card-img img {
    max-height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }

  #blog .card .card-body p,
  #blog .card .card-body a {
    color: #666;
    font-size: 14px;
  }

  #blog .card .card-body p span {
    padding: 0 5px;
    color: #666;
  }

  #blog .card .card-body p span i {
    padding: 0 5px;
  }

  #blog .left form {
    position: relative;
  }

  #blog .left form input {
    margin: 0 !important;
    background: #EEEEEE;
    border: 0;
    border-radius: 0;
  }

  #blog .left form .btn {
    border: 0;
    border-radius: 0;
    background: #80ab50;
    color: #fff;
    transition: all 0.5s ease-in-out;
  }

  #blog .left form .btn:hover {
    background: #545453;
    color: #fff;
  }

  #blog .card-img {
    height: 385px;
  }

  #blog .card-body h4 {
    color: #80AB50;
    text-align: initial;
  }

  #blog .card-body p {
    color: #000;
    text-align: initial;
  }

  #blog .card .d-flex .flex-shrink-0 {
    position: relative;
    width: 150px;
    height: 113px;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
  }

  #blog .card .d-flex .flex-shrink-0 img {
    position: absolute;
    max-height: 100%;
    max-width: 100%;
    top: 0;
    margin: auto;
    bottom: 0;
    right: 0;
    left: 0;
    transition: all 0.5s ease-in-out;
  }

  #blog .card .d-flex .flex-grow-1 h5 {
    color: #80ab50;
  }

  #blog .card .d-flex .flex-grow-1 p {
    height: 54px;
    overflow: hidden;
    margin: 0;
    font-size: 11px;
  }

  /*----- blog -----*/
  /*----- team -----*/
  .head-img {
    background-image: url(../images/team/bk.png);
    min-height: 380px;
    background-size: cover;
    background-position: initial;
    background-repeat: no-repeat;
    padding: 150px;
  }

  .head-img img {
    width: 275px;
    margin: 0 auto;
    display: block;
  }
.head-img h1{
  text-align: center;
  color: #fff;
  font-size: 55px
}
  #team-page {
    padding-bottom: 45px;
  }

  #team-page .team-box {
    margin-top: -80px;
  }

  #team-page .team-box .card {
    padding: 15px;
    border: 0;
    box-shadow: 0px 0px 20px -11px;
    margin: 10px 0;
  }

  #team-page .team-box .card .d-flex .flex-shrink-0 {
    width: 113px;
    height: 113px;
    position: relative;
  }

  #team-page .team-box .card .d-flex .flex-shrink-0 img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    border-radius: 50px;
  }

  #team-page .team-box .card .d-flex .flex-grow-1 p {
    font-size: 14px;
    height: 70px;
    overflow: hidden;
  }

  #team-page .team-box .card .d-flex .flex-grow-1 h5 {
    color: #80ab50;
  }

  #team-page .team-box .card .info {
    font-size: 14px;
    margin: 10px 0;
    height: 70px;
    overflow: hidden;
  }

  /*----- team -----*/
  /*----- FAQ -----*/
  #faq {
    padding: 45px 0;
  }

  #faq .faq-img {
    position: relative;
    width: 320px;
    height: 320px;
    margin: 0 auto;
  }

  #faq .faq-img img {
    max-height: 100%;
  }

  #faq .flex-shrink-0 {
    position: relative;
    margin-bottom: 30px;
  }

  #faq .flex-shrink-0 img {
    width: 30px;
  }

  #faq .flex-shrink-0:after {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background: #80ab50;
    right: 0;
    left: 0;
    margin: auto;
    top: 30px;
  }

  #faq .flex-grow-1 h5 {
    color: #000;
  }

  #faq .flex-grow-1 p {
    color: #333;
  }

  /*----- FAQ -----*/
  /*----- Gallery -----*/
  #gallery{
    padding-bottom: 45px
}
  #gallery .card{
      box-shadow: 0px 0px 20px -11px #000;
      margin: 15px 0;
      border: 0;
  }
  #gallery .card .card-img{
      position: relative;
      width: 100%;
      height: 200px;
      overflow: hidden;
  }
  #gallery .card .card-img img{
      position: absolute;
      top: 0;
      bottom: 0;
      right: 0;
      left: 0;
      margin: auto;
      max-width: 100%;
      max-height: 100%;
  }
  #gallery .card h5{text-align: center;color: #80ab50;}
  /*----- Gallery -----*/
  /*----- login -----*/
  #login{
      padding: 50px 0;
  }
  #login .form-group {
      margin: 15px 0;
  }
  .main-nav nav .navbar-nav .nav-item .dropdown-menu {
  position: absolute;
  top: 80px;
  width: 200px;
  right: -30px !important;
  }
  /*----- login -----*/
  .main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu.sub-two{
     right: inherit !important;
    left:  200px !important;
    z-index: 9999999999999;
  }