:root {
  --font-family: Montserrat, sans-serif;
  --promo: url('../images/promo_bg.jpg');
  --opacity-image: .3;
  --bg: #16191c;
  --semi-dark: #212529;
  --light-dark: #212529;
  --light-two-dark: #432626;
  --gray-text: #525f69;
  --dark-text: #191919;
  --black: #000;
  --white: #fff;
  --white-two: #f9f9f9;
  --light: #b8b8b8;
  --blue: #ff5c5c;
  --green: #4da564;
  --red: #fe3c45;
  --yellow: #EECA02;
  --filter-shadow: rgba(92, 191, 255, 0.5);
  --gradient-shadow: #d148413d;
  --blur-image: 5px;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--light);
}

a {
  color: var(--blue);
}

.yellow {
  color: var(--yellow);
}

.mb-6 {
  margin-bottom: 100px;
}

.navbar-dark {
  background: var(--bg);
}

.navbar-dark .navbar-toggler {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.navbar-dark .toggler-lang {
  margin-left: auto;
  margin-right: 10px;
}

.navbar-dark .navbar-brand img {
  height: 60px;
}

.navbar-dark .nav-link {
  color: var(--light);
  font-size: 15px;
  text-align: center;
}

.navbar-dark .nav-link img {
  height: 23px;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: .8rem;
    padding-left: .8rem;
  }
}

.navbar-dark .navbar-btn {
  background: var(--blue);
  color: var(--dark-text) !important;
  background-color: var(--blue);
  border: 1px solid var(--blue);
  backdrop-filter: blur(30px);
  color: var(--dark-text);
  border-radius: 50px;
  padding: 7px 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-right: 10px;
  text-align: center;
}

@media (min-width: 992px) {
  .navbar-dark .navbar-btn {
    margin-right: 0px;
  }
}

.navbar-dark .navbar-btn i {
  vertical-align: middle;
}

.dropdown-menu {
  background: var(--light-dark);
}

.dropdown-item {
  color: var(--light);
  transition: all .4s ease;
  font-weight: 400;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item:active {
  background: var(--semi-dark);
  color: var(--white);
}

.dropdown-client {
  margin-top: 3px;
}

.dropdown-client .dropdown-item h5 {
  color: var(--white);
  font-weight: 600;
  transition: all .4s ease 0s;
  font-size: 18px;
}

.dropdown-client .dropdown-item p {
  color: var(--light);
  font-weight: 300;
  font-size: 14px;
  transition: all .4s ease 0s;
}

@media (max-width: 992px) {
  .dropdown-item {
    text-align: center;
  }

  .dropdown-client {
    margin-top: 0px;
  }
}

.promo_bar {
  position: relative;
  overflow: hidden;
}

.promo_bar:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  background: var(--promo);
  background-size: cover;
  background-repeat: no-repeat;
  opacity: var(--opacity-image);
  filter: blur(var(--blur-image));
  z-index: 0;
}

.promo_bar .card {
  background: rgba(22, 25, 28, .9);
  border: none;
  color: var(--white);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.promo_bar .card .card-body .promo_bar_card i {
  font-size: 40px;
}

.promo_bar .card .card-body .promo_bar_card h3 {
  color: var(--blue);
  font-weight: 700;
}

.promo_bar .card .card-body .promo_bar_card p {
  color: var(--white-two);
  font-weight: 300;
}

.promo_bar .offer {
  z-index: 1;
}

.promo_bar .offer h2 {
  color: var(--white);
  font-weight: 700;
}

.promo_bar .offer h6 {
  color: var(--light);
  font-size: 15px;
}

.promo_bar .offer h6 span {
  color: var(--white-two);
  margin-right: 2px;
  font-weight: 500;
  font-size: 17px;
}

@media (max-width: 768px) {
  .promo_bar .card {
    margin-bottom: 20px;
  }

  .promo_bar .offer, .promo_bar .offer-count {
    text-align: center;
    width: 100%;
    justify-content: center;
  }
}

.minecraft-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 400px;
  margin-left: auto;
}

.h-image-main {
  height: 420px;
  animation: floating-circular 10s linear infinite;
  position: relative;
}

.h-image-main img {
  height: 100%;
}

@keyframes floating-circular {
  from {
    transform: rotate(0) translateX(10px) rotate(0)
  }
  to {
    transform: rotate(360deg) translateX(10px) rotate(-360deg)
  }
}

.h-image-main-assest1 {
  background-image: url('../images/fire.png');
  left: 44.5%;
  top: 40%;
  width: 32.5%;
  background-size: auto 2500%;
  background-position: 0 0;
  background-repeat: repeat-y;
  position: absolute;
  -webkit-animation: torches-animation 1.4s steps(25) infinite;
}

