:root {
    --blue: #006eff;
    --blue-hover: #2482ff;

    --red: #df070e;
    --red-hover: #f51920;

    --orange: #ff5c34;
    --orange-hover: #ff6c48;

    --green: #65d91d;
    --green-hover: #7dff2d;

    --header: #ffffff;
    --text: #bfbfbf;
    --strong: #fff;

    --bg: #0d0d0d;

    --borders: rgba(255, 255, 255, 0.12);
}

/* Eric Meyer's CSS Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* End of Eric Meyer's CSS Reset */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
}

body {
    font-family: "Lato", "Inter", Verdana, Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: var(--text);
    font-weight: 400;
    background: var(--bg);
}

.wrapper {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    text-shadow: rgba(0, 0, 0, 0.01) 0 0 1px;
}

p {
    padding-bottom: 20px;
}

h1,
h2,
h3,
h4,
h5 {
    color: var(--header);
    font-weight: 700;
    font-family: "Maven Pro", sans-serif;
}

img {
    line-height: 1;
    vertical-align: bottom;
}

h1 {
    font-size: 44px;
    line-height: 52px;
}

h2 {
    font-size: 36px;
    line-height: 44px;
    padding-bottom: 6px;
}

h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 500;
}

h4 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
}

h5 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
}

a {
    color: var(--red);
    font-weight: 500;
    text-decoration: none;
}

a:hover,
a:active,
a:focus {
    color: var(--red-hover);
    text-decoration: none;
}

section {
    padding: 88px 0px;
}

.normal {
    font-weight: 400;
}

.semibold {
    font-weight: 500;
}

.bold {
    font-weight: 600;
}

.extrabold {
    font-weight: 700;
}

.black {
    font-weight: 900;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.clearfix:after,
.container:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}

strong {
    color: var(--strong);
    font-weight: 600;
}

*:hover {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.red {
    color: var(--red);
}

.green {
    color: var(--green);
}

.orange {
    color: var(--orange);
}

.blue {
    color: var(--blue);
}

.redbg {
    background: var(--red);
}

.greenbg {
    background: var(--green);
}

.orangebg {
    background: var(--orange);
}

.bluebg {
    background: var(--blue);
}

p {
    padding-bottom: 20px;
}

.title {
    padding-bottom: 52px;
    text-align: center;
}

.title p {
    font-size: 20px;
    line-height: 30px;
    max-width: 760px;
    margin: 0 auto;
    padding-bottom: 0px;
    padding-top: 6px;
    color: #fff;
}

.button {
    padding: 0px 28px;
    display: inline-block;
    height: 52px;
    line-height: 50px;
    color: #fff !important;
    background: linear-gradient(-90deg, var(--orange) 12%, var(--red) 100%);
    border: 1px solid #e30d0a;
    border-radius: 8px;
    position: relative;
    font-size: 16px;
    font-weight: 700;
    position: relative;
    z-index: 9;
    font-family: "Maven Pro", sans-serif;
}

.button-helper {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    border-radius: 8px;
    background: linear-gradient(-90deg, var(--orange) 10%, var(--red) 50%);
    -webkit-transition: opacity 0.2s linear;
    -moz-transition: opacity 0.2s linear;
    -o-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
}

a.button:hover .button-helper {
    opacity: 1;
}

.button:hover {
    color: #fff !important;
    text-decoration: none;
}

.button:focus {
    transform: scale(0.97);
    outline: none;
}

.button.lg {
    height: 62px;
    line-height: 60px;
    padding: 0px 40px;
    font-size: 18px;
}

.button.lg {
    height: 62px;
    line-height: 60px;
    padding: 0px 40px;
    font-size: 18px;
}

.white-button {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.88);
    color: var(--red) !important;
}

.white-button:hover {
    background: #fff;
    border: 1px solid #fff;
    color: var(--red) !important;
}

.button.outline {
    background: transparent;
    box-shadow: none;
    border: 1px solid #061840;
    color: var(--blue) !important;
}

.button.outline:hover {
    background: var(--blue);
    color: #fff !important;
    box-shadow: none;
}

.button.secondary {
    background: var(--red);
}

.button.secondary:hover {
    background: var(--red-hover);
}

.blue-button {
    background-image: linear-gradient(-90deg, var(--blue-hover) 10%, var(--blue) 100%);
    border: 1px solid var(--blue);
    border-radius: 10px;
}

.blue-button .button-helper {
    background-image: linear-gradient(-90deg, var(--blue-hover) 12%, #005ed0 50%);
}

.button.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.button.disabled:hover {
    opacity: 0.7;
}

.relative {
    position: relative;
}

.text-center {
    text-align: center;
}

.text-lg {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-md {
    font-size: 1.125rem;
    line-height: 1.5rem;
}

.width-50 {
    width: 50%;
}

.width-66 {
    width: 66.6667%;
}

.width-75 {
    width: 75%;
}

.width-75 {
    width: 100%;
}

.pull-left-img {
    float: left;
    margin-right: 2rem;
}

.text-left {
    text-align: left;
}

.inline-block {
    display: inline-block;
}

.block {
    display: block;
}

.mt-8 {
    margin-top: 8rem;
}

.mt-7 {
    margin-top: 7rem;
}

.mt-6 {
    margin-top: 6.25rem;
}

.text-sm {
    font-size: 0.75rem;
}

.mute {
    opacity: 0.75;
}

.opacity-25 {
    opacity: 0.25;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-75 {
    opacity: 0.75;
}

.va-sub {
    vertical-align: sub;
}

.va-mid {
    vertical-align: middle;
}

.va-top {
    vertical-align: top;
}

.va-base {
    vertical-align: baseline;
}

.va-bot {
    vertical-align: bottom;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.header {
    padding: 12px 0px 30px 0px;
}

.header a {
    color: #fff;
    font-style: normal;
    font-size: 16px;
}

.header a:hover {
    color: var(--red-hover);
}

#main-navigation {
    float: right;
}

#main-navigation li {
    float: left;
    line-height: 42px;
    padding-left: 40px;
    padding-top: 17px;
}

#main-navigation li:nth-child(1) {
    padding-left: 0px;
}

#main-navigation li a,
#main-navigation li a.button {
    font-weight: 600;
    color: #fff;
    display: block;
}

