:root {
    --blue: #1265E2;
    --blue-hover: #1e74f6;
  
    --red:#E21231;
    --red-hover:#f81b3c;
  
    --green:#3BC35D;
    --green-hover:#48df6e;
  
    --header:#fff;
    --text:#C9C9C9;
    --strong:#ffffff;
    --body:#161616;
  }
  
  
  
  
  
  /* 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;
  }
  
  .entry-content ul, .entry-content ol {
    padding-left:25px;
    list-style-type:disc;

  }

  .entry-content ul li, .entry-content ol li {
    padding:4px 0px;
  }

  .entry-content li::marker {
    color:var(--red);
  }

  /* End of Eric Meyer's CSS Reset */
  
  article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
      display: block;
  }
  
  
  body {
      font-family: 'Source Sans', 'Ubuntu', Verdana, Arial, Helvetica, sans-serif;
      font-size: 14px;
      line-height: 24px;
      color:var(--text);
      font-weight: 300;
      background:var(--body);
  }
  
  .wrapper {
      width:100%;
      max-width: 1280px;
      margin: 0 auto;
  }
  
  
  
  h1,
  h2,
  h3,
  h4,
  h5 {
      color: var(--header);
      font-weight: 700;
      font-family:"Ubuntu",sans-serif;
  }
  
  img {
      line-height: 1;
      vertical-align: bottom;
  }
  
  h1 {
      font-size: 56px;
      line-height: 64px;
  }
  
  
  a {
      color: var(--red);
      font-weight: 500;
      text-decoration: none;
  }
  
  a:hover,
  a:active,
  a:focus {
      color: var(--red-hover);
      text-decoration: none;
  }

  .button:focus {
    transform:skew(-12.5deg) !important;
  }
  
  
  
  
  .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, 
  .config-tabs:after {
      visibility: hidden;
      display: block;
      font-size: 0;
      content: " ";
      clear: both;
      height: 0
  }
  
  .container, [class*=ct-container] {
      max-width: 1280px;
      width: 100%;
      margin: 0 auto;    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
  }
  
  strong {
      color: var(--strong);
      font-weight: 500;
  }
  
  *:hover {
      -webkit-transition: all .2s ease-in-out;
      -moz-transition: all .2s ease-in-out;
      transition: all .2s ease-in-out;
  }
  
  
  
  h2 {
      font-size: 34px;
      line-height: 42px;
      padding-bottom: 6px;
  }
  
  h3 {
      font-size: 24px;
      line-height: 30px;
  }
  
  h4 {
      font-size: 20px;
      line-height: 30px;
  }
  
  h5 {
      font-size: 18px;
      line-height: 24px;
  }
  
  .flex-grid .title {
      padding-left: 0px;
      padding-right: 0px;
  }
  
  .button {
      padding: 0px 24px;
      display: inline-block;
      height: 44px;
      line-height: 42px;
      color: #fff !important;
      font-size: 15px;
      font-weight: 600;
      transform: skew(-12.5deg);
background: var(--red);
border: 1px solid rgba(255, 255, 255, 0.1);
box-shadow: inset 0px -2px 3px rgba(0, 0, 0, 0.14);
border-radius: 6px;
  }

  .button span {
    transform:skew(12.5deg);
    display:block;
  }

  .button.md {
    height:54px;
    font-size:17px;
    line-height:52px;
  }

  .top-bar {
    background:#0B0B0B;
    padding:8px 0px;
    font-size:13px;
  }

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

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

  .label {
    transform: skew(-12.5deg);
background: var(--red);

box-shadow: inset 0px -2px 3px rgba(0, 0, 0, 0.14);
border-radius: 4px;
display:inline-block;
height:18px;
font-size:10px;
color:#fff;
font-weight:600;
padding:0px 6px;
line-height:18px;
  }

  .label span {
    display:block;
    transform: skew(12.5deg);
  }
  
