:root {
    --teal:rgb(27, 168, 157);
    --teal-hover: #13d5c5;

    --grey: grey;
  
    --red: #CB404D;
    --red-hover: #e74959;
  
    --green:#00B67A;
    --green-hover:#00d18b;
  
    --header:#fff;
    --text:#BDBCD5;
    --strong:#fff;
    --body:#181C29;

    --light-bg:#292E3E;
  }
  
  
  
  
  
  /* 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: 'Cairo', 'Inter', Verdana, Arial, Helvetica, sans-serif;
      font-size: 16px;
      line-height: 26px;
      color:var(--text);
      font-weight: 400;
      background:var(--body);
  }
  
  .wrapper {
      width:100%;
      max-width: 1280px;
      margin: 0 auto;
  }
  
  p {
      padding-bottom: 20px;
  }
  
  
  h1,
  h2,
  h3,
  h4,
  h5 {
      color: #fff;
      font-weight: 700;
      font-family:"Cairo",sans-serif;
  }
  
  img {
      line-height: 1;
      vertical-align: bottom;
  }
  
  h1 {
      font-size: 58px;
      line-height: 64px;
      font-weight: 900;
  }
  
  h2 {
      font-size: 36px;
      line-height: 42px;
      padding-bottom: 6px;
  }
  
  h3 {
      font-size: 24px;
      line-height: 30px;
  }
  
  h4 {
      font-size: 20px;
      line-height: 28px;
  }
  
  h5 {
      font-size: 16px;
      line-height: 24px;
  }
  
  a {
      color: var(--teal);
      font-weight: 600;
      text-decoration: none;
  }
  
  a:hover,
  a:active,
  a:focus {
      color: var(--teal-hover);
      text-decoration: none;
  }
  
  section {
      padding: 100px 0px;
  }
  
  
  .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,
  .server-specs: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: 700;
  }
  
  *:hover {
      -webkit-transition: all .2s ease-in-out;
      -moz-transition: all .2s ease-in-out;
      transition: all .2s ease-in-out;
  }
  
  p {
      padding-bottom: 20px;
  }
  
  .col-lg-25 {
      flex: 0 0 auto;
      width: 20%;
  }
  
  .title {
      padding-bottom: 40px;
      text-align: center;
      margin-top: -6px;
  }
  
  
  .title p {
      font-size: 20px;
      line-height: 30px;
      max-width: 800px;
      margin: 0 auto;
      padding-bottom: 0px;
      padding-top: 10px;
      color:#fff;
      font-weight:500;
  }
  
  .flex-grid .title {
      padding-left: 0px;
      padding-right: 0px;
  }
  
  .button {
      padding: 0px 24px;
      display: inline-block;
      height: 48px;
      line-height: 48px;
      color: #fff !important;
      background: var(--teal);
      font-size: 16px;
      font-weight: 700;
  
      box-shadow: 0 2px 2px 0 rgba(0,0,0,0.05);
      border-radius: 6px;
  }
  
  .button:hover {
      color: #fff !important;
      text-decoration: none;
      background: var(--teal-hover);
  }
  
  .button:focus {
      transform: scale(0.97);
      outline: none;
  }

  .button.lg {
    height:52px;
    line-height:52px;
    font-size:18px;
  }

  .whitebutton {
    background:#fff;
    color:#181C29 !important;
  }

  .whitebutton:hover {
    background:rgba(255,255,255,0.8);
    color:#181C29 !important;
  }
  
  .button.outline {
      background: transparent;
      box-shadow: none;
      border: 1px solid #061840;
      color: var(--teal) !important;
  }
  
  .button.outline:hover {
      background: var(--teal);
      color: #fff !important;
      box-shadow: none;
  }
  
  
  .button.secondary {
    background:var(--red);
  }
  
  .button.secondary:hover {
    background:var(--red-hover);
  }
  
  .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:28px 0px;
    background:var(--body);
  }

  #bg-home .header {
    background:transparent;
  }
  
  .header a {
    color: var(--text);
    font-style:normal;
  }
  
  .header a:hover {
    color:var(--teal);
  }
  

  
.mnav li,
.rnav li {
  float: left;
  margin: 0px 4px;
}

.mnav li a,
.rnav li a {
  display: block;
  padding: 10px 12px;
  color: #fff;
  font-weight:600;
}

.mnav li a:hover,
.rnav li a:hover {
  color: var(--teal);
}

.mnav li:nth-child(1),
.rnav li:nth-child(1) {
  margin-left: 0%;
}

.mnav li:nth-last-child(1),
.rnav li:nth-last-child(1) {
  margin-right: 0%;
}



.mnav li.dropdown {
  position: relative;
}

.mnav .dropdown-menu {
  min-width: 360px;
  width: auto;
  right: 0px;
  left: 50%;
  top: 42px;
  padding: 4px;
  border-radius: 8px;
  transform:translateX(-50%);
}

.mnav li .dropdown-menu a {
  color: var(--body);
  font-weight:600;
  border: 0px;
  padding: 8px 16px;
  line-height: 18px;
  display: block;
  min-height: 64px;
  white-space: nowrap;
}

.mnav li .dropdown-menu a strong {
  display: block;
  padding-top: 4px;
  padding-bottom: 2px;
  white-space: nowrap;
  color: var(--body);
}

.mnav .dropdown:hover .dropdown-menu {
  padding: 8px;
}

.mnav li .dropdown-menu a h5 {
  line-height: 18px;
  padding-top: 6px;
  font-size: 17px;
  padding-bottom: 2px;
}

.mnav li .dropdown-menu a span {
  color: #6e6f7b;
  opacity: 1;
  font-weight: 500;
  white-space: nowrap;
}
.mnav li .dropdown-menu a:hover {
  color:var(--red) !important;
}

.mnav li .dropdown-menu a:hover {
  background: #eaecef;
  border-radius: 6px;
}

.mnav li .dropdown-menu li {
  margin-bottom: 6px;
}

.mnav li .dropdown-menu li:nth-last-child(1) {
  margin-bottom: 0px;
}

.mnav li .dropdown-menu a:hover {
  border: 0px;
}
.mnav li .dropdown-menu a:after,
.mnav li .dropdown-menu a:hover:after {
  display: none !important;
}

.rnav .button {
    height:36px;
    padding:0px 20px;
    line-height:36px;
    border-radius:6px;
    margin:4px 0px;
    font-weight:700;
}

.nav-icon {
  background: #eaecef;
  width: 48px;
  height: 48px;
  line-height: 48px;
  border-radius: 50%;
  text-align: center;
  font-size: 24px;
  float: left;
  margin-right: 16px;
  color: var(--teal);
}

.nav-icon i {
  vertical-align: middle;
}

.nav-icon img {
  vertical-align: middle;
  margin-bottom: 2px;
}

.mnav li .dropdown-menu a:hover h5 {
  color: var(--teal);
}

.mnav li .dropdown-menu a:hover .nav-icon {
  background: #24264d;
  color: var(--teal);
}

.button_container {
    display: none;
    position: absolute;
    top: 34px;
    width: 60px;
    text-align: right;
    right: 15px;
    color: #fff;
}

.button_container a {
  color:#fff;
}


.button_container.active a {
  color:var(--teal);
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #ffffff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  z-index: 1;
  left: unset;
  right: 0px;
  min-width: 160px;
  top: 42px;
}

.dropdown:hover .dropdown-menu {
  display: block;
  padding: 8px;
}

.dropdown-toggle .fa-chevron-down {
  position: relative;
}

.mnav li.dropdown:hover .fa-chevron-down:after {
  position: absolute;
  left: -4px;
  right: 0;
  bottom: -14px;
  content: " ";
  display: block;
  width: 20px;
  height: 9px;
}

.mnav li.dropdown:hover .dropdown-toggle {
  color: var(--teal);
}

.mnav li .dropdown-menu a:hover,
.mnav li .dropdown-menu a:hover .nav-icon,
.mnav li .dropdown-menu a:hover .nav-icon img {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.mnav li .dropdown-menu a:hover .nav-icon {
  background: linear-gradient(-83deg, #ff9a6d 0%, #ff552f 75%);
}

.mnav li .dropdown-menu a:hover .woo-icon img {
  filter: brightness(100);
}

.mnav li .dropdown-menu.single-links-dropdown a {
  text-align: center;
  min-height: auto;
  padding: 12px 24px 12px 24px;
  white-space: nowrap;
}

.mnav li .dropdown-menu.single-links-dropdown {
  min-width: 210px;
}

  

  .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:28px;}
.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;}

.height-24 {
    height: 24px;
}

.ifix {
    padding-bottom:2px;
}

.pricing-container {
  display: flex;
  align-items: flex-start;
  margin:0px auto;
  justify-content: center;
}

.big-number {
  font-size: 60px;
  line-height: 1;
}

.small-details {
  display: flex;
  flex-direction: column;
  margin-left: 6px;
}

.decimal {
  font-size: 24px;
  line-height: 1;
  padding-top:9px;
  padding-bottom:5px;
  text-align:left;
}

.frequency {
  font-size: 14px;
  line-height: 1;
  font-weight:700;
  text-align:left;
}

.server-section {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.server-box {
  width: 300px;
  padding: 32px;
  border-radius: 12px;
background: #3A3F50;
box-shadow: 0px 0px 20px 0px rgba(12, 16, 27, 0.30);
  color:var(--text);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease, width 0.3s ease, margin 0.3s ease;
  position: relative;
  z-index: 1;
  opacity:0.5;
}

.server-box:hover {
    scale:1.05;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 3;
    opacity:1;
}

.server-box.active {
    scale:1.125;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 2;
    opacity:1;
}

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

.server-box span {
  display: block;
  font-size: 14px;
}

.server-box .deploy-time {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color:var(--green);
}

.bullet {
    font-family:sans-serif;
    display:inline-block !important;
}

.server-box ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 20px 0;
}

.server-box ul li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 2px;
}

.server-box .button {
border: 1.5px solid rgba(255, 255, 255, 0.15);
background: #4E5466;
line-height:40px;
height:43px;
width:100%;
text-align:center;
padding:0px;
}

.server-box.active .button, .server-box:hover .button {
  border:1.5px solid transparent !important;
  background:var(--teal) !important;
}


.top-bar {
    color:#fff;
    background:var(--red);   
    padding:6px 0px;
    font-size:14px;
}

.top-bar h5 {
    font-style:italic;
}

.top-bar ul li {
    float:left;
    margin-right:20px;
}

.top-bar ul li:nth-last-child(1) {
    margin-right:0px;
}

.top-bar a {
    color:#fff;
}

.hero {
    text-align:center;
    color:#fff;
    font-weight:500;
}

strong {
    color:#fff;
}

.height-28 {
    height:28px;
}

.hero-rated {
    line-height:28px;
}

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

#home-services {
    text-align:center;
}

.pricing-container {
    color:#fff;
    font-weight:700;
    padding-bottom:18px;
}

.semibold {
    font-weight:600;
}

.service-box {
    padding:44px 28px;
    border-radius: 16px;
border: 1px solid transparent;
}

.service-box:hover {
    border-radius: 16px;
border: 1px solid rgba(255, 255, 255, 0.20);
background: #1C202F;
box-shadow: 0px 16px 44px 0px rgba(8, 14, 34, 0.40);
}

.bg-home body {
    background:url('../images/home-bg.png') top center no-repeat var(--body);
    background-size:100%;
}

.bg-home .header {
  background:transparent !important;
}

.bg-cloud body {
    background:url('../images/bg-cloud.png') top center no-repeat var(--body);
    background-size:100%;
}

.bg-colo body {
    background:url('../images/bg-colo.png') top center no-repeat var(--body);
    background-size:100%;
}


.bg-dedicated body {
    background:url('../images/bg-dedicated.png') top center no-repeat var(--body);
    background-size:100%;
}

.bg-network body {
  background:url('../images/bg-network.png') center top no-repeat var(--body);
}

.wavey-bg {
    background:var(--light-bg);
    position: relative;
    margin-top:66px;
    margin-bottom:58px;
    padding:68px 0px;
}

.wavey-bg:before {
    position: absolute;
    top:-80px;
    background:url('../images/wavey-top.svg') center top no-repeat;
    width:100%;
    height:86px;
    left:0;
    right:0;
    content:" ";
    display:block;
    background-size:100%;
    
    background-size: 1920px;
}

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


.wavey-bg:after{
    position: absolute;
    bottom:-70px;
    background:url('../images/wavey-bottom.svg') center bottom no-repeat;
    width:100%;
    height:70px;
    left:0;
    right:0;
    content:" ";
    display:block;
    background-size:100%;
    
    background-size: 1920px;
}





.red-wavey-bg {
    background:url('../images/red-bg-bot.svg') center bottom no-repeat var(--red);
    position: relative;
    margin-top:156px;
    padding:0px 0px 168px 0px;
    color:#fff;
    background-size:100%;
    margin-bottom:-50px;
    
    background-size: 1920px;
}

.red-wavey-bg p{
  font-size:20px;
}

.red-wavey-bg:before {
    position: absolute;
    top:-156px;
    background:url('../images/red-bg-top.svg') center center no-repeat;
    width:100%;
    height:170px;
    left:0;
    right:0;
    content:" ";
    display:block;
    background-size:100%;
}





.redlink {
  color:var(--red);
  font-weight:700;
}

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

.map {
    background: url(../images/world-map-home.svg);
    height: 430px;
    margin: 0 auto;
    position: relative;
    width: 1080px;
  }

  .map-flat {
    background: url(../images/map-two.svg);
    width:851px;
    height:432px;
  }

  
.pin {
    position: absolute;
    cursor:pointer;
}


.the-pin {  
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--teal);
    position: absolute;
    top:0;
    left:0;
}

.the-pin-grey {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--grey);
    position: absolute;
    top:0;
    left:0;
}





@-webkit-keyframes pulse
  {
    0% {-webkit-transform: scale(0); opacity: 0.5;}
    100% {opacity: 0; -webkit-transform: scale(1);}
  }

  @-moz-keyframes pulse
  {
    0% {-moz-transform: scale(0); opacity: 0.5;}
    100% {opacity: 0; -moz-transform: scale(1);}
  }

  .pulse_holder
  {
    z-index:1000;
    display: block;
    position: absolute;
    top: -2px;
    left: -2px;
    border-radius: 100%;
  }

  .pulse_holder .pulse_marker
  {
    display: block;
    width: 18px;
    height: 18px;
    background-color: transparent;
    background-position: 50% 50%;
    background-size: cover;
  }

.pulse_marker:before,
.pulse_marker:after {
    content: "";
    position: absolute;
    background-color: rgba(0, 202, 225, 0.3);
    border: 3px dotted var(--teal);
    border-radius: 100%;

  /* Giving Animation Function */
    -webkit-animation: pulse 2s ease-out infinite;
    -moz-animation: pulse 2s ease-out infinite;
    border-image: initial;

}

  .pulse_marker:before
  {
    left: -12px;
    top: -12px;
    width: 32px;
    height: 32px;
  }
  .pulse_marker:after
  {
    left: -28px;
    top: -28px;
    width: 64px;
    height: 64px;
  }
  
  .pin-hover a:hover {
    text-decoration: underline;
  }

