/*responive max width to min width*/

/*@media 
(min-width: 992px) 
 and (max-width: 1200px){
	
}*/

/* iPads (landscape) ———– */

/*@media 
(min-width : 768px)
and (max-width : 1024px)
and (orientation : landscape) {

}*/

/* iPads (portrait) ———– */

/*@media 
(min-width : 768px)
and (max-width : 1024px)
and (orientation : portrait) {

}*/

/* iPads (landscape) ———– */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  /* Styles */
}

/* iPads (portrait) ———– */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  /* Styles */
}

@media (max-width: 1200px) {
}

@media (max-width: 1199px) {
}

/*responsinator screen size*/
@media (max-width: 1024px) {
}
@media (min-width: 992px) {
}
/*  min width new way*/
@media (width >= 992px) {
}
/*  min width new way*/

@media (max-width: 992px) {
}

/*  max width new way*/
@media (width <= 992px) {
}
/*  max width new way*/

@media (max-width: 991.98px) {
  .navbar-nav li {
    text-align: center;
    margin-top: 20px;
  }
  .navbar-nav li + li {
    margin-left: 0px;
  }
  .navbar-toggler-icon {
    background-image: none;
    position: relative;
    border-top: 2px solid rgba(0, 0, 0, 0.5);
    height: 2px;
    display: block;
    transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
  }
  .navbar-toggler-icon:before {
    content: "";
    border-top: 2px solid #517a58;
    position: absolute;
    top: -11px;
    left: 0;
    right: 0;
    transform: rotate(0deg);
    transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
  }
  .navbar-toggler-icon:after {
    content: "";
    border-top: 2px solid #517a58;
    position: absolute;
    bottom: -9px;
    left: 0;
    right: 0;
    transform: rotate(0deg);
    transition: all 0.3s ease-in-out 0s;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
  }
  .navbar-toggler {
    height: 40px;
    width: 56px;
  }
  .navbar-toggler .navbar-toggler-icon {
    border: 0 none;
  }
  .navbar-toggler.collapsed .navbar-toggler-icon {
    border-top: 2px solid #517a58;
  }
  .navbar-toggler .navbar-toggler-icon:after {
    transform: rotate(45deg);
    bottom: 0px;
  }
  .navbar-toggler .navbar-toggler-icon:before {
    transform: rotate(-45deg);
    bottom: 0px;
    top: 0px;
  }
  .navbar-toggler.collapsed .navbar-toggler-icon:after {
    transform: rotate(0deg);
    bottom: -9px;
  }
  .navbar-toggler.collapsed .navbar-toggler-icon:before {
    transform: rotate(0deg);
    bottom: 0px;
    top: -11px;
  }
  .navbar-collapse {
    border-top: 1px solid #ddd;
    margin-top: 1rem;
  }
  .navbar-toggler {
    border-color: #517a58;
  }
  .navbar-toggler:focus {
    box-shadow: 0 0 0 var(--bs-navbar-toggler-focus-width) #517a58 !important;
  }
}

@media (max-width: 768px) {
}

@media (max-width: 767px) {
}

@media (max-width: 736px) {
}

@media (max-width: 667px) {
}
@media (max-width: 650px) {
  .slider-menu-btn li + li {
    margin-left: 10px;
  }
  .slider-menu-btn li a {
    font-size: 1rem;
    padding: calc(var(--bs-navbar-nav-link-padding-x) * 2) 10px !important;
  }
}
@media (max-width: 600px) {
}

@media (max-width: 568px) {
}

@media (max-width: 480px) {
}

@media (max-width: 419.98px) {
  .navbar-brand img {
    width: 200px;
  }
  .banner {
    height: calc(100vh - 61px);
  }
}

@media (max-width: 419.98px) {
  .banner {
    background: #999;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 75px;
  }
  .banner img {
    height: auto;
    width: auto;
  }
}
@media (max-width: 384px) {
  .slider-menu-btn li a {
    font-size: 0.9rem;
    padding: calc(var(--bs-navbar-nav-link-padding-x) * 2) 5px !important;
  }
}
@media (max-width: 375px) {
}

@media (max-width: 360px) {
}

@media (max-width: 320px) {
}
/*responsinator screen size*/