.label.dark {
    background:var(--body);
}

  .label.blue {
    background:var(--blue);
    color:#fff;
  }
  .label.green {
    background:var(--green);
    color:#fff;
  }

  .label.red {
    color:#fff;
  }

  .yellow {color:#FFDD2F;}

  .label.yellow {
    background:#FFDD2F;
    color:var(--body);
  }
  
  .button:hover {
      color: #fff !important;
      text-decoration: none;
      background: var(--red-hover);
  }
  
  .button:focus {
      transform: scale(0.97);
      outline: none;
  }
  
  .button.outline {
    box-shadow:unset;
    border:1px solid #fff;
    background:unset;
  }

  .button.outline:hover {
    background:#fff;
    color:var(--body) !important;
  }
  
  
  .button.green {
    background:var(--green);
  }
  
  .button.green:hover {
    background:var(--green-hover);
  }
  
  .button.red {
    background:var(--red);
  }
  
  .button.red:hover {
    background:var(--red-hover);
  }
  
  .button.default {
    background:#4C4C4C;
  }
  
  .button.default:hover {
    background:#575757;
  }
  
  .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:20px 0px;
  }
  
  .header a {
    color:#fff;
    font-style:normal;
  }
  
  .header a:hover {
    color:var(--red);
  }
  
  .main-nav li {
    float:left;
    line-height:48px;
    padding-top:3px;
    font-size:15px;
  }
  
  .main-nav li a, .main-nav li a.button {
    font-weight:500;
    color:#1C1D26;
  }
  
  .main-nav li a:hover {
    color:var(--blue);
  }
  

  .font-10 {font-size:9px;line-height:20px;}
.font-11 {font-size:10px;line-height:20px;}
.font-12 {font-size:11px;line-height:20px;}
.font-13 {font-size:12px;line-height:22px;}
.font-14 {font-size:13px;line-height:22px;}
.font-15 {font-size:14px;line-height:24px;}
.font-16 {font-size:15px;line-height:24px;}
.font-18 {font-size:17px;line-height:26px;}
.font-20 {font-size:19px;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;}

.main-nav {
    line-height:48px;
}

.main-nav .button {
    height:44px;
    line-height:42px;
}

.hero-label {
    color:#fff;
    font-weight:500;
background: rgba(242, 36, 36, 0.25);
border: 1px solid rgba(242, 36, 36, 0.5);
border-radius: 32px;
display:inline-block;
height:30px;
line-height:28px;
padding:0px 15px;
font-size:13px;

}

.hero {
    font-size:19px;
    color:#fff;
    line-height:30px;
    padding-top:88px;
}

.trustpilot-rated {
     font-size:16px;
}

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

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

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

.service-tabs {
    display:table;
    padding:10px 24px 10px 0px;
    transform: skew(-12.5deg);
background: #1D1D1D;
border: 1px solid rgba(255, 255, 255, 0.06);
box-shadow: 6px 6px 16px rgba(0, 0, 0, 0.13), inset 0px 0px 12px rgba(255, 255, 255, 0.07);
border-radius: 14px;
margin:0px auto;

}

.service-tabs ul {
    transform: skew(12.5deg);
}

.service-tabs li {
    display:block;
    float:left;
    margin:0px 4px;
    text-align:center;
}

.service-tabs li a {
    display:block;
    padding:16px 36px;
    line-height:18px;
    color:var(--text);
    border-radius:8px;
    transform: skew(-12.5deg);
}

.service-tabs li a span {
    transform: skew(12.5deg);
    display:block;
    margin-left:-17.5%;
}
.service-tabs li a span i {
    margin-left:12.5%;
}

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

.service-tabs li a i {
    display:block;
    font-size:32px;
    margin-bottom:15px;
}

.service-tabs li .active, .service-tabs li .active:hover {
    background:var(--red);
    color:#fff;
}


.tab-pane {
    display:none;
}

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



.feature-tab-nav {
    margin-right:30px;
}

.feature-tab-nav li {
    padding:4px;
    border-radius:10px;
    margin-bottom:6px;
    transform: skew(-12.5deg);
}

