html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  padding: 0;
  margin: 0;
  font-family: 'Monda', sans-serif;
}
body {
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
  padding: 0;
  margin: 0;
}
body {
 font-family: 'Monda', sans-serif;
}

/* ///////////..utility classes../////////// */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: rgb(255, 255, 255);
  font-family: 'Monda', sans-serif;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
}

/* Header */
.header {
  background-color: var(--black);
  position: sticky;
  top: 0;
  height: 90px;
  width: 100%;
  max-width: 1440px;
  padding: 0px 80px 0px 80px;
  margin: 0 auto;
  background: #f2f6f7;
}
/* Logo */
.logo {
  display: inline-block;
}

/* Nav menu */
.nav {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: var(--black);
  overflow: hidden;
  display: flex;
  align-items: baseline;
}
.menu {
  width: 640px;
  display: flex;
  justify-content: space-between;
}

.menu a {
  /* display: block; */
  padding: 30px;
  color: black;
}

.btn_link {
  width: 130px;
  height: 56px;
  background-color: #2f4686;
  color: white;
  border-radius: 5px;
  border: none;
  margin-left: 148px;
}
.nav {
  max-height: 0;
  transition: max-height 0.5s ease-out;
}

.hamb {
  cursor: pointer;
  float: right;
  padding: 40px 20px;
} /* Style label tag */

.hamb-line {
  background: black;
  display: block;
  height: 2px;
  position: relative;
  width: 24px;
} /* Style span tag */

.hamb-line::before,
.hamb-line::after {
  background: rgb(0, 0, 0);
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}
.hamb-line::before {
  top: 5px;
}
.hamb-line::after {
  top: -5px;
}

.side-menu {
  display: none;
} /* Hide checkbox */
su
CSS
/* Toggle menu icon */
.side-menu:checked ~ nav {
  max-height: 100%;
}
.side-menu:checked ~ .hamb .hamb-line {
  background: transparent;
}
.side-menu:checked ~ .hamb .hamb-line::before {
  transform: rotate(-45deg);
  top: 0;
}
.side-menu:checked ~ .hamb .hamb-line::after {
  transform: rotate(45deg);
  top: 0;
}

/* Toggle menu icon */
.side-menu:checked ~ nav {
  max-height: 100%;
}
.side-menu:checked ~ .hamb .hamb-line {
  background: transparent;
}
.side-menu:checked ~ .hamb .hamb-line::before {
  transform: rotate(-45deg);
  top: 0;
}
.side-menu:checked ~ .hamb .hamb-line::after {
  transform: rotate(45deg);
  top: 0;
}
.menu li {
  position: relative; /* Это нужно, чтобы выпадающее меню позиционировалось относительно родителя */
}

.submenu {
  display: none; /* Скрывает подменю по умолчанию */
  position: absolute; /* Позволяет подменю свободно позиционироваться */
  background-color: var(--black); /* Можно установить цвет фона подменю */
  z-index: 1000; /* Убедитесь, что подменю отображается над другим контентом */
  margin-top: 10px; /* Немного отступа от основного меню для эстетики */
}

.menu li:hover .submenu {
  display: block; /* Показывает подменю при наведении на родительский элемент */
}

.submenu li {
  white-space: nowrap; /* Чтобы элементы списка не переносились на новую строку */
}
main {
  background-image: url(/img/main/banner.png);
  height: 520px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: center;
}
@font-face {
  font-family: "MyWebFont";
  src: url("/fonts/ofont.ru_Ukrainian_Present .ttf"); /* IE9 Compat Modes */
}
@font-face {
  font-family: "MyWebFont1";
  src: url("/fonts/helveticaneuecyr_thin.otf");
}
@font-face {
  font-family: "MyWebFont2";
  src: url("/fonts/helveticaneuecyr-bold.ttf");
}

a:hover {
  text-decoration: none;
  color: rgb(196, 196, 196);
}
/* .list > ul > li  {list-style-image: url('/img/icon/Clip path group.png'); } */

@media (min-width: 768px) {
  .nav {
    max-height: none;
    top: 0;
    position: relative;
    float: right;
    width: fit-content;
  }

  .menu li {
    float: left;
  }
  .menu a:hover {
    background-color: transparent;
    color: #2f4686;
  }

  .hamb {
    display: none;
  }
}

