@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    font-family: 'inter';
}

section {
    background: #0E1216;
}

body {
    font-family: 'Roboto', sans-serif;
}

/* total width */
body::-webkit-scrollbar {
    background-color: #fff;
    width: 16px;
}

/* background of the scrollbar except button or resizer */
body::-webkit-scrollbar-track {
    background-color: #fff;
}

/* scrollbar itself */
body::-webkit-scrollbar-thumb {
    background-color: #babac0;
    border-radius: 16px;
    border: 4px solid #fff;
}

/* set button(top and bottom of the scrollbar) */
body::-webkit-scrollbar-button {
    display:none;
}

/* SCRIPT DETAIL */

.script-list.blog-interactive-list {
    padding: 0;
}

.script-content {
    padding: 50px;
}

.script-features>h3 {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
}

.script-features>p {
    color: #98989A;
    font-size: 15px;
    line-height: -0.03em;
    margin-bottom: 0;
}

.script-features {
    padding-bottom: 50px;
}

.script-setup>h3,
.script-requirements>h3 {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 24px;
}

.script-setup>p,
.script-requirements>p {
    color: #98989A;
    font-size: 16px;
    margin-bottom: 0;
}

.script-setup {
    padding-bottom: 50px;
}

.script-content {
    border-right: 1px solid #262626;
}

.script-details {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 0 30px;
}

.script-button>p {
    margin-bottom: 0;
    font-size: 14px;
}

.script-button>a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 12px;
    background: #FBA94C;
    margin-bottom: 0;
    border-radius: 6px;
    padding: 8px 12px;
    border: 1px solid #FBA94C;
    transition: 300ms;
}

.script-button:nth-child(2) a {
    background: #1F9B00;
    border: 1px solid #1F9B00;
}

.script-button:nth-child(3) a {
    background: transparent;
    border: 1px solid #FFAB41;
}

.script-button:nth-child(1) a:hover {
    border: 1px solid #FBA94C;
    background: transparent;
    transition: 300ms;
}

.script-button:nth-child(2) a:hover {
    background: transparent;
    border: 1px solid #1F9B00;
    transition: 300ms;
}

.script-button:nth-child(3) a:hover {
    background: #FF9500;
    transition: 300ms;
}

.script-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #191919;
    border-radius: 6px;
    color: #FFFFFF;
    font-weight: 500;
    padding: 15px 25px;
    border: 1px solid #2D2D2D;
}

.script-information>p {
    color: #858585;
    text-align: center;
    font-size: 14px;
}

.comment-pfp>img {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    margin-right: 20px;
}

.add-comment-box,
.comment-box {
    display: flex;
    align-items: center;
    background: #191919;
    border: 1px solid #414141;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 20px;
}

.add-comment-box input {
    margin-bottom: 0px !important;
}

.add-comment-box .serverInput {
    width: 85%;
}

.add-comment-button>button {
    margin-left: 20px;
    text-decoration: none;
    color: #FFFFFF;
    font-size: 12px;
    background: #FBA94C;
    margin-bottom: 0;
    border-radius: 6px;
    padding: 8px 12px;
    border: 1px solid #FBA94C;
    transition: 300ms;
}

.comment-content,
.comment-user {
    display: flex;
}

.comment-user {
    align-items: center;
    margin-bottom: 10px;
}

.comment-content {
    width: 100%;
    justify-content: space-between;
    margin-left: 20px;
}

.comment-user p {
    color: #67727E;
    font-size: 14px;
    margin-bottom: 0;
    margin-left: 10px;
}

.comment-info>p {
    color: #67727E;
    font-size: 14px;
    margin-bottom: 0;
    margin-left: 10px;
}

.comment-user>.comment-pfp>img {
    width: 35px;
    height: 35px;
    margin-right: 10px;
}

.comment-user>h3 {
    font-size: 14px;
    color: #FFAB41;
    margin-bottom: 0;
}

.comment-interractive {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.comment-interractive-edit {
    display: flex;
}

.comment-interractive-edit>p {
    display: flex;
    margin-bottom: 0;
    margin-left: 10px;
}

.comment-interractive-share {
    display: flex;
    justify-content: flex-end;
}

.comment-interractive-share>p {
    color: #FFAB41;
    font-size: 14px;
}

.comment-interractive-share>p>i {
    margin-right: 5px;
}

.comment-interractive-edit>p:first-child {
    font-size: 14px;
    color: #FFB8BB;
    margin-right: 10px;
}

.comment-interractive-edit>p:last-child {
    font-size: 14px;
    color: #C5C6EF;
    margin-right: 10px;
}

.comment-interractive-edit>p>i {
    margin-right: 5px;
}

.comment-like {
    background: #282A2F;
    border-radius: 8px;
    padding: 10px;
}

.comment-like>button {
    outline: none;
    border: none;
    background: transparent;
    color: #FFFFFF;
    font-size: 18px;
}

.comment-like>p {
    margin: 5px 0;
    text-align: center;
    color: #FF9500;
}

.comment-box.reply {
    margin-left: 70px;
}

.script-comments {
    padding-top: 40px;
}

.user-stat {
    background: #191919;
    border: 1px solid #2D2D2D;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    height: 150px;
    padding: 0 20px;
}

.user-stat-img {
    height: 50px;
    width: 50px;
}

.user-stat-img img {
    width: 100%;
}

.user-stat>h3 {
    color: #FFFFFF;
    font-size: 16px;
    margin-top: 10px;
    font-weight: 600;
}

.user-stats {
    padding-top: 40px;
}

.user-infos {
    padding-top: 40px;
}

.user-infos-inputs>h3 {
    text-align: center;
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 600;
}

.user-infos-inputs .serverInput input {
    margin-bottom: 10px;
}

.userpfp {
    margin-bottom: 10px;
}

.user-infos-inputs {
    background: #191919;
    border: 1px solid #2D2D2D;
    border-radius: 12px;
    padding: 30px 20px;
}

/* POLICY */

.policy-section {
    margin: 0;
    padding: 40px 60px;
}

.policy-section h3 {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.policy-section p {
    color: #666666;
    font-size: 16px;
}



/* PRICING */

.pricing {
    padding-top: 40px;
}

.pricing-type {
    color: #7C3AED;
    font-weight: light;
    font-size: 14px;
}

.pricing-price {
    display: flex;
    margin-bottom: 15px;
    align-items: center;
    justify-content: space-between;
}

.pricing-money {
    font-size: 16px;
    color: #1E293B;
    margin-bottom: 0;
}

.pricing-money>span {
    font-weight: 600;
}

.register-why.active {
    background: #FFAB41;
    color: #fff;
    border: none;
}

.pricing-button {
    text-decoration: none;
    color: #1E293B;
    border: 1px solid #1E293B;
    padding: 16px 0;
    width: 100%;
    display: block;
    text-align: center;
    border-radius: 6px;
    background: transparent;
    margin-bottom: 16px;
    transition: 300ms;
}

.pricing-button:hover {
    color: #FFFFFF;
    background: #1E293B;
    transition: 300ms;
}

.pricing-boxs {
    display: flex;
    justify-content: center;
    margin-top: 35px;
}

.pricing-box li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    margin-bottom: 10px;
}

.pricing-box li>p>i {
    color: #1B873F;
    margin-right: 6px;
    font-size: 20px !important;
}

.pricing-box li>i {
    font-size: 20px;
    color: #475569;
}

.pricing-box li>p {
    display: flex;
    align-items: center;
    color: #475569;
    font-weight: 400;
    margin-bottom: 0;
    font-size: 14px;
}

.pricing-box ul {
    padding: 0;
    border-top: 1px solid #E2E8F0;
    padding: 16px 0;
    margin-bottom: 0;
}

.pricing-price>p:first-child {
    color: #1E293B;
    font-size: 26px;
    margin-bottom: 0;
    font-weight: 600;
}

.pricing-box {
    width: 350px;
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 20px 30px;
    height: fit-content;
    margin-right: 20px;
    ;
}

.pricing-boxs .col-xl-4:nth-child(2) .pricing-box {
    background: #282A2F;
    border: none;
}

.pricing-boxs .col-xl-4:nth-child(2) .pricing-box .pricing-type {
    color: #FBA94C;
}

.pricing-boxs .col-xl-4:nth-child(2) .pricing-box .pricing-price>p:first-child {
    color: #FFFFFF;
}

.pricing-boxs .col-xl-4:nth-child(2) .pricing-box .pricing-money {
    color: #FFFFFF;
}

.pricing-boxs .col-xl-4:nth-child(2) .pricing-box .pricing-button {
    color: #000000;
    border: 1px solid #FBA94C;
    background: #FBA94C !important;
    transition: 300ms;
}

.pricing-boxs .col-xl-4:nth-child(2) .pricing-box .pricing-button:hover {
    background: transparent;
    border: 1px solid #FBA94C;
    transition: 300ms;
    color: #FFFFFF;
}

.pricing-boxs .col-xl-4:nth-child(2) .pricing-box li p {
    color: #CBD5E1 !important;
}

.pricing-boxs .col-xl-4:nth-child(2) .pricing-box li p>i {
    color: #04D361;
}

.pricing-boxs .col-xl-4:nth-child(2) .pricing-box li i {
    color: #64748B;
}

.pricing-boxs .col-xl-4:nth-child(2) .pricing-box ul {
    border-top-color: #334155;
}

.package-introduction-info img {
    width: 60px;
    height: 60px;
}

.package-introduction {
    padding-top: 40px;
}

.package-introduction-info {
    padding: 0 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    border-right: 1px solid #262626;
}

.package-introduction-info h3 {
    color: #FFFFFF;
    font-weight: 500;
    font-size: 34px;
    margin-top: 30px;
}

.package-introduction-info p {
    color: #98989A;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 0;
}

.package-introduction-box {
    background: #1A1A1A;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #262626;
    width: 49%;
}

.package-introduction-box-div:last-child {
    margin-bottom: 0;
}

.package-introduction-box-div {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.package-introduction-box p {
    color: #98989A;
    font-size: 14px;
}

.package-introduction-box h3 {
    color: #FFFFFF;
    font-size: 20px;
    margin-bottom: 12px;
}

.package-introduction-boxs {
    height: 100%;
    display: flex;
    padding: 20px 0;
    flex-direction: column;
    justify-content: center;
}

/* CONTACT */

.contact-infos {
    border-top: 1px solid #262626;
    border-bottom: 1px solid #262626;
}

.contact-infos h3 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 50px;
    color: #FFFFFF;
}

.contact-infos ul {
    list-style: none;
    padding: 0;
}

.contact-info-col {
    padding: 80px;
    border-right: 1px solid #262626;
    height: 100%;
}

.contact-info-box {
    padding: 0 10px;
}

.contact-info-col:last-child {
    border: none;
}

.contact-infos .footer-link-box {
    white-space: nowrap;
    padding: 18px 24px;
}

.contact-infos .footer-link-li {
    margin-bottom: 25px;
}

.contact-social-link {
    font-size: 18px;
    color: #FFFFFF;
    padding: 15px 18px;
    background: #1A1A1A;
    border: 1px solid #262626;
    border-radius: 6px;
    margin-right: 15px;
    transition: 300ms;
}

.contact-social-link:hover {
    background: #262626;
    transition: 300ms;
}

.contactInput>label {
    font-size: 14px;
    margin-bottom: 14px;
    color: #FFFFFF;
}

.contact-title {
    font-weight: medium;
    color: #FFFFFF;
    font-size: 50px;
    width: 80%;
    margin-bottom: 0;
    margin-top: 35px;
}

.contact-form {
    padding: 60px 0;
}

.contact-img {
    width: 60px;
    height: 60px;
}

.contactInput>input,
.contactInput>textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #262626;
    background: #1A1A1A;
    color: #666666;
    font-size: 14px;
    border-radius: 6px;
    outline: none;
    margin-bottom: 25px;
}