.h-image-main-assest1:before {
  content: "";
  display: block;
  padding-bottom: 12.5%;
}

@keyframes torches-animation {
  100% {
    background-position: 0 -2500%
  }
}

.h-image-main-c1,
.h-image-main-c2,
.h-image-main-c3 {
  animation: floating-vertical 8s ease-in-out infinite;
  position: absolute;
  z-index: 1;
}

@keyframes floating-vertical {
  0% {
    transform: translateY(0)
  }
  50% {
    transform: translate3d(0, -10px, 0)
  }
  100% {
    transform: translate3d(0, 0, 0)
  }
}

.h-image-main-c1 {
  width: 16%;
  top: 13%;
  left: 8%;
  animation-delay: -1s;
}

.h-image-main-c2 {
  width: 24%;
  bottom: 0%;
  right: 4%;
  animation-delay: -2s;
}

.h-image-main-c3 {
  width: 24%;
  bottom: 4%;
  left: 0%;
  animation-delay: -3s;
}

.h-image-main-assest2 {
  position: absolute;
  left: 17.9%;
  top: 38.09%;
  width: 7.2%;
  height: 12%;
  background: url('../images/portal.gif') no-repeat;
  background-size: cover;
}

.minecraft .minecraft_content h1 {
  color: var(--main-color);
  letter-spacing: 2px;
  background: -webkit-linear-gradient(#dc3545,#ff5c5c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.minecraft .minecraft_content p {
  color: var(--light);
}

.minecraft .minecraft_content .btn {
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  transition: all .4s ease;
}

.minecraft .minecraft_content .btn-blue {
  background: var(--blue);
  border: 1px solid var(--blue);
  color: var(--white);
  margin-right: 10px;
}

.minecraft .minecraft_content .btn-blue-outline {
  border: 2px solid var(--blue);
  background: none;
  color: var(--blue);
}

.minecraft .minecraft_content .btn-blue:hover,
.minecraft .minecraft_content .btn-blue:active,
.minecraft .minecraft_content .btn-blue:focus {
  -webkit-box-shadow: 0px 0px 30px 0px rgba(92,191,255,1);
  -moz-box-shadow: 0px 0px 30px 0px rgba(92,191,255,1);
  box-shadow: 0px 0px 30px 0px rgba(92,191,255,1);
}

.minecraft .minecraft_content .btn-blue-outline:hover,
.minecraft .minecraft_content .btn-blue-outline:active,
.minecraft .minecraft_content .btn-blue-outline:focus {
  background: var(--blue);
  color: var(--white);
  -webkit-box-shadow: 0px 0px 30px 0px rgba(92,191,255,1);
  -moz-box-shadow: 0px 0px 30px 0px rgba(92,191,255,1);
  box-shadow: 0px 0px 30px 0px rgba(92,191,255,1);
}

@media (max-width: 992px) {
  .minecraft-image {
    margin-bottom: 50px;
  }
  .minecraft_content {
    text-align: center;
  }
}
@media (max-width: 497px) {
  .minecraft .minecraft_content .btn {
    padding: 10px 30px;
  }
}

@media (max-width: 457px) {
  .minecraft .minecraft_content .btn-blue {
    margin-bottom: 10px;
  }
}

.site_title h2 {
  color: var(--white);
  font-weight: 700;
}

.site_title p {
  color: var(--light);
}

.features .features_card i {
  color: var(--blue);
  font-size: 50px;
}

.features .features_card h4 {
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
}

.features .features_card p {
  color: var(--light);
  font-size: 14px;
}

.reviews {
  /*background: var(--light-dark);*/
}

.reviews .card {
  background: var(--semi-dark);
  border: 1px solid rgba(34, 50, 63, .020);
}

.reviews .card .avatar {
    position: relative;
    background-color: var(--blue);
    border: 4px solid var(--light-dark);
    color: var(--white);
    width: 50px;
    height: 50px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reviews .card img {
  height: 50px;
  width: 50px;
}

.reviews .card h3 {
  color: var(--white);
  font-weight: 600;
  font-size: 24px;
}

.reviews .card p {
  font-size: 14px;
  font-weight: 500;
  color: var(--light);
}

.reviews .card p span {
  color: var(--white);
  opacity: .2;
  font-size: 24px;
}

footer {
  background: var(--light-dark);
}

footer .info img {
  height: 80px;
}

footer .info p {
  color: var(--white-two);
  font-size: 15px;
}

footer h4 {
  color: var(--white);
  font-weight: 600;
  font-size: 20px;
}

footer ul li {
  line-height: 30px;
}

footer ul li a {
  text-decoration: none;
  color: var(--light);

}

.bottom-footer {
  background: var(--semi-dark);
}

.bottom-footer p {
  font-size: 14px;
  color: var(--white);
}

@media (max-width: 992px) {
  footer  {
    text-align: center;
  }

  footer .col-lg-4 {
    margin-bottom: 10px;
  }

  footer .col-lg-4:last-of-type {
    margin-bottom: 0px;
  }
}

.header h2 {
  color: var(--white);
  font-weight: 800;
  font-size: 52px;
  z-index: 1;
}

.header p {
  color: var(--light);
  z-index: 1;
}

.minecraft_plans .nav-pills .nav-link {
  background: transparent;
  border: 3px solid var(--blue);
  color: var(--blue);
  border-radius: 50px;
  padding: 6px 30px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 4px;
}

.minecraft_plans .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  background: var(--blue);
  color: var(--white);
  border-radius: 50px;
  padding: 6px 30px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.minecraft_plans .tab-pane {
  margin-top: 100px;
}

.minecraft_plans .card {
  background: var(--semi-dark);
}

.minecraft_plans .card .minecraft_icon {
  display: block;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  margin-top: -70px;
  width: 140px;
}

.minecraft_plans .card .card-body .card-title {
  font-weight: 700;
  font-size: 24px;
  background: -webkit-linear-gradient(#b8b8b8,#ff5c5c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.minecraft_plans .card .card-body h6 {
  font-weight: 700;
  letter-spacing: 0.08rem;
  color: var(--white);
  font-size: 30px;
}

.minecraft_plans .card .card-body h6 span {
  font-size: 20px;
  font-weight: 500;
}

.minecraft_plans .card .card-body ul li {
  color: var(--light);
  font-weight: 500;
  font-size: 17px;
  line-height: 30px;
}

.minecraft_plans .card .card-body ul li i {
  color: var(--blue);
  position: relative;
  margin-right: 2px;
}

.minecraft_plans .card .card-body .plans_btn .btn {
  background: var(--light-dark);
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 10px;
  margin-top: 20px;
}

.minecraft_plans .card .card-body .plans_btn .btn i {
  color: var(--blue);
}

.servertype {
  background: var(--semi-dark);
}

#servertypes img {
  max-width: none;
  text-align: center;
  margin: 0 auto;
  height: 50px;
  width: unset;
}

/*
.faq {
  background: var(--semi-dark);
}*/

.faq .accordion-item {
  background: var(--semi-dark);
  border-color: var(--light-dark) !important;
  margin-bottom: 20px;
}

.faq .accordion-button {
  box-shadow: none !important;
  border: none !important;
  background: var(--light-dark);
  color: var(--light);
  font-weight: 600;
}

.faq .accordion-button:not(.collapsed) {
  background: var(--blue);
  color: var(--white);
}

.faq .accordion-button::after {
  background-image: var(--bs-accordion-btn-icon) !important;
}

.faq .accordion-button:focus {
  border-color: transparent !important;
  border: none !important;
}

.faq .accordion-body {
  color: var(--light);
}

.faq .accordion-body span {
  color: var(--white);
  font-weight: 500;
}

.specs table {
  border: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  border-collapse: collapse;
  border-spacing: 0;
  color: var(--light);
}

.specs table tbody tr {
  margin-bottom: 20px !important
}

.specs table tbody tr td {
  padding: 20px 15px;
  font-size: 14px;
  text-align: center;
  border-radius: 10px;
}

.specs table tbody tr .premium {
  background: var(--blue);
  box-shadow: 0 0 10px 0 rgba(8, 24, 40, .08);
  color: var(--white);
}

.specs table tbody tr td h2 {
  text-transform: uppercase;
  font-size: 24px;
  color: var(--white);
  font-weight: 700;
}

.specs table tbody tr td .specs-title {
  opacity: 0
}

.specs table tbody tr td .specs-text:nth-child(1) {
  border-top: 1px dashed rgba(255, 255, 255, .12) !important
}

.specs table tbody tr td span {
  padding: 4px 0;
  font-weight: 500
}

.specs table tbody tr td .specs-text {
  border-bottom: 1px dashed rgba(255, 255, 255, .12);
}

@media screen and (max-width:800px) {
  .specs table {
    border: 1px solid transparent;
    box-shadow: none;
  }
  .specs table thead {
      display: none;
  }
  .specs table tbody tr {
    padding: 20px;
    margin-bottom: 20px !important;
    display: block;
  }
  .specs table tbody tr td:before {
    float: left;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 700;
  }
  .specs table tbody tr td {
    display: block;
    font-size: 14px;
    padding: 10px !important;
    text-align: center;
  }
  .specs table tbody tr td .card {
    padding: 10px;
  }
  .specs table tbody tr td .card .price {
    margin-bottom: 10px;
  }
  .specs table tbody tr td .card .btn {
    display: block;
  }
}

.specs table tbody tr td .fw-bolder {
    display: none
}

@media(max-width:768px) {
  .specs table tbody tr .specification {
    display: none;
  }
  .specs table tbody tr td .fw-bolder {
    display: inline-block !important;
  }
}

.web_plans .card, .vps_plans .card, .dedi_plans .card {
  background-color: var(--light-dark);
  color: var(--light);
  border-radius: 5px;
  transition: all .6s ease;
}

.web_plans .card:hover, .vps_plans .card:hover {
  transform: translateY(-12px);
}

.web_plans_icon .element_two {
  opacity: 0.25;
}

.web_plans_icon .element_three {
  opacity: 0.50;
}

.web_plans .card h3 {
  font-weight: 500;
  font-size: 20px;
}

.web_plans .card p {
  font-size: 14px;
  font-weight: 300;
  width: 80%;
}

.web_plans .card h2 {
  color: var(--white);
}

.web_plans .card h2 .sup-month {
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 400;
  top: .1em;
}

.web_plans .card .bg-warning {
  background: var(--yellow) !important;
  color: var(--black);
}

.web_plans .card .badge {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  vertical-align: top;
  padding: 4px 10px;
}

.card_margin {
  margin-top: 2.4rem;
}

.card_popular {
  background-image: url('../images/popular.html') !important;
  background-repeat: no-repeat;
  background-position: bottom right;
}

.web_plans .card_popular ul li .icon {
  background: var(--yellow) !important;
  color: var(--black) !important;
}

.web_plans .card ul {
  list-style: none;
  padding: 0;
}

.web_plans .card ul li {
  font-size: 15px;
  line-height: 36px;
}

.web_plans .card ul li .icon {
  border-radius: 50px;
  padding: 5px 6px;
  position: relative;
  top: 8px;
}

.web_plans .card_standard ul li .icon {
  background: var(--red);
}

.web_plans .card_enterprice ul li .icon {
  background: var(--blue);
}

.web_plans .card .btn {
  padding: 8px 50px;
  font-weight: 500;
  border-radius: 50px;
}

.web_plans .card .btn-red {
  background: var(--red);
  color: var(--white);
}

.web_plans .card .btn-yellow {
  background: var(--yellow);
  color: var(--black);
}

.web_plans .card .btn-blue {
  background: var(--blue);
  color: var(--white);
}

@media (max-width: 992px) {
  .web_plans .card p {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .card_margin {
    margin-top: 0;
  }
}

.vps_plans .card .card-title {
  text-align: center;
  color: var(--white);
  font-weight: 800;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: -webkit-linear-gradient(#b8b8b8,#ff5c5c);
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vps_plans .card ul li {
  line-height: 40px;
  font-size: 18px;
  color: var(--white-two);
  font-weight: 500;
}

.vps_plans .card ul li i {
  color: var(--blue);
  margin-right: 2px;
}

.vps_plans .card h2 {
  color: var(--white);
  font-weight: 900;
  font-size: 34px;
  letter-spacing: 1px;
}

.vps_plans .card h2 span {
  color: var(--light);
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0px;
}

.vps_plans .card .btn {
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  padding: 10px 40px;
}

.dedi_plans .card .value {
  display: block;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  color: var(--white);
}

.dedi_plans .card .label {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  line-height: 14px;
  color: var(--light);
}

.dedi_plans .card .card_total {
  background: var(--semi-dark);
}

.dedi_plans .card .card_total .btn {
  background: var(--blue);
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  padding: 8px 20px;
}

.one_click {
  background: var(--semi-dark);
}

.one_click h4 {
  color: var(--white);
}

.one_click img {
  width: 80px;
  height: 80px;
}

@media (max-width: 576px) {
  .one_click .col-sm-3 {
    margin-bottom: 20px;
  }

  .one_click .col-sm-3:last-child {
    margin-bottom: 0;
  }
}

.panel #panel {
  border: 6px solid var(--light-dark);
  border-radius: 5px;
}

.panel .panel_content h2 {
  color: var(--white);
  font-weight: 700;
  font-size: 30px;
}

.panel .panel_content p {
  color: var(--light);
}

.panel .panel_content ul {
  list-style: none;
  padding: 0;
  margin-left: 0;
}

.panel .panel_content ul li {
  line-height: 40px;
  color: var(--white);
}

.panel .panel_content ul li i {
  margin-right: 4px;
  color: var(--blue);
  vertical-align: middle;
}

.legal h2 {
  color: var(--white);
  font-weight: 600;
}

.legal p {
  color: var(--light);
}