*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
}

:root{
    --color1: red;
    --color2: yellow;
    --color3: rgb(228, 228, 228);
    --title1: 80px;
    --title2: 40px;
    --title3: 20px;
    --size1: 50px;
    --size2: 25px;
    --size3: 15px;
    --size4: 8px;
}

.title{
    text-align: center;
}

.link{
    text-decoration: none;
}

.image{
    object-fit: cover;
}

.btn{
    padding: var(--size4) var(--size3);
    border-radius: var(--size4);
    background: var(--color1);
    color: #fff;
}

.btn:hover{
    background: var(--color2);
}

section{
    width: 100%;
    display: flex;
    justify-content: center;
}

.container{
    width: 1200px;
    padding: 100px 0;
}

/* Menu */
.section__menu{
    background: rgb(190, 153, 96);
}

.menu{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0;
}

.wrap__logo {
    height: 75px;
}

.image__logo {
    height: 100%;
}

.wrap__menu {
    display: flex;    
    justify-content: flex-end;
    color: white;
}

.link__menu {
    font-size: var;
    margin-left: var;
    text-transform: uppercase;
    font-weight: 900;
    color: white;
}

/* Banner */
.section__banner{
    background: url('banner.jpg');
    background-size: cover;
    background-position: center center;
    height: calc(100vh - 125px);
}

.banner{
    height: 100%;
    padding: 15%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.banner .title{
    color: var(--color1);
    margin-bottom: var(--size1);
    text-transform: uppercase;
    font-size: var(--title1);
    color: rgb(150 38 37);
    background: #ffffff61;
}

.banner .text{
    font-size: var(--title3);
    color: rgb(150 38 37);
    background: #ffffff61;
    padding: 25px;
}

/* Block 1 */
.block1 .title{
    margin-bottom: var(--size2);
    font-size: var(--title2);
}

.block1 .text{
    margin-bottom: var(--size3);
}

/* Block 2 */
.section__block2{
    background: rgb(190, 153, 96);
}

.block2 .title{
    margin-bottom: var(--size2);
    font-size: var(--title2);
}

.block2 .wrap__card{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.block2 .card{
    width: 30%;
    margin-bottom: var(--size1);
}

.block2 .title3{
    font-size: var(--title3);
    margin-bottom: var(--size3);
}

.image__block2{
    width: 100%;
    height: 260px;    
    margin-bottom: var(--size3);
    border-radius: var(--size3);
    overflow: hidden;
}

/* Block 3 */
.block3 .title{
    margin-bottom: var(--size2);
    font-size: var(--title2);
}

.block3 .title3{
    font-size: var(--title3);
    margin-bottom: var(--size3);
}

.block3 .wrap__card{
    display: flex;
}

.block3 .card{
    width: 50%;
}

.block3 .card:first-child{
    padding-right: var(--size1);
}

.image__block3{
    width: 100%;
    height: 600px;
    border-radius: var(--size3);
    overflow: hidden;
}

.block3 .text{
    margin-bottom: var(--size3);
}

/* Block 4 */
.block4{
    text-align: center;
}

.block4 .title{
    margin-bottom: var(--size2);
    font-size: var(--title2);
}

.block4 .title3{
    font-size: var(--title3);
    margin-bottom: var(--size3);
}

.block4 .wrap__card{
    display: flex;
    justify-content: space-between;
}

.block4 .card{
    width: 22%;
    background: rgb(190, 153, 96);
    color: #fff;
    padding-bottom: var(--size3);
    border-radius: var(--size3);
    overflow: hidden;
}

.image__block4{
    width: 100%;
    margin-bottom: var(--size2);
    height: 217px;
}