.pin-hover {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s ease-in-out;
    /* existing styles below */
    white-space: nowrap;
    position: absolute;
    left:124px;
    top:30px;
    border-radius: 6px;
    padding: 12px 18px 8px 18px;
    font-weight: 600;
    transform: translateX(-50%);
    margin-bottom: 26px;
    z-index: 1002;
    width: 284px;
    text-align: left;
    color: var(--text);
    background: #fff;
    border: 1px solid #DBDFE2;
    box-shadow: 0 2px 3px 0 rgba(5,8,46,0.10);
    color: var(--body);
}

.pin:hover .pin-hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.network-map .pin-hover {
    text-align:left;
}

.pin-hover:hover {
    box-shadow: 0 3px 6px 3px rgba(0, 0, 0, 0.12);
    margin-top:-2px;
}
.pin-hover:before {
    content: '';
    position: absolute;
    left: 24px;
    transform: translateX(-50%);
    top: 0%;
    width: 0;
    height: 0;
    margin-top: -8px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(0, 0, 0, 0.1);
    clear: both;
}

.pin-hover:after {
    content: '';
    position: absolute;
    left: 24px;
    transform: translateX(-50%);
    top: 0%;
    width: 0;
    height: 0;
    margin-top:-6px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
    clear: both;
}

.pin-hover:hover {
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;}

