/*Reset css*/

.container {
  width: 90%;
  max-width: 1170px;
  margin: 0 auto;
}

/*Nav*/

.header {
  width: 100%;
  box-shadow: 0 0 10px #00000036;
  z-index: 9;
  transition: .2s;
  position: fixed;
  top: 0;
  background: #00000046;
}

.header:hover {
  background: #fff;
}

.header.fixed {
  position: fixed;
  top: 0;
  background: #fff!important;
  z-index: 1000;

}
.header.fixed a{
  color: #000;
}
.header.fixed .logo01 {
  display: none;

}
.header.fixed .logo02 {
  display: block;

}

@media screen and (max-width:860px){
  .header {
    background: transparent;
    box-shadow: none;
  }
.header.fixed{
  box-shadow: 0 0 4px 4px #00000015;
  }
}


.nav01 {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;

  margin: auto;
  height: 70px;
}

.logo {
  font-size: 27px;
  text-transform: uppercase;
  font-weight: 900;
  color: #000;
  margin-left: 15px;
  position: absolute;
  left: 74px;
  top: 15px;
  z-index: 100;
}

@media screen and (max-width:1127px){
  .nav01 {
    height: 70px;
  }
  
  .logo {
    margin-left: 15px;
    left: 0px;
    top: 15px;
  }
}
@media screen and (max-width:860px){
  /* .nav01 {
    height: 25px;
  } */

}


.logo01{
  display: block;
}
.logo02{
  display: none;
}
.header:hover .logo01{
  display: none;
}
.header:hover .logo02{
  display: block;
}

.nav-icon div { 
  background-color: #fff;
 }
.nav-icon:after,
 .nav-icon:before {
  background-color: #fff;
}

.header:hover .header01 .nav .nav-icon div { 
  background-color: #000;
 }
 .header:hover .header01 .nav .nav-icon:after,
 .header:hover .header01 .nav .nav-icon:before {
  background-color: #000;
}

.navbar-ul li.change a {
    color: #000 !important;
}

/* .navbar-ul li.change > ul:not(.sub-menu) {
    display: block !important
} */

/* .navbar-ul li.change .sub-menu {
    color: #195c43;
} */

/*
header:hover .logo {
  color: #000;
}

header.fixed .logo {
  color: #000;
}
*/
 .header:hover .top_nav li a {
  color: #000;
}
/*
.header.fixed .top_nav li a {
  color: #000;
} */


.logo a {
  color: #333;
  text-decoration: none;
  font-weight: 700;
}

.logo a img{
  width: 120px;

}
.nav-wrap ul {
  padding: 0;
}

.nav-wrap ul.top_nav {
  display: block!important;
}


@media screen and (max-width:1300px) {
  .nav-wrap ul.top_nav {
    display: none!important;
  }
}
@media screen and (max-width:1127px) {

  
.logo a img{
  width: 110px;

}
  
}

.top_nav li:hover {
  background-color: #2c6143;
  color: #fff;
}
.top_nav li:hover a {
  background-color: #2c6143;
  color: #fff!important;
}

.nav-wrap ul li {
  list-style: none;
  display: inline-block;
  position: relative;
}


.nav-wrap ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  /* padding: 28px 5px 28px 5px;*/
  position: relative;
  display: flex;
  height: 70px;
  width: 150px;
  justify-content: space-around;
  flex-wrap: nowrap;
  align-items: center;
  flex-direction: row;
  text-align: center;
  font-weight: 500;
}
.nav-wrap ul li.fixed a {
  color: #000;
}
.nav-wrap ul li:hover a {
  color: #fff;
}

.nav-wrap ul.sub-nav {
  display: none;
}



