@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none; }

body {
  margin: 0;
  padding: 0;
  background: linear-gradient(145deg,  #d7d0c0, #fef3c7);
  font-family: 'Segoe UI', Arial, sans-serif;
  overflow-x: hidden; }

  html {
  scroll-behavior: smooth;
}




/* Верхнее меню сайта */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 75px;
  width: 100%;
  transition: transform .1s linear;
  z-index: 3;
  background: #d7d0c0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8%;
  box-shadow: 0 2px 5px rgb(0, 0, 0); }

.header.hide {
  transform: translateY(-75px); }

.header .logo {
  font-size: 20px;
  font-weight: 900;
  font-family: 'Inter', sans-serif;
  color: #000;
  transition: .7s; }

.header .logo:hover {
  transform: scale(1.06); }

.header nav ul li {
  position: relative;
  float: left; }

.header nav ul li a {
  padding: 15px;
  color: #000;
  font-size: 17px;
  display: block; }

.header nav ul li a:hover {
  background: #000;
  color: #fff; }

.header nav ul li .icon {
  background: url(visual/icon-1.svg);
  width: 49px;
  height: 49px;
  margin-left: 5px;
  background-repeat: no-repeat;
  background-size: cover; }

.header nav ul li .icon:hover {
  background: url(visual/icon-3.svg);
  background-repeat: no-repeat;
  background-size: cover; }

nav ul li ul {
  position: absolute;
  left: 0;
  width: 150px;
  background: #fff;
  display: none; }

nav ul li ul li{
  width: 100%;
  border: 1px solid rgba(0,0,0,.1); }

nav ul li:hover > ul {
  display: initial;
  transition: .2s; }



/* Встречающий фон (Блок 1) */

.block_1 {
  height: 100vh;
  color: #ffffff;
  padding-top: 40vh;
  padding-left: 15vw;
  position: relative;
  --shadow: 0 2px 4px rgba(0,0,0,0.4);} 

.fon_block_1 {
  background: #444 url(visual/fon.png);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  filter: saturate(70%) brightness(50%);
  background-repeat: no-repeat;
  background-size: cover; }

.zagol_block_1 {
  display: inline-block;
  font-size: 4.5vw;
  text-transform: uppercase;
  letter-spacing: 1vw;
  text-shadow: var(--shadow);
  position: relative; }

.zagol_block_1::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -1.5vw;
  right: -5vw;
  height: 0.4vw;
  background-color: #ffffff;
  box-shadow: var(--shadow); }



/* Информация о сайте (Блок 2) */

.delivery-info-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  height: 65vh;
  overflow: hidden; }

.delivery-text {
  flex: 1;
  padding: 4rem 5vw;
  background: linear-gradient(120deg, #003d3a, #00514d, #002624);
  display: flex;
  flex-direction: column;
  justify-content: center;
 }
 .delivery-texta {
  flex: 1;
  padding: 4rem 5vw;
  display: flex;
  background-color: #130801;
  flex-direction: column;
  justify-content: center;
 }
 
 

.delivery-text h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin: 0 0 1rem 0;
  font-weight: 700;
  line-height: 1.1;
  color: white;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3); }

.delivery-texta p {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  line-height: 1.6;
  color: #FFFACD;
  max-width: 600px;
  text-shadow: 0 1px 4px rgba(255, 255, 255, 0.25); }





/* Калькулятор с описанием (Блок 3) */

.block_4 {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(100deg, #e9d17e, #e4bd54, #63380c, #ecc442);
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px; }

.delivery-section {
  background: #003d3a;
  border-radius: 24px;
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.288),
    0 4px 12px rgba(0, 0, 0, 0.37);
  max-width: 1200px;
  width: 100%;
  display: flex;
  gap: 60px;
  padding: 48px 64px;
  transition: box-shadow 0.3s ease; }

.delivery-section:hover {
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.521),
    0 6px 18px rgba(0, 0, 0, 0.514); }

