@import url('https://fonts.googleapis.com/css2?family=Philosopher:wght@700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primery: #DC780B;
    --secondary: #474645;
    --roboto: 'Roboto';
    --philosopher: 'Philosopher';
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--roboto);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

button {
    border: none;
    cursor: pointer;
}

.container {
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    background: var(--primery);
    color: white;
    padding: 14px 30px;
    border-radius: 5px;
}

/* ============================================ Nav start ========================================= */

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 15px;
}

.nav__list {
    display: flex;
    align-items: center;
    column-gap: 40px;
}

.nav__link {
    color: var(--secondary);
    font-weight: 500;
    transition: .5s;
}

.nav__link:hover {
    color: var(--primery);
}

/* ------------------------------------------ Header content start ------------------------------------------- */

.header__content .container {
    display: flex;
    align-items: center;
    position: relative;
    min-height: 558px;
}

.header__desc {
    max-width: 555px;
    width: 100%;
}

.header__title {
    font-family: var(--philosopher);
    font-size: 48px;
}

.header__text {
    font-weight: 500;
    color: #4f4e4d;
    margin: 42px 0 50px;
}

.header__btns .btn {
    padding: 21px 40px;
}

.header__btn:last-of-type {
    border: 1.5px solid #dc770b6d;
    padding: 21px 40px;
    border-radius: 5px;
    background: transparent;
}

.header__image {
    position: absolute;
    right: -10%;
    z-index: -1;
}

/* ======================================= Features start ============================================= */

.features {
    margin: 100px 0;
}

.features__text {
    text-align: center;
    font-weight: 500;
    color: var(--primery);
    text-transform: uppercase;
}

.features__title {
    text-align: center;
    font-family: var(--philosopher);
    font-size: 31px;
}

.features__cards {
    display: flex;
    justify-content: space-between;
    margin-top: 44px;
}

.features__card {
    max-width: 300px;
    width: 100%;
    text-align: center;
}

.features__image {
    width: 88px;
    height: 88px;
    background: #8fa6328f;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.image_2 {
    background: #e64d2e3d;
}
.image_3 {
    background: #dc770b4a;
}

.features__name {
    font-size: 25px;
    font-family: var(--philosopher);
    margin: 35px 0 15px;
}

.features__txt {
    color: var(--secondary);
}