/* Fonts */
:root {
    --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-primary: "Inter", sans-serif;
    --font-secondary: "Poppins", sans-serif;
  }
  
  /* Colors */
  :root {
    --color-default: #ffffff;
    --color-primary: #0d42ff;
    --color-secondary: #0e1d34;
  }
  
  /* Smooth scroll behavior */
  :root {
    scroll-behavior: smooth;
  }
  section {
    padding: 10px 0;
    overflow: hidden;
  }
  
  .section-header {
    text-align: center;
    padding: 3px 0;
    position: relative;
  }
  
  .section-header h2 {
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 0;
    color: #001973;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
  }
  
  .section-header h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--color-primary);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  
  .section-header span {
    position: absolute;
    top: 46px;
    color: rgba(14, 29, 52, 0.06);
    left: 0;
    right: 0;
    z-index: 1;
    font-weight: 700;
    font-size: 56px;
    text-transform: uppercase;
    line-height: 0;
  }
  
  .section-header p {
    margin-bottom: 0;
    position: relative;
    z-index: 2;
  }
  
  @media (max-width: 640px) {
    .section-header h2 {
      font-size: 28px;
      margin-bottom: 15px;
    }
  
    .section-header span {
      font-size: 38px;
    }
  }
  
  /*--------------------------------------------------------------
  # Breadcrumbs
  --------------------------------------------------------------*/
  .breadcrumbs .page-header {
    padding: 75px 0 40px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .breadcrumbs .page-header:before {
    content: "";
    background-color: rgba(14, 29, 52, 0.8);
    position: absolute;
    inset: 0;
  }
  
  .breadcrumbs .page-header h2 {
    font-size: 56px;
    font-weight: 500;
    color: #fff;
    font-family: var(--font-secondary);
  }
  
  .breadcrumbs .page-header p {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .breadcrumbs nav {
    background-color: #f3f6fc;
    padding: 20px 0;
  }
  
  .breadcrumbs nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-secondary);
  }
  
  
  .breadcrumbs nav ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #4278cc;
    content: "/";
  }