.upload-placeholder .check-icon {
    display: none;
}

.upload-placeholder.uploaded .plus-icon {
    display: none;
}

.upload-placeholder.uploaded .check-icon {
    display: block;
    color: green;
}

/* ADD SERVER */

.addServer {
    padding-top: 80px;
}

.serverInput>label {
    font-size: 14px;
    margin-bottom: 8px;
    color: #696F79;
}

.serverInput>input,
.serverInput>textarea,
.serverInput>select,
.userpfp,
.serverInput-select {
    width: 100%;
    padding: 20px 30px;
    border: 1px solid #8692A6;
    background: #282A2F;
    color: #8692A6;
    font-size: 14px;
    border-radius: 6px;
    outline: none;
    margin-bottom: 25px;
}

.serverInput>input::placeholder,
.serverInputUserVer>input::placeholder,
.serverInput>textarea::placeholder {
    color: #8692A6;
}

.addServer-box {
    background: #191919;
    border: 1px solid #2D2D2D;
    border-radius: 12px;
    padding: 20px 50px;
}

.addServer-box h3 {
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 30px;
}

.editorWrapper .ck-content {
    min-height: 200px !important;
    color: #FFFFFF !important;
    background: #212222 !important;
    border: 1px solid #8692A6 !important;
}

.editorWrapper .ck.ck-toolbar {
    background-color: #282A2F;
    border-radius: 8px 8px 0 0 !important;
    border: none !important;
}

.editorWrapper .ck.ck-button {
    color: white;
}

.editorWrapper .ck.ck-button:hover {
    background-color: #555;
}

.editorWrapper {
    margin-bottom: 20px;
}

.server-terms {
    display: flex;
}

.server-publish {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
}

.server-terms>.login-remember {
    margin-right: 20px;
}

.server-add {
    width: 100%;
    padding: 10px 30px;
    border: none;
    background: #FFAB41;
    color: #FFFFFF;
    font-size: 16px;
    border-radius: 6px;
    outline: none;
}

.serverInput-radio {
    display: flex;
}

.serverInput-radio>input {
    display: none;
}

.serverInput-radio>label {
    padding: 6px 20px;
    margin-bottom: 0;
    border-radius: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-weight: 400;
}

.serverInput-radio>label>span {
    display: inline-block;
    border-radius: 100%;
    width: 15px;
    height: 15px;
    margin-right: 8px;
}

.serverInput-select {
    display: flex;
    padding: 17px 30px;
    justify-content: space-evenly;
}

.serverInput-radio.medium>label {
    background: #FFAB4110;
    color: #FFAB41;
}

.serverInput-radio.medium input:checked+label {
    background: #FFAB4150;
}

.serverInput-radio.medium>label>span {
    background: #FFAB41;
}

.serverInput-radio.hard input:checked+label {
    background: #FF414150;
}

.serverInput-radio.hard>label {
    background: #FF414110;
    color: #FF4141;
}

.serverInput-radio.hard>label>span {
    background: #FF4141;
}

.serverInput-radio.easy input:checked+label {
    background: #00C2FF50;
}

.serverInput-radio.easy>label {
    background: #00C2FF10;
    color: #00C2FF;
}

.serverInput-radio.easy>label>span {
    background: #00C2FF;
}

.serverInput-radio.available input:checked+label {
    background: #34C75950;
}

.serverInput-radio.available>label {
    background: #34C75910;
    color: #34C759;
}

.serverInput-radio.available>label>span {
    background: #34C759;
}

.serverInput-radio.whitelist input:checked+label {
    background: #007BFF50;
}

.serverInput-radio.whitelist>label {
    background: #007BFF10;
    color: #007BFF;
}

.serverInput-radio.whitelist>label>span {
    background: #007BFF;
}

.serverInput-radio.nonWhitelist input:checked+label {
    background: #FFFFFF50;
}

.serverInput-radio.nonWhitelist>label {
    background: #FFFFFF10;
    color: #FFFFFF;
}

.serverInput-radio.nonWhitelist>label>span {
    background: #FFFFFF;
}

.serverInput-radio.active input:checked+label {
    background: #00C7BD50;
}

.serverInput-radio.active>label {
    background: #00C7BD10;
    color: #00C7BD;
}

.serverInput-radio.active>label>span {
    background: #00C7BD;
}

.serverInput-radio.passive input:checked+label {
    background: #FFAB4150;
}

.serverInput-radio.passive>label {
    background: #FFAB4110;
    color: #FFAB41;
}

.serverInput-radio.passive>label>span {
    background: #FFAB41;
}

.script-images.refferance .script-image {
    margin-right: 15px;
}

/* ADD SCRIPT */

.addScript {
    padding-top: 40px;
}

.image-upload-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 80px;
    border: 1px solid #8692A6;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background-color: #282A2F;
}