/* nav02    
.page {
  width: 100%;
  height: 100vh;
  background: #fdfdfd;
  font-family: 'Encode Sans Condensed', sans-serif;
  font-weight: 600;
  letter-spacing: .03em;
  color: #212121;
}

#nav-container {
  position: fixed;
  height: 100vh;
  width: 100%;
  pointer-events: none;
}
#nav-container .bg {
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100% - 70px);
  visibility: hidden;
  opacity: 0;
  transition: .3s;
  background: #000;
}
#nav-container:focus-within .bg {
  visibility: visible;
  opacity: .6;
}
#nav-container * {
  visibility: visible;
}

.button {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  border-radius: 0;
  height: 70px;
  width: 30px;
  cursor: pointer;
  pointer-events: auto;
  margin-left: 25px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
.icon-bar {
  display: block;
  width: 100%;
  height: 3px;
  background: #aaa;
  transition: .3s;
}
.icon-bar + .icon-bar {
  margin-top: 5px;
}

#nav-container:focus-within .button {
  pointer-events: none;
}
#nav-container:focus-within .icon-bar:nth-of-type(1) {
  transform: translate3d(0,8px,0) rotate(45deg);
}
#nav-container:focus-within .icon-bar:nth-of-type(2) {
  opacity: 0;
}
#nav-container:focus-within .icon-bar:nth-of-type(3) {
  transform: translate3d(0,-8px,0) rotate(-45deg);
}

#nav-content {
  margin-top: 70px;
  padding: 20px;
  width: 90%;
  max-width: 300px;
  position: absolute;
  top: 0;
  left: 0;
  height: calc(100% - 70px);
  background: #ececec;
  pointer-events: auto;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  transform: translateX(-100%);
  transition: transform .3s;
  will-change: transform;
  contain: paint;
}

#nav-content ul {
  height: 100%;
  display: flex;
  flex-direction: column;
}

#nav-content li a {
  padding: 10px 5px;
  display: block;
  text-transform: uppercase;
  transition: color .1s;
}

#nav-content li a:hover {
  color: #BF7497;
}

#nav-content li:not(.small) + .small {
  margin-top: auto;
}

.small {
  display: flex;
  align-self: center;
}

.small a {
  font-size: 12px;
  font-weight: 400;
  color: #888;
}
.small a + a {
  margin-left: 15px;
}

#nav-container:focus-within #nav-content {
  transform: none;
}
*/



@media screen and (min-width: 919px) {
  .nav-wrap ul.sub-nav {
    display: none;
    width: 150px;
    color: #fff;
    right: 0;
    padding: 0px 0px;
    margin: 0px;
    position: absolute;
    left: 0px;
    -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    overflow: hidden;
  }

  .nav-wrap ul.sub-nav ul.sub-nav {
    left: 100%;
    top: 0;
    z-index: 1;
  }

  .nav-wrap li:hover>ul.sub-nav,
  .nav-wrap ul.sub-nav li {
    display: block;

  }

  .nav-wrap ul.sub-nav li a {
    display: block;
    margin: 0;
    background: #2c6143;
    height: 30px;
    text-align: left;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    padding: 10px 0px 10px 10px;
    line-height: 30px;
    opacity: 0.85;
  }

  .nav-wrap ul.sub-nav li:hover>a {
    background:#214e34;
  }

  /*
  .nav-wrap li:hover > ul {
    display: block;
    -moz-animation: fadeInUp 0.3s ease-in;
    -webkit-animation: fadeInUp 0.3s ease-in;
    animation: fadeInUp 0.3s ease-in;
  }*/
  /*
  .nav-wrap > ul > li:not(:last-child) {
    margin-right: 30px;
  }*/
  .nav-wrap ul ul li:hover>ul {
    display: block;
    -moz-animation: fadeInRight 0.3s ease-in;
    -webkit-animation: fadeInRight 0.3s ease-in;
    animation: fadeInRight 0.3s ease-in;
  }

  /*
  .nav-wrap ul li.has-submenu:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f078";
    font-size: 16px;
    color: #fff;
    padding-right: 5px;
  }*/
  .nav-wrap ul ul li.has-submenu:after {
    color: #333;
    transform: rotate(-90deg);
    position: absolute;
    right: 8px;
    top: 50%;
    padding: 0;
    margin-top: -7px;
  }

  .nav-wrap ul li.submenu-active>ul.sub-nav {
    display: none !important;
  }

  .nav-wrap ul li.submenu-active:hover>ul.sub-nav {
    display: block !important;
  }

  /*Hover Effect*/
  /*
  .nav-wrap > ul > li:before {
    content: "";
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transform-origin: bottom right;
    transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
  }
  .nav-wrap > ul > li.active:before,
  .nav-wrap > ul > li:hover:before {
    transform: scaleX(1);
    transform-origin: bottom left;
  }*/
}






/*Res Button
nav02

.nav-button {
  height: 27px;
  width: 36px;
  margin-left: 30px;
   //display: none;
}

.nav-button {
  display: block;
}

.show_menu #nav-toggle span:after {
  transform: translate3d(0, -10px, 0) rotate(-91deg);
  width: 36px;
}

.show_menu #nav-toggle span {
  transform: translate3d(0, 0px, 0) rotate(45deg);
}

.show_menu #nav-toggle span:before {
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  width: 36px;
  opacity: 0;
}

.nav-button a {
  height: 27px;
  width: 36px;
  display: inline-block;
  cursor: pointer;
}

.nav-button span,
.nav-button span:before,
.nav-button span:after {
  cursor: pointer;
  border-radius: 50px;
  height: 2px;
  width: 36px;
  background: #000;
  position: absolute;
  display: block;
  content: "";
  transition: all 300ms ease-in-out;
}

.nav-button span {
  margin: 10px 0 0 0;
}

.nav-button span:before {
  top: -10px;
  width: 20px;
}

.nav-button span:after {
  top: 10px;
  width: 20px;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
*/




