/* Variables */
:root {
  --hmaserv-orange: #E14F05;
  --hmaserv-gray: #191919;
  --hmaserv-paragraph: #686868;
  --hmaserv-header-bg: rgb(25, 25, 25, 0.81);
}

body {
  overflow-x: hidden;
}

* {
  outline-color: var(--hmaserv-orange) !important;
}

a,
a:hover {
  text-decoration: none !important;
}

section {
  padding: 50px 0;
}

section .title {
  font-size: 35px;
  font-family: 'Segoe UI';
  font-weight: 300;
  color: var(--hmaserv-gray);
  text-align: center;
}

section .title span {
  font-weight: 400;
  color: var(--hmaserv-orange);
}

.scrolling {
  bottom: -40px;
  opacity: 0;
  transition: all 0.3s;
  position: relative;
}

.slideUp {
  bottom: 0px;
  opacity: 1;
  transition: all 0.3s;
}

/* Embadded Fonts */

@font-face {
  font-family: 'Segoe UI';
  font-weight: 100;
  src: url(fonts/segoeuil.ttf);
}

@font-face {
  font-family: 'Segoe UI';
  font-weight: 200;
  src: url(fonts/segoeui.ttf);
}

@font-face {
  font-family: 'Segoe UI';
  font-weight: 300;
  src: url(fonts/seguisb.ttf);
}

@font-face {
  font-family: 'Segoe UI';
  font-weight: 400;
  src: url(fonts/segoeuib.ttf);
}

/* Home
---------------------------------------------------------------------------------------- */

/* Header */
header.home-header {
  height: 100vh;
  background-image: linear-gradient(rgba(26, 26, 26, 0.66),
      rgba(26, 26, 26, 0.66)), url(img/kvistholt-photography-oZPwn40zCK4-unsplash.png);
  background-position: center;
  background-size: cover;
  display: flow-root;
  position: relative;
}

header.home-header .floor {
  fill: var(--hmaserv-orange);
}

header.home-header svg {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}

.navbar {
  background-color: var(--hmaserv-header-bg);
  margin: 20px;
}

.navbar .navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
}

@media(min-width: 768px) {
  .navbar .sep {
    border-right: 2px solid #fff;
    height: 20px;
    margin: 0 10px;
  }
}

.navbar .navbar-nav .nav-link {
  color: #fff;
  font-size: 16px;
  font-family: 'Segoe UI';
  font-weight: 200;
}

.navbar .navbar-nav .nav-link:focus,
.navbar .navbar-nav .nav-link:hover {
  color: var(--hmaserv-orange);
}

.navbar-light .navbar-nav .show>.nav-link {
  color: #fff;
}

.navbar-light .navbar-nav .active>.nav-link {
  color: var(--hmaserv-orange);
}

.navbar .navbar-nav .dropdown-toggle::after {
  border-top-color: var(--hmaserv-orange);
}

@media (min-width: 992px) {
  .navbar .navbar-nav .dropdown-menu {
    right: -38%;
    left: unset;
    top: 51px;
    background-color: var(--hmaserv-gray);
  }
}

.navbar .navbar-nav .dropdown-menu {
  background-color: var(--hmaserv-gray);
  border-top: 5px solid var(--hmaserv-orange);
  border-radius: 0;
}