.feature-tab-nav li:hover {
    display:block;
    background: linear-gradient(90deg, #202020 0%, rgba(22, 22, 22, 0) 100%);
}

.feature-tab-nav li a {
    color:var(--text);
    font-weight:400;
    border-radius:8px;
    line-height:36px;
    padding:4px 16px;
    display:block;
    overflow:hidden;
}


.feature-tab-nav li a:hover, 
.feature-tab-nav li:hover a {
    color:#fff;
}

.feature-tab-nav li a span {
    transform: skew(12.5deg);
    display:block;
}

.feature-tab-nav li a i {
    width:18px;
    text-align:center;
    margin-right:8px;
}

.feature-tab-nav .active {
    background: var(--red);
    color:#fff;
}

.feature-tab-nav .active  {
color:#fff;
font-weight:500;
position: relative;
}
.feature-tab-nav li.active a:before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    content: " ";
    width: 0%; /* Start at 0% */
    border-radius: 48px;
    background: linear-gradient(90deg, #1366FF 27.59%, #84D0FF 109.64%);
    z-index: 1;
    animation: growWidth 8s linear forwards; /* Add animation */
}

@keyframes growWidth {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}


.feature-tab-nav li.active a span {
    z-index:1000;
    position: relative;
}

.icon-bg {

background: #1D1D1D;
border: 1px solid rgba(255, 255, 255, 0.06);
box-shadow: 12px 12px 32px rgba(0, 0, 0, 0.1), inset 0px 0px 12px rgba(255, 255, 255, 0.07);
border-radius: 50%;
display:block;
width:280px;
height:280px;
line-height:280px;
text-align:center;

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

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

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

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

.white {
    color:#fff;
}

.red-bg-reviews {
    background:var(--red);
    max-width:980px;
    margin:0px auto;
    padding:0px 60px;
    text-align:center;
    transform: skew(-12.5deg);
    color:#fff;
    border-radius:16px;
}

.red-bg-reviews .carousel-item {
    padding:60px 12.5%;
}

.skewfix {
    transform: skew(12.5deg);
}

.red-bg-reviews p {
    position: relative;
}
.red-bg-reviews p:before {
    position: absolute;
    top:0;
    left:-40px;
    content:" ";
    display:block;
    width:46px;
    height:32px;
    background:url(../images/quote-start.svg) center center no-repeat;
}
.red-bg-reviews p:after {
    position: absolute;
    bottom:0;
    right:-40px;
    content:" ";
    display:block;
    width:46px;
    height:32px;
    background:url(../images/quote-end.svg) center center no-repeat;
}

.network-stats .row {
    padding:0px;
    margin:0px;
}

.border-right {border-right:1px solid rgba(255,255,255,0.15);}
.border-left {border-left:1px solid rgba(255,255,255,0.15);}
.border-top {border-top:1px solid rgba(255,255,255,0.15);}
.border-bottom {border-bottom:1px solid rgba(255,255,255,0.15);}


.network-stats .border-left {
    border-left:3px solid rgba(255,255,255,0.2);
    padding:15px 30px;
    line-height:22px;
}


.light-bg {/* image */
    background: #1d1d1db2;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-right:0px;
    border-left:0px;
    box-shadow:inset 0px 0px 12px rgba(255, 255, 255, 0.02);
}


.blog-box img {
    border-radius:8px;
}

.red-gradient-bg {
background: linear-gradient(270deg, #E21231 0%, #161616 88.89%);
}

#cta {
    padding:64px 0px;
}

.nobg {
    background:transparent;
    border:1px solid transparent;
    box-shadow:unset;
}

.nobg:hover {
    background:rgba(255,255,255,0.02);
    color:var(--red-hover) !important;
}

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

.footer {
    padding:100px 0px;
}

.footer ul li a {
    color:var(--text);
    font-weight:300;
}

.footer ul li a:hover{
    color:var(--red-hover) !important;
}

.footer strong {
    color:#fff;
    font-weight:600;
}

.footer-blog a {
    color:var(--red) !important;
    font-weight:500 !important;
}

.footer-blog li {
    padding:13.5px 10px;
    border-bottom:1px solid rgba(255,255,255,0.15);
}

.copyright a {
    color:var(--text);
    font-weight:300;
}

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

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

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

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

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

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


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

.tabs-list {
    display:table;
    margin:0px auto;
}

.tabs-list li {
    float:left;
    margin:0px 5px;
}

.tabs-list li a {
    display:block;
    background: #1D1D1D;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 6px 6px 16px rgba(0, 0, 0, 0.13), inset 0px 0px 12px rgba(255, 255, 255, 0.07);
    border-radius: 6px;
    padding:7.5px 15px;
    transform: skew(-12.5deg);
    line-height:20px;
    color:var(--text);
}

.tabs-list li a:hover {
    color:#fff;
    background: #242424;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 6px 6px 16px rgba(0, 0, 0, 0.13), inset 0px 0px 12px rgba(255, 255, 255, 0.07);
}

.tabs-list li a img {
    padding-bottom:2px;
}

.tabs-list li a span {
    display:block;
    transform: skew(12.5deg);
}

.tabs-list li .active, .tabs-list li .active:hover {
    background:var(--red);
    color:#fff;
}

.plan-box {
    border-radius:16px;
    padding:5px;
}

.inner-box {
position: relative;
background: linear-gradient(180deg, rgb(37, 37, 37,0.5) 0%, rgba(22, 22, 22, 0) 100%);
border-radius: 14px;
padding:24px;

}

.plan-icon {
    position: absolute;
    top:24px;
    right:24px;
}

.plan-title {
    line-height:28px;
    padding:12px 0px;
}

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

.config-tabs ul {
    display:table;
    margin:0px auto;
}

.config-tabs ul li {
    float:left;
}

.config-tabs ul li a {
    padding:8px 28px;
    display:block;
    color:var(--text);
    opacity:1;
    border-bottom:2px solid rgba(255,255,255,0.5);
}

.config-tabs ul li a:hover {
    border-bottom:2px solid rgba(255,255,255,1);
    color:#fff;
    opacity:1;
}

.config-tabs .active, .config-tabs .active:hover {
    border-bottom:2px solid var(--red);
    color:#fff;
    color:var(--red);
    opacity:1;
}

.select {
   display:block;
   width:100%;
   margin-top:10px;
   border:1px solid rgba(255,255,255,0.15);
   padding:0px 15px;
   height:52px;
   background:transparent;
   font-family:"Source Sans",sans-serif;
   font-size:15px;
   color:#fff;
   border-radius:6px;
   -webkit-appearance:none;
   -moz-appearance:none;
   appearance:none;
   background:url('../images/select.svg') center right 20px no-repeat; 
}

.input {
   display:block !important;
   width:100% !important;
   margin-top:10px !important;
   border:1px solid rgba(255,255,255,0.15) !important;
   padding:0px 15px !important;
   height:52px !important;
   background:transparent !important;
   font-family:"Source Sans",sans-serif !important;
   font-size:15px !important;
   color:#fff !important;
   border-radius:6px !important;
   -webkit-appearance:none !important;
   -moz-appearance:none !important;
   appearance:none !important;
   background:#242424 !important;
}

.textarea {
   display:block;
   width:100%;
   margin-top:10px;
   border:1px solid rgba(255,255,255,0.15);
   padding:15px 15px;
   min-height:180px;
   background:transparent;
   font-family:"Source Sans",sans-serif;
   font-size:15px;
   color:#fff;
   border-radius:6px;
   -webkit-appearance:none;
   -moz-appearance:none;
   appearance:none;
   background:#242424;
}

.custom-vps {
    
    position: relative;
    background: linear-gradient(180deg, rgb(37, 37, 37, 0.5) 0%, rgba(22, 22, 22, 0) 100%);
    border-radius: 14px;
    padding: 24px;
}

.range-labels li {
    float:left;
    width:16.6667%;
    font-size:13px;
    opacity:0.5;
}

.range-labels li:hover {
    opacity:1;
}

.range-labels .acitve {
    color:var(--red);
    opacity:1;
}

.box {
    padding:24px;
    border-radius:12px;
}

.ifix {
    padding-bottom:2px;
}

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

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

.red-bg {
    background:var(--red);
    color:rgba(255,255,255,0.9); 
}

.red-bg a {
    color:#fff;
    border-bottom:1.5px solid transparent;
}

.red-bg a:hover {
    border-bottom:1.5px solid #fff;
    color:#fff;
}

.font-56 {
    font-size:56px;
    line-height:64px;
}

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

.icon-24 {
    height:24px;
}

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

.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;
}

.contact-box {
    max-width:860px;
    margin:0px auto;
    padding:44px 48px;
    border-radius:16px;
}

.label-block {
    margin-bottom:30px;
}

.contact-box label {
    color:#fff;
    font-weight:500;
}

.font-72 {
    font-size:72px;
    line-height:80px;
}

.font-88 {
    font-size:88px;
    line-height:96px;
}

.affiliate-review {
    background:transparent;
    text-align:left;
    padding-top:0px;
    padding-bottom:0px;
}

.affiliate-review p:before {
    background: url(../images/quote-open-red.svg) center center no-repeat;
    z-index:-1;
    left: -54px;
}

.affiliate-review p:after {
    display:none;
}

.titleleft {
    text-align:left;
}

.titleleft p {
    margin:0px;
}

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

.abs-left {
    position: absolute;
    top:0;
    left:0;
}
.italic {
    font-style:italic;
}

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


.check-list-fix li {
    position: relative;
    padding-left:30px;
    margin-top:25px;
}

.check-list-fix li:before {
    background:url('../images/green-circle.svg') top left no-repeat;
    position: absolute;
    top:2px;
    left:0;
    content:" ";
    display:block;
    width:18px;
    height:18px;
}

.reseller-icon-bg {
    padding:24px;
    background: #1d1d1db2;
    transform:skew(-12.5deg);
    display:inline-block;
    border-radius:12px;
}

.reseller-icon-bg img {
    transform:skew(12.5deg);
}

.pricing-table {
    width:100%;
    display:table;
}

.pricing-table thead{
border-top:1px solid rgba(255,255,255,0.1);
background: linear-gradient(180deg, #252525 37.96%, rgba(22, 22, 22, 0) 153.7%);
}

.pricing-table th {
    padding:12.5px 15px;
    text-align:left;
    color:#fff;
    font-weight:500;
}

.pricing-table tr:hover td {
    background: linear-gradient(180deg, #252525 37.96%, rgba(22, 22, 22, 0) 153.7%);
    transition: unset;
}

.pricing-table td {
    padding:12.5px 15px;
    text-align:left;
    border-top:1px solid rgba(255,255,255,0.1);
}

.pricing-table tr:nth-last-child(1) td {
    border-bottom:1px solid rgba(255,255,255,0.1);
}

.pricing-table th:nth-last-child(1), .pricing-table td:nth-last-child(1) {
    text-align:right;
}



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

.carousel-control-prev, .carousel-control-next {
    background:#fff;
    width:50px;
    height:50px;
    color:#fff;
    top:50%;
    border-radius:6px;
    transform:skew(-12.5deg);
    margin-top:-20px;
    right:-85px;
}
 .carousel-control-prev {
    right:0px;
    left:-85px;
}

.carousel-control-prev span {
    background:url('../images/carousel-prev.svg') center center no-repeat;
    width:20px;
    height:12px;
}

.carousel-control-next span {
    background:url('../images/carousel-next.svg') center center no-repeat;
    width:20px;
    height:12px;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
    background:#fff2f2;
    opacity:1;
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    position: relative;
  }
  
  /* WebKit browsers */
  input[type="range"]::-webkit-slider-runnable-track {
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.15);
  }
  
  input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--red);
    border-radius: 50%;
    cursor: pointer;
    margin-top: -6px;
    box-shadow: 0 0 5px var(--red);
    position: relative;
    z-index: 3;
  }
  
  /* This creates the red "active" track before the thumb */
  input[type="range"]::-webkit-slider-runnable-track {
    background: linear-gradient(
      to right,
      var(--red) 0%,
      var(--red) calc((var(--val, 0) / 100) * 100%),
      rgba(255, 255, 255, 0.15) calc((var(--val, 0) / 100) * 100%),
      rgba(255, 255, 255, 0.15) 100%
    );
  }
  
  /* We'll update --val with JS for the slider value % */
  
  /* Firefox */
  input[type="range"]::-moz-range-track {
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.15);
  }
  
  input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--red);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 5px var(--red);
    position: relative;
    z-index: 3;
  }
  
  /* Firefox active track is separate */
  input[type="range"]::-moz-range-progress {
    background: var(--red);
    height: 8px;
    border-radius: 4px;
    position: relative;
    z-index: 2;
  }
  
  
  .toggle-inner { display: none; }
  .toggle-header { cursor: pointer; }
  .toggle-header i.far.fa-chevron-down {
    transition: transform 0.3s ease;
  }
  .toggle-header.active i.far.fa-chevron-down {
    transform: rotate(180deg);
  }

  
  /* Tooltip container */
  .tooltip-range {
    position: absolute;
    top: -35px;
    left: 0;
    text-align:center;
    background: var(--red, #e00);
    color: white;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 4px;
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    transition: left 0.1s ease;
    z-index: 10;
  }

  .tooltip-range::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: var(--red, #e00) transparent transparent transparent;
  }

  /* Position relative wrapper for range and tooltip */
  .range-wrapper {
    position: relative;
    width: 100%;
  }



.main-nav, .main-nav ul {
    list-style-type:none !important;
    padding-inline-start: 0px;
      margin-bottom: 0px;
  }
  
  .main-nav li {
    position: relative;
    float:left;
  }

  
  .main-nav li a {
    font-weight:500;
    color:#fff;
    display:block;
    position: relative;
    line-height:44px;
  }
  
  .main-nav li a:hover, .main-nav li a.active {
    color:#fff;
    text-shadow: 0 0 11px var(--red);
  }
  
  .main-nav li .button:hover {
    text-shadow:unset;
  }
  
  
  .main-nav li a:focus {
    text-decoration: none;
  }
  
  .dropdown-toggle i {
    margin-top:13px;
    margin-left:6px;
    float:right;
    font-size:13px;
  }
  
  .main-nav li a.active {
      text-shadow: 0 0 11px rgb(236 130 255 / 80%);
  }
  
  .main-nav .dropdown-menu {
    padding:8px 12px;
    border-radius:16px;
      right: 0;
      transform: translateX(25%);
      left: unset;
      min-width: 180px;
      font-size: 15px;
      top:52px;
      
    background: #282828;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 6px 6px 16px rgba(0, 0, 0, 0.13), inset 0px 0px 12px rgba(255, 255, 255, 0.07);
  }
  
  
  .main-nav .dropdown-menu:before {
    position: absolute;
    left: unset;
    right:22.85%;
    transform: translateX(-50%);
    top: -8px;
    width: 0;
    height: 0;
    content: "";
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #2E2E2E;
    border-radius:2px;
  }
  
  
  .main-nav .dropdown-menu a {
    font-size: 11px;
    border-radius: 8px;
    padding: 14px 16px;
    margin: 2px 0px;
    font-weight: 400;
    color:var(--text);
    text-transform:unset;
    letter-spacing: -0px;
    line-height:20px;
    display:block;
    height:76px;
    border:1px solid transparent;
  }
  
  .main-nav .dropdown-menu a h4 {
    color:#fff;
    font-size:16px;
    line-height:20px;
    padding-top:4px;
    font-weight:500;
  }

  
  .main-nav .dropdown-menu a i {
    font-size:44px;
    line-height:48px;
    width:48px;
    height:48px;
    text-align:center;
    color:var(--red);
  }

  .main-nav .dropdown-menu a i.fa-clouds,
  .main-nav .dropdown-menu a i.fa-gamepad-alt,
  .main-nav .dropdown-menu a i.fa-handshake-alt,
  .main-nav .dropdown-menu a i.fa-money-bill-wave-alt {
    font-size:38px;
  }
  
  .main-nav .dropdown-menu  li {
      width: 50%;
      float: left;
  }
  
  
  .main-nav .dropdown-menu a:hover {
    background:rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.15);
      color:#fff;
      text-shadow:unset;
  }
  
  
  .main-nav .dropdown-menu a:after {
      visibility: hidden;
      display: block;
      font-size: 0;
      content: " ";
      clear: both;
      height: 0
    }
  
  .main-nav .mr-4 {
      margin-right: 2rem !important;
  }
  
  .nav-icon {
      width: 48px;
      vertical-align: middle;
  }
  
  #products-drop {
    min-width:720px !important;
  }
  #company-drop {
    min-width:360px !important;
  }
  
  #company-drop li {
    width:100% !important;
    float:none !important
  }
  
  #company-drop:before {
    right:21% !important;
  }

  
  #partners-drop {
    min-width:360px !important;
  }
  
  #partners-drop li {
    width:100% !important;
    float:none !important
  }
  
  #partners-drop:before {
    right:21% !important;
  }

  .main-nav li a, .main-nav li a.button {
    font-weight:500;
  }


  
  .map {
    background:url('../images/home-map.svg');
    width:845px;
    height:425px;
    position: relative;
  }

  
