.contact{
	width: 100%;
	overflow: hidden;
	/* background-color: #1c1c1c; */
	margin: auto;
}
.contact .container{
	height: 100vh;
	min-height: 700px;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr;
}
.contact .container > div {
	grid-column: 1/2;
	grid-row: 1/2;
}

.left {
	width: 100%;
	max-width: 80rem;
	margin: 0 auto;
	/* background-color: #1c1c1c; */
	padding: 65px 1.5rem 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	position: relative;
	z-index: 3;
}

.contact-heading h1 {
	font-weight: 600;
	color: rgb(255, 255, 255);
	font-size: 3.5rem;
	line-height: 0.9;
	white-space: nowrap;
	margin-bottom: 1.5rem;
}
.text{
	color: #ffffff;
	line-height: 1.1;
	font-size: 1rem;
}
.text a {
	color: crimson;
	text-decoration: none;
	transition: 0.2s;
}
.text a:hover {
	color: rgb(255, 255, 255);
	transition: 0.2s;
}
.form-wrapper{
	max-width: 32rem;
}
.contact-form {
	display: grid;
	margin-top: 2.55rem;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 2rem;
	row-gap: 1rem;
}
.input-wrap{
	position: relative;
}
.input-wrap.w-100{
	grid-column: span 2;
}
.contact-input {
	width: 100%;
	background-color: #252525;
	padding: 1.5rem 1.35rem calc(0.75rem - 2px) 1.35rem;
	border: none;
	outline: none;
	font-family: inherit;
	border-radius: 20px;
	color: white;
	font-weight: 600;
	font-size: 0.95rem;
	border: 2px solid transparent;
	box-shadow: 0 0 0 0px hsla(var(--main-hue), 92%, 54%, 0.169);
	transition: 0.3s;
}
.contact-input:hover{
	background-color: #262626;
}
.input-wrap label{
	position: absolute;
	top: 50%;
	left: calc(1.35rem + 2px);
	transform: translateY(-50%);
	color: white;
	pointer-events: none;
	transition: 0.3s;
}
.textarea textarea{
	resize:none;
	width: 100%;
	min-height: 150px;
}
textarea.contact-input ~ label{
	top: 1.2rem;
	transform: none;
}
.input-wrap.focus .contact-input{
	background-color: #262626;
	border: 2px solid crimson;
	box-shadow: 0 0 0 5px hsla(var(white), 91%, 55%, 0.11);
}
.input-wrap.focus label{
	color: crimson;
}
.input-wrap.not-empty label{
	font-size: .66rem;
	top: 0.75rem;
	transform: translateY(0);
	transition: 0.3s;
}
.contact-btns{
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1rem;
    margin-top: 1rem;
    width: 100%;
    grid-column: span 2;
}
.btn{
    display: inline-block;
    padding: 1.1rem 2rem;
    background-color: crimson;
    color: white;
    border-radius: 40px;
    border: none;
    font-family: inherit;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover{
    background-color: rgb(16, 16, 16);
}
.btn.upload{
	position: relative;
	background-color: crimson;
}
.btn.upload span{
	color: white;
}
.btn.upload:hover{
	background-color: rgb(16, 16, 16);
}
.btn.upload input{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: crimson;
	cursor: pointer;
	opacity: 0;
}
.right {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	overflow: hidden;
	pointer-events: none;
}
.right .image-wrapper{
	position: relative;
	grid-column: 2;
}
.right .image-wrapper video{
	position: absolute;
    top: 0; left:0;
    width: 100%;
    object-fit: cover;
    height: 100%;
	-webkit-mask-image: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%);
    mask-image: linear-gradient(to right, rgba(255,255,255,0) 0%,rgba(255,255,255,1) 50%);
}
@media (max-width: 650px){
	.left{
		padding: 50px 1.5rem 0;
		grid-template-columns: 1fr;
		justify-content: center;
		align-items: center;
		margin: auto;
		text-align: center;
		left: 50%;
		transform: translateX(-50%);
	}
	.form-wrapper{
		margin: auto;
	}
	.right{

		width: 100%;
	}
	.right .image-wrapper{
		position: relative;
		grid-column: 2;
		width: 100vw;
	}
	.right .image-wrapper video{
		top: 0; left:0;
		width: 100vw;
		object-fit: cover;
		height: 100%;
		-webkit-mask-image: none;
		mask-image: none;
	}
	
}
footer{
    /* background: #111; */
    padding: 15px 23px;
    color: #fff;
    text-align: center;
}
footer span a{
    color: crimson;
    text-decoration: none;
}
footer span a:hover{
    text-decoration: underline;
}
.social-icons {
  padding: 0;
  list-style: none;
}
.social-icons li {
  display: inline-block;
  position: relative;
  font-size: 1.2em;
}
.social-icons i {
  color: #fff;
  position: absolute;
  top: 21px;
  transition: all 265ms ease-out;
}
.social-icons a {
  display: inline-block;
}
.social-icons a:before {
  transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  content: " ";
  width: 60px;
  height: 60px;
  border-radius: 100%;
  display: block;
  border-radius: 100px;
  transition: all 100ms ease-out;
}
.social-icons a:hover:before {
  transform: scale(0);
  transition: all 265ms ease-in;
}
.social-icons a:hover i {
  transform: scale(2.2);
  -ms-transform: scale(2.2);
  -webkit-transform: scale(2.2);
  color: #00B5F5;
  background: -webkit-linear-gradient(45deg, #00B5F5, #002A8F);
  background-clip: none;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 265ms ease-in;
}
