@import url("https://fonts.googleapis.com/css?family=Roboto:100,200,300,400,500,600,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,500;1,600;1,700;1,800&display=swap");
/*------------------------------------------------------------------
	1. General Styles
-------------------------------------------------------------------*/

body {
  font-family: "Open Sans", sans-serif;
  font-display: swap;
  overflow-x: hidden;
  margin: 0;
}

* {
  box-sizing: border-box;
  /* -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  font-display: swap; */
}

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

/* New css Ruben */
:root {
  --blue: #1b66ff;
  --blue-white-contrast: #134fc7;
  --blue-dark-contrast: #2970ff;
  --white: #ffffff;
  --lightgray: #f0f5fb;
  --darkgray: #010c1c;
  --gray: rgba(0, 0, 0, 0.718);
  --bluegray: #eaeef9;
  --lightbluegray: #f9fbff;
  --deepgray: #141f2f;
}

button,
input[type="submit"],
input[type="reset"] {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}

/*------------------------------------------------------------------
	2. loeader Styles
-------------------------------------------------------------------*/

/* 
.no-js #loader { display: none;  } */

/* .js #loader { display: none; position: absolute; left: 100px; top: 0; }
.se-pre-con {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background: #082031;
    background: -moz-linear-gradient(top, #082031 0%, #0e2c40 100%);
    background: -webkit-linear-gradient(top, #082031 0%,#0e2c40 100%);
    background: linear-gradient(to bottom, #082031 0%,#0e2c40 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#082031', endColorstr='#0e2c40',GradientType=0 );
    -webkit-box-shadow: inset 2px 82px 178px 21px rgba(0, 0, 0, 0.48);
    -moz-box-shadow: inset 2px 82px 178px 21px rgba(0, 0, 0, 0.48);
    box-shadow: inset 2px 82px 178px 21px 
	} */
/* 
.timer{
    width: 70px;
    height: 70px;
    background-color: transparent;
    box-shadow: inset 0px 0px 0px 2px #fff;
    border-radius: 50%;
    position: absolute;
    margin: auto;
    left: 0
    right: 0;
    top: 0;
    bottom: 0;  
 }
 
 
.timer span{
    color: #fff;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
    display: block;
    text-align: center;
    margin-top: 85px;  
 }
 
 
.timer:after, .timer:before{
    position: absolute;
    content:"";
    background-color: #fff;
}
.timer:after{
    width: 27px;
    height: 2px;
    top: 33px;
    left: 33px;
    -webkit-transform-origin: 1px 1px;
    -moz-transform-origin: 1px 1px;
    transform-origin: 1px 1px;
    -webkit-animation: minhand 2s linear infinite;
    -moz-animation: minhand 2s linear infinite;
    animation: minhand 2s linear infinite;
}

.timer:before{
    width: 30px;
    height: 2px;
    top: 33px;
    left: 33px;
    -webkit-transform-origin: 1px 1px;
    -moz-transform-origin: 1px 1px;
    transform-origin: 1px 1px;
    -webkit-animation: hrhand 8s linear infinite;
    -moz-animation: hrhand 8s linear infinite;
    animation: hrhand 8s linear infinite;
}

@-webkit-keyframes minhand{
    0%{-webkit-transform:rotate(0deg)}
    100%{-webkit-transform:rotate(360deg)}
}
@-moz-keyframes minhand{
    0%{-moz-transform:rotate(0deg)}
    100%{-moz-transform:rotate(360deg)}
}
@keyframes minhand{
    0%{transform:rotate(0deg)}
    100%{transform:rotate(360deg)}
}

@-webkit-keyframes hrhand{
    0%{-webkit-transform:rotate(0deg)}
    100%{-webkit-transform:rotate(360deg)}
}
@-moz-keyframes hrhand{
    0%{-moz-transform:rotate(0deg)}
    100%{-moz-transform:rotate(360deg)}
}
@keyframes hrhand{
    0%{transform:rotate(0deg)}
    100%{transform:rotate(360deg)}
} */

ul,
li {
  list-style: none;
}

.dropdown {
  float: left;
  overflow: hidden;
  z-index: 100;
  font-weight: 600;
}

.dropdown .dropbtn {
  color: #fff;
  font-size: 16px;
  position: relative;
}

.dropdown {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
}

.dropdown-content {
  z-index: 1;
  font-size: 14px;
  display: none;
}

.dropdown:hover .dropdown-content {
  display: block;
  padding-top: 20px;
}
.dropdown-content a {
  float: none;
  color: white;
  text-decoration: none;
  display: block;
  text-align: left;
  margin-left: 4px;
}

.dropdown-content a:hover {
  background-color: var(--deepgray);
  border-radius: 5px;
}

@media (min-width: 1200px) {
  .dropdown {
    margin-bottom: -20px;
  }
  .dropdown .dropbtn {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    padding: 0px 25px;
    position: relative;
    padding-bottom: 20px;
    z-index: 1000;
  }
  .dropbtn:after {
    content: "";
    height: 2px;
    width: calc(100% - 50px);
    background: #fff;
    bottom: 10px;
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
    transform: scaleX(0);
  }

  .dropbtn:hover:after {
    content: "";
    height: 2px;
    width: calc(100% - 50px);
    background: #fff;
    bottom: 10px;
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    transform: scaleX(1);
    transform-origin: bottom left;
  }

  .dropdown-content:hover ~ .dropbtn:after {
    content: "";
    height: 2px;
    width: calc(100% - 50px);
    background: #fff;
    bottom: 10px;
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    transform: scaleX(1);
    transform-origin: bottom left;
  }

  .dropbtn > svg {
    transition: ease-in-out 0.2s;
  }
  .dropdown-content:hover + .dropbtn > svg {
    transform: rotate(180deg);
    transition: ease-in-out 0.2s;
  }
  .dropbtn:hover > svg {
    transform: rotate(180deg);
    transition: ease-in-out 0.2s;
  }
  .dropdown:hover .dropdown-content {
    visibility: visible;
    opacity: 100%;
    transition: cubic-bezier(0.77, -0.03, 1, 1) 0.2s;
  }
  .dropdown-content {
    visibility: hidden;
    opacity: 0%;
    position: absolute;
    min-width: 160px;
    background: rgba(1, 12, 28, 0.82);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(14.5px);
    -webkit-backdrop-filter: blur(14.5px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-top: 40px;
    z-index: 1000;
    padding: 12px 6px;
    font-size: 14px;
    transition: ease-out 0.2s;
  }

  .dropdown-content a {
    padding: 12px 18px;
  }
  .dropdown {
    flex-direction: column;
    align-items: unset;
  }
}

/*------------------------------------------------------------------
	3. megamenu Styles
-------------------------------------------------------------------*/
/* 
.megamenu .nav,
.megamenu .collapse,
.megamenu .dropup,
.megamenu .dropdown {
  position: static;
  -webkit-transition: all 0s ease-in-out;
  -moz-transition: all 0s ease-in-out;
  -o-transition: all 0s ease-in-out;
  -ms-transition: all 0s ease-in-out;
  transition: all 0s ease-in-out;
}

.megamenu .container {
  position: relative;
  -webkit-transition: all 0s ease-in-out;
  -moz-transition: all 0s ease-in-out;
  -o-transition: all 0s ease-in-out;
  -ms-transition: all 0s ease-in-out;
  transition: all 0s ease-in-out;
}

.megamenu .dropdown-menu {
  left: auto;
  -webkit-transition: all 0s ease-in-out;
  -moz-transition: all 0s ease-in-out;
  -o-transition: all 0s ease-in-out;
  -ms-transition: all 0s ease-in-out;
  transition: all 0s ease-in-out;
}

.megamenu .megamenu-content {
  padding: 15px;
  -webkit-transition: all 0s ease-in-out;
  -moz-transition: all 0s ease-in-out;
  -o-transition: all 0s ease-in-out;
  -ms-transition: all 0s ease-in-out;
  transition: all 0s ease-in-out;
}

.megamenu .megamenu-content h3 {
  margin-top: 0;
  color: #428bca;
  font-size: 18px;
  -webkit-transition: all 0s ease-in-out;
  -moz-transition: all 0s ease-in-out;
  -o-transition: all 0s ease-in-out;
  -ms-transition: all 0s ease-in-out;
  transition: all 0s ease-in-out;
}

.megamenu .dropdown.megamenu-fw .dropdown-menu {
  left: 0;
  right: 0;
  -webkit-transition: all 0s ease-in-out;
  -moz-transition: all 0s ease-in-out;
  -o-transition: all 0s ease-in-out;
  -ms-transition: all 0s ease-in-out;
  transition: all 0s ease-in-out;
}

.megamenucontainpadding {
  padding: 40px 80px;
}

.megamenucontainpadding .megamenu-hosting {
  display: block;
  float: left;
  width: 100%;
}

.megamenucontainpadding .megamenu-hosting a > i {
  float: left;
  margin-right: 16px;
}

.megamenucontainpadding .megamenu-hosting a > i:before {
  margin-left: 0;
  font-size: 55px;
  color: #d1d7da;
}

.megamenucontainpadding .megamenu-hosting .tittlespan {
  display: block;
  padding-top: 20px;
  font-weight: bold;
  float: left;
  text-transform: uppercase;
  font-size: 18px;
  color: #3a7196;
  margin-bottom: 3px;
}

.megamenucontainpadding .megamenu-hosting .subtittlespan {
  display: block;
  float: left;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  line-height: 20px;
  color: #7b868e;
  font-size: 13px;
} */

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

.banner-jpmbp img {
  width: 100%;
}

/*------------------------------------------------------------------
	5. header Styles
-------------------------------------------------------------------*/

@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    right: auto;
    left: auto;
  }

  .navbar-right .login-areadwn {
    right: 0 !important;
  }
}