.pin {
    position: absolute;
    width: 12px;
    height: 12px;
    background: red;
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
    background: #640000;
    border: 1px solid #E21231;
    box-shadow: 0px 0px 8px rgba(226, 18, 49, 0.5);
  }
  
  .tooltip {
    position: absolute;
    min-width: 150px;
    text-align: center;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: var(--body);
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 13px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    line-height:24px;
    font-weight:700;
    white-space: nowrap;
  }
  
.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #fff;
  }
  .pin:hover .tooltip {
    opacity: 1;
  }

  .tooltip img {
    height:20px;
    vertical-align: middle;
}

.network-stats .col-lg-3:hover.border-left {
    border-color:var(--red);
}

 a:hover .fa-long-arrow-right {
    padding-left:3px;
    transition:all ease-in-out 0.15s;
}

.mw-860 {
    max-width:860px;
}

.affiliate-review {
    padding:0px 12.5%;
}

.faq-block {
    margin:12px 0px;
    padding:12px 24px 12px 20px;
    position: relative;
    border:1px solid transparent;
}

.faq-question {
    padding:12px 0px;
    cursor: pointer;
}

.faq-question {
  padding-right:40px;
}

.faq-block.active, .faq-block:hover {
    border-radius:12px;
    background: #1d1d1db2;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: inset 0px 0px 12px rgba(255, 255, 255, 0.02);
}

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

