@import url("https://fonts.googleapis.com/css?family=Lato:300,400|Poppins:300,400,800&display=swap");

*,*::before,*::after{
	box-sizing: border-box;
}

body{
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-size: 16px;
  line-height: 30px;
  font-weight: 300;
  position: relative;
  background-color: black;
}

/*Navigation*/

div.heading{
	margin-top: 90px;
}

.site-nav-ul{
    text-align: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav-ul li{
    display: inline;
}

a.nav-link{
    text-decoration: none;
    color: #FFF;
    font-size: 17px;
    margin: 14px 16px;
    padding-bottom: 0px;
    display: inline-block;
    position: relative;
}

a.nav-link:before{
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #FFF;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

a.nav-link:hover:before{
    visibility: visible;
    width: 100%;
}

@media screen and (max-width: 800px){
    .site-nav-ul li a.nav-link:not(:first-child) {
        display: none;
    }
    
    .site-nav-ul li a.icon {
        float: right;
        display: block;
    }
}

.heading h1{
	margin-left: 5%;
	margin-top: 1.5%;
	font-weight: 550;
	font-size: 35px;
}

/*Form*/

ol{
	list-style: none;
}

.main-contact{
	display: flex;
	justify-content: center;
	text-align:left;
}

.main-form{
	font-family: "Poppins", sans-serif;
	position: relative;
	font-size: 35px;
}

.main-form-view{
	font-family: "Poppins", sans-serif;
	top: 32%;
	margin: 0 auto;
	width: 70%;
}

label{
	font-weight: 900;
}

.field-input{
	display: block;
	border: none;
	background: transparent;
	border-bottom: 1px solid #FFF;
	margin-top: 20px;
	color: white;
	font-size: 35px;
	font-weight: 600;
}

li{
	margin: 60px;
}

::-webkit-input-placeholder{
	opacity: 0.3;
}

label.test{
	transition: color 1s;
	color: #D63447;
}

.project-btn{
}

.btn {
  cursor: pointer;
  position: relative;
  padding: 10px 20px;
  margin: 10px;
  background: black;
  color: #FFF;
  font-size: 25px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  transition: all 1s;
  border-style: none;
  font-size: 35px;
  font-weight: 600;
}
.btn:after, .btn:before {
  content: " ";
  width: 10px;
  height: 10px;
  position: absolute;
  border: 0px solid #fff;
  transition: all 1s;
}
.btn:after {
  top: -1px;
  left: -1px;
  border-top: 5px solid #FFF;
  border-left: 5px solid #FFF;
}
.btn:before {
  bottom: -1px;
  right: -1px;
  border-bottom: 5px solid #FFF;
  border-right: 5px solid #FFF;
}
.btn:hover {
  border-top-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.btn:hover:before, .btn:hover:after {
  width: 100%;
  height: 100%;
}


.btn-new{
	color: #D63447;	!important
}


.btn-new:after, .btn-new:before {
  content: " ";
  width: 10px;
  height: 10px;
  position: absolute;
  border: 0px solid #D63447;
  transition: all 1s;
}
.btn-new:after {
  top: -1px;
  left: -1px;
  border-top: 5px solid #D63447;
  border-left: 5px solid #D63447;
}
.btn-new:before {
  bottom: -1px;
  right: -1px;
  border-bottom: 5px solid #D63447;
  border-right: 5px solid #D63447;
}

#message{
	display: none;
}

textarea{
	height: 280px;
}

#submit-button{
	display: none;
}

.cont-col{
	float: left;
}

.cont-col1{
	width: 60%;
}

.cont-col2{
	width: 40%;
}

.cont-list li{
	list-style: none;
	font-size: 20px;
	text-align: left;
}

.cont-list li a{
	text-decoration: none;
	color: white;
	
}

















