@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: #000;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (max-width: 992px) {
  .container {
    max-width: 100%;
    padding: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 100%;
    padding: 0;
  }
}

.main {
  background-color: #000;
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .main {
    padding: 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .main {
    padding: 0;
  }
}
.main__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.main__content {
  position: relative;
  width: 50%;
  color: #fff;
}
@media screen and (max-width: 992px) {
  .main__content {
    width: 60%;
    padding-right: 10px;
  }
}
@media screen and (max-width: 767px) {
  .main__content {
    width: 100%;
  }
}
.main__content_image {
  display: none;
}
@media screen and (max-width: 767px) {
  .main__content_image {
    display: flex;
  }
}
.main__content_image:before {
  content: "";
  display: flex;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.2;
}
@media screen and (max-width: 767px) {
  .main__content_info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 15px;
  }
}
.main__content_title {
  font-size: 60px;
  line-height: 70px;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (max-width: 992px) {
  .main__content_title {
    font-size: 34px;
    line-height: 40px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .main__content_title {
    max-width: 80%;
    font-size: 28px;
    line-height: 37px;
    margin-bottom: 20px;
  }
}
.main__content_description {
  font-size: 22px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 24px;
}
@media screen and (max-width: 992px) {
  .main__content_description {
    font-size: 20px;
    line-height: 26px;
  }
}
@media screen and (max-width: 767px) {
  .main__content_description {
    font-size: 16px;
    line-height: 22px;
  }
}
.main__content_link a {
  display: inline-flex;
  background-color: #fff;
  border-radius: 5px;
  color: #000;
  padding: 10px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 50px;
  text-decoration: none;
  transition: 0.8s;
  border: 2px solid #fff;
}
@media screen and (max-width: 992px) {
  .main__content_link a {
    padding: 7px;
    font-size: 16px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .main__content_link a {
    padding: 7px;
    font-size: 14px;
    margin-bottom: 30px;
  }
}
.main__content_link a:after {
  content: "→";
  margin-left: 8px;
}
.main__content_link a:hover {
  color: #fff;
  background-color: #000;
}
.main__content_list li {
  font-size: 18px;
  margin-bottom: 15px;
}
@media screen and (max-width: 992px) {
  .main__content_list li {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .main__content_list li {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.main__content_list li:before {
  content: "✓";
  margin-right: 12px;
}
.main__image {
  width: 50%;
}
@media screen and (max-width: 992px) {
  .main__image {
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .main__image {
    display: none;
  }
}
.main__image img {
  border-radius: 10px;
}

.certificate {
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .certificate {
    margin-bottom: 0;
  }
}

.footer {
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  .footer .container {
    padding: 0 15px;
  }
}
.footer__nav {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    margin-bottom: 20px;
  }
}
.footer__nav ul {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .footer__nav ul {
    justify-content: center;
  }
}
.footer__nav ul li {
  display: flex;
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  .footer__nav ul li {
    justify-content: center;
    width: 33.3333333333%;
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.footer__nav ul li:last-child {
  margin-right: 0;
  margin-bottom: 0;
}
.footer__nav ul li a {
  display: inline-flex;
  gap: 10px;
  font-size: 16px;
  color: #fff;
}
@media screen and (max-width: 992px) {
  .footer__nav ul li a {
    font-size: 14px;
  }
}
.footer__copyright {
  font-size: 16px;
  text-align: center;
  color: #fff;
  opacity: 0.8;
}
@media screen and (max-width: 992px) {
  .footer__copyright {
    font-size: 14px;
  }
}/*# sourceMappingURL=style.css.map */