header {
  /* position: relative; */
  /* max-height: 750px; */
  /* min-height: min-content; */

  /* Gradients from https://cssgradient.io | Do not seem to work every time yet? */
  /* background: linear-gradient(
    90deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(9, 9, 121, 1) 35%,
    rgba(0, 212, 255, 1) 100%
  );
  /* Fall back to gradient while loading svg */
  background: url(/img/FHbanner.svg),
    linear-gradient(
      90deg,
      rgb(5 15 33) 0%,
      rgb(6 18 38) 35%,
      rgba(2, 13, 28, 1) 100%
    ) !important;
  -webkit-box-shadow: inset 2px 82px 178px 21px rgba(0, 0, 0, 0.48);
  -moz-box-shadow: inset 2px 82px 178px 21px rgba(0, 0, 0, 0.48);
  box-shadow: inset 2px 82px 178px 21px rgba(0, 0, 0, 0.48);
}

/* .webp header {
  background: url(/img/FH-herospace.webp) !important;
  /* background: url(/img/FH-herospace-min.png) !important; 
}

.no-webp header {
  background: url(/img/FH-herospace-min.png) !important;
} */

/* header:after {
  content: "";
  width: 100%;
  max-width: 1226px;
  height: 362px;
  background: url(../img/helf-sercl.png) no-repeat top center;
  position: absolute;
  bottom: 0;
  margin: 0 auto;
  left: 0;
  right: 0;
} */

/*------------------------------------------------------------------
	6. header animation Styles
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
	7. logo Styles
-------------------------------------------------------------------*/

.logo-simple:hover,
.logo-simple:focus {
  color: #fff;
}

.logo-simple span {
  font-weight: 300;
  font-size: 25px;
  text-transform: none;
}

.logo-simple span {
  font-weight: 300;
  font-size: 25px;
  text-transform: none;
}

.logo-simple b {
  margin-left: 3px;
}
.panel-btn {
  display: flex;
  width: 100%;
  padding-bottom: 100px;
}
/*------------------------------------------------------------------
	8. nav Styles
-------------------------------------------------------------------*/

.main-nav .navbar-right > li > a {
  font-weight: 600;
}
@media (min-width: 1200px) {
  .logo-mobile-container {
    display: none;
  }
  .panel-btn {
    display: none !important;
  }

  .main-nav .navbar-right > li > a {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    padding: 0px 25px;
    position: relative;
  }
  .main-nav .navbar-right > li > a:after {
    content: "";
    height: 2px;
    width: calc(100% - 50px);
    background: #fff;
    bottom: -10px;
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;

    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
    transform: scaleX(0);
  }
  .main-nav .navbar-right > li > a:hover:after {
    content: "";
    height: 2px;
    width: calc(100% - 50px);
    background: #fff;
    bottom: -10px;
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    transform: scaleX(1);
    transform-origin: bottom left;
  }

  .main-nav .navbar-right > li > a:hover,
  .main-nav .navbar-right > li > a:focus,
  .main-nav .navbar-right > li > a:active {
    color: #fff;
  }

  .main-nav:after {
    content: "";
    /* background: url(../img/under-header.png) no-repeat top center; */
    height: px;
    width: 100%;
    opacity: 0.1;
  }
}
/*------------------------------------------------------------------
	9. btn Styles
-------------------------------------------------------------------*/

/* .login-btn {
  background: var(--blue);
  color: #ffffff;
  padding: 10px 32px !important;
  margin: 34px 0px;
  margin-left: 17px;
  -webkit-box-shadow: 0px 0px 43px -1px rgba(0, 0, 0, 0.95);
  -moz-box-shadow: 0px 0px 43px -1px rgba(0, 0, 0, 0.95);
  box-shadow: 0px 0px 43px -1px rgba(0, 0, 0, 0.95);
}

.login-btn:after {
  display: none;
}

.login-btn:hover,
.login-btn:focus {
  background: #294dcb !important;
} */
/*------------------------------------------------------------------
	10. domain search Styles
-------------------------------------------------------------------*/

.hero-section {
  padding-top: 64px;
  text-align: center;
  z-index: 99;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .hide-mascot {
    display: none;
  }

  .hero-section {
    padding-top: 32px;
  }
}

.hero-section .hero-title {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3rem);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: unset;
}

/*------------------------------------------------------------------
	11. fetures Styles
-------------------------------------------------------------------*/

#hero-features-section {
  /* background: #f2f3f3; */
  margin-top: -80px;
}
#hero-features-section .hero-features-card {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 100%;
  /* box-shadow: 5px 19px 25px -3px rgba(0, 0, 0, 0.15); */
  /* padding-bottom: 72px; */
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  height: 100%;
  border-top: solid 2px var(--lightgray);
  padding: 10px 24px 12px 24px;
}
#hero-features-section .hero-features-card.leftmost {
  border-top-left-radius: 10px !important;
  border-top-right-radius: 10px !important;
}
@media (min-width: 501px) {
  #hero-features-section .hero-features-card.leftmost {
    border-top-right-radius: unset !important;
  }

  #hero-features-section .hero-features-card.rightmost-tablet {
    border-top-right-radius: 10px !important;
  }

  #hero-features-section .hero-features-card.leftunder-tablet {
    border-left: unset;
  }
}

@media (min-width: 1050px) {
  #hero-features-section .hero-features-card.rightmost {
    border-top-right-radius: 10px !important;
  }

  #hero-features-section .hero-features-card.rightmost-tablet {
    border-top-right-radius: unset !important;
  }

  #hero-features-section .hero-features-card.leftunder-tablet {
    border-left: solid 2px var(--lightgray);
  }
}

#hero-features-section .hero-features-card i:before {
  font-size: 50px;
  margin-left: 0;
  color: var(--blue);
  z-index: 3;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#hero-features-section .hero-features-card:hover i:before {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  color: var(--blue);
}

#hero-features-section .hero-features-card h5 {
  z-index: 3;
  position: relative;
  margin: unset;
  margin-left: 8px;
}

#hero-features-section .hero-features-card:hover h5 {
  color: #333333;
}
#hero-features-section .hero-features-card p {
  font-weight: 400;
  font-size: 14px;
  color: var(--gray);
  z-index: 3;
  position: relative;
  text-align: left;
}

#hero-features-section .hero-features-card a {
  display: block;
  margin: 0 -20px;
  padding: 11px;
  text-transform: uppercase;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
  text-decoration: none;
  background: var(--darkgray);
  /* background: rgb(12,40,59); */
  /* background: -moz-linear-gradient(top, rgba(12,40,59,1) 0%, rgba(0,35,58,1) 100%);
    background: -webkit-linear-gradient(top, rgba(12,40,59,1) 0%,rgba(0,35,58,1) 100%);
    background: linear-gradient(to bottom, rgba(12,40,59,1) 0%,rgba(0,35,58,1) 100%); */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0c283b', endColorstr='#00233a',GradientType=0 );
  opacity: 1;
  z-index: 3;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: absolute;
  bottom: 0;
  width: 100%;
}

/* #hero-features-section .hero-features-card span {
  font-weight: 500;
  line-height: 20px;
  font-size: 13px;
  z-index: 3;
  position: relative;
  display: block;
  color: #fff;
} */

