@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;if;
}
/* vars */
/* hide show mixin */
/* global  styles */


/*.menu::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 47px;
  background: #6659516e;
  bottom: 7px;
}*/
.new-menu {
    width: 100%;
    float: left;
    background: #413f3fd6;
}
.menu {
  z-index: 99;
  position: relative;
  padding: 0px 0 0 0;
}
.menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu,
.menu a {
  color: #e2e2e2;
  text-decoration: none;
}

.menu a {
  display: block;
  white-space: nowrap;
}

.menu-dropdown,
.menu input[type=checkbox] {
  display: none;
}

.menu label:hover {
  cursor: pointer;
}

/* narrow styles */
@media screen and (max-width: 1024px) {
  .menu > ul,
.menu-righticon {
    display: none;
  }

  input[type=checkbox]:checked + ul {
    display: block;
    -webkit-animation: grow 0.5s ease-in-out;
            animation: grow 0.5s ease-in-out;
  }
}
/* large styles */
@media screen and (min-width: 1025px) {
  .menu > label,
input[type=checkbox] {
    display: none;
  }

  .menu a {
    padding:13px 20px 17px 9px;
    font-size: 16px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
}

    .menu > ul > li {
        display: inline-block;
        /* width: 56px; */
        margin: 0 -7px;
        position: relative;
        z-index: 9;
        text-align: left;
    }

  .menu-hasdropdown {
    position: relative;
  }
  .menu-hasdropdown:hover > ul {
    display: block;
    -webkit-animation: grow 0.5s ease-in-out;
            animation: grow 0.5s ease-in-out;
  }

  .menu-hasdropdown > ul {
    position: absolute;
    top: 94%;
    left: 0;
    background: #665951eb;
    z-index: 999;
    max-width: 300px !important;
    text-align: left !important;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

  .menu-hasflyout > ul {
    left: 100%;
    top: 0;
  }

  .menu-hasflyout .menu-downicon {
    display: none;
  }
}
/* look and feel only, not needed for core menu*/
@-webkit-keyframes grow {
  0% {
    display: none;
    opacity: 0;
  }
  50% {
    display: block;
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes grow {
  0% {
    display: none;
    opacity: 0;
  }
  50% {
    display: block;
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
html {
  font-size: 100%;
}

body {
  font-family: "Roboto" sans-serif;
  line-height: 1.5;
}

.menu-dropdown a {
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
  transition: all 0.5s;
}
.menu-dropdown a:hover{
  background-color: #463b3b !important;
}

/* narrow  */
@media screen and (max-width: 1024px) {
  header{
    height: auto;
  }
  .menu{
    padding: 0 0 0 0;
  }
  div#myCarousel{
    height: auto;
  }
  .menu > label {
    background: transparent;
    display: block;
    padding: 15px 20px;
    text-align: right;
  }
  .menu ul li p{
    display: none
  }
  .menu a {
    padding: 15px 20px;
    border-bottom: 1px solid #796f6f;
}
  .menu a label {
    display: inline-block;
    float: right;
}
.menu > ul i {
  float: right;
  padding: 3px 7px;
  background: #433b37;
  border-radius: 2px;
}

  .menu-dropdown a {
    background: #4b4541eb;
  }

  .menu-hasflyout > ul a {
    background: #023d5b;
  }
  .menu::before{
    display: none;
  }
}
@media screen and (min-width: 1025px) {
  .menu ul {
    max-width: 100%;
    margin:auto !important;
    text-align: center;    
  }
  .menu ul li p {
    height: 87px;
    width: 94px;
    background: white;
    position: relative;
    border-radius: 50px 50px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
  }
}