/* Google font import and body styling */

@import url('https://fonts.googleapis.com/css?family=Montserrat&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
  
  font-family: 'Montserrat', 'sans-serif'; 
  
  
  background-color: #ffffff;
  


}
body {
    
  font-family: "Montserrat", sans-serif; 
  
}
/* Add this CSS */
.overlay {
  transition: opacity 0.6s ease, height 0.6s ease;
  opacity: 0;
  height: 0;
  visibility: hidden;
  top: 0;

}

.overlay.open {
  opacity: 1;
  height: 100%;
  visibility: visible;
  
}
.open ul.nav{
  animation: slideup 0.6s ease;
}


@keyframes fadeIn{
  0% {
    
    opacity: 0;
           
  }
  50%{
    opacity: 0.5;
  }
  100% {
    
    opacity: 1;
           
  }
}
@keyframes slideup{
  0%{
    margin-top: 15%;
  }
  100%{
    margin-top: 0;
  }
}
@keyframes slidedown{
  0%{
    margin-top: 0%;
  }
  100%{
    margin-top: 15%;
  }
}

.hamburger-m {
    z-index: 999;
}
ul#pills-tab-1 {
    min-height: auto;
}







ul.nav__sub li a {
  font-family: "Montserrat", sans-serif; 
}
/* Link colors */

a {
  color: #000000;
}
.btn-primary {
  background-color: #000000;
  border-color: #000000;
}



a:hover {
  color: #000000;
}
.btn-primary:hover {
  background-color: #000000;
  border-color: #000000;
}


/* General styling */
.card-footer {
  padding: 1rem;
}
.nav__item li {
  margin: 2vw 5vw;
}

.my-4 {
  margin-top: 3.5rem !important;
  margin-bottom: 1.5rem !important;
}

/* Navbar settings */
.navbar {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0;
  justify-content: center;
}

/* Navbar content */
.navbar-nav {
  justify-content: center;
  flex-grow: 1;
}

.nav-item {
  margin: 0 10px;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  padding: 10px 15px;
}

/* Icon links in the header */
.header__icon-links {
  display: flex;
  align-items: center;
}

.header__icon-links a {
  margin-left: 10px;
  color: #fff;
  text-decoration: none;
}

.header__icon {
  font-size: 1.5em;
}

/* Mobile Nav Toggle Button */
.navbar-toggler {
  border: none;
  background: transparent;
}

.navbar-toggler .bi-list,
.navbar-toggler .bi-x {
  font-size: 1.5em;
  justify-content: flex-end;

}

/* Footer styling */
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #000000;
  padding: 10px 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

/* Dropdown menu styling */
.navbar-nav .dropdown-menu {
  padding: -1px;
  border-radius: 10px !important; /* Ensure border-radius is applied */
  background: #ffffff !important;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.dropdown-item {
  color: #000000 !important;
  padding: 10px !important;
}

.dropdown-item:hover {
  background: #E1B1A7 !important;
  font-weight: bold !important;
  color: #000000 !important;
  border-radius: 6px !important; /* Ensure hover styles are applied */
}

.dropdown-item:first-child:hover {
  border-radius: 6px 6px 0 0;
}

.dropdown-item:last-child:hover {
  border-radius: 0 0 6px 6px;
}

/* Remove active main nav underline */
.nav-item.active > .nav-link {
  background-image: none !important;
}

/* Remove active nav underline within dropdown */
.dropdown-item.active {
  background-image: none !important;
}

/* Left align dropdown links */
.dropdown-item {
  text-align: left;
}

/* Font Styling for Navigation Items */
.navbar-nav .nav-link, 
.navbar-nav .dropdown-toggle, 
.dropdown-menu .dropdown-item {
  font-family: 'Montserrat';
  font-weight: 500 !important;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0.01em;
  color: #fff !important;
}

.navbar-nav .nav-link:hover, 
.navbar-nav .dropdown-toggle:hover {
  color: #fff !important;
  background-color: transparent !important;
}

.dropdown-menu .dropdown-item:hover {
  color: #000 !important;
  background-color: #E1B1A7 !important;
}

.navbar-nav .dropdown-toggle::after {
  display: none !important;
}

/* Additional styling for the dropdown menu */
.dropdown-menu {
  border-radius: 10px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  padding: 5px;
}

/* Styling for dropdown items */
.dropdown-menu .dropdown-item {
  padding: 10px !important;
  text-align: left;
}

.dropdown-menu .dropdown-item:hover {
  background: #E1B1A7 !important;
  font-weight: bold !important;
  border-radius: 6px;
  color: #000 !important;
}