/* .cardfooter {
  padding: 11px;
  text-transform: uppercase;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;

  color: #fff;
  text-decoration: none;
  margin: 0px -20px;
  position: absolute;
  width: 100%;
  bottom: 0;
} */

.card-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bluegray);
  padding: 25px 0px;
  border-radius: 0px 0px 10px 10px;
}

.card-footer.favorite {
  background-color: var(--darkgray) !important;
}

#hero-features-section .hero-features-card:before {
  content: "";
  background: var(--lightgray);
  width: 900px;
  height: 600px;
  position: absolute;
  border-radius: 550px;
  -webkit-transform: translate(-1000px, -400px) rotate(130deg);
  transform: translate(-1000px, -400px) rotate(130deg);
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
  z-index: 0;
}
#hero-features-section .hero-features-card:after {
  content: attr(data-word);
  color: white;
  font-size: 2em;
  position: relative;
  z-index: 100;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-weight: 200;
}
#hero-features-section .hero-features-card:hover:after {
  font-size: 2.2em;
}
#hero-features-section .hero-features-card:hover:before {
  -webkit-transform: translate(-230px, -300px) rotate(130deg);
  transform: translate(-230px, -300px) rotate(130deg);
}

.hero-features {
  background-color: var(--white);
  z-index: 100;
  border-radius: 10px;
}

.hf-head {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  #hero-features-section .hero-features-card {
    border-top: unset;
    border-left: solid 2px var(--lightgray);
    padding: 20px 25px;
  }
}

/*------------------------------------------------------------------
	12. hosting plans Styles
-------------------------------------------------------------------*/

/* #hosting-plans {
  padding: 80px 0px;
} */

#hosting-plans .head-tittle {
  text-align: center;
}

#hosting-plans .head-tittle h5 {
  background: #08263b;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 14px;
  max-width: 275px;
  margin: auto;
  border-radius: 40px;
  -webkit-box-shadow: 0px 0px 43px -1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 43px -1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 43px -1px rgba(0, 0, 0, 0.05);
}

#hosting-plans .head-tittle span {
  background: var(--lightgray);
  margin: auto;
  margin-top: -5px;
  display: block;
  max-width: 250px;
  padding: 7px;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  color: #8094a2;

  font-size: 13px;
}

.boldtrin {
  position: absolute !important;
  left: 0;
}

.boldtrin b {
  z-index: 1;
  position: relative;
  font-size: 23px;
  text-transform: uppercase;
  -ms-transform: rotate(-41deg);
  -webkit-transform: rotate(-41deg);
  transform: rotate(-41deg);
  color: #fff;
  display: block;
  padding: 0px;
  margin-left: 19px;
}
.boldtrin:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 105px 120px 0 0;
  border-color: #f3ee5a transparent transparent transparent;
  left: 0;
  top: -30px;
  position: absolute;
}

/* #hosting-plans .pricing-container {
  display: flex;
  gap: 25px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  #hosting-plans .pricing-container {
    flex-direction: column;
  }
} */
.popular-plan {
  -webkit-box-shadow: 0px 0px 43px -1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 43px -1px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 43px -1px rgba(0, 0, 0, 0.1);
  transform: scale(1.02);
}

#hosting-plans .pricing-container .plan:hover {
  -webkit-box-shadow: 0px 0px 43px -1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 43px -1px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 43px -1px rgba(0, 0, 0, 0.1);
  transform: scale(1.02);
}

#hosting-plans .pricing-container .popular-plan:hover {
  -webkit-box-shadow: 0px 0px 43px -1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 43px -1px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 43px -1px rgba(0, 0, 0, 0.1);
  transform: scale(1.04);
}

#hosting-plans .pricing-container .spsl-plan {
  margin-top: -20px;
  position: relative;
  border-radius: 10px;
}

/* #hosting-plans .pricing-container .spsl-plan .plans-footer a{
    font-weight: bold;
    
    border: 2px solid var(--blue);
    padding: 7px 40px;
    border-radius: 5px;
    text-decoration: none;
	color: #fff !important;
    background: var(--blue);
}

#hosting-plans .pricing-container .spsl-plan .plans-footer a:hover{
    color: var(--blue) !important;
    background: var(--bluegray) !important;
    text-decoration: none;
} */

#hosting-plans .plan {
  display: flex;
  flex-direction: column;
  flex-basis: 307px;
  flex-grow: 1;
  max-width: 380px;
}
#hosting-plans .plan .product-card .plan-head {
  text-align: left;
  padding: 40px 24px;
  position: relative;
  display: flex;
  border-radius: 10px;
  flex-direction: column;
}

#hosting-plans .plan .product-card .plan-head span {
  color: var(--white);
  z-index: 100;
  position: relative;
}

#hosting-plans .plan .planone {
  background: url("/img/serverbgsmall.jpg");
  background-size: cover;
}
#hosting-plans .plan .plantwo {
  background: url("/img/minecraftimg-card.png");
  background-size: cover;
}

.webp #hosting-plans .plan .plantree {
  background: url("/img/Discord-banner.webp");
  background-size: cover;
}

.no-webp #hosting-plans .plan .plantree {
  background: url("/img/Discord-banner.png");
  background-size: cover;
}

.plan-head.plantwo.lazy {
  background: none !important;
  background-size: cover;
}

.no-webp #hosting-plans .pricing-container .plan .plantwo {
  background: url("/img/mcbg.jpg");
  background-size: cover;
}

.webp #hosting-plans .pricing-container .plan .plantwo {
  background: url("/img/mcbg.webp");
  background-size: cover;
}
.plan-head.plantree.lazy {
  background: none !important;
}

.webp #hosting-plans .pricing-container .plan .plantree {
  background: url("/img/discord-wallpaper.webp");
  background-size: cover;
}

.no-webp #hosting-plans .pricing-container .plan .plantree {
  background: url("/img/discord-wallpaper.webp");
  background-size: cover;
}

#hosting-plans .plan .product-card .plan-head > span {
  z-index: 2;
  position: relative;
  color: #fff;
  font-weight: bold;
  font-size: 39px;
}

#hosting-plans .pricing-container .plan .plan-head > span > b {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-size: 19px;
}
#hosting-plans .plan .product-card .plan-head > span > i {
  font-weight: 100;
  color: #fff;
  position: relative;
  z-index: 3;
  font-size: 12px;
  margin-left: 4px;
}
#hosting-plans .plan .product-card .plan-head:after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    55.44deg,
    var(--darkgray) 40.94%,
    rgba(1, 12, 28, 0) 80.56%
  );
  top: 0;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border-radius: 10px;
}

#hosting-plans .pricing-container .plan:hover .plan-head:after {
  background: rgba(53, 97, 255, 0.479);
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

#hosting-plans .pricing-container .plan .plans-tag {
  background: -webkit-linear-gradient(left, #06a8f1, #22ce9c);
  background: -o-linear-gradient(right, #06a8f1, #22ce9c);
  background: -moz-linear-gradient(right, #06a8f1, #22ce9c);
  background: var(--lightgray);
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  color: var(--darkgray);
  text-transform: uppercase;
  font-size: 13px;
  display: block;
  max-width: 140px;
  text-align: center;
  padding: 11px;
  border-radius: 41px;
  margin: auto;
  margin-top: -20px;
  position: relative;
}

/* #hosting-plans .plan .product-card .plans-body {
  background: var(--lightgray);
  margin-top: -20px;
  padding: 30px;
  padding-top: 41px;
  color: #afbac3;
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 14px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
} */

#hosting-plans .pricing-container .plan .plans-body ul {
  padding-left: 0;
}

#hosting-plans .plan .plans-body ul > li {
  list-style: none;
  margin: 12px 0;
  font-size: 14px;
  color: #9ba6af;
}

#hosting-plans .pricing-container .plan .plans-body ul > li > i {
  margin-right: 5px;
}

#hosting-plans .pricing-container .plan .plans-body ul > li:hover {
  color: #7e8a94;
}

#hosting-plans .pricing-container .plan .plans-footer {
  background: var(--lightgray);
  padding: 30px;
  text-align: center;
  /* border-top: 1px solid rgba(227, 232, 232, 0.55); */
}

/* #hosting-plans .pricing-container .plan .plans-footer a{
    color: var(--blue);
    font-weight: bold;
    
    border: 2px solid var(--blue);
    padding: 7px 40px;
    border-radius: 5px;
    text-decoration: none;
}

#hosting-plans .pricing-container .plan .plans-footer a:hover{
    color: var(--blue);
    background: var(--blue);
    text-decoration: none;
} */

#hosting-plans .pricing-container .plan .ribbon {
  position: relative;
  margin-bottom: 80px;
}

