*,
*::before,
*::after {
  box-sizing: border-box;
}

:where(ul, ol):where([class]) {
  padding-left: 0;
}

:where(blockquote, figure):where([class]) {
  margin: 0;
}

:where(h1, h2, h3, h4, h5, h6, p, ul, ol, dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

:where(ul[class]) {
  list-style: none;
}

p {
  margin-block: 0;
}

p:where(:not([class]):not(:last-child)) {
  margin-bottom: 24px;
}

img {
  display: block;
  max-width: 100%;
}

input,
textarea,
select,
button {
  font: inherit;
}

svg *[fill] {
  fill: currentColor;
}

svg *[stroke] {
  stroke: currentColor;
}

svg * {
  transition-property: fill, stroke;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  background: #f5feff;
  color: #3d3d3d;
}

.wrapper {
  max-width: 1200px;
  padding: 15px 30px;
  margin: 30px auto 0px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
@media (max-width: 1155px) {
  .wrapper {
    width: 100%;
    margin: 0;
    padding: 0px 20px;
    border-radius: 0px;
  }
}

.header {
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 50px;
}
.header__logo {
  flex: 1 0 auto;
}
.header__menu {
  flex: 0 1 auto;
  position: relative;
}
.header__burger {
  z-index: 5;
  display: none;
  position: relative;
  width: 30px;
  height: 20px;
  cursor: pointer;
  margin: 0;
}
@media (max-width: 1155px) {
  .header__burger {
    display: block;
  }
}
.header__burger:before, .header__burger:after,
.header__burger span {
  position: absolute;
  left: 0;
  height: 10%;
  width: 100%;
  transition: all 0.3s;
  background: #333;
}
.header__burger:before, .header__burger:after {
  content: "";
}
.header__burger:before {
  top: 0;
}
.header__burger:after {
  bottom: 0;
}
.header__burger span {
  top: 50%;
  transform: scale(1) translate(0px, -50%);
}
.header__burger.active span {
  transform: scale(0) translate(0px, -50%);
}
.header__burger.active:before {
  top: 50%;
  transform: rotate(-45deg) translate(0px, -50%);
}
.header__burger.active:after {
  top: 50%;
  transform: rotate(45deg) translate(0px, -50%);
}

.logo__image {
  height: 70px;
}

.menu {
  display: flex;
  align-items: center;
  gap: 10px;
}
.menu__link {
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  transition: all 0.3s;
  padding: 12px 16px;
  border-radius: 12px;
  box-sizing: border-box;
}
.menu__link:hover {
  background: #ecf0f8;
}
@media (max-width: 1155px) {
  .menu {
    display: inline-block;
    position: fixed;
    top: -280px;
    left: 0;
    right: 0;
    background: #fafafa;
    padding: 24px 12px 12px;
    border-bottom: 2px solid #ccc;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.4s;
  }
  .menu__link {
    padding: 6px 16px;
    border-radius: 0px;
  }
  .menu__link:hover {
    background: none;
    color: #777;
  }
  .menu.active {
    top: 0;
  }
}

.title {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.4;
  margin: 50px 0px 20px 0px;
}

.description {
  margin: 0px 0px 30px 0px;
}
.description p {
  padding: 0;
  margin: 0px 0px 10px 0px;
}
@media (max-width: 1155px) {
  .description p {
    text-align: justify;
  }
}

.sub-title {
  font-size: 28px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0px 0px 20px 0px;
}

.form input {
  width: 100%;
  padding: 11px 15px;
  border: 1px solid #cecece;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 300;
}
.form input:focus {
  outline: none;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.form .small {
  font-size: 12px;
  line-height: 1.2;
  margin-top: 10px;
  color: #999;
}

.result {
  margin: 40px 0px 20px 0px;
  line-height: 1.2;
  font-weight: 400;
  font-size: 32px;
  height: 120px;
}

.table {
  border: 1px solid #eee;
  table-layout: fixed;
  width: 100%;
  margin-bottom: 20px;
}
.table th {
  font-weight: bold;
  padding: 5px;
  background: #efefef;
  border: 1px solid #dddddd;
}
.table td {
  padding: 5px 10px;
  border: 1px solid #eee;
  text-align: left;
}
.table tbody tr:nth-child(odd) {
  background: #fff;
}
.table tbody tr:nth-child(even) {
  background: #F7F7F7;
}