.leftline {
  width: 1px;
  height: 100%;
  position: fixed;
  background-color:#e9e9e9;
  left: 70px;
  top: 0;
  opacity: 0.4;
}


/*leftnav*/

.leftnav {
  position: fixed;
  left: 5px;
  transform: translateY(-50%);
  top: 50%;
  z-index: 10000;
}


@media screen and (max-width:1127px) {
  
.leftline {
  display: none;
}

/*leftnav*/

.leftnav {
  display: none;
}

}



ul.leftnav-listing {
  display: inline-block;
  padding: 20px 0;
  width: 58px;

}

ul.leftnav-listing.leftnav-fixed {
  position: fixed;
  max-width: 300px;
  transform: translateY(-50%);
  top: 50%;
}

ul.leftnav-listing li {
  display: block;
  border-radius: 50%;
  /* overflow:hidden; */
  text-align: center;
  max-width: 25px;
  margin: 0 auto 20px auto;
  font-size: 0;
  position: relative;
}

ul.leftnav-listing li:last-child {
  margin-bottom: 0;
}

ul.leftnav-listing li a {
  display: inline-block;
  font-size: 16px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #ffffff5b;
  padding: 5px;
}

ul.leftnav-listing li.is_visiable_section a {
  background-color: #ffffff5b;
}

ul.leftnav-listing li.is_visiable_section a:before {
  background-color: #fff;
  content: '';
  display: block;
  border-radius: 100%;
  width: 10px;
  height: 10px;
}

ul.leftnav-listing li.is_visiable_section.green a {
    background-color: #CBCFC7
}

ul.leftnav-listing li.green a {
    background-color: #CBCFC7
}

ul.leftnav-listing li.is_visiable_section.green a:before {
    background-color: #525E45
}








/*Demo Extra css
footer {
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}*/
/*
.section {
  height: 100vh;
  background: #010a43;
  display: flex;
  align-items: center;
  font-size: 5vw;
  color: #ffff;
  justify-content: center;
  text-transform: uppercase;


}

.section span {
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.02em;
  -webkit-text-stroke-color: #fff;
  -webkit-text-stroke-width: 0.02em;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-repeat: no-repeat;
  transition: background-size 0.5s cubic-bezier(0.67, 0.01, 0.15, 0.98);
  background-image: linear-gradient(135deg,
      #fff 0%,
      #fff 50%,
      transparent 50.1%);
  background-size: 0% 100%;
}

.section span:hover {
  background-size: 220% 100%;
}*/

/*Res Button
@media screen and (max-width: 919px) {
  .nav-button {
    display: block;
  }

  .show_menu #nav-toggle span:after {
    transform: translate3d(0, -10px, 0) rotate(-91deg);
  }

  .show_menu #nav-toggle span {
    transform: translate3d(0, 0px, 0) rotate(45deg);
  }

  .show_menu #nav-toggle span:before {
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0;
  }
}*/

@media screen and (max-width: 919px) {
  /* nav {
    padding: 20px 0;
  } */

  .nav-wrap ul.top_nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #051124;
    height: calc(100vh - 85px);
    overflow-y: scroll;
  }

  .nav-wrap>ul li {
    width: 100%;
    border-top: 1px solid #374760;
    position: relative;
  }

  .nav-wrap>ul>li:last-child {
    border-bottom: 1px solid #374760;
  }

  .nav-wrap>ul>li a {
    width: 100%;
    margin: 0;
    font-size: 20px;
    width: 100%;
    display: block;
    padding: 20px 6% 21px 6%;
    color: #fff;
  }

  ul li span.down-arrow {
    position: absolute;
    height: 64px;
    width: 50px;
    top: 0;
    right: 0;
    z-index: 2;
    cursor: pointer;
    user-select: none;
  }

  .nav-wrap ul li a:not(:only-child) {
    width: auto;
    display: inline-block;
  }

  .nav-wrap>ul li.has-submenu:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f078";
    left: inherit;
    right: 34px;
    font-size: 16px;
    margin-top: -7px;
    position: absolute;
    top: 33px;
    color: #fff;
  }

  .nav-wrap ul ul a {
    padding-left: 9%;
  }
}

/*Nav*/