@font-face {
  font-family: "Roboto";
  src: url(fonts/roboto-serif.woff2);
  font-display: swap;
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "RobotoContReg";
  src: url(fonts/RobotoCondensed-Regular.woff2);
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "RobotoCont";
  src: url(fonts/RobotoCondensed-Bold.woff2);
  font-display: swap;
  font-weight: 600;
  font-style: normal;
}
* {
  box-sizing: border-box;
}
body,
html {
  margin: 0;
  padding: 0;
  font-family: "RobotoContReg";
  font-weight: 400;
  background-color: #ffffff;
  scroll-behavior: smooth;
}
h1,
h2,
p {
  margin: 0;
  padding: 0;
}
h2 {
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
}
a {
  text-decoration: none;
  font-size: 14px;
  color: #000;
}
img {
  object-fit: cover;
  background-size: cover;
  pointer-events: none;
}
.container {
  max-width: 350px;
  padding: 0 15px;
  margin: 0 auto;
}
header {
  margin-bottom: 400px;
}
.info {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.info-img {
  width: 320px;
  margin: 0 auto;
}
.header-fix {
  position: fixed;
  display: flex;
  justify-content: space-between;
  background-color: #fffdfd;
  border-bottom: #000 solid 1px;
  padding-top: 20px;
  padding-bottom: 10px;
  width: 320px;
  background-color: #ffe6cc;
}
.header-phone {
  display: flex;
  align-items: center;
  font-size: 16px;
}
.phone-icon {
  width: 25px;
  height: 25px;
}
.header-link {
  width: 30px;
  height: 30px;
}
.header-img {
  display: block;
  width: 220px;
  height: 200px;
  margin: 0 auto;
}
.hero {
  padding-top: 70px;
  padding-bottom: 40px;
  background-color: #ffe6cc;
}
.title {
  font-family: "Roboto";
  text-align: center;
  text-transform: uppercase;
  font-size: 16px;
  margin-top: -40px;
}
.abaut {
  padding-top: 40px;
  padding-bottom: 20px;
  font-size: 18px;
}
.accordion {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}

.accordion-input {
  display: none;
}

.accordion-title {
  display: block;
  padding: 15px;
  background: #ffe6cc;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
  font-size: 17px;
}

.accordion-title:hover {
  background: #e8e8e8;
}

.accordion-title::after {
  content: "+";
  float: right;
  font-weight: bold;
}

.accordion-content {
  max-height: 0;
  padding: 0 15px;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: white;
  text-align: right;
}

.accordion-input:checked ~ .accordion-content {
  max-height: 500px;
  padding: 15px;
}

.accordion-input:checked ~ .accordion-title {
  background: #e0e0e0;
}

.accordion-input:checked ~ .accordion-title::after {
  content: "-";
}
.accordion-link {
  font-size: 17px;
}
.accordion-link:not(:last-child) {
  margin-bottom: 20px;
}
.accordion-title2 {
  display: block;
  padding: 15px;
  background: #ffe6cc;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
  font-size: 17px;
  text-align: center;
  border:
    solid 1 px,
    #ddd;
}
.box {
  position: fixed;
  display: flex;
  flex-direction: column;
  bottom: 10px;
  right: 20px;
  align-items: center;
}
.box-title {
  margin-bottom: 10px;
}
.botton-link {
  display: flex;
  align-items: center;
}
.max-icon {
  width: 40px;
  height: 40px;
}
.telegram-icon {
  margin-right: 20px;
  width: 43px;
  height: 43px;
}
.footer-text {
  padding-top: 20px;
  text-align: center;
  line-height: 2;
}
.link-mail {
}
