/*!
 * © Evite You 2024 All Rights Reserved.
 */

.overlay {
  background-color: rgba(255, 255, 255, 0.5);
}

a {
  color: #fff;
}
a:hover {
  color: #fff;
}

.color-white {
	color: #0f2c2d;
}
.color-white-b {
	background-color: #0f2c2d;
}

.color-theme {
	color: #e4e0d8;
}
.color-theme-b {
	background-color: #e4e0d8;
}

.color-second {
	color: #e4e0d8;
}
.color-second-b {
	background-color: #e4e0d8;
}

.color-third {
	color: #ecf3f7;
}
.color-third-b {
	background-color: #ecf3f7;
}

.section__headline {
  display: block;
  width: calc(1 * (60 * 1px));
  height: 1px;
  background-color: #fff;
}

.section__headline1 {
  display: block;
  width: calc(1 * (60 * 1px));
  height: 1px;
  background-color: #0f2c2d;
}


@font-face {
	font-family: 'eviteyou';
	src: url('../fonts/eviteyou.woff2') format('woff2'),
	     url('../fonts/eviteyou.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'eviteyou2';
	src: url('../fonts/eviteyou2.woff2') format('woff2'),
	     url('../fonts/eviteyou2.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'rare';
	src: url('../fonts/rare.woff2') format('woff2'),
	     url('../fonts/rare.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

.text-script-1 {
	font-family: 'rare', 'Helvetica Neue', sans-serif;
	font-size: 8rem;
	line-height: 1.2;
	font-weight: 400;
}

.story-content {
    position: relative;
    margin-top: 15px;
    padding-left: 30px;
	padding-right: 30px;
	padding-bottom: 0px;
	padding-top: 30px;
}

.close-btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  border: none;
  font-size: 40px;
  color: #000;
  cursor: pointer;
  line-height: 1;
  text-align: center;
  font-weight: 500;
  margin-bottom: 50px;
}

.close-btn:focus {
  outline: none;
  box-shadow: none;
}

.close-btn1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  border: none;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  text-align: center;
  font-weight: 500;
  margin-bottom: 50px;
}

.close-btn1:focus {
  outline: none;
  box-shadow: none;
}

.pointer {
    cursor: pointer;
}

.overlay_light {
  background-color: rgba(255, 255, 255, 0.4);
}

.form-container1 {
	display: flex;
	flex-wrap: wrap;
	gap: -1px;
}

.form-item {
	flex: 1 1 45%; /* This makes each item take up about 45% of the row */
	border-left: none;
}

.form-item input,
.form-item select {
	width: 100%;
}

input[type="text"],
input[type="email"],
select, label, textarea {
	border-radius: 0px;
	border: none;
  	border-bottom: 1px solid;
	width: 100%;
	height: 40px;
	padding-left: 10px;
	padding-right: 10px;
	background-color: rgba(0, 0, 0, 0);
	font-family: 'eviteyou2', 'Helvetica Neue', sans-serif;
	font-size: 14px;
	letter-spacing: 1px;
	-moz-box-sizing: border-box; 
	-webkit-box-sizing: border-box; 
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
}

.input {
	/* Arrow */
	appearance: none;
	background-image: url('../img/arrow.png');
	background-repeat: no-repeat;
	background-position: right 0.7rem top 50%;
	background-size: 0.65rem auto;
}

input[type="text"],
input[type="email"],
select, label, textarea {
	border-color: rgba(0, 0, 0, 0.3);
	color: #000;
}

::placeholder {
	color: #000;
}

.popup-overlay {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	top: 0;
	background: rgba(0, 0, 0, 0.2);
	display: none;
	align-items: flex-end;
	justify-content: center;
	z-index: 1000;
}

.popup {
	background: white;
	width: 100%;
	max-width: 100%;
	margin-bottom: 0px;
	padding: 20px;
	box-shadow: 0 8px 16px rgba(0,0,0,0.2);
	position: relative;
	transform: translateY(100%);
	opacity: 0;
	transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

.popup.show {
	transform: translateY(0);
	opacity: 1;
}

.keyline {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5); /* 0.5 opacity */
}

.marg {
	margin-bottom: 30px;
}

.watermark {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.04; /* Transparency */
  pointer-events: none;
  z-index: 9999;
}

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

.tlogo {
	height: auto;
	max-width: 53%;
}

.text-script-1 {
	font-family: 'rare', 'Helvetica Neue', sans-serif;
	font-size: 4.5rem;
	line-height: 1.2;
	font-weight: 400;
}

.marg {
	margin-bottom: 20px;
}

.margf {
	margin-bottom: 25px;
}

h1, .h1 {
    font-size: 45px;
}

}