.calculator {
  flex: 1;
  background: linear-gradient(145deg, #d7d0c0);
  border-radius: 20px;
  padding: 48px 40px;
  box-shadow: 0 0 10px #130801;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: background 0.3s ease; }

.calculator h2 {
  margin: 0;
  font-weight: 700;
  font-size: 2rem;
  color: #000000;
  letter-spacing: 0.02em;
  user-select: none; }

label {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: #000000;
  user-select: none; }

select, input[type="number"] {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 2px solid #cbd5e1;
  font-size: 1rem;
  font-weight: 500;
  color: #000000;
  background: #f9fafb;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline-offset: 3px;
  box-shadow: inset 2px 2px 5px rgba(255 255 255 / 0.9); }
    
select:focus, input[type="number"]:focus {
  border-color: #003d3a;
  box-shadow: 0 0 8px #00312f;
  outline: none;
  background: #fff; }

.button-1 {
  margin-top: 20px;
  background: linear-gradient(135deg, #002e2c, #003d3a);
  color: white;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 16px 0;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  box-shadow: 0 6px 12px #003d3a;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  user-select: none; }

.button-1:hover {
  background: linear-gradient(135deg, #004b47, #003d3a);
  box-shadow: 0 8px 20px #066d68; }

.button-1:active {
  transform: scale(0.98); }

.description {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  color: #ffffff;
  user-select: none; }

.description h3 {
  font-weight: 700;
  font-size: 1.8rem;
  margin: 0;
  color: #ffffff;
  letter-spacing: 0.02em; }
    
.description p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0; }

.description ul {
  margin: 0;
  padding-left: 22px;
  color: #f0f0f0;
  font-weight: 600;
  font-size: 1rem;
  list-style-type: disc; }

.description ul li {
  margin-bottom: 10px; }

.result {
  margin-top: 28px;
  font-weight: 700;
  font-size: 1.4rem;
  color: #6e6e6e;
  min-height: 1.8em;
  user-select: text;
  letter-spacing: 0.02em; }



/* Описание сильных сторон (Блок 4) */

.container {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 24px; 
border-radius: 12px;}

.block-title {
  font-weight: 700;
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 48px;
  color: #000000; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px; }

.feature-card {
background: #f4f5e7;
  border-radius: 12px;
  padding: 32px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default; 
  height: 250px;}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(100, 116, 139, 0.2); }

.feature-icon {
  font-size: 3rem;
  color: #000000;
  margin-bottom: 20px;
  user-select: none; }

.feature-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 12px 0;
  margin-top: 14px;
  color: #000000; }

.feature-desc {
  font-size: 1.1rem;
  color: #272727;
  margin: 0;
  flex-grow: 1; }



/* Справачная инфа (Блок 5) */

.block_5 {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg,  #d7d0c0, #fef3c7);
  color: #1e293b;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: clamp(24px, 4vw, 50px) clamp(12px, 4vw, 20px);
  display: flex;
  justify-content: center;
  max-height: 900px; }

.comments-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    width: 100%;
  }
  .comments-section h2 {
    text-align: center;
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 48px;
    color: #222;
  }
  /* Контейнер с ограничением по высоте и скроллом при >3 колонок */
  .comments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-height: 430px; /* примерно высота 3-х карточек по высоте */
    overflow-x: auto;
    overflow-y: auto;
    padding-bottom: 5px; /* чтобы скролл не налезал на контент */
  }
  /* Чтобы скролл был горизонтальным, а не вертикальным */
  .comments-grid::-webkit-scrollbar {
    height: 8px;
  }
  .comments-grid::-webkit-scrollbar-thumb {
    background-color: rgba(0,0,0,0.2);
    border-radius: 4px;
  }
  .comment-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 280px; /* чтобы карточки не сжимались меньше */
    overflow-y: auto;
    height: 200px;
    white-space: normal;      /* разрешаем перенос строк */
    overflow-wrap: break-word;

  }
  .comment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
  .comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 6px;
  }
  .comment-author {
    font-weight: 600;
    font-size: 1.1rem;
    color: #0073e6;
  }
  .comment-userid {
    font-size: 0.9rem;
    color: #666;
    background: #e1ecf9;
    border-radius: 6px;
    padding: 2px 8px;
    user-select: none;
  }
  .comment-date {
    font-size: 0.85rem;
    color: #999;
  }
  .comment-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #444;
    margin-bottom: 15px;
    flex-grow: 1;
  }
  .comment-rating {
    color: #ffb400;
    font-size: 1.2rem;
  }
  .star {
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url('data:image/svg+xml;utf8,<svg fill="%23ffb400" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 .587l3.668 7.568L24 9.423l-6 5.847 1.416 8.23L12 18.896l-7.416 4.604L6 15.27 0 9.423l8.332-1.268z"/></svg>') no-repeat center;
    background-size: contain;
    margin-right: 2px;
  }
  .star.empty {
    filter: grayscale(100%) brightness(0.7);
  }
  @media (max-width: 480px) {
    .comments-section {
      padding: 0 15px;
      margin: 20px auto;
    }
    .comments-section h2 {
      font-size: 2rem;
      margin-bottom: 20px;
    }

  }
  @media (max-width: 380px) {
   .comments-section {
      padding: 0 5px;
      margin: 5px auto;
    }
    .comments-section h2 {
      font-size: 1.7rem;
      margin-bottom: 7px;
    }

  }

    @media (max-width: 356px) {
  .comments-section {
      padding: 0;
      margin: 0;
    }
    .comments-section h2 {
      font-size: 1.7rem;
      margin-bottom: 7px;
    }
    }



  /* Информационный о сайте-2 (Блок 6) */

.company-section {
  width: 100%;
      background-color: #130801;
  color: #FFFACD;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  box-sizing: border-box; }

.company-container {
  display: flex;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  padding: 0 32px;
  gap: 48px; }

.company-info {
  flex: 1; }

.company-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 18px; }

.company-desc {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 24px; }

.company-photo {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center; }

.company-photo img {
  max-width: 460px;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(60, 80, 180, 0.18);
  object-fit: cover; }



/* Поддержка (Блок 7) #003d3a */
  
.block_6 {
  background: linear-gradient(100deg, #63380c, #e9d17e, #e4bd54, #ecc442);
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;}

.support-section {
  background: #003d3a;
  border-radius: 28px;
  
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.288),
    0 4px 12px rgba(0, 0, 0, 0.37);
  max-width: 1200px;
  width: 100%;
  display: flex;
  gap: 60px;
  padding: 56px 64px;
  box-sizing: border-box;
  transition: box-shadow 0.3s ease; }

.support-section:hover {
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.61),
    0 6px 18px rgba(0, 0, 0, 0.616); }