.pin-hover:hover,
.pin-hover strong {
    color:var(--body);
}

.pin-hover span {
    font-weight:400;
    color:var(--body);
}

.pin-hover .blue {
    font-weight:600;
    color:var(--red);
}

.pin-hover .fa-long-arrow-right {
    padding-bottom:2px;
}

.pin-hover:hover .blue {
    color:var(--red-hover);
}

.pin-hover:hover .fa-long-arrow-right {
    padding-left:2px;
}

.location-ams-cl {
    left: 48.5%;
    top: 30%;
}

.location-fra-cl {
    left: 51.5%;
    top: 18.5%;
}

.location-vie-cl {
    left: 51.5%;
    top: 35%;
}

.location-si-cl {
    left: 50.5%;
    top: 38%;
}



.location-vie-sm {
    left: 53%;
    top: 19%;
}
.location-ams-sm {
    left: 49.8%;
    top: 17%;
}

.location-fra-sm {
    left: 51%;
    top: 19.5%;
}

.location-si-sm {
    left: 53%;
    top: 21.5%;
}


.location-ny {
    left: 27%;
    top: 33%;
}



.map-flat .location-ams {
    left: 47%;
    top: 31%;
}

.map-flat .location-ny {
    left: 28%;
    top: 36%;
}


.box {
  border-radius: 8px;
border: 1px solid rgba(255, 255, 255, 0.06);
background: #292E3E;
}

