@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 18px;
}

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

.title {
    text-align: center;
    font-family: 'Open Sans', sans-serif;
}

.text {
    font-family: 'Open Sans', sans-serif;
}

.link {
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
}

.image {
    object-fit: cover;
}

.btn {
    padding: var(--size4) var(--size3);
    border-radius: var(--size4);
    background: var(--color1);
    color: #fff;
    font-family: 'Open Sans', sans-serif;
}

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

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

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


/* Menu */

.section__menu {
    background: var(--color1);
}

.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
}

.link__menu {
    font-size: var(--title3);
    margin-left: var(--size3);
    text-transform: uppercase;
    font-weight: 900;
}


/* Banner */

.section__banner {
    background: url('banner_cats.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);
}

.banner .text {
    font-size: var(--title3);
}


/* Block 1 */

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

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


/* Block 2 */

.section__block2 {
    background: var(--color2);
}

.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: 100%;
    max-height: 500px;
    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: var(--color1);
    color: #fff;
    padding-bottom: var(--size3);
    border-radius: var(--size3);
    overflow: hidden;
}

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

.text__footer {
    color: white;
}