*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
}
table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
}
body {
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    line-height: 1.3;
    color: #000;
    margin: 0;
    background-color: #F2F2F2;
}
.t-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.t-content {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1140px;
    width: 100%;
}
.t-header {
    padding: 14px 0;
    background: linear-gradient(271deg, #FACDAE 30.75%, #FACDAE 85.96%);
}
.t-header .t-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.t-header__btn {
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    padding: 10px 20px;
    background-color: #03a9f4;
    border-radius: 7px;
    transition: all 0.3s ease-out;
}
.t-header__btn:hover {
    background-color: #00bcd4;
}
.t-footer {
    background-color: #313233;
    padding: 30px 0;
    color: #fff;
    text-align: center;
    margin-top: auto;
}
.t-footer p {
    margin-bottom: 15px;
    color: #7b7b7b;
}
.t-footer p a {
    color: #fff;
    text-decoration: none;
}
.t-footer__nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.t-footer__nav-link {
    color: #fff;
}
.t-main {
    padding: 50px 0;
}
.t-main > .t-content {
    background-color: #fff;
    padding: 40px 20px;
    box-shadow: 0 10px 10px rgba(0,0,0,0.2);
}
.t-main h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 30px;
}
.t-main h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
}
.t-main h3 {
    margin-bottom: 15px;
    font-size: 20px;
}
.t-main h4 {
    margin-bottom: 15px;
    font-size: 18px;
}
.t-main p {
    margin-bottom: 15px;
}
.t-main a {
    color: #fb627a;
}
.t-main ul {
    margin-bottom: 15px;
}
.t-main li {
    padding-left: 20px;
    position: relative;
    list-style: none;
}
.t-main li::before {
    content: '';
    width: 6px;
    height: 6px;
    position: absolute;
    left: 0;
    top: 6px;
    border-radius: 50%;
    background-color: #000;
}
.t-main img {
    max-width: 100%;
    height: auto;
    border-style: none;
    display: block;
}
.t-main__arrow {
    position: relative;
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: center;
}
.t-main__arrow p {
    position: absolute;
}
.t-main__arrow-t1,
.t-main__arrow-t2,
.t-main__arrow-t3 {
    bottom: 100%;
}
.t-main__arrow-t4,
.t-main__arrow-t5,
.t-main__arrow-t6 {
    top: 100%;
}
.t-main__arrow-t1 {
    left: 0;
    width: 26%;
}
.t-main__arrow-t2 {
    width: 28%;
    left: 29%;
}
.t-main__arrow-t3 {
    width: 25%;
    left: 62%;
}
.t-main__arrow-t4 {
    width: 28%;
    left: 12%;
}
.t-main__arrow-t5 {
    width: 33%;
    left: 41%;
}
.t-main__arrow-t6 {
    width: 25%;
    left: 74%;
}
.t-main__table {
    overflow: scroll;
    margin-bottom: 20px;
}
.t-main__table td {
    padding: 10px;
    border: 1px solid #e1e1e1;
}
.font-weight-bold {
    font-weight: bold;
}