nav {
  position: fixed;
  z-index: 9999999;
  width: 82%;
  background: #FFFFFF;
  top: 20px;
  left: 50%;
  transform: translate(-50%, 0%);
  border-radius: 70px;
}
nav .wrapper{
  position: relative;
  padding: 0px 30px;
  height: 55px;
  line-height: 70px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu_left {
  position: relative;
}
.menu_left::after {
  position: absolute;
  content: '';
  width: 1px;
  height: 30px;
  background: #01010166;
  right: 0;
  top: 50%;
  transform: translate(0%, -50%);
}
.appointment_btn {
    background: #036280;
    color: #fff !important;
    padding: 9px 20px !important;
}
.wrapper .logo a{
  color: #f2f2f2;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
}
.wrapper .nav-links {
  display: inline-flex;
  padding: 0;
  margin: 0;
}
.nav-links li{
  list-style: none;
}
.nav-links li a {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    padding: 9px 0px;
    margin: 0 15px 0 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: capitalize;
}
.menu_right {
    padding-left: 15px;
}
.menu_left a {
  color: #036280 !important;
}
.nav-links .mobile-item {
  display: none;
  text-transform: uppercase;
}
.nav-links .drop-menu {
  position: absolute;
  background: #036280;
  width: unset;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
  padding: 0;
}
.nav-links .drop-menu li:hover {
  background: #fff;
}
.nav-links .drop-menu li:hover a {
  color: #036280 !important;
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box{
  transition: all 0.3s ease;
  top: 55px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a {
  width: 100%;
  display: block;
  padding: 0px 20px;
  font-weight: 400;
  border-radius: 0px;
  color: #fff!important;
}
.flex_wrap{
  display: flex;
}
.mega-box{
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}
.mega-box .content{
  background: #242526;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.mega-box .content .row{
  width: calc(25% - 30px);
  line-height: 45px;
}
.content .row img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content .row header{
  color: #f2f2f2;
  font-size: 20px;
  font-weight: 500;
}
.content .row .mega-links{
  margin-left: -40px;
  border-left: 1px solid rgba(255,255,255,0.09);
}
.row .mega-links li{
  padding: 0 20px;
}
.row .mega-links li a{
  padding: 0px;
  padding: 0 20px;
  color: #d9d9d9;
  font-size: 17px;
  display: block;
}
.row .mega-links li a:hover{
  color: #f2f2f2;
}
.wrapper .btn{
  font-size: 26px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn{
  position: absolute;
  right: 10px;
  top: 10px;
}

@media screen and (max-width: 970px) {
  .shrink .menu-btn {
    color: #000;
}
  .shrink .logo img {
    filter: unset;
  }
  .shrink .nav-links li a {
    color: #ffffff!important;
  }
  .shrink .dropdown_arrow::after {
    filter: unset!important;
  }
  .nav-links .drop-menu {
    background: #BF0404;
}
  .wrapper .btn{
    display: block;
  }
  .wrapper .nav-links{
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 350px;
    top: 0;
    left: -100%;
    background: #101010;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0,0,0,0.18);
    transition: all 0.3s ease;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #242526;
  }
  ::-webkit-scrollbar-thumb {
    background: #3A3B3C;
  }
  #menu-btn:checked ~ .nav-links{
    left: 0%;
  }
  #menu-btn:checked ~ .btn.menu-btn{
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn{
    display: block;
  }
  .nav-links li{
    margin: 15px 10px;
  }
  .nav-links li a{
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }
  .nav-links .drop-menu{
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box{
    max-height: 100%;
  }
  .nav-links .desktop-item{
    display: none;
  }
  .nav-links .mobile-item{
    display: block;
    color: #f2f2f2;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover{
    background: #3A3B3C;
  }
  .drop-menu li{
    margin: 0;
  }
  .drop-menu li a{
    border-radius: 5px;
    font-size: 18px;
  }

  .content .row header{
    font-size: 19px;
  }
}
nav input{
  display: none;
}
.dropdown_arrow{
  position: relative;
}
.dropdown_arrow::after{
  position: absolute;
  content: '';
  top: 7px;
  right: 0;
  width: 20px;
  height: 20px;
  background-position: right;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='m7 10l5 5l5-5z'/%3E%3C/svg%3E");
  filter: brightness(0);
}
.shrink .logo img {
  filter: unset;
}
.shrink .nav-links li a {
  color: #000;
}
.shrink {
  background: #FEFBF5;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.shrink .nav_buttons a img {
  filter: brightness(0);
}
.shrink .dropdown_arrow::after {
  filter: brightness(0);
}