.test-top {
  padding:24px;
  border-bottom:1px solid rgba(255,255,255,0.06);
}

.test-bot {
  padding:24px;
}

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

.italic {
  font-style:italic;
}

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

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


.center-vertically {
    
    position: absolute;
    top: 50%;
    left: calc(var(--bs-gutter-x)* .575);
    right: calc(var(--bs-gutter-x)* .575);
    transform: translateY(-50%);
}

.footer {
  padding:88px 0px;
  margin-bottom:30px;
}

#footer-links {
  padding-top:11px;
}

#footer-links li {
  padding:3px 0px;
}

#footer-links li a {
  color:var(--text);
  padding:2px 0px;
  display:inline-block;
}

#footer-links li a:hover {
  color:var(--teal);
}

#footer-links li i {
  width:18px;
  text-align:center;
}

.subhero {
  padding-top:20px;
  text-align:left;
  color:#fff;
  font-weight:500;
}

.breadcrumb {
  text-align:left;
  padding-bottom:80px;
}

.breadcrumb ul li {
  display:inline-block;
  font-size:14px;
}

.breadcrumb ul li:after {
  display:inline-block;
  content:" / ";
  margin:0px 12px;
}

.breadcrumb a {
  color:var(--text);
}
.breadcrumb a:hover {
  color:#fff;
}