#hosting-plans .pricing-container .plan .ribbon span {
  position: absolute;
  display: -webkit-box;
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(-90deg);
  top: 28px;
  margin-left: -14px;
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.685);
}

#hosting-plans .pricing-container .plan:hover .ribbon span {
  opacity: 0;
}

#hosting-plans .pricing-container .plan .ribbon:before,
#hosting-plans .pricing-container .plan .ribbon:after {
  content: "";
  position: absolute;
}

#hosting-plans .pricing-container .plan .ribbon {
  width: 35px;
  height: 75px;
  background: var(--darkgray);
  top: -6px;
  left: 8px;
  position: absolute;
  z-index: 22;
}

#hosting-plans .pricing-container .plan:hover .ribbon {
  height: 20px;
}

#hosting-plans .pricing-container .plan .ribbon:before {
  height: 0;
  width: 0;
  border-bottom: 6px solid var(--darkgray);
  border-right: 6px solid transparent;
  right: -6px;
}
#hosting-plans .pricing-container .plan .ribbon:after {
  height: 0;
  width: 0;
  border-left: 18px solid var(--darkgray);
  border-right: 17px solid var(--darkgray);
  border-bottom: 18px solid transparent;
  bottom: -17px;
}

/* #hosting-plans .whyus {
  padding: 0px 15px;
  text-align: center;
} */

#hosting-plans .whyus h5 {
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: 1px;
  color: rgba(7, 38, 59, 0.75);
}

#hosting-plans .whyus h4 {
  font-size: 40px;
  font-weight: bold;
  text-transform: uppercase;
  color: #05253a;
}

#hosting-plans .whyus h4 > span {
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-size: 15px;
  margin-top: 5px;

  color: rgba(5, 37, 58, 0.67);
}

#hosting-plans .plans-fut {
  padding-top: 40px;
  text-align: center;
}

#hosting-plans .plans-fut .col-md-4 {
  padding: 0;
}

#hosting-plans .ftr-host {
  padding: 12px 12px;
  border-right: 1px solid #eff2f3;
  border-bottom: 1px solid #eff2f3;
  cursor: pointer;
}

#hosting-plans .no-bottm {
  border-bottom: 0;
}

#hosting-plans .no-right {
  border-right: 0;
}

#hosting-plans .ftr-host img {
  max-width: 40px;
  filter: invert(38%) sepia(91%) saturate(5560%) hue-rotate(220deg)
    brightness(107%) contrast(105%);
  /* filter: invert(100%) sepia(1%) saturate(2516%) hue-rotate(181deg)
    brightness(99%) contrast(97%); */
}

#hosting-plans .ftr-host h5 {
  font-weight: bold;
  font-size: 17px;

  letter-spacing: 1px;
  margin-top: 18px;
  color: #647a88;
}

#hosting-plans .ftr-host p {
  display: block;
  font-weight: 400;
  color: var(--gray);
}

#hosting-plans .techologhie-on-host a {
  text-align: center;
  display: block;
}

#hosting-plans .techologhie-on-host img {
  width: 65%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  opacity: 0.4;
}

#hosting-plans .techologhie-on-host img:hover {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  opacity: 0.8;
}

/*------------------------------------------------------------------
	13. facts Styles
-------------------------------------------------------------------*/

/*------------------------------------------------------------------
	15. footer Styles
-------------------------------------------------------------------*/

#footer-area {
  background: #020e1ffa !important;
  position: relative;
}

#footer-area .phone-support {
  padding: 16px 33px;
  margin-right: 40px;
  margin-top: -30px;
}

#footer-area .phone-support h6 {
  font-size: 26px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 0;
}

#footer-area .phone-support h6 > span {
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-size: 15px;
}

#footer-area .phone-support b {
  color: #86c724;
  font-size: 32px;
  text-transform: uppercase;
}

#footer-area .msj-send-area {
  margin-left: 50px;
}

#footer-area .msj-send-area .head-tittle {
  color: #e5e8ea;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
}

#footer-area .msj-send-area #ajax-contact {
  margin-top: 20px;
}

#footer-area .msj-send-area #ajax-contact .col-md-5 {
  padding-left: 0;
}

#footer-area .msj-send-area #ajax-contact input[type="text"] {
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-weight: 100;

  border: 0;
  padding: 11px;
  font-size: 13px;
  margin-bottom: 6px;
  border-radius: 3px;
}

#footer-area .msj-send-area #ajax-contact input[type="email"] {
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-weight: 100;

  border: 0;
  padding: 11px;
  font-size: 13px;
  margin-bottom: 6px;
  border-radius: 3px;
}

#footer-area .msj-send-area #ajax-contact .col-md-7 {
  padding-left: 0;
}

#footer-area .msj-send-area #ajax-contact .col-md-7 textarea {
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-weight: 100;

  border: 0;
  padding: 11px;
  font-size: 13px;
  margin-bottom: 6px;
  border-radius: 3px;
  min-height: 86px;
}

#footer-area .msj-send-area #ajax-contact button {
  background: #c092dc;
  display: block;
  color: #fff;
  border: 0;
  padding: 10px 60px;
  float: right;
  margin-right: 15px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 15px;
  border-radius: 50px;
}

#footer-area .msj-send-area #ajax-contact button:hover {
  background: #9e72b9;
}

#footer-area .msj-send-area .success {
  padding: 1em;
  color: #ffffff;
  background-color: #8bc34a;
  border: 1px solid rgb(124, 175, 65);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  margin-bottom: 0;
  margin-right: 15px;
  margin-top: 14px;
}

#footer-area .msj-send-area .error {
  padding: 1em;
  color: #ffffff;
  background-color: #f44336;
  border: 1px solid rgba(185, 74, 72, 0.3);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  margin-bottom: 0;
  margin-right: 15px;
  margin-top: 14px;
}

#footer-area .spacing {
  display: block;
  width: 100%;
  margin-top: 30px;
}

#footer-area .footer-links h3 {
  color: #fff;
  font-weight: bold;
  margin-top: 27px;
}

#footer-area .footer-links ul {
  padding-left: 0;
  margin-top: 20px;
}

#footer-area .footer-links ul > li > a {
  font-size: 16px;
  color: #8b969e;

  display: block;
  margin: 5px 0;
  text-decoration: none;
  text-shadow: 1px 2px 3px rgba(27, 36, 43, 0.48);
}

#footer-area .footer-links ul > li > a:hover {
  color: #fff;
  text-decoration: none;
}

#footer-area .footer-cntct-info {
  padding: 20px 0px;

  text-align: right;
}

#footer-area .footer-cntct-info .footer-logo {
  font-size: 35px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

#footer-area .footer-cntct-info .footer-logo span {
  font-weight: 100;
}

#footer-area .address {
  font-size: 14px;
  color: #8b969e;
  margin: 12px 0;
}

#footer-area .address span {
  display: block;
}

#footer-area .mobandmail {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  color: #a7b0b7;
  margin: 19px 0;
}

#footer-area .mobandmail span {
  display: block;
}
#footer-area .mobandmail span > b {
  color: #d2d8dc;
}

/* End carousel */

.item blockquote {
  border-left: none;
  margin: 0;
}

.item blockquote img {
  margin-bottom: 10px;
}

/* .item blockquote p:before {
    content: "\f10d";
    font-family: 'Fontawesome';
    float: left;
    margin-right: 10px;
} */

/**
  MEDIA QUERIES
*/

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
  #quote-carousel {
    margin-bottom: 0;
    padding: 0 40px 30px 40px;
    margin-top: 30px;
  }
}

/* Small devices (tablets, up to 768px) */
@media (max-width: 768px) {
  /* Make the indicators larger for easier clicking with fingers/thumb on mobile */

  #quote-carousel .carousel-indicators {
    bottom: -20px !important;
  }
  #quote-carousel .carousel-indicators li {
    display: inline-block;
    margin: 0px 5px;
    width: 15px;
    height: 15px;
  }
  #quote-carousel .carousel-indicators li.active {
    margin: 0px 5px;
    width: 20px;
    height: 20px;
  }
}

.why-tittle {
  font-size: 30px;
  font-weight: bold;
  text-transform: uppercase;
  color: #05253a;
}

.why-tittle span {
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-size: 15px;
  margin-top: 5px;

  color: rgba(5, 37, 58, 0.67);
}

#page-helf-photo {
  float: none;
  width: 100%;
  border-bottom: 1px solid #edeeef;
  padding-bottom: 0;
  max-width: 1400px;
  margin: auto 0;
  text-align: center;
}