#main-navigation li a:hover {
    color: var(--red-hover);
}

.header .button {
    height: 42px;
    line-height: 40px;
    padding: 0px 20px;
}

.font-10 {
    font-size: 10px;
    line-height: 20px;
}

.font-11 {
    font-size: 11px;
    line-height: 20px;
}

.font-12 {
    font-size: 12px;
    line-height: 20px;
}

.font-13 {
    font-size: 13px;
    line-height: 22px;
}

.font-14 {
    font-size: 14px;
    line-height: 22px;
}

.font-15 {
    font-size: 15px;
    line-height: 24px;
}

.font-16 {
    font-size: 16px;
    line-height: 24px;
}

.font-18 {
    font-size: 18px;
    line-height: 26px;
}

.font-20 {
    font-size: 20px;
    line-height: 30px;
}

.font-22 {
    font-size: 22px;
    line-height: 32px;
}

.font-24 {
    font-size: 24px;
    line-height: 34px;
}

.font-26 {
    font-size: 26px;
    line-height: 36px;
}

.font-30 {
    font-size: 30px;
    line-height: 40px;
}

.font-32 {
    font-size: 32px;
    line-height: 40px;
}

.font-36 {
    font-size: 36px;
    line-height: 44px;
}

.font-54 {
    font-size: 54px;
    line-height: 62px;
}

.top {
    padding: 7px 0px 6px 0px;
    border-bottom: 1px solid var(--borders);
    font-size: 12px;
    line-height: 18px;
    font-weight: 600;
}

.top a {
    color: var(--text);
}

.top a:hover {
    color: #fff;
}

.top ul {
    float: right;
}

.top ul li {
    display: inline-block;
    padding-left: 20px;
}

.top ul li:nth-child(1) {
    padding-left: 0px;
}

.top-label {
    line-height: 16px;
    font-size: 12px;
    border: 1px solid var(--blue);
    color: var(--blue);
    display: inline-block;
    border-radius: 5px;
    padding: 0px 8px;
    font-weight: 600;
    font-family: "Maven Pro", sans-serif;
}