.navbar .navbar-nav .dropdown-menu::before {
  content: '';
  position: absolute;
  border-bottom: 0.5em solid var(--hmaserv-orange);
  border-right: 0.5em solid transparent;
  border-top: 0;
  border-left: 0.5em solid transparent;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.navbar .navbar-nav .dropdown-menu .dropdown-item {
  color: #fff;
  font-size: 14px;
  font-weight: 100;
  padding-left: 11px;
  padding-right: 11px;
}

.navbar .navbar-nav .dropdown-menu .dropdown-item:hover {
  background-color: var(--hmaserv-orange);
}

.navbar .navbar-nav .dropdown-menu .dropdown-item:focus {
  background-color: #fff;
  color: var(--hmaserv-gray);
}

.navbar .navbar-nav .dropdown-menu .dropdown-divider {
  border-color: rgb(255 255 255 / 8%);
  margin: 0.5rem auto;
  width: 86%;
}

@media (min-height: 768px) {
  /* Clouds Effect */
  #clouds {
    position: relative;
    top: 136px;
  }

  .cloud {
    width: 200px;
    height: 60px;
    background: #fff;

    border-radius: 200px;
    -moz-border-radius: 200px;
    -webkit-border-radius: 200px;

    position: relative;
  }

  .cloud:before,
  .cloud:after {
    content: '';
    position: absolute;
    background: #fff;
    width: 100px;
    height: 80px;
    position: absolute;
    top: -15px;
    left: 10px;

    border-radius: 100px;
    -moz-border-radius: 100px;
    -webkit-border-radius: 100px;

    -webkit-transform: rotate(30deg);
    transform: rotate(30deg);
    -moz-transform: rotate(30deg);
  }

  .cloud:after {
    width: 120px;
    height: 120px;
    top: -55px;
    left: auto;
    right: 15px;
  }

  /*Time to animate*/
  .x1 {
    -webkit-animation: moveclouds 15s linear infinite;
    -moz-animation: moveclouds 15s linear infinite;
    -o-animation: moveclouds 15s linear infinite;
  }

  /*variable speed, opacity, and position of clouds for realistic effect*/
  .x2 {
    left: 200px;

    -webkit-transform: scale(0.6);
    -moz-transform: scale(0.6);
    transform: scale(0.6);
    opacity: 0.6;
    /*opacity proportional to the size*/

    /*Speed will also be proportional to the size and opacity*/
    /*More the speed. Less the time in 's' = seconds*/
    -webkit-animation: moveclouds 25s linear infinite;
    -moz-animation: moveclouds 25s linear infinite;
    -o-animation: moveclouds 25s linear infinite;
  }

  .x3 {
    left: -250px;
    top: -200px;

    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0.8;
    /*opacity proportional to the size*/

    -webkit-animation: moveclouds 20s linear infinite;
    -moz-animation: moveclouds 20s linear infinite;
    -o-animation: moveclouds 20s linear infinite;
  }

  .x4 {
    left: 470px;
    top: -250px;

    -webkit-transform: scale(0.75);
    -moz-transform: scale(0.75);
    transform: scale(0.75);
    opacity: 0.75;
    /*opacity proportional to the size*/

    -webkit-animation: moveclouds 18s linear infinite;
    -moz-animation: moveclouds 18 linear infinite;
    -o-animation: moveclouds 15s linear infinite;
  }

  .x5 {
    left: -150px;
    top: -150px;

    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0.8;
    /*opacity proportional to the size*/

    -webkit-animation: moveclouds 15s linear infinite;
    -moz-animation: moveclouds 15s linear infinite;
    -o-animation: moveclouds 15s linear infinite;
  }

  @-webkit-keyframes moveclouds {
    0% {
      margin-left: 1000px;
    }

    100% {
      margin-left: -1000px;
    }
  }

  @-moz-keyframes moveclouds {
    0% {
      margin-left: 1000px;
    }

    100% {
      margin-left: -1000px;
    }
  }

  @-o-keyframes moveclouds {
    0% {
      margin-left: 1000px;
    }

    100% {
      margin-left: -1000px;
    }
  }

  #box {
    height: 200px;
    width: 600px;
    margin: -400px 10px 20px 330px;

  }
}

/* Header Slider */
.header-slider {
  z-index: 9;
  position: absolute;
  margin-bottom: 0 !important;
  width: 100%;
  bottom: 35px;
}

.header-slider .single-slide {
  text-align: center;
}

.header-slider .single-slide img {
  max-height: 453px;
  max-width: 100%;
  height: auto;
  width: auto;
}

@media (min-width: 1400px) {
  .header-slider .single-slide img {
    max-height: unset;
  }
}

.header-slider .single-slide h1 {
  color: #fff;
  font-size: 35px;
  font-family: 'Segoe UI';
  margin-bottom: 16px;
  font-weight: 400;
}

.header-slider .single-slide h1 span {
  color: var(--hmaserv-orange);
}

.header-slider .single-slide p {
  font-size: 18px;
  font-family: 'Segoe UI';
  font-weight: 100;
  color: #fff;
  width: 60%;
  margin: 0 auto 23px;
}

.header-slider .single-slide .links {
  display: inline-flex;
}

.header-slider .single-slide .links a {
  padding: 10px 30px;
  font-family: 'Segoe UI';
  font-weight: 300;
  border-radius: 30px;
  background-color: #fff;
  margin: 0 7px;
  color: var(--hmaserv-orange);
  font-size: 14px;
  transition: all 0.3s;
}

.header-slider .single-slide .links a:hover {
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.15)) var(--hmaserv-orange);
}

.header-slider .single-slide .links a:last-of-type {
  background-color: var(--hmaserv-orange);
  color: #fff;
}

.slick-dots {
  bottom: -15px;
}

