@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');

:root {
	--white: #ffffff;
	--black: #000;
	--gary-color: #727272;
	--lightgary-color: #b2b9bd;
	--theme-color: #AF1E14;
	--primary-color: #1C2352;
}

html {
	font-size: 16px;
	overflow-x: hidden;
}

body {
	position: relative;
	font-family: 'Poppins', sans-serif;
	background: #fff;
	overflow-x: hidden;
}

p {
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 2.1875rem;
	color: #828282;
}

h1,
h2,
h3,
h4 {
	color: #000;
	font-family: "DM Serif Display", serif;
}

.img-auto {
	display: block;
	max-width: 100%;
	margin: 0 auto;
}

a,
button {
	text-decoration: none !important;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

a:hover,
button:hover {
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

figure {
	margin: 0;
}

/* loader */
.preLoader {
	width: 100%;
	height: 100%;
	z-index: 1111;
	display: flex;
	align-items: center;
	justify-content: center;
	position: fixed;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
}

.preLoader.black {
	background-color: var(--primary-color);
	z-index: 11113;
}

.preLoader.white {
	z-index: 11112;
	background-color: var(--theme-color);
}

/* loader */

/* Cursor Start */

.mouse-cursor {
	position: fixed;
	left: 0;
	top: 0;
	pointer-events: none;
	border-radius: 50%;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	visibility: hidden;
}

.cursor-inner {
	margin-left: 2px;
	margin-top: 2px;
	width: 7px;
	height: 7px;
	z-index: 10000001;
	background-color: var(--theme-color);
	-webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
	-o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
	transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
	margin-left: -10px;
	margin-top: -10px;
	width: 30px;
	height: 30px;
	background-color: var(--theme-color);
	opacity: 0.3;
}

/* Cursor End */

/* btn css */

.themeBtn {
	background: var(--theme-color);
	font-size: 1.125rem;
	color: var(--white);
	text-transform: uppercase;
	font-weight: 500;
	display: inline-block;
	padding: 0.73em 1.49em;
	border-radius: 0;
	line-height: normal;
	position: relative;
}

.themeBtn.borderBtn {
	background: transparent;
	border: 1px solid #fff;
	padding: 1.04em 2em;
}

.themeBtn:before {
	content: '';
	position: absolute;
	left: -6px;
	bottom: -8px;
	width: 100%;
	height: 100%;
	border: 1px solid var(--theme-color);
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.readBtn:hover {
	background: var(--primary-color);
	color: var(--white);
}

.themeBtn:hover {
	background: var(--primary-color);
	color: var(--white);
}

.themeBtn:hover:before {
	border-color: var(--theme-color);
	inset: 0;

}

/* btn css */

/* mouse animation css  */

.bounce-element {
	animation: bounce 0.9s infinite alternate;
	-webkit-animation: bounce 0.9s infinite alternate;
}

@keyframes bounce {
	from {
		transform: translateY(0px);
	}

	to {
		transform: translateY(-15px);
	}
}

@-webkit-keyframes bounce {
	from {
		transform: translateY(0px);
	}

	to {
		transform: translateY(-15px);
	}
}

.mouse {
	position: absolute;
	bottom: 1rem;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 11;
	text-align: center;
}

/* mouse animation css  */


/* landing page css */
body.landing {
	background: #000;
}

.oblique {
	position: relative;
	overflow: hidden;
	height: 100vh;
}

.oblique .main-block-oblique {
	overflow: hidden;
	position: relative;
	z-index: 0;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	background-repeat: no-repeat;
}

@media (max-width: 768px) {
	.oblique .main-block-oblique {
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-orient: vertical;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
}

.oblique .skew-block {
	margin-left: -10vh;
	margin-right: -10vh;
}

.oblique .skew-block-repeat {
	will-change: transform;
	-webkit-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
	-moz-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
	-ms-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
	-o-transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: all 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
	/* opacity: 0.8; */
	min-height: 100vh;
	float: left;
	position: relative;
	/* z-index: 0; */
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	margin: 0 -1px;
	z-index: 111;
}

.slide1 {
	width: 100%;
	height: 100%;
}

.slide2 {
	width: 100%;
	height: 100%;
}

@media (max-width: 768px) {
	.oblique .skew-block-repeat {
		min-height: 50vh;
	}
}

.oblique .skew-block-repeat:hover {
	-webkit-box-flex: 1.2;
	-webkit-flex: 1.2;
	-ms-flex: 1.2;
	flex: 1.2;
	opacity: 1;
}

.oblique .skew-block-repeat:hover a .oblique-caption h2 {
	animation: bounceIn 1200ms;
}

@keyframes bounceIn {
	0% {
		transform: scale(0.8);
		opacity: 0;
	}

	60% {
		transform: scale(1.1);
		opacity: 1;
	}

	100% {
		transform: scale(1);
	}
}

/* .oblique .skew-block-repeat:hover a .oblique-caption button {
	opacity: 0.8;
	background: #fff;
	color: #000;
} */

.oblique .skew-block-repeat a {
	-webkit-transition: all ease-in-out 300ms;
	-moz-transition: all ease-in-out 300ms;
	-ms-transition: all ease-in-out 300ms;
	-o-transition: all ease-in-out 300ms;
	transition: all ease-in-out 300ms;
	outline: none !important;
	text-decoration: none;
}

.oblique .skew-block-repeat a .oblique-inner {
	-webkit-transform: skewX(10deg);
	transform: skewX(10deg);
	margin-left: 0;
	margin-right: 0;
	-webkit-transition: box-shadow 0.2s ease-out;
	-moz-transition: box-shadow 0.2s ease-out;
	-ms-transition: box-shadow 0.2s ease-out;
	-o-transition: box-shadow 0.2s ease-out;
	transition: box-shadow 0.2s ease-out;
	position: relative;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	overflow: hidden;
	height: 100%;
	position: absolute;
	width: 100%;
	border-right: 8px solid #fff;
	z-index: -1;
}

.oblique .skew-block-repeat a .oblique-inner .image-wrapper {
	margin-left: -5vh;
	margin-right: -10vh;
	-webkit-transform: skewX(10deg);
	transform: skewX(-4deg);
	position: relative;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	height: 100%;
}

.oblique .skew-block-repeat a .oblique-inner .image-wrapper .main-image {
	position: absolute;
	top: -2px;
	left: -2px;
	right: -2px;
	bottom: -2px;
}

.oblique .skew-block-repeat a .oblique-inner .image-wrapper .main-image .image-img {
	position: absolute;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	height: 100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transition: 0.2s ease-out;
	-moz-transition: 0.2s ease-out;
	-ms-transition: 0.2s ease-out;
	-o-transition: 0.2s ease-out;
	transition: 0.2s ease-out;
	max-width: 100%;
	max-height: 100%;
	vertical-align: middle;
	border: 0;
}

.oblique .skew-block-repeat a .oblique-caption {
	position: absolute;
	bottom: 90px;
	color: #fff;
	z-index: 1;
	left: 0;
	right: 0;
	width: 52%;
	bottom: 0;
	top: 0;
	/* -webkit-transform: translateY(-50%); */
	/* transform: translateY(-50%); */
	/* text-align: center; */
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-direction: column;
	margin: auto;
}

@media (max-width: 768px) {
	.oblique .skew-block-repeat a .oblique-caption.caption-top {
		top: 60%;
	}
}

@media (max-width: 768px) {
	.oblique .skew-block-repeat a .oblique-caption.caption-bottom {
		top: 35%;
	}
}

.oblique .skew-block-repeat a .oblique-caption h2 {
	font-family: "PT Sans", cursive;
	font-size: 4rem;
	color: #fff;
	margin: 0;
	padding: 0;
	letter-spacing: 0.1rem;
}

@media (max-width: 992px) {
	.oblique .skew-block-repeat a .oblique-caption h2 {
		font-size: 3rem;
	}
}

.oblique .skew-block-repeat a .oblique-caption button {
	/* font-family: "Muli", sans-serif;
	font-size: 1.1rem;
	text-transform: uppercase;
	background: transparent;
	color: #fff;
	border: 2px solid #fff;
	padding: 0.8rem 6rem;
	letter-spacing: 0.1rem;
	margin-top: 1rem;
	opacity: 0.5;
	cursor: pointer;
	-webkit-transition: all 800ms;
	-moz-transition: all 800ms;
	-ms-transition: all 800ms;
	-o-transition: all 800ms;
	transition: all 800ms; */
	border: 0;
}

@media (max-width: 992px) {
	.oblique .skew-block-repeat a .oblique-caption button {
		font-size: 1rem;
		padding: 0.8rem 4rem;
	}
}

@media (max-width: 768px) {
	.oblique .skew-block-repeat a .oblique-caption button {
		opacity: 0.9;
	}
}

body.landing header {
	display: none;
}

body.landing footer {
	display: none;
}

.oblique .skew-block-repeat a .oblique-inner:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgb(52 56 107 / 0%), #34386B);
	z-index: 1;
}

.oblique .skew-block-repeat.skew-right a .oblique-inner:before {
	background: #000;
	opacity: 70%;
}

.oblique .skew-block-repeat.skew-right a .oblique-inner .image-wrapper .main-image .image-img {
	mix-blend-mode: luminosity;
	filter: grayscale(1);
}

.oblique .skew-block-repeat a .oblique-caption p {
	color: var(--white);
	margin: 4px 0 20px;
}

.min-heading {
    font-size: 2.875rem;
}

.heading {
    font-size: 8.25rem;
    line-height: 1;
    margin: 0 0 20px;
}

/* landing page css end */