.image-upload-label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.upload-placeholder {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.plus-icon {
    font-size: 30px;
    color: #FFAB41;
}

.uploaded-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.uploaded-image:hover {
    opacity: 0.7;
    transition: opacity 0.3s;
}


.scriptInput {
    display: flex;
    flex-direction: column;
}

.scriptInput>label {
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.scriptInput>input,
.scriptInput>textarea,
.scriptInput>select {
    width: 100%;
    padding: 20px 30px;
    border: 1px solid #262626;
    background: #1A1A1A;
    color: #FFFFFF;
    font-size: 14px;
    border-radius: 6px;
    outline: none;
    margin-bottom: 25px;
}

.scriptInput>input::placeholder,
.scriptInput>textarea::placeholder {
    color: #666666;
}

.script-terms {
    padding: 30px 0;
}

.script-image {
    display: flex;
}

.script-image-text {
    margin-left: 8px;
}

.script-image-where {
    font-size: 14px;
    color: #696F79;
    margin-bottom: 0;
}

.script-image-condition {
    font-size: 14px;
    color: #ABABAB;
    margin-bottom: 0;
}

.script-image-text {
    display: flex;
    width: 60%;
    flex-direction: column;
    justify-content: space-evenly;
}

.script-images {
    padding: 30px 0;
    display: flex;
}

.script-add-button {
    padding: 30px 0;
    width: 100%;
}

.script-add {
    width: 100%;
    padding: 20px 30px;
    border: none;
    background: #FFD11A;
    color: #141414;
    font-size: 14px;
    border-radius: 6px;
    outline: none;
    cursor: pointer;
    transition: 300ms;
}

.script-add:hover {
    background: #FFAB41;
    color: #FFFFFF;
    transition: 300ms;
}

/* SERVER INFO */

.server-banner {
    padding-top: 20px;
}

.server-banner img {
    width: 100%;
    border-radius: 16px;
    height: 275px;
}

.server-info-video {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.server-info-video iframe {
    width: 100%;
    display: block;
    border-radius: 16px;
}

.play-button {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 50%;
    display: flex;
    height: 100%;
    transform: translate(-50%, -50%);
    font-size: 128px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    justify-content: center;
    align-items: center;
}

.play-button:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.play-button.hide {
    display: none;
}

.server-info-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #191919;
    border-radius: 16px;
    border: 1px solid #2D2D2D;
    padding: 25px 25px;
    margin-bottom: 15px;
}

.server-info-box .connections>a>img,
.server-info-box .connections>a {
    width: 26px;
    height: 26px;
}

.server-info-button {
    text-decoration: none;
    color: #FFFFFF;
    border: 1px solid #FFAB41;
    border-radius: 8px;
    font-size: 12px;
    padding: 10px 14px;
    transition: 300ms;
}

.server-info-button:hover {
    background-color: #FFAB41;
    color: #FFFFFF;
    transition: 300ms;
}

.server-info-box-text>p {
    font-size: 14px;
    color: #FFFFFF;
    margin-bottom: 0;
}

.server-info-box-text {
    margin-right: 10px;
}

.server-information-box {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    background: #191919;
    border-radius: 16px;
    border: 1px solid #2D2D2D;
    padding: 25px 25px;
    margin-bottom: 15px;
}

.server-info-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.server-info-header>h3 {
    font-size: 26px;
    color: #FFFFFF;
    display: flex;
    align-items: center;
}

.server-info-header>h3>i {
    margin-left: 10px;
    font-size: 18px;
    color: #FFAB41;
}

.server-info-header>p {
    font-size: 12px;
    color: #FFAB41;
    margin: 0;
    margin-left: 10px;
    padding: 6px 10px;
    background: #232628;
    border-radius: 16px;
}

.server-info-content {
    color: #FFFFFF;
    font-weight: 400;
}

.refferances-box {
    background: #191919;
    border-radius: 10px;
    margin-right: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    border: 1px solid #2D2D2D;
}

.refferance-col {
    padding-left: 0 !important;
}

/* BLOG */

.blogs-header {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 80px 0;
    border-bottom: 1px solid #262626;
}

.blogs-header>h3 {
    font-size: 34px;
    font-weight: 600;
    color: #FFFFFF;
}

.blogs-header>p {
    font-size: 14px;
    width: 75%;
    font-weight: 400;
    color: #98989A;
}

.blogs-detailedBlog {
    padding: 80px 0;
    border-bottom: 1px solid #262626;
}

.detailedBlog-img>img {
    width: 100%;
    height: 290px;
    border-radius: 8px;
}

.detailedBlog-content {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-evenly;
}

.detailedBlog-infos {
    display: flex;
}

.detailedBlog-footer {
    display: flex;
    justify-content: space-between;
}

.detailedBlog-header>h3 {
    color: #FFFFFF;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
}

.detailedBlog-header>p {
    color: #98989A;
    font-size: 14px;
}

.detailedBlog-infos {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.detailedBlog-info {
    margin-right: 35px;
}

.detailedBlog-info-title {
    font-size: 14px;
    color: #98989A;
    margin-bottom: 4px;
}

.detailedBlog-info-text {
    font-size: 14px;
    color: #FFFFFF;
    margin-bottom: 0;
}

.detailedBlog-footer {
    display: flex;
    align-items: center;
}

.detailedBlog-social button {
    font-size: 14px;
    color: #98989A;
    padding: 6px 14px;
    border: 1px solid #262626;
    border-radius: 100px;
    background: #1A1A1A;
    outline: none;
    margin-right: 10px;
    transition: 300ms;
}

.detailedBlog-button {
    font-size: 14px;
    color: #98989A;
    padding: 12px 24px;
    border: 1px solid #262626;
    border-radius: 12px;
    background: #141414;
    text-decoration: none;
    outline: none;
    margin-right: 10px;
    transition: 300ms;
}

.detailedBlog-button:hover,
.detailedBlog-social>button:hover {
    background: #FFAB41;
    color: #FFFFFF;
    transition: 300ms;
}


.blogs-list {
    padding-top: 80px;
}

.blog-card-img img {
    width: 100%;
    height: 200px;
    border-radius: 12px;
}

.blog-card-img,
.blog-card-header {
    margin-bottom: 20px;
}

.blog-card-header>h3 {
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: -0.03em;
    margin-bottom: 5px;
}

.blog-card-header>p {
    font-size: 14px;
    font-weight: 400;
    color: #98989A;
    line-height: -0.03em;
    margin-bottom: 0;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-card-social button {
    font-size: 14px;
    color: #98989A;
    padding: 6px 14px;
    border: 1px solid #262626;
    border-radius: 100px;
    background: #1A1A1A;
    outline: none;
    margin-right: 10px;
    transition: 300ms;
}

.blog-card-button {
    font-size: 14px;
    color: #98989A;
    padding: 12px 24px;
    border: 1px solid #262626;
    border-radius: 12px;
    background: #141414;
    text-decoration: none;
    outline: none;
    margin-right: 10px;
    transition: 300ms;
}

.blog-card-button>i {
    color: #FFAB41;
    margin-left: 5px;
}

.blog-card-button:hover,
.blog-card-social button:hover {
    background: #FFAB41;
    color: #FFFFFF !important;
    transition: 300ms;
}

.blog-card {
    margin-bottom: 40px;
}

.blog-interactive {
    width: 30%;
}

.blog-interactive-social {
    padding: 35px 50px;
    border-bottom: 1px solid #262626;
}

.blog-interactive-detail {
    display: flex;
    padding: 50px;
}

.blog-interactive-detail .detailedBlog-info {
    margin-bottom: 20px;
}

.blog-interactive-list {
    padding: 0 50px;
}

.blog-interactive-list>p {
    color: #98989A;
    font-size: 14px;
    margin-bottom: 12px;
}

.blog-interactive-list>ul {
    background: #1A1A1A;
    padding: 20px;
    margin-bottom: 0;
    border-radius: 10px;
}

.blog-interactive-list>ul>li {
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    line-height: -0.03em;
    margin-bottom: 10px;
    margin-left: 10px;
}

.blog-interactive-list>ul>li:last-child {
    margin-bottom: 0;
}

.blog-interactive-list>ul>li>a {
    font-size: 14px;
    text-decoration: none;
    font-weight: 400;
    color: #FFFFFF;
    line-height: -0.03em;
    margin-bottom: 10px;
}

.blog-content {
    width: 70%;
    border-right: 1px solid #262626;
}

.blog-detail {
    display: flex;
}

.blog-content-abstract>h3 {
    font-size: 18px;
    font-weight: 500;
    color: #FFFFFF;
    margin-bottom: 14px;
}

.blog-content-abstract>p {
    font-size: 14px;
    font-weight: 400;
    line-height: -0.03em;
    color: #98989A;
    margin-bottom: 0;
}

.blog-content-abstract {
    padding: 50px 80px;
    border-bottom: 1px solid #262626;
}

.blog-content-detail {
    padding: 50px 80px 0 80px;
    color: #FFFFFF;
}

.blog-content-abstract {
    margin-bottom: 20px;
}

.blog-content-detail {
    height: 400px;
    overflow: hidden;
    transition: height 0.3s ease;
}

.blog-content-detail.expanded {
    height: auto;
}

.read-more-button {
    display: block;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #141414;
    color: #98989A;
    border: 1px solid #262626;
    border-radius: 4px;
    transition: 300ms;
}

.read-more-button:hover {
    color: #FFFFFF;
    background-color: #FF9500;
    transition: 300ms;
}

.read-more {
    padding: 20px 80px;
    display: flex;
    justify-content: center;
}

.other-blogs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.other-blogs>h3 {
    font-size: 22px;
    font-weight: 500;
    color: #CCCCCC;
    margin: 0;
}

/* LOGIN */

.login-section {
    padding-top: 70px;
}

.login-content {
    display: flex;
    width: 100%;
    margin: 0 50px;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;
}

.login-box {
    background: #191919;
    border-radius: 16px;
    border: 1px solid #262626;
    padding: 36px;
}

.login-img {
    display: flex;
    justify-content: flex-end;
    height: 100%;
    align-items: center;
}

.login-img>img {
    height: 700px;
}

.login-header>h3 {
    font-size: 28px;
    font-weight: 600;
    color: #FFFFFF;
}

.login-header>p {
    margin-top: 20px;
    font-size: 14px;
    font-weight: 400;
    color: #8692A6;
}

.login-input {
    display: flex;
    flex-direction: column;
}

.login-input>label {
    font-size: 12px;
    color: #696F79;
    margin-bottom: 10px;
}

.login-input>input {
    width: 100%;
    padding: 20px 30px;
    border: 0.5px solid #8692A6;
    background: #282A2F;
    color: #FFFFFF;
    font-size: 14px;
    border-radius: 6px;
    margin-bottom: 25px;
}

.login-input>input:focus {
    outline: 1px solid #8692A6;
}

.login-input>input::placeholder {
    color: #8692A6;
}

.login-remember {
    display: flex;
    align-items: center;
}

.login-remember>label {
    font-size: 14px;
    color: #696F79;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    user-select: none;
}

.login-remember.register>label {
    font-size: 12px;
}

.login-remember input[type="checkbox"] {
    display: none;
}

.login-remember label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 0.5px solid #8692A6;
    background: #282A2F;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.server-header-button{
    width: 50%;
    display: flex;
    justify-content: flex-end;
}

.login-remember input[type="checkbox"]:checked+label::before {
    background-color: #5871EB;
}

.login-remember label::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    opacity: 0;
    transition: opacity 0.2s;
}

.login-remember input[type="checkbox"]:checked+label::after {
    opacity: 1;
}

.login-buttons {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.login-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 30px;
    background: #5871EB;
    color: #FFFFFF;
    font-size: 16px;
    outline: none;
    border: none;
    border-radius: 6px;
}

.register-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 30px;
    background: #FF4141;
    color: #FFFFFF;
    font-size: 14px;
    outline: none;
    border: none;
    border-radius: 6px;
}

.login-button-or>p {
    color: #BABABA;
    font-size: 14px;
    margin: 20px 15px;
}

.login-button-or {
    display: flex;
}

.line {
    display: inline-block;
    width: 100%;
    height: 1px;
    background: #FFFFFF;
    margin: 30px 0;
}


.register-input {
    display: flex;
    flex-direction: column;
}

.register-input>label {
    font-size: 12px;
    color: #696F79;
    margin-bottom: 10px;
}

.register-input>input {
    width: 100%;
    padding: 15px 30px;
    border: 0.5px solid #8692A6;
    background: #282A2F;
    color: #FFFFFF;
    font-size: 14px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.register-input>input:focus {
    outline: 1px solid #8692A6;
}

.register-input>input::placeholder {
    color: #8692A6;
}

.login-checkboxs {
    display: flex;
    justify-content: space-between;
}

.register-inputs .login-remember label {
    padding-left: 19px;
}

.register-inputs .login-remember label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px !important;
    height: 15px !important;
    border: 0.5px solid #8692A6;
    background: #282A2F;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.register-why {
    padding: 17px;
    cursor: pointer;
    text-align: center;
    border: 1px solid #8692A6;
    background: #282A2F;
    color: #8692A6;
    width: 48%;
    border-radius: 6px;
}

.register-why>p {
    font-size: 16px;
    margin: 0;
}

.register-whys {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.register-checkboxs {
    margin-bottom: 15px;
}

/* HEADER */

header {
    background: #0E1216;
    padding: 32px 0;
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-col {
    display: flex;
    justify-content: space-between;
}

.header-nav {
    display: flex;
    align-items: center;
}

.header-nav>ul {
    display: flex;
    margin-bottom: 0;
    align-items: center;
}

.header-nav>ul>li {
    list-style: none;
    margin-right: 32px;
}

.header-nav>ul>li>a:hover {
    color: #FF9500;
    transition: 300ms;
}

.header-nav>ul>li>a {
    text-decoration: none;
    color: #FFFFFF;
    transition: 300ms;

}

.header-nav>ul>li:last-child {
    margin-right: 0;
}

.header-more>select {
    border: 1px solid #EFF0F6;
    outline: none;
    background: transparent;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 500;
    padding: 9px 18px;
    border-radius: 50px;
    cursor: pointer;
    transition: 300ms;
    margin-right: 16px;
}

.header-addServer {
    padding: 11px 20px;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    border-radius: 50px;
    background: #FFAB41;
    color: #0E1216;
    margin-right: 16px;
}

.header-addServer:hover {
    background: #FF9500;
    transition: 300ms;
}

.header-profile>img {
    width: 40px;
    height: 40px;
    border-radius: 100%;
}

/* INDEX HERO SECTION */

.index-hero-section {
    width: 100%;
    text-align: center;
    background-repeat: no-repeat;
    position: relative;
    height: 598px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.index-hero-section>h3 {
    font-size: 60px;
    letter-spacing: -0.03em;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 5px;
    z-index: 100;
}

.index-hero-section>p {
    letter-spacing: -0.03em;
    margin-bottom: 0;
    font-size: 26px;
    font-weight: 200;
    color: #FFFFFF;
    z-index: 100;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(20, 20, 20, 0) 0%, rgba(20, 20, 20, 0.880208) 75.52%, #141414 100%);
    position: absolute;
}

.hero-section {
    height: 333px !important;
}


/* INTRODUCTION */

.introduction-section {
    padding-top: 80px;
}

.introduction-box {
    position: relative;
    background: #191919;
    border: 1px solid #414141;
    border-radius: 16px;
    text-align: center;
    padding: 16px;
}

.introduction-box:nth-child(2) {
    margin-top: -20px;
}

.introduction-box>h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #FFAB41;
}

.introduction-box>p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #FFFFFF;
}

.introduction-img>img {
    width: 100%;
    height: 125px;
    border-radius: 8px;
}

/* SERVERS */

.pagination {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pagination-buttons {
    display: flex;
    width: 30%;
    justify-content: flex-end;
}

.pagination-buttons>button,
.pagination-buttons-a {
    border: none;
    outline: none;
    background: #191919;
    color: #98989A;
    display: flex;
    border: 1px solid #414141;
    border-radius: 12px;
    font-size: 12px;
    text-decoration: none;
    font-weight: 500;
    padding: 9px 18px;
    cursor: pointer;
    transition: 300ms;
}

.pagination-buttons>button:hover,
.pagination-buttons-a:hover {
    background: #FFAB41;
    color: #0E1216;
    transition: 300ms;
}

.pagination-buttons>button:hover>i,
.pagination-buttons-a:hover>i {
    color: #0E1216;
    transition: 300ms;
}

.pagination-buttons>button:first-child,
.pagination-buttons-a:first-child {
    margin-right: 16px;
}

.pagination-buttons>button>i,
.pagination-buttons-a>i {
    color: #FFD11A;
    margin: 0 10px;
}

.pagination-text>p {
    color: #98989A;
    font-size: 16px;
    margin-bottom: 0;
    letter-spacing: -0.03rem;
}

.pagination-text {
    width: 70%;
}

.servers-section {
    padding-top: 80px;
}

.servers-header {
    display: flex;
    justify-content: center;
    align-items: center;
}

.servers-body {
    padding-top: 50px;
    background: #0E1216;
}

.servers-Title {
    display: flex;
    align-items: center;
    font-size: 30px;
    font-weight: medium;
    color: #FFFFFF;
    margin-bottom: 0;
}

.servers-Title>i {
    margin-left: 10px;
    color: #FFAB41;
    font-size: 20px;
}

.servers-type {
    padding: 8px 12px;
    background: #192026;
    border-radius: 100px;
    color: #FFAB41;
    font-size: 14px;
    margin-bottom: 0;
    margin-left: 20px;
}

.server-header-name {
    display: flex;
    align-items: center;
}

.server-header-name>img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.server-header-name-info>h3 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.server-header-name-info>p {
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 0px;
    color: #FFAB41;
}

.server-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.server-header-button>a {
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    background: #FFAB41;
    padding: 16px;
    border-radius: 8px;
    text-decoration: none;
}

.server-box {
    background: #191919;
    border: 1px solid #414141;
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 20px;
    min-height: 380px;
}

.server-img>img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
}

.connections {
    display: flex;
    align-items: center;
}

.server-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.server-footer-button>a {
    font-size: 12px;
    font-weight: 600;
    padding: 12px 16px;
    border: 1px solid #FFAB41;
    border-radius: 8px;
    color: #FFFFFF;
    text-decoration: none;
}

.connections p {
    font-size: 16px;
    font-weight: medium;
    color: #FFFFFF;
    margin: 0;
    margin-right: 10px;
}

.connections>a {
    width: 32px;
    height: 32px;
    margin-right: 10px;
}

/* HREFS */

.href-section {
    padding-top: 80px;
}

.href-box {
    background: #1A1A1A !important;
    padding: 20px;
    border-radius: 10px;
    max-height: 155px;
    margin-bottom: 20px;
    border: 1px solid #414141;
}

.href-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.href-header>h3 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 0;
    color: #FFFFFF;
}

.href-i>i {
    font-size: 18px;
    color: #1A1A1A;
}

.href-i {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FF9500;
    width: 40px;
    cursor: pointer;
    height: 40px;
    border-radius: 100%;
}

.href-text>p {
    font-size: 14px;
    color: #98989A;
}

/* SERVERS LIST */

.serversList-section {
    padding: 80px 0;
}

.serversList-header.ticket {
    justify-content: flex-start;
}

.serversList-header {
    display: flex;
    justify-content: center;
    align-items: center;
}

.serversList-body {
    margin-top: 50px;
    background: #0E1216;
}

.serversList-Title {
    display: flex;
    align-items: center;
    font-size: 30px;
    font-weight: medium;
    color: #FFFFFF;
    margin-bottom: 0;
}

.serversList-Title>i {
    margin-left: 10px;
    color: #FFAB41;
    font-size: 20px;
}

.serversList-type {
    padding: 8px 12px;
    background: #192026;
    border-radius: 100px;
    color: #FFAB41;
    font-size: 14px;
    margin-bottom: 0;
    margin-left: 20px;
}

.serversList-table {
    width: 100%;
    min-width: 1285px;
}

.serversList-table-header {
    background: #191919;
    border-radius: 10px;
    border: 1px solid #414141;
    color: #FFFFFF;
    margin-bottom: 20px;
    padding: 12px 50px;
    display: flex;
    justify-content: space-evenly;
}

.serversList-table-header>th {
    background: #191919;
    font-size: 14px;
    font-weight: 400;
}

.serversList-table-body>tr {
    background: #191919;
    border-radius: 16px;
    border: 1px solid #414141;
    margin-bottom: 20px;
    display: flex;
    padding: 14px;
    justify-content: space-between;
    align-items: center;
}

.serversList-table-body>tr>td {
    background: #191919;
}

.serversList-table-body-name {
    display: flex;
    align-items: center;
    background: #191919;
}

.serversList-table-body-name>img {
    width: 40px;
    height: 40px;
    background: #191919;
    margin-right: 10px;
}

.serversList-table-body-name-info {
    background: #191919;
}

.serversList-table-body-name-info>h3 {
    background: #191919;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.serversList-table-body-name-info>p {
    background: #191919;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 0px;
    color: #FFAB41;
}

.serverList-status {
    padding: 6px 20px;
    margin-bottom: 0;
    border-radius: 20px;
    font-size: 16px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.serverList-status>span {
    display: inline-block;
    border-radius: 100%;
    width: 15px;
    height: 15px;
    margin-right: 8px;
}

.serverList-status.medium {
    background: #FFAB4110;
    color: #FFAB41;
}

.serverList-status.medium>span {
    background: #FFAB41;
}

.serverList-status.hard {
    background: #FF414110;
    color: #FF4141;
}

.serverList-status.hard>span {
    background: #FF4141;
}

.serverList-status.easy {
    background: #00C2FF10;
    color: #00C2FF;
}

.serverList-status.easy>span {
    background: #00C2FF;
}

.serverList-status.avaible {
    background: #34C75910;
    color: #34C759;
}

.serverList-status.avaible>span {
    background: #34C759;
}

.serverList-status.whitelist {
    background: #007BFF10;
    color: #007BFF;
}

.serverList-status.whitelist>span {
    background: #007BFF;
}

.serverList-status.nonWhitelist {
    background: #FFFFFF10;
    color: #FFFFFF;
}

.serverList-status.nonWhitelist>span {
    background: #FFFFFF;
}

.serverList-status.active {
    background: #00C7BD10;
    color: #00C7BD;
}

.serverList-status.active>span {
    background: #00C7BD;
}

.serverList-status.passive {
    background: #FFAB4110;
    color: #FFAB41;
}

.serversList-body>.container>.row>.col-12 {
    width: 100%;
    overflow-y: auto;
}

.serverList-status.passive>span {
    background: #FFAB41;
}

.serverList-button {
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    color: #FFFFFF;
    margin-right: 10px;
    padding: 16px;
    background: #FFAB41;
    border-radius: 8px;
    margin-bottom: 0;
    transition: 300ms;
}

.serverList-button:first-child {
    background: #191919;
    border: 1px solid #FFAB41;
}

.serverList-button:first-child:hover {
    background: #FFAB41;
    transition: 300ms;
    border: 1px solid #FFAB41;
}

.serverList-buttons {
    background: #191919;
}

/* INDEX PAGE BLOGS */

.index-blogs {
    padding-bottom: 80px;
}

.blog-section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 25px 0;
}

.blog-section-title>h3 {
    font-size: 20px;
    color: #FFFFFF;
    font-weight: medium;
}

.view-blogs {
    text-decoration: none;
    padding: 10px 16px;
    color: #98989A;
    background: #141414;
    border-radius: 10px;
    border: 1px solid #262626;
    transition: 300ms;
}

.view-blogs>i {
    margin-left: 5px;
    color: #FFD11A;
}

.index-blog-card-image>img {
    width: 100%;
    height: 185px;
    border-radius: 10px;
}

.index-blog-card-content {
    margin: 15px 0;
}

.index-blog-card-title>h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #FFFFFF;
}

