* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body,
html {
	max-width: 100%;
    overflow-x: hidden;
	scroll-behavior: smooth;
}

:root {
	--body: #101213;
    --secondBG: #1a1c1e;
    --accent: #df6868;;
    --accentHover: #d95555;
	--text: #fff;
    --grey: #a3a5ae;
    --greyish: #a8a8a8;
    --border: #34373a;
    --btnShadow: 3px 3px 20px var(--accent);
	--boxShadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.1);
    --boxShadow2: 0px 10px 50px hsla(0,0%,93%,.2);
}

body {
	color: var(--text);
	background: var(--body);
    font-family: 'Outfit', sans-serif;
}

p {
    margin-bottom: 0px;
}

a {
	text-decoration: inherit;
	color: var(--text);
}

a:hover {
    text-decoration: inherit;
    color: inherit;
}

a:focus {
    text-decoration: inherit;
    color: inherit;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin: 0px;
}

button {
    font-family: 'Outfit', sans-serif;
}

input {
    font-family: 'Outfit', sans-serif;
}

.JC-NoiseContainer {
    background: transparent url(/assets/images/noise.png) repeat 0 0;
    bottom: -50%;
    height: 200vh;
    left: -50%;
    pointer-events: none;
    position: fixed;
    right: -50%;
    top: -50%;
    visibility: visible;
    opacity: 0.4;
    width: 200%;
    z-index: -5;
}

.nav li {
    display: inline-block;
    list-style: none;
}

.nav .button-dropdown {
    position: relative;
}

.JC-navLink {
    padding: 10px 20px;
    font-size: 17px;
    text-align: center;
    transition: 0.3s ease;
    color: var(--greyish);
}

.JC-navLink:hover {
    color: var(--accent);
    transition: 0.3s ease;
}

.nav li a {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 17px;
    margin: 0px;
    text-align: center;
    color: var(--greyish);
    transition: 0.3s ease;
}

.nav li a span {
    margin-left: 10px;
    font-size: 13px;
}

.nav li a:hover, .nav li a.dropdown-toggle.active {
    color: var(--accent);
    transition: 0.3s ease;
}

.nav li .dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    padding: 0;
    margin: 0;
    margin-top: 3px;
    text-align: left;

    z-index: 1;
    background-color: var(--secondBG);
    border: 1px solid var(--border);
    border-radius: 8px;
    width: 250px;
    padding: 10px;
    box-shadow: var(--boxShadow);
    margin-top: 10px;
    transition: 0.3s ease;
    margin-left: 15px;
}

.nav li .dropdown-menu.active {
    display: flex;
    transition: 0.3s ease;
}

.nav li .dropdown-menu a {
    width: 100%;
    color: var(--greyish);
    padding: 12px 16px;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: 0.3s ease;
    font-weight: 400;
    text-align: left !important;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    transition: 0.3s ease;
    font-size: 15px;
    padding: 15px;
}

.nav li .dropdown-menu li {
    width: 100%;
}

.nav li .dropdown-menu a:hover {
    transition: 0.3s ease;
    color: #fff;
    background: #222323;
}

.JC-LoginMenu {
    margin-left: -150px !important;
}

.dropdown-toggle::after {
    display: none;
}

/* MAIN CSS */

.JC-navBar {
    width: 1600px;
    margin: 0 auto;
    height: 120px;
    position: relative;
    display: flex;
    align-items: center;
}