@media (max-width: 768px) {
  .menu {
    display: flex;
    flex-direction: column;
  }
  .header {
    padding: 20px 0px 0px 10px;
  }

  .btn_link {
    width: 130px;
    height: 56px;
    background-color: #2f4686;
    color: white;
    border-radius: 5px;
    border: none;
    margin-left: 7%;
  }
  .nav {
    background-color: white;
  }

  .map iframe {
    width: 100%;
    margin: 0 auto;
    margin-top: 80px;
  }
}

.banner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background: #e4ecf0;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.title {
 font-family: 'Monda', sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 67.2px;
  text-align: left;
  color: #00486d;
  padding: 155px 0px 0px 85px;
}

.title p {
  font-family: 'Monda', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 42px;
  text-align: left;
  margin-top: 30px;
}
.btn_link2 {
  width: 233px;
  height: 63px;
  background-color: #2f4686;
  color: white;
  border-radius: 5px;
  border: none;
  margin-top: 30px;
  font-size: 24px;
}
.btn_link3 {
  width: 210px;
  height: 63px;
  background-color: #2f4686;
  color: white;
  border-radius: 5px;
  border: none;
  margin-top: 30px;
  font-size: 22px;
}
.blue {
  width: 576px;
  height: 753px;
  background: #00486d;
  margin-right: 70px;
}
.blue img {
  padding: 56px 0px 0px 0px;
}

.benefit {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  margin-top: 3%;
}
.benefit h2 {
  font-family: 'Monda', sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 52.8px;
  text-align: left;
  color: #00486d;
}
.benefit p {
  font-family: 'Monda', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 42px;
  text-align: left;
  width: 75%;
  padding: 20px 0px 20px 0px;
  color: #00486d;
}

.benefit_list {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 1440px;
  margin-top: 70px;
}
.benefit_list li {
  width: 350px;
  height: 442px;
  box-shadow: 0px 24px 24px 0px #00486d33;
  margin: 0px 10px 0px 10px;
  padding: 41px 0px 0px 33px;
}
.benefit_list li > img {
  width: 70px;
  height: 70px;
}
.benefit_list li > p {
font-family: 'Monda', sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 33px;
  text-align: left;
  width: 98%;
}
.sku {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  margin-top: 4%;
}
.sku h2 {
  font-family: 'Monda', sans-serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 52.8px;
  text-align: left;
  color: #00486d;
  margin-bottom: 3%;
  text-align: center;
}
.sku_list {
  width: 100%;

  max-width: 1440px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 0 auto;

  justify-content: space-between;
}
.sku_list li {
  width: 300px;
  height: 480px;
  box-shadow: 0px 24px 24px 0px #00486d33;
  margin: 0px 10px 0px 10px;
  padding: 41px 0px 0px 33px;
}
.sku_list li img {
  width: 220px;
  height: 220px;
  margin-bottom: 10px;
}
.sku_list > li p:first-of-type {

     font-family: 'Monda', sans-serif;

  font-size: 16px;
  font-weight: bold;
  line-height: 33px;
  text-align: left;
  width: 98%;
  margin-top: 25px;
  height: 68px;
  color: #00486d;
}

.price {


  font-size: 16px;
  font-weight: bold;
  font-weight: 400;
  line-height: 33px;
  text-align: left;
  width: 98%;
  color: #006d21;font-family: 'Monda', sans-serif;
}

.contacts {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 3%;
  font-family: 'Monda', sans-serif;
      align-items: center;
}
.adress_title {
font-family: 'Monda', sans-serif;
  font-size: 44px;
  font-weight: 400;
  line-height: 52.8px;
  text-align: left;
  color: #00486d;
  margin-bottom: 3%;
}

.time {
  margin-top: 3%;
  font-family: 'Monda', sans-serif;
}

.map {
  width: 65%;
  margin-top: 4%;
}
.map iframe {
  width: 100%;
}

.footer {
  width: 100%;
  height: 30px;
  margin: 0 auto;
  margin-top: 3%;
  max-width: 1440px;
  background-color: #00486d;
  color: white;
  text-align: center;
  font-family: 'Monda', sans-serif;
}


@media (max-width: 768px) {
  .banner {
    flex-direction: column;
  }
  .benefit {
    margin-top: 10%;
  }
  .benefit_list {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
  }
  .contacts {
    flex-direction: column;
  }
}



.dilevery_title{
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  font-family: DM Serif Text;
  font-size: 44px;
  font-weight: 400;
  line-height: 52.8px;
  text-align: left;
  color: #00486d;
  margin-bottom: 3%;
}
.dilevery p{
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  font-family: DM Serif Text;
  font-size: 20px;
  font-weight: 400;
  line-height: 52.8px;
  text-align: left;
  color: #00486d;
  margin-bottom: 3%;
}