.dropdown-menu .dropdown-item {
  color: #000 !important;
}

.header__icon-links a {
  color: #fff !important;
  text-decoration: none;
  margin-left: 10px;
}

.header__icon {
  font-size: 1.5em;
}

/* Show Dropdown on Hover */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

/* Prevent blue background on top nav hover */
.navbar-nav .nav-link.active, 
.navbar-nav .dropdown-toggle.active {
  background-color: transparent !important;
}

/* Reset border-radius for all dropdown items */
.dropdown-menu .dropdown-item {
  border-radius: 0 !important; /* Ensure no items have rounded corners by default */
}

/* Apply border-radius to the first item in the dropdown */
.dropdown-menu li:first-child .dropdown-item {
  border-radius: 10px 10px 0 0 !important; /* Round the top corners */
}

/* Apply border-radius to the last item in the dropdown */
.dropdown-menu li:last-child .dropdown-item {
  border-radius: 0 0 10px 10px !important; /* Round the bottom corners */
}

/* Apply border-radius for single-item dropdowns */
.navbar-nav .nav-item.dropdown.single-item .dropdown-menu .dropdown-item {
  border-radius: 10px !important; /* Round all corners for single item */
}

/* Remove margin-top for dropdown-menu */
.dropdown-menu {
  margin-top: 0 !important; /* Ensure no space between nav and dropdown */
}

/* Position the dropdown menu slightly below the parent nav item */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  position: absolute;
  top: calc(68%); /* Adjust this value to control the gap */
  left: 0;
  z-index: 1000; /* Ensure dropdown stays on top */
  background-color: #ffffff; /* Ensure background is white */
  padding: 5px; /* Maintain padding */
  border-radius: 10px; /* Ensure rounded corners */
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2); /* Maintain shadow */
  min-width: 200px;
}

/* Preserve hover effects and rounded corners for dropdown items */
.dropdown-menu .dropdown-item {
  padding: 10px;
  color: #000; /* Maintain text color */
  border-radius: 0; /* Reset border radius for consistency */
}

.dropdown-menu .dropdown-item:hover {
  background: #E1B1A7;
  font-weight: bold;
  color: #000;
}

/* Apply rounded corners to the first and last items */
.dropdown-menu li:first-child .dropdown-item {
  border-radius: 10px 10px 0 0;
}

.dropdown-menu li:last-child .dropdown-item {
  border-radius: 0 0 10px 10px;
}

/* Specific styling for single-item dropdowns */
.navbar-nav .nav-item.dropdown.single-item .dropdown-menu .dropdown-item {
  border-radius: 10px;
}

/* Ensure no margin between nav item and dropdown */
.nav-item.dropdown {
  margin: 0;
}

/* Add spacing between navigation items */
.navbar-nav.ms-auto .nav-item {
  margin: 0 5px; /* Adjust the spacing between main nav items */
}

.nav-container {
  flex: 1; /* Let the nav container grow to take remaining space */
}

.navbar {
  width: 85%;
}

.navbar-toggler {
  border: none; /* Remove default button border */
}

.navbar-toggler .bi-list, .navbar-toggler .bi-x {
  color: white; /* Adjust color of toggler icons */
}

.navbar-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Center nav items horizontally */
}

.nav-item {
  margin: 0 10px; /* Adjust spacing between nav items */
}

.header__icon-links {
  display: flex;
  gap: 10px; /* Adjust gap between icon links */
}

.header__icon {
  color: white; /* Adjust color of icon links */
}

/* Header settings */
header {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Space between logo, nav, and icons */
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #000; /* Adjust as necessary */
  padding: 0; /* No extra padding */
  box-sizing: border-box; /* Include padding and border in width */
  z-index: 1000;
}

/* Icon links in the header */
.icons-container {
  display: flex;
  justify-content: flex-end; /* Align container to the right */
  align-items: center;
  flex: 1; /* Let it take remaining space if needed */
}

/* Adjusted header__icon-links styling */
.header__icon-links {
  display: flex;
  justify-content: flex-end; /* Align icons to the right */
  align-items: center;
  gap: 10px; /* Space between icons */
  margin-left: auto; /* Push icons to the right */
}

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

.header__icon {
  color: white; /* Ensure icon color is white */
  font-size: 1.5em;
}

/* Main header wrapper to manage overall alignment */
.header-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: space-between; /* Space between logo, nav, and icons */
  padding: 1vw 3vw;
  background-color: #000; /* Adjust to your background color */
  width: 100%;
  box-sizing: border-box; /* Include padding and border in width */
}