.label {
    line-height: 16px;
    font-size: 12px;
    background-image: linear-gradient(270deg, #bcff6d 0%, #65d91d 100%);
    border: 1px solid #7dff2d;
    border-radius: 12px;
    color: var(--bg);
    display: inline-block;
    padding: 0px 6px;
    font-weight: 600;
    font-family: "Maven Pro", sans-serif;
}

.online {
    border-radius: 5px;
}

.head-red {
    background: -webkit-linear-gradient(90deg, var(--orange-hover), var(--red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Maven Pro", sans-serif;
    font-size: 15px;
    padding-bottom: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: inline-block;
    line-height: 20px;
}

.head-blue {
    background: -webkit-linear-gradient(90deg, var(--blue-hover), var(--blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Maven Pro", sans-serif;
    font-size: 15px;
    padding-bottom: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: inline-block;
    line-height: 20px;
}

#hero-home h1 {
    font-size: 88px;
    line-height: 82px;
    background: -webkit-linear-gradient(90deg, #929292 0%, #fff 30%);
    font-weight: 900;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

::selection {
    background: rgb(216 38 45/60%);
    color: white !important;
}

.hero {
    background: #000;
}

.hero p,
.hero ul {
    color: #fff;
}

#hero-home {
    padding: 0px;
}

.hero .font-24 {
    font-weight: 400;
}

.w-53 {
    width: 53%;
}

.box {
    background-image: linear-gradient(96deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: inset 0 0 4px -1px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 40px 36px;
}

.server-box .box {
    padding: 0px;
}

.border-top {
    border-top: 1px solid var(--borders);
}

.border-bottom {
    border-bottom: 1px solid var(--borders);
}

.border-right {
    border-right: 1px solid var(--borders);
}

.border-left {
    border-left: 1px solid var(--borders);
}

.button-block {
    width: 100%;
    text-align: center;
    padding: 0px;
}

.server-box .box .row:nth-child(1) {
    margin: 0px;
}

.server-box .row .col-xl-9,
.server-box .row .col-xl-3 {
    padding: 25px 30px;
}

.hsrv-row {
    padding-top: 25px;
}

.server-box h4 {
    font-size: 22px;
    line-height: 30px;
    font-weight: 500;
}

.hsrv-title .font-12 {
    line-height: 32px !important;
}

.hsrv-title h3 img {
    margin-top: 1px;
}

.ul-dashed {
    border-bottom: 1px dashed #fff;
}

.ul-dashed.red {
    border-bottom: 1px dashed var(--red);
}

.server-box .ul-dashed {
    letter-spacing: 1px;
}

.server-box {
    margin-top: 25px;
}

.ifix {
    padding-bottom: 2px;
}

.text-gradient,
.gradient-link {
    color: var(--red);
}

.gradient-link:hover {
    color: var(--red-hover);
}

.bg-grad-mid {
    background: url("../images/bg-grad-mid.svg") center top no-repeat;
    position: relative;
}

.bg-grad-mid:before,
.bg-grad-kvm:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    content: " ";
    display: block;
    height: 1px;
    background-image: linear-gradient(90deg, rgba(13, 13, 13, 0) 10%, #3c4144 50%, rgba(13, 13, 13, 0) 90%);
    width: 100%;
    opacity: 0.5;
}

.button-divider {
    position: relative;
}

.button-divider:before {
    top: 50%;
    height: 1px;
    width: 36%;
    position: absolute;
    left: 0;
    content: " ";
    display: block;
    background-image: linear-gradient(90deg, rgba(13, 13, 13, 0) 10%, #3c4144 50%, rgba(13, 13, 13, 0) 90%);
    z-index: -1;
}

.button-divider:after {
    top: 50%;
    height: 1px;
    width: 36%;
    position: absolute;
    right: 0;
    content: " ";
    display: block;
    background-image: linear-gradient(90deg, rgba(13, 13, 13, 0) 10%, #3c4144 50%, rgba(13, 13, 13, 0) 90%);
    z-index: -1;
}

.text-button {
    background: transparent;
    border: 1px solid transparent;
}

.text-button:hover {
    color: var(--red) !important;
    border: 1px solid transparent;
}

.features .col {
    margin-bottom: 55px;
}

.features .row {
    margin-bottom: -55px;
}

.responsive-img {
    max-width: 100%;
}

.overview-tabs {
    background-image: linear-gradient(96deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.07);
    box-shadow: inset 0 0 4px -1px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    display: inline-block;
}

.overview-tabs li {
    float: left;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.overview-tabs li a {
    padding: 12px 24px;
    display: block;
    color: var(--text);
    border-radius: 0px;
    border: 1px solid transparent;
    margin-top: -1px;
    margin-bottom: -1px;
}

.overview-tabs li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.02);
}

.overview-tabs li .active,
.overview-tabs li .active:hover {
    background-image: linear-gradient(-90deg, #ff5225 2%, #eb0909 100%);
    border: 1px solid #fe5024;
    color: #fff;
    font-weight: 700;
}

.next-tab-btn:hover {
    padding-left: 5px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.overview-tabs li:nth-child(1) a {
    border-radius: 8px 0 0 8px;
}

.overview-tabs li:nth-last-child(1) a {
    border-radius: 0 8px 8px 0px;
}

.overview-tabs li:nth-last-child(1) {
    border-right: 0px;
}

.uses-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -10px;
    position: relative;
}

.uses-wrap:before {
    position: absolute;
    bottom: -70px;
    left: -20px;
    content: " ";
    display: block;
    background: url("../images/use-cases-bg.svg") center center no-repeat;
    width: 332px;
    height: 258px;
}

.uses-box {
    width: 15%;
    padding: 0px 10px;
    -webkit-transition: width 0.15s ease-in-out;
    -moz-transition: width 0.15s ease-in-out;
    -o-transition: width 0.15s ease-in-out;
    transition: width 0.15s ease-in-out;
    overflow: hidden;
    filter: grayscale(100);
    opacity: 0.66;
}

.uses-box:hover {
    opacity: 1;
    cursor: pointer;
}

.uses-box.active {
    width: 40%;
    filter: unset;
    opacity: 1;
}

.uses-inner {
    width: 100%;
    border-radius: 12px;
    min-height: 380px;
    position: relative;
}

.uses-inner div {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px 24px 32px 24px;
    border-radius: 0 0px 12px 12px;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.87) 78%);
}

#ucase-games .uses-inner {
    background: url("../images/use-cases-games.webp") center center no-repeat;
}

#ucase-apps .uses-inner {
    background: url("../images/use-cases-apps.webp") center center no-repeat;
}

#ucase-databases .uses-inner {
    background: url("../images/use-cases-database.webp") center center no-repeat;
}

#ucase-hosting .uses-inner {
    background: url("../images/use-cases-hosting.webp") center center no-repeat;
}

#ucase-streaming .uses-inner {
    background: url("../images/use-cases-streaming.webp") center center no-repeat;
}

.uses-box h3 {
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
}

.uses-box p,
.uses-box a {
    display: none;
    min-width: 320px;
}

.uses-box.active h3 {
    font-size: 16px;
}

.uses-box.active p,
.uses-box.active a {
    display: inline-block;
    opacity: 1;
}

.uses-box.active h3 {
    font-size: 24px;
    line-height: 32px;
    padding-bottom: 8px;
    font-weight: 700;
}

.overview-bg-before {
    position: relative;
}

.overview-bg-before:before {
    position: absolute;
    bottom: -90px;
    right: -40px;
    content: " ";
    display: block;
    background: url("../images/use-cases-bg.svg") center center no-repeat;
    width: 332px;
    height: 332px;
}

.box-after-border {
    position: relative;
    margin-bottom: 13px;
}

.box-after-border:before {
    position: absolute;
    height: 12px;
    display: block;
    content: " ";
    bottom: -14px;
    right: 20px;
    left: 20px;
    border: 1px solid rgb(34, 34, 34);
    border-top: 0px;
    border-radius: 0 0 6px 6px;
}

.abs-left-box {
    padding: 32px 32px 28px 100px;
}

.step-icon {
    background-image: linear-gradient(134deg, #1c1c1c 0%, #1d1d1d 99%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    font-family: "Maven Pro", sans-serif;
    text-align: center;
    line-height: 42px;
    position: absolute;
    top: 32px;
    left: 32px;
    color: #fff;
}

.step-icon:before {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    position: absolute;
    content: " ";
    display: block;
    left: -1px;
    right: -1px;
    bottom: -1px;
    top: -1px;
    background: -webkit-linear-gradient(180deg, var(--orange-hover), var(--red));
    z-index: -1;
}

.step-icon:after {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    position: absolute;
    content: " ";
    display: block;
    right: -4px;
    bottom: -4px;
    background: -webkit-linear-gradient(180deg, var(--orange-hover), var(--red));
    z-index: -1;
}

.red-bg {
    background: url("../images/bg-red.webp") center right #d20b0a no-repeat;
    padding: 48px;
    color: #fff;
}

.red-bg .text-button {
    color: rgba(255, 255, 255, 0.7) !important;
}

.red-bg .text-button:hover {
    color: #fff !important;
}

.footer {
    background: url("../images/bg-footer.svg") center bottom no-repeat;
    padding: 88px 0px 40px 0px;
}

.footer ul li {
    display: inline-block;
}

.footer-links li {
    padding: 0px 12px;
}

.footer-links li a {
    padding: 4px;
}

.social-link {
    font-size: 24px;
    margin: 0px 12px;
    padding: 4px;
}

.legal-links {
    font-size: 12px;
}

.legal-links li {
    margin: 0px 8px;
}

.legal-links li a {
    padding: 3px;
    font-size: 13px;
    color: rgba(191, 191, 191, 0.6);
    text-decoration: underline;
}

.legal-links li a:hover {
    color: rgba(191, 191, 191, 1);
}

.hero-sub h2 {
    font-size: 48px;
    line-height: 54px;
}

/* Customize the appearance of the slider thumb */
.slider-handle {
    width: 16px; /* Width of the thumb */
    height: 16px; /* Height of the thumb */
    border-radius: 50%; /* Rounded shape of the thumb */
    background-color: #007bff; /* Color of the thumb */
    border: 2px solid #007bff; /* Border color of the thumb */
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.5); /* Shadow effect for the thumb */
    cursor: pointer; /* Cursor type for the thumb */
}

/* Customize the appearance of the slider */
.slider {
    position: relative; /* Ensure proper positioning of the thumb */
    width: 100%; /* Set width of the slider */
}

/* Customize the appearance of the slider track */
.slider-track {
    background-color: #ddd; /* Color of the track */
    height: 4px; /* Height of the track */
    border-radius: 6px; /* Rounded corners of the track */
}

/* Customize the appearance of the slider selection bar */
.slider-selection {
    background-color: #007bff; /* Color of the selection bar */
    height: 100%; /* Height of the selection bar */
    border-radius: 6px; /* Rounded corners of the selection bar */
}

.server-table {
    width: 100%;
    border-collapse: separate;
    display: table;
    border-spacing: 0 20px;
    margin-bottom: -20px;
}

.server-table tr {
    background-image: linear-gradient(96deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%);
    box-shadow: inset 0 0 4px -1px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 40px 36px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.server-table tr td {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 20px 20px;
    line-height: 1;
    vertical-align: middle;
}

.server-table tr td .button {
    display: block;
    padding: 0px;
    text-align: center;
}

.server-table tr td:nth-child(1) {
    border-left: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px 0px 0px 8px;
}

.server-table tr td:nth-last-child(1) {
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 0px 8px 8px 0px;
}

.server-table h5 {
    font-size: 16px;
}

.server-tbl-type {
    width: 20px;
    float: left;
    margin-right: 8px;
    margin-top: 4px;
}

.server-table span {
    font-size: 12px;
}

.server-table .button span {
    font-size: inherit;
}

.filter-toggle {
    padding: 6px 0px;
    margin: 0 0 2px 0;
    cursor: pointer;
}

.filter-toggle .fa-regular {
    float: right;
    line-height: 28px;
}

.filter-block {
    border-bottom: 1px solid var(--borders);
    padding: 18px 0px;
}

.server-table thead tr {
    background-image: unset;
    box-shadow: unset;
    padding: unset;
    margin-bottom: unset;
    border-radius: unset;
}

.server-table thead {
    margin-bottom: -20px;
}

.server-table thead th {
    text-align: left;
    font-size: 12px;
    color: #989898;
    padding: 0px 20px;
    line-height: 12px;
}

.form-check input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url("../images/checkbox.svg");
    width: 16px;
    height: 16px;
    background-size: 16px 16px;
    float: left;
    margin-top: 7.5px;
    border-radius: 0px !important;
    margin-right: 10px;
}

.form-check input[type="checkbox"]:checked {
    background: url("../images/checkbox-checked.svg");
    border-radius: 0px !important;
    background-size: 16px 16px;
}

.form-check {
    display: block;
    clear: both;
    padding: 1px 0px;
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    cursor: pointer;
    outline: none;
    border-radius: 15px;
    height: 6px;
    display: block;
    margin-bottom: 10px;
    background: #ccc;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 20px;
    width: 20px;
    background: url("../images/handle.svg");
    border-radius: 50%;
    border: none;
    transition: 0.2s ease-in-out;
}

input[type="range"]::-moz-range-thumb {
    height: 15px;
    width: 15px;
    background-color: var(--red);
    border-radius: 50%;
    border: none;
    transition: 0.2s ease-in-out;
}

input[type="range"]::-webkit-slider-thumb:hover {
    box-shadow: 0 0 0 10px rgba(255, 85, 0, 0.1);
}

input[type="range"]:active::-webkit-slider-thumb {
    box-shadow: 0 0 0 13px rgba(255, 85, 0, 0.2);
}

input[type="range"]:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 13px rgba(255, 85, 0, 0.2);
}

