/* Первый Select Приветствия  */

.index-select, .server-select, .sservice-select, .rule-servion .payments-section {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}
.index-content {
    display: flex;
    flex-direction: row;
    /* или column */
    justify-content: center;
    /* выравнивание по горизонтали */
    align-items: center;
    /* выравнивание по вертикали */
    width: 1100px;
    height: 400px;
    margin: 0 auto;
    font-size: 0;
}
.index-con {
    display: block;
    width: 605px;
    height: 400px;
}
.index-con h1 {
    display: block;
    width: 100%;
    height: auto;
    margin: 40px 0px 20px;
    text-align: center;
    line-height: normal;
    font-family: "Monoton", sans-serif;
    font-size: 5rem;
    font-weight: 400;
    color: rgb(3 4 13);
}
.index-con p {
    display: block;
    width: 100%;
    height: auto;
    padding: 0px 15px;
    text-align: center;
    line-height: normal;
    font-size: 18px;
    font-weight: 400;
    color: #505050;
}
.index-con div {
    display: flex;
    justify-content: center;
    gap: 0 50px;
    margin-top: 25px;
}
.index-con button {
    display: block;
    width: 200px;
    height: auto;
    text-align: center;
    line-height: normal;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    background-color: rgb(3 4 13);
    border: 1px solid rgb(3 4 13);
    border-radius: 5px;
    cursor: pointer;
}
.index-img {
    position: relative;
    display: block;
    width: 495px;
    height: 400px;
    background-image: url(../image/index-block.png);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: 492px;
}
.index-img:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    right: 0;
    display: block;
    width: 100%;
    height: 5px;
    background-color: rgb(3 4 13);
    border-radius: 50px 50px 0px 0px;
    box-shadow: 0px 0px 6px 2px rgb(2 3 10);
    z-index: 1;
}
h2.title-line {
    display: block;
    width: 1100px;
    height: auto;
    margin: 0 auto;
    padding: 50px 0 20px;
    text-align: left;
    line-height: normal;
    font-size: 2rem;
    font-weight: 600;
    color: #000;
}
/* Второй Select Список сервера  */

.server-content {
    display: block;
    width: 1100px;
    height: auto;
    margin: 0 auto;
    padding: 0;
}
.server-table {
    width: 100%;
    border-color: #ccc;
    border-collapse: collapse;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
}
.server-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
}
.server-table td#number {
    font-weight: 500;
}
/* Список Привилегий серверов  */

.service-content {
    display: flex;
    flex-direction: row;
    /* или column */
    justify-content: space-between;
    /* выравнивание по горизонтали */
    align-items: stretch;
    /* выравнивание по вертикали */
    flex-wrap: nowrap;
    flex-basis: 300px;
    gap: 20px;
    width: 1100px;
    height: auto;
    margin: 0px auto;
    padding: 0;
}
.service-wrapper {
    flex: 1;
    display: block;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    overflow: hidden;
}
.image {
    display: block;
    width: 100%;
    height: 240px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ccc;
    overflow: hidden;
}
.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* растягивает с обрезкой */
    display: block;
    transition: scale 400ms;
}
.service-wrapper:hover img {
    scale: 120%;
}
.content {
    display: block;
    width: 100%;
    height: auto;
    padding: 20px;
}
.content h3 {
    display: block;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    color: rgb(3 4 13);
}
.content ul {
    display: block;
    width: 100%;
    height: auto;
    padding-left: 15px;
    list-style: disc;
}
.content li {
    width: 100%;
    height: auto;
    padding: 2.5px 0;
    font-size: 16px;
}
/* Правила сервера  */

.rule-content {
    position: relative;
    display: block;
    width: 1100px;
    height: auto;
    margin: 0 auto;
}
.rule-content ul {
    padding: 20px 20px 20px 45px;
    list-style: decimal;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #ccc;
}
.rule-content li {
    padding: 5px 0;
    font-size: 16px;
    font-weight: 500;
    color: #000;
}
/* Payments Section  */

.payments-content {
    display: flex;
    flex-direction: row;
    /* или column */
    justify-content: space-between;
    /* выравнивание по горизонтали */
    align-items: center;
    /* выравнивание по вертикали */
    flex-wrap: nowrap;
    width: 1100px;
    height: 90px;
    margin: 50px auto;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #ccc;
}
.payments-content>.label {
    display: block;
    flex: 1;
    height: 60px;
    padding-left: 20px;
    text-align: left;
    line-height: 60px;
    font-size: 2rem;
    font-weight: 600;
    color: #000;
}
.cont {
    display: flex;
    flex-direction: row;
    /* или column */
    justify-content: space-between;
    /* выравнивание по горизонтали */
    align-items: center;
    /* выравнивание по вертикали */
    gap: 5px;
    padding-right: 20px;
}
.cont div {
    display: block;
    width: 100px;
    height: 46px;
    border-radius: 5px;
    background-color: #fff;
    overflow: hidden;
}
.cont img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* растягивает с обрезкой */
    display: block;
}
/* Footer Style */

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1100px;
    height: 60px;
    margin: 0 auto;
}
footer span {
    display: block;
    width: auto;
    height: 20px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
}
/* Form Style */

form {
    width: 100%;
    height: auto;
    padding: 20px;
}
form>h2 {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    text-align: center;
    line-height: normal;
    font-size: 2rem;
}
form>a {
    margin-left: 20px;
    text-decoration: none;
    font-size: 16px;
    color: rgb(3 4 13);
}
form>a:hover {
    text-decoration: underline;
}