.slick-dots li,
.slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.slick-dots li button:before {
  content: none;
}

.slick-dots li button {
  background-color: rgba(255, 255, 255, 0.3);
}

.slick-dots li.slick-active button {
  background-color: #fff;
}

/* Why Hmaserv */
.why-hmaserv .meta-blocks {
  margin-top: 70px;
}

.why-hmaserv .meta-blocks .single-meta {
  text-align: center;
  margin-bottom: 50px;
}

.why-hmaserv .meta-blocks .single-meta img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--hmaserv-orange);
  padding: 20px;
}

.why-hmaserv .meta-blocks .single-meta h3 {
  font-size: 23px;
  font-family: 'Segoe UI';
  font-weight: 300;
  margin-top: 11px;
  color: var(--hmaserv-gray);
}

.why-hmaserv .meta-blocks .single-meta p {
  color: var(--hmaserv-paragraph);
  font-family: 'Segoe UI';
  font-weight: 200;
  font-size: 18px;
}

.ddos-protections .blocks {
  margin-top: 40px;
}

.ddos-protections .blocks .single-block {
  text-align: center;
  margin-bottom: 15px;
  padding: 40px;
  border: 1px solid #D8D8D8;
  border-radius: 4px;
}

.ddos-protections .blocks .single-block img {
  width: 150px;
  height: 150px;
  padding: 35px;
  border-radius: 45px;
  background-color: #CAFCFD;
  margin-bottom: 30px;
}

.ddos-protections .blocks .col-md-4:nth-of-type(2) .single-block img {
  background-color: #FEEEDE;
}

.ddos-protections .blocks .col-md-4:nth-of-type(3) .single-block img {
  background-color: #EFEEFE;
}

.ddos-protections .blocks .single-block h3 {
  color: var(--hmaserv-gray);
  font-family: 'Segoe UI';
  font-weight: 400;
  font-size: 22px;
  margin-bottom: 10px;
}

.ddos-protections .blocks .single-block p {
  color: var(--hmaserv-paragraph);
  font-family: 'Segoe UI';
  font-weight: 200;
  font-size: 18px;
  margin-bottom: 0;
}

/* Clients */
.clients {
  background-color: rgba(156, 156, 156, 0.09);
  border-radius: 150px;
  margin-bottom: 100px;
  padding-left: 80px;
  padding-right: 80px;
}

.clients .label {
  font-size: 29px;
  color: #fff;
  background-color: var(--hmaserv-orange);
  font-family: 'Segoe UI';
  font-weight: 300;
  padding: 10px 30px;
  border-radius: 25px;
  text-align: center;
  display: table;
  margin: 0 auto 50px;
}

.clients .logos {
  text-align: center;
}

.clients .logos .col-md-4:last-of-type img,
.clients .logos .col-md-4:nth-last-of-type(2) img,
.clients .logos .col-md-4:nth-last-of-type(3) img {
  margin-top: 50px;
}

.clients .logos img {
  max-width: 100%;
  max-height: 90px;
}

/* Testimonials */
.testimonials {
  background-color: var(--hmaserv-orange);
}

.testimonials .label {
  text-align: center;
  color: #fff;
  font-size: 30px;
  font-family: 'Segoe UI';
  font-weight: 200;
}

.testimonials .label span {
  font-weight: 300;
  text-decoration: underline;
}

.testimonials .person {
  margin-top: 50px;
}

.testimonials .one section {
  background-color: #fff;
  border-radius: 50px;
  padding: 30px;
}

.testimonials .one .profile {
  text-align: center;
}

.testimonials .one .profile img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto;
  object-fit: cover;
  object-position: center;
}

.testimonials .one .profile h3 {
  font-family: 'Segoe UI';
  font-weight: 300;
  color: var(--hmaserv-gray);
  margin-top: 9px;
  font-size: 19px;
}

.testimonials .one .profile span {
  font-family: 'Segoe UI';
  font-weight: 200;
  color: var(--hmaserv-gray);
  font-size: 17px;
}

.testimonials .one p {
  font-size: 17px;
  color: var(--hmaserv-paragraph);
  font-family: 'Segoe UI';
  font-weight: 200;
  margin-bottom: 0;
}

.testimonials .slick-dots {
  bottom: -45px;
}

.testimonials .slick-prev:before,
.testimonials .slick-next:before {
  content: unset;
}

.testimonials .slick-arrow {
  font-size: 50px;
  color: #fff;
  width: auto;
  z-index: 9;
  height: auto;
  opacity: 1;
  outline: none;
}

