@charset "utf-8";
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  font-size: 1rem;
  line-height: 1.5;
}


.circle{
    width: auto;
    height: 100px;
    border: double 25px rgba(0,0,0,0.7);
    background: rgba(0,0,0,0.7);
    background-clip: padding-box;
}


/* Content wrapper */
.wrapper {

}

.wrapper-small {
}

.wrapper-flush {
}

/**
 * Navigation
 */
.nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10000;
}

/**
* Nav container
* 1. Ensure this slides in below parent
* 2. Hide by default
* 3. Smoother scrolling experience on iOS
*/
/**
* Nav container
* 1. Ensure this slides in below parent
* 2. Hide by default
* 3. Smoother scrolling experience on iOS
*/
.nav-container {
  position: fixed;
  top: 0px; /* 1 */
  right: 0;
  z-index: 9;
  overflow-y: auto;
  visibility: hidden; /* 2 */
  width: 100%;
  height: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
  transform: translateX(100%); /* 2 */
  background-color: #c0c0c0;
  -webkit-overflow-scrolling: touch; /* 3 */
}

/* 1. Show when `.is-visible` class is added */
.nav-container.is-visible {
  visibility: visible; /* 1 */
  transform: translateX(0); /* 1 */
}

/* Nav toggle */
.nav-toggle {
  cursor: pointer;
  line-height: 1;
  display: inline-block;
  padding: 25px 15px 25px 15px;
  border: 0;
  background-color: #70b83d;
  float: right;
  z-index: 999;
  position: relative;
}

/* Nav toggle icon */
.nav-toggle .icon-menu {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 20px;
  vertical-align: middle;
  fill: none;
}

/* Nav toggle icon lines */
.icon-menu .line {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 4px;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1.000);
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1.000);
  background-color: #fff;
}

/* Nav toggle icon line 1 */
.icon-menu .line-1 {
  top: 0;
}

/* When active, rotate line 1 to be lefthand part of X */
.is-active .icon-menu .line-1 {
  transform: translateY(8px) translateX(0) rotate(45deg);
}

/* Nav toggle icon line 2 */
.icon-menu .line-2 {
  top: 50%;
  margin-top: -2px;
}

/* When active, hide line 2 */
.is-active .icon-menu .line-2 {
  opacity: 0;
}

/* Nav toggle icon line 3 */
.icon-menu .line-3 {
  bottom: 0;
}

/* When active, rotate line 3 to be righthand part of X */
.is-active .icon-menu .line-3 {
  transform: translateY(-8px) translateX(0) rotate(-45deg);
}

/* Remove default list styles for menus */
.menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/**
* 1. Give menu a lighter background than its container
* 2. Prevent menu text from being accidentally highlighted
*/
.nav-menu {
  user-select: none;         /* 2 */
  float: right;
}

/* Give menu items a top border */
.nav-menu .menu-item {
}

/* Give last menu item a bottom border */
.nav-menu > .menu-item:last-child {
}

/* Darker background color on hover, and when toggled */
.nav-menu > .menu-item:hover{
  color: #76b535;
}

/* 1. Menu links are block level, by default */
.nav-menu .menu-link {
  display: block; /* 1 */
  text-decoration: none;
  color: #2d2d2d;
  padding: 20px 0px;
  margin-left: 25px;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s ease;
     -webkit-transition: all 0.3s ease;
     -moz-transition: all 0.3s ease;
     -o-transition: all 0.3s ease;
}

.nav-menu .menu-link:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  margin: 0px;
  width: 0%;
  height: 2px;
  background: #76b535;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  -ms-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s
  }

.nav-menu .menu-link:hover:after {
  width: 100%
}
.nav-menu .menu-link:hover {
color: #76b535;
}


/* 1. Menu items with dropdowns appear clickable */
.has-dropdown {
  position: relative;
  cursor: pointer; /* 1 */
}

/* 1. Parent menu links inlined so you can toggle the dropdown */
.has-dropdown > .menu-link {
  display: inline-block;
}

/* 1. Add an icon to menu items that have sub menus */
.has-dropdown:after {
  font-size: 22px;
  position: absolute;
  top: 0;
  right: 1rem;
  bottom: 0;
  content: "+"; /* 1 */
  color: #76b535;
}

/* 1. Switch icon to n-dash when toggled */
.has-dropdown.is-active:after {
  content: "\2013"; /* 1 */
}

/**
 * Dropdowns
 * 1. Hide dropdowns by default
 */
