* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

/* common css */

@font-face {
  font-family: 'DharmaGothicE_Heavy_R';
  src: url('../fonts/DharmaGothicE_Heavy_R.otf');
}
@font-face {
  font-family: 'DharmaGothicE_Regular_R';
  src: url('../fonts/DharmaGothicE_Regular_R.otf');
}
@font-face {
  font-family: 'Sporten';
  src: url('../fonts/Sporten.ttf');
}
ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

a {
  display: inline-block;
  text-decoration: none;
}

img,
video {
  max-width: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
}

.row {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -12px;
}
.container, .container-fluid {
	max-width: 100%;
	margin: 0 auto;
}

.row>* {
  padding: 0 12px;
  width: 100%;
}

.form-control-common {
	background: #EFEFEF;
	border: none;
	font-size: 20px;
	padding: 15px 30px;
	width: 100%;
	appearance: textfield;
	color: #8F8F8F;
	border-radius: 50px;
	text-transform: capitalize;
	box-shadow: none;
	resize: none;
	font-family: 'Poppins', sans-serif;
}

::placeholder {
	color: #8F8F8F;
}

.btn-common {
	font-size: 35px;
	padding: 10px 20px;
	background: #E5D81E;
	color: #000;
	border-radius: 50px;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
	width: 100%;
	font-weight: 500;
	font-family: 'Sporten';
}
.btn-common img {
	max-width: 60px;
	margin-right: 15px;
}
.pb-0 {
	padding-bottom: 0 !important;
}

/* landing css */
#landing .landing-box {
	background: url('../images/banner.webp') no-repeat;
	background-size: cover;
	background-position: top;
	overflow: hidden;
	text-align: center;
	min-height: 100vh;
	padding: 40px 20px;
	display: flex;
	align-items: flex-end;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	max-width: 480px;
	margin: 0 auto;
	position: relative;
}
.landing-content .text-box img.two {
	padding: 40px 0 10px;
}
#landing .logo-box img {
	max-width: 300px;
	margin-bottom: 20px;
}
.landing-content .text-box p {
	font-size: 35px;
	font-family: 'DharmaGothicE_Regular_R';
	color: #fff;
	margin-bottom: 15px;
}
.landing-content .text-box img {
	max-width: 500px;
	width: 100%;
}

.whatsapp-icon {
  position: absolute;
  right: 10px;
  bottom: 20%;
}

/* responsive */
@media (min-width: 992px) {
  .col-lg-5 {
    width: 40%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-7 {
    width: 60%;
  }
}

@media (min-width: 768px) {
  .col-md-5 {
    width: 40%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-7 {
    width: 60%;
  }
}
@media (max-width: 479px) {
  .landing-content .text-box img {
    max-width: 400px;
    width: 100%;
  }
  .landing-content .text-box p {
    font-size: 30px;
  }
  .btn-common img {
    max-width: 40px;
  }
  .btn-common {
    font-size: 25px;
  }
  .landing-content .text-box img.two {
    padding: 20px 0 0px;
  }
}

@media (max-width: 375px) {
  .landing-content .text-box p {
    font-size: 25px;
  }

  .whatsapp-icon {
    bottom: 25%;
  }

  .whatsapp-icon img {
    width: 40px;
    height: 40px;
  }

  #landing .logo-box img {
    max-width: 200px;
  }
 
}