#page-helf-photo .left-helf-of-page {
  background: url(../img/demo/back.jpg) no-repeat top right;
  min-height: 437px;
  width: 50%;
  float: left;
  display: block;
  background-size: 900px;
  -webkit-box-shadow: 0px 0px 43px -1px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 0px 43px -1px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 43px -1px rgba(0, 0, 0, 0.1);
}

#page-helf-photo .right-helf-of-page {
  float: left;
  width: 50%;
  padding: 60px;
  padding-bottom: 0;
}

#page-helf-photo .right-helf-of-page h5 {
  font-size: 25px;
  text-transform: uppercase;
  font-weight: bold;
  color: #05253a;
}

#page-helf-photo .right-helf-of-page p {
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-size: 14px;

  color: rgba(5, 37, 58, 0.67);
  margin-top: 20px;
  line-height: 25px;
}

.info-sec-serv-fet h5 {
  font-weight: bold;
  font-size: 30px;
  text-transform: uppercase;
  color: #05253a;
  margin-bottom: 50px;
}

.info-sec-serv-fet h5 > span {
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-size: 15px;
  margin-top: 5px;

  color: rgba(5, 37, 58, 0.67);
  margin-left: 0;
}

.info-sec-serv-fet p {
  display: block;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-size: 13.5px;
  margin-top: 5px;

  color: rgba(5, 37, 58, 0.8);
  padding: 1px 10px;
}

.info-sec-serv-fet p > i {
  color: #8bc34a;
  font-size: 15px;
  margin-right: 8px;
}
.info-sec-serv-fet span {
  display: block;
  margin-top: 30px;
  margin-left: 10px;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  font-size: 15px;
}

/*------------------------------------------------------------------
	THE END
-------------------------------------------------------------------*/

.cntct-footer {
  background: var(--lightgray);
  display: block;
  float: left;
  width: 100%;

  margin-right: 40px;
  margin-top: -30px;
}

#footer-area .phone-support {
  padding: 16px 33px;

  margin-right: 0;
  margin-top: 0;
  background: #fff;
  -webkit-box-shadow: 0px 0px 43px -1px rgba(0, 0, 0, 0.01);
  -moz-box-shadow: 0px 0px 43px -1px rgba(0, 0, 0, 0.01);
  box-shadow: 0px 0px 43px -1px rgba(0, 0, 0, 0.01);
}

#footer-area .msj-send-area .head-tittle {
  color: #87939c;
  font-family: "Roboto", sans-serif;
  font-weight: 100;

  font-size: 13px;
}

#footer-area .msj-send-area #ajax-contact {
  margin-top: 10px;
  float: left;
  width: 100%;
}

#footer-area .msj-send-area #ajax-contact button:focus {
  outline: 0;
}

.hosing-pakages {
  position: relative;
}

.hosing-pakages:before {
  font-family: Flaticon;
  font-style: normal;
  content: "\f13b";
  color: rgba(255, 255, 255, 0.06);
  margin-left: 0;
  position: absolute;
  font-size: 128px;
  left: -20px;
  top: 40px;
}

#footer-area .footer-links h3,
#footer-area .footer-links ul {
  position: relative;
}

#footer-area .footer-links h3,
#footer-area .footer-links ul > li {
  list-style: none;
}

.footer-links {
  -webkit-flex-flow: wrap row;
  flex-flow: wrap row;
}

.footer-links h3 {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
}

.services-pakages {
  position: relative;
}

.services-pakages:before {
  font-family: Flaticon;
  font-style: normal;
  content: "\f1bb";
  color: rgba(255, 255, 255, 0.06);
  margin-left: 0;
  position: absolute;
  font-size: 128px;
  left: -40px;
  top: 40px;
}

.company-pakages {
  position: relative;
}

.company-pakages:before {
  font-family: Flaticon;
  font-style: normal;
  content: "\f17e";
  color: rgba(255, 255, 255, 0.06);
  margin-left: 0;
  position: absolute;
  font-size: 128px;
  left: -60px;
  top: 40px;
}

.faqcontainerspacing {
  justify-content: space-between;
  margin-top: 40px;
  flex-direction: row;
}
@media (max-width: 992px) {
  .faqcontainerspacing {
    justify-content: space-between;
    margin-top: 32px;
    display: flex;
    flex-direction: column;
  }
}

.faqcolumn {
  display: flex;
  flex-direction: column;
  width: 50%;
}

@media (max-width: 992px) {
  .faqcolumn {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}

@media (min-width: 992px) {
  .faqrow {
    display: flex;
  }
}

@media screen and (max-width: 1200px) {
  .padbot {
    padding-bottom: 10px;
  }

  /* .login-btn{
    display:none  !important;
} */

  .navbar-toggle .icon-bar {
    background: #fff;
  }

  /* .navbar-toggle {
    position: relative;
    float: right;
    padding: 9px 10px;
    margin-top: 41px;
    margin-right: 15px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
} */

  .satellite {
    display: none;
  }
  .space-ship {
    display: none;
  }

  #footer-area .phone-support:after {
    display: none;
  }

  .navbar-toggle .icon-bar {
    background: #fff;
  }

  .hero-section .big-title {
    font-size: 20px;
  }

  .hero-section .head-light-title > span {
    line-height: 0;
    margin-top: 14px;
    display: block;
  }

  /* #hero-features-section .col-md-3 {
    width: 50%;
    float: left;
    padding-right: 0;
    padding-left: 5px;
  } */

  #hosting-plans .plan {
    margin-bottom: 30px;
  }

  #hosting-plans .plans-fut .col-md-4 {
    width: 50%;
    float: left;
  }

  #hosting-plans .plans-fut .phone-no-last .col-md-4:last-child {
    display: none;
  }

  #hosting-plans .techologhie-on-host .col-md-2 {
    width: 16.66666667%;
    float: left;
  }

  #hosting-plans .techologhie-on-host img {
    width: 100%;
  }

  #hosting-plans .pricing-container .plan .planone,
  #hosting-plans .pricing-container .plan .plantwo,
  #hosting-plans .pricing-container .plan .plantree {
    background-size: cover;
  }

  .col-md-full-cos {
    width: 100% !important;
  }

  #footer-area .phone-support {
    margin-right: 0;
  }

  ul.social-links {
    text-align: center;
  }

  ul.social-links .social-icon {
    float: none;
    display: -webkit-inline-box;
  }

  #footer-area .msj-send-area {
    margin-left: 0;
  }

  #footer-area .spacing {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .footer-links .col-md-3 {
    float: left;
    width: 50%;
  }
  .footer-links .col-md-3 a > img {
    display: none;
  }

  #footer-area .footer-cntct-info {
    text-align: left;
  }
}

@media (min-width: 991px) and (max-width: 1024px) {
  .side-bar-quastions {
    width: 280px;
  }

  .plans-non {
    max-width: 230px;
  }
}

