/** @format */

@font-face {
  font-family: garamond;
  src: url(../fonts/Garamond.ttf);
}

#setdate {
  display: none;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Montserrat", sans-serif;
  color: #1e1e1e;
  background-color: #f3eae1;
}
h1 {
  font-size: 72px;
  font-weight: 700;
}
h3 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 7px;
}
h4 {
  font-size: 30px;
  margin-bottom: 7px;
}
h3.time {
  font-weight: 700;
}
h5 {
  font-size: 24px;
  font-weight: 300;
}
p {
  font-size: 18px;
  font-weight: 400;
}

input,
input:focus {
  outline: none;
  border: none;
}
img {
  width: 100%;
}

/* main-wrapper Design */
.main-wrapper {
  display: flex;
  justify-content: space-between;
  height: 100vh;
}
.logo {
  margin: 0 auto;
}
.content-area {
  padding: 20px 15px;
  height: 100%;
  width: 100%;
  max-width: 77%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-around;
}
.logo-area h4,
.logo-area h5 {
  font-family: garamond, sans-serif;
  font-weight: 400;
}
.logo-area h4 {
  font-style: italic;
}
.main-content-head h3 {
  margin-bottom: 20px;
}
.main-content-head p {
  margin-bottom: 15px;
}
.time-count-down {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 560px;
  margin: 0 auto;
}
.form-area {
  max-width: 550px;
  margin: 0 auto;
}
form {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  border: 1px solid #e6981bba;
  margin-bottom: 80px;
}
form > * {
  height: 100%;
  line-height: 60px;
}
form input {
  padding: 0 17px;
  flex: 1;
}
input::placeholder {
  font-size: 16px;
  font-weight: 300;
}
.sub-btn {
  font-size: 17px;
  color: #f3eae1;
  background-color: #482e04;
  border-left: 1px solid transparent;
  padding: 0 25px;
  font-weight: 600;
	line-height: 60px;
	text-decoration: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  display: table;
}
.sub-btn:hover {
  border-color: #e6981b;
  background: transparent;
  color: #482e04;
	line-height: 60px;
	text-decoration: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  display: table;
}

a,
a:hover {
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  display: table;
}

/* Img Area */
.img-area {
  width: 33%;
  justify-self: flex-end;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.img {
  height: 33%;
  width: auto;
  overflow: hidden;

  background-repeat: no-repeat;
  object-fit: cover;
}
.img1 {
  background-size: 170%;
  background-image: url(../img/img1.png);
  background-position: 80% 80%;
}
.img2 {
  background-size: 110%;
  background-image: url(../img/img2.png);
  background-position: 90% 10%;
}
.img3 {
  background-size: 120%;
  background-image: url(../img/img3.png);
}