.testimonials .slick-prev {
  left: 0;
}

.testimonials .slick-next {
  right: 0;
}

/* Map */
.map img {
  margin-top: 50px;
  width: 100%;
}

/* Footer */
footer {
  background-color: var(--hmaserv-gray);
}

footer .hero {
  max-width: 100%;
}

footer .wrapper {
  padding: 40px 0 30px;
}

footer .wrapper .menu h4 {
  color: var(--hmaserv-orange);
  font-size: 16px;
  font-family: 'Segoe UI';
  font-weight: 300;
}

footer .wrapper .menu ul {
  padding-left: 0;
  list-style: none;
}

footer .wrapper .menu ul li a {
  color: #F7F7F7;
  font-size: 14px;
  font-family: 'Segoe UI';
  font-weight: 200;
}

footer .wrapper .quick-links a {
  color: #F7F7F7;
  font-size: 14px;
  border-right: 1px solid rgba(247, 247, 247, 0.247);
  padding: 0 10px;
  font-family: 'Segoe UI';
  font-weight: 200;
}

footer .wrapper .quick-links a:first-child {
  padding-left: 0;
}

footer .wrapper .quick-links a:last-child {
  padding-right: 0;
  border: none;
}

footer .rights {
  height: 75px;
  background-color: rgba(20, 20, 20, 1);
  text-align: center;
}

footer .rights .row {
  height: 75px;
}

footer .rights p {
  margin-bottom: 0;
  color: #565656;
  font-family: 'Segoe UI';
  font-weight: 100;
  font-size: 17px;
}

footer .rights span {
  color: #727272;
  font-family: 'Segoe UI';
  font-weight: 200;
  font-size: 14px;
}

footer .rights span strong {
  color: #4A4A4A;
  font-weight: 300;
}

footer .rights .social {
  display: inline-flex;
}

footer .rights .social a {
  width: 22px;
  height: 22px;
  background-color: var(--hmaserv-orange);
  border-radius: 50%;
  margin-left: 9px;
  display: flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
}

/* Scroll to top button */
.scrollUp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--hmaserv-orange);
  width: 50px;
  height: 50px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 20px;
  display: none;
  text-decoration: none !important;
}

/* Dedicated Servers / VPS
---------------------------------------------------------------------------------------- */
.debicated-server {
  padding: 30px 0;
}

.debicated-server .title {
  text-align: center;
}

.debicated-server .title h3 {
  font-size: 20px;
  color: var(--hmaserv-orange);
  font-family: 'Segoe UI';
  font-weight: 400;
  margin-bottom: 5px;
}

.debicated-server .title p {
  font-size: 16px;
  color: var(--hmaserv-gray);
  font-family: 'Segoe UI';
  margin-bottom: 25px;
  font-weight: 200;
}

.debicated-server .wrapper {
  width: 100%;
  display: flow-root;
}

.debicated-server .nav {
  width: fit-content;
  margin: 0 auto;
}

.debicated-server .nav-tabs {
  border-bottom: 1px solid #CCCCCC;
}

.debicated-server .nav-tabs .nav-link {
  color: #CCCCCC;
  font-family: 'Segoe UI';
  font-weight: 300;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  text-align: center;
  transition: all 0.3s;
}

.debicated-server .nav-tabs .nav-link img {
  margin-right: 5px;
}

.debicated-server .nav-tabs .nav-link:hover {
  border-color: transparent transparent var(--hmaserv-orange);
  color: var(--hmaserv-orange);
}

.debicated-server .nav-tabs .nav-link.active {
  color: var(--hmaserv-orange);
  border-color: transparent transparent var(--hmaserv-orange);
}

.debicated-server .filter {
  width: 170px;
  height: 40px;
  font-family: 'Segoe UI';
  font-weight: 200;
  font-size: 18px;
  border-radius: 3px;
  padding: 0 13px;
  border: 1px solid var(--hmaserv-orange);
  margin-bottom: 25px;
}

.debicated-server .package .row {
  min-height: 125px;
}

@media (min-width: 768px) {

  .debicated-server .package div[class*="col-md"]:last-of-type,
  .debicated-server .package div[class*="col-md"]:first-of-type {
    border: none;
  }

  .debicated-server .package div[class*="col-md"] {
    border-right: 1px solid #CECECE;
  }
}

.debicated-server .package {
  margin-bottom: 15px;
  border-top: 1px solid #CECECE;
  border-right: 1px solid #CECECE;
  border-bottom: 1px solid #CECECE;
  background-color: #FCFCFC;
  border-radius: 5px;
}