@media (max-width: 1200px) {
  .offcanvas-stop-scrolling {
    height: 100%;
    overflow: hidden;
  }

  .navbar-default .navbar-offcanvas {
    background-color: #f8f8f8;
  }

  .navbar-inverse .navbar-offcanvas {
    background-color: #222;
  }
  .navbar-right {
    margin-top: 40px;
  }
  .navbar-offcanvas {
    position: fixed;
    width: 100%;
    max-width: 250px;
    left: -251px;
    top: 0;
    padding-left: 15px;
    padding-right: 15px;
    z-index: 2000;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in;
    overflow: auto;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    flex-direction: column;
    padding-top: 62px;
  }
  .navbar-offcanvas.in {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    background: var(--darkgray);
    overflow: auto;
  }

  .navbar-offcanvas.in ul > li > a {
    color: #fff;
    padding: intiial;
  }
  .navbar-offcanvas.navbar-offcanvas-fade {
    opacity: 0;
  }
  .navbar-offcanvas.navbar-offcanvas-fade.in {
    opacity: 1;
  }
  .navbar-offcanvas.offcanvas-transform.in {
    -webkit-transform: translateX(250px);
    -ms-transform: translateX(250px);
    transform: translateX(250px);
  }
  .navbar-offcanvas.offcanvas-position.in {
    left: 0;
  }
  .navbar-offcanvas.navbar-offcanvas-right {
    left: auto;
    right: -250px;
  }
  .navbar-offcanvas.navbar-offcanvas-right.offcanvas-transform.in {
    -webkit-transform: translateX(-250px);
    -ms-transform: translateX(-250px);
    transform: translateX(-250px);
  }
  .navbar-offcanvas.navbar-offcanvas-right.offcanvas-position.in {
    left: auto;
    right: 0;
  }
  .navbar-offcanvas.dropdown.active .caret {
    border-top: 0;
    border-bottom: 4px solid;
  }
  .navbar-offcanvas.dropdown-menu {
    position: relative;
    width: 100%;
    border: inherit;
    box-shadow: none;
    -webkit-transition: height 0.15s ease-in;
    transition: height 0.15s ease-in;
  }
  .navbar-offcanvas.dropdown-menu.shown {
    display: block;
    margin-bottom: 10px;
  }

  .offcanvas-toggle {
    display: block;
    color: var(--white);
  }

  .navbar-header {
    width: 100%;
    margin: 0 !important;
    display: flex;
    justify-content: space-between;
  }

  .navbar-form {
    float: none !important;
    padding: 10px 15px;
    margin: 8px -15px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 1px 0 rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 1px 0 rgba(255, 255, 255, 0.1);
  }
  .navbar-form .form-group {
    width: 100%;
    margin-bottom: 5px;
  }
  .navbar-form .form-group input {
    width: 100%;
  }

  .navbar-nav li {
    float: none;
  }
  .navbar-nav li a {
    padding-top: 10px;
    padding-bottom: 10px;
    color: white;
  }
  .navbar-nav li.dropdown.open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

.offcanvas-toggle .icon-bar {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.offcanvas-toggle.is-open .btmone {
  -webkit-transform: rotate(-45deg) translate(4px, -4px);
  -ms-transform: rotate(-45deg) translate(4px, -4px);
  transform: rotate(-45deg) translate(4px, -4px);
}
.offcanvas-toggle.is-open .icon-bar:nth-child(2) {
  opacity: 0;
}
.offcanvas-toggle.is-open .icon-bar:nth-child(3) {
  -webkit-transform: rotate(45deg) translate(1px, 1px);
  -ms-transform: rotate(45deg) translate(1px, 1px);
  transform: rotate(45deg) translate(1px, 1px);
}

@media (min-width: 991px) and (max-width: 1024px) {
  .megamenucontainpadding .megamenu-hosting .tittlespan {
    display: block;
    padding-top: 20px;
    font-weight: bold;
    float: left;
    text-transform: uppercase;
    font-size: 14px;
    color: #3a7196;
    margin-bottom: 3px;
  }

  .megamenucontainpadding .megamenu-hosting .subtittlespan {
    display: block;
    float: left;
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    line-height: 20px;
    color: #7b868e;
    font-size: 12px;
  }
}

.shadow {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2) !important;
}

.mcpanel.lazy {
  background-image: none !important;
}

.webp .mcpanel {
  background-image: url("/img/mcpanel.webp");
  box-shadow: 0px 0px 10px 3px rgba(22, 23, 24, 0.432);
}
.no-webp .mcpanel {
  background-image: url("/img/mcpanel.png");
}

.faqHeader {
  font-size: 27px;
  margin: 20px;
}

.panel-heading [data-toggle="collapse"]:after {
  float: right;
  color: #f58723;
  font-size: 18px;
  line-height: 22px;
  /* rotate "play" icon from > (right arrow) to down arrow */
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.panel-heading [data-toggle="collapse"].collapsed:after {
  /* rotate "play" icon from > (right arrow) to ^ (up arrow) */
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  color: #454444;
}

.featurelist ul li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
}

.featurelist ul li {
  color: var(--lightgray);
  list-style: none;
  display: flex;
  font-size: 16px;
  position: relative;
  /* padding-left: 4px; */
  width: 100%;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}

.CTA {
  box-shadow: 0 0 43px -1px rgba(0, 0, 0, 0.45);
  font-weight: 500;
  display: flex;
  margin-top: 52px;
  font-size: 20px;
  white-space: initial;
}

.CTA:hover {
  color: white;
}

#hosting-plans {
  overflow: hidden;
}

#hosting-plans .ftr-host {
  border: 0 !important;
}
#hosting-plans .ftr-host p {
}

/* custom css ruben */

.z-900 {
  z-index: 900;
}

.korting {
  display: flex;
  max-width: 1170px;
  margin: auto;
  padding: 0 15px;
  position: relative;
  margin-top: -40px;
  align-items: unset;
  justify-content: unset;
}

.korting a {
  z-index: 20;
  font-size: 16px;
  margin-top: 3px;
  margin-left: 12px;
  font-weight: 600;
  color: black;
  text-decoration: none;
}

.korting svg {
  width: 270px;
  height: 2.2em;
  margin-left: 1px;
}

.klanten-btn {
  font-weight: 600;
  padding: 8px 30px !important;
  border-radius: 5px;
  text-decoration: none;
  color: var(--darkgray);
  background: var(--lightgray);
  font-size: 17px;
  white-space: initial;
  margin-left: 0px;
  position: relative;
  letter-spacing: 1px;
  -webkit-box-shadow: 0px 0px 43px -1px rgba(0, 0, 0, 0.95);
  -moz-box-shadow: 0px 0px 43px -1px rgba(0, 0, 0, 0.95);
  box-shadow: 0px 0px 43px -1px rgba(0, 0, 0, 0.95);
}

.klanten-btn span,
.klanten-btn svg {
  z-index: 10;
  position: relative;
  transition: 0.35s ease-in-out !important;
}

.klanten-btn:hover span,
.klanten-btn:hover svg {
  color: var(--bluegray);
  transition: 0.3s ease-in-out !important;
  transition-delay: 0.25s;
}

.klanten-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--blue);
  transform: translateX(0%);
  transition: all 0.35s ease-in-out;
  border-radius: 5px;
}
.klanten-btn:hover:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--blue);

  transform: translateX(0%);
}

@media (min-width: 1200px) {
  .klanten-btn {
    margin-right: 15px;
    margin-left: 30px;
  }
}

.discord-btn {
  background: var(--darkgray);
  color: var(--lightgray) !important;
  padding: 8px 5px 3px 5px !important;
  margin: 33px 0px;
  margin-left: 17px;
  -webkit-box-shadow: 0px 0px 43px -1px rgba(0, 0, 0, 0.95);
  -moz-box-shadow: 0px 0px 43px -1px rgba(0, 0, 0, 0.95);
  box-shadow: 0px 0px 43px -1px rgba(0, 0, 0, 0.95);
  height: 34px;
  border-radius: 5px;
}

.discord-btn svg {
  height: 18px !important;
}

.klanten-btn,
.discord-btn a:hover:after {
  height: unset !important;
}

.main-nav .navbar-right > li > a.klanten-btn:after {
  height: unset;
}

.main-nav .navbar-right > li > a.discord-btn:after {
  height: unset;
}

.panel-showcase svg {
  height: 1.2em;
}

.CTA svg {
  height: 1.3em;
  margin-left: 6px;
}

h2,
.h2 {
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: unset;
  font-size: 36px;
  line-height: 1.25;
  color: var(--darkgray);
}

h3,
.h3 {
  margin-bottom: 0px;
  margin-top: unset;
  font-size: 20px;
  color: var(--darkgray);
  font-weight: 600;
  margin-bottom: 8px;
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
  font-weight: 600;
  border-bottom: 2px solid #fff;
}

.tooltiptext {
  visibility: hidden;
  width: 128px;
  background-color: var(--white);
  color: var(--darkgray);
  text-align: center;
  border-radius: 5px;
  padding: 4px;
  position: absolute;
  z-index: 1;
  left: 50%;
  margin-top: 40px;
  opacity: 0;
  transition: opacity 0.3s;
  margin-left: -64px;
  box-shadow: rgba(22, 17, 48, 0.7) 0px 8px 12px 0px;
  font-size: 16px;
}

.tooltiptext::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -6.5px;
  border-width: 7px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}
.tooltiptext::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  margin-left: -10px;
  border-width: 10px;
  border-style: solid;
  border-color: var(--blue) transparent transparent transparent;
}

.tooltip:hover + .tooltiptext {
  visibility: visible;
  opacity: 1;
}

h5 {
  margin-bottom: 10px;
  margin-top: 20px;
  color: var(--darkgray);
}

p {
  font-size: large;
  margin-block-start: 0em;
  margin-block-end: 0em;
  color: #484848;
  font-display: swap;
  letter-spacing: 0.2px;
  line-height: 1.43;
}

@media (max-width: 500px) {
  h2,
  .h2 {
    font-size: 30px;
  }

  h3,
  .h3 {
    font-size: 18px;
  }
  p {
    font-size: 16px;
  }
}

.darkbgp {
  color: #f1f1f1 !important;
}

