:root {
	--primary-color: #ffffff;
	--dark-color: #141414;
	--light-color: #f4f4f4;
}


* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Arial', sans-serif;
	-webkit-font-smoothing: antialiased;
	background: #000;
	color: #999;
}

#particles-js{
	background-color: rgba(213, 183, 224, 0.133);
}

ul {
	list-style: none;
}

h1,
h2,
h3,
h4 {
	color: #fff;
}

a {
	color: #fff;
	text-decoration: none;
}

p {
	margin: 0.5em 0;
}

img {
	width: 100%;
	
}

.showcase {
	width: 100%;
	height: 80vh;
    position: relative;
    background: url('../Images/s0.jpg') no-repeat center/cover;
    
	
}

.showcase::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: rgba(0, 0, 0, 0.6);
	box-shadow: inset 120px 100px 250px #000000, inset -120px -100px 250px #000000;
}

.showcase-top {
	position:relative;
	z-index: 2;
	height: 90px;
	
}

.showcase-top img {
	width: 170px;
	position: absolute;
	top:20%;
	left:5%;
	margin-left: 0;
}

.showcase-top a {
	position: absolute;
	top: 50%;
	right:0;
	transform: translate(-50%, -50%);

}

.showcase-content {
	position: relative;
	z-index: 2;
	width: 65%;
	margin: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	margin-top: 6em;
}

.showcase-content h1 {
	font-weight: 700;
	font-size: 5.2em;
	line-height: 1.1em;
	margin: 0 0 ;
}

.showcase-content p {
	text-transform: uppercase;
	color: #fff;
	font-weight: 400;
	font-size: 1.9em;
	line-height: 1.25em;
	margin: 0 0 2em;
}

/* Tabs */
.tabs {
	background: var(--dark-color);
	padding-top: 1em;
	border-bottom: 3px solid #3d3d3d;
    border-right: none;
    
}

.tabs .container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 1em;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.tabs p {
	font-size: 1.2em;
	padding-top: 0.5em;
}

.tabs .container > div {
	padding: 1.5em 0;
}

.tabs .container > div:hover {
	color: #fff;
	cursor: pointer;
}

.tab-border {
	border-bottom: var(--primary-color) 4px solid;
}

/* Tab Content */
.tab-content {
	padding: 3em 0;
	background: #000;
	color: #fff;
}

/* Hide initial content */
#tab-1-content,
#tab-2-content,
#tab-3-content {
	display: none;
	opacity: 0;
}

.show {
	display: block !important;
	opacity: 1 !important;
	transition: all 1000 ease-in;
}

#tab-1-content .tab-1-content-inner {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 2em;
	align-items: center;
	justify-content: center;
}

#tab-2-content .tab-2-content-top {
	display: grid;
	grid-template-columns: 2fr 1fr;
	grid-gap: 1em;
	justify-content: center;
	align-items: center;
}

#tab-2-content .tab-2-content-bottom {
	margin-top: 2em;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 2em;
	text-align: center;
}

.table {
	width: 100%;
	margin-top: 2em;
	border-collapse: collapse;
	border-spacing: 0;
}

.table thead th {
	text-transform: uppercase;
	padding: 0.8em;
}

.table tbody {
	display: table-row-group;
	vertical-align: middle;
	border-color: inherit;
}

.table tbody tr td {
	color: #999;
	padding: 0.8em 1.2em;
	text-align: center;
}

.table tbody tr td:first-child {
	text-align: left;
}

.table tbody tr:nth-child(odd) {
	background: #222;
}

.footer {
	max-width: 70%;
	margin: 1em auto;
	overflow: auto;
}

.footer,
.footer a {
	color: #999;
	font-size: 0.9em;
}

.footer p {
	margin-bottom: 1.5em;
}

.footer .footer-cols {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 2em;
}

.footer li {
	line-height: 1.9;
}

.footer .lang-select {
	margin-top: 2em;
	color: #999;
	background-color: #000;
	background-image: none;
	border: 1px solid #333;
	padding: 1em 1.2em;
	border-radius: 5px;
}

/* Container */
.container {
	max-width: 70%;
	margin: auto;
	overflow: hidden;
	padding: 0 2em;
}

/* Text Styles */
.text-xl {
	font-size: 2em;
}

.text-lg {
	font-size: 1.8em;
	margin-bottom: 1em;
}

.text-md {
	margin-bottom: 1.5em;
	font-size: 1.2em;
}

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

.text-dark {
	color: #999;
}

/* Buttons */
.btn {
	display: inline-block;
	background: var(--primary-color);
	color: #000;
	padding: 0.4em 1.3em;
	font-size: 1em;
	text-align: center;
	border: none;
	cursor: pointer;
	margin-right: 0.5em;
	transition: all 0.5s ease-in;
	outline: none;
	box-shadow: 0 1px 0 rgba(0, 0, 0, 0.45);
	border-radius: 40px;
}

.btn:hover {
    color: #fff;
    background: var(--dark-color);
	opacity: 0.9;
}

.btn-rounded {
	border-radius: 5px;
}

.btn-xl {
	font-size: 2em;
	padding: 1em
	text-transform: uppercase;
}

.btn-lg {
	font-size: 1em;
	padding: 0.8em 1.3em;
	text-transform: uppercase;
}

.btn-icon {
	margin-left: 1em;
}

@media (max-width: 960px) {

		.showcase {
		height: 80vh;
	}

	.hide-sm {
		display: none;
	}

	.showcase-top img {
		top: 30%;
		left: 5%;
		transform: translate(0);
	}
    .showcase-top a{
    	transform: translate(-20%,-45%);
    }
	.showcase-content h1 {
		font-size: 3.7em;
		line-height: 1;
	}

	.showcase-content p {
		font-size: 1.5em;
	}

	.footer .footer-cols {
		grid-template-columns: repeat(2, 1fr);
	}

	.btn-xl {
		font-size: 1.5em;
		padding: 1.4em 2em;
		text-transform: uppercase;
	}

	.text-xl {
		font-size: 1.5em;
	}

	.text-lg {
		font-size: 1.3em;
		margin-bottom: 1em;
	}

	.text-md {
		margin-bottom: 1em;
		font-size: 1.2em;
	}
}

@media (max-width: 700px) {
	.showcase::after {
		background: rgba(0, 0, 0, 0.6);
		box-shadow: inset 80px 80px 150px #000000, inset -80px -80px 150px #000000;
	}

	.showcase-content h1 {
		font-size: 2.5em;
		line-height: 1;
	}

	.showcase-content p {
		font-size: 1em;
	}

	#tab-1-content .tab-1-content-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}

	#tab-2-content .tab-2-content-top {
		display: block;
		text-align: center;
	}

	#tab-2-content .tab-2-content-bottom {
		margin-top: 2em;
		display: grid;
		grid-template-columns: 1fr;
		grid-gap: 2em;
		text-align: center;
	}

	.btn-xl {
		font-size: 1em;
		padding: 1.2em 1.6em;
		text-transform: uppercase;
	}

	.btn-rounded{
		right:0;
		margin:0;
	}
}

@media(max-height: 600px) {
  .showcase-content {
	margin-top: 3em;
}
}
  