.debicated-server .package .price {
  text-align: center;
  color: #fff;
  background-color: var(--hmaserv-orange);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  display: flex;
  align-items: center;
  font-family: 'Segoe UI';
  font-weight: 300;
  font-size: 20px;
  justify-content: center;
  height: 100%;
}

.debicated-server .package .price span {
  display: block;
  font-size: 13px;
  font-weight: 200;
}

.debicated-server .package .name {
  display: flex;
  text-align: center;
  align-items: center;
  font-family: 'Segoe UI';
  font-weight: 300;
  font-size: 20px;
  height: 100%;
  justify-content: center;
}

.debicated-server .package .name span {
  display: block;
  font-size: 16px;
  font-weight: 200;
}

.debicated-server .package .features {
  display: flex;
  align-items: center;
  font-family: 'Segoe UI';
  font-weight: 200;
  font-size: 18px;
  height: 100%;
  padding: 15px;
}

.debicated-server .package .features ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.debicated-server .package .features ul li i {
  color: var(--hmaserv-orange);
}

.debicated-server .package .btns {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  height: 100%;
}

.debicated-server .package .btns a {
  display: block;
  text-align: center;
  font-size: 16px;
  font-family: 'Segoe UI';
  font-weight: 200;
  background-color: var(--hmaserv-orange);
  color: #fff;
  padding: 7px 0;
  border-radius: 28px;
}

.debicated-server .package .btns a:last-of-type {
  background-color: unset;
  color: var(--hmaserv-orange);
  margin-top: 12px;
  border: 1px solid var(--hmaserv-orange);
}

/* Single Server
---------------------------------------------------------------------------------------- */
.single-server .sticky-bar {
  position: sticky;
  top: 15px;
}

.single-server .label {
  border: 1px solid #CECECE;
  background: #FCFCFC;
  border-radius: 5px;
  padding: 16px;
  margin-bottom: 5px;
}

.single-server .label:last-of-type {
  margin-bottom: 0;
}

.single-server .label span {
  font-size: 16px;
  font-family: 'Segoe UI';
  font-weight: 300;
  color: var(--hmaserv-orange);
  margin-bottom: 7px;
  display: block;
}

.single-server .label h3 {
  color: var(--hmaserv-gray);
  font-size: 18px;
  font-family: 'Segoe UI';
  font-weight: 300;
  margin-bottom: 0;
}

.single-server .content {
  border: 1px solid #CECECE;
  background: #FCFCFC;
  border-radius: 5px;
  padding: 16px;
}

