
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;600&display=swap');
* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}
body {
	font-family: 'Josefin Sans', sans-serif;
	font-size: 16px;
}
.img{
    height: 100%;
    width: auto;
    background: linear-gradient(135deg, hsl(0, 0%, 100%), hsl(0, 100%, 98%));
}
.container {
	padding-top: 0px;
	min-height: 100vh;
	width:100%;
	display: flex;
	flex-direction: column-reverse;
	justify-content: flex-end;
	align-items: center;
    padding-bottom: 50px;
    background-color:#3B4465 ;
}
.container .left {
    width: 100%;
    padding: 50px 30px 0 30px;
}
.container .right {
	width: 100%;
	height: 100%;
    background-size: cover;
    background-color:#3B4465;
}
.container .right img {
	width: 100%;
	height: 100%;
}
.container .left h1 {
	letter-spacing: .5rem;
	text-align: center;
	font-size: 3.2rem;
	font-weight: 200;
	text-transform: uppercase;
	color: hsl(22, 100%, 61%);
	line-height: 3.5rem;
}
.container .left h3 {
    letter-spacing: .5rem;
	text-align: center;
	color: white;
    font-size: .9rem;
    font-weight: 1000;
	line-height: 1.5rem;
   
}
.container .left h1 span {
	color: hsl(0, 0%, 100%);
	font-weight: 700;
}
.container .left p {
	max-width: 450px;
	text-align: center;
	color: hsl(22, 100%, 61%);
	font-size: .9rem;
	line-height: 1.5rem;
	margin: 20px auto 40px auto;
}

.social-menu ul {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
    margin: 0;
    display: flex;
}
.social-menu ul li {
    list-style: none;
    margin: 0 10px;
}
.social-menu ul li .fa {
    color: #42376a;
    font-size: 25px;
    line-height: 50px;
    transition: .5s;
}
.social-menu ul li .fa:hover {
    color: white;
}
.social-menu ul li a {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ebf0f2;
    text-align: center;
    transition: 0.5s;
    transform: translate(0,0px);
    box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.5);
}
.social-menu ul li a:hover {
    transform: rotate(0deg) skew(0deg) translate(0, -10px);
}
.social-menu ul li:nth-child(1) a:hover {
    background-color: #3b5999;
}
.social-menu ul li:nth-child(2) a:hover {
    background-color: #55acee;
}
.social-menu ul li:nth-child(3) a:hover {
    background-color:  #ea4c89;
}
.social-menu ul li:nth-child(4) a:hover {
    background-color: #0077B5;
}


@media only screen and (min-width: 768px) {
	
	.container {
		padding-top: 0;
		flex-direction: row;
		padding-bottom: 0;
	}
	.container .right {
		width: 80%;
		height: 100vh;
		
	}
	.container .left {
		padding-top: 28vh;
		width: 100%;
		height: 100vh;
		padding-left: 10%;
		background-color:#3B4465 ;
		background-size: cover;
		background-position: center;
	}
	.container .left h1 {
		text-align: left;
		font-size: 5rem;
		line-height: 5.5rem;
    }
    .container .left h3 {
        letter-spacing: .5rem;
        text-align: left;
        color: white;
        font-size: .9rem;
        font-weight: 1000;
        line-height: 1.5rem;
       
    }
	.container .left p {
		margin-left: 0;
		text-align: left;
		font-size: 1.1rem;
	}
	.container form {
		margin-left: 0;
	}
	.container form button {
		width: 80px;
    }
    .social-menu ul {
        position: absolute;
        top: 90%;
        left: 20%;
        transform: translate(-50%, -50%);
        padding: 0;
        margin: 0;
        display: flex;
    }
    .social-menu ul li {
        list-style: none;
        margin: 0 10px;
    }
    .social-menu ul li .fa {
        color: #42376a;
        font-size: 25px;
        line-height: 50px;
        transition: .5s;
    }
    .social-menu ul li .fa:hover {
        color: white;
    }
    .social-menu ul li a {
        display: block;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background-color: #ebf0f2;
        text-align: center;
        transition: 0.5s;
        transform: translate(0,0px);
        box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.5);
    }
    .social-menu ul li a:hover {
        transform: rotate(0deg) skew(0deg) translate(0, -10px);
    }
    .social-menu ul li:nth-child(1) a:hover {
        background-color: #3b5999;
    }
    .social-menu ul li:nth-child(2) a:hover {
        background-color: #55acee;
    }
    .social-menu ul li:nth-child(3) a:hover {
        background-color:  #ea4c89;
    }
    .social-menu ul li:nth-child(4) a:hover {
        background-color: #0077B5;
    }
    
}

