please help Сетки

Не могу понять откуда отступ и как убрать.

    <!DOCTYPE html>
<html lang="ru">
<head>
    <title>Испытание: строим сетку</title>
    <meta charset="utf-8">
    <link rel="stylesheet" type="text/css" href="mail.css">>
</head>
<body>
    <div class="contain contain1">
        <div class="clearfix">
            <div class="Header">Header</div>
        </div>
        <div class="Menu">Menu</div>
        <div class="contain contain2">
            <div class="Promo Promo1">Promo 1</div>
            <div class="Promo Promo2">Promo 2</div>
        </div>
    </div>
    <div class="clearfix">
        <div class="contain_column column_Left">Left</div>
        <div class="contain_column column_Main">Main</div>
        <div class="contain_column column_Right">Right</div>
    </div>
    <div class="Footer">Footer</div>
</body>
</html>


html,

body {
margin: 0;
padding: 0;
}

body {
width: 450px;
height: 335px;
font-family: “Arial”, sans-serif;
font-size: 10px;
color: white;
}
.contain {
float:left;
width:450px;
background: #34495e;

}
.contain .contain1 {
height:55px;
/padding:5px 55px;/

}
.contain .contain2 {
min-height:70px;
}
.Header {
width:340px;
height:25px;
background:#c0392b;
margin:10px 10px 10px 50px;
padding:5px;
/border: 2px solid #E3F2FD;/
}
.clearfix::after {
content: “”;
display: table;
clear: both;
}
.Menu {
width:340px;
height:25px;
padding:5px 55px;
background: #3498DB;

}

.Promo {
width:165px;
min-height:50px;
background:#c0392b;
}
.Promo1{
float:left;
margin: 10px 0px 10px 50px;
padding:5px 0 0 5px;
}
.Promo2{
float:right;
margin:10px 50px 10px 10px;
padding:5px 0 0 5px;
}
.contain_column{
min-height: 120px;
background:#3498DB;
padding: 5px;
}
.column_Left {
float:left;
width:60px;
margin:10px 10px 10px 50px;
}
.column_Main {
float:left;
width:180px;
margin:10px 0;
}
.column_Right {
float:right;
width:60px;
margin:10px 50px 10px 10px;
}
.Footer {
width:340px;
background: #34495e;
height:25px;
padding:5px 55px;
}
/*
Используемые цвета:
#34495e – мокрый асфальт
#c0392b – красный
#3498DB – синий
*/

Это эффект выпадания отступов из курса “Блочная модель документа”.

я задавал родительскому контейнеру .contain padding-top: 10px; , а в хедере убирал margin-top, но это не помогает

Возможно, из-за вложенности в блок .clearfix, для header именно он является непосредственным родителем.