.faq-question i {
    position: absolute;
    top:26px;
    right:24px;
    color:var(--green);
    font-size:20px;
}

.faq-question .fa-minus-circle {
    color:var(--red);
}

#cloud-testimonials .carousel-control-next,
#cloud-testimonials .carousel-control-prev {
    background:rgba(0,0,0,0.25);
}
#cloud-testimonials .carousel-control-next:hover,
#cloud-testimonials .carousel-control-prev:hover {
    background:rgba(0,0,0,0.35);
}


#cloud-testimonials .carousel-control-prev span {
    background: url(../images/carousel-prev-white.svg) center center no-repeat;
}

#cloud-testimonials .carousel-control-next span {
    background: url(../images/carousel-next-white.svg) center center no-repeat;
}

.carousel-control-next.relative,
.carousel-control-prev.relative {
    top:unset;
    left:unset;
    right:unset;
    position: relative;
    margin-top:0px;
    width:40px;
    height:40px;
    line-height:40px;
}

.carousel-control-next.relative span,
.carousel-control-prev.relative span {
    background-size:85%;
}

.toggle {
    border-top:1px solid rgba(255,255,255,0.2);
}

.toggle-header {
    padding:16px 12px;
}

.toggle-inner {padding:0px 12px 24px 12px;}

.toggle:nth-last-of-type(1) {
    border-bottom:1px solid rgba(255,255,255,0.2);
}