.index-blog-card-text>p {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 0;
    color: #98989A;
}

.index-blog-buttons {
    display: flex;
}

.index-blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.index-blog-like {
    font-size: 14px;
    margin-bottom: 0;
    padding: 7px 14px;
    background: #1A1A1A;
    border-radius: 100px;
    border: 1px solid #262626;
    color: #98989A;
    margin-right: 10px;
    cursor: pointer;
}

.index-blog-like>i {
    margin-right: 5px;
}

.index-blog-share {
    font-size: 14px;
    margin-bottom: 0;
    padding: 7px 14px;
    cursor: pointer;
    background: #1A1A1A;
    border-radius: 100px;
    border: 1px solid #262626;
    color: #98989A;
    margin-right: 10px;
}

.index-blog-share>i {
    margin-right: 5px;
}

.index-blog-readMore>a {
    padding: 10px 16px;
    background: #141414;
    border-radius: 10px;
    text-decoration: none;
    color: #98989A;
    font-size: 14px;
    border: 1px solid #262626;
    transition: 300ms;
}

.index-blog-readMore>a:hover {
    background: #262626;
    transition: 300ms;
}

.index-blog-readMore>a i {
    margin-left: 5px;
    color: #FFD11A;
}

/* DATA SECION */

.dataSection {
    background: #0E1216;
    border-top: 1px solid #262626;
    border-bottom: 1px solid #262626;
}

