/* Normalize */
html {line-height: 1.15;-webkit-text-size-adjust: 100%;}body {margin: 0;}main {display: block;}h1 {font-size: 2em;margin: 0.67em 0;}hr {box-sizing: content-box;height: 0;overflow: visible;}pre {font-family: monospace, monospace;font-size: 1em;}a {background-color: transparent;}abbr[title] {border-bottom: none;text-decoration: underline;text-decoration: underline dotted;}b, strong {font-weight: bolder;}code, kbd, samp {font-family: monospace, monospace;font-size: 1em;}small {font-size: 80%;}sub, sup {font-size: 75%;line-height: 0;position: relative;vertical-align: baseline;}sub {bottom: -0.25em;}sup {top: -0.5em;}img {border-style: none;}button, input, optgroup, select, textarea {font-family: inherit;font-size: 100%;line-height: 1.15;margin: 0;}button, input {overflow: visible;}button, select {text-transform: none;}button, [type="button"], [type="reset"], [type="submit"] {-webkit-appearance: button;}button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {border-style: none;padding: 0;}button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {outline: 1px dotted ButtonText;}fieldset {padding: 0.35em 0.75em 0.625em;}legend {box-sizing: border-box;color: inherit;display: table;max-width: 100%;padding: 0;white-space: normal;}progress {vertical-align: baseline;}textarea {overflow: auto;}[type="checkbox"], [type="radio"] {box-sizing: border-box;padding: 0;}[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {height: auto;}[type="search"] {-webkit-appearance: textfield;outline-offset: -2px;}[type="search"]::-webkit-search-decoration {-webkit-appearance: none;}::-webkit-file-upload-button {-webkit-appearance: button;font: inherit;}details {display: block;}summary {display: list-item;}template {display: none;}[hidden] {display: none;}

/* General */

body {
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	font-size: 1em;
	-webkit-font-smoothing: antialiased;
	background: rgb(255, 255, 255);
}

.clear {
	clear: both;
}

.red {
	color: rgb(233, 73, 62);
}

.green {
	color: rgb(95,183,96);
}

/* Header */

.header-parent {
	width: 100%;
	position: fixed;
	background: rgba(255, 255, 255, .84);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	z-index: 4;
	box-shadow: 4px 0px 16px rgb(0, 0, 0, .16);
}

header {
	width: 96%;
	max-width: 1200px;
	margin: 0 auto;
}

.logo a {
	background: url('../images/logo-hs.svg');
	background-size: 150px 26px;
	width: 150px;
	height: 26px;
	
	display: block;
	float: left;
	margin: 34px 0 25px 2%;
}

.menu-toggle {
	display: none;
	font-size: 1.75em;
	float: right;
	margin: 32px 2% 25px 0;
}

	.menu-toggle a {
		color: rgb(0, 0, 0);
	}
	
	.menu-toggle a:hover {
		color: rgb(0, 0, 0);
	}

.menu {
	float: right;
	margin: 23px 2% 25px 0;
}

	.menu ul {
		list-style-type: none;
		padding-inline-start: 0px;
	}
	
		.menu ul li {
			float: left;
			margin-left: 25px !important;
			font-weight: 700;
		}
		
			.menu ul li a {
				color: rgb(0, 0, 0);
				text-decoration: none;
			}
			
			.menu ul li a:hover {
				color: rgb(233, 73, 62);
				text-decoration: none;
			}
		
		.menu ul li:first-of-type {
			margin-left: 0;
		}
		
		.menu ul li.dashboard a {
			display: block;
			box-sizing: border-box;
			
			padding: 10px 15px;
			margin-top: -11px;
			
			color: rgb(233, 73, 62);
			border: 1px solid rgb(233, 73, 62);
			border-radius: 5px;
		}
		
		.menu ul li.dashboard a:hover {
			color: rgb(255, 255, 255);
			border: 1px solid rgb(233, 73, 62);
			background: rgb(233, 73, 62);
		}
	
.hero-image {
	width: 100%;
	height: 360px;
	display: flex;
	align-items: flex-end;
	
	background: url('../images/datacenter2.jpg') no-repeat center top;
	background-size: cover;
}

.hero-image-stream {
	width: 100%;
	height: 360px;
	display: flex;
	align-items: flex-end;
	
	background: url('../images/stream-hosting.jpg') no-repeat center top;
	background-size: cover;
}

.hero-image-dedicated {
	width: 100%;
	height: 360px;
	display: flex;
	align-items: flex-end;
	
	background: url('../images/dedicated-server.jpg') no-repeat center top;
	background-size: cover;	
}

.hero-image-hosting {
	width: 100%;
	height: 360px;
	display: flex;
	align-items: flex-end;
	
	background: url('../images/web-hosting.jpg') no-repeat center bottom;
	background-size: cover;	
}

.hero-image-vps {
	width: 100%;
	height: 360px;
	display: flex;
	align-items: flex-end;
	
	background: url('../images/vps-hosting.jpg') no-repeat center bottom;
	background-size: cover;	
}

.domain-search {
	width: 96%;
	max-width: 1200px;
	margin: 0 auto;
}

.domain-search-container {
	margin: 25px 2%;
	box-sizing: border-box;
	padding: 10px 15px;
	
	background: rgba(245, 245, 245, .84);
	-webkit-backdrop-filter: blur(12px);
	backdrop-filter: blur(12px);
	border-radius: 5px;
}

	.domain-search-container form {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}

		.domain-search-container form input[type="text"] {
			width: 100%;
			margin-left: 10px;
			
			color: rgb(0, 0, 0);
			line-height: 1.5;
			background: transparent;
			border: 0;
			outline: none;
		}
		
			.domain-search-container form input[type="text"]::placeholder {
				color: rgb(142, 142, 147);
			}
		
		.domain-search-container form input[type="submit"] {
			box-sizing: border-box;
			padding: 10px 15px;
			margin-left: 15px;
			
			font-weight: 700;
			color: rgb(233, 73, 62);
			border: 1px solid rgb(233, 73, 62);
			border-radius: 5px;
			background: transparent;
		}
		
			.domain-search-container form input[type="submit"]:hover {
				color: rgb(255, 255, 255);
				border: 1px solid rgb(233, 73, 62);
				background: rgb(233, 73, 62);
				cursor: pointer;
			}

/* Main */

main {
	width: 96%;
	max-width: 1200px;
	margin: 0 auto;
}

.content-container {
	margin: 25px 2%;
}

	.content-container h1 {
		font-size: 24px;
		font-weight: 700;
	}

	.content-container h2 {
		font-size: 24px;
		font-weight: 700;
	}
	
	.content-container h3 {
		font-size: 18px;
		font-weight: 700;
		color: rgb(199, 199, 204);
	}
	
	.content-container h4 {
		font-size: 18px;
		font-weight: 700;
		text-align: center;
		padding-bottom: 10px;
	}
	
	.content-container p {
		color: rgb(142, 142, 147);
		line-height: 1.5;
	}

	.content-container .box-cabinet {
		width: 30%;
		margin-right: 5%;
		float: left;
		background: rgb(245, 245, 245);
		box-sizing: border-box;
		padding: 5px;
		border-radius: 5px;
	}
	
	.content-container .cabinet-image {
		background: url('../images/cabinet.png');
		background-size: 143px 270px;
		width: 143px;
		height: 270px;
		margin: 0 auto;
	}
	
	.content-container .box-green-hosting {
		width: 30%;
		height: 240px;
		margin-right: 5%;
		float: left;
		background: url('../images/green-hosting.jpg') no-repeat center center;
		background-size: cover;
		border-radius: 5px;
	}
	
	.content-container .button a {
		color: rgb(233, 73, 62);
		border: 1px solid rgb(233, 73, 62);
		border-radius: 5px;
		padding: 10px 15px;
		text-decoration: none;
	}
			
		.content-container .button a:hover {
			color: rgb(255, 255, 255);
			border: 1px solid rgb(233, 73, 62);
			background: rgb(233, 73, 62);
		}
		
	.content-container .title {
		color: rgb(0, 0, 0);
		font-weight: 700;
		margin-bottom: 10px;
	}
	
	.content-container a {
		color: rgb(142, 142, 147);
		text-decoration: none;
	}
	
	.content-container a:hover {
		color: rgb(233, 73, 62);
	}
	
	.content-container .information {
		margin-top: 50px;
	}
	
	.content-container .box-info {
		width: 30%;
		margin-top: 10px;
		margin-left: 5%;
		float: left;	
	}
	
	.content-container .box-info:nth-of-type(1) {
		margin-left: 0%;
	}
	
		.content-container .box-info i {
			font-size: 32px;
		}
		
		.content-container .box-info-title {
			color: rgb(0, 0, 0);
			font-weight: 700;
			margin-top: 15px;
		}
		
	.content-container .virtualization-method {
		float: right;
		margin: -10px 0 25px 0;
	}
	
	.content-container .virtualization-method label {
		color: rgb(142, 142, 147);
	}
	
	.content-container .virtualization-method select {
		border: 1px solid rgb(233, 73, 62);
		color: rgb(233, 73, 62);
		background: transparent;
		padding: 10px 34px 10px 15px;
		-webkit-appearance: none; 
		-moz-appearance: none;
		appearance: none;
		margin-left: 8px;
		background: url('../images/chevron-down-solid.svg') no-repeat;
		background-size: 14px 14px;
		background-position-x: 84px;
		background-position-y: 12px;
		outline: none;
	}
	
	.content-container .virtualization-method select::-ms-expand {
		display: none;
	}		

.content, .boxes-container {
	margin-top: 50px;
}

	.boxes-container .box {
		width: 30%;
		margin-left: 5%;
		float: left;
		background: rgb(245, 245, 245);
		box-sizing: border-box;
		padding: 15px;
		border-radius: 5px;
	}
	
	.boxes-container .box:nth-of-type(1) {
		margin-left: 0%;
	}
	
		.boxes-container .box p {
			margin-top: -25px;
			text-align: center;
		}
	
		.boxes-container .box ul {
			list-style-type: none;
			padding-inline-start: 10px;
		}
		
		.boxes-container .box li {
			line-height: 1.75;
		}
		
		.boxes-container .box i {
			margin-right: 10px;
			width: 21px;
		}
		
		.boxes-container .box span {
			font-size: .75em;
			font-weight: 400;
			color: rgb(153, 153, 153);
		}
		
		.boxes-container .box .price {
			font-weight: 700;
			font-size: 1.25em;
			color: rgb(233, 73, 62);
			text-align: center;
			padding-top: 10px;
		}
		
		.boxes-container .box .button a {
			display: block;
			width: 100%;
			height: auto;
			background: rgb(233, 73, 62);
			color: rgb(255, 255, 255);
			font-weight: 700;
			text-align: center;
			padding: 10px 0;
			margin-top: 25px;
			box-sizing: border-box;
			text-decoration: none;
			border-radius: 5px;
		}
		
.datacenter-images {
	width: 100%;
	margin-top: 25px;
}

	.datacenter-image-1 {
		background: url('../images/1.jpg') no-repeat center center;
		background-size: cover;
		width: 30%;
		height: 300px;
		float: left;
		border-radius: 5px;
	}
	
	.datacenter-image-2 {
		background: url('../images/2.jpg') no-repeat center center;
		background-size: cover;
		width: 30%;
		height: 300px;
		float: left;
		margin-left: 5%;
		border-radius: 5px;
	}
	
	.datacenter-image-3 {
		background: url('../images/3.jpg') no-repeat center center;
		background-size: cover;
		width: 30%;
		height: 300px;
		float: left;
		margin-left: 5%;
		border-radius: 5px;
	}
	
#green i {
	margin-right: 5px;
	width: 21px;
}