input[type="range"]::-moz-range-thumb:hover {
    box-shadow: 0 0 0 10px rgba(255, 85, 0, 0.1);
}

input[type="range"]:active::-moz-range-thumb {
    box-shadow: 0 0 0 13px rgba(255, 85, 0, 0.2);
}

input[type="range"]:focus::-moz-range-thumb {
    box-shadow: 0 0 0 13px rgba(255, 85, 0, 0.2);
}

.value {
    display: none;
}

.form-check-label {
    display: inline-block;
    padding-top: 3px;
    padding-bottom: 3px;
}

.filter-block .row {
    padding: 0px 7.5px;
}

.filter-block .row .col {
    padding: 0px 7.5px;
}

.radius-lg {
    border-radius: 12px;
}

#dedicated-locations {
    padding: 60px 48px;
    background: linear-gradient(96deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%);
    background-size: 480px;
}

.dedi-half-box {
    padding: 52px 48px 0px 48px;
}

.os-wrap {
    border: 1px solid var(--borders);
    padding: 12px 16px;
    border-radius: 6px;
    color: #fff;
    line-height: 24px;
    font-weight: 600;
    margin-top: 20px;
    text-align: left;
}

.os-wrap img {
    float: left;
    margin-right: 8px;
}

.os-wrap-row .col {
    padding: 0px 10px;
}

.os-wrap-row {
    padding: 0px 5px;
}

.italic {
    font-style: italic;
}

.height-50 {
    height: 50px;
}

.bg-grad-kvm {
    background: url("../images/bg-grad-kvm@2x.png") center top no-repeat;
    background-size: 100%;
    position: relative;
}