.data-box {
    padding: 80px 0;
    text-align: center;
    width: 100%;
    border-right: 1px solid #262626;
}

.data-box:last-child {
    border-right: none;
}

.data-title {
    font-size: 60px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0;
}

.data-title>span {
    color: #FFAB41;
}

.data-text {
    font-size: 16px;
    font-weight: 400;
    color: #98989A;
    margin-top: 15px;
}

/* FOOTER */

footer {
    background: #0E1216;
}

.footer-section-title {
    color: #FFFFFF;
    font-weight: medium;
    font-size: 20px;
    margin-bottom: 35px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    margin: 80px 0;
}

.footer-bar {
    display: flex;
    justify-content: space-between;
}

.footer-link {
    text-decoration: none;
    color: #666666;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: 300ms;
}

.footer-link:hover {
    color: #FFFFFF;
    transition: 300ms;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-link-box {
    padding: 10px;
    background: #141414;
    border-radius: 10px;
    border: 1px solid #262626;
    transition: 300ms;
    font-size: 14px;
}

.footer-link-box:hover {
    background: #262626;
    transition: 300ms;
}

.footer-link-box i {
    margin-left: 5px;
    color: #FFD11A;
}

.footer-link-li {
    padding-bottom: 18px;
}

.footer-copyright {
    width: 100%;
    padding: 0 20px;
    border-top: 1px solid #262626;
    display: flex;
    justify-content: space-between;
}

.policy,
.social-medias,
.copyright {
    margin: 30px 0;
    font-size: 16px;
}

.policy>a,
.copyright>p {
    color: #666666;
    text-decoration: none;
    font-weight: 400;
    margin-bottom: 0;
    transition: 300ms;
}

.policy>a:hover,
.copyright>p:hover {
    color: #FFFFFF;
    transition: 300ms;
}

.policy>a:first-child {
    border-right: 1px solid #262626;
    padding-right: 10px;
}

.social-medias>a {
    padding-right: 20px;
    color: #FFFFFF;
}

.social-medias>a:last-child {
    padding-right: 0;
}

.header-menu-icon {
    display: none;
}

.header-responsive-menu {
    display: none;
}

/* RESPONSIVE */

@media screen and (max-width: 1200px) {
    .header-nav>ul>li>a {
        font-size: 14px;
    }

    .header-addServer {
        padding: 11px 17px;
        font-size: 14px;
    }

    .header-profile>img {
        width: 35px;
        height: 35px;
    }

    .pagination-text>p {
        font-size: 14px;
    }

    .detailedBlog-info-title,
    .detailedBlog-info-text{
        font-size: 12px;
    }
    .blog-interactive-detail{
        padding: 30px;
    }

    .blog-interactive-social{
        padding: 30px;
    }

    .blog-interactive-list{
        padding: 0 30px;
    }

    .blog-content-abstract{
        padding: 45px;
    }

    .blog-content-detail{
        padding: 45px 45px 0 45px;
    }

    .pagination-buttons-a {
        padding: 9px 9px;
    }

    .href-header {
        margin-bottom: 10px;
    }

    .href-text>p {
        font-size: 12px;
    }

    .href-i {
        width: 30px;
        height: 30px;
    }

    .href-i>i {
        font-size: 12px;
    }

    .blog-card-button {
        padding: 10px 14px;
        font-size: 12px;
    }

    .blog-card-social button {
        font-size: 12px;
    }

    .add-comment-button>button {
        font-size: 10px;
        margin-left: 10px;
    }

    .pricing-box {
        width: 300px;
    }

    .pricing-button {
        font-size: 12px;
        padding: 12px 0;
    }

    .pricing-box li>p {
        font-size: 12px;
    }

    .login-img>img {
        display: none;
    }

    .pricing-price>p:first-child {
        font-size: 20px;
    }

    .pricing-money {
        font-size: 14px;
    }

    .pricing-type {
        font-size: 12px;
    }

    .pricing-box li>p>i {
        font-size: 18px !important;
        margin-right: 5px;
    }

    .contact-infos h3 {
        font-size: 13px;
        margin-bottom: 30px;
    }

    .contact-infos .footer-link-box {
        padding: 18px 14px;
        font-size: 12px;
    }

    .contact-social-link {
        font-size: 14px;
        padding: 14px;
    }

    .server-info-box {
        padding: 25px 15px;
    }

    .connections p,
    .server-info-box-text>p {
        font-size: 14px;
        margin-bottom: 0;
    }

    .server-info-box .connections>a>img,
    .server-info-box .connections>a {
        height: 20px;
        width: 20px;
    }

    .server-info-box .connections>a {
        margin-right: 5px;
    }

    .contact-title {
        font-size: 40px;
    }

    .serverInput>label {
        font-size: 12px;
    }

    .serverInput-radio>label {
        font-size: 10px;
    }

    .serverInput-radio>label>span {
        height: 10px;
        width: 10px;
        margin-right: 5px;
    }

    .serverInput-radio>label {
        padding: 6px 10px;
    }
}

@media screen and (max-width: 992px) {
    .server-info-video {
        max-width: 100%;
    }
       .serverInputUserVer input{
        font-size: 12px;
    }

    .server-info-box .connections p {
        font-size: 14px;
    }

    .server-info-box .connections>a>img,
    .server-info-box .connections>a {
        height: 26px;
        width: 26px;
    }

    .server-info-box .connections>a {
        margin-right: 10px;
    }

    .server-info-header {
        margin-top: 20px;
    }

    .contact-form-repoooo {
        margin-bottom: 30px;
        align-items: center;
    }

    .contact-form-repoooo img {
        display: none;
    }

    .contact-form-repoooo h3 {
        text-align: center;
    }

    .href-header>h3 {
        font-size: 14px;
    }

    .blog-detail{
        flex-direction: column-reverse;
    }

    .blog-interactive{
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
        width: 100%;
    }
    .blog-content{
        width: 100%;
        border-right: none;
    }

    .blog-interactive-social{
        border-bottom: none;
    }

    .blog-interactive-detail > div{
        display: flex;
    }

    .blog-interactive-list{
        display: none;
    }

    .contact-info-col:nth-child(2) {
        border-right: none;
    }

    .contact-info-col {
        display: flex;
        justify-content: center;
        padding: 20px 0 !important;
    }

    .pricing-box {
        padding: 20px;
        width: 225px;
    }

    .pricing-button {
        font-size: 10px;
        padding: 10px 0;
    }

    .pricing-box li>p {
        font-size: 10px;
    }

    .pricing-price>p:first-child {
        font-size: 16px;
    }

    .pricing-money {
        font-size: 10px;
    }

    .pricing-type {
        font-size: 10px;
        margin-bottom: 5px;
    }

    .pricing-box li>p>i {
        font-size: 16px !important;
        margin-right: 5px;
    }

    .href-i {
        width: 24px;
        height: 24px;
    }

    .href-i>i {
        font-size: 10px;
    }

    .href-text>p {
        font-size: 10px;
    }

    .pagination-text {
        width: 60%;
    }

    .pagination-buttons {
        width: 40%;
    }

    .header-responsive-overlay {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 10000;
    }

    .header-responsive-menu.deactive {
        display: none;
    }

    .comment-like>p{
        font-size: 14px;
        margin: 3px 0;
    }

    .comment-content{
        margin-left: 15px;
    }

    .comment-like{
        padding: 2px 6px;
    }

    .comment-interractive-share>p,
    .comment-interractive-edit>p:last-child,
    .comment-interractive-edit>p:first-child,
    .comment-user>h3,
    .comment-user p,
    .comment-info>p{
        font-size: 12px;
    }

    .header-nav>ul {
        display: none;
    }

    .header-addServer {
        display: none;
    }

    .header-profile {
        display: none;
    }

    .header-menu-icon {
        display: block;
    }

    .header-menu-icon i {
        font-size: 25px;
        color: #FFFFFF;
    }

    .header-responsive-menu {
        background-color: #0E1216;
        height: 100vh;
        position: absolute;
        top: 0;
        width: 60%;
        padding: 50px 50px;
        z-index: 10000;
        display: flex;
        justify-content: space-between;
    }

    .index-hero-section>h3 {
        font-size: 40px;
    }

    .index-hero-section>p {
        font-size: 16px;
    }

    .index-hero-section>a {
        font-size: 12px !important;
    }

    .header-responsive-menu .header-menu-icon {
        font-size: 28px;
    }

    .header-responsive-menu img {
        padding: 10px 20px;
        margin-bottom: 30px;
    }

    .header-responsive-menu .header-more {
        padding: 10px 20px;
        display: flex;
        /* margin-top: 30px; */
    }

    .header-responsive-menu .header-more a {
        width: fit-content;
        height: fit-content;
    }

    .header-responsive-menu ul {
        /* display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%; */
        padding: 0;
        list-style: none;
    }

    .header-responsive-menu li {
        margin-bottom: 15px;
        padding: 10px 20px;
        font-size: 18px;
        font-weight: 500;
        color: #FFFFFF;
        text-decoration: none;
        transition: 300ms;
    }

    .user-stat-img {
        height: 38px;
        width: 38px;
    }

    .user-stat>h3 {
        font-size: 14px;
    }

    .header-responsive-menu li:hover {
        background-color: #262626;
        transition: 300ms;
    }

    .header-responsive-menu li a {
        color: #FFF;
        text-decoration: none;
    }

    .header-responsive-menu .header-profile,
    .header-responsive-menu .header-addServer {
        display: block;
    }

    .policy,
    .social-medias,
    .copyright {
        font-size: 14px;
    }

    .copyright {
        margin-left: 10px;
    }

    .social-medias>a {
        padding-right: 10px;
    }

    .data-box:nth-child(2) {
        border-right: none;
    }

    .server-info-box-text>a>p {
        /* margin-top: 5px !important; */
        margin-bottom: 5px;
    }

    .package-introduction-info {
        border-right: none;
        padding: 0;
        margin-bottom: 30px;
    }

    .serverInput>input,
    .serverInput>textarea,
    .serverInput>select,
    .userpfp,
    .serverInput-select {
        font-size: 12px;
        padding: 20px 15px;
    }

    .script-image-where {
        font-size: 12px;
    }

    .script-image-condition {
        font-size: 12px;
    }

    .image-upload-container {
        width: 90px;
        height: 70px;
    }

    .script-content {
        border-right: none;
        padding: 35px 25px;
    }

    .script-details {
        padding: 0 25px;
    }

    .script-setup>h3,
    .script-requirements>h3 {
        font-size: 18px;
    }

    .script-setup>p,
    .script-requirements>p {
        font-size: 15px;
    }

    .addServer-box {
        padding: 20px 35px;
    }

    .login-remember>label {
        font-size: 12px;
    }

    .server-add {
        font-size: 12px;
    }

    .detailedBlog-content {
        margin-top: 20px;
    }
}

@media screen and (max-width: 768px) {
    .pagination-text {
        width: 100%;
    }

    .pricing-box {
        padding: 20px;
        width: 250px;
        margin-bottom: 20px;
    }

    .detailedBlog-header>h3 {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .detailedBlog-header>p,
    .detailedBlog-info-title,
    .detailedBlog-info-text {
        font-size: 12px;
    }

    .detailedBlog-info {
        margin-right: 20px;
    }

    .detailedBlog-social button {
        font-size: 12px;
    }

    .pricing-button {
        font-size: 10px;
        padding: 10px 0;
    }

    .pricing-box li>p {
        font-size: 10px;
    }

    .pricing-price>p:first-child {
        font-size: 16px;
    }

    .pricing-money {
        font-size: 10px;
    }

    .pricing-type {
        font-size: 10px;
        margin-bottom: 5px;
    }

    .comment-pfp>img{
        display: none;
    }

    .add-comment-box, .comment-box{
        padding: 10px 15px;
    }

    .pricing-box li>p>i {
        font-size: 16px !important;
        margin-right: 5px;
    }

    .pagination-buttons {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .user-stat {
        margin-bottom: 20px;
    }

    .blog-interactive-social,
    .blog-interactive-detail{
        padding: 20px;
    }

    .serversList-header.ticket {
        justify-content: center;
    }

    .pagination {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .script-images {
        display: block;
    }

    .script-image {
        margin-bottom: 20px;
    }

    .server-publish {
        display: block;
    }

    .server-terms {
        margin-bottom: 20px;
    }

    .yorumm .comment-interractive-share>p, .yorumm .comment-interractive-edit>p:last-child, .yorumm .comment-interractive-edit>p:first-child{
        font-size: 10px !important;
    }

    .yorumm .comment-like{
        padding: 1px 4px;
    }
    .yorumm .comment-like>p{
        margin: 0;
        font-size: 12px;
    }
    .yorumm .comment-box.reply{
        margin-left: 40px;
    }

    .yorumm .add-comment-box, .comment-box{
        display: flex !important;
    }

    .yorumm .add-comment-button>button{
        margin-top: 0 !important;
        margin-left: 10px;
    }
    .comment-user>h3, .comment-user p{
        font-size: 10px !important;
    }
    .yorumm .comment-user{
        margin-bottom: 3px !important;
    }

    .script-images.refferance .script-image-text {
        width: 100%;
        display: block;
    }

    .script-images.refferance .script-image {
        width: 40%;
        display: inline-block;
    }

    .blog-card-social button {
        padding: 6px 10px;
        margin-right: 0px;
    }

    .blog-card-button {
        padding: 10px 10px;
    }

    .contactInput>input,
    .contactInput>textarea {
        margin-bottom: 15px;
    }

    .server-info-header>h3 {
        font-size: 20px;
    }

    .server-info-header>p {
        font-size: 10px;
    }

    .server-info-content {
        font-size: 12px;
    }
    .detailedBlog-header>p, .detailedBlog-info-title, .detailedBlog-info-text{
        font-size: 10px;
    }
    
}

@media screen and (max-width: 600px) {
    .header-responsive-menu {
        width: 100%;
    }
    .detailedBlog-header>p, .detailedBlog-info-title, .detailedBlog-info-text{
        font-size: 12px;
    }
    .blog-interactive{
        align-items: center;
        flex-direction: column;
    }

    .blog-content-abstract{
        padding: 25px;
    }

    .blog-content-abstract>h3{
        font-size: 14px;
        margin-bottom: 7px;
    }
    .blog-content-abstract>p{
        font-size: 12px;
    }

    .blog-content-detail{
        padding: 25px 25px 0 25px;
    }

    .pagination-text p {
        font-size: 12px;
    }

    .pagination {
        margin-right: 20px;
        margin-left: 20px;
    }
}

@media screen and (max-width: 300px) {
    .header-nav>ul>li>a {
        font-size: 12px;
    }

    .header-addServer {
        padding: 9px 15px;
        font-size: 12px;
    }

    .header-profile>img {
        width: 30px;
        height: 30px;
    }

    .header-responsive-menu {
        padding: 30px 20px;
    }

    .header-responsive-menu img {
        padding: 5px 10px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 1400px) {
    .server-header-button {
        margin-left: 15px;
    }

    .server-header-button a {
        white-space: nowrap;
    }

    .server-header-name-info>p {
        font-size: 10px;
    }

    .server-header-name-info>h3 {
        font-size: 14px;
        margin-bottom: 3px;
    }
}


@media screen and (max-width: 992px) and (min-width: 768px) {
    .server-header-button>a {
        padding: 14px 12px;
        font-size: 12px;
    }

    .connections p {
        font-size: 12px;
    }

    .connections a,
    .connections a img {
        width: 24px;
        height: 24px;
        margin-right: 5px;
    }

    .server-footer-button>a {
        padding: 12px 10px;
        font-size: 10px;
    }
}

@media screen and (max-width: 500px) {

    .servers-Title,
    .serversList-Title {
        font-size: 20px;
    }

    .serverInputUserVer{
        padding: 15px !important;
    }
    .servers-type,
    .serversList-type {
        font-size: 12px;
        margin-left: 10px;
    }

    .server-header-button>a {
        padding: 14px 12px;
        font-size: 12px;
    }

    .kanitt {
        font-size: 12px;
        margin-bottom: 0;
    }

    .detailedBlog-header>h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .script-content {
        padding: 20px 10px;
    }

    .script-features>h3,
    .script-setup>h3,
    .script-requirements>h3 {
        font-size: 16px;
    }

    .script-features,
    .script-setup {
        padding-bottom: 30px;
    }

    .script-features>p,
    .script-setup>p,
    .script-requirements>p,
    .script-button>p {
        font-size: 12px;
    }

    .script-button>a {
        font-size: 10px;
    }

    .blog-interactive-detail > div{
        width: 100%;
        justify-content: space-around;
    }

    .blog-detail .blog-interactive-detail .detailedBlog-info{
        width: 100%;
    }

    .script-details {
        padding: 0 10px;
    }

    .detailedBlog-header>p,
    .detailedBlog-info-title,
    .detailedBlog-info-text {
        font-size: 10px;
    }

    .detailedBlog-header>p {
        margin-bottom: 0px;
    }

    .detailedBlog-img>img {
        height: 175px;
    }

    .detailedBlog-info {
        margin-right: 15px;
    }

    .detailedBlog-social {
        margin-top: 20px;
    }

    .detailedBlog-info {
        width: 25%;
        display: inline-block;
    }

    .detailedBlog-infos {
        display: block;
    }

    .connections p {
        font-size: 12px;
    }

    .addServer-box {
        padding: 20px;
    }

    .connections a,
    .connections a img {
        width: 24px;
        height: 24px;
        margin-right: 5px;
    }

    .server-info-header>h3 {
        font-size: 16px;
    }

    .server-info-header>p {
        font-size: 8px;
    }

    .server-info-content,
    .connections p,
    .server-info-box-text>p,
    .server-info-box .connections p {
        font-size: 12px;
    }

    .server-info-box .connections>a>img,
    .server-info-box .connections>a {
        width: 20px;
        height: 20px;
    }

    .contact-infos h3 {
        font-size: 11px;
        margin-bottom: 25px;
    }

    .contact-infos .footer-link-box {
        padding: 12px;
        font-size: 10px;
    }

    .contact-info-box .footer-link-li {
        padding-bottom: 5px;
    }

    .contact-social-link {
        font-size: 12px;
        padding: 10px;
        margin-right: 5px;
    }

    .server-footer-button>a {
        padding: 12px 10px;
        font-size: 10px;
    }

    .server-box {
        margin: 15px 20px;
    }

    .header-responsive-menu li {
        font-size: 14px;
        padding: 5px 20px;
    }

    .serverList-status {
        font-size: 12px;
    }

    .scriptInput>label {
        font-size: 12px;
    }

    .scriptInput>input,
    .scriptInput>textarea,
    .scriptInput>select {
        font-size: 12px;
        padding: 14px 10px;
    }

    .serverList-status>span {
        width: 10px;
        height: 10px;
        margin-right: 6px;
    }

    .package-introduction-box h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .package-introduction-box p {
        font-size: 12px;
        margin-bottom: 0;
    }

    .serverList-button {
        font-size: 10px;
        padding: 12px;
    }

    .serversList-table-header>th {
        font-size: 12px;
    }

    .login-header>h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .login-input>input {
        font-size: 12px;
        padding: 16px;
    }

    .register-whys {
        display: block;
        margin-bottom: 0;
    }

    .register-why {
        width: 100%;
        margin-bottom: 20px;
    }

    .login-checkboxs {
        display: block;
    }

    .register-why {
        padding: 16px;
    }

    .register-why p {
        font-size: 12px;
    }

    .login-remember {
        margin-bottom: 10px;
    }

    .server-info-header>h3>i {
        font-size: 12px;
    }

    .login-button {
        margin-top: 10px;
        font-size: 12px;
        padding: 10px 12px;
    }

    .register-button {
        font-size: 12px;
        padding: 10px 12px;
    }

    .login-header>p {
        font-size: 12px;
        margin-top: 12px;
    }

    .serversList-table-body-name-info>h3 {
        font-size: 12px;
        font-weight: 500;
        margin-bottom: 3px;
        text-align: start;
    }

    .serversList-table-body-name-info>p {
        font-size: 10px;
    }

    .serversList-table th,
    .serversList-table td {
        width: 5%;
    }

    .server-info-box-text>p {
        font-size: 12px;
    }

    .server-info-button {
        font-size: 10px;
        padding: 8px 10px;
    }

    .server-info-box {
        padding: 20px 12px;
    }
}

@media screen and (max-width: 400px) {

    .servers-Title,
    .serversList-Title {
        font-size: 16px;
    }

    .servers-type,
    .serversList-type {
        font-size: 10px;
        margin-left: 7px;
    }

    .index-hero-section>h3 {
        font-size: 28px;
    }

    .index-hero-section>p {
        font-size: 14px;
    }

    .index-hero-section>a {
        font-size: 10px !important;
        margin-top: 5px !important;
    }

    .package-introduction-box h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .package-introduction-box p {
        font-size: 10px;
        margin-bottom: 0;
    }

    .index-hero-section {
        padding: 20px;
    }

    .yorumm .comment-box{
        flex-direction: column-reverse;
        align-items: flex-end;
    }
    .yorumm .comment-like{
        width: 100%;
        margin-top: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .yorumm .comment-box.reply{
        margin-left: 25px;
    }

    .pagination-text p {
        font-size: 10px;
    }

    .pagination-buttons>button,
    .pagination-buttons-a {
        padding: 8px 6px;
        font-size: 10px;
    }

    .pagination-buttons>button>i,
    .pagination-buttons-a>i {
        font-size: 8px;
        margin: 2px;
    }

    .server-header-button>a {
        padding: 12px 10px;
        font-size: 10px;
    }

    .connections p {
        font-size: 12px;
    }

    .connections a,
    .connections a img {
        width: 20px;
        height: 20px;
        margin-right: 4px;
    }

    .server-footer-button>a {
        padding: 10px 8px;
        font-size: 10px;
    }

    .server-header-name>img {
        margin-right: 7px;
        width: 34px;
        height: 34px;
    }

    .server-info-box .connections p {
        font-size: 10px;
    }

    .server-info-header>h3 {
        font-size: 12px;
        font-weight: 500;
        margin-bottom: 3px;
        text-align: start;
    }

    .server-info-header>h3>i {
        margin-left: 5px;
    }

    .server-information-box {
        padding: 25px 15px;
    }

    .server-header-name-info>h3 {
        font-size: 12px;
    }

    .script-information>p {
        font-size: 12px;
    }

    .script-features>p,
    .script-setup>p,
    .script-requirements>p,
    .script-button>p {
        font-size: 10px;
    }

    .script-button>a {
        padding: 8px 8px;
    }

    .script-button {
        padding: 15px;
    }

    .server-img>img {
        width: 100%;
        height: 150px;
    }

    .server-box {
        min-height: 150px;
    }

    .href-box {
        margin: 10px 20px;
    }

    .policy,
    .social-medias,
    .copyright {
        font-size: 12px;
    }

    .copyright {
        margin-left: 7px;
    }

    .social-medias>a {
        padding-right: 7px;
    }

    .blog-section-title>h3 {
        font-size: 14px;
        margin-bottom: 0;
    }

    .view-blogs {
        font-size: 14px;
        padding: 8px 12px;
    }

    .blog-card-social button {
        font-size: 10px;
        padding: 5px 12px;
    }

    .blog-card-button {
        font-size: 12px;
        padding: 8px 8px;
    }

    .server-info-box-text>p {
        font-size: 10px;
    }

    .server-info-button {
        font-size: 8px;
        padding: 8px 10px;
    }

    .server-info-box {
        padding: 15px 10px;
    }

    .blogs-header>h3 {
        font-size: 26px;
    }

    .blogs-header>p {
        font-size: 12px;
    }

    .blogs-header {
        padding: 40px 0;
    }

    .contact-infos h3 {
        font-size: 9px;
        margin-bottom: 15px;
    }

    .contact-infos .footer-link-box {
        padding: 10px 8px;
        font-size: 8px;
    }

    .contact-info-box .footer-link-li {
        padding-bottom: 0px;
    }

    .contact-social-link {
        font-size: 10px;
        padding: 8px;
        margin-right: 3px;
    }

    .contactInput>input,
    .contactInput>textarea {
        font-size: 12px;
        padding: 15px 12px;
    }
}

@media screen and (max-width: 350px) {
    .server-box {
        min-height: 100px;
    }

    .server-header-button>a {
        padding: 10px 8px;
        font-size: 10px;
    }

    .contact-infos .footer-link-box {
        padding: 10px 7px;
        font-size: 7px;
    }

    .contact-info-box .footer-link-li {
        padding-bottom: 0px;
    }

    .contact-social-link {
        font-size: 9px;
        padding: 8px;
        margin-right: 3px;
    }

    .connections p {
        font-size: 10px;
    }

    .connections a,
    .connections a img {
        width: 18px;
        height: 18px;
        margin-right: 3px;
    }

    .server-footer-button>a {
        padding: 8px 6px;
        font-size: 10px;
    }

    .server-header-name>img {
        margin-right: 5px;
        width: 30px;
        height: 30px;
    }

    .server-header-name-info>h3 {
        font-size: 10px;
    }

    .server-img>img {
        width: 100%;
        height: 125px;
        object-fit: cover;
        object-position: center;
        margin-bottom: 10px;
        border-radius: 5px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        transition: 300ms;
    }

    .blogs-header>p {
        font-size: 10px;
    }

    .servers-Title,
    .serversList-Title {
        font-size: 14px;
    }

    .servers-type,
    .serversList-type {
        font-size: 8px;
        margin-left: 5px;
    }
}

@media screen and (max-width: 576px) {
    .footer-section {
        margin: 30px;
        margin-left: 20px;
    }

    .footer-section-title {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .footer-link {
        font-size: 12px;
    }

    .footer-links li {
        margin-bottom: 5px;
    }

    .policy,
    .social-medias,
    .copyright {
        margin-bottom: 0;
    }

    .copyright {
        margin-bottom: 20px;
    }

    .contact-title {
        font-size: 30px;
    }
}

@media screen and (max-width: 576px) {
    .data-box {
        border-right: none;
    }

    .pricing-box {
        padding: 20px;
        width: 300px;
    }

    .pricing-button {
        font-size: 14px;
        padding: 10px 0;
    }

    .pricing-box li>p {
        font-size: 12px;
    }

    .pricing-price>p:first-child {
        font-size: 20px;
    }

    .pricing-money {
        font-size: 14px;
    }

    .pricing-type {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .pricing-box li>p>i {
        font-size: 18px !important;
        margin-right: 5px;
    }

    .pricing-boxs .col-xl-4 {
        display: flex;
        justify-content: center;
    }

    .pricing-box {
        margin-right: 0;
    }

    .add-comment-box,
    .comment-box {
        padding: 15px 9px;
        display: block;
    }

    .add-comment-button>button {
        margin-left: 0;
        margin-top: 10px;
    }

    .comment-info>p {
        margin-left: 0;
        font-size: 12px;
    }

    .comment-user>h3,
    .comment-user p {
        font-size: 12px;
    }

    .comment-user p {
        margin-left: 4px;
    }

    .login-content {
        margin: 0 10px;
    }

    .login-box {
        padding: 35px 0px;
    }

    .refferances-box {
        margin-bottom: 20px;
    }
}