.disabled, .disabled:hover, .disabled:focus {
    opacity:0.4;
    cursor: not-allowed;
}


.plan-box:hover .inner-box {
    background: linear-gradient(180deg, rgb(37, 37, 37, 0.7) 0%, rgba(22, 22, 22, 0) 100%);
}

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


body, html {
    overflow-x:hidden;
  }

  
option {
    color:var(--body);
  }

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

  .service-img {
    height:340px;
  }

  .label.md {
    height:26px;
    line-height:26px;
    font-size:12px;
    padding:0px 12px;
    border-radius:6px;
  }

  #affiliate-earning .light-bg {
    background:#212121;
  }


  [data-cards=boxed] .entry-card, [data-cards=cover] .entry-card {
    
    background: #1d1d1db2 !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-right: 0px !important;
    border-left: 0px !important;
    box-shadow: inset 0px 0px 12px rgba(255, 255, 255, 0.02) !important;
    border-radius: 16px !important;
    position: relative;
  }

  

  [data-cards=boxed] .entry-card:before, [data-cards=cover] .entry-card:before {
    position: absolute;
    top:5px;
    left:5px;
    right:5px;
    bottom:5px;
    content:" ";
    display:block;
    
    background: linear-gradient(180deg, rgb(37, 37, 37,0.5) 0%, rgba(22, 22, 22, 0) 100%);
    border-radius: 14px;
    padding: 24px;
    z-index:1;
  }

  

  [data-cards=boxed] .entry-card *, [data-cards=cover] .entry-card * {
    z-index:1000;
  }


  [data-cards=boxed] .entry-card:hover:before, [data-cards=cover] .entry-card:hover:before {
    background:linear-gradient(180deg, rgb(37, 37, 37, 0.7) 0%, rgba(22, 22, 22, 0) 100%);
  }

  .entry-title a {
    color:#fff;
  }
