@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
*{
	margin: 0;
	padding: 0;
	font-family: Roboto;
	box-sizing: border-box;
}
a{
    display: inline-block;
}
.container{
	width: 1200px;
	margin: 0 auto;
}
.flex{
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
}

header {
    padding: 20px 0;
    background: #f1f1f1;
}

header .flex{
    align-items: center;
}

a.logo {
    width: 60px;
    border-radius: 11px;
    overflow: hidden;
    font-size: 0;
}
.phone{
    font-size: 26px;
    font-weight: 700;
    text-decoration: none;
    color: black;
}
img {
    width: 100%;
    font-size: 0;
}

.btn {
    background: #df7b85;
    display: inline-block;
    padding: 13px 40px;
    border-radius: 60px;
    color: #fff;
    text-decoration: none;
}

main {padding: 100px 0;}

.main-left h1 {
    font-size: 46px;
    margin-bottom: 7px;
    padding-top: 150px;
}

.main-right {
    width: 40%;
}

.main-left p {font-size: 26px;}

footer {text-align: center;padding: 30px 0;}

footer a {
    color: #000;
    text-decoration: none;
    margin-bottom: 10px;
}