/* Ensure nav items are aligned horizontally */
.navbar-nav .nav-item {
  margin: 0 10px; /* Adjust spacing between nav items */
}

/* Adjust icon container alignment */
.icons-container {
  display: flex;
  justify-content: flex-end; /* Align icons to the right */
  align-items: center; /* Center vertically */
  flex-shrink: 0; /* Prevent shrinking */
  margin-left: auto; /* Push the container to the right */
}

/* Ensure icons are spaced correctly */
.header__icon-links {
  display: flex;
  gap: 10px; /* Space between icons */
}

/* Styling for individual icons */
.header__icon-links a {
  color: #fff;
  text-decoration: none;
}

/* Additional icon styling */
.header__icon {
  font-size: 1.5em; /* Adjust size of icons */
  color: white; /* Adjust color of icon links */
}

/* Ensure the container widths are correctly managed */
.header-wrapper .container {
  width: auto; /* Allow containers to auto-adjust width */
  display: flex;
  align-items: center;
}

.nav-container .navbar-nav.ms-auto {
  justify-content: center; /* Ensure the navbar remains centered */
}

/* Adjustments for responsiveness */
@media (min-width: 769px) {
    .navbar-expand-lg .navbar-nav {
        -ms-flex-direction: row;
        flex-direction: row;
    }
}
/* Adjustments for responsiveness */
@media (min-width: 768px) {
      .nav__item:first-child .nav__link {
    font-size: 6vmin;
  }
}
/* Adjustments for responsiveness */
@media (max-width: 500px) {
      .overlay a {
    font-size: 8.5vmin !important;
  }
}