p {
    padding-bottom:20px;
}

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

  [data-archive=default] .card-content>* {
    margin-block: 0 var(--card-element-spacing, 10px);
} 

.meta-categories a {
    color: var(--green) !important;
    font-size: 12px !important;
    line-height: 22px !important;
}
.meta-categories a:hover {
    text-decoration: underline;
    color: var(--green-hover) !important;
}
.entry-meta {
    color:#fff !important;
    font-size: 12px !important;
    line-height: 22px !important;
}

.entry-content a:hover {
    text-decoration: underline;
}

cite a {
    color:#fff;
}

.ct-comment-meta-data .comment-reply-link:hover {
    text-decoration: none;
}

.hero-section {
    text-align:center !important;
    font-size: 19px !important;
    color: #fff !important;
    line-height: 30px !important;
    padding-top: 28px !important;
    background:transparent !important;
}

[data-prefix="single_blog_post"] .entry-header .entry-meta, [data-prefix="single_blog_post"] .entry-header .meta-categories a {
    font-size:15px !important;
    text-transform: capitalize!important;
}

 [data-prefix="single_blog_post"] .entry-header .meta-categories a {
    color:var(--red) !important;
 }

 [data-prefix="single_blog_post"] .entry-header .meta-categories a:hover {
    color:var(--red-hover) !important;
 }