.nav {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: var(--black);
  overflow: hidden;
  display: flex;
  align-items: baseline;
}
.menu {
  width: 60%;
  display: flex;
  margin-left: 10%;
  justify-content: space-between;
  position: relative;
}

.menu a {
  display: block;
  padding: 30px;
  color: black;
}

.btn_link {
width: 166px;
    height: 37px;
    background-color: #2f4686;
    color: white;
    border-radius: 5px;
    border: none;
    display: flex
;
    align-items: center;
    margin-left: 148px;
    padding-left: 10px;
    padding-right: 10px;
}

.submenu {
  display: none; /* Hide submenu by default */
  position: absolute; /* Position submenu absolutely */
  top: 83%; /* Position below the parent menu item */
  left: 0; /* Align to the left */
  background-color: white; /* Background for the submenu */
  z-index: 1000; /* Ensure it appears above other elements */
  padding: 34px;
}

.menu li:hover .submenu {
  display: block; /* Show submenu on hover */
}

.submenu a {
  padding: 10px; /* Padding for submenu items */
  color: black; /* Text color for submenu items */
  text-decoration: none; /* Remove underline */
}

/* Hamburger menu styles */
.hamb {

      cursor: pointer;
    float: right;
    padding: 40px 20px;
    margin-bottom: -64px;
    margin-top: -90px;
}
.hamb-line {
  background: black;
  display: block;
  height: 2px;
  position: relative;
  width: 24px;
}
.hamb-line::before,
.hamb-line::after {
  background: rgb(0, 0, 0);
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}
.hamb-line::before {
  top: 5px;
}
.hamb-line::after {
  top: -5px;
}

/* Toggle menu icon */
.side-menu {
  display: none; /* Hide checkbox */
}
.side-menu:checked ~ nav {
  max-height: 100%;
  background: #f2f6f7;
      margin-top: -21px;
}
.side-menu:checked ~ .hamb .hamb-line {
  background: transparent;
}
.side-menu:checked ~ .hamb .hamb-line::before {
  transform: rotate(-45deg);
  top: 0;
}
.side-menu:checked ~ .hamb .hamb-line::after {
  transform: rotate(45deg);
  top: 0;
}
.b-schedule__cell{
    padding: 10px 7px 1px 5px;
    border: 1px solid grey;
}
.dilevery_title{
     font-family: 'Monda', sans-serif;
}
.h4{
    text-align: center;
    font-size: 19px;
    padding-bottom: 16px;
}
.dilevery{
    padding-left: 50px;
        margin-top: 8%;

}
.dilevery_main{
     display: flex;
    margin: 41px auto;
    width: 100%;
    max-width: 1440px;
}
.contacts {
     padding-left: 50px;
}
.slider {
    position: relative;
    width: 500px; /* Ширина слайдера */
    height: 300px; /* Высота слайдера */
    overflow: hidden; /* Скрываем лишние слайды */
    margin: 0 auto; /* Центрируем слайдер */
   
}

.slides {
    display: flex;
    transition: transform 0.5s ease; /* Плавный переход между слайдами */
}

.slide {
    min-width: 500px; /* Ширина каждого слайда */
    height: 300px; /* Высота слайда */
}

.slide img {
    width: 100%; /* Изображение полностью заполняет слайд */
    height: 100%; /* Высота изображения соответствует высоте слайда */
}

.prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}
.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Индикаторы */
.indicators {
    text-align: center;
    margin-top: 10px;
}

.indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: gray;
    margin: 0 5px;
    cursor: pointer;
}

.indicator.active {
    background-color: orange;
}
@media (max-width: 390px) {
  .banner-img {
    display: none;
  }
  .benefit {
    margin-top: 10%;
  }
  .benefit_list {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
  }
  .contacts {
    flex-direction: column;
  }
  .benefit p {
    text-align: justify;
    width: 100%;
    padding: 5px 15px 2px 15px;
  }
  .benefit h2 {
    padding-left: 15px;
  }
  .benefit_list li > img {
    margin: 0 auto;
    display: flex;
    margin-bottom: 10px;
    margin-left: 15px;
  }
  .sku_list {
    justify-content: center;
  }
  .contacts {
    padding-left: 0px;
    margin-top: 30px;
  }
  .map {
    width: 90%;
    margin-top: 4%;
  }
  .header {
    padding: 20px 0px 0px 10px;
    height: 110px;
  }
  .slider {
    position: relative;
    width: 350px; /* Ширина слайдера */
    height: 300px; /* Высота слайдера */
    overflow: hidden; /* Скрываем лишние слайды */
    margin: 0 auto; /* Центрируем слайдер */

}
.slide {
    min-width: 390px;
    height: 300px;
}
.slides .slide:nth-of-type(2) img{
    width: 463px;
    height: 100%;
}
.header > a > p{ display:none;}
.title {
    font-family: 'Monda', sans-serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 67.2px;
    text-align: left;
    color: #00486d;
    padding: 124px 0px 20px 16px;
}
.time {
    margin-top: 3%;
    font-family: 'Monda', sans-serif;
    margin-bottom: 20px;
}
.dilevery {
    padding-left: 20px;
    margin-top: 20px;
}
}