.os-box {
    float: left;
    margin: 0px -25px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.os-box img {
    width: 132px;
    height: 132px;
}

.inner-os-wrap {
    margin: 0px 15px;
}

.os-box.active img,
.os-box:hover img {
    transform: scale(1.16667);
}

.inner-os-wrap {
    float: left;
    margin-right: 60px;
}

.mac-os-wrap {
    text-align: left;
    max-width: 760px;
    margin: 60px auto 0px auto;
    min-height: 132px;
}

.mac-os-wrap h3 {
    font-weight: 700;
    padding-top: 18px;
}

.box-abs-left {
    position: relative;
    padding: 34px 54px 34px 130px;
    text-align: left;
}

.box-abs-left .abs-left-img {
    position: absolute;
    top: 34px;
    left: 48px;
}

#mac-features .col {
    margin-bottom: 30px;
}

#mac-features .row {
    margin-bottom: -30px;
}

.light-bg {
    background-image: linear-gradient(96deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.resource-box {
    padding: 0px;
    overflow: hidden;
}

.resource-img-wrap {
    height: 170px;
    overflow: hidden;
}

.resource-img {
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.resource-box-text {
    padding: 30px 28px 26px 28px;
}

.meta {
    font-size: 12px;
    opacity: 0.5;
}

.resource-box:hover .resource-img {
    transform: scale(1.025);
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.resource-box:hover .resource-box-text {
    padding: 29px 28px 27px 28px;
}

#hero-ip-transit {
    padding-bottom: 200px;
}

.form-box {
    background-image: linear-gradient(136deg, #141414 0%, #1a1a1a 50%, #131313 100%);
    border: 1px solid #222222;
    box-shadow: inset 0 0 4px -1px rgba(0, 0, 0, 0.22);
    border-radius: 16px;
    padding: 60px 64px;
    max-width: 900px;
    margin: -120px auto 0px auto;
}

.form-block label,
.colo-contact label {
    font-size: 14px;
    color: #fff;
    display: inline-block;
    padding: 3px 0px;
    font-weight: 600;
}

.form-block label i,
.colo-contact label i {
    padding-bottom: 2px;
}

.form-block {
    padding: 28px 0px;
}

.form-control {
    border: 1px solid rgba(215, 215, 215, 0.12);
    border-radius: 6px;
    height: 60px;
    padding: 0px 19px;
    font-family: "Lato", sans-serif;
    font-size: 16px;
    font-weight: 400;
    background: transparent;
    display: block;
    width: 100%;
    margin-top: 8px;
    color: #fff;
}

.form-control:focus {
    outline: unset;
    box-shadow: unset;
    border: 1px solid var(--red);
    box-shadow: 0px 0px 5px var(--orange);
}

.form-box .col {
    padding-bottom: 25px;
}

.form-box .col:nth-last-child(1) {
    padding-bottom: 0px;
}

.radio {
    background: url("../images/input-radio.svg");
    width: 20px;
    height: 20px;
    float: left;
    margin-top: 7px;
    margin-right: 8px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    opacity: 0.75;
}

.radio:hover {
    opacity: 1;
}

.radio:checked {
    background: url("../images/input-radio-active.svg");
    opacity: 1;
}

.block-border-bottom {
    border-bottom: 1px dashed var(--borders);
}

.form-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: url("../images/select-down.svg") center right 20px no-repeat;
}

.form-textarea {
    min-height: 140px;
    padding-top: 12px;
}

.submitbutton {
    border: 0px;
}

.form-block:nth-last-child(1) {
    padding-bottom: 0px;
}

.three-circle-specs {
    text-align: center;
    width: auto;
    margin: 0 auto;
    display: table;
    margin-top: 18px;
    margin-bottom: 78px;
}

.spec {
    font-weight: 500;
    color: var(--text);
    display: block;
    width: 186px;
    height: 186px;

    border-radius: 50%;
    text-align: center;
    float: left;

    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.5), 2px 2px 28px 0 rgba(0, 0, 0, 0.59);

    background-image: linear-gradient(136deg, #141414 0%, #1a1a1a 50%, #131313 100%);
    border: 1px solid #222222;
    z-index: 1000;
}

.spec h2 {
    padding-top: 46px;
    color: #fff;
    font-size: 44px;
    font-weight: 300;
    line-height: 54px;
    padding-bottom: 6px;
}

.spec span {
    display: block;
    clear: both;
    text-align: center;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
}

.specbig {
    transform: scale(1.25);
    z-index: 1001;
}

.other-services li a {
    padding: 3px 0px;
    display: inline-block;
}

.map-bg {
    position: absolute;
    width: 984px;
    height: 390px;
    background: url("../images/iptransit-map-bg@2x.png") center center no-repeat;
    background-size: cover;
    content: " ";
    display: block;
    top: 150px;
    left: 50%;
    right: 0;
    transform: translateX(-50%);
    z-index: -1;
    opacity: 0.65;
}

.feature-icon-left {
    position: relative;
    padding-left: 90px;
}

.feature-icon-left .abs-left-img {
    position: absolute;
    top: 0;
    left: 0;
}

.plan-box-list li:before {
    background: url("../images/bullet.svg");
    display: inline-block;
    width: 5px;
    height: 5px;
    vertical-align: middle;
    content: " ";
    margin-bottom: 4px;
    margin-right: 10px;
}

.colo-cta {
    background: url("../images/bg-custom-config.svg") center center no-repeat;
    line-height: 30px;
    padding: 14px 0px 16px 0px;
    text-align: center;
    position: relative;
}

.colo-cta:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    content: " ";
    display: block;
    height: 1px;
    background-image: linear-gradient(90deg, rgba(13, 13, 13, 0) 10%, #3c4144 50%, rgba(13, 13, 13, 0) 90%);
    width: 100%;
    opacity: 0.3;
}

.colo-cta:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    content: " ";
    display: block;
    height: 1px;
    background-image: linear-gradient(90deg, rgba(13, 13, 13, 0) 10%, #3c4144 50%, rgba(13, 13, 13, 0) 90%);
    width: 100%;
    opacity: 0.3;
}

.content-box {
    padding: 70px 60px;
}

.network-logo-list {
    display: block;
    margin-top: 5px;
}

.network-logo-list li {
    padding: 8px 30px;
    float: left;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.network-logo-list li:nth-child(1) {
    padding-left: 0px;
}

.network-logo-list li:nth-last-child(1) {
    padding-right: 0px;
    border-right: 0px;
}

.colo-tabs li {
    width: 16.6667%;
    float: left;
    text-align: center;
}

.colo-tabs li a {
    display: block;
    border: 1px solid transparent;
    border-radius: 12px 12px 0px 0px;
    padding: 32px 10px 30px 10px;
    margin-bottom: -1px;
    color: #fff;
    opacity: 0.4;
    font-weight: 500;
}

.colo-tabs li a:hover {
    opacity: 0.8;
}

.colo-tabs li .active,
.colo-tabs li .active:hover {
    background: #151515;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid #151515;
    opacity: 1;
    font-weight: 700;
}

.photo-slider-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.photo-slider-nav li {
    width: 18.5%;
    flex: 0 0 auto;
    display: flex;
}

.photo-slider-nav li img {
    max-width: 100%;
    display: block;
    height: auto;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.photo-slider-nav li img {
    opacity: 0.33;
    display: block;
}

.photo-slider-nav li img:hover {
    opacity: 0.66;
    cursor: pointer;
}

.photo-slider-nav li.active img {
    opacity: 1;
}

.photo-slider-nav li.active img {
    border: 2px solid var(--red);
}

.responsive-img {
    max-width: 100%;
}

.photo-slider-img {
    margin: 68px auto;
    display: table;
    position: relative;
    max-width: 960px;
}

.photo-slider-img img {
    width: 100%;
    border-radius: 16px;
}

.photo-slider-img:before {
    position: absolute;
    top: -36px;
    left: -122px;
    content: " ";
    display: block;
    background: url("../images/gallery-bg-1.svg") center center no-repeat;
    width: 264px;
    height: 333px;
    z-index: -1;
}

.photo-slider-img:after {
    position: absolute;
    bottom: -30px;
    right: -128px;
    content: " ";
    display: block;
    background: url("../images/gallery-bg-2.svg") center center no-repeat;
    width: 302px;
    height: 272px;
    z-index: -1;
}

.titleleft {
    text-align: left;
}

.titleleft p {
    margin: 0px;
}

.logo {
    margin-top: 6px;
    margin-bottom: -6px;
}

#hero-dedicated {
    background: url("../images/bg-dedicated.webp") center right no-repeat #000;
    background-size: auto 100%;
}

#hero-mac {
    background: url("../images/bg-mac.webp") center center no-repeat #000;
    background-size: auto 100%;
}

#hero-colocation {
    background: url("../images/bg-colocation.webp") center right no-repeat #000;
    background-size: auto 100%;
}

#hero-ip-transit {
    background: url("../images/bg-transit.webp") center center no-repeat #000;
    background-size: auto 100%;
}

.hero-slide-1 {
    background: url("../images/hero-bg-amd.png") center right no-repeat;
    background-size: auto 100%;
}

.hero-slide-2 {
    background: url("../images/hero-bg-intel.webp") center right no-repeat;
    background-size: auto 100%;
}

.hero-slide-3 {
    background: url("../images/hero-bg-mac.webp") center right no-repeat;
    background-size: auto 100%;
}

.hero-slide-4 {
    background: url("../images/bg-colocation.webp") bottom 20% right no-repeat;
    background-size: auto 100%;
}

.hero-slide {
    padding: 88px 0px;
}

@media (-webkit-min-device-pixel-ratio: 1.5) {
    #hero-dedicated {
        background: url("../images/bg-dedicated@2x.webp") center right no-repeat #000;
        background-size: auto 100%;
    }

    #hero-mac {
        background: url("../images/bg-mac@2x.webp") center center no-repeat #000;
        background-size: auto 100%;
    }

    #hero-colocation {
        background: url("../images/bg-colocation@2x.webp") center right no-repeat #000;
        background-size: auto 100%;
    }

    #hero-ip-transit {
        background: url("../images/bg-transit@2x.webp") center center no-repeat #000;
        background-size: auto 100%;
    }

    .hero-slide-1 {
        background: url("../images/hero-bg-amd@2x.webp") center right no-repeat;
        background-size: auto 100%;
    }

    .hero-slide-2 {
        background: url("../images/hero-bg-intel@2x.webp") center right no-repeat;
        background-size: auto 100%;
    }

    .hero-slide-3 {
        background: url("../images/hero-bg-mac@2x.webp") center right no-repeat;
        background-size: auto 100%;
    }

    .hero-slide-4 {
        background: url("../images/bg-colocation@2x.webp") bottom 20% right no-repeat;
        background-size: auto 100%;
    }
}