.support-desc {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  user-select: none; }

.support-desc h2 {
  margin: 0;
  font-weight: 800;
  font-size: 2.8rem;
  color: #ffffff;
  letter-spacing: 0.03em;
  user-select: none;
  max-width: 500px; }

.support-desc p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #ffffff;
  max-width: 520px; }

.support-desc ul {
  margin: 0;
  padding-left: 22px;
  color: #dfdfdf;
  font-weight: 600;
  font-size: 1.05rem;
  list-style-type: disc;
  line-height: 1.6;
  max-width: 520px; }

.support-desc ul li {
  margin-bottom: 12px; }

.support-form {
  flex: 1;
  background: linear-gradient(145deg, #d7d0c0);
  border-radius: 24px;
  padding: 32px 28px; 
  box-shadow: 0 0 10px #130801;
  display: flex;
  flex-direction: column;
  gap: 16px; 
  max-width: 450px; }

.support-form h3 {
  margin: 0 0 20px 0; 
  font-weight: 700;
  font-size: 1.8rem; 
  color: #000000;
  letter-spacing: 0.02em;
  user-select: none; }

label {
  font-weight: 600;
  font-size: 0.95rem; 
  margin-bottom: 6px; 
  color: #000000;
  user-select: none; }

input[type="text"],
input[type="email"],
input[type="tel"],

textarea {
  width: 100%;
  max-width: 400px;
  padding: 10px 14px; 
  border-radius: 14px;
  border: 2px solid #cbd5e1;
  font-size: 0.95rem; 
  font-weight: 500;
  color: #000000;
  background: #f9fafb;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline-offset: 3px;
  box-shadow: inset 2px 2px 5px rgba(255 255 255 / 0.9);
  resize: vertical;
  min-height: 38px; 
  font-family: 'Inter', sans-serif; }

textarea {
  min-height: 90px; }

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,

textarea:focus {
  border-color: #003d3a;
  box-shadow: 0 0 8px #00312f;
  outline: none;
  background: #fff; }

.button-2 {
  margin-top: 12px; 
  background: linear-gradient(135deg, #002e2c, #003d3a);
  color: white;
  font-weight: 400;
  font-size: 1.1rem; 
  padding: 12px 0; 
  border: none;
  border-radius: 18px;
  cursor: pointer;
  box-shadow: 0 6px 12px #003d3a;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  user-select: none;
  max-width: 400px; }

.button-2:hover {
    background: linear-gradient(135deg, #004b47, #003d3a);
  box-shadow: 0 8px 20px #066d68; }

.button-2:active {
  transform: scale(0.98); }



/* Фундамент сайта (Блок 8) */

.poddon {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f9fafb;
  color: #334155; }

footer {
  background-color: #000000;
  color: #cbd5e1;
  padding: 40px 20px;
  font-size: 0.9rem;
  user-select: none; }

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between; }

.footer-column {
  flex: 1 1 200px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 12px; }

.footer-column h4 {
  margin: 0 0 16px 0;
  font-weight: 600;
  font-size: 1.1rem;
  color: #f1f5f9;
  user-select: text; }

.footer-column a {
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
  user-select: text; }

.footer-column a:hover, .footer-column a:focus {
  color: #60a5fa;
  outline: none; }
  
.footer-contact p {
  margin: 4px 0;
  user-select: text; }
  
.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid #475569;
  padding-top: 20px;
  font-size: 0.8rem;
  color: #64748b;
  text-align: center;
  user-select: none; }
    


/* Анимация текста */

.zagol_block_1 {
  opacity: 0;
  transform: translate(0px, 120%);
  transition: all 0.3s ease 0s; }
.zagol_block_1._active {
  transform: translate(0px, 0px);
  opacity: 1;
  transition: all 0.8s ease 0.4s; }

.delivery-text h1 {
  transform: translate(0px, 120%);
  opacity: 0;
  transition: all 0.3s ease 0s; }
.delivery-text._active h1 {
  transform: translate(0px, 0px);
  opacity: 1;
  transition: all 1s ease 0.4s; }

.delivery-texta p {
  transform: translate(120%, 0px);
  opacity: 0;
  transition: all 0.3s ease 0s; }
.delivery-texta._active p {
  transform: translate(0px, 0px);
  opacity: 1;
  transition: all 1s ease 0.5s; }

.block-title {
  transform: translate(0px, 120%);
  opacity: 0;
  transition: all 0.3s ease 0s; }
.block-title._active {
  transform: translate(0px, 0px);
  opacity: 1;
  transition: all 1s ease 0.4s; }

.block-title_1 {
  transform: translate(0px, 120%);
  opacity: 0;
  transition: all 0.3s ease 0s; }
.block-title_1._active {
  transform: translate(0px, 0px);
  opacity: 1;
  transition: all 1s ease 0.4s; }

.company-title {
  transform: translate(0px, 120%);
  opacity: 0;
  transition: all 0.3s ease 0s; }
.company-section._active .company-title {
  transform: translate(0px, 0px);
  opacity: 1;
  transition: all 1s ease 0.4s; } 

.company-desc {
  transform: translate(-120%, 0px);
  opacity: 0;
  transition: all 0.3s ease 0s; }
.company-section._active .company-desc {
  transform: translate(0px, 0px);
  opacity: 1;
  transition: all 1s ease 0.5s; } 

.company-photo {
  transform: scale(0);
  transition: all 0.3s ease 0s; }
.company-section._active .company-photo {
  transform: scale(1);
  transition: all 0.8s ease 0.2s }




/* Адаптив */

/* MAX-1120px */
@media (max-width: 1120px) {

.support-section {
  padding: 40px 48px;
  gap: 40px; }

.support-desc h2 {
  font-size: 2.4rem;
  max-width: 100%; }

.support-desc p,
.support-desc ul {
  max-width: 100%; } }


/* MAX-1024px */
@media (max-width: 1024px) {

.delivery-section {
  padding: 40px 48px;
  gap: 40px; }

.calculator, .description {
  padding: 36px 28px; } }


/* MAX-900px */
@media (max-width: 900px) {

.company-container {
  flex-direction: column;
  gap: 32px;
  text-align: center; }

.company-photo img {
  max-width: 320px; }

.features-grid {
  grid-template-columns: repeat(2, 1fr); } }


/* MAX-768px */
@media (max-width: 768px) {

.footer-container {
  gap: 30px;
  justify-content: center; }

.footer-column {
  flex: 1 1 100%;
  max-width: 400px; }

.support-section {
  flex-direction: column;
  gap: 32px;
  border-radius: 20px;
  max-width: 540px; }

.support-desc h2 {
  font-size: 2rem; }

.support-form {
  padding: 32px 24px;
  border-radius: 20px; }

.info-section {
  grid-template-columns: 1fr;
  padding: clamp(28px, 4vw, 40px);
  gap: clamp(28px, 4vw, 40px); }

.info-column h3 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  border-bottom-width: 3px; }

.contacts p, .address-item {
  font-size: clamp(1rem, 3vw, 1.05rem);
  line-height: clamp(1.55, 3vw, 1.6); }

.delivery-section {
  flex-direction: column;
  max-width: 540px;
  gap: 32px;
  border-radius: 20px; }

.calculator, .description {
  padding: 32px 24px;
  border-radius: 20px; }

.calculator h2 {
  font-size: 1.7rem; }

.description h3 {
  font-size: 1.5rem; }

.result {
  font-size: 1.25rem; } }


/* MAX-700px */
@media (max-width: 700px) {

.delivery-info-block {
 
    grid-template-columns: 1fr;

  height: auto;
  min-height: 60vh; }

.delivery-text {
  padding: 3rem 4vw; }
.delivery-texta {
  padding: 3rem 4vw; }

.delivery-text h1 {
  font-size: clamp(1.8rem, 5vw, 2.8rem); }

.delivery-texta p {
  max-width: 100%;
  font-size: clamp(0.95rem, 3vw, 1.2rem); } }


/* MAX-600px */
@media (max-width: 600px) {

.features-grid {
  grid-template-columns: 1fr; }

.block-title {
  font-size: 2.2rem;
  margin-bottom: 32px; }

.feature-card {
  padding: 24px 16px;
  height: 200px;
   }

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 16px; }

.company-section {
  padding: 32px 0; }

.company-title {
  font-size: 1.4rem; }

.company-desc {
  font-size: 1rem; }

.company-container {
  padding: 0 10px; }

.zagol_block_1 {
  font-size: 6vw; } }


/* MAX-400px */
@media (max-width: 400px) {

.calculator, .description {
  padding: 24px 16px; }

.button-1 {
  font-size: 1rem;
  padding: 14px 0; }

.info-section {
  padding: 24px 16px;
  gap: 28px; }

.info-column h3 {
  font-size: 1.4rem; }

.contacts p, .address-item {
  font-size: 0.95rem;
  line-height: 1.5; }

.delivery-section{
   padding: 24px 16px; }

.support-section {
  padding: 24px 16px; }

.support-desc h2 {
  font-size: 1.7rem; }

label {
  font-size: 0.95rem; }

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  font-size: 0.95rem;
  padding: 12px 14px; }

.button-2 {
  font-size: 1rem;
  padding: 14px 0; }

footer {
  padding: 30px 12px;
  font-size: 0.85rem; }

.footer-column h4 {
  font-size: 1rem; } }


/*MIN-MAX*/
@media (min-width: 351px) and (max-width: 440px) {
.header nav ul li a { font-size: 15px; }
nav ul li ul { width: 117px; }
.header nav ul li .icon { margin-top: 5px; width: 43px; height: 43px; }
.header .logo {font-size: 15px;}}

@media (min-width: 319px) and (max-width: 351px) {
.header nav ul li a { font-size: 14px; }
nav ul li ul { width: 115px; }
.header nav ul li .icon { margin-top: 3px; width: 39px; height: 39px; }
.header .logo {font-size: 13px;}}





