@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
}
::selection {
	background: #ffffff;
	color: #000000;
	text-shadow: none;
}
::-moz-selection {
	background: #ffffff;
	color: #000000;
	text-shadow: none;
}
input:focus,
button:focus,
textarea:focus{
	outline: none;
}
::-webkit-input-placeholder {
	color: #ffffff;
	font-family: "Lato", sans-serif;
}
::-moz-placeholder {
	color: #ffffff;
	font-family: "Lato", sans-serif;
}
:-ms-input-placeholder {
	color: #ffffff;
	font-family: "Lato", sans-serif;
}
:-moz-placeholder {
	color: #ffffff;
	font-family: "Lato", sans-serif;
}
.no-scroll {
	overflow: hidden;
}
html {
	scroll-behavior: smooth;
}
body{
	font-family: "Lato", sans-serif;
	font-size: 100%;
	margin: 0;
	background-color: #000000;
	color: #ffffff;
}
h1, h2, h3, h4, h5, h6 {
	font-family: "Playfair Display", serif;
	font-weight: 400;
	margin: 0;
}
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span {
	color: #FFBF00;
}
h1 {
	font-size: 3.4rem;
}
h2 {
	font-size: 2.7rem;
}
h3 {
	font-size: 1.5rem;
}
p {
	font-size: 1.2rem;
	line-height: 1.5;
}
.content {
	padding: 100px 0 0;
}
.page-header {
	position: fixed;
	z-index: 999;
	background: rgba(0,0,0,0.8);
	width: 100%;
}
.page-header .wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 100px;
}
.page-logo {
	display: flex;
	align-items: center;
	z-index: 99;
}
.page-logo a {
	font-family: "Playfair Display", serif;
	text-decoration: none;
	color: #ffffff;
	font-size: 2rem;
	transition: 0.4s;
}
.page-logo a:hover {
	color: #FFBF00;
}
.content {
	width: 100%;
}
.content a {
	color: #ffffff;
	text-decoration: underline;
}
.content a:hover {
	text-decoration: none;
}
.wrap{
	width: calc(100% - 40px);
	max-width: 1440px;
	margin: 0 auto;
}
.mobile-burger {
	display: none;
	z-index: 99;
}
.menu-wrap ul {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}
.menu-wrap ul li a {
	display: flex;
	align-items: center;
	gap: 6px;
	font-family: "Playfair Display", serif;
	color: #ffffff;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 1rem;
	padding: 20px 10px;
	transition: 0.4s;
}
/* Hero */
.hero {
	width: 100%;
	height: calc(100vh - 100px);
	min-height: 700px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-image: url('../img/EQE-300-HERO.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	margin: 0 auto;
	position: relative;
}
.hero-overlay {
	position: relative;
	color: white;
	text-align: center;
	padding: 0 20px;
	z-index: 2;
}
.hero::before {
	content: '';
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: rgba(0,0,0,0.7);
	z-index: 1;
}
.hero-image {
    display: none;
}
.hero-title {
	height: 300px;
}
.hero h1 {
	font-size: 5rem;
	line-height: 150px;
	margin: 0;
}
.type-text {
	color: #FFBF00;
	display: inline-block;
	white-space: pre-line; /* lubab reavahetused (\n) kuvada */
	border-right: 2px solid rgba(255,255,255,0.6);
	padding-right: 5px;
	animation: blink 0.8s infinite;
}
@keyframes blink {
  0%, 50% { border-color: rgba(255,255,255,0.6); }
  51%, 100% { border-color: transparent; }
}
.hero-button {
	height: 50px;
	margin: 50px 0 0;
}
.hero-button a.button {
	display: inline-block;
	font-family: "Playfair Display", serif;
	text-transform: uppercase;
	border: 2px solid #ffffff;
	color: #ffffff;
	padding: 12px 48px;
	text-decoration: none;
	transition: 0.4s;
}
.hero-button a.button:hover {
	border: 2px solid #FFBF00;
	color: #FFBF00;
}
/* Hero end */

/* Services */
.services {
	padding: 96px 0 0;
}
.services .wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 48px
}
.services-title {
	flex: 0 0 100%;
	text-align: center;
}
.services-title h2 {
	margin: 0 0 48px;
}
.service-card {
	border: 2px solid #FFBF00;
	flex: 0 0 calc((100% - 48px * 2) / 3);
	text-align: center;
	padding: 48px 32px;
	display: flex;
	flex-direction: column;
	gap: 24px;
}
.service-card h3 {
	margin: 0;
}
.service-card p {
	margin: 0;
}
.service-card img {
	height: 50px;
	width: auto;
}
.services-notes {
	flex: 0 0 100%;
}
.services-notes p {
	margin: 0;
	font-size: 1rem;
	color: #aaaaaa;
	text-align: right;
}
/* Services end */