.button:hover .fa-arrow-right-long {
    padding-left: 2px;
    transform: ease in 0.5s;
}

.carousel {
    position: relative;
}

.carousel.pointer-event {
    touch-action: pan-y;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-inner::after {
    display: block;
    clear: both;
    content: "";
}

.carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    margin-right: -100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .carousel-item {
        transition: none;
    }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    display: block;
}

.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
    transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
    transform: translateX(-100%);
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    z-index: 1;
    opacity: 1;
}

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    z-index: 0;
    opacity: 0;
    transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {
    .carousel-fade .active.carousel-item-start,
    .carousel-fade .active.carousel-item-end {
        transition: none;
    }
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: none;
    border: 0;
    opacity: 0.5;
    transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
    .carousel-control-prev,
    .carousel-control-next {
        transition: none;
    }
}

.carousel-control-prev:hover,
.carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: 0.9;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
}

/* rtl:options: {
    "autoRename": true,
    "stringMap":[ {
      "name"    : "prev-next",
      "search"  : "prev",
      "replace" : "next"
    } ]
  } */

.has-indic .carousel-indicators {
    position: absolute;
    right: 0;
    bottom: -40px;
    left: 0;
    z-index: 1012;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
    margin-left: 15%;
    list-style: none;
}

.has-indic .carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 12px;
    border-radius: 50%;
    height: 12px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    border: 1px solid #fff;
    background: #fff;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
    .has-indic .carousel-indicators [data-bs-target] {
        transition: none;
    }
}