.breadcrumb ul li:nth-last-child(1)  a{
  color:#fff;
  font-weight:700;
}
.breadcrumb ul li:nth-last-child(1):after {
  display:none;
}

.hero-features li {
  padding:10px 0px;
  font-size:22px;
  color:#fff;
  font-weight:500;
  line-height:32px;
}

.hero-features li img {
  float:left;
  margin-right:6px;
}

.sbox {
  margin-bottom:20px;
  padding: 32px;
border-radius: 12px;
border: 1px solid rgba(255, 255, 255, 0.08);
background: #212635;
  color:var(--text);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease, width 0.3s ease, margin 0.3s ease;
  position: relative;
}

.sbox:nth-last-of-type(1) {
  margin-bottom:0px;
}

.server-specs {
    padding-top: 20px;
    font-weight:600;
    color:#fff;
}

.server-specs span {
  font-weight:400;
  color:var(--text);
}

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


.server-specs li {
  float:left;
    display: inline-block;
}

.server-specs li:nth-child(1) {width:20%;}
.server-specs li:nth-child(2) {width:20%;}
.server-specs li:nth-child(3) {width:20%;}
.server-specs li:nth-child(4) {width:20%;}
.server-specs li:nth-child(5) {width:20%;}


.height-48 {
  height:48px;
}

.box-light {
  border-radius: 8px;
border: 1px solid rgba(255, 255, 255, 0.07);
background: rgba(58, 63, 80, 0.35);
}

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

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

.icon-bg {
background: linear-gradient(142deg, rgba(24, 28, 41, 0.00) -8.75%, rgb(70, 77, 100, 0.1) 80.74%);
border:1px solid rgba(255,255,255,0.05);
border-radius:100px;
width: 100px;
height: 100px;
flex-shrink: 0;
line-height:100px;
text-align:center;
}

.padded-row {
  padding:0px 80px;
}

#dedicated-network .sbox {
  text-align:center;
}

.icon-bg img {
  vertical-align: middle;
}

#dedicated-network {
  background:url('../images/dedicated-network-bg.png') top center no-repeat;
  padding-top:168px;
}

#dedicated-network .sbox {
  background:#303546;
  padding-top:25px;
  padding-bottom:25px;
}

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


.spec-list {
    width:35%;
    float:left;
}

.spec-list li {
    padding:3px 0px;
    padding-right:8px;
    text-align:right;
    font-size:10px;
    opacity:0.75;
    font-weight:500;
}

.spec-amount {
    width:65%;
    float:right;
}

.spec-amount li {
    padding:3px 0px;
    padding-left:8px;
    text-align:left;
    color:var(--strong);
    font-weight:600;
    font-size:14px;
}

.spec-hide {
  display:none;
}

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

.sbox-pricing .button {
  display:block;
  padding:0px;
  text-align:center;
}

.discount-label {
  background:url('../images/label-bg.svg') center center no-repeat;
  width:150px;
  height:28px;
  font-size:12px;
  color:#fff;
  margin:0px auto;
  text-align:center;
  display:block;
  font-weight:700;
  line-height:28px;
  margin-top:15px;
}

#cloud-features .col {
  padding-bottom:30px;
}

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

.box-outline {
  border:1px solid rgba(255,255,255,0.1);
  border-radius:12px;
  padding:28px;
}

.faded-bg {
  background:url('../images/faded-bg-1.png') top center no-repeat;
  background-size:100%;
}

#latest-hardware {
  margin-top:80px;
}

.table-compare {
  width:100%;
  margin:0px auto;
  text-align:center;
  max-width:960px;
}

.table-compare td {
  padding:16px 20px;
  border-bottom:1px solid #363C4C;
}

.table-compare th {
  padding:16px 20px;
  border-bottom:3px solid #363C4C; 
}

.table-compare td:nth-child(1), .table-compare th:nth-child(1) {
  text-align:left;
  width:33.3333%;
}

.table-compare tr:nth-last-child(1) td {
  border-bottom:0px;
}

.table-compare tr td:nth-child(2), .table-compare tr th:nth-child(2) {
  background:var(--light-bg);
  color:#fff;
  font-weight:600;
}

.table-compare tr th:nth-child(2) {
  border-radius:12px 12px 0 0;
  padding:20px 20px;
}

.table-compare tr:nth-last-child(1) td:nth-child(2) {
  border-radius:0 0 12px 12px;
  padding:20px;
}

.table-compare tr:nth-last-child(1) td:nth-child(2) a {
  display:block;
}

#colo-pricing .sbox-pricing {
  text-align:left;
}
#colo-pricing .sbox-pricing .button {
  display:inline-block;
  width:auto;
  padding:0px 32px;
}

