@import 'fonts.css';
@import 'fontawesome/css/all.min.css';
@import 'map.css';

    /* scrollbar */
				
		/* The emerging W3C standard
		   that is currently Firefox-only */
           * {
            scrollbar-width: thin;			/* "auto" or "thin"  */
            scrollbar-color: #5fa738 white;	/* scroll thumb & track */ 
          }
          
          /* Works on Chrome/Edge/Safari */
          *::-webkit-scrollbar {
            width: 15px;						 /* width of the entire scrollbar */
          }
          *::-webkit-scrollbar-track {
            background: white;				 /* color of the tracking area */
          }
          *::-webkit-scrollbar-thumb {
            background-color: #5fa738;			/* color of the scroll thumb */
            border-radius: 20px;				/* roundness of the scroll thumb */
            border: 3px solid white;			/* creates padding around scroll thumb */
          }

          body {
            -webkit-text-size-adjust: 100%;
            -webkit-tap-highlight-color: rgba(0,0,0,0);
            background-color: #fff;
            color: #222136;
            font-family: Exo,Helvetica,Arial,sans-serif;;
            font-size: 1rem;
            font-weight: 400;
            line-height: 1.5;
            margin: 0;
            text-align: left;
        }

body {
    min-height: 75rem;
    padding-top: 7.5rem;
}

.navbar{ background-color: #fff;}

.stickybar {
    background-color: #fff;
    z-index: 9999;
    transition: all 300ms linear;
}
.navbar-brand {
    margin-right: 0;
 }
    .navbar-brand   img {
      transition: all .3s ease-in-out;
   
  }
  .navbar-toggler {
    border: 0;
}
.navbar-toggler   img {
      width: 30px;

    }
 
    .stickybar.stickybar--sticked  .navbar-brand  img {
            width: 260px;
            height: auto;
          
      }
    
      a {
        text-decoration: none;
    }
    a {
        color: #222136;
    }

@media (max-width: 1279.98px){
.stickybar .navbar-collapse.show {
    background-color: rgba(95,167,56,.9);
    overflow: auto;
    padding-bottom: 40px;
    transform: translateX(0);
    visibility: visible;
}
}
@media (max-width: 1279.98px){
.stickybar .navbar-collapse {
    background-clip: padding-box;
    bottom: 0;
    display: flex;
    flex-direction: column;
    left: 0;
    max-width: 90%;
    outline: 0;
    position: fixed;
    top: 0;
    transform: translateX(-100%);
    transition: visibility .3s ease-in-out,transform .3s ease-in-out;
    visibility: hidden;
    width: 400px;
    z-index: 1045;
}
}

.text-text {
    --bs-text-opacity: 1;
    color: rgba(34,33,54,1) !important;
}

.btn.btn-icon span, .ms-2 {
    margin-left: 0.5rem!important;
}
@media (min-width: 1280px){
.fs-xl-tip-small {
    font-size: .75rem!important;
}
}

.fs-note-small, .header-home__content__text {
    font-size: .875rem!important;
}

.btn.btn-outline-secondary {
    border-width: 3px;
}
.btn.btn-custom {
    background-color: transparent;
    border-radius: 25px;
    padding: 8px 30px;
    text-transform: uppercase;
}
.btn.btn-custom, a {
    transition: all .3s ease-in-out;
}
.btn.btn-custom, .fw-bold, .icon-holder__single-icon__title, .line span {
    font-weight: 700!important;
}
.btn-outline-secondary {
    --bs-btn-color: #5fa738;
    --bs-btn-border-color: #5fa738;
    --bs-btn-hover-color: #000;
    --bs-btn-hover-bg: #5fa738;
    --bs-btn-hover-border-color: #5fa738;
    --bs-btn-focus-shadow-rgb: 95,167,56;
    --bs-btn-active-color: #000;
    --bs-btn-active-bg: #5fa738;
    --bs-btn-active-border-color: #5fa738;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0,0,0,.125);
    --bs-btn-disabled-color: #5fa738;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #5fa738;
    --bs-gradient: none;
}
.btn {
    --bs-btn-padding-x: 0.75rem;
    --bs-btn-padding-y: 0.375rem;
    --bs-btn-font-family: ;
    --bs-btn-font-size: 1rem;
    --bs-btn-font-weight: 400;
    --bs-btn-line-height: 1.5;
    --bs-btn-color: #222136;
    --bs-btn-bg: transparent;
    --bs-btn-border-width: 1px;
    --bs-btn-border-color: transparent;
    --bs-btn-border-radius: 0.375rem;
    --bs-btn-hover-border-color: transparent;
    --bs-btn-box-shadow: inset 0 1px 0 hsla(0,0%,100%,.15),0 1px 1px rgba(0,0,0,.075);
    --bs-btn-disabled-opacity: 0.65;
    --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(95,167,56,.5);
    background-color: transparent;
    border: 1px solid #5fa738;
    color: #5fa738;
    cursor: pointer;
    display: inline-block;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    padding: 0.375rem 0.75rem;
    text-align: center;
    text-decoration: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    vertical-align: middle;
}

		
	/* MODAL OVERLAY LOADING */
		
		/* Start by setting display:none to make this hidden.
		   Then we position it in relation to the viewport window
		   with position:fixed. Width, height, top and left speak
		   speak for themselves. Background we set to 80% white with
		   our animation centered, and no-repeating */
           #page-loading-overlay {
			display:    none;
			position:   fixed;
			z-index:    999999992;
			top:        0;
			left:       0;
			height:     100%;
			width:      100%;
			background: rgba( 0, 0, 0, .5 ) 
						/*url('../scripts/jquery/loader.gif')
						50% 50%*/ 
						no-repeat;
		}
			
		#page-loading-overlay .loader {
		  border: 16px solid #f3f3f3;
		  border-radius: 50%;
		  border-top: 16px solid #000000 ;
		  width: 120px;
		  height: 120px;
		  -webkit-animation: spin 2s linear infinite;
		  animation: spin 2s linear infinite;
		  margin:auto;
		  left:0;
		  right:0;
		  top:0;
		  bottom:0;
		  position:fixed;
		}
		
		@-webkit-keyframes spin {
		  0% { -webkit-transform: rotate(0deg); }
		  100% { -webkit-transform: rotate(360deg); }
		}
		
		@keyframes spin {
		  0% { transform: rotate(0deg); }
		  100% { transform: rotate(360deg); }
		}
	
		/* When the body has the loading class, we turn
		   the scrollbar off with overflow:hidden */
		body.page-loading-overlay {
			overflow: hidden;  /* 
			margin-right:25px;*/
		}
		
		/* Anytime the body has the loading class, our
		   modal element will be visible */
		body.page-loading-overlay #page-loading-overlay {
			display: block;
		}	