.has-indic .carousel-indicators .active {
    opacity: 1;
    background: var(--header);
}

.visually-hidden {
    display: none;
}

.carousel-dark .carousel-control-prev-icon,
.carousel-dark .carousel-control-next-icon {
    filter: invert(1) grayscale(100);
}

.carousel-dark .carousel-indicators [data-bs-target] {
    background-color: #000;
}

.carousel-dark .carousel-caption {
    color: #000;
}

[data-bs-theme="dark"] .carousel .carousel-control-prev-icon,
[data-bs-theme="dark"] .carousel .carousel-control-next-icon {
    filter: invert(1) grayscale(100);
}

[data-bs-theme="dark"] .carousel .carousel-indicators [data-bs-target] {
    background-color: #000;
}

[data-bs-theme="dark"] .carousel .carousel-caption {
    color: #000;
}

.carousel-control-prev,
.carousel-control-next {
    color: var(--header);
    z-index: 1002;
    width: 5%;
}

.carousel-control-prev:hover,
.carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
    color: var(--header);
    cursor: pointer;
}

/* Previous and Next slide number */
.carousel-slide-number {
}

/* Loading bar */
.carousel-progress {
    width: 140px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.12);
    overflow: hidden;
    border-radius: 8px;
    margin-top: 7px;
}

.carousel-progress-bar {
    height: 100%;
    background-color: rgba(255, 255, 255, 1);
    width: 0;
    border-radius: 8px;
    transition: width 8s linear; /* Change 8s to your desired delay time */
}

/* Customize previous and next arrow buttons */
.carousel-control-prev,
.carousel-control-next {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #fff;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    color: #ccc;
}

.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
}

.slider-nav ul {
    float: right;
    display: table;
}

.slider-nav ul li {
    float: left;
    margin-left: 10px;
    vertical-align: middle;
    font-size: 10px;
    line-height: 18px;
    height: 18px;
    color: #fff;
    font-weight: 700;
}

.slider-nav ul li:nth-child(1) {
    margin-right: 10px;
    margin-left: 0px;
}

.slider-nav ul li:nth-last-child(1) {
    margin-left: 20px;
}

.slider-arrow:hover {
    opacity: 0.75;
    display: block;
    transform: scale(1.25);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.slider-container {
    overflow: hidden; /* Hide the scrollbar */
    white-space: nowrap;
    cursor: grab; /* Set grab cursor for draggable effect */
    padding: 0px 15px;
}

.slider-container.grabbing {
    cursor: grabbing; /* Change cursor to grabbing when dragging */
}

.testimonials-col {
    display: inline-block;
    width: 466.6667px;
    padding: 0px 12px;
    vertical-align: top;
    white-space: wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.testimonials-col * {
    white-space: normal;
    word-break: break-word;
}

.card-slider .carousel-inner {
    display: flex;
    flex-wrap: nowrap;
}

.card-slider .carousel-item {
    flex: 0 0 calc(100% / 4); /* Adjust this value based on the number of cards you want to show */
    margin-right: 15px;
}

.card-slider .carousel-control-prev,
.card-slider .carousel-control-next {
    width: auto;
}

.card-slider .carousel-control-prev-icon,
.card-slider .carousel-control-next-icon {
    background-image: none;
    font-size: 2rem;
}

@media (max-width: 767px) {
    #server-use-cases .carousel-inner .carousel-item > div,
    #colo-use-cases .carousel-inner .carousel-item > div {
        display: none;
    }

    #server-use-cases .carousel-inner .carousel-item > div:first-child,
    #colo-use-cases .carousel-inner .carousel-item > div:first-child {
        display: block;
    }
}

#server-use-cases .col,
#colo-use-cases .col {
    padding: 0px 10px;
}

#server-use-cases .row .carousel,
#colo-use-cases .row .carousel {
    padding: 0px !important;
}

#server-use-cases .box {
    border: 1px solid #222222;
    background-image: linear-gradient(136deg, #141414 0%, #1a1a1a 50%, #131313 100%);
}

#colo-use-cases .box {
    border: 1px solid #282828;
    background-image: linear-gradient(136deg, #1c1c1c 0%, #161616 50%, #1d1d1d 100%);
}

#server-use-cases .carousel-control-next,
#server-use-cases .carousel-control-prev,
#colo-use-cases .carousel-control-next,
#colo-use-cases .carousel-control-prev {
    background-image: linear-gradient(-89deg, #393939 2%, #272727 100%);
    border: 1px solid #000000;
    box-shadow: inset 0 -3px 3px 0 rgba(0, 0, 0, 0.12);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    text-align: center;
    line-height: 54px;
    opacity: 1;
    top: 50%;
    margin-top: -28px;
    right: -18px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 18px;
}

#server-use-cases .carousel-control-prev,
#colo-use-cases .carousel-control-prev {
    right: unset;
    left: -18px;
}

#server-use-cases .carousel-control-next:hover,
#server-use-cases .carousel-control-prev:hover,
#colo-use-cases .carousel-control-next:hover,
#colo-use-cases .carousel-control-prev:hover {
    opacity: 1;
    color: #fff;
    background-image: linear-gradient(-89deg, #ff5225 2%, #eb0909 100%);
    border: 1px solid #e30d0a;
    transition: all ease-in-out 0.25s;
}

#server-use-cases .carousel-inner .carousel-item.active,
#server-use-cases .carousel-inner .carousel-item-next,
#server-use-cases .carousel-inner .carousel-item-prev,
#colo-use-cases .carousel-inner .carousel-item.active,
#colo-use-cases .carousel-inner .carousel-item-next,
#colo-use-cases .carousel-inner .carousel-item-prev {
    display: flex;
}