#green ul {
	list-style-type: none;
	padding-inline-start: 0px;
	margin-top: 25px;
}

#green li {
	line-height: 1.75;
	color: rgb(142, 142, 147);
}

	#green li a {
		border-bottom: 1px dotted rgb(95,183,96);
	}
	
	#green li a:hover {
		color: rgb(95,183,96);
	}
		
/* Footer */
	
footer {
	width: 96%;
	max-width: 1200px;
	margin: 50px auto;
}

footer ul {
	min-width: 200px;
	list-style-type: none;
	padding-inline-start: 0px;
}

footer li {
	color: rgb(142, 142, 147);
	line-height: 1.75;
}

footer li.logo {
	background: url('../images/logo-hs.svg');
	background-size: 86px 14px;
	width: 86px;
	height: 14px;
	margin: 7px 0 17px 0;
}

#footer {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

footer .hostingninja a {
	display: block;
	background: url('../images/hostingninja.png');
	background-size: 128px 128px;
	width: 128px;
	height: 128px;
	margin: 15px auto 0 auto;
}

/* Tooltip */

[class^=tooltip] {
    position:relative
}

[class^=tooltip]:after {
    font-size: .75em;
    font-family: 'Inter', sans-serif;
	font-weight: 400;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    content: attr(data-tooltip);
    padding: 10px;
    top: 58px;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-2px);
    transform: translateX(-50%) translateY(-2px);
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    white-space: nowrap;
    z-index: 2;
    border-radius: 5px;
    transition: opacity .2s cubic-bezier(.64, .09, .08, 1), -webkit-transform .2s cubic-bezier(.64, .09, .08, 1);
    transition: opacity .2s cubic-bezier(.64, .09, .08, 1), transform .2s cubic-bezier(.64, .09, .08, 1);
    transition:opacity .2s cubic-bezier(.64, .09, .08, 1), transform .2s cubic-bezier(.64, .09, .08, 1), -webkit-transform .2s cubic-bezier(.64, .09, .08, 1)
}