.centerimg {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.trustpilot-cards {
  padding: 48px 12px;
  width: 80%;
  display: flex;
  flex-direction: column;
  min-height: 400px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
}

.trustpilot-cards h3 {
  margin-bottom: 10px;
}
.tp-logo {
  height: 40px;
}
.tp-reviewer {
  margin-top: 8px;
}

.trustpilot-cards p {
  margin: unset;
}

.trustpilot-rating {
  display: flex;

  margin-top: 50px !important;
}

.trustpilot-title {
  display: flex;
}
@media (max-width: 992px) {
  .trustpilot-title {
    margin-bottom: unset;
  }
}

.stretched {
  margin-top: 40px;
  display: flex;
  gap: 30px;
  margin: unset 20px;
}
.align-bot {
  margin-top: 10px !important;
}
.tp-btn {
  background: var(--blue);
  color: #ffffff;
  padding: 6px 31px !important;

  margin: 25px 0px;
  text-decoration: none;
}

.tp-btn:hover {
  color: var(--white);
}

.blue-border {
  border-color: #3562ff;
  border-left-style: solid;
  padding-left: 10px;
  border-width: medium;
}

.panel-showcase {
  background: var(--blue);
  flex-direction: row-reverse;

  box-shadow: 5px 19px 25px -3px rgba(0, 0, 0, 0.1);
  display: flex;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 10px;
}

@media (max-width: 992px) {
  .panel-showcase {
    flex-direction: column;
    padding: 50px 0px;
  }
}

.panel-desc {
  max-width: 100%;
  padding: 18px;
}

@media (min-width: 992px) {
  .panel-desc {
    max-width: 50%;
    padding: 64px 40px;
  }
}

.panel-img {
  margin: 0px;
  background-size: cover;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .panel-img {
    padding: 0px 15px;
  }
}

@media (min-width: 992px) {
  .panel-img {
    margin: 64px 40px;
  }
}

#info .responsivelayout svg {
  height: 1.2em;
}

#textsection1 {
  padding-top: 80px;
}

.textsectionspacing {
  padding: 100px 0px;
}

@media (min-width: 1200px) {
  .head-light-title {
    white-space: nowrap;
  }

  .featurelist ul li {
    font-size: 18px;
  }
}

.secondary-btn {
  font-weight: 600;
  border: 2px solid var(--blue);
  padding: 7px 30px;
  text-decoration: none;
  color: #fff !important;
  background: var(--blue);
  font-size: 17px;
  margin-top: 5px;
  white-space: initial;
  margin-left: 0px;
}

.secondary-btn:hover {
  color: var(--blue) !important;
  background: var(--white) !important;
  text-decoration: none;
}

.faq-heading {
  color: #333;
  border-color: var(--lightgray) !important;
  border-bottom: 3px solid;
}

.blog-post {
  background-color: var(--white);
  box-shadow: 0 6px 20px -10px rgb(0 0 0 / 20%);
  display: flex;
  /* height: 180px; */
  border-radius: 10px;
  flex-direction: column;
}
.blog-image {
  background-size: cover;
  height: auto;
  max-width: 100%;
  width: 100%;
  border-radius: 10px;
}

@media (max-width: 991px) {
  .faqhide {
    margin-top: 50px;
    display: block;
    margin-bottom: 32px;
  }

  .blog-post .desc h3 {
    font-size: 18px;
  }
}

@media (min-width: 992px) {
  .faqhide {
    display: none;
  }
}
.blog-post .desc {
  padding: 24px;
}

.blog-list {
  gap: 28px;
  display: flex;
  margin-top: 10px;
}

@media (max-width: 500px) {
  .blog-list {
    flex-direction: column;
  }
}

.faq-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  margin: 8px 0px 5px 0px;
  padding-top: 5px;
}

.faq-title svg {
  height: 2em;
  min-width: 2em;
  fill: var(--deepgray);
}

.panel-body {
  background-color: var(--white);
  text-align: left;
  padding: 24px;
  border-radius: 0px 0px 10px 10px;
}

.transform {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
  transform: rotate(-90deg);
}

.transform-active {
  transform: rotate(0deg);
}
@media (max-width: 756px) {
  .spacingmobile {
    padding: 0px 15px;
  }
}
.splide__pagination {
  bottom: unset !important;
}

@media (min-width: 992px) {
  .carrousel-hide {
    display: none;
  }
}

@media (max-width: 992px) {
  .trustpilotrow-hide {
    display: none;
  }
}

.wrmkiesjijspacing {
  padding: 80px 0px;
}

.textnumber {
  position: relative;
}
.textnumber1:before {
  font-style: normal;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;

  content: "1";
  color: rgba(23, 45, 247, 0.068);
  margin-left: 0;
  position: absolute;
  font-size: 100px;
  left: -20px;
  top: -30px;
}

.textnumber2:before {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-style: normal;
  content: "2";
  color: rgba(23, 45, 247, 0.068);
  margin-left: 0;
  position: absolute;
  font-size: 100px;
  left: -20px;
  top: -30px;
}

.textnumber3:before {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-style: normal;
  content: "3";
  color: rgba(23, 45, 247, 0.068);
  margin-left: 0;
  position: absolute;
  font-size: 100px;
  left: -20px;
  top: -30px;
}

.textnumber4::before {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-style: normal;
  content: "4";
  color: rgba(23, 45, 247, 0.068);
  margin-left: 0;
  position: absolute;
  font-size: 100px;
  left: -20px;
  top: -30px;
}

/* .responsiveimg {
  width: 100%;
  max-width: 400px;
  height: auto;
} */

.responsivelayout {
  width: 48%;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .responsivelayout {
    width: 100%;
  }
}

/* .angled-asset {
    position: absolute;
    background-color: var(--darkgray);
    transform: rotate(15deg);
    width: 100%;
    height: 600px;
    z-index: -1;
    left: -200px;
} */

/* .angled-asset2 {
    position: absolute;
    background-color: var(--lightgray);
    transform: rotate(-2deg);
    width: 120%;
    height: 800px;
    z-index: -1;
    
    padding-top: 100px;
    margin-top: -250px;
    overflow: hidden;
    margin-left: -100px;
   border-radius: 100% 0% 100% 5% / 13% 81% 19% 87% ;
}

 .stars svg {
    height: 300px !important;
    opacity: 0.3;
    position: absolute;
    right: 10%;
}

 */
.white-text {
  color: var(--lightgray);
}

.accordion-toggle[aria-expanded="true"] .transform {
  transform: rotate(0deg);
}

/* From uiverse.io by @alexmaracinaru */
.passive-btn {
  border: none;
  background: none;
}

.passive-btn span {
  padding-bottom: 8px;
  letter-spacing: 3px;
  font-size: 14px;
  padding-right: 15px;
  text-transform: uppercase;
  font-weight: 700;
}

.passive-btn svg {
  transform: translateX(-8px);
  transition: all 0.3s ease;
  color: var(--blue) !important;
}

.passive-btn:hover svg {
  transform: translateX(0);
}

.passive-btn:active svg {
  transform: scale(0.9);
}

.hover-underline-animation {
  position: relative;
  color: var(--blue-white-contrast);
  padding-bottom: 20px;
}

.hover-underline-animation:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1.8px;
  bottom: 0;
  left: 0;
  background-color: var(--blue-white-contrast);
  transform-origin: bottom right;
  transition: transform 0.25s ease-out;
}

.passive-btn:hover .hover-underline-animation:after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.rect1 {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  z-index: -1;
  background: #29323e;
  mix-blend-mode: luminosity;
  opacity: 0.16;
  -webkit-transform: translate(-40%, -60%) rotate(13.85deg);
  -ms-transform: translate(-40%, -60%) rotate(13.85deg);
  transform: translate(-40%, -60%) rotate(140.85deg);
  border-radius: 30px;
  -webkit-mask-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#f1f6ff),
    to(rgba(245, 245, 245, 0))
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    #f1f6ff 0,
    rgba(245, 245, 245, 0) 100%
  );
  mask-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#f1f6ff),
    to(rgba(245, 245, 245, 0))
  );
  mask-image: linear-gradient(180deg, #f1f6ff 0, rgba(245, 245, 245, 0) 100%);
}