.JC-navBar-center {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.JC-navBar-between {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.JC-navBranding {
    width: 180px;
}

.JC-navBar-left {
    position: relative;
    z-index: 5;
}

.JC-navBar-right {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
}

.JC-navBar-panels {
    border: 1px solid var(--border);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    outline: inherit;
    border-radius: 6px;
    font-weight: 500;
    transition: 0.3s ease;
    color: var(--greyish);
    background: transparent;
    font-size: 16px;
}

.JC-navBar-panels:hover {
    transition: 0.3s ease;
    color: #fff;
    border: 1px solid #fff;
}

.JC-navLogin {
    border: 2px solid #212121;
    background: #212121;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    border-radius: 6px;
    font-weight: 500;
    margin-left: 5px;
    font-size: 16px;
    color: #fff;
    transition: 0.3s ease;
}

.JC-navLogin:hover {
    background: #313131;
    border: 2px solid #313131;
    transition: 0.3s ease;
    color: #fff;
}

.modal-dialog {
    max-width: 800px;
    margin-top: 200px;
}

.modal-content {
    background: var(--secondBG);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.JC-ModalPanel-head {
    padding: 25px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.JC-ModalPanel-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 25px;
}

.JC-ModalPanel-headLeft h2 {
    color: var(--greyish);
    font-size: 24px;
    font-weight: 600;
}

.JC-PanelClose {
    background: inherit;
    border: inherit;
    font-size: 27px;
    color: var(--greyish);
    font-weight: 700;
    transition: 0.3s ease;
}

.JC-PanelClose:hover {
    transition: 0.3s ease;
    color: #fff;
}

.JC-ModalPanel-link {
    width: 350px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    background: #222426;
    height: 150px;
    border-radius: 8px;
    margin: 5px;
    border: 1px solid var(--border);
    transition: 0.3s ease;
}

.JC-ModalPanel-link h3 {
    font-weight: 500;
    font-size: 24px;
}

.JC-ModalPanel-link p {
    color: #8d8d8d;
    font-size: 16px;
    font-weight: 300;
}

.JC-ModalPanel-link:hover {
    color: #fff;
    transition: 0.3s ease;
    background: var(--body);
}

/* MOBILE MENU CSS */

.JC-mobileBtn {
    color: var(--greyish);
    border: inherit;
    font-size: 25px;
    background: transparent;
    border: inherit;
    padding: 12px 13px;
    cursor: pointer;
    height: 50px;
    width: 50px;
    border-radius: 8px;
    transition: 0.3s ease;
    display: none;
    align-items: center;
    justify-content: center;
}

.JC-mobileBtn:hover {
    transition: 0.3s ease;
    color: #fff;
}

.JC-mobile-overlay {
	height: 100%;
	width: 0;
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	overflow-x: hidden;
	transition: 0.5s;
	background: rgba(65,65,65,30%);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}
  
.JC-mobileMenu-overlay {
	position: relative;
	top: 150px;
	width: 90%;
    margin: 0 auto;
	display: flex;
    justify-content: center;
    align-items: flex-start;
	flex-direction: column;
    padding-bottom: 50px;
}

.JC-mobile-overlay .JC-closeBtn {
	position: absolute;
	top: 30px;
    right: 30px;
    font-size: 30px;
    color: var(--greyish);
    font-weight: 400;
    transition: 0.3s ease;
}

.JC-mobile-overlay .JC-closeBtn:hover {
    color: #fff;
    transition: 0.3s ease;
}

.mobileLink {
    font-size: 17px;
    padding: 20px 30px;
    color: var(--text);
    background: var(--secondBG);
    font-weight: 500;
	text-transform: uppercase;
	transition: 0.3s ease;
    width: 100%;
    margin: 5px 0px;
    border-radius: 8px;
}

.mobileLink:hover {
	transition: 0.3s ease;
	color: #fff;
	background: var(--accent);
}

/* MOBILE MENU CSS */

.JC-HeroSection-content {
    padding-top: 90px;
    width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    height: 900px;
}

.JC-HeroSection-contentLeft {
    width: 600px;
}

.JC-HeroSection-tag {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.JC-HeroSection-title {
    font-size: 90px;
    line-height: 100px;
    font-weight: 700;
}

.JC-HeroSection-title div {
    display: flex;
    align-items: center;
}

.JC-line-big {
    height: 15px;
    width: 250px;
    background: var(--accent);
    display: flex;
    align-items: center;
    position: relative;
    top: 10px;
    margin-right: 25px;
}

.JC-HeroSection-slogan {
    margin-top: 25px;
    font-size: 20px;
    color: var(--greyish);
    line-height: 35px;
    width: 450px;
    margin-bottom: 25px;
}

.JC-HeroBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--accent);
    width: 200px;
    height: 50px;
    font-size: 18px;
    color: #fff;
    font-weight: 300;
    transition: 0.3s ease;
}

.JC-HeroBtn:hover {
    transition: 0.3s ease;
    opacity: 0.85;
}

.JC-HeroDiamonds {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 600px;
    position: relative;
}

.JC-HeroDiamond-box {
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px 25px;
    background: var(--secondBG);
    border: 1px solid var(--border);
    transform: rotate(45deg);
    transition: 0.3s ease;
}

.JC-HeroDiamond-box:hover {
    transition: 0.3s ease;
    transform: scale(1.05)rotate(45deg);
    background: #161719;
}

.JC-HeroDiamond-boxInfo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    transform: rotate(-45deg);
}

.JC-HeroDiamond-boxLogo {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 23px;
    background: #333435;
    border-radius: 100%;
    margin-bottom: 15px;
}

.firstDiamond {
    position: relative;
    top: 0px;
    left: 100px;
}

.twoDiamond {
    position: relative;
    top: 200px;
    left: 50px;
}

.threeDiamond {
    position: relative;
    left: -100px;
    top: -50px;
}

.fourDiamond {
    position: relative;
    top: 150px;
    left: -150px;
}

.JC-HeroDiamond-boxCol p {
    color: var(--greyish);
    font-weight: 300;
    line-height: 20px;
    margin-top: 5px;
}

.JC-HeroDiamond-title {
    color: #fff;
    font-size: 20px;
    margin-top: 0px;
    line-height: auto;
    font-weight: 500;
}

.JC-SponsorContainer {
    padding: 100px 50px;
    background: #101212;
}

.JC-SponsorContainer-width {
    width: 1600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.JC-SponsorTitle {
    font-size: 40px;
    font-weight: 700;
    text-transform: uppercase;
}

.JC-SponsorRows {
    margin-top: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.JC-SponsorImage {
    filter: grayscale(1);
    width: 200px;
    background: #101212;
    margin: 15px 30px;
    opacity: 0.1;
}

.JC-ServiceContainer {
    width: 1600px;
    margin: 0 auto;
    padding: 100px 0px;
}

.JC-ServiceContainer-head {
    width: 550px;
    margin-bottom: 50px;
}

.JC-ServiceContainer-head h3 {
    font-size: 50px;
    font-weight: 600;
}

.JC-ServiceContainer-rows {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 80px;
}

.JC-ServiceFeatures-box {
    width: 380px;
    padding: 0px 40px;
    margin-bottom: 80px;
}

.highlight {
    color: var(--accent);
}

.JC-ServiceFeatures-boxIcon {
    height: 80px;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 8px;
}

.JC-ServiceFeatures-boxIcon i {
    font-size: 35px;
    color: var(--greyish);
}

.JC-ServiceFeatures-boxCol {
    padding-top: 30px;
}

.JC-ServiceFeatures-boxCol h3 {
    font-size: 25px;
    margin-bottom: 5px;
}

.JC-ServiceFeatures-boxCol p {
    opacity: 0.8;
}

.JC-TestimonialContainer {
    padding: 100px 50px;
    background: #101212;
}

.JC-TestimonialContainer-width {
    width: 1400px;
    display: flex;
    align-items: flex-start;
    margin: 0 auto;
    justify-content: space-between;
}

.JC-ReviewBox {
    width: 700px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #171819;
    border: 1px solid var(--border);
    padding: 20px 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    height: auto;
    min-height: 100px;
    position: relative;
}

.JC-ReviewBox-col {
    width: 100%;
    position: relative;
}

.JC-ReviewBox-col h2 {
    font-size: 35px;
    color: var(--greyish);
}

.JC-ReviewBox-col p {
    color: var(--greyish);
    margin: 10px 0px;
    line-height: 28px;
    font-size: 17px;
}

.JC-ReviewBox-col i {
    color: var(--greyish);
    margin: 10px 0px;
    line-height: 28px;
    font-size: 28px;
    position: absolute;
    left: -35px;
    top: -40px;
}

.JC-ReviewBox-img {
    width: 120px;
    border-radius: 100%;
}

.JC-ReviewBox-col h5 {
    color: var(--accent);
    font-size: 20px;
    font-weight: 600;
}

.JC-ReviewsLeft {
    padding-top: 100px;
    width: 500px;
}

.JC-ReviewsLeft h3 {
    font-size: 60px;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 25px;
}

.JC-ReviewsLeft p {
    font-size: 20px;
    color: var(--greyish);
}

.JC-ReviewsBtn {
    background: var(--accent);
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
    height: 50px;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s ease;
}

.JC-ReviewsBtn:hover {
    transition: 0.3s ease;
    opacity: 0.85;
}

.JC-SupportTab-Container {
    width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 80px;
    height: 140px;
    background: var(--secondBG);
    border: 1px solid var(--border);
    padding: 25px;
    margin-bottom: -50px;
    position: relative;
}

.JC-SupportTab-containerLeft h3 {
    font-size: 30px;
    font-weight: 600;
}

.JC-SupportTab-containerLeft p {
    font-size: 16px;
    font-weight: 300;
    color: var(--greyish);
}

.JC-SupportTab-btn {
    width: 200px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--accent);
    transition: 0.3s ease;
    font-size: 18px;
    font-weight: 600;
}

.JC-SupportTab-btn:hover {
    transition: 0.3s ease;
    opacity: 0.85;
}

.JC-FooterContainer {
    background: #101212;
    padding: 120px 0px 50px;
}

.JC-FooterContainer-width {
    width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 250px;
}

.JC-FooterContainer-left {
    display: flex;
    align-items: flex-start;
    width: 750px;
}

.JC-FooterBox {
    display: flex;
    flex-direction: column;
    width: 35%;
}

.JC-FooterBox-col {
    display: flex;
    flex-direction: column;
}

.JC-FooterBox-title {
    font-size: 20px;
    color: #fff;
    padding-bottom: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.JC-FooterBox-link {
    padding: 5px 0px;
    color: var(--greyish);
    font-size: 18px;
}

.JC-FooterLogo-image {
    width: 100px;
}

.JC-FooterCopyright {
    background: #151616;
    border: 1px solid var(--border);
}

.JC-FooterCopyright-width {
    width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}

.JC-FooterCopyright-width p {
    color: var(--greyish);
    font-size: 17px;
}

.JC-FooterCard-images {
    width: 80%;
}

.JC-PageHeader {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 280px;
    padding-bottom: 20px;
    border-bottom: 1px solid #222;
}

.JC-PageHeader h3 {
    text-transform: uppercase;
    font-size: 50px;
    text-align: center;
    font-weight: 800;
}

.JC-PageHeader p {
    margin-top: 10px;
    font-size: 18px;
    line-height: 26px;
    opacity: 0.7;
    text-align: center;
}

.JC-PageHeader-rows {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.JC-PageHeader-btn-active {
    border: 1px solid var(--accent);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    outline: inherit;
    font-weight: 500;
    transition: 0.3s ease;
    background: var(--accent);
    color: #fff;
    margin: 5px;
    transition: 0.3s ease;
}

.JC-PageHeader-btn-active:hover {
    opacity: 0.85;
    transition: 0.3s ease;
}

.JC-PageHeader-btn {
    border: 1px solid var(--border);
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    outline: inherit;
    font-weight: 500;
    transition: 0.3s ease;
    margin: 5px;
    color: var(--greyish);
}

.JC-PageHeader-btn:hover {
    opacity: 0.85;
    transition: 0.3s ease;
}

.JC-MinecraftContainer {
    width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0px;
    flex-wrap: wrap;
}

.JC-MinecraftBox {
    width: 350px;
    background: #0c0e0e;
    padding: 25px;
    margin: 15px;
}

.JC-MinecraftBox-headTag {
    background: #1a1c1e;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 130px;
    font-size: 14px;
    text-transform: uppercase;
    height: 30px;
    font-weight: 400;
    color: #656566;
}

.JC-MinecraftBox-head h3 {
    font-size: 45px;
    margin-top: 30px;
    font-weight: 700;
}

.JC-MinecraftBox-head h5 {
    font-size: 16px;
    font-weight: 300;
    color: var(--greyish);
    margin-top: 5px;
}

.JC-MinecraftBox-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    background: var(--accent);
    margin: 25px 0px;
    border-radius: 100px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    transition: 0.3s ease;
}

.JC-MinecraftBox-btn:hover {
    transition: 0.3s ease;
    opacity: 0.85;
}

.JC-MinecraftBox-info {
    margin-top: 30px;
}

.JC-MinecraftBox-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.JC-MinecraftBox-feature {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #b4b4b4;
}

.JC-MinecraftBox-feature i {
    width: 30px;
    height: 30px;
    border: 1px solid #b4b4b4;
    color: #b4b4b4;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    margin-right: 10px;
}

.JC-HostingContainer {
    padding: 60px 0px;
    width: 1500px;
    margin: 0 auto;
    display: flex;
    align-content: center;
    justify-content: center;
    flex-wrap: wrap;
}

.JC-PlanBox {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    width: 380px;
    background: #0c0e0e;
    margin: 15px;
}

.JC-PlanBox-head {
    padding-top: 35px;
}

.JC-PlanBox-head i {
    font-size: 50px;
    margin-bottom: 10px;
    color: #539f79;
}

.JC-PlanBox-info {
    padding: 20px 0px;
}

.JC-PlanBox-info p {
    margin-bottom: 10px;
    color: #b4b4b4;
    font-weight: 300;
}

.JC-PlanBox-footer {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.JC-PlanBox-footer h3 {
    font-size: 35px;
    font-weight: 600;
}

.JC-PlanBox-footer span {
    font-size: 18px;
    font-weight: 300;
    color: var(--greyish);
    letter-spacing: 1px;
}

.JC-PlanBox-hr {
    height: 4px;
    width: 50px;
    margin: 0 auto;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
}

.JC-PlanBox-footer {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    background: #070909;
    padding: 20px 0px;
    margin-top: 15px;
}

.JC-PlanBox-btn {
    background: var(--accent);
    width: 200px;
    margin-top: 20px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 400;
    transition: 0.3s ease;
}

.JC-PlanBox-btn:hover {
    opacity: 0.85;
    transition: 0.3s ease;
}

.JC-LegalContainer {
    width: 1000px;
    margin: 0 auto;
}

.JC-LegalContainer h5 {
    font-size: 15px;
    line-height: 25px;
    padding-top: 50px;
    padding-bottom: 80px;
    color: var(--greyish);
}

.JC-LegalContainer h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.JC-LegalContainer p {
    line-height: 25px;
    color: var(--greyish);
    margin-bottom: 35px;
}

/* RESPONSIVE */

@media only screen and (max-width: 1650px) {
    .JC-navBar {
        width: 90%;
    }

    .JC-HeroSection-content {
        width: 90%;
    }

    .JC-SponsorContainer-width {
        width: 90%;
    }

    .JC-ServiceContainer {
        width: 90%;
    }
}

@media only screen and (max-width: 1550px) {
    .JC-MinecraftContainer {
        width: 90%;
    }

    .JC-HostingContainer {
        width: 90%;
    }
}

@media only screen and (max-width: 1450px) {
    .JC-TestimonialContainer-width {
        width: 90%;
    }

    .JC-HeroDiamonds {
        transform: scale(0.8);
        left: 70px;
    }

    .JC-FooterContainer-width {
        width: 90%;
    }

    .JC-FooterCopyright-width {
        width: 90%;
    }
}

@media only screen and (max-width: 1300px) {
    .JC-navBar-center {
        margin-left: -50px;
    }

    .JC-ReviewBox {
        width: 540px;
    }
}

@media only screen and (max-width: 1260px) {
    .JC-HeroDiamonds {
        transform: scale(0.66);
        left: 20px;
    }

    .JC-TestimonialContainer-width {
        flex-direction: column;
    }

    .JC-ReviewsRight {
        margin-top: 50px;
        width: 100%;
    }

    .JC-ReviewBox {
        width: 100%;
    }
}

@media only screen and (max-width: 1200px) {
    .JC-navBar-center {
        margin-left: 0px;
        display: none;
    }

    .JC-navLogin {
        display: none;
    }

    .JC-navBar-panels {
        display: none;
    }

    .JC-mobileBtn {
        display: flex;
    }

    .JC-mobile-overlay .JC-navBar-panels {
        display: flex;
        width: 100%;
        margin: 0 auto;
        margin-top: 15px;
        height: 60px;
    }

    .JC-mobile-overlay .JC-navLogin {
        display: flex;
        width: 100%;
        margin: 0 auto;
        margin-top: 15px;
        background: var(--secondBG);
        height: 60px;
        border: 1px solid var(--border);
    }

    .JC-mobileMenu-overlay .nav {
        width: 100%;
    }

    .JC-mobileMenu-overlay .nav .button-dropdown {
        width: 100%;
    }

    .nav li a {
        justify-content: flex-start;
        font-size: 17px;
        padding: 20px 30px;
        color: var(--text);
        background: var(--secondBG);
        font-weight: 500;
        text-transform: uppercase;
        transition: 0.3s ease;
        width: 100%;
        margin: 5px 0px;
        border-radius: 8px;
        color: var(--grey);
    }

    .nav li .dropdown-menu {
        width: 300px;
    }

    .JC-HeroDiamonds {
        display: none;
    }

    .JC-LegalContainer {
        width: 90%;
    }
}

@media only screen and (max-width: 1050px) {
    .JC-SupportTab-Container {
        width: 90%;
    }
}

@media only screen and (max-width: 1000px) {
    .JC-SponsorContainer-width {
        height: auto;
        min-height: 350px;
    }
}

@media only screen and (max-width: 960px) {
    .JC-navBranding {
        width: 160px;
    }

    .JC-HeroSection-content {
        height: auto;
        min-height: 600px;
        padding-bottom: 100px;
    }

    .JC-FooterContainer-width {
        flex-direction: column;
    }

    .JC-FooterContainer-right {
        width: 100%;
        margin-top: 80px;
    }

    .JC-FooterContainer-left {
        width: 100%;
    }
}

@media only screen and (max-width: 850px) {
    .modal-dialog {
        max-width: 90%;
        margin: 0 auto;
        margin-top: 100px;
        padding-bottom: 35px;
    }

    .JC-ModalPanel-link {
        width: 90%;
    }
}

@media only screen and (max-width: 650px) {
    .JC-HeroSection-contentLeft {
        width: 100%;
    }

    .JC-PageHeader {
        padding: 25px 25px 50px;
        min-height: 200px;
        height: auto;
    }

    .JC-ReviewBox {
        flex-direction: column;
        height: auto;
        min-height: 220px;
        padding: 25px 0px;
    }

    .JC-ReviewBox-img {
        width: 70px;
    }

    .JC-ReviewBox-col {
        width: 90%;
        text-align: center;
        margin-bottom: 15px;
    }

    .JC-SupportTab-Container {
        flex-direction: column;
        height: auto;
        min-height: 150px;
        text-align: center;
        justify-content: center;
    }

    .JC-SupportTab-containerRight {
        width: 90%;
        margin-top: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .JC-SupportTab-btn {
        width: 100%;
    }

    .JC-FooterContainer-left {
        flex-direction: column;
    }

    .JC-FooterBox {
        width: 100%;
        margin-bottom: 25px;
    }

    .JC-FooterContainer-right {
        margin-top: 50px;
    }
}

@media only screen and (max-width: 600px) {
    .JC-line-big {
        width: 100%;
    }

    .JC-HeroSection-slogan {
        width: 100%;
    }

    .JC-SponsorTitle {
        text-align: center;
    }

    .JC-ServiceContainer-head {
        width: 100%;
        text-align: center;
    }

    .JC-ReviewBox {
        height: auto;
        min-height: 220px;
    }

    .JC-ReviewsLeft {
        width: 100%;
    }

    .JC-TestimonialContainer {
        padding: 100px 25px;
    }

    .JC-FooterCopyright-width {
        flex-direction: column-reverse;
        justify-content: center;
        min-height: 150px;
        height: auto;
    }

    .JC-FooterCopyright-rows {
        margin-bottom: 15px;
    }

    .JC-FooterCard-images {
        width: 100%;
    }

    .JC-MinecraftBox {
        width: 100%;
    }

    .JC-PageHeader-rows {
        flex-direction: column;
    }

    .JC-PageHeader-rows {
        width: 100%;
    }

    .JC-PageHeader-btn-active {
        margin: 10px;
        width: 100%;
    }

    .JC-PageHeader-btn {
        width: 100%;
        margin: 10px;
    }
}

@media only screen and (max-width: 500px) {
    .JC-MinecraftContainer {
        width: 95%;
    }

    .JC-MinecraftBox-feature {
        align-items: flex-start;
    }

    .JC-HostingContainer {
        width: 95%;
    }

    .JC-PlanBox {
        width: 100%;
    }
}

@media only screen and (max-width: 450px) {
    .JC-ServiceFeatures-box {
        width: 100%;
    }

    .JC-HeroSection-title {
        font-size: 70px;
        line-height: 70px;
    }

    .JC-HeroBtn {
        width: 100%;
    }

    .JC-ReviewsBtn {
        width: 100%;
    }
}