/* medium and up screens */
@media (min-width: 768px) {
    #server-use-cases .carousel-inner .carousel-item-end.active,
    #server-use-cases .carousel-inner .carousel-item-next,
    #colo-use-cases .carousel-inner .carousel-item-end.active,
    #colo-use-cases .carousel-inner .carousel-item-next {
        transform: translateX(25%);
    }

    #server-use-cases .carousel-inner .carousel-item-start.active,
    #server-use-cases .carousel-inner .carousel-item-prev,
    #colo-use-cases .carousel-inner .carousel-item-start.active,
    #colo-use-cases .carousel-inner .carousel-item-prev {
        transform: translateX(-25%);
    }
}

#server-use-cases .carousel-inner .carousel-item-end,
#server-use-cases .carousel-inner .carousel-item-start,
#colo-use-cases .carousel-inner .carousel-item-end,
#colo-use-cases .carousel-inner .carousel-item-start {
    transform: translateX(0);
}

.text-right {
    text-align: right;
}

.faq-block {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.faq-question {
    cursor: pointer;
    margin: 5px 0px;
    padding: 19px 24px 17px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    display: none;
    padding: 0px 24px 24px 24px;
}

.faq-question h5 {
    font-weight: 500;
}

#colo-tab-6 .content-box {
    border-top-right-radius: 0px;
}

#colo-tab-1 .content-box {
    border-top-left-radius: 0px;
}

#colo-photos .carousel-control-next {
    right: 4%;
}

#colo-photos .carousel-control-prev {
    left: 4%;
}

.cta-footer .col.text-right {
    padding-top: 14px;
}

.faq-answer p {
    padding-bottom: 10px;
}

.red-bg.radius-lg {
    border-radius: 16px;
}

.server-nav {
    line-height: 28px;
    padding: 0px 0px;
}

.server-nav ul {
    width: 100%;
    display: block;
}

.server-nav ul li {
    float: left;
}

.server-nav ul li a {
    padding: 16px 24px;
    display: block;
    color: rgba(255, 255, 255, 0.5);
}

.server-nav ul li a:hover {
    color: rgba(255, 255, 255, 0.75);
}

.server-nav ul li.pull-right {
    float: right;
}

.server-nav ul li.pull-right a {
    padding: 0px;
    display: inline-block;
    color: #fff;
    text-decoration: underline;
}

.server-nav ul li.pull-right strong {
    display: block;
    padding: 16px 0px;
}

.server-nav ul li.pull-right a:hover {
    color: var(--blue);
}

.server-nav ul li.active a {
    position: relative;
    color: #fff;
    font-weight: 700;
}

.server-nav ul li.active a:after {
    position: absolute;
    bottom: -2px;
    left: 0px;
    right: 0px;
    height: 3px;
    background: var(--red);
    content: " ";
    display: block;
    border-radius: 3px;
}

.bullet-indicators li {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: transparent !important;
    border: 1.5px solid rgba(255, 255, 255, 0.33) !important;
    opacity: 0.75 !important;
    margin: 0 3px !important;
}

.bullet-indicators li:hover {
    border: 1.5px solid var(--red) !important;
}

.bullet-indicators li.active {
    opacity: 1 !important;
    border: 1.5px solid var(--red) !important;
    background: var(--red) !important;
}

.game-panel-preview {
    background: url(../images/panel-preview-bg.svg) center center no-repeat;
    padding: 12px;
    background-size: 100%;
    border-radius: 16px;
}

.game-panel-preview .carousel-item {
    border-radius: 8px;
    overflow: hidden;
}

.button_container {
    display: none;
    position: absolute;
    top: 18px;
    width: 60px;
    text-align: right;
    right: 12.5px;
    color: #fff;
    font-size: 24px;
}

.button_container i {
    color: #fff;
}

.button_container .fa-xmark-large {
    display: none;
}

.button_container.active .fa-bars {
    display: none;
}

.button_container.active .fa-xmark-large {
    display: block;
}

.font-28 {
    font-size: 24px;
    line-height: 36px;
}

.server-box h4 {
    font-size: 20px;
}

.show-mobile {
    display: none;
}

.toggle-all-filters {
    color: #fff !important;
    background: linear-gradient(-145deg, var(--blue) 42%, var(--blue-hover) 100%);
    border: 1px solid var(--blue);
    box-shadow: inset 0 0 4px -1px rgba(0, 0, 0, 0.12);
    border-radius: 6px;
    padding: 4px 16px 6px 16px;
    text-align: left;
    font-weight: 600;
    margin-bottom: 30px;
    font-size: 14px;
    cursor: pointer;
}

.toggle-all-filters .fa {
    font-size: 11px;
    margin-left: 2px;
}

.toggle-all-filters:after {
    visibility: hidden;
    display: block;
    font-size: 0;
    content: " ";
    clear: both;
    height: 0;
}

html,
body {
    overflow-x: hidden;
}

.hero-slide-4 .button {
    margin-bottom: -2px;
}

html {
    scroll-behavior: smooth;
}

.uses-arrow:hover {
    color: var(--red);
    cursor: pointer;
}

.uses-arrow {
    display: block;
    width: 64px;
    position: absolute;
    top: 0;
    bottom: 0;
    opacity: 0.3;
    filter: brightness(100);
}

.uses-arrow:hover {
    opacity: 1;
    filter: unset;
}

.uses-arrow.right {
    background: url(../images/home-next.svg) center center no-repeat;
    background-size: 40% auto;
    right: -120px;
    left: unset;
}

.uses-arrow.left {
    background: url(../images/home-prev.svg) center center no-repeat;
    background-size: 40% auto;
    left: -120px;
    right: unset;
}

.uses-arrow.right:hover {
    margin-right: -3px;
    margin-left: 3px;
}

.uses-arrow.left:hover {
    margin-right: 3px;
    margin-left: -3px;
}

#colo-features .uses-arrow {
    top: 177px;
}

.opacity-1 {
    opacity: 1;
}

.more-services-link {
    color: var(--text);
    font-weight: 300;
    display: block;
}

.more-services-link:hover,
.more-services-link:focus {
    color: #fff;
}

.more-services-link:hover .fa-chevrons-right {
    padding-left: 5px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 1500px) {
    .uses-arrow {
        display: none;
    }
}
hr.rounded {
    border-top: 8px solid #bbb;
    border-radius: 5px;
}