/* Fleet and Chauffeurs */
.fleet-chauffeurs {
	padding: 96px 0 0;
}
.fleet-chauffeurs .wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}
.fleet-chauffeurs-title {
	flex: 0 0 100%;
	text-align: center;
}
.fleet-chauffeurs-title h2 {
    margin: 0 0 48px;
}
.fleet-chauffeurs-desc {
	flex: 0 0 calc((100% - 48px) / 2);
	min-height: 500px;
	display: flex;
	align-items: center;
}
.fleet-chauffeurs-desc h3 {
	margin: 0 0 32px;
}
.fleet-chauffeurs-desc p {
	margin: 0 0 24px;
}
.fleet-chauffeurs-desc p:last-child {
	margin: 0;
}
.fleet-chauffeurs-image {
	flex: 0 0 calc((100% - 48px) / 2);
	background-image: url('../img/eqe-interior-1.avif');
	background-size: cover;
	background-position: center;
}
.fleet-chauffeurs-image img {
	display: none;
}
/* Fleet and Chauffeurs end */

footer{
	padding: 96px 0 0;
}
.footer-content{
	padding: 0 0 48px;
}
.footer-content .wrap {
  max-width: 1024px;
}
.mobile-info {
  display: none;
}
.footer-content h2.footer-title{
	text-align: center;
	margin: 0 0 48px;
}
.footer-content h3.footer-subtitle{
	text-align: center;
	margin: 0 0 96px;
	line-height: 1.5;
}
.footer-content .two-col {
    display: flex;
    flex-wrap: wrap;
	align-items: center;
	gap: 48px;
}
.footer-content .two-col ul{
	margin: 0;
	padding: 0;
	list-style: none;
}
.footer-content .col-1 {
	flex: 0 0 calc((100% - 48px) / 2);
}
.footer-content .col-2 {
	flex: 0 0 calc((100% - 48px) / 2);
}
.person-two-col {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 32px;
	line-height: 1.5;
	text-align: justify;
}
.person-col-1 {
	width: 100px;
}
.person-col-1 img{
	width: 100px;
	height: auto;
	border-radius: 50%;
}
.person-col-2 {
	width: calc(100% - 132px);
	text-align: justify;
}
.person-col-2 p {
	margin: 0 0 24px;
}
.person-col-2 p:last-child {
	margin: 0;
}
.person-col-2 h3 {
	margin: 20px 0 0;
}
.person-col-2 a{
	text-decoration: none;
	color: #ffffff;
}
.person-col-2 a:hover {
	text-decoration: underline;
}
.copyright {
	padding: 24px 0;
	color: #aaaaaa;
	font-size: 0.8em;
}
.copyright .wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
.copyright a{
	color: #aaaaaa;
	text-decoration: none;
}
.copyright span.sep{
	padding: 0 10px;
}
.uptodate a{
	font-size: 8px !important;
	font-family: arial !important;
	font-weight: bold !important;
	letter-spacing: 1px !important;
	color: #aaaaaa !important;
	text-decoration: none !important;
}
.wpcf7-not-valid {
	border: 2px solid #ff0000 !important;
}
.wpcf7-not-valid-tip{
	display: none !important;
}
div.wpcf7-validation-errors, div.wpcf7-acceptance-missing {
  border: 0;
  margin: 20px 0 0;
  padding: 0;
}
.wpcf7 input[type=text], .wpcf7 input[type=email] {
	padding: 10px;
	margin: 0 0 10px;
	width: 100%;
	max-width: 320px;
	border: 2px solid #fff;
	background-color: #000000;
	color: #ffffff;
}
.wpcf7 textarea{
	width: 100%;
	padding: 20px 10px;
	resize: none;
	border: 2px solid #fff;
	font-family: "Lato", sans-serif;
	background-color: #000000;
	color: #ffffff;
}
.wpcf7 input[type=text]:focus, .wpcf7 input[type=email]:focus, .wpcf7 textarea:focus{
	border: 2px solid #FFBF00;
	outline: 0;
}
.wpcf7-submit {
	display: inline-block;
	float: right;
	font-family: "Playfair Display", serif;
	text-transform: uppercase;
	border: 2px solid #ffffff;
	color: #ffffff;
	background-color: #000000;
	padding: 12px 48px;
	text-decoration: none;
	cursor: pointer;
	transition: 0.4s;
}
.wpcf7-submit:hover {
	border: 2px solid #FFBF00;
	color: #FFBF00;
}