.single-server .content .title {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-server .content .title img {
  margin-right: 10px;
}

.single-server .content .config .systems {
  width: 100%;
  margin-top: 22px;
  display: flow-root;
}

.single-server .content .config .systems .image {
  color: #787878;
  font-family: 'Segoe UI';
  font-weight: 300;
  font-size: 18px;
  margin-bottom: 18px;
}

.single-server .content .config .systems .nav-tabs {
  border-bottom: 1px solid #CECECE;
  justify-content: unset !important;
}

.single-server .content .config .systems .nav-tabs .nav-link {
  color: #A5A5A5;
  font-family: 'Segoe UI';
  font-weight: 200;
  font-size: 16px;
  background-color: unset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s;
}

.single-server .content .config .systems .nav-tabs .nav-link img {
  margin-right: 5px;
}

.single-server .content .config .systems .nav-tabs .nav-link:hover {
  border-color: transparent transparent var(--hmaserv-orange);
  color: var(--hmaserv-orange);
}

.single-server .content .config .systems .nav-tabs .nav-link.active {
  color: var(--hmaserv-orange);
  border-color: transparent transparent var(--hmaserv-orange);
}

.single-server .content .config .systems .version {
  margin-top: 25px;
}

.single-server .content .config .systems .version input {
  width: auto;
  display: none;
}

.single-server .content .config .systems .version .v {
  display: inline-block;
  padding: 12px 25px;
  color: var(--hmaserv-gray);
  background-color: #fff;
  border: 1px solid #C4C4C4;
  cursor: pointer;
  border-radius: 6px;
  margin-right: 5px;
  font-family: 'Segoe UI';
  font-weight: 300;
  font-size: 16px;
}

.single-server .content .config .systems .version .v.selected {
  background-color: var(--hmaserv-orange);
  color: #fff;
}

.single-server .content .config .systems .drive-config {
  margin-top: 25px;
}

.single-server .content .config .systems .tab-pane>div {
  margin-top: 25px;
}

.single-server .content .config .systems h4 {
  color: #787878;
  font-family: 'Segoe UI';
  font-weight: 300;
  font-size: 18px;
  margin-bottom: 8px;
}

.single-server .content .config .systems .drive-config p {
  color: var(--hmaserv-gray);
  font-family: 'Segoe UI';
  font-weight: 200;
  font-size: 18px;
  margin-bottom: 8px;
}

.single-server .content .config .systems .drive-config .drives .d {
  display: inline-block;
  padding: 12px 25px;
  color: var(--hmaserv-gray);
  background-color: #fff;
  border: 1px solid #C4C4C4;
  cursor: pointer;
  border-radius: 6px;
  margin-right: 5px;
  font-family: 'Segoe UI';
  text-align: center;
  min-width: 200px;
  font-weight: 300;
  font-size: 16px;
}

.single-server .content .config .systems .drive-config .drives .d span {
  display: block;
}

.single-server .content .config .systems .drive-config .drives .d.selected {
  background-color: var(--hmaserv-orange);
  color: #fff;
}

.single-server .content .config .systems .drive-config .drives input {
  width: auto;
  display: none;
}

.single-server .content .config .systems input,
.single-server .content .config .systems textarea,
.single-server .content .config .systems select {
  padding: 12px 25px;
  color: var(--hmaserv-gray);
  background-color: #fff;
  border: 1px solid #C4C4C4;
  border-radius: 6px;
  margin-right: 5px;
  font-family: 'Segoe UI';
  font-weight: 300;
  font-size: 16px;
  width: 100%;
}

.single-server .content .config .systems textarea::placeholder,
.single-server .content .config .systems input::placeholder {
  color: #D5D5D5;
}

.single-server .content .config .systems textarea,
.single-server .content .config .systems input {
  font-weight: 200;
}

.single-server .content .config .systems .ip-allocation p {
  font-size: 12px;
  color: var(--hmaserv-paragraph);
  font-family: 'Segoe UI';
  font-weight: 300;
  margin-top: 5px;
}

.single-server .content .config .systems .payment .provider {
  display: flex;
  justify-content: center;
}

.single-server .content .config .systems .payment .p {
  display: inline-block;
  padding: 12px 25px;
  color: var(--hmaserv-gray);
  background-color: #fff;
  border: 1px solid #C4C4C4;
  cursor: pointer;
  border-radius: 18px;
  margin-right: 5px;
  font-family: 'Segoe UI';
  text-align: center;
  font-weight: 300;
  font-size: 16px;
}

.single-server .content .config .systems .payment .p.selected {
  border: 1px solid var(--hmaserv-orange) !important;
}

.single-server .content .config .systems .payment input {
  width: auto;
  display: none;
}

.single-server .col-md-4 {
  position: relative;
}

.single-server .actions {
  margin-top: 20px;
}

.single-server .actions .complete {
  color: #fff;
  background-color: var(--hmaserv-orange);
  padding: 15px 30px;
  border-radius: 14px;
  font-family: 'Segoe UI';
  font-size: 20px;
  font-weight: 300;
  display: table;
  margin: 0 auto 18px;
}

.single-server .actions .back {
  color: var(--hmaserv-orange);
  font-family: 'Segoe UI';
  font-size: 22px;
  display: table;
  margin: 0 auto;
  font-weight: 200;
}

/* Messages
---------------------------------------------------------------------------------------- */
.message {
  padding: 50px 0;
  text-align: center;
}

.message img {
  max-width: 105px;
  max-height: 105px;
  width: auto;
  height: auto;
  margin-bottom: 20px;
}

.message h3 {
  font-family: 'Segoe UI';
  font-size: 21px;
  font-weight: 300;
  color: var(--hmaserv-gray);
  margin-bottom: 25px;
}

.message h3 span {
  color: var(--hmaserv-orange);
}

.message p {
  font-family: 'Segoe UI';
  font-size: 19px;
  font-weight: 200;
}

.message p span {
  color: var(--hmaserv-orange);
  font-weight: 300;
}

/* After Contact */
.after-contact .box {
  color: var(--hmaserv-paragraph);
  font-size: 19px;
  font-family: 'Segoe UI';
  border-radius: 10px;
  padding: 14px 26px;
  border: 1px solid #d2d2d2;
  font-weight: 200;
}

/* Text Pages
---------------------------------------------------------------------------------------- */
.text {
  padding: 50px 0;
}

.text .title {
  font-size: 23px;
  font-family: 'Segoe UI';
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--hmaserv-gray);
}

