@font-face {
    font-family: "Roboto";
    src: url(./../fonts/Roboto-VariableFont_wdth\,wght.ttf);
}

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    letter-spacing: 3px;
    color: white;
    font-size: 14px;
    list-style-type: none;
    font-family: "Roboto", sans-serif;
    line-height: inherit;
}

body {
    overflow: hidden;
}

*::-webkit-scrollbar {
  width: 14px;
  height: 14px;
}

*::-webkit-scrollbar-track {
  background-color: #505050;
  border: 1px solid white;
}

*::-webkit-scrollbar-thumb {
  background-color: orange;
  border: 1px solid white;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: rgb(255, 194, 81);
}

.app {
    width: 100%;
    height: 100vh;
}

.app_container {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center 0;
    background-size: cover;
    background-color: black;
    position: relative;
    -webkit-animation: app_container-anim 14s linear infinite 0.9s;
            animation: app_container-anim 14s linear infinite 0.9s;
}

@-webkit-keyframes app_container-anim {
    0% {
        -webkit-box-shadow: inset 0 0 40px 40px black;
                box-shadow: inset 0 0 40px 40px black;
    }
    10% {
        -webkit-box-shadow: inset 0 0 140px 140px black;
                box-shadow: inset 0 0 140px 140px black;
    }
    90% {
        -webkit-box-shadow: inset 0 0 140px 140px black;
                box-shadow: inset 0 0 140px 140px black;
    }
    100% {
        -webkit-box-shadow: inset 0 0 40px 40px black;
                box-shadow: inset 0 0 40px 40px black;
    }
}

@keyframes app_container-anim {
    0% {
        -webkit-box-shadow: inset 0 0 40px 40px black;
                box-shadow: inset 0 0 40px 40px black;
    }
    10% {
        -webkit-box-shadow: inset 0 0 140px 140px black;
                box-shadow: inset 0 0 140px 140px black;
    }
    90% {
        -webkit-box-shadow: inset 0 0 140px 140px black;
                box-shadow: inset 0 0 140px 140px black;
    }
    100% {
        -webkit-box-shadow: inset 0 0 40px 40px black;
                box-shadow: inset 0 0 40px 40px black;
    }
}

.input-translators-styles {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -9999;
    width: 0;
    height: 0;
    overflow: hidden;
    display: none;
}

.nav_main_menu {
    top: 0;
    left: -170px;
    padding-top: 20px;
    padding-left: 20px;
    padding-bottom: 20px;
    width: 70px;
    height: 100%;
    position: absolute;
    z-index: 999;
    -webkit-transition: left 1s ease-in-out;
    -o-transition: left 1s ease-in-out;
    transition: left 1s ease-in-out;
}

.nav_main_menu_first_open {
    left: 0;
}

.nav_main_menu_container {
    width: 100%;
    height: 100%;
    background-color: #505050;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 6px;
    -webkit-box-shadow: 0 0 4px 4px #383838;
            box-shadow: 0 0 4px 4px #383838;
    border: 1px solid white;
}

