@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@200;400;500;600;700;800;900&display=swap');

/* font-family: 'Outfit', sans-serif; */
@font-face {
	font-family: 'Javatages';
	src: url('../fonts/Javatages.ttf');
}

@font-face {
	font-family: 'rnsans';
	src: url('../fonts/RNSSanz-Normal.ttf');
}

:root {
	--primaryFont: 'Javatages';
	--bodyFont: 'rnsans';
	--white: #fff;
}

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

.header {
	padding: 14px;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	z-index: 999;
	background-color: rgba(0, 0, 0, 0.3);
}

.logo {
	font-size: 24px;
	font-family: var(--primaryFont);
	text-transform: capitalize;
	color: #fff;
}

ul li {
	list-style-type: none;
}

a {
	text-decoration: none;
}

.logo:hover,
.location li a:hover {
	color: #4F3230;
}

.location {
	display: flex;
}

.location li a {
	color: var(--white);
	font-family: var(--primaryFont);
	font-size: 18px;

}

.location li {
	margin-right: 24px;
	display: inline-block;
}

.location li:last-child {
	margin-right: 0px !important;
}

.login-btn {
	height: 48px;
	line-height: 48px;
	box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.18);
	border-radius: 6px;
	background: #fff;
	padding: 0px 20px;
	display: inline-block;
	margin-left: 20px;
	color: #000 !important;
	border: none;
	outline: none;
	font-family: var(--primaryFont);
	font-size: 18px;
}

.login-btn:hover {
	color: #fff !important;
	background: #4F3230;
}

.banner {
	/* background: url('../img/banner-3.jpg');
    background-repeat: no-repeat; */
	background-size: cover;
	height: 100vh;
}

.banner .item img {
	height: 100vh;
	object-fit: cover;
	background-position: center center;
}

.mobile-menu {
	position: fixed;
	top: 0;
	left: -100%;
	right: 0;
	bottom: -20%;
	background: #415335;
	text-align: left;
	padding: 50px;
	width: 100%;
	transition: all .4s ease-in-out;
}

.mobile-menu.active {
	transition: all .4s ease-in-out;
	left: 0px !important;
}

.mobile-menu li a {
	color: var(--white);
	font-family: var(--primaryFont);
	font-size: 18px;
}

.mobile-menu li {
	margin-bottom: 6px;
}

#menuClose {
	position: fixed;
	top: 12px;
	right: 20px;
	font-size: 25px;
	cursor: pointer;
	color: #fff;
	display: none;
}

.mobile-menu.active #menuClose {
	display: block;
}

.humMenu i {
	color: var(--white);
	font-size: 22px;
	cursor: pointer;
}

#mobileMenuIcon {
	display: none;
}

