@charset "UTF-8";
.wrapepr {
  scroll-behavior: smooth;
  display: grid;
  grid-template-areas: "a c " "b c  " "b c ";
  grid-template-columns: 65% 35%;
  margin-top: 120px;
}

.section__next-top{
  margin-top: 40px;
}
.title{
  font-size: 18px;
  font-weight: 500;
  line-height: 140%;
  color: #121212;
}
.second__title{
  font-size: 15px;
  line-height: 120%;
  margin: 20px 0 8px 0;
}
.name{
  font-size: 15px;
  line-height: 120%;
}

@media screen and (max-width: 768px) {
  .wrapepr{
    margin-top: 80px;
  }
  .section__next-top{
    margin-top: 0;
  }
}



.main__title {
  margin-right: 20px;
  grid-area: a;
  font-size: 46px;
  font-weight: 700;
  line-height: 110%;
  color: #121212;
}

.main {
  grid-area: b;
  margin-right: 20px;
  max-width: 1100px;
  margin-top: 0 !important;
}
.main .section__next h5 {
  font-size: 22px;
  font-weight: 600;
  line-height: 135%;
  color: #121212;
  margin-top: 30px;
  padding-bottom: 14px;
}
.main .section__next p {
  font-weight: 400;
  line-height: 150%;
  color: #121212;
  padding-bottom: 10px;
}

.sidebar {
  grid-area: c;
  align-self: start;
  min-width: 400px;
  background-color: #13182C;
  padding: 45px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}
.sidebar .link a {
  color: #FFFFFF;
  font-weight: 400;
  line-height: 150%;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
}
.sidebar .link a:hover {
  color: #6AF8B0;
}
.sidebar .link {
  position: relative;
}
.sidebar .link::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -5px;
  display: block;
  width: 0;
  height: 2px;
  background: #6AF8B0;
  transition: all 0.3s ease-out 0s;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
}
.sidebar .link:hover:after {
  width: 100%;
}
.sidebar .link:not(:last-child) {
  margin-bottom: 20px;
}

@media screen and (max-width: 1280px) {
  .wrapepr {
    grid-template-columns: 55% 45%;
  }
}
@media screen and (max-width: 960px) {
  .wrapepr {
    grid-template-areas: "a a " "c c  " "b b ";
  }
  .main__title {
    margin-bottom: 30px;
  }
  .main {
    margin-right: 0;
  }
  .sidebar {
    margin-bottom: 40px;
    flex: 1 1 100%;
    width: 100%;
  }
}
@media screen and (max-width: 580px) {
  .main__title {
    font-size: 8vw;
  }
  .sidebar {
    padding: 45px 20px;
    min-width: 100%;
  }
}

h6{
  margin-top: 20px;
}

/* Стили для таблиц в Приложении */
.main .section__next table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  border: 1px solid #e0e0e0;
}

.main .section__next table td {
  border: 1px solid #e0e0e0;
  padding: 12px 15px;
  vertical-align: top;
  line-height: 150%;
}

.main .section__next table td:first-child {
  width: 180px;
  min-width: 180px;
  font-weight: 600;
  background-color: #f8f9fa;
}

.main .section__next table td:last-child {
  width: auto;
}

@media screen and (max-width: 768px) {
  .main .section__next table td:first-child {
    width: 120px;
    min-width: 120px;
  }
  .main .section__next table td {
    padding: 8px 10px;
    font-size: 14px;
  }
}