/* CSS Document */

/*@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	/*font-family: "Inter", serif;*/
	font-family: 'Poppins', sans-serif;
}

.inter-wght {
  font-family: "Inter", serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

body {
	background: black;
	min-height: 100vh;
	/*overflow-x: hidden;*/
	height: 100%;
	z-index: 1;
	position: relative;
}

html, body{
	overflow-x: hidden;
}

/*.footer {
  display: flex;
}*/

.footer{
	background: #000;
}

.column {
  flex: 50%;
}

/*header{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 30px 100px;
	display: flex;
	justify-content: space-between;
	aligh-items: center;
	z-index: 100;
}*/

/*logo{
	font-size: 2em;
	color: #fff;
	pointer-events: none;
	margin-right: 270px;
	z-index: 100;
}*/

.parallax{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

#text {
	position: absolute;
	font-size: 3.5em;
	color: #fff;
	text-shadow: 2px 2px 4px rfba(0, 0, 0, .2);	
}

#text2
{
	position: absolute;
	font-size: 1.5em;
	margin-top: 100px;
	color: #fff;
	text-shadow: 2px 2px 4px rfba(0, 0, 0, .2);	
}

.parallax img{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.sec{
    position: relative;
    background: #000;
    padding: 50px;
    z-index: 1;
}

.sec h1{
	font-size: 2.5em;
	color: #fff;
	margin-top: 60px;
	text-align: center;
}

.sec h2{
	font-size: 2.5em;
	color: #fff;
	margin-bottom: 10px;
	text-align: left;
	justify-content: left;
}

h2{
	font-size: 1.5em;
	color: #fff;
	margin-bottom: 10px;
	text-align: center;
	justify-content: center;
}

h3{
	font-size: 1em;
	color: #fff;
	margin-bottom: 10px;
	text-align: left;
	justify-content: left;
}

.footer-column h4{
	font-size: 1.5em;
	color: #fff;
	margin-bottom: 10px;
	text-align: left;
	justify-content: left;
}

/*p{
	font-size: 1em;
	color: #fff;
	margin-bottom: 10px;
	text-align: center;
	z-index: 1;
	justify-content: center;
}*/

p1 {
	font-size: 1em;
	color: #fff;
	margin-bottom: 10px;
	text-align: center;
	justify-content: center;
}

.sec h3{
	font-size: 2em;
	color: #fff;
	margin-bottom: 10px;
}

.sec p{
	font-size: 1.3em;
	color: #fff;
	font-weight: 300;
}

a
{
  text-decoration: none;
  color: #232323;
  
  transition: color 0.3s ease;
}

a:hover
{
  color: tomato;
}

#menuToggle
{
  display: block;
  position: relative;
  top: 50px;
  left: 50px;
  /*margin-left: 90%;*/
  
  z-index: 1;
  
  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input
{
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: 0px;
  left: -5px;
  
  cursor: pointer;
  
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  
 -webkit-touch-callout: none;
}

/*
 * hamburger
 */
#menuToggle span
{
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  
  background: #fff;
  border-radius: 3px;
  
  z-index: 2;
  
  transform-origin: 4px 0px;
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

#menuToggle span:first-child
{
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
  transform-origin: 0% 100%;
}

/* 
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

#menuToggle input:checked ~ span:nth-last-child(2)
{
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
  position: absolute;
  width: 300px;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;
  height: 900px;
  z-index: 1;
  background: #fff;
  list-style-type:none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */
  
  transform-origin: 0% 0%;
  transform: translate(-100%, 0);
  
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

#menu li
{
  padding: 10px 0;
  font-size: 22px;
}
/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul
{
  transform:none;
}

.container {
  height: 50px;
  position: relative;
  z-index: 1;
}

.center {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.button-59 {
  align-items: center;
  background-color: #fff;
  border: 2px solid #000;
  box-sizing: border-box;
  color: #000;
  cursor: pointer;
  display: inline-flex;
  fill: #000;
  font-family: Inter,sans-serif;
  font-size: 20px;
  font-weight: 600;
  height: 48px;
  justify-content: center;
  letter-spacing: -.8px;
  line-height: 24px;
  min-width: 140px;
  outline: 0;
  padding: 0 25px;
  text-align: center;
  text-decoration: none;
  transition: all .3s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.button-59:focus {
  color: #171e29;
}

.button-59:hover {
  border-color: burlywood;
  color: burlywood;
  fill: grey;
}

.button-59:active {
  border-color: burlywood;
  color: burlywood;
  fill: grey;
}

/* Footer styles */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333;
  color: #fff;
  padding: 100px;
  text-align: left;
  flex-shrink: 0; /* Ensures the footer stays at the bottom */
}

.footer-column {
  flex: 1;
  padding: 0 30px;
}

.footer-column h3 {
  margin-bottom: 10px;
  font-size: 1.2em;
}

.footer-column ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin: 5px 0;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

/* Ensure footer is anchored to the bottom even with little content */
body::after {
  content: '';
  display: block;
  height: 0;
  flex-shrink: 0;
}

    p.copyright {
        position: relative;
        width: 100%;
        color: #fff;
		background-color: #333;
        line-height: 40px;
        font-size: 1em;
        text-align: center;
        bottom:0;
		margin-top: 0px;
		z-index: 1;
    }

form{
	width: 50%;
	margin: auto;
}

.form #DOB{
	width: 100%;
	height: auto;
	margin: auto;
}

.form #date{
	width: 100%;
	height: auto;
	margin: auto;
}

.form textarea{
	resize: none;
	width: 100%;
  	height: 100%;
	margin: auto;
}

.wrapper{
	position: fixed;
	bottom: 50px;
	right: -370px;
	max-width: 345px;
	width: 100%;
	background: #fff;
	border-radius: 8px;
	padding: 15px 25px 22px;
	transition: right 0.3s ease; 
}

.wrapper.show{
	right: 20px;
}

.wrapper header{
	display: flex;
	align-items: center;
	column-gap: 15px;
}

header i{
	color: #4070f4;
	font-size: 32px;
}

header h4{
	color: #000;
	font-size: 20px;
	font-weight: 500;
}

.wrapper .data{
	margin-top: 16px;
}

.wrapper .data p1{
	color: #333;
	font-size: 16px;
}

.data p1 a{
	color: #4070f4;
	text-decoration: none;
}

.data p1 a:hover{
	text-decoration: none;
}

.wrapper .buttons{
	margin-top: 16px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.buttons .button{
	width: calc(100% / 2 - 10px);
	padding: 8px 0;
	border-radius: 4px;
	background: #000;
	color: #fff;
	border: none;
	cursor: pointer;
	transition: all 0.2s ease;
}

.buttons .button:hover{
	background-color: #034bf1;
	
}