/* modal start  */
.screen {
	background: linear-gradient(90deg, #5D54A4, #7C78B8);
	position: relative;
	height: 530px;
	width: 360px;
	box-shadow: 0px 0px 24px #5C5696;
}

.screen__content {
	z-index: 1;
	position: relative;
	height: 100%;
}

.screen__background {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	-webkit-clip-path: inset(0 0 0 0);
	clip-path: inset(0 0 0 0);
}

.screen__background__shape {
	transform: rotate(45deg);
	position: absolute;
}

.screen__background__shape1 {
	height: 520px;
	width: 520px;
	background: #FFF;
	top: -50px;
	right: 120px;
	border-radius: 0 72px 0 0;
}

.screen__background__shape2 {
	height: 220px;
	width: 220px;
	background: #6C63AC;
	top: -172px;
	right: 0;
	border-radius: 32px;
}

.screen__background__shape3 {
	height: 540px;
	width: 190px;
	background: linear-gradient(270deg, #5D54A4, #6A679E);
	top: -24px;
	right: 0;
	border-radius: 32px;
}

.screen__background__shape4 {
	height: 400px;
	width: 200px;
	background: #7E7BB9;
	top: 420px;
	right: 50px;
	border-radius: 60px;
}

.login {
	width: 320px;
	padding: 30px;
	padding-top: 156px;
}

.login__field {
	padding: 20px 0px;
	position: relative;
}

.login__icon {
	position: absolute;
	top: 30px;
	color: #7875B5;
}

.login__input {
	border: none;
	border-bottom: 2px solid #D1D1D4;
	background: none;
	padding: 10px;
	padding-left: 24px;
	font-weight: 700;
	width: 75%;
	transition: .2s;
}

.login__input:active,
.login__input:focus,
.login__input:hover {
	outline: none;
	border-bottom-color: #6A679E;
}

.login__submit {
	background: #fff;
	font-size: 14px;
	margin-top: 30px;
	padding: 16px 20px;
	border-radius: 26px;
	border: 1px solid #D4D3E8;
	text-transform: uppercase;
	font-weight: 700;
	display: flex;
	align-items: center;
	width: 100%;
	color: #4C489D;
	box-shadow: 0px 2px 2px #5C5696;
	cursor: pointer;
	transition: .2s;
}

.login__submit:active,
.login__submit:focus,
.login__submit:hover {
	border-color: #6A679E;
	outline: none;
}

.button__icon {
	font-size: 24px;
	margin-left: auto;
	color: #7875B5;
}

.social-login {
	position: absolute;
	height: 140px;
	width: 160px;
	text-align: center;
	bottom: 0px;
	right: 0px;
	color: #fff;
}

.social-icons {
	display: flex;
	align-items: center;
	justify-content: center;
}

.social-login__icon {
	padding: 20px 10px;
	color: #fff;
	text-decoration: none;
	text-shadow: 0px 0px 8px #7875B5;
}

.social-login__icon:hover {
	transform: scale(1.5);
}

.signupModal .modal-content {
	background: url('../img/modal-bg.jpg');
}

.mt {
	font-size: 36px;
	color: #415335;
	text-transform: uppercase;
	font-family: var(--primaryFont);
	display: block;
}

.modal-header {
	padding: 4px 16px;
}

.login-modal {
	margin-top: 20px;
}

.login-modal input {
	outline: none;
	padding: 10px 16px;
	border: 1px solid #415335;
	width: 100%;
	background: #FBF6F2;
	border-radius: 6px;
	font-family: var(--bodyFont) !important;
	color: #415335;
	margin-bottom: 20px;
	font-size: 18px;
}

.login-modal input::placeholder {
	color: #415335;
	font-family: var(--bodyFont);
}

.btn-text {
	background-color: #415335;
	color: var(--white);
	padding: 0 33px;
	height: 50px;
	line-height: 50px;
	border: 1px solid #415335;
	outline: none;
	font-family: var(--bodyFont);
	font-size: 18px;
	border-radius: 4px;
}

.btn-text:hover {
	background: transparent;
	color: #415335;
}

.who-we-are {
	padding: 60px 0px;
	background: url('../img/bg-abs-pista-green.png');
	height: 100vh;
	background-repeat: no-repeat;
	background-size: cover;
}

.who-we-are {
	padding-top: 130px;
}

.who-we-are-img {
	max-width: 300px;
	/* margin: 0px auto; */
}

p {
	color: #21241f;
	font-size: 18px;
	font-family: var(--primaryFont);
}

.br-9 {
	border-radius: 9px;
}

.contact-div {
	background: var(--white);
	padding: 20px 30px;
	border-radius: 12px;
}

.ah-100 {
	height: 100px;
}

.con-text {
	font-size: 20px;
	font-family: var(--primaryFont);
	color: #415335;
	display: block;
	margin-bottom: 0px;
}

.con-text i {
	margin-right: 10px;
}

.mt-50 {
	margin-top: 50px;
}

.testimonial-card {
	padding: 36px 30px 32px;
	background: url('../img/text.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 4px;
	box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.18);
}

.cimg {
	border-radius: 50%;
}

.name {
	font-size: 18px;
	font-family: var(--bodyFont);
	color: #21241f;
	margin-top: 20px;
	display: block;
}

/* .testi-text {
	margin-top: 26px;
} */

.testimonial-card p {
	color: var(--white) !important;
}

.signin {
	outline: none;
	border: none;
	background: transparent;
	color: #fff;
	font-size: 18px;
	font-family: var(--primaryFont);
}

.signin:hover {
	color: #4F3230;
}

.body-font {
	font-family: var(--bodyFont) !important;
}

.testimonial-card span,
.testimonial-card p {
	font-family: var(--bodyFont) !important;
}

.degi {
	display: block;
	font-size: 13px;
	color: #d0cbcb;
}
.testimonial-sec p{
	font-family: var(--bodyFont);
}
/* .bg-yellow{
	background: #f8f08e;
	padding: 0px 4px;
	border-radius: 4px;
} */
.mb-24{
	margin-bottom: 24px !important;
}
.page-indicator {
	font-family: var(--primaryFont) !important;
	color: #21241f;
	font-weight: 400;
}
.text-primary .name{
	color: #21241f !important;
	margin-bottom: 12px;
}
.mb-30{
	margin-bottom: 30px !important;
}
.testimonial-sec p{
	font-family: var(--bodyFont) !important;
	font-size: 18px !important;
}
.contactUsForm input, .contactUsForm input::placeholder{
   font-family: var(--bodyFont) !important;
   font-size: 18px !important;
}
.font-blod{
	font-weight: 700 !important;
}
#mytopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: green;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#mytopBtn:hover {
  background-color: #555;
}