.text .title span {
  color: var(--hmaserv-orange);
}

.text ul,
.text p {
  color: var(--hmaserv-paragraph);
  font-size: 16px;
  font-family: 'Segoe UI';
  font-weight: 200;
}

.text ul {
  list-style: none;
  padding-left: 20px;
}

.text ul li {
  margin-bottom: 7px;
}

.text ul li::before {
  content: ' ';
  background-color: var(--hmaserv-orange);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 7px;
  display: inline-block;
}

/* Forms
---------------------------------------------------------------------------------------- */
.forms {
  border: 1px solid #bebebe;
  margin: 70px 0;
}

.forms .title {
  background-color: #6D6D6D;
  color: #fff;
  padding: 10px 20px;
  font-size: 24px;
  font-family: 'Segoe UI';
  font-weight: 300;
}

.forms form {
  padding: 35px;
}

.forms form textarea,
.forms form input:not([type="checkbox"]) {
  width: 100%;
  background-color: #F6F6F6;
  height: 55px;
  border-radius: 6px;
  font-size: 16px;
  font-family: 'Segoe UI';
  font-weight: 200;
  border: none;
  padding: 0 20px;
  margin-bottom: 15px;
}

.forms form textarea {
  height: 140px;
  padding: 15px 20px;
}

.forms form .agree {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.forms form input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 7px;
}

.forms form .sub-btn {
  font-family: 'Segoe UI';
  font-weight: 300;
  font-size: 20px;
  border: none;
  margin-top: 15px;
  margin-bottom: 15px;
  height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 100%;
  border-radius: 6px;
  outline: unset;
  background-color: var(--hmaserv-orange);
  color: #fff;
}

.forms form a.forget {
  text-align: center;
  display: block;
  margin-top: 15px;
  margin-bottom: 15px;
  color: var(--hmaserv-orange);
  font-size: 15px;
  font-family: 'Segoe UI';
  font-weight: 200;
}

.forms form .sign-up-btn {
  font-family: 'Segoe UI';
  font-weight: 300;
  font-size: 20px;
  display: inline-flex;
  margin-top: 15px;
  margin-bottom: 15px;
  height: 55px;
  border: 2px solid var(--hmaserv-orange);
  width: 100%;
  border-radius: 6px;
  outline: unset;
  color: var(--hmaserv-orange);
  align-items: center;
  justify-content: center;
}

.forms form label {
  font-size: 15px;
  color: var(--hmaserv-gray);
  font-family: 'Segoe UI';
  font-weight: 300;
  margin-bottom: 0;
}

.forms form label a,
.forms form label span {
  color: var(--hmaserv-orange);
}

.forms form p {
  font-size: 15px;
  color: #9D9D9D;
  font-family: 'Segoe UI';
  font-weight: 200;
}

/* Contact US
---------------------------------------------------------------------------------------- */
.contact-title {
  text-align: center;
  margin-top: 70px;
}

.contact-title h4 {
  color: var(--hmaserv-gray);
  font-size: 20px;
  font-weight: 400;
  font-family: 'Segoe UI';
  margin-bottom: 15px;
}

.contact-title h4 span {
  color: var(--hmaserv-orange);
}

.contact-title p {
  color: var(--hmaserv-gray);
  font-size: 18px;
  font-weight: 200;
  font-family: 'Segoe UI';
}

.contact-title p span {
  color: var(--hmaserv-orange);
}

.contact-page .forms {
  margin-top: 40px;
}

.contact-page .emails,
.contact-page .social {
  text-align: center;
}

.contact-page .social {
  margin-bottom: 60px;
}

.contact-page .emails h2,
.contact-page .social h2 {
  font-size: 45px;
  color: var(--hmaserv-gray);
  font-weight: 300;
  font-family: 'Segoe UI';
  margin-bottom: 20px;
}

.contact-page .emails {
  margin-bottom: 40px;
}

.contact-page .emails a {
  display: block;
  font-size: 20px;
  color: var(--hmaserv-gray);
  font-weight: 200;
  margin-bottom: 8px;
  font-family: 'Segoe UI';
  color: var(--hmaserv-gray);
}