/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
    margin-top: 40px;
  }
  


  .contact .info-item i {
    font-size: 20px;
    background: var(--color-primary);
    color: #fff;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
  }
  
  .contact .info-item h4 {
    padding: 0;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--color-secondary);
  }
  
  .contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
    color: rgba(14, 29, 52, 0.8);
  }
  
  .contact .php-email-form {
    width: 100%;
    background: #fff;
  }
  
  .contact .php-email-form .form-group {
    padding-bottom: 8px;
  }
  
  .contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #df1529;
    text-align: left;
    padding: 15px;
    font-weight: 600;
  }
  
  .contact .php-email-form .error-message br+br {
    margin-top: 25px;
  }
  
  .contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #059652;
    text-align: center;
    padding: 15px;
    font-weight: 600;
  }
  
  .contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
  }
  
  .contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #059652;
    border-top-color: #fff;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
  }
  
  .contact .php-email-form input,
  .contact .php-email-form textarea {
    border-radius: 4px;
    box-shadow: none;
    font-size: 14px;
  }
  
  .contact .php-email-form input {
    height: 44px;
  }
  
  .contact .php-email-form textarea {
    padding: 10px 12px;
  }
  
  .contact .php-email-form button[type=submit] {
    background: var(--color-primary);
    border: 0;
    padding: 10px 35px;
    color: #fff;
    transition: 0.4s;
    border-radius: 5px;
  }
  
  .contact .php-email-form button[type=submit]:hover {
    background: rgba(13, 66, 255, 0.8);
  }
  
  @keyframes animate-loading {
    0% {
      transform: rotate(0deg);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }
  
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 50vh;
    background-color: var(--color-secondary);
    background-image: url("../img/hero-bg.png");
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 20px 0 20px 0;
    color: rgba(255, 255, 255, 0.8);
  }
  
  .hero h2 {
    margin-bottom: 20px;
    padding: 0;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
  }
  
  @media (max-width: 575px) {
    .hero h2 {
      font-size: 30px;
    }
  }
  
  .hero p {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 40px;
  }
  
  .hero form {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
  }
  
  .hero form .form-control {
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: 20px;
    padding-right: 20px;
    border: none;
    margin-right: 10px;
    border: none !important;
    background: none !important;
  }
  
  .hero form .form-control:hover,
  .hero form .form-control:focus {
    outline: none;
    box-shadow: none;
  }
  
  .hero form .btn-primary {
    background-color: var(--color-primary);
    padding: 15px 30px;
  }
  
  .hero form .btn-primary:hover {
    background-color: #2756ff;
  }
  
  .hero .stats-item {
    padding: 30px;
    width: 100%;
  }
  
  .hero .stats-item span {
    font-size: 32px;
    display: block;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 15px;
    position: relative;
  }
  
  .hero .stats-item span:after {
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 3px;
    background: var(--color-primary);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
  
  .hero .stats-item p {
    padding: 0;
    margin: 0;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
  }

  .modal-open {
    overflow: hidden;
    position:fixed;
    width: 100%;
}
@media(min-width: 768px){
    #top-packages .container { margin-bottom: 30px;}
    .packages {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 10px;
}
.price-tag {
    border-bottom: none !important;
    float: none !important;
}
}
@media(max-width: 767px){
    .mobile-button {display: block !important;}
    }
.mobile-button {
display: none;
background: #e0e4cb;
position: fixed;
bottom: 0px;
width: 100%;
z-index: 999;
text-align: center;
}
.mobile-button img {
margin: 0 0px;
width: 30%;
}
/*--------------popup close----------------*/
#popupbg{width: 100%; position: fixed;top:0;left: 0;z-index: 999999;height: 100%;background: rgba(0,0,0,0.7);display: none;}
.popinner{width: 548px;max-width: 92%;position: relative;top:50%;left: 50%;
    transform: translate(-50%,-50%);}


.popinner .poptitle{width: 100%;background: #1071b8;box-sizing: border-box;padding: 0 0 0 0; overflow: hidden;}
.popinner .poptitle h3{text-align: center;font-size: 22px;color: #fff;line-height: 40px;margin:0;padding: 0;}
.popinner .popbody{width: 100%;box-sizing: border-box;padding:10px 18px;background: #fff;}
.popinner .popbody p{font-size: 16px;line-height: 24px;display: block;color: #344a5f;margin: 0;padding: 0;}
.popinner .popbody .font18{font-size: 23px;line-height: 28px;display: block;color: #344a5f;margin: 10px 0;padding: 0;}
.popinner .popbody .bulletbg{width: 100%; margin: 0;padding: 0;}
.popinner .popbody .bulletbg ul{margin: 0;padding: 0;}
.popinner .popbody .bulletbg ul li{font-size: 16px;line-height: 24px;display: block;color: #344a5f;margin: 0;padding: 0;}
.popinner .popbody .bulletbg ul li span{font-size: 18px;padding-right: 10px;}
.uk-text-primary {
    color: #2d7091!important;
}
.uk-text-warning {
    color: #e28327!important;
}
.uk-text-success {
    color: #659f13!important;
}
.popinner .popbody .formbg{width: 90%;margin: 15px auto;padding: 0;overflow: hidden;}
.popinner .popbody .formbg input[type="text"], .popinner .popbody .formbg input[type="email"]{padding: 2px 12px;background: #fff;
    font-size: 1em;color: #333;
    width: 100%;line-height: 35px;
    border-radius: 4px;
    border: 1px solid #ccc;}
    .popinner .popbody .formbg input[type="submit"]{display: inline-block;font-size: 16px;color: #fff;border:0;
        border-radius: 10px;padding: 0 20px;margin-top: 15px; margin-bottom:10px; cursor: pointer;
        line-height: 40px;background: #1a1a1a;}
        
       
        
    .submitbg{width: 100%; text-align: center;}

.closepop{width: 100%;text-align: center;}
.closepop a{display: inline-block;font-size: 12px;line-height: 30px;color: #afafaf;margin: 0;padding: 0 10px;text-decoration: underline;}
.dclose{display:none;}
.form-control{ border-radius: 0px !important; }
@media screen and (max-width: 767px){
    .popinner .popbody .formbg input[type="text"]{margin-top: 10px;}
    .inclusions .read-collpse span {margin: 30px 0px 0px;}
    .inclusions .read-collpse {position: static !important;}
    .mobile-footer a {
    color: #fff;
}}

.hero h3.vr {
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  text-orientation: sideways;
  text-align: center;
  text-orientation: sideways;
  margin: 0rem;
  position: absolute;
  top: 0;
  left: 4em;
  height: 100%;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 5px;
  font-size: 16px;
  z-index: 1;
  color: rgba(0, 0, 0, 0.3); }
  @media (max-width: 1199.98px) {
    .hero h3.vr {
      opacity: 0;
      display: none; } }

.owl-carousel {
  position: relative; }
  .owl-carousel .owl-item {
    opacity: .4; }
    .owl-carousel .owl-item.active {
      opacity: 1; }
  .owl-carousel .owl-dots {
    text-align: center; }
    .owl-carousel .owl-dots .owl-dot {
      width: 10px;
      height: 10px;
      margin: 5px;
      border-radius: 50%;
      background: #166BA5;
      position: relative; }
      .owl-carousel .owl-dots .owl-dot:after {
        position: absolute;
        top: -2px;
        left: -2px;
        right: 0;
        bottom: 0;
        width: 14px;
        height: 14px;
        
        content: '';
        border: 1px solid #166BA5;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%; }
      .owl-carousel .owl-dots .owl-dot:hover, .owl-carousel .owl-dots .owl-dot:focus {
        outline: none !important; }
      .owl-carousel .owl-dots .owl-dot.active {
        background: #b3b3b3; }
  .owl-carousel.home-slider {
    position: relative;
    height: 500px;
    z-index: 0; }
    .owl-carousel.home-slider .slider-item {
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center center;
      height: 650px;
      position: relative;
      z-index: 0; }
      @media (max-width: 1199.98px) {
        .owl-carousel.home-slider .slider-item {
          background-position: center center !important; } }
      .owl-carousel.home-slider .slider-item .overlay {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: #000000;
        opacity: 0; }
      .owl-carousel.home-slider .slider-item .slider-text {
        height: 320px!important;
        z-index: 0; 
      }
        @media (max-width: 991.98px) {
          .owl-carousel.home-slider .slider-item .slider-text {
            text-align: center; } }
        .owl-carousel.home-slider .slider-item .slider-text .one-third {
          width: 60%;
          top:-50px;
          position: absolute;
          z-index: -1; 
          animation: up-down 2s ease-in-out infinite alternate-reverse both;
        }
        @media (min-width:1200px){
            .owl-carousel.home-slider .slider-item .slider-text .one-third{
                top:-100px!important;
            }
        }
          .owl-carousel.home-slider .slider-item .slider-text .one-third .overlay {
            position: relative;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            background: #fff;
            opacity: 0; }
          @media (max-width: 1199.98px) {
            .owl-carousel.home-slider .slider-item .slider-text .one-third {
              width: 85%; } }
          @media (max-width: 991.98px) {
            .owl-carousel.home-slider .slider-item .slider-text .one-third {
              width: 100%;
              z-index: -1; }
              .owl-carousel.home-slider .slider-item .slider-text .one-third .overlay {
                opacity: .7;
                background-position:center center!important;}
              .owl-carousel.home-slider .slider-item .slider-text .one-third:after {
                opacity: 0; } }
        .owl-carousel.home-slider .slider-item .slider-text .one-forth {
          width: 50%;
          position: relative; }
          @media (min-width: 768px) {
            .owl-carousel.home-slider .slider-item .slider-text .one-forth {
              position: absolute;
              top: 0;
              left: 0;
              bottom: 0;
              right: 0;
              width: 1200px;
              margin: 0 auto; } }
          @media (max-width: 991.98px) {
            .owl-carousel.home-slider .slider-item .slider-text .one-forth {
              width: 100%;
              position: absolute;
              top: 0;
              left: 0;
              right: 0;
              bottom: 180px!important;
              z-index: 1;
              padding: 1em; } }
          .owl-carousel.home-slider .slider-item .slider-text .one-forth .text {
            width: 100%; }
            @media (min-width: 992px) {
              .owl-carousel.home-slider .slider-item .slider-text .one-forth .text {
                position: absolute;
                top: 39%;
                left: 0;
                -webkit-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                transform: translateY(-50%);
                right: 0;
                max-width: 50%;
                padding-left: 45px;
                padding-right: 3em; } }
        .owl-carousel.home-slider .slider-item .slider-text .subheading {
          color: #000000;
          font-weight: 600;
          font-size: 14px;
          letter-spacing: 3px;
          text-transform: uppercase;
          color: #ffbd39; }
        .owl-carousel.home-slider .slider-item .slider-text .text {
          position: relative;
          z-index: 1; }
        .owl-carousel.home-slider .slider-item .slider-text h1 {
          margin: 0 0 6px 0;
          font-size: 48px;
          font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
          font-weight: 700;
          line-height: 56px;
          text-align: center;
          color: #012970; }
          @media (max-width: 991.98px) {
            .owl-carousel.home-slider .slider-item .slider-text h1 {
              margin: 0 0 6px 0!important;
          font-size: 35px!important;
          font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif!important;
          font-weight: 700!important;
          line-height: 40px!important;
          color: #012970!important; } }
          @media (max-width: 767.98px) {
            .owl-carousel.home-slider .slider-item .slider-text h1 {
              margin: 0 0 6px 0!important;
          font-size: 35px!important;
          font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif!important;
          font-weight: 700!important;
          line-height: 40px!important;
          color: #012970!important; } }
        .owl-carousel.home-slider .slider-item .slider-text h2 {
          color: #444!important;
          margin-top: 14px!important;
          margin-bottom: 25px!important;
          text-align: center;
          font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif!important;
          font-weight: 400!important;
          font-size: 22px!important;}
          @media (max-width: 991.98px) {
            .owl-carousel.home-slider .slider-item .slider-text h2 {
              color: #444!important;
          margin-top: 14px!important;
          margin-bottom: 25px!important;
          font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif!important;
          font-weight: 400!important;
          font-size: 22px!important; } }
        .owl-carousel.home-slider .slider-item .slider-text p {
            text-align: center!important;
          color: #444!important;
          margin-top: 14px!important;
          margin-bottom: 25px!important;
          font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif!important;
          font-weight: 400!important;
          font-size: 22px!important; }
          @media (max-width: 991.98px) {
            .owl-carousel.home-slider .slider-item .slider-text p {
              color: #444!important;
          margin-top: 14px!important;
          margin-bottom: 25px!important;
          font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif!important;
          font-weight: 400!important;
          font-size: 22px!important; } }
        .owl-carousel.home-slider .slider-item .slider-text .btn-custom {
          bordeR: 1px solid #ffbd39;
          padding: 5px 20px;
          text-transform: uppercase;
          font-size: 12px;
          letter-spacing: 3px; }
    .owl-carousel.home-slider .owl-nav {
      position: absolute;
      bottom: 60px !important;
      left: 0;
      right: 0;
      margin: 0 auto; }
      @media (max-width: 991.98px) {
        .owl-carousel.home-slider .owl-nav {
          display: none; } }
      .owl-carousel.home-slider .owl-nav .owl-prev,
      .owl-carousel.home-slider .owl-nav .owl-next {
        position: absolute;
        width: 60px;
        height: 60px;
        background: #fff !important;
        -moz-transition: all 0.7s ease;
        -o-transition: all 0.7s ease;
        -webkit-transition: all 0.7s ease;
        -ms-transition: all 0.7s ease;
        transition: all 0.7s ease;
        opacity: 1; }
        .owl-carousel.home-slider .owl-nav .owl-prev span:before,
        .owl-carousel.home-slider .owl-nav .owl-next span:before {
          font-size: 20px;
          margin-top: 7px;
          color: #000000; }
      .owl-carousel.home-slider .owl-nav .owl-prev {
        top: 0 !important;
        right: 0 !important; }
        @media (min-width: 992px) {
          .owl-carousel.home-slider .owl-nav .owl-prev {
            right: 61px !important; } }
        .owl-carousel.home-slider .owl-nav .owl-prev:hover, .owl-carousel.home-slider .owl-nav .owl-prev:focus {
          background: #000000 !important;
          outline: none !important; }
          .owl-carousel.home-slider .owl-nav .owl-prev:hover span:before, .owl-carousel.home-slider .owl-nav .owl-prev:focus span:before {
            font-size: 20px;
            margin-top: 7px;
            color: #ffbd39; }
      .owl-carousel.home-slider .owl-nav .owl-next {
        top: 0 !important;
        right: 0 !important; }
        @media (min-width: 992px) {
          .owl-carousel.home-slider .owl-nav .owl-next {
            right: 0 !important; } }
        .owl-carousel.home-slider .owl-nav .owl-next:hover, .owl-carousel.home-slider .owl-nav .owl-next:focus {
          background: #000000 !important;
          outline: none !important; }
          .owl-carousel.home-slider .owl-nav .owl-next:hover span:before, .owl-carousel.home-slider .owl-nav .owl-next:focus span:before {
            font-size: 24px;
            margin-top: 7px;
            color: #ffbd39; }
    .owl-carousel.home-slider .owl-dots {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 40px;
      width: 100%; }
      @media (max-width: 767.98px) {
        .owl-carousel.home-slider .owl-dots {
          bottom: 5px; } }
      .owl-carousel.home-slider .owl-dots .owl-dot {
        width: 10px;
        height: 10px;
        margin: 5px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4); }
        .owl-carousel.home-slider .owl-dots .owl-dot.active {
          background: #166BA5;; }

.hero-wrap {
  width: 100%;
  height: 100%;
  position: inherit;
  background-size: cover;
  background-repeat: no-repeat; }
  .hero-wrap .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    opacity: 0;
    background: #000000; }

.slider-text h1 {
  font-size: 48px;
  color: #fff;
  line-height: 1.2;
  font-weight: 400; }
  @media (max-width: 991.98px) {
    .slider-text h1 {
      font-size: 40px; } }

.slider-text p {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8); }
  .slider-text p strong {
    font-weight: 700; }
    .slider-text p strong a {
      color: #000000; }

.slider-text .breadcrumbs {
  font-size: 12px;
  margin-bottom: 20px;
  z-index: 99;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600; }
  .slider-text .breadcrumbs span {
    color: rgba(255, 255, 255, 0.8); }
    .slider-text .breadcrumbs span i {
      color: rgba(255, 255, 255, 0.8); }
    .slider-text .breadcrumbs span a {
      color: rgba(255, 255, 255, 0.8); }
      .slider-text .breadcrumbs span a:hover, .slider-text .breadcrumbs span a:focus {
        color: #ffbd39; }
        .slider-text .breadcrumbs span a:hover i, .slider-text .breadcrumbs span a:focus i {
          color: #ffbd39; }

.slider-text .bread {
  font-weight: 700;
  color: #fff;
  font-size: 7vw; }

.bg-light {
  background: #f8f9fa !important; }

.bg-dark {
  background: #191919 !important; }

.bg-primary {
  background: #ffbd39; }

.btn {
  cursor: pointer;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  border-radius: 40px;
  -webkit-box-shadow: 0px 24px 36px -11px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0px 24px 36px -11px rgba(0, 0, 0, 0.09);
  box-shadow: 0px 24px 36px -11px rgba(0, 0, 0, 0.09);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600; }
  .btn:hover, .btn:active, .btn:focus {
    outline: none; }
  .btn.btn-primary {
    font-family: "Jost", sans-serif!important;
    font-weight: 500!important;
    font-size: 16px!important;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 11px 28px!important;
    border-radius: 5px;
    transition: 0.5s;
    margin: 10px 0 0 0;
    color: #fff!important;
    background: #304e7b;}
    .btn.btn-primary:hover {
      border: 0px solid #23466E !important;
      background: #23466E!important;
      color: #fff !important; }
    .btn.btn-primary.btn-outline-primary {
      border: 0px solid #5f86c1 !important;
      background: transparent !important;
      color: #ffbd39 !important; }
      .btn.btn-primary.btn-outline-primary:hover {
        border: 2px solid transparent !important;
        background: #5f86c1 !important;
        color: #fff !important; }
  .btn.btn-secondary {
    background: #a0f669 !important;
    border: 1px solid #a0f669 !important;
    color: #fff !important; }
    .btn.btn-secondary:hover {
      border: 1px solid #a0f669 !important;
      background: transparent !important;
      color: #a0f669 !important; }
    .btn.btn-secondary.btn-outline-primary {
      border: 1px solid #a0f669;
      background: transparent;
      color: #a0f669; }
      .btn.btn-secondary.btn-outline-primary:hover {
        border: 1px solid transparent;
        background: #a0f669;
        color: #fff; }
  .btn.btn-white {
    background: #fff !important;
    border: 1px solid #fff !important;
    color: #000000 !important; }
    .btn.btn-white:hover {
      border: 1px solid #000000;
      background: #fff !important;
      color: #fff; }
    .btn.btn-white.btn-outline-white {
      border: 1px solid rgba(255, 255, 255, 0.5) !important;
      background: transparent !important;
      color: #fff !important; }
      .btn.btn-white.btn-outline-white:hover {
        border: 1px solid transparent;
        background: #ffbd39;
        color: #fff; }

 @media (min-width:1200px){
     .container.d-flex.align-items-center.justify-content-lg-between{
         max-width:max-content!important;
     }
 }