div.wpcf7-mail-sent-ok {
	border: none;
	padding: 0;
	margin: 30px 0 0;
}
.wpcf7 form .wpcf7-response-output {
	float: left;
	margin: 24px 0 0;
	padding: 0;
	border: 0;
}
.message-sent .wrap {
	display: flex;
	justify-content: center;
}
.message-sent-content {
	width: 100%;
	max-width: 600px;
	height: auto;
	min-height: 300px;
	padding: 48px 48px;
	margin: 96px 0;
	border: 2px solid #FFBF00;
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.error-wrap .wrap {
	display: flex;
	justify-content: center;
}
.error-wrap-content {
	width: 100%;
	max-width: 600px;
	height: auto;
	min-height: 300px;
	padding: 48px 48px;
	margin: 96px 0;
	border: 2px solid #ffffff;
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
@media (max-width: 2500px) {
	.hero {
		background-size: contain;
	}
}
@media (max-width: 1000px) {
	.message-sent-content,
	.error-wrap-content {
		padding: 24px 24px;
		margin: 96px 0 0;
	}
	h1 {
    	font-size: 2.8rem;
	}
	.content {
		padding: 70px 0 0;
	}
	.menu-wrap {
		display: none;
		background-color: #000000;
		align-items: center;
        position: fixed;
        top: 0;
        height: 100%;
		width: 100%;
        z-index: 9;
		overflow: auto;
    }
	.menu-wrap.open {
		display: flex;
	}
	.menu-wrap .wrap {
		padding: 100px 0 40px;
		height: auto;
	}
	.menu-wrap ul {
		flex-direction: column;
	}
	.menu-wrap ul li a {
		font-size: 1.5rem;
	}
	/* mobile burger */
	.mobile-burger {
		display: block;
	}
	.menu-icon {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		width: 30px;
		height: 24px;
		cursor: pointer;
		position: relative;
	}
	.menu-icon span {
		display: block;
		height: 3px;
		background: #ffffff;
		border-radius: 5px;
		transition: all 0.3s ease-in-out;
		position: absolute;
		left: 0;
		width: 100%;
	}
	.menu-icon span:nth-child(1) {
		top: 0;
	}
	.menu-icon span:nth-child(2) {
		top: 10px;
	}
	.menu-icon span:nth-child(3) {
		top: 20px;
	}
	.menu-icon.open span:nth-child(1) {
		transform: translateY(10px) rotate(45deg);
	}
	.menu-icon.open span:nth-child(2) {
		opacity: 0;
	}
	.menu-icon.open span:nth-child(3) {
		transform: translateY(-10px) rotate(-45deg);
	}
	/* mobile burger end */
	.page-header .wrap {
		height: 70px;
	}
	.hero {
		background-image: none;
	}
	.hero-image {
		display: block;
	}
	.hero-image img {
		width: 100%;
		max-width: 500px;
		height: auto;
	}
	.hero-title {
		height: 120px;
	}
	.hero h1 {
		font-size: 2.5rem;
		line-height: 60px;
	}
	.services {
		padding: 96px 0;
	}
	.services .wrap {
		justify-content: center;
	}
	.service-card {
		flex: 0 0 100%;
		max-width: 500px;
	}
	.services-title h2 {
		margin: 0;
	}
	.fleet-chauffeurs-desc {
		order: 2;
		flex: 0 0 100%;
		min-height: auto;
	}
	.fleet-chauffeurs-image {
		order: 1;
		flex: 0 0 100%;
		background: none;
		text-align: center;
	}
	.fleet-chauffeurs-image img {
		display: inline-block;
		width: 100%;
		max-width: 500px;
		height: auto;
	}
	.footer-content .col-1, .footer-content .col-2 {
		flex: 0 0 100%;
	}
	.footer-content .footer-title{
		margin-bottom: 48px;
	}
	.mobile-info {
		display: block;
		text-align: center;
		margin-bottom: 48px;
	}
	.person-col-1, .person-col-2 {
		flex: 0 0 100%;
		text-align: center;
	}
	.copy{
		text-align: center;
		width: 100%;
	}
	.uptodate{
		text-align: center;
		margin-top: 30px;
		width: 100%;
	}
	.copyright span.sep {
    	padding: 0 3px;
	}
	.footer-content h3.footer-subtitle {
		margin: 0 0 48px;
	}
}
@media (max-width: 500px) {
	.wpcf7 input[type=text], .wpcf7 input[type=email] {
		max-width: 500px;
	}
}