.contact-page .social a {
  width: 40px;
  height: 40px;
  background-color: var(--hmaserv-orange);
  border-radius: 50%;
  margin-left: 9px;
  display: inline-flex;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

/* FAQ
---------------------------------------------------------------------------------------- */
.faq {
  padding: 46px 0;
}

.faq h3 {
  font-size: 38px;
  font-weight: 400;
  color: var(--hmaserv-gray);
  font-family: 'Segoe UI';
  display: inline-block;
  border-bottom: 4px solid var(--hmaserv-orange);
}

.faq .accordion {
  margin-top: 45px;
}

.faq .accordion .btn-link {
  color: var(--hmaserv-orange);
  font-weight: 300;
  font-size: 18px;
  font-family: 'Segoe UI';
  padding: 0;
}

.faq .accordion .card-header {
  margin-bottom: 0;
  background-color: unset;
  padding: 10px 0;
}

.faq .accordion .card {
  border: none;
}

.faq .accordion .card-body {
  font-weight: 200;
  font-family: 'Segoe UI';
  color: var(--hmaserv-gray);
  font-size: 16px;
  padding-left: 0;
  padding-right: 0;
}

/* 
----------------------------------------------------------------------------------------
Responsiveness -------------------------------------------------------------------------
---------------------------------------------------------------------------------------- */
@media (max-width: 768px) {

  /* Top Bar */
  .navbar {
    z-index: 99;
  }

  .navbar-light .navbar-toggler {
    border: 1px solid #ccc;
    outline: none;
  }

  .navbar-light .navbar-toggler-icon {
    background-image: url(data:image/svg+xml,%3Csvg%20viewBox%3D%270%200%2030%2030%27%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%3E%3Cpath%20stroke%3D%27rgba%28255%2C%20255%2C%20255%2C%201%29%27%20stroke-width%3D%272%27%20stroke-linecap%3D%27round%27%20stroke-miterlimit%3D%2710%27%20d%3D%27M4%207h22M4%2015h22M4%2023h22%27%2F%3E%3C%2Fsvg%3E);
  }

  .navbar .navbar-nav .dropdown-menu::before {
    top: 35px;
    left: 33px;
    transform: unset;
  }

  /* Home Page
   ------------------------------------------------ */

  /* Header */
  .header-slider {
    top: 50%;
    transform: translateY(-50%);
    bottom: unset;
  }

  .header-slider .single-slide p {
    width: 100%;
  }

  .header-slider .single-slide img {
    max-height: 350px;
    max-width: 164px;
    display: none;
    margin-bottom: -7px;
  }

  .header-slider .single-slide .links {
    display: inline-grid;
    width: 100%;
  }

  .header-slider .single-slide .links a {
    display: block;
    width: 100%;
    margin: 0 0 10px;
  }

  #clouds {
    display: none;
  }

  /* Clients */
  .clients .logos img {
    margin-bottom: 10px;
  }

  /* Testimonials */
  .testimonials .one {
    text-align: center;
  }

  .testimonials .one .profile {
    margin-bottom: 15px;
  }

  /* Footer */
  footer .logo {
    margin-bottom: 25px;
  }

  footer .hero {
    margin: 0 auto;
    display: table;
  }

  footer .rights {
    padding: 10px 0;
    height: auto;
  }

  /* Dedicated Servers
   ------------------------------------------------ */
  .single-server .content .config .systems .nav,
  .debicated-server .nav {
    width: max-content;
  }

  .debicated-server .nav-tabs .nav-link {
    min-width: unset;
  }

  .debicated-server .scroller,
  .single-server .content .config .systems .scroller {
    overflow: auto;
    margin-bottom: 25px;
  }

  .single-server .content .config .systems .scroller::-webkit-scrollbar,
  .debicated-server .scroller::-webkit-scrollbar {
    height: 7px;
  }

  .single-server .content .config .systems .scroller::-webkit-scrollbar-thumb,
  .debicated-server .scroller::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #b1b1b1;
  }

  .single-server .content .config .systems .scroller::-webkit-scrollbar-track,
  .debicated-server .scroller::-webkit-scrollbar-track {
    background-color: #ececec;
    border-radius: 10px;
  }

  .debicated-server .package {
    border: 1px solid #CECECE;
  }

  .debicated-server .package .price {
    padding: 20px 0;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 0;
  }

  .debicated-server .package .name,
  .debicated-server .package .features {
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #CECECE;
  }

  .debicated-server .package .btns {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  /* Single Server
   ------------------------------------------------ */
  .single-server .content .config .systems .version .v,
  .single-server .content .config .systems .drive-config .drives .d,
  .single-server .content .config .systems .payment .p {
    display: block;
    margin-bottom: 5px;
  }

  .single-server .content .config .systems .payment .provider {
    display: unset;
  }

  .single-server .sticky-bar {
    margin-top: 30px;
    position: unset;
  }
}