.nav_main_menu_container_ul_left {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.nav_main_menu_container_ul_left:last-child {
    display: none;
}

.nav_main_menu_container_ul_left_logo {
    width: 100%;
    margin-bottom: 30px;
}

.nav_main_menu_container_ul_left_li {
    background-color: #7e7e7e;
    width: 36px;
    height: 36px;
    cursor: pointer;
    padding: 2px;
    margin-bottom: 10px;
    position: relative;
    -webkit-transition: background-color 0.3s linear;
    -o-transition: background-color 0.3s linear;
    transition: background-color 0.3s linear;
    border: 1px solid white;
}

.nav_main_menu_container_ul_left_li:hover {
    background-color: rgb(255, 194, 81);
}

.nav_main_menu_container_ul_left_li:hover .nav_main_menu_container_ul_left_li_div {
    display: block;
}

.nav_main_menu_container_ul_left_li_active {
    background-color: orange;
}

.nav_main_menu_container_ul_left_li_active:hover .nav_main_menu_container_ul_left_li_div {
    display: none;
}

.nav_main_menu_container_ul_left_li_active:hover {
    background-color: orange;
}

.nav_main_menu_container_ul_left_li_img {
    width: 100%;
}

.nav_main_menu_container_ul_left_li_div {
    position: absolute;
    left: 51px;
    top: 0;
    background-color: rgb(80, 80, 80);
    border: 1px solid white;
    -webkit-box-shadow: 0 0 4px 4px #383838;
            box-shadow: 0 0 4px 4px #383838;
    padding: 10px 20px;
    display: none;
}

.nav_main_menu_container_ul_left_li_div_span {
    color: white;
    white-space: nowrap;
    text-transform: uppercase;
    font-size: 14px;
}

.nav_main_menu_container_ul_bottom {
    width: 100%;
}

.nav_main_menu_container_ul_left .nav_main_menu_container_ul_left_li:last-child {
    margin-bottom: 0;
}

.nav_main_menu_container_ul_left:last-child .nav_main_menu_container_ul_left_li .nav_main_menu_container_ul_left_li_div {
    top: inherit;
    bottom: -2px;
}

.nav_socials {
    top: 0;
    right: -170px;
    padding-top: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    width: 70px;
    position: absolute;
    z-index: 999;
    -webkit-transition: right 1s ease-in-out;
    -o-transition: right 1s ease-in-out;
    transition: right 1s ease-in-out;
}

.nav_socials_first_open {
    right: 0;
    display: none;
}

.nav_socials_container {
    width: 100%;
    height: 100%;
    background-color: #505050;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 6px;
    border: 1px solid white;
    -webkit-box-shadow: 0 0 4px 4px #383838;
            box-shadow: 0 0 4px 4px #383838;
}

.nav_socials_container_ul {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.nav_socials_container_ul_li {
    background-color: #7e7e7e;
    width: 36px;
    height: 36px;
    cursor: pointer;
    margin-bottom: 10px;
    position: relative;
    -webkit-transition: background-color 0.3s linear;
    -o-transition: background-color 0.3s linear;
    transition: background-color 0.3s linear;
    border: 1px solid white;
}

.nav_socials_container_ul_li:last-child {
    margin-bottom: 0;
}

.nav_socials_container_ul_li:hover {
    background-color: rgb(255, 194, 81);
}

.nav_socials_container_ul_li:hover .nav_socials_container_ul_li_link_div {
    display: block;
}

.nav_socials_container_ul_li_link {
    padding: 2px;
    display: block;
    width: 100%;
}

.nav_socials_container_ul_li_link_img {
    width: 100%;
}

.nav_socials_container_ul_li_link_div {
    position: absolute;
    right: 51px;
    top: -1px;
    background-color: rgb(80, 80, 80);
    border: 1px solid white;
    -webkit-box-shadow: 0 0 4px 4px #383838;
            box-shadow: 0 0 4px 4px #383838;
    padding: 10px 20px;
    display: none;
}

.nav_socials_container_ul_li_link_div_span {
    color: white;
    white-space: nowrap;
    text-transform: uppercase;
}

.nav_languages {
    position: absolute;
    right: 20px;
    bottom: -150px;
    z-index: 999;
    -webkit-transition: bottom 1s ease-in-out;
    -o-transition: bottom 1s ease-in-out;
    transition: bottom 1s ease-in-out;
}

.nav_languages_first_open {
    bottom: 20px;
}

.nav_languages_pseudo-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    background-color: #505050;
    -webkit-box-shadow: 0 0 4px 4px #383838;
            box-shadow: 0 0 4px 4px #383838;
    padding: 6px;
    border: 1px solid white;
    -webkit-transition: background-color 0.3s linear;
    -o-transition: background-color 0.3s linear;
    transition: background-color 0.3s linear;
}

.nav_languages_pseudo-button:hover {
    background-color: rgb(255, 194, 81);
}

.nav_languages_pseudo-button_img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.nav_languages_pseudo-button_text {
    color: white;
}

.nav_languages_pseudo-button_text_span {
    display: inline-block;
    -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
            transform: rotate(-90deg);
    margin-right: 5px;
    width: 18px;
    height: 18px;
}

.nav_languages_list_style {
    max-height: 162px;
    display: none;
    position: absolute;
    bottom: 53px;
    right: 0;
    cursor: pointer;
    background-color: #505050;
    border: 1px solid white;
    -webkit-box-shadow: 0 0 4px 4px #383838;
            box-shadow: 0 0 4px 4px #383838;
    overflow-y: auto;
}

.nav_languages_list_style_active {
    display: block;
}

.nav_languages_list_style_ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.nav_languages_list_style_ul_li {
    min-width: 150px;
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    border-bottom: 1px solid white;
    -webkit-transition: background-color 0.3s linear;
    -o-transition: background-color 0.3s linear;
    transition: background-color 0.3s linear;
    color: white;
}

.nav_languages_list_style_ul_li:last-child {
    border-bottom: none;
}

.nav_languages_list_style_ul_li:hover {
    background-color: rgb(255, 194, 81);
}

.nav_languages_list_style_ul_li_active {
    background-color: orange;
}

.nav_languages_list_style_ul_li_active:hover {
    background-color: orange;
}

.section_main_page {
    padding-left: 75px;
    padding-right: 75px;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.section_main_page_h1 {
    text-align: center;
    color: white;
    font-size: 60px;
    text-shadow: 3px 3px 3px #383838;
}

.section_main_page_h2 {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
    color: white;
    font-size: 50px;
    text-shadow: 3px 3px 3px #383838;
}

.section_main_page_h3 {
    text-align: center;
    color: white;
    font-size: 40px;
    text-shadow: 3px 3px 3px #383838;
}

.loading {
    width: 100vw;
    height: 100vh;
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    background-color: #383838;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 9999;
}

.loading_active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.loading_image {
    width: 100px;
    height: 100px;
    -webkit-animation: loading-anim 3s linear infinite;
            animation: loading-anim 3s linear infinite;
}

@-webkit-keyframes loading-anim {
    0% {
        -webkit-transform: rotate(0);
                transform: rotate(0);
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
        opacity: 1;
    }
}

@keyframes loading-anim {
    0% {
        -webkit-transform: rotate(0);
                transform: rotate(0);
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        -webkit-transform: rotate(360deg);
                transform: rotate(360deg);
        opacity: 1;
    }
}

.section_info {
    padding-left: 92px;
    padding-right: 90px;
    padding-top: 20px;
    padding-bottom: 86px;
    position: fixed;
    z-index: -1;
    top: -120%;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: top 1s ease-in-out 0s;
    -o-transition: top 1s ease-in-out 0s;
    transition: top 1s ease-in-out 0s;
    cursor: default;
}

.section_servers_container {
    width: 100%;
    height: 100%;
    background-color: #505050;
    border: 1px solid white;
    padding-top: 30px;
    padding-left: 60px;
    padding-right: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    overflow-y: auto;
    -webkit-box-shadow: 0 0 4px 4px #383838;
            box-shadow: 0 0 4px 4px #383838;
}

.section_add_info_container {
    width: 100%;
    height: 100%;
    background-color: #505050;
    border: 1px solid white;
}

.section_info_active {
    top: 0;
    -webkit-transition-delay: 1s;
         -o-transition-delay: 1s;
            transition-delay: 1s;
}

.section_servers_container_one_elem {
    width: 32.4%;
    margin-bottom: 30px;
    background-color: #7e7e7e;
    border: 1px solid white;
    padding-top: 20px;
    padding-bottom: 35px;
    padding-right: 40px;
    padding-left: 40px;
    cursor: pointer;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 440px;
    -webkit-box-shadow: 1px 1px 2px 2px #383838;
            box-shadow: 1px 1px 2px 2px #383838;
}

.section_servers_container_one_elem .window_content_info {
    width: 0;
    height: 0;
    overflow: hidden;
    display: none;
}

.section_servers_container_one_elem:hover {
    background-color: rgb(255, 194, 81);
    -webkit-box-shadow: 3px 3px 6px 6px #383838;
            box-shadow: 3px 3px 6px 6px #383838;
    -webkit-transform: scale(1.02);
        -ms-transform: scale(1.02);
            transform: scale(1.02);
}

.section_servers_container_one_elem_title {
    text-align: center;
    padding-bottom: 5px;
    border-bottom: 2px solid white;
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: bold;
}

.section_servers_container_one_elem_image {
    width: 100%;
    border: 1px solid white;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.section_servers_container_one_elem_text {
    text-align: center;
    font-size: 20px;
    margin-top: 15px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    font-weight: bold;
}

.section_servers_container_one_elem_text_slots {
    text-align: center;
    font-size: 16px;
    margin-top: 25px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.section_servers_container_one_elem_text_slots_span {
    font-size: 18px;
    font-weight: bold;
    border: 2px solid white;
    padding: 10px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.container_one_elem_window_info {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 100vh;
    left: 0;
    z-index: 9999;
    background-color: #383838;
    border: 1px solid white;
    overflow-y: auto;
    -webkit-transition: top 1s ease-in-out;
    -o-transition: top 1s ease-in-out;
    transition: top 1s ease-in-out;
}

.container_one_elem_window_info_active {
    top: 0;
}

.window_content_info {
    width: 100%;
    padding: 100px 150px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.container_one_elem_window_info_close_position {
    width: 100%;
    position: sticky;
    top: 0;
}

.container_one_elem_window_info_close {
    background-color: #7e7e7e;
    position: absolute;
    top: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border: 1px solid white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: background-color 0.3s linear;
    -o-transition: background-color 0.3s linear;
    transition: background-color 0.3s linear;
    -webkit-box-shadow: 1px 1px 2px 2px #383838;
            box-shadow: 1px 1px 2px 2px #383838;
}

.container_one_elem_window_info_close:hover {
    background-color: rgb(255, 194, 81);
}

.container_one_elem_window_info_close_span {
    font-size: 30px;
    margin-right: -3.5px;
    margin-top: -1px;
}

.section_servers_container_one_elem_add_title {
    padding-bottom: 5px;
    border-bottom: 2px solid white;
    margin-bottom: 25px;
    font-size: 28px;
    font-weight: bold;
}

.section_servers_container_one_elem_add_image {
    width: 100%;
    border: 1px solid white;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.section_servers_container_one_elem_add_text {
    font-size: 20px;
    margin-top: 15px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    font-weight: bold;
}

.section_servers_container_one_elem_text_add_slots {
    font-size: 16px;
    margin-top: 25px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    margin-bottom: 35px;
}

.section_servers_container_one_elem_text_slots_add_span {
    font-size: 18px;
    font-weight: bold;
    border: 2px solid white;
    padding: 10px;
    -webkit-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

/*format texts start*/
.server_description_title_class {
    font-size: 24px;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 5px;
}

.server_description_text_class {
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 30px;
    padding-top: 5px;
}

.server_features_title_class {
    font-size: 24px;
    font-weight: bold;
    margin-top: 30px;
    margin-bottom: 5px;
}

.server_features_text_class {
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 30px;
    border-top: 1px solid white;
    padding-top: 5px;
}
/*format texts end*/

@media only screen and (max-width: 1566px) {
    .section_main_page_h1 {
        font-size: 50px;
    }
    .section_main_page_h2 {
        font-size: 40px;
    }
    .section_main_page_h3 {
        font-size: 30px;
    }
}

@media only screen and (max-width: 1351px) {
    .section_main_page_h1 {
        font-size: 40px;
    }
    .section_main_page_h2 {
        font-size: 30px;
    }
    .section_main_page_h3 {
        font-size: 20px;
    }
    .section_servers_container_one_elem {
        width: 49.1%;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 1136px) {
    .section_main_page_h1 {
        font-size: 28px;
    }
    .section_main_page_h2 {
        font-size: 24px;
    }
    .section_main_page_h3 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 990px) {
    .section_servers_container_one_elem {
        width: 100%;
        margin-bottom: 10px;
        padding-top: 5px;
        padding-bottom: 15px;
        padding-right: 10px;
        padding-left: 10px;
        height: 530px;
    }
    .section_servers_container_one_elem_title {
        margin-bottom: 10px;
        border-bottom: 1px solid white;
        font-size: 14px;
    }
    .section_servers_container_one_elem_text {
        margin-top: 10px;
        font-size: 16px;
    }
    .section_servers_container_one_elem_text_slots {
        margin-top: 20px;
        font-size: 14px;
    }
    .section_servers_container_one_elem_text_slots_span {
        padding: 5px;
        font-size: 16px;
    }
}

@media only screen and (max-width: 800px) {
    .section_servers_container_one_elem {
        height: 420px;
    }
}

@media only screen and (max-width: 700px) {
    .section_servers_container_one_elem {
        height: 370px;
    }
}

@media only screen and (max-width: 600px) {
    * {
        letter-spacing: 1px;
        font-size: 12px;
    }
    body {
        overflow: inherit;
    }
    /*
    .app {
        height: 93vh;
    }
    .container_one_elem_window_info {
        height: 93vh;
    }
    */
    .section_servers_container_one_elem {
        height: 390px;
    }
    .app_container {
        -webkit-animation: none;
                animation: none;
        -webkit-box-shadow: inset 0 0 40px 40px black;
                box-shadow: inset 0 0 40px 40px black;
    }
    .nav_main_menu {
        padding-top: 5px;
        padding-left: 5px;
        padding-bottom: 5px;
        width: 50px;
    }
    .nav_main_menu_container_ul_left_li {
        width: 30px;
        height: 30px;
    }
    .nav_languages_first_open {
        bottom: 5px;
        right: 5px;
    }
    .nav_socials {
        padding-top: 5px;
        padding-right: 5px;
        padding-bottom: 5px;
        width: 50px;
    }
    .nav_socials_container_ul_li {
        width: 30px;
        height: 30px;
    }
    .nav_languages_list_style_ul_li {
        min-width: 100px;
    }
    .nav_languages_pseudo-button_img {
        width: 20px;
        height: 20px;
    }
    .nav_languages_list_style {
        bottom: 43px;
    }
    .nav_socials_container_ul_li_link_div {
        right: 45px;
        padding: 5px 10px;
    }
    .nav_socials_container_ul_li_link_div_span {
        font-size: 12px;
    }
    .nav_main_menu_container_ul_left_li_div {
        left: 45px;
        padding: 5px 10px;
    }
    .nav_main_menu_container_ul_left_li_div_span {
        font-size: 12px;
    }
    .section_main_page_h1 {
        font-size: 28px;
    }
    .section_main_page_h2 {
        font-size: 24px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .section_main_page_h3 {
        font-size: 20px;
    }
    .section_main_page {
        padding-left: 55px;
        padding-right: 55px;
    }
    .nav_languages_pseudo-button_text_span {
        width: 20px;
        height: 10px;
    }
    .nav_languages_list_style_ul_li {
        padding: 5px 10px;
    }
    .section_info {
        padding-left: 55px;
        padding-right: 55px;
        padding-top: 5px;
        padding-bottom: 45px;
    }
    .section_servers_container {
        padding-top: 10px;
        padding-left: 10px;
        padding-right: 10px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: inherit;
            -ms-flex-pack: inherit;
                justify-content: inherit;
        -ms-flex-wrap: inherit;
            flex-wrap: inherit;
    }
    .window_content_info {
        padding: 20px 30px;
    }
    .container_one_elem_window_info_close {
        top: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
    }
    .container_one_elem_window_info_close_span {
        font-size: 18px;
        margin-right: -1.5px;
    }
}

@media only screen and (max-width: 440px) {
    .section_servers_container_one_elem {
        height: 330px;
    }
}

@media only screen and (max-width: 360px) {
    .section_servers_container_one_elem {
        height: 270px;
    }
}