@font-face {
  font-family: Montserrat-Regular;
  src: url('https://programs-with-code.com/fonts/Montserrat-Regular.ttf');
}

@media screen and (min-width: 0px) {
section {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 1;
	padding-top: 0;
}

.email_btn {
	outline: none !important;
	border: none;
	width: 100%;
	background: transparent;
}

.email_btn:hover {
	cursor: pointer;
}


.contactform {
  width: 90%;
	position: absolute;
	height: 500px;
	background-color: #F2F2F2;
	top: 45%;
  overflow: hidden;
	transform: translate(-50%, -50%);
	left: 50%;
	padding-top: 0px;
	padding-bottom: 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.emailform {
	position: static;
	padding-top: 50px;
  width: 90%;
	margin-left: 5%;
	z-index: 60;
}

.emailform_title {
  display: block;
  font-family: Montserrat-Regular;
  font-size: 22px;
  color: #333333;
  line-height: 1.2;
	margin-left: 0;
  text-align: left;
  padding-bottom: 36px;
}

.input[name="email"] {
  padding: 0 30px 0 54px;
}

textarea.input {
  min-height: 150px;
  border-radius: 2px;
  padding: 10px 30px 0 30px;
	width: calc(100% - 60px);
	resize: none;
	margin-left: 0%;
}

.input_div {
  position: relative;
  width: 100%;
  z-index: 1;
  margin-bottom: 10px;
	height: 40px;
}

.input {
	height: 40px;
  border-radius: 2px;
  padding: 0 30px 0 50px;
	border: none;
  display: block;
  width: calc(100% - 80px);
  background: #e6e6e6;
  font-family: Montserrat-Regular;
  font-size: 15px;
  line-height: 1.5;
  color: #666666;
}


.focus_input {
	display: block;
	position: absolute;
	border-radius: 2px;
	bottom: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 40px;
	box-shadow: 0px 0px 0px 0px;
	color: #F6C029;
	opacity: 0.4;
}

.input:focus + .focus_input {
	-webkit-animation: anim-shadow 0.5s ease-in-out forwards;
	animation: anim-shadow 0.5s ease-in-out forwards;
}

.focus_input_txt {
	display: block;
	position: absolute;
	border-radius: 25px;
	bottom: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	margin-left: 0%;
	box-shadow: 0px 0px 0px 0px;
	color: #F6C029;
	opacity: 0.2;
}

.input:focus + .focus_input_txt {
	-webkit-animation: anim-shadow 0.5s ease-in-out forwards;
	animation: anim-shadow 0.5s ease-in-out forwards;
}

@-webkit-keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 60px 25px;
    opacity: 0;
  }
}

@keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 60px 25px;
    opacity: 0;
  }
}

.symbol_input {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: absolute;
  border-radius: 25px;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-left: 30px;
  pointer-events: none;
  color: #aaaaaa;
  font-size: 15px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.input:focus + .focus_input + .symbol_input {
  color: #F6C029;
  padding-left: 22px;
}

.email_btn_div {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
	margin-top: 120px;
  justify-content: center;
  padding-top: 50px;
	margin-left: 0%;
}

.email_btn {
  width: 30%;
  height: 50px;
  border-radius: 2px;
  background: #F6C029;
  font-family: Montserrat-Regular;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.email_btn:hover {
  background: #333333;
}
footer {
	position: absolute;
	top: 100%;
	margin-top: 0;
	left: 0;
}
}


@media screen and (min-width: 960px) {
section {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	padding-top: 0;
}

.email_btn {
	outline: none !important;
	border: none;
	width: 100%;
	background: transparent;
}

.email_btn:hover {
	cursor: pointer;
}


.contactform {
  width: 900px;
	position: static;
	height: 500px;
	background-color: #F2F2F2;
	margin-top: 50vh;
  overflow: hidden;
	transform: translate(-50%, -50%);
	margin-left: 50%;
	padding-top: 0px;
	padding-bottom: 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.emailform {
	position: static;
	padding-top: 50px;
  width: 90%;
	margin-left: 5%;
}

.emailform_title {
  display: block;
  font-family: Montserrat-Regular;
  font-size: 22px;
  color: #333333;
  line-height: 1.2;
	margin-left: 0;
  text-align: left;
  padding-bottom: 36px;
}

.input[name="email"] {
  padding: 0 30px 0 54px;
}

textarea.input {
  min-height: 150px;
  border-radius: 2px;
  padding: 10px 30px 0 30px;
	width: calc(100% - 60px);
	resize: none;
	margin-left: 0%;
}

.input_div {
  position: relative;
  width: 100%;
  z-index: 1;
  margin-bottom: 10px;
}

.input {
	height: 40px;
  border-radius: 2px;
  padding: 0 30px 0 50px;
	border: none;
  display: block;
  width: 30%;
  background: #e6e6e6;
  font-family: Montserrat-Regular;
  font-size: 15px;
  line-height: 1.5;
  color: #666666;
}


.focus_input {
	display: block;
	position: absolute;
	border-radius: 2px;
	bottom: 0;
	left: 0;
	z-index: -1;
	width: calc(30% + 80px);
	height: 100%;
	box-shadow: 0px 0px 0px 0px;
	color: #F6C029;
	opacity: 0.2;
}

.input:focus + .focus_input {
	-webkit-animation: anim-shadow 0.5s ease-in-out forwards;
	animation: anim-shadow 0.5s ease-in-out forwards;
}

.focus_input_txt {
	display: block;
	position: absolute;
	border-radius: 25px;
	bottom: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	margin-left: 0%;
	box-shadow: 0px 0px 0px 0px;
	color: #F6C029;
	opacity: 0.2;
}

.input:focus + .focus_input_txt {
	-webkit-animation: anim-shadow 0.5s ease-in-out forwards;
	animation: anim-shadow 0.5s ease-in-out forwards;
}

@-webkit-keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 60px 25px;
    opacity: 0;
  }
}

@keyframes anim-shadow {
  to {
    box-shadow: 0px 0px 60px 25px;
    opacity: 0;
  }
}

.symbol_input {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  position: absolute;
  border-radius: 25px;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-left: 30px;
  pointer-events: none;
  color: #aaaaaa;
  font-size: 15px;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.input:focus + .focus_input + .symbol_input {
  color: #F6C029;
  padding-left: 22px;
}

.email_btn_div {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 50px;
	margin-left: 0%;
}

.email_btn {
  width: 30%;
  height: 50px;
  border-radius: 2px;
  background: #F6C029;
  font-family: Montserrat-Regular;
  font-size: 15px;
  line-height: 1.5;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.email_btn:hover {
  background: #333333;
}
footer {
	position: absolute;
	top: 100vh;
	margin-top: 0;
	left: 0;
}
}