[class*=ct-container] {
    padding-bottom:88px;
}

.no-hover-ul:hover {
    text-decoration: unset;
}


.entry-card .ct-media-container img, .entry-card .ct-media-container picture,
.ct-related-posts .ct-media-container img, .ct-related-posts .ct-media-container picture {
    
    height: 164px !important;
}

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

.entry-meta {
    padding-left:0px !important;
}

.post-navigation .item-title {
    color:#fff !important;
}
.nav-item-next, .nav-item-prev { 
color:var(--green);
}

.nav-item-next:hover, .nav-item-prev:hover {
    text-decoration: none !important;
color:var(--green-hover);
}

[data-prefix="single_blog_post"] .ct-related-posts-container {
    
    background: rgba(29, 29, 29, 0.698) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-right: 0px !important;
    border-left: 0px !important;
    border-bottom: 0px !important;
    box-shadow: inset 0px 0px 12px rgba(255, 255, 255, 0.02) !important;
    margin-bottom:0px !Important;
}


[data-prefix="single_blog_post"] .ct-related-posts-container [class*=ct-container] {
    padding-bottom:0px !important;
}

.ct-related-posts .ct-module-title {
    padding-bottom:24px;
}

.ct-related-posts a {
    color:#fff !Important;
}

.ct-related-posts a:hover {
    color:var(--red) !Important;
}

.header a:hover {
    text-decoration: none;
}.card-content>* {
    margin-block: 0 var(--card-element-spacing, 20px);
}

[data-pagination=simple]>div .page-numbers:hover,
[data-pagination=simple] .page-numbers:not(.dots):hover, [data-pagination=next_prev] .page-numbers:not(.dots):hover,
.copyright a:hover {
    text-decoration: none;
}

section {
    padding:88px 0px;
}

.title {
	padding-bottom: 40px;
	text-align: center;
	margin-top: -6px;
}


.title p {
	font-size: 17px;
	color:#fff;
	font-weight:400;
	line-height: 28px;
	max-width: 680px;
	margin: 0 auto;
	padding-bottom: 0px;
	padding-top: 6px;
}

.blog section, .single section, .archive section, .author section {
    padding:0px;
}

.blog .hero {
    padding-top:88px;
}

.blog .footer, .single .footer, .archive .footer, .author .footer {
    display:none;
}