*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Poppins',sans-serif;
    color:#2f3d32;
    background:#f7f4ef;

}

.hero{

    min-height:100vh;

    background-image:url("images/background01.jpg");
    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
    justify-content:center;

}

.overlay{

    position:absolute;

    width:100%;
    height:100%;

    background:rgba(255,255,255,.35);

    backdrop-filter:blur(2px);

}

.content{

    width:1200px;
    max-width:90%;

    display:flex;
    align-items:center;
    justify-content:space-between;

    position:relative;
    z-index:2;

}

.left{

    width:48%;

}

.right{

    width:48%;
    display:flex;
    justify-content:center;

}

.logo{

    width:240px;
    margin-bottom:40px;

}

h1{

    font-size:64px;
    line-height:1.1;
    margin-bottom:30px;

}

h2{

    font-size:34px;
    font-weight:400;

    color:#6f8d75;

    margin-bottom:30px;

}

p{

    font-size:22px;
    line-height:1.8;

    margin-bottom:50px;

    max-width:600px;

}

.button{

    display:inline-block;

    padding:18px 42px;

    background:#7d9d84;

    color:white;

    text-decoration:none;

    border-radius:50px;

    font-size:20px;

    transition:.3s;

}

.button:hover{

    background:#63836b;

}

.phone{

    width:430px;

    animation:float 5s ease-in-out infinite;

    filter:drop-shadow(0 30px 40px rgba(0,0,0,.18));

}

@keyframes float{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-14px);

}

100%{

transform:translateY(0px);

}

}

@media(max-width:950px){

.content{

flex-direction:column;
text-align:center;

}

.left{

width:100%;
margin-bottom:60px;

}

.right{

width:100%;

}

.logo{

margin:auto;
margin-bottom:40px;

}

.phone{

width:320px;

}

h1{

font-size:48px;

}

h2{

font-size:28px;

}

p{

font-size:18px;

}

}