:root {
  --company-color: #1c3d66;
  --base-color: #10212a;
  --descriptions-color: #454545;
  --default: #f2f5fc;
  --accent-color: #ffd149;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--base-color);
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  padding-top: 16px;
}

.wrapper {
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.section {
  margin-top: 80px;
  margin-bottom: 80px;
  width: 100%;
  box-sizing: border-box;
}

h1,
h2,
.section-title {
  font-family: "EuropeExtBold";
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2,
.section-title p {
  margin: 0;
  text-align: center;
}

.section-title h2 {
  font-family: "EuropeExtBold", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 120%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title p {
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: var(--descriptions-color);
  font-family: "Montserrat", sans-serif;
}

.app-button {
  background-color: var(--company-color);
  border: none;
  color: #fff;
  padding: 20px 70px;
  transition: all 0.2s ease;
  cursor: pointer;
  border-radius: 0;
  font-weight: 700;
  font-size: 18px;
}

.app-button:hover {
  background-color: #37aee299;
}

.app-button:active {
  background-color: #37aee2c2;
}

.app-button.app-button--accent {
  background: var(--accent-color);
  color: var(--base-color);
}

.app-button.app-button--accent:hover {
  background-color: #ffd14982;
}

.app-button.app-button--accent:active {
  background-color: #ffd149ad;
}

.list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.covered-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hidden-element {
  overflow: hidden;
  max-height: 0;
  transition: all 0.2s ease;
  visibility: hidden;
  opacity: 0;
}

.transparent-button {
  background: transparent;
  border: none;
}

.description-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.description-grid h3 {
  font-family: "EuropeExtBold";
  font-style: normal;
  font-weight: 700;
  font-size: 30px;
  line-height: 33px;
  text-transform: uppercase;
}

.description-grid p {
  font-family: "Montserrat";
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #454545;
}

@media (max-width: 768px) {
  .section-title h2,
  h2 {
    font-size: 19px;
    margin-bottom: 20px;
    text-align: left;
  }

  .section-title{
    margin-bottom: 30px;
  }

  .section-title h2 {
    word-break: break-all;
  }
}