.nav {
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: var(--black);
  overflow: hidden;
  display: flex;
  align-items: baseline;
}
.menu {
  width: 40%;
  display: flex;
  margin-left: 10%;
  justify-content: space-between;
  position: relative;
}

.menu a {
  display: block;
  padding: 30px;
  color: black;
}

.btn_link {
  width: 170px;
  height: 56px;
  background-color: #2f4686;
  color: white;
  border-radius: 5px;
  border: none;
  margin-left: 148px;
}

.submenu {
  display: none; /* Hide submenu by default */
  position: absolute; /* Position submenu absolutely */
  top: 83%; /* Position below the parent menu item */
  left: 0; /* Align to the left */
  background-color: white; /* Background for the submenu */
  z-index: 1000; /* Ensure it appears above other elements */
  padding: 34px;
}

.menu li:hover .submenu {
  display: block; /* Show submenu on hover */
}

.submenu a {
  padding: 10px; /* Padding for submenu items */
  color: black; /* Text color for submenu items */
  text-decoration: none; /* Remove underline */
}

/* Hamburger menu styles */
.hamb {
  cursor: pointer;
  float: right;
  padding: 40px 20px;
}
.hamb-line {
  background: black;
  display: block;
  height: 2px;
  position: relative;
  width: 24px;
}
.hamb-line::before,
.hamb-line::after {
  background: rgb(0, 0, 0);
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
}
.hamb-line::before {
  top: 5px;
}
.hamb-line::after {
  top: -5px;
}

/* Toggle menu icon */
.side-menu {
  display: none; /* Hide checkbox */
}
.side-menu:checked ~ nav {
  max-height: 100%;
}
.side-menu:checked ~ .hamb .hamb-line {
  background: transparent;
}
.side-menu:checked ~ .hamb .hamb-line::before {
  transform: rotate(-45deg);
  top: 0;
}
.side-menu:checked ~ .hamb .hamb-line::after {
  transform: rotate(45deg);
  top: 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f2f6f7;
  padding: 4px 20px 0px 20px;
}

.logo {
  color: #2f4686;
  font-size: 24px;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #2f4686;
  padding: 15px 20px;
  text-decoration: none;
  display: block;
}

.nav-links a:hover {
  background-color: #2f4686;
  color: white;
}

.dropdown {
  display: none;
  position: absolute;
  background-color: #f2f6f7;
  list-style: none;
  margin-top: -1px;
  padding: 0;
  z-index: 1;
}

.dropdown li a {
  padding: 10px 20px;
}

.nav-links li:hover .dropdown {
  display: block;
}

.hamburger {
  display: none;
  font-size: 30px;
  color: #2f4686;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
  .navbar{
    width: 100%;
  }
  .nav-links {
      display: none;
      flex-direction: column;
      width: 100%;
  }

  .nav-links.active {
      display: flex;
  }

  .hamburger {
      display: block;
  }
  .btn_link{
    display: none;
  }
}
.contact-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 11px;
}



.hours {
    margin-top: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    font-size: 12px;
}

th, td {
    text-align: left;
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #333;
    color: white;
}

tr:hover {
    background-color: #f1f1f1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .contact-container {
        padding: 15px;
    }

    th, td {
        padding: 8px;
    }
    .dilevery_main{
     display: flex;
     flex-direction:column;
    margin: 41px auto;
    width: 100%;
    max-width: 1440px;
}
}
@media (max-width: 390px) {
    .dilevery {
        padding-left: 20px;
        margin-top: 20px;
    }
     .dilevery_main{
     display: flex;
     flex-direction:column;
    margin: 41px auto;
    width: 100%;
    max-width: 1440px;
}
}