.colo-more-cta {
  max-width:960px;
  margin:0px auto;
  text-align:left;
  margin-top:60px;
}

.colo-more-cta .col-lg-6 {
  padding:28px 40px;
}

.colo-more-cta .col-lg-6:nth-child(1) {
  border-right:2px solid rgba(255,255,255,0.2);
}

#colo-features {
  padding-top:148px;
}

#colo-logos .col {
  line-height:64px;
  text-align:center;
}

#colo-logos .col img {
  vertical-align: middle;
}

.sliding-gallery {
    background: url(../images/colopics.png) repeat-x;
    height: 418px;
    width: 4380px;
    animation: slide 60s linear infinite;
    margin-bottom: 6px;
    margin-top:5px;margin-bottom:5px;
}



#photos {
    overflow-x: hidden;
}

@keyframes slide {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-1692px, 0, 0);
    }
}

html, body {
  overflow-x: hidden;
}

.ping-checker-box {
  padding:0px 120px;
}

.location-stat {
    padding: 12px 32px;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
}

.location-stat:hover {
  border-color:var(--teal);
}

.ping-result {
    background: var(--teal);
    color: #000;
    border-radius: 8px 8px 10px 10px;
    font-weight: 700;
    text-align: center;
    font-size: 14px;
}

/* Latency status classes */
.ping-result-excellent {
    background: #22c55e;
    color: #000;
}

.ping-result-good {
    background: var(--teal);
    color: #000;
}

.ping-result-ok {
    background: #eab308;
    color: #000;
}

.ping-result-average {
    background: #f97316;
    color: #fff;
}

.ping-result-poor {
    background:rgb(177, 57, 69);
    color: #fff;
}

.ping-result-unavailable {
    background: #6b7280;
    color: #fff;
}

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

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

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

.vertical-center {
    position: absolute;
    top: 0;
    left: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.ping-checker-box .col {
    position: relative;
}

#network-overview {
  padding-top:148px;
}

.oval-bg {
  background:url('../images/bg-oval.svg') center top no-repeat;
  background-size:100%;
}

.dc-specs li {
  background:var(--light-bg);
  border-radius:6px;
  height:54px;
  line-height:54px;
  padding:0px 20px;
  margin-top:15px;
  color:#fff;
  font-weight:600;
}

.dc-specs li i {
  width:20px;
  text-align:center;
}

.drl-vie12 {
  background:url('../images/digital-realty-vie12.png') center center no-repeat;
  background-size:cover;
  width: 100%;
  height:240px;
  position: relative;
  border-radius:6px;
}

.drl-ams5 {
    background:url('../images/digital-realty-ams5.jpg') center center no-repeat;
    background-size:cover;
    width: 100%;
    height:240px;
    position: relative;
    border-radius:6px;
}

.dc-address-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.6); /* semi-transparent dark background */
    color: #fff;                          /* white text */
    padding: 12px 16px;
    border-radius: 8px;
}


.teal-bg {
  background:var(--teal);
  color:var(--body);
  font-weight:600;
}

.teal-bg strong,
.teal-bg h4 {
  color:var(--body);
}

.teal-bg a {
  color:var(--body);
  font-weight:700;
}


#home-hero,
#cloud-hero {
  text-align:center !important;
}


.tab-pane {
    display:none;
}

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



.carousel {
    position: relative;
    
    /* Hides carousel by default */
}

.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 button {
    background:transparent;
    border:0px;
    padding:0px;

}


.slider-nav button img {
    width:100%;
    height:100%;
}

.carousel-control-prev, .carousel-control-next {
    opacity:1;
    padding:0px;
    margin-top:-20px;
}

.carousel-control-prev, .carousel-control-next {
    background:url('../images/carousel-next.svg') center center no-repeat #0F194E;
    width:40px;
    height:40px;
    color:#fff;
    top:50%;
    border-radius:50%;
    margin-top:-20px;
}
 .carousel-control-prev {
    background:url('../images/carousel-prev.svg') center center no-repeat #0F194E !important;
}

.filters select {
  background:url('../images/select-drop.svg') center right 12px no-repeat transparent;
  font-size:16px;
  font-family:"Cairo",sans-serif;
  border:0px;
  -webkit-appearance:none;
  -moz-appearance:none;
  appearance:none;
  color:#fff;
  border-bottom:2px solid rgba(255,255,255,0.2);
  padding:8px 86px 8px 12px;
  margin-right:12px;
}

.filters select:hover,
.filters select:focus {
  border-bottom:2px solid rgba(255,255,255,0.4);
  cursor:pointer;
}

.filters select option {
  color:var(--body);
}

.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 44px 0px 24px;
    text-align: left;
}

.border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.faq-block:nth-last-of-type(1) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mw-860 {
  max-width:860px;
  margin:0px auto;
}