[class^=tooltip]:hover:after {
    display: block;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(-50%) translateY(0);
    transform:translateX(-50%) translateY(0)
}

.tooltip--triangle:before {
    content: '';
    width: 0;
    height: 0;
    border-left: solid 6px transparent;
    border-right: solid 6px transparent;
    border-bottom: solid 6px rgb(0, 0, 0);
    opacity: 0;
    visibility: hidden;
    position: absolute;
    -webkit-transform: translateX(-50%) translateY(-2px);
    transform: translateX(-50%) translateY(-2px);
    top: 52px;
    left: 50%;
    transition: opacity .2s cubic-bezier(.64, .09, .08, 1), -webkit-transform .2s cubic-bezier(.64, .09, .08, 1);
    transition: opacity .2s cubic-bezier(.64, .09, .08, 1), transform .2s cubic-bezier(.64, .09, .08, 1);
    transition: opacity .2s cubic-bezier(.64, .09, .08, 1), transform .2s cubic-bezier(.64, .09, .08, 1), -webkit-transform .2s cubic-bezier(.64, .09, .08, 1);
    z-index: 3;
}

.tooltip--triangle:hover:before {
    display: block;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(-50%) translateY(0);
    transform:translateX(-50%) translateY(0)
}

@media only screen and (max-width: 900px) {
	
	/* Header */
	
	#responsive-menu {
		padding-top: 25px;
		border-top: 2px solid rgb(241, 241, 241);
	}
	
	.menu-toggle {
		display: block;
	}
	
	.menu {
		clear: both;
		display: none;
		float: none;
		margin-right: 0;
	}
	
		.menu ul {
			margin-block-start: 0;
			margin-block-end: 0;
			padding-inline-start: 2%;
			padding-inline-end: 2%;
		}
		
		.menu ul li {
			float: none;
			margin: 0 0 25px 0 !important;
			text-align: center;
		}
	
		.menu ul li.dashboard a {
			margin-top: -6px;
		}
		
	.hero-image {
		height: 320px;
		background: url('../images/datacenter.jpg') no-repeat center top;
		background-size: cover;
	}
	
	.hero-image-stream {
		height: 320px;
		background: url('../images/stream-hosting.jpg') no-repeat center top;
		background-size: cover;		
	}
	
	.hero-image-dedicated {
		height: 320px;
		background: url('../images/dedicated-server.jpg') no-repeat center top;
		background-size: cover;		
	}
	
	.hero-image-hosting {
		height: 320px;
		background: url('../images/web-hosting.jpg') no-repeat center bottom;
		background-size: cover;				
	}
	
	.hero-image-vps {
		height: 320px;
		background: url('../images/vps-hosting.jpg') no-repeat center bottom;
		background-size: cover;				
	}
		
	/* Main */
	
	.content-container .box-cabinet, .content-container .box-green-hosting {
		width: 100%;
		margin-right: 0;
		margin-bottom: 25px;
	}
	
	.content-container .virtualization-method label {
		display: none;
	}
	
	.boxes-container .box, .content-container .box-info {
		width: 100%;
		margin-left: 0%;
		float: none;
		margin-top: 25px;
	}
	
	.boxes-container .box:nth-of-type(1) {
		margin-top: 0;
	}
	
	.datacenter-image-1 {
		width: 47.5%;
	}
	
	.datacenter-image-2 {
		background: url('../images/2.jpg') no-repeat center right;
		background-size: cover;
		width: 47.5%;
	}
		
	.datacenter-image-3 {
		width: 100%;
		margin-left: 0;
		margin-top: 5%;
	}
	
	@media (prefers-color-scheme: dark) {
		#responsive-menu {
			border-top: 2px solid rgb(28, 28, 30);
		}
	}
	
}

