/*indexnew css file*/
@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
		
.wrapper {
  max-width: 100%;
  padding-left: 4%;
  padding-right: 4%;
  /*margin-left: auto;*/
  /*margin-right: auto;*/
 
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #fff;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Poppins', sans-serif;
}

.sr-only {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.nav_alink{
  margin:0px; 
  padding:20px; 
  padding-left:7%;
}

.nav_alink:hover{
  background-color:#E31E24;	
  color:#fff;
}

.nav_alink:focus{
  background-color:red;	
}
.nav_right_alink{
    color:#fff;
}
.nav_right_alink:hover{
    color:#E31E24;	
}
.nav_right_alink:focus{
  color:red;
}
.button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #fff;
  background-color: #000000;
  min-width: 120px;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-align: center;
}

.button svg {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  fill: #fff;
}

.button span {
  display: none;
}

@media (min-width: 600px) {
  .button span {
    display: initial;
  }
}

.button--icon {
  min-width: initial;
  padding: 0.5rem;
}


.brand {
  font-weight: bold;
  font-size: 19px; }

.site-header {
  position: relative;
  background-color: #000000; }

.site-header__wrapper {
  margin:0;
  width:100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 1rem;
  padding-bottom: 1rem; } 

.site-header__start {
  display: flex;
  align-items: center; }
  .site-header__start > * + * {
    margin-left: 1rem; }

@media (max-width: 679px) {
  .site-header__end {
    flex: 0 0 100%;
    order: 2;
    margin-top: 1rem; } }

.nav__wrapper {
  position: absolute;
  top: 66px;
  left: 0;
  width: Max(320px, 20%);
  bottom: 0;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transform: translateX(-100%);
  background-color: #000000;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  display: block; }
  .nav__wrapper.active {
    visibility: visible;
    opacity: 1;
    transform: translateX(0); }
  @media (max-width: 679px) {
    .nav__wrapper {
      top: 101px;
      /* Use a CSS variable and get JS help */ } }
.nav__item {
    background-color:#000000;
  border-bottom: 1px solid #fff; 
  }
  .nav__item a {
    display: block;
    color:#fff;
    padding: 1.5rem 1rem; }

.sub-nav {
  display: flex;
  flex-wrap: wrap; }
  .sub-nav li:not(:last-child) {
    margin-right: 1.5rem; }
  @media (max-width: 679px) {
    .sub-nav {
      background: rgba(0, 0, 0, 0.1);
      margin: 0 -1rem -1rem;
      padding: 1rem; } }


