/*----------------global css---------------*/ 

:root {
    /* Define padding variables for different sections */
    --section-padding-top: 100px;
    --section-padding-bottom: 100px;
	--section-padding-top-two: 90px;
	
	--section-padding-top-three: 50px;
	--section-padding-bottom-three: 50px;
	
	--section-padding-top-small: 30px;
	--section-padding-bottom-small: 30px;
	
	--margin-top-20: 20px;
	--margin-top-30: 30px;
	--margin-top-40: 40px;
	
	--font-weight-sp-1: 700;
	--font-size-sp-1: 42px;
	
	/* Default link styles */
	--link-color: #064a07;
	--link-text-decoration: none;

	/* Focus state styles */
	--link-focus-color: #089f0a;
	--link-focus-text-decoration: none;
	--link-focus-outline: none;

	/* Hover state styles */
	--link-hover-color: #089f0a;
	--link-hover-text-decoration: none;
	
	/* Custom Font Size */
	--font-size-sp-2: 19px; 
	--line-height-sp-2: 31px;
	
	/* Text Center */
	--text-center: center;
	
	
	
}


.mt-20{
	margin-top: var(--margin-top-20);
}
	
.mt-30{
	margin-top: var(--margin-top-30);
}
	
	
.mt-40{
	margin-top: var(--margin-top-40);
}


.section-large {
    padding-top: var(--section-padding-top);
    padding-bottom: var(--section-padding-bottom);
}

.section-large-two {
    padding-top: var(--section-padding-top-two);
}

.section-large-three {
    padding-top: var(--section-padding-top-three);
    padding-bottom: var(--section-padding-bottom-three);
}

.section-small {
    padding-top: var(--section-padding-top-small);
    padding-bottom: var(--section-padding-bottom-small);
}

.section-padding-bottom{
	padding-bottom: var(--section-padding-bottom-small);
	
}

.specialh1 {
    font-size: var(--font-size-sp-1);
    font-weight: var(--font-weight-sp-1);
    font-family: 'Eras Bold';
}


a {
  color: var(--link-color);
  text-decoration: var(--link-text-decoration);
}

a:focus {
  color: var(--link-focus-color);
  text-decoration: var(--link-focus-text-decoration);
  outline: var(--link-focus-outline);
}

a:hover {
  color: var(--link-hover-color);
  text-decoration: var(--link-hover-text-decoration);
}

.custom-font-10{
    font-size: var(--font-size-sp-2)!important;
    line-height: var(--line-height-sp-2)!important;
}

.custom-heading-40{
    text-align: var(--text-center);
    font-weight: var(--font-weight-sp-1);
}




 #sidebar-wrapper {
    margin-right: -250px;
    right: 0;
    width: 250px;
    background: rgb(0,0,0);
    position: fixed;
    height: 100%;
    overflow-y: auto;
    z-index: 1000;
    transition: all 0.5s ease-in 0s;
    -webkit-transition: all 0.5s ease-in 0s;
    -moz-transition: all 0.5s ease-in 0s;
    -ms-transition: all 0.5s ease-in 0s;
    -o-transition: all 0.5s ease-in 0s;
  }

  .sidebar-nav {
    position: absolute;
    top: 0;
    width: 250px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .sidebar-nav li {
    line-height: 50px;
    text-indent: 20px;
  }

  .sidebar-nav li a {
    color: #999999;
    display: block;
    text-decoration: none;
  }

  .sidebar-nav li a:hover {
    color: #fff;
    background: rgba(255,255,255,0.2);
    text-decoration: none;
  }

  .sidebar-nav li a:active, .sidebar-nav li a:focus {
    text-decoration: none;
  }

  .sidebar-nav > .sidebar-brand {
    height: 55px;
    line-height: 55px;
    font-size: 18px;
  }

  .sidebar-nav > .sidebar-brand a {
    color: #999999;
  }

  .sidebar-nav > .sidebar-brand a:hover {
    color: #fff;
    background: none;
  }

  #menu-toggle {  
    top: 0;
    right: 0;
    position: fixed;
    z-index: 1;
  }

  #sidebar-wrapper.active {
    right: 250px;
    width: 250px;
    transition: all 0.5s ease-out 0s;
    -webkit-transition: all 0.5s ease-out 0s;
    -moz-transition: all 0.5s ease-out 0s;
    -ms-transition: all 0.5s ease-out 0s;
    -o-transition: all 0.5s ease-out 0s;
  }

  .toggle {
    margin: 5px 5px 0 0;
  }

/*----------------smoothscroll css---------------*/