.height-16 {
  height:16px;
}

.faq-question i {
  color:#fff;
}

#network-logos .col {
  line-height:48px;
}

#network-logos .col img {
  vertical-align: middle;
  max-width:100%;
}

.core-block {
    position: relative;
    padding-left: 80px;
    padding-top: 6px;
}

.core-block .value-number {
    position: absolute;
    top: 0;
    left: 0;
    width: 68px;
    text-align: center;
}
.core-block .value-number h2 {
  font-size:54px;
}

#core-values {
  padding-top:140px;
}

.explore-link {
    border-left: 2px solid rgba(255,255,255,0.2);
    padding: 20px 0px 20px 32px;
    cursor: pointer;
    display:block;
    color:var(--text);
}

.explore-link:hover {
    border-color: var(--teal);
}
.explore-link:hover {
    padding-left: 34px;
}

.explore-link:hover .fa-arrow-right-long {
    transform: rotate(-45deg);
    transition: all ease-in-out 0.25s;
}

.legal-tabs li {
    float: left;
}


.legal-tabs li.active a {
    background: var(--teal);
    border: 2px solid var(--teal);
    color: #fff;
    font-weight: 600;
}

.legal-tabs li a {
    background: rgba(255,255,255,0.1);
    border: 2px solid transparent;
    color: #fff;
    display: block;
    font-size: 16px;
    height: 54px;
    line-height: 50px;
    padding: 0 28px;
    border-right:2px solid var(--body);
}

.legal-tabs li a:hover {
    background: rgba(255,255,255,0.12);
    color:var(--teal);
}

#legal-page .container {
    max-width: 960px;
}

#legal-page h4 {
  padding-bottom:8px;
}

#network-rated a:hover i {
  padding-left:4px;
  transition: all ease-in-out 0.25s;
}

.no-sale .hide-sale {
  display:none;
}

@media (min-width: 1921px) {
    .wavey-bg:before {
      top: -112px;
      height: 115px;
    background-size: 2560px;
    }
    .wavey-bg:after {
      bottom: -92px;
      height: 92px;
    background-size: 2560px;
    }

    .red-wavey-bg {
      background-size:2560px;
          padding: 0px 0px 208px 0px;
    }
    
    .red-wavey-bg:before {
      top: -200px;
      height: 200px;
      
    background-size: 2560px;
    }
}

@media (min-width:1240px) and (max-width:1919px) {
  

.red-wavey-bg:before {
    position: absolute;
    background-size:unset;
}

}


.cloud .server-specs li {
  width:14.285% !important;
}


    .cookie-popup {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: #fff;
        color: var(--body);
        padding: 15px;
        border-radius: 8px;
    display: none;
        align-items: center;
        gap: 10px;
        z-index: 1005;
    }
    .cookie-popup button {
        background: var(--green);
        color: white;
        border: none;
        padding: 8px 15px;
        cursor: pointer;
        border-radius: 5px;
        display:inline-block;
        margin-left:10px;
    }
    .cookie-popup p {
        display:inline-block;
      }
    .cookie-popup button:hover {
      background:var(--green-hover);
    }
    .cookie-popup p {
      padding-bottom:0px;
      line-height:32px;
    }

        #cookie-popup.hidden {
            display: none !important;
        }

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

    #cloud-pricing .filters {
      display:table;
      margin:0px auto;
    }

    .filters select {
      height:48px;
    }

    .out-of-stock {
      opacity:0.5;
      cursor:not-allowed;
    }

    .out-of-stock .button.red:hover {
      background:var(--red);
    }

.graph-container {
    display: flex;
    align-items: center;
    padding: 6px 12px;
    border-left: 4px solid #4ade80; /* mint accent */
    border-radius: 0 6px 6px 0;
    background: #1f2230;
    gap: 10px;
    max-height: 50px;
    max-width: 150px;
}

.ifix {
    width: 1em;
    height: auto;
    vertical-align: middle;
}

/* Put this in your main stylesheet */
.svg-white {
    filter: brightness(0) invert(1);
}

#dashboard-showcase {
    color: #ffffff;
    position: relative;
}

#dashboard-showcase h2 {
    color: #ffffff;
}

#dashboard-showcase p {
    color: #ced4da;
}

.dashboard-img-container {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    max-height: 450px;
}

.dashboard-img-container img {
    width: 100%;
}

.text-teal {
    color: #00e5b6;
}

.button-teal {
    background-color: #00e5b6;
    color: #1e2430;
    border: none;
}

.button-teal:hover {
    background-color: #10b8c7;
    color: #ffffff;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #ced4da;
}


/* Modal Styles - Matches PipeHost theme */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.7) translateY(50px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 25px 30px;
    border-radius: 12px 12px 0 0;
    position: relative;
    border-bottom: 1px solid #444;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.server-modal-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cpu-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.server-modal-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.deployment-badge {
    background: rgba(26, 188, 156, 0.2);
    color: #1abc9c;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(26, 188, 156, 0.3);
}