@media (max-width: 768px) {
  #header__nav{display: none !important;}
  .header-wrapper {
    flex-direction: row;
    align-items: center;
  }
  a.nav-toggle .bar:first-child {
    margin-top: 5px;
}
.header__icon-links {
    flex-direction: column ;
    align-items: end !important;
}
  .icons-container{margin-top: -20px !important;}
  .nav-container, .icons-container {
    width: 100%;
    justify-content: center;
    margin: 10px 0;
  }

  .navbar-nav {
    flex-direction: column;
  }

  .navbar-nav .nav-item {
    margin: 5px 0;
  }
  ul.nav , .nav__sub {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.icons-container {
  flex: 0 0 auto; /* Ensure it does not grow or shrink */
  width: auto; /* Allow it to size based on content */
}

.header__icon-links {
  display: flex;
  align-items: center;
}

.header__icon-links a {
  margin-left: 10px;
  color: #fff;
  text-decoration: none;
}

.header__icon {
  font-size: 1.5em;
  color: white;
}

@media screen and (max-width: 767px) {
  .header__logo img {
    max-height: 100px;
  }
}

header {
  min-height: 165px; /* Adjust minimum height for smaller screens */
  margin-left: 0px; /* Margin to the left */
  margin-top: 0px; /* Top margin */
}

/* Logo container alignment */
.header__logo {
  margin-left: 5px; /* Margin to the left */
  margin-top: 0px; /* Top margin */
  display: row; /* Use flexbox for better control */
  align-items: center; /* Center vertically */
}

.header__logo {
  max-height: 140px;
}

.header__logo img {
  height: 135px;
  width: auto;
  max-width: 100%;
}

/* Adjustments for mobile view */
@media (max-width: 768px) {
  .header__icon{font-size: 20px !important;}
  .navbar-toggler {
    order: 1; /* Move the toggler button to the right */
    margin-left: auto; /* Push it to the rightmost edge */
  }

  .header__icon-links {
    display: flex; /* Hide social icons in mobile view */
    padding-right: 0px;
  }
}

/* Styling for the burger menu */
.burger {
  position: absolute;
  right: -100px; /* Adjust as needed */
  top: 0px; /* Adjust as needed */
  z-index: 1000;
}

.burger-box {
  width: 30px; /* Increase size as needed */
  height: 24px; /* Adjust height */
}

.burger-inner {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 14px; /* Adjust to space the lines */
}

.burger-inner .line {
  width: 100%;
  height: 1px; /* Thinner lines */
  background-color: #ffffff; /* Adjust color */
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Default collapsed state - hamburger */
.navbar-toggler.collapsed .burger-inner .line:nth-child(1) {
  transform: none; /* No transformation */
}

.navbar-toggler.collapsed .burger-inner .line:nth-child(2) {
  transform: none; /* No transformation */
}

/* Expanded state - cross */
.navbar-toggler:not(.collapsed) .burger-inner .line:nth-child(1) {
  transform: translateY(6px) rotate(45deg); /* First line forms part of the "X" */
}

.navbar-toggler:not(.collapsed) .burger-inner .line:nth-child(2) {
  transform: translateY(-6px) rotate(-45deg); /* Second line forms part of the "X" */
}
/*
.mobile-nav-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
*/
.mobile-nav-menu {
  list-style: none;
  padding: 0;
  text-align: center;
}

.mobile-nav-menu .nav-item {
  margin-bottom: 20px;
}

.mobile-nav-menu .nav-link {
  font-size: 18px;
  color: #ffffff; /* Adjust as needed */
  text-decoration: none;
  display: block;
}

.mobile-nav-menu .nav-link:hover {
  color: #ffffff; /* Adjust as needed */
}

.submenu {
  display: none; /* Initially hidden */
  padding-left: 0;
}

.submenu li {
  margin-bottom: 10px;
}

.submenu a {
  font-size: 16px;
  color: #ffffff; /* Adjust as needed */
}

/* Hamburger Icon Animation */
.burger {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.burger-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.line {
  width: 100%;
  height: 2px; /* Adjust thickness */
  background-color: #ffffff; /* Adjust color */
  transition: transform 0.3s ease-out;
}

.navbar-toggler.collapsed .line:nth-child(1) {
  transform: translateY(0) rotate(0);
}

.navbar-toggler.collapsed .line:nth-child(2) {
  transform: translateY(0) rotate(0);
}

.navbar-toggler:not(.collapsed) .line:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.navbar-toggler:not(.collapsed) .line:nth-child(2) {
  transform: translateY(-5px) rotate(-45deg);
}

/* General styles for header */
.header-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  background-color: #000;
}

.logo-container {
  flex-shrink: 0;
}

.nav-container {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.icons-container {
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
}

.header__icon-links a {
  color: white;
  text-decoration: none;
  margin-left: 10px;
}

.header__icon {
  font-size: 1.5em;
  color: white;
}

/* Mobile styles */
.navbar-toggler {
  border: none;
  background: transparent;
  color: white;
  font-size: 1.5em;
  order: 3; /* Ensure the hamburger is always on the right */
}

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.burger-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.burger-inner .line {
  width: 24px;
  height: 2px;
  background-color: white;
  margin: 4px 0;
  transition: all 0.3s ease;
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 999;
  justify-content: center;
  align-items: center;
}

.mobile-nav-overlay.active {
  display: flex;
}

.mobile-nav-content {
  text-align: center;
}

.mobile-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-menu .nav-item {
  margin: 10px 0;
}

.mobile-nav-menu .nav-link {
  text-decoration: none;
  color: black;
  font-size: 1.2em;
}

.close-menu-btn {
  
  background: none;
  border: none;
  font-size: 2em;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.submenu {
  list-style: none;
  padding-left: 20px;
}

/* Taniya Styling */
body{width: 100%;}
.overlay {
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 1;

  left: 0;
  background-color: rgb(255,255,255);
  background-color: rgba(255,255,255, 1);
  overflow-y: hidden;
  transition: 0.7s;
}

.overlay-content {
  position: relative;
  width: 100%;
  text-align: center;
  margin-top: 30px;
} 

.overlay a {
  padding: 0px;
    text-decoration: none;
    font-size: 6vmin;
    color: #000;
    transition: 0.3s;
    transition: opacity 250ms cubic-bezier(.4,0,.2,1);
    line-height: normal;
    
}

.overlay a:hover, .overlay a:focus {
  color: #f1f1f1;
}

.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 60px;
  font-weight: lighter;
}
html {
  box-sizing: border-box;
	height: 100%;
}

html {
  box-sizing: border-box;
	height: 100%;
}



.nav,
.nav__sub {
	margin-top: 0;
	margin-bottom: 0;
	padding: 70px;
	list-style-type: none;
}

.nav {
	position: relative;


	overflow: hidden;
}

.nav__item + .nav__item {
	margin-top: 8px;
}

.nav__link {
	font-weight: 500;
	color: white;
	text-decoration: none;
}

.nav__sub {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	opacity: 0;
	visibility: hidden;
	transition: all 0.35s ease-in-out;
	transform: translateX(100%);
	
	&.is-active {
		opacity: 1;
		visibility: visible;
		transform: translateX(0%);
	}
}
/*
span.menu_line {
    position: absolute;
    right: -30px;
    top: -40px;
    color: transparent;
    text-align: right;
    display: none;
}

span.menu_line:after{
    position: absolute;
    right: 0px;
    content: "";
    bottom: 0px;
    width: 30px;
    height: 1px;
    background-color: #fff;
}
span.menu_line:before{
    position: absolute;
    right: 0px;
    content: "";
    bottom: 10px;
    width: 30px;
    height: 1px;
    background-color: #fff;
}
*/
.overlay .header__logo {
    padding-top: 30px;
    padding-left: 20px;
    display: inline-block;
}

ul.nav , .nav__sub{
  display: block;
  min-height: 65vh;
}
/* .nav__sub-trigger {
    position: relative;
    display: inline-block !important;
}
.nav__sub-trigger:after {
    content: "";
    position: absolute;
    right: -40px; 
    top: 4px;
    background: url('');
    width: 30px;
    height: 30px;
    background-color: red;
} */
.nav-toggle {
  display: flex;
  flex-direction: column;
 /* justify-content: space-between; */
  height: 26px;
  width: 32px;
}

.nav-toggle .bar {
  height: 1px;
  width: 100%;
  background-color: #fff;
  /**transition: all 600ms ease-in-out;**/
  margin-top: 10px;
}

.nav-toggle:hover {
  cursor: pointer;
}

.x:nth-of-type(1) {
  transition: all 0.15s ease-in-out;
  transform: rotate(45deg);
  transform-origin: top left;
  width: 28px;
}

.x:nth-of-type(2) {
  transition: all 0.15s ease-in-out;
  transform-origin: center;
  width: 0;
}

.x:nth-of-type(3) {
  transition: all 0.15s ease-in-out;
  transform: rotate(-45deg);
  transform-origin: bottom left;
  width: 28px;
}
.x {
   display: block !important;
    position: relative;
    z-index: 99;
    background-color: #000!important;
}
.menu_line{
  display: none;
      
    right: -240px;
    top: -18px;
}
.x:nth-of-type(3){transform-origin: -2px !important;}
.x:nth-of-type(1){transform-origin: -2px !important;}
.chevron--right {
    transform: rotate(45deg);
}
.chevron {
    position: relative;
    display: inline-block;
    width: .4em;
    height: .4em;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    vertical-align: middle;
    margin-top: -.14em;
    z-index: -1;
}
.nav__item:first-child .nav__link{
  background-image: linear-gradient(currentColor, currentColor);
    background-repeat: repeat-x;
    background-size: 1px 1px;
    background-position: 0 100%;
    display: inline-block !important;
}
ul.nav__sub li a {
    font-weight: 500;
    margin: 10px 0px;
    background: #fff;
   
}
.sub__close{
     background-image: none !important;
     opacity: 0.6;
}
a.nav__link.sub__close i {
    font-weight: 100;
    font-size: 23px;
    background-position: center !important;
    opacity: 0.7;
}
.cst_footer{
      padding: 35px 0px;
}
.cst_footer p{margin: 0px;}
.cst_footer span{margin-top: 10px;  font-style: italic; font-size: 13px;}
.cst_footer p, .cst_footer span{display: block; color: #fff; font-weight: 500; line-height: 1.6em; font-style: italic;}
.cst_footer{text-align: center;}
.overlay a:hover, .overlay a:focus {
    color: #000;
}
span.menu_line.opened {
    position: relative !important;
    z-index: 99999;
    height: 58px;
    width: 100px;
    right: -156px;

}
a.nav-toggle.x {
    background: transparent !important;
    transform: translatex(3.5px) rotate(0deg);
    width: 28px;
}

a.signin {
  border: 1px solid;
  border-radius: 16px 0px;
  padding: 15px 30px !important;
  text-transform: uppercase;
  font-size: 15px !important;
}
.header-wrapper .icons-container .all-icons {
  display: none;
}
.navbar {
  width: 100%;
  justify-content: flex-end;
}
.navbar .navbar-nav .nav-link {
  font-weight: 400 !important;
}
.navbar .navbar-nav .nav-link:hover {
  font-weight: 600 !important;
}
.navbar .navbar-nav a.signin:hover {
  background: white !important;
  color: black !important;
  font-weight: 400 !important;
}

@media(max-width: 768px){
   span.menu_line{display: block !important;}
   
}
@media(max-width: 600px){
   .menu_line {
    display: none;
}
 .nav,
.nav__sub {
	margin-top: 0;
	margin-bottom: 0;
	padding: 10px;
	list-style-type: none;
}
}
@media(max-width: 375px){
   .menu_line {
    display: none;
}
.header-wrapper {
 padding: 10px;
}  
}

@media screen and (max-height: 450px) {
  .overlay {overflow-y: auto;}
  .overlay a {font-size: 8.5vmin;}
  .overlay .closebtn {
  font-size: 40px;
  top: 15px;
  right: 30px;
  font-weight: lighter;
  }
 
}