.rect2 {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 20%;
  top: 30%;
  z-index: -1;
  background: #fff;
  mix-blend-mode: luminosity;
  opacity: 0.05;
  -webkit-transform: translate(-40%, -60%) rotate(13.85deg);
  -ms-transform: translate(-40%, -60%) rotate(13.85deg);
  transform: translate(-40%, -60%) rotate(20.85deg);
  border-radius: 30px;
  -webkit-mask-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#f1f6ff),
    to(rgba(245, 245, 245, 0))
  );
  -webkit-mask-image: linear-gradient(
    180deg,
    #f1f6ff 0,
    rgba(245, 245, 245, 0) 100%
  );
  mask-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#f1f6ff),
    to(rgba(245, 245, 245, 0))
  );
  mask-image: linear-gradient(180deg, #f1f6ff 0, rgba(245, 245, 245, 0) 100%);
}
.grow-on-hover {
  transition: 0.2s ease-in-out;
}
.grow-on-hover:hover {
  transform: scale(1.02);
}

.shadow-on-hover {
  transition: 0.2s ease-in-out;
}
.shadow-on-hover:hover {
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
}

a.remove-link-style {
  text-decoration: none;
  color: inherit;
}

/* Ruben edits */
@media (min-width: 1200px) {
  .mobile {
    display: none;
  }
}

/* nav */
.navcontainer {
  margin-top: 25px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.max-w {
  margin-right: auto;
  margin-left: auto;
  max-width: calc(100% - 40px);
}

.max-w-wide {
  margin-right: auto;
  margin-left: auto;
  max-width: calc(100% - 40px);
}

.navbar-right {
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .navbar-right {
    display: flex;
    align-items: center;
    flex-direction: row;
  }

  .featurelist {
    padding-bottom: 180px;
  }
}

@media (min-width: 1300px) {
  .max-w {
    max-width: 1300px;
  }
  .max-w-wide {
    max-width: 1350px;
  }
}

.nav-logo {
  /* height: 40px; */
  vertical-align: middle;
  width: 190px;
}

.container {
  display: flex;
}
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  /* gap: 20px; */
  justify-items: center;
}

@media (max-width: 1050px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.gridwrmkjij {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

@media (max-width: 768px) {
  .gridwrmkjij {
    grid-template-columns: 1fr;
  }
}

/* .imageandtextcontainer {
  display: flex;
  justify-content: space-between;
} */

.whha-cols {
  flex-basis: 150px;
  flex-grow: 1;
}

.col-md-3,
.col-md-4 {
  flex-basis: 307px;
  flex-grow: 1;
  max-width: 380px;
}
@media screen and (min-width: 1024px) {
  .col-md-3,
  .col-md-4 {
    max-width: 307px;
  }
}

a {
  text-decoration: none;
  color: var(--blue-white-contrast);
}
@media (max-width: 1200px) {
  ul.nav.navbar-nav.navbar-right {
    gap: 32px;
    align-items: flex-start;
    border-left: var(--blue) 2px solid;
    padding-left: 22px;
    min-width: 180px;
  }
}

ul.nav.navbar-nav.navbar-right {
  list-style-type: none;
}

ul {
  display: block;
  list-style-type: disc;
  margin-block-start: unset;
  margin-block-end: unset;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0px;
}

img {
  max-width: 100%;
  height: auto;
}

.featurelist {
  max-width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .featurelist {
    max-width: 61%;
    height: auto;
  }
}

/* .max-half {
  width: 50%;
} */

.collapse {
  display: NONE;
}

.collapse.in {
  display: block;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: 0.35s;
  -o-transition-duration: 0.35s;
  transition-duration: 0.35s;
  -webkit-transition-property: height, visibility;
  -o-transition-property: height, visibility;
  transition-property: height, visibility;
}

.primary-btn {
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 5px;
  text-decoration: none;
  color: #fff !important;
  background: var(--blue);
  font-size: 17px;
  margin-top: 5px;
  white-space: initial;
  margin-left: 0px;
  position: relative;
  letter-spacing: 1px;
}
@media (max-width: 1200px) {
  .hero-section .primary-btn {
    margin-bottom: 160px;
  }
}

.primary-btn span,
.primary-btn svg {
  z-index: 10;
  position: relative;
  transition: 0.3s ease-in-out !important;
}

.primary-btn:hover span,
.primary-btn:hover svg {
  color: var(--blue);
  transition: 0.3s ease-in-out !important;
  transition-delay: 0.2s;
}

.primary-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--bluegray);
  transform: translateX(0%);
  transition: all 0.3s ease-in-out;
  border-radius: 5px;
}
.primary-btn:hover:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: var(--bluegray);

  transform: translateX(0%);
}

.row {
  display: flex;
}

@media (max-width: 768px) {
  .row {
    flex-direction: column;
  }
}

.heroperks {
  color: white;
  text-align: left;
  column-count: 2;
  gap: 48px;
}

@media (max-width: 768px) {
  .heroperks {
    column-count: 1;
  }
}

.func {
  margin-top: 15px;
  display: flex;
  width: unset;
  justify-content: space-between;
  flex-wrap: wrap;
}

.max-half {
  flex: 1;
}
@media (max-width: 1200px) {
  .hide-mobile {
    display: none !important;
  }

  .nav-btns {
    margin-top: 88px;
    flex-direction: row;
  }
  .panel-btn .primary-btn {
    width: 100%;
    justify-content: center;
    display: flex;
    margin-top: 16px;
  }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin: 0px 25px;
}

.grid-3 .plan .product-card {
  flex-direction: column;
}

/* @media (max-width: 1050px) {
  .grid-3 {
    grid-template-columns: 1fr;
    margin: unset;
  }
  .grid-3 .plan .product-card {
    flex-direction: row;
  }

  .grid-3 .plan {

  }
} */

@media (max-width: 1050px) {
  .grid-3 {
    grid-template-columns: 1fr;
    margin: unset;
    justify-content: center;
    justify-items: center;
  }
  .grid-3 .plan .product-card {
    flex-direction: column;
  }
}

.product-card {
  background-color: var(--lightgray);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  box-shadow: rgba(22, 17, 48, 0.04) 0px 12px 20px 1px;
}

.product-card.favorite {
  background-color: #020e1ffa !important;
}

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

.plans-body {
  padding: 40px 24px;
}

.wrap {
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

/* #hosting-plans .ftr-host .fut-icon::before {
  content: "";
  background-color: var(--darkgray);
  height: 80px;
  width: 80px;
  display: block;
  left: -16px;
  top: -16px;
  position: absolute;
  border-radius: 10px;
  border: solid 6px var(--blue);
} */

#hosting-plans .ftr-host {
  display: flex;
  align-items: center;
  background-color: var(--white);
  border-radius: 10px;
  flex-direction: column;
  padding: 24px;
  height: 100%;
}

.fut-icon {
  /* position: relative; */
  padding: 8px;
  background-color: var(--bluegray);
  display: flex;
  align-self: flex-start;
  margin-bottom: 16px;
  border-radius: 10px;
}

.fut-icon img {
  transform: rotate(0deg);
  transition: ease-in-out 0.11s !important;
}
.shadow-on-hover:hover .fut-icon img {
  transform: rotate(8deg);
}

#hosting-plans .ftr-host h3 {
  margin-bottom: 8px;
}

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

.bedrockbanner {
  background-color: var(--darkgray);
  color: var(--lightgray);
  padding: 100px 18px;
  /* border-radius: 10px; */
  background: url(/img/FH_footerctabg-min.jpg);
  background-position: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: -200px;
  border-radius: 10px;
}

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

#test1:after {
  content: "";
  background: url(/img/Vector33.svg) no-repeat top;

  position: absolute;
  background-size: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;

  opacity: 0.1;
  z-index: 0;
}

.grass-block {
  position: absolute;
  left: 10%;
  top: -60px;
  transform: rotate(-15deg);
}

.crafting-table {
  position: absolute;
  left: 40%;
  bottom: -60px;
  transform: rotate(5deg) scale(0.9);
}

@media (min-width: 1024px) {
  .grass-block {
    left: 10%;
    top: -20px;
  }

  .crafting-table {
    left: 25%;
    bottom: -25px;
  }
}

.footer-links .col-md-3 {
  flex-basis: 240px !important;
}

.mc-panel1 {
  /* content: url(/img/light.webp);
  transition: all 0.3s ease-in-out; */
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.2s;
}
.hvr:hover .mc-panel1 {
  opacity: 1;
}

.mc-panel:hover {
  background-image: url(/img/light.webp) !important;
}

.dc-btn {
  background: #29323e;
  transition: ease-in-out 0.08s;
}

.dc-btn:hover {
  background: #3a4047;
}

.icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
  background: var(--darkgray) !important;
}

.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 5px;
}

.navbar-toggle {
  background-color: white;
  padding: 10px;
  border-radius: 100px;
}