.modal-body {
    padding: 30px;
    background: #1a1a1a;
    color: #e0e0e0;
}

.modal-loading, .modal-error {
    text-align: center;
    padding: 40px;
    color: #999;
}

.modal-loading i {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1abc9c;
}

.modal-error {
    color: #e74c3c;
}

.modal-error i {
    font-size: 40px;
    margin-bottom: 15px;
}

.location-section {
    background: #252525;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin-bottom: 25px;
    border-left: 4px solid #1abc9c;
}

.location-section h3 {
    color: #1abc9c;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.location-details {
    color: #ccc;
    font-size: 15px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.spec-section {
    background: #252525;
    border: 1px solid #333;
    border-radius: 10px;
    padding: 20px;
}

.spec-section h3 {
    color: #1abc9c;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #333;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 500;
    color: #999;
    font-size: 13px;
}

.spec-value {
    font-weight: 600;
    color: #e0e0e0;
    font-size: 14px;
}

.pricing-section {
    background: linear-gradient(135deg, #1abc9c, #16a085);
    color: white;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    margin-top: 20px;
}

.pricing-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.price-display {
    font-size: 40px;
    font-weight: 700;
    margin: 15px 0;
}

.price-currency {
    font-size: 28px;
    vertical-align: top;
}

.price-period {
    font-size: 16px;
    opacity: 0.8;
}

.modal-order-button {
    background: white;
    color: #1abc9c;
    border: none;
    padding: 15px 35px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-top: 15px;
    text-decoration: none;
    display: inline-block;
    width: auto;
    min-width: 200px;
}

.modal-order-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #16a085;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        margin: 10px;
    }

    .specs-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .modal-header {
        padding: 20px;
    }

    .modal-body {
        padding: 20px;
    }

    .server-modal-title {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .server-modal-name {
        font-size: 20px;
    }

    .price-display {
        font-size: 32px;
    }
}

.cpu-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0; /* Remove all padding */
}

.cpu-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This fills completely */
    border-radius: 8px; /* Same as container */
}
/* Pricing Switch Styles */
.pricing-switch-container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.pricing-switch {
    display: flex;
    background-color: #212635;
    border-radius: 8px;
    padding: 5px;
    gap: 5px;
}

.pricing-period-btn {
    background-color: transparent;
    border: none;
    color: var(--text);
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing-period-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.pricing-period-btn.active {
    background-color: var(--teal);
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* VPS Scroll Container with CSS Scroll Snap */
.vps-scroll-container {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    scroll-snap-type: none !important;
    scroll-behavior: auto !important;
    gap: 20px;
    padding: 10px 0;
    margin: 0 -15px; /* Offset container padding */
    padding-left: 15px;
    padding-right: 15px;
}

/* Disable scroll snap during dragging */
.vps-scroll-container.dragging {
    scroll-snap-type: none !important;
    scroll-behavior: auto !important;
}

.vps-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.vps-scroll-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.vps-scroll-container::-webkit-scrollbar-thumb {
    background: var(--teal);
    border-radius: 4px;
}

.vps-scroll-container::-webkit-scrollbar-thumb:hover {
    background: var(--teal-hover);
}

/* VPS Card Horizontal Layout */
.vps-scroll-container .vps-card {
    flex: 0 0 auto;
    width: 320px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

/* Responsive card widths */
@media (max-width: 768px) {
    .vps-scroll-container .vps-card {
        width: 280px;
    }
    
    .vps-scroll-container {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .vps-scroll-container .vps-card {
        width: 260px;
    }
    
    .vps-scroll-container {
        gap: 12px;
        margin: 0 -10px;
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Remove the bootstrap column padding for horizontal scroll */
.vps-scroll-container .vps-card {
    padding: 0;
    margin-bottom: 0;
}

.vps-scroll-container .vps-card .sbox {
    margin-bottom: 0;
}

/* Ensure smooth scrolling on touch devices */
.vps-scroll-container {
    -webkit-overflow-scrolling: touch;
}

/* Optional: Add fade effect at edges to indicate scrollable content */
.vps-scroll-container::before,
.vps-scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30px;
    pointer-events: none;
    z-index: 1;
}

.vps-scroll-container::before {
    left: 0;
    background: linear-gradient(to right, var(--body), transparent);
}

.vps-scroll-container::after {
    right: 0;
    background: linear-gradient(to left, var(--body), transparent);
}

/* Position the scroll container relatively for fade effects */
.vps-scroll-container {
    position: relative;
}

/* Hide fade effects when not needed */
@media (max-width: 768px) {
    .vps-scroll-container::before,
    .vps-scroll-container::after {
        display: none;
    }
}
