
body{

  font-family: gill-sans-normal;
}
a{
    text-decoration:none;
}
:root {
  
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.menu-link{

    color:#323232;
}

header .menu-link span{
  position:relative;
  padding-bottom:5px;
  font-family: 'Poppins';
}

header .active span {
    color: #d8b15d;
}
header .menu-link span:before{
  content:'';
  width:0;
  height:2px;
  position:absolute;
  left:0;
  bottom:0;
  background:#000;
  transition:all ease-in 0.5s ;
}
header .menu-link:hover span:before{
 width:100%;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: auto;
  padding:0px 0;
  background-color: var(--color-white-100);
  
}

.brand {
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--color-blue-300);
}

.navbars {
  width: 100%;
  margin-inline: auto;
  box-shadow: var(--shadow-medium);
  padding:15px 25px;
  border-radius:30px;
}
.navbars ul{
    margin:0;
    padding:0;
}
.navbars-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  height: 100%;
}
.navbars-block {
  position: absolute;
  left: 0;
  height: calc(100vh - 4rem);
  opacity: 0;
  overflow: auto;
  pointer-events: none;
  background-color: var(--color-white-100);
  transition: opacity 0.4s ease;
}
.navbars-block.is-active {
  opacity: 1;
  pointer-events: initial;
}

@media screen and (min-width: 62rem) {
  .navbars {
    display: flex;
/*    justify-content:space-between;*/
  }
  .navbars-block {
    position: initial;
    height: initial;
    opacity: 1;
    overflow: auto;
    pointer-events: visible;
    background: none;
    transition: none;   
  }
}
.menu {
  padding-block: 1rem;
  padding-inline: auto;
}
.menu-link {
  font-size: var(--text-base);
  font-weight: 500;
  line-height: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.5rem;
  padding-inline: 1.5rem;
 
  transition: color 0.3s ease;
  font-size:14px;
}
header .menu-link:hover{

color:#444;
}

@media screen and (min-width: 62rem) {
  .menu {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    height: 100%;
    padding: unset;
  }
  .menu-item {
    display: flex;
    cursor: pointer;
    padding-inline: 0.5rem;
    text-transform: uppercase;
  }
  .menu-link {
    padding: unset;
  }
}
.dropdowns-toggle {
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.dropdowns-toggle i.bx {
  font-size: 1.5rem;
  line-height: inherit;
  transition: rotate 0.4s ease;
}
.dropdowns-contents {
  height: 0;
  overflow: hidden;
  background-color: var(--color-white-100);
  transition: height 0.5s ease;
}
.dropdowns-column, .dropdowns-group, .dropdowns-items {
  display: grid;
}
.dropdowns-group {
  padding-bottom: 1rem;
  padding-inline: 1.5rem;
}
.dropdowns-title {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  align-items: center;
  padding-inline: 1rem;
}
.dropdowns-icon i.bx {
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--color-blue-300);
}
.dropdowns-items {
  row-gap: 0.5rem;
  padding-inline: 3.5rem;
  padding-top: 0.35rem;
}
.dropdowns-link {
  font-size: var(--text-base);
  font-weight: 400;
  line-height: inherit;
  color: var(--color-black-500);
  transition: color 0.3s ease;
}
.dropdowns-show > .dropdowns-toggle i.bx {
  rotate: 180deg;
}
.dropdowns-block {
  display: flex;
  align-items: flex-start;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  padding-top: 1rem;
  padding-inline: 1rem;
}

@media screen and (min-width: 62rem) {
  .dropdowns-toggle {
    -moz-column-gap: 0.35rem;
         column-gap: 0.35rem;
    pointer-events: none;
  }
  .dropdowns-contents {
    position: absolute;
    left: 0;
    right: 0;
    top: 6rem;
    opacity: 0;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    pointer-events: none;
    background-color: var(--color-white-100);
    border-top: 2px solid var(--color-white-200);
    box-shadow: var(--shadow-large);
    transition: top 0.4s, opacity 0.3s ease;
  }
  .dropdowns-column {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    max-width: 75rem;
    margin-inline: auto;
  }
  .dropdowns-group {
    align-content: baseline;
    row-gap: 1.25rem;
    padding-block: 4rem;
  }
  .dropdowns-group:first-child, .dropdowns-group:last-child {
    margin: unset;
  }
  .dropdowns-items {
    padding-top: unset;
  }
  .dropdowns-block {
    padding-top: unset;
    padding-inline: unset;
  }
  .dropdowns:hover > .dropdowns-contents {
    cursor: initial;
    top: 4.25rem;
    opacity: 1;
    pointer-events: initial;
  }
  .dropdowns:hover > .dropdowns-toggle i.bx {
    rotate: 180deg;
  }
}
.burger {
  position: relative;
  display: block;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 1.5rem;
  height: 1rem;
  border: none;
  outline: none;
  visibility: visible;
}
.burger-line {
  position: absolute;
  display: block;
  right: 0;
  width: 100%;
  height: 2.15px;
  opacity: 1;
  rotate: 0deg;
  border-radius: 0.15rem;
  background-color: #000;
  transition: all 0.3s ease;
}
.burger-line:nth-child(1) {
  top: 0px;
}
.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}
.burger-line:nth-child(3) {
  top: 1rem;
}
.burger.is-active > .burger-line:nth-child(1) {
  top: 0.5rem;
  rotate: 135deg;
}
.burger.is-active > .burger-line:nth-child(2) {
  opacity: 0;
}
.burger.is-active > .burger-line:nth-child(3) {
  top: 0.5rem;
  rotate: -135deg;
}

@media screen and (min-width: 62rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
}

@media screen and (max-width: 767px){
  .header{
    background-color:#fff;
  }
  .sign_btn {
    padding: 5px 14px;
    font-size: 1.2rem;
    border-radius: 5px;
}
  .navbars{
    box-shadow:none;
  }
  .navbars-block{
    background:#fff;
    left:-50%;
    transition:all ease-in 0.3s;
  }
  .navbars-block.is-active{
    left:0;
    transition:all ease-in 0.3s;
    background:#fff;
  }
  .navbars-block{
        width: 50%;
  }
  header .menu-item{
    border-bottom:solid 1px #ccc;
  }
}