.nav-dropdown {
  display: none; /* 1 */
  background-color: #c0c0c0;

}

/* 1. Show dropdown when toggled */
.has-dropdown.is-active > .nav-dropdown {
  display: block; /* 1 */
}

/* 2nd level dropdown */
.nav-dropdown .nav-dropdown {
  background-color: #aaa;
  z-index: 999;
}

.nav-dropdown .menu-item {
  border-color:#cc121a;

}

.nav-dropdown .nav-dropdown .menu-item {
  background-color: #b0b0b0;
  border-color: #909090;
}

/* Main content area */
.content {
  margin-top: 60px;
}

.content .wrapper {
  padding: 1rem 0;
}



@media (min-width: 1000px) {
  .nav {
    background-color: #dedede;
  }



  .nav,
  .nav-container,
  .nav-container.is-visible {
    position: static;
    top: auto;
    left: auto;
    z-index: auto;
    transform: translateX(0);
  }

  .nav-container,
  .nav-container.is-visible {
    visibility: visible;
    height: auto;
    min-height: 0;
    overflow-y: visible;
  }

  .nav-toggle {
    display: none;
  }

  /* 1. Display menu items inline */
  .nav-menu > .menu-item,
  .nav-menu > .menu-item.is-active {
    display: inline-block; /* 1 */
    background-color: transparent;
    border: 0;
  }

  /* Remove bottom border on last child */
  .nav-menu > .menu-item:last-child {
    border: 0;
  }

  .nav-menu .menu-item {
    transition:
      background-color 0.15s ease-in-out,
      color 0.15s ease-in-out;
  }

  /* Remove +/- icons */
  .has-dropdown:after {
    content: "" !important;
  }

  /* Add a caret to top-level menu items that have dropdowns */
  .nav-menu > .has-dropdown:after {
    position: absolute;
    top: 50%;
    right: 1rem;
    width: 0;
    height: 0;
    margin-top: -2px;
    margin-left: -4px;
    content: "";
    border-width: 5px 5px 0 5px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
  }


  /* Re-style dropdowns for larger screens */
  .nav-dropdown {
    display: block;
    opacity: 0;
    position: absolute;
    top: 100%;
    width: 250px;
    margin: 0;
    padding: 0px;
    padding-top: 5px;
    background-color: #0b0910;
    box-shadow: 0 0 4px hsla(0, 0%, 0%, 0.15);
    visibility: hidden;
    transition:
      visibility 0s linear 0.25s,
      opacity 0.25s linear;
  }

  .has-dropdown:hover > .nav-dropdown {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
  }

  .nav-dropdown .menu-link  {
    border: 0;
    font-size: 13px !important;
    padding-top: 8px ;
    padding-bottom:8px;
    color: #fff;
    margin-left: 0px;
    padding-left: 20px;
  }

  .nav-dropdown .menu-link:hover  {
    color: #fff;
  }

  .nav-dropdown .menu-item:hover,
  .nav-dropdown .nav-dropdown .menu-item:hover {
    background-color: #d0382d;
    color: #fff;
  }

  .nav-dropdown .nav-dropdown,
  .nav-dropdown .nav-dropdown .menu-item {
    background-color: #dedede;
  }

  .nav-dropdown .nav-dropdown {
    z-index: 9998;
    top: 0;
    left: 100%;
  }

  .content {
    margin-top: 0;
  }





}/* CSS Document */



@media screen and (max-width: 1100px) {
  .nav-menu .menu-link {
    padding: 20px 0px;margin-left: 20px;}

}
@media screen and (max-width: 1050px) {
  .nav-menu .menu-link {
    padding: 20px 0px;margin-left: 15px; }

}

@media screen and (max-width: 959px) {
  .nav-container{
    background-color: #353535;
    padding-right: 20px;
  }
  .nav-container {
    width: 300px;
    max-width: 90%;
    padding-top: 20px;
  }


  .nav-dropdown .menu-item {
    background: #353535 !important;
    border-bottom: 0px solid #2579c6;
    padding-left: 20px;
  }

}





@media screen and (max-width: 959px) {
  .nav-menu .menu-link {
    padding: 10px 5px;
    font-size: 13px;
    color: #fff;
  }
  .nav-menu .menu-item {
    width: 100%;
    float: left;
  }
}



@media screen and (max-width: 560px) {
  .nav-toggle {
    outline: none;
    padding: 15px 15px 13px 15px; }


}
