:root {
	--container-bg-color: #333;
	--left-bg-color: #ed1b2f;
	--left-button-hover-color: rgba(161, 11, 11, 0.3);
	--right-bg-color: #414141;
	--right-button-hover-color: rgba(92, 92, 92 0.3);
	--hover-width: 75%;
	--other-width: 25%;
	--speed: 1000ms;
}

html,
body {
	padding: 0;
	margin: 0;
	font-family: "Montserrat", sans-serif;
	width: 100%;
	height: 100%;
	overflow-x: hidden;
}

h1 {
	font-size: 4rem;
	color: #fff;
	position: absolute;
	left: 50%;
	/* right: 20%; */
	transform: translate(-50%);
	top: 78%;
	white-space: nowrap;
	font-weight: bold;
}

img {
	position: absolute;
	margin: auto;
	width: 50%;
	text-align: center;
	transform: translate(50%);
	top: 8%;
}


.button {
	display: block;
	position: absolute;
	left: 50%;
	top: 30%;
	height: 2.5rem;
	padding-top: 1.3rem;
	width: 15rem;
	text-align: center;
	color: #fff;
	border: #fff solid 0.2rem;
	font-size: 1rem;
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: none;
	transform: translateX(-50%);
}


.split.left .button:hover {
	background-color: var(--left-button-hover-color);
	border-color: var(--left-button-hover-color);
}

.split.right .button:hover {
	background-color: var(--right-button-hover-color);
	border-color: var(--right-button-hover-color);
}

.container {
	position: relative;
	width: 100%;
	height: 100%;
	background: var(--container-bg-color);
}


.split {
	position: absolute;
	width: 50%;
	height: 100%;
	overflow: hidden;


}


.split.left {
	left: 0;
	background: url('pictures/hindi.jpg') center center no-repeat;
	background-size: cover;
	background-color:#ffb53a;
}


.split.left:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background: #ffb53a;
}


.split.right {
	right: 0;
	background: url('pictures/english.jpg') center center no-repeat;
	background-size: cover;
}

.split.right:before {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	background: #7bb6ff;
}

/* /\/\/\/\/\ All above is the script for a non-responsive, non-transitioning, full-page, static, split layout */

.split.left,
.split.right,
.split.right:before,
.split.left:before {
	transition: var(--speed) all ease-in-out;
}


.hover-left .left {
	width: var(--hover-width);
}

.hover-left .right {
	width: var(--other-width);
}

.hover-left .right:before {
	z-index: 2;
}


.hover-right .right {
	width: var(--hover-width);
}

.hover-right .left {
	width: var(--other-width);
}

.hover-right .left:before {
	z-index: 2;
}



/* @media(max-width: 800px) {
	h1 {
		font-size: 2rem;
	}

	.button {
		width: 12rem;
    }

} */



.title.hindi {
	margin-top: 37px;
	color: #fff;
}



.footer-holder.text-center {
	position: absolute;
	bottom: 0;
	background: black;
	width: 100%;
	color: #fff;
	padding-top: 7px;
	text-align: center;
}

.footer-holder.text-center p {
	font-size: 0.8rem;
	font-weight: lighter;
	color: #eee;
}

@media only screen and (min-width: 768px) and (max-width: 992px) {

	h1 {
		top: 65%;
	}

	img {
		width: 100%;
		transform: none;
		top: 15% !important;
	}
}

.mobile {
	display: none;
}

@media only screen and (max-width: 600px) {
	.container.pc {
		display: none;
	}

	.mobile {
		display: block;
	}

	.top {
		background: #ffb53a;
		height: 45vh;
		position: relative;
	}

	img {
		top: 15%
	}

	.bottom {
		background: #7bb6ff;
		height: 45vh;
		position: relative;
	}

	h1 {
		font-size: 2rem;
		top: 65%;
	}

	/* .footer-holder.text-center{
		height: 10vh;
	} */
}