html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*,
*::after,
*::before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
ul[class],
ol[class] {
  padding: 0;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}
ul[class] {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
input,
button,
textarea,
select {
  font: inherit;
}
a {
  text-decoration: none;
}
html,
body {
  scroll-behavior: smooth;
}
body {
  background-color: #222;
  font-family: "Exo 2", tahoma, verdana, arial, sans-serif, "Lucida Sans";
  color: #fff;
}
.container {
  max-width: 1150px;
  padding: 0 10px;
  margin: 0 auto;
}
a {
  color: #fff;
}
.title {
  font-size: 30px;
  margin-bottom: 10px;
  text-transform: uppercase;
  line-height: 120%;
  font-weight: 500;
}
.subtitle {
  margin-bottom: 50px;
  display: block;
  max-width: 800px;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1.3px;
}
.btn {
  text-transform: uppercase;
  border: 2px solid #ffc228;
  padding: 12px 22px;
  border-radius: 5px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.btn:hover {
  border-color: rgba(59, 59, 59, 0.7);
}
.item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 2px solid #3b3b3b;
  border-radius: 10px;
}
.header {
  position: fixed;
  z-index: 100;
  background-color: #222;
  left: 0;
  right: 0;
  -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.15);
}
.header__inner {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header__logo {
  max-width: 50px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.header__logo:hover {
  opacity: 0.8;
}
.header__logo-img {
  width: 100%;
  height: 100%;
}
.header__menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  text-transform: uppercase;
}
.header__menu-link {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.header__menu-link:hover {
  color: #ffc228;
}
.about {
  padding-top: 150px;
  margin-bottom: 50px;
}
.about__prev {
  margin-bottom: 70px;
}
.about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 20px;
}
.about__item {
  max-width: 49%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  min-height: 350px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding: 20px;
  gap: 20px;
}
.about__item-img {
  width: 100px;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 2px solid #ffc228;
  border-radius: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.about__item-img img {
  width: 50px;
  height: 50px;
}
.about__item-title {
  text-transform: uppercase;
  line-height: 120%;
  font-size: 18px;
  margin-bottom: 10px;
}
.about__item-descr {
  font-size: 16px;
  letter-spacing: 1.3px;
  font-style: italic;
}
.anon {
  margin-bottom: 100px;
}
.enter {
  margin-bottom: 50px;
}
.enter__subtitle {
  margin-bottom: 70px;
}
.enter__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.enter__item {
  padding: 35px 20px 10px 20px;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  max-width: 33%;
  min-height: 230px;
  z-index: 1;
}
.enter__item-title {
  font-size: 18px;
  text-transform: uppercase;
  text-align: end;
  margin-bottom: 10px;
  font-style: italic;
}
.enter__item-text {
  text-align: end;
  letter-spacing: 1.3px;
  font-size: 16px;
}
.enter__item-text a {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #fcd52c;
}
.enter__item-text a:hover {
  color: #3b3b3b;
}
.enter__item:nth-child(1)::before {
  content: "1";
}
.enter__item:nth-child(2)::before {
  content: "2";
}
.enter__item:nth-child(3)::before {
  content: "3";
}
.enter__item::before {
  width: 50px;
  height: 10px;
  position: absolute;
  z-index: 2;
  font-size: 50px;
  top: -10px;
  left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #ffc228;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #222;
}
.tor {
  margin-bottom: 50px;
}
.tor__link {
  display: block;
  width: 100%;
  font-size: 17px;
  margin-bottom: 20px;
  border: 1px solid #3b3b3b;
  border-radius: 10px;
  padding: 22px 20px 22px 20px;
  position: relative;
  word-wrap: break-word;
}
.tor__link::after {
  content: "";
  width: 20px;
  height: 20px;
  right: 20px;
  top: 23px;
  position: absolute;
  background-color: #88ff00;
  border-radius: 50%;
}

.reviews {
  margin-bottom: 50px;
}
.reviews__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}
.reviews__item {
  max-width: 33%;
  min-height: 230px;
  padding: 30px 60px 20px 20px;
  position: relative;
  border: 2px solid #3b3b3b;
  border-radius: 10px;
}
.reviews__item::after {
  content: url(../img/blockquote.svg);
  position: absolute;
  top: 10px;
  right: 15px;
}
.reviews__item-author {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}
.reviews__item-date {
  font-size: 15px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}
.reviews__item-date span {
  color: #ffc228;
}
.reviews__item-review {
  font-size: 15px;
  letter-spacing: 1.3px;
  font-style: italic;
}
.footer {
  text-align: center;
  padding: 30px 0;
}
.footer__text {
  font-weight: 400;
  line-height: 125%;
}
@media (max-width: 1150px) {
  .about__item-img {
    width: 90px;
  }
  .enter__item {
    min-height: 260px;
  }
  .reviews__item {
    min-height: 250px;
  }
}
@media (max-width: 1030px) {
  .about__inner {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .about__item {
    max-width: 80%;
    min-height: 200px;
    padding: 50px 30px;
  }
  .enter__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 50px;
  }
  .enter__item {
    max-width: 50%;
    min-height: 100px;
    padding: 35px 20px 20px 20px;
  }
  .reviews__inner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .reviews__item {
    max-width: 50%;
    min-height: 100px;
    padding-bottom: 30px;
  }
}
@media (max-width: 980px) {
  .about__item {
    max-width: 100%;
    padding: 40px;
  }
}
@media (max-width: 800px) {
  .header__menu {
    display: none;
  }
  .about__item {
    padding: 25px;
  }
  .enter__item {
    max-width: 80%;
    padding: 35px 20px;
  }
  .tor__link {
    font-size: 15px;
  }
  .tor__link::after {
    display: none;
  }
}
@media (max-width: 630px) {
  .enter__item {
    max-width: 100%;
  }
  .reviews__item {
    max-width: 80%;
  }
}
@media (max-width: 500px) {
  .title {
    padding-right: 30px;
  }
  .subtitle {
    font-size: 18px;
    padding-right: 30px;
  }
  .header {
    -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
  }
  .header__inner {
    padding: 20px 10px;
  }
  .about__item {
    padding: 30px 15px;
  }
  .enter__item {
    padding-bottom: 30px;
  }
  .tor__link {
    padding: 15px 10px;
    font-size: 12px;
  }
  .reviews__item {
    max-width: 100%;
  }
}
@media (max-width: 400px) {
  .title {
    font-size: 25px;
  }
  .subtitle {
    font-size: 16px;
  }
  .about {
    padding-top: 130px;
  }
  .about__item-title {
    font-size: 17px;
  }
  .about__item-descr {
    font-size: 15px;
  }
}