/* Darkmode */

@media (prefers-color-scheme: dark) {
	
	/* General */
	
	body {
		background: rgb(0, 0, 0);
	}
			
	.red {
		color: rgb(233, 83, 52);
	}
	
	/* Header */
	
	.header-parent {
		background: rgba(0, 0, 0, .84);
	}
	
	.logo a {
		background: url('../images/logo-hs-darkmode.svg');
		background-size: 150px 26px;
	}
	
	.menu-toggle a {
		color: rgb(255, 255, 255);
	}
	
		.menu-toggle a:hover {
			color: rgb(255, 255, 255);
		}
	
	.menu ul li a {
		color: rgb(255, 255, 255);
	}
	
		.menu ul li a:hover {
			color: rgb(233, 83, 52);
		}
	
	.menu ul li.dashboard a {
			color: rgb(233, 83, 52);
			border: 1px solid rgb(233, 83, 52);
		}
		
		.menu ul li.dashboard a:hover {
			border: 1px solid rgb(233, 83, 52);
			background: rgb(233, 83, 52);
		}
		
	.domain-search-container {
		background: rgba(28, 28, 30, .84);
	}
	
		.domain-search-container i {
			color: rgb(255, 255, 255);
		}
	
			.domain-search-container form input[type="text"] {
				color: rgb(255, 255, 255);
			}
			
			.domain-search-container form input[type="submit"] {
				color: rgb(233, 83, 52);
				border: 1px solid rgb(233, 83, 52);
			}
			
			.domain-search-container form input[type="submit"]:hover {
				border: 1px solid rgb(233, 83, 52);
				background: rgb(233, 83, 52);
			}
		
	/* Main */
	
	.content-container h1, .content-container h2, .content-container h4 {
		color: rgb(255, 255, 255);
	}
	
	.content-container h3 {
		color: rgb(72, 72, 74);
	}
	
    .content-container .box-cabinet {
	    background: rgb(28, 28, 30);
    }
    
    .content-container .button a {
			color: rgb(233, 83, 52);
			border: 1px solid rgb(233, 83, 52);
		}
		
		.content-container .button a:hover {
			border: 1px solid rgb(233, 83, 52);
			background: rgb(233, 83, 52);
		}

	.content-container .title {
		color: rgb(255, 255, 255);
	}
	
	.content-container a:hover {
		color: rgb(233, 83, 52);
	}
	
	.content-container .box-info-title {
		color: rgb(255, 255, 255);
	}
	
	.content-container .virtualization-method select {
		border: 1px solid rgb(233, 83, 52);
		color: rgb(233, 83, 52);
		background: url('../images/chevron-down-solid-darkmode.svg') no-repeat;
		background-size: 14px 14px;
		background-position-x: 84px;
		background-position-y: 12px;
	}
	
	.boxes-container .box {
		background: rgb(28, 28, 30);
	}
	
		.boxes-container .box li {
			color: rgb(255, 255, 255);
		}
		
		.boxes-container .box span {
			color: rgb(142, 142, 147);
		}
		
		.boxes-container .box .price {
			color: rgb(233, 83, 52);
		}
		
		.boxes-container .box .button a {
			background: rgb(233, 83, 52);
		}
		
	/* Tooltip */
	
	[class^=tooltip]:after {
		background: rgb(44, 44, 46);
	}
	
	.tooltip--triangle:before {
    	border-bottom: solid 6px rgb(44, 44, 46);
    }
    
    /* Footer */
    
    footer li.logo {
		background: url('../images/logo-hs-darkmode.svg');
		background-size: 86px 14px;
	}
	
}