/*=============== GOOGLE FONT ===============*/
@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,800&family=Roboto:wght@300;400;700&display=swap');

/*=============== STYLEGUIDE ===============*/
:root {
    --header-height: 5rem;
    --bottom-height: 3.125rem;

    /*=============== Main Color in HSL ===============*/
    --hue: 47;
    --sat: 87%;

    /*=============== Colors ===============*/
    --primary-color: #D2AE4B;

    /*=============== Font and Typography ===============*/
    --main-font: 'Roboto', 'Roboto Flex', sans-serif;
    --font-family-roboto: "Roboto";
    --font-family-roboto-bold: "Roboto-Bold";
    --font-family-roboto-regular: "Roboto-Regular";
    --font-family-roboto-light: "Roboto-Light";
    --font-family-roboto-condensed-light: "Roboto-CondensedLight";

    /*=============== Font Size ===============*/
    --fsize-57: 57px;
    --fsize-45: 45px;
    --fsize-36: 36px;
    --fsize-32: 32px;
    --fsize-24: 24px;
    --fsize-22: 22px;
    --fsize-16: 16px;
    --fsize-14: 14px;
    --fsize-11: 11px;
}

.title-medium-standart-light {
    font-family: var(--font-family-roboto);
    font-size: var(--fsize-16);
    letter-spacing: 0.15px;
    font-weight: 300;
    font-style: normal;
}

.title-large-standart-extra-bold {
    font-family: var(--font-family-roboto);
    font-size: var(--fsize-22);
    letter-spacing: 0%;
    line-height: 28px;
    font-weight: 800;
    font-style: normal;
}

.title-medium-standart {
    font-family: var(--font-family-roboto);
    font-size: var(--fsize-16);
    letter-spacing: 0.15px;
    line-height: 24px;
    /* 150% */
    font-weight: 700;
    font-style: normal;
    text-align: center;
}

.title-medium-standart-bold {
    font-family: var(--font-family-roboto-bold);
    font-size: var(--fsize-16);
    letter-spacing: 0.15px;
    font-weight: 700;
    font-style: normal;
}

.display-large-standart {
    font-family: var(--font-family-roboto);
    font-size: var(--fsize-16);
    letter-spacing: 0.15px;
    font-weight: 700;
    font-style: normal;
}

/* roboto/typography/labelsmall */
.label-small {
    font-family: var(--font-family-roboto);
    font-size: var(--fsize-11);
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    /* 145.455% */
    letter-spacing: 0.5px;
}

/* roboto/typography/button */
.btn-font {
    font-family: var(--font-family-roboto);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
    letter-spacing: 0.1px;
}

/*=============== Z Index ===============*/

/*=============== Responsive Typography ===============*/

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

html {
    scroll-behavior: smooth;
    font-family: var(--main-font);
}

body {
    font-family: var(--main-font);
    margin-top: 80px;
}

header {
    background-color: var(--primary-color);
}

ul {
    list-style: none;
    font-family: var(--main-font);
}

a {
    text-decoration: none;
}

img {
    width: 100%;
    height: auto;
    cursor: pointer;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: var(--font-family-roboto);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
    letter-spacing: 0.1px;
}

/* roboto/typography/headline1 */
h1 {
    font-family: var(--font-family-roboto);
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: 44px;
    /* 122.222% */
    margin: 12px;
}

/* roboto/typography/headline2 */
h2 {
    font-family: var(--font-family-roboto);
    font-size: 32px;
    font-style: normal;
    font-weight: 800;
    line-height: 40px;
    /* 125% */
    margin: 12px;
}

/* roboto/typography/headline3 */
h3 {
    font-family: var(--font-family-roboto);
    font-size: 28px;
    font-style: normal;
    font-weight: 800;
    line-height: 36px;
    /* 128.571% */
    margin: 12px;
}

/* roboto/typography/headline4 */
h4 {
    font-family: Roboto;
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 32px;
    /* 133.333% */
    margin: 12px;
}

/* roboto/typography/headline5 */
h5 {
    font-family: Roboto;
    font-size: 22px;
    font-style: normal;
    font-weight: 800;
    line-height: 28px;
    /* 127.273% */
    margin: 12px;
}

/* roboto/typography/headline6 */
h6 {
    font-family: Roboto;
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 24px;
    /* 133.333% */
    margin: 12px;
}

/* roboto/typography/body1 */
p {
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    letter-spacing: 0.5px;
    margin: 12px;
}

blockquote {
    border-left-color: var(--primary-color);
    border-left-style: solid;
    background-color: lightgrey;
    border-width: 8px;
    padding: 1px 8px;
    margin: 12px;
}

main {
    padding: 20px 60px;
}

s {
    text-decoration: line-through red;
}

footer {
    background-color: #9e7e09;
    color: #fff;
}

/*=============== REUSABLE CSS CLASSES ===============*/

/*=============== LAYOUT ===============*/

/*=============== HEADER ===============*/
.header {
    display: flex;
    justify-content: center;
    position: fixed;
    width: 100%;
}

.header__top {
    align-items: flex-start;
    box-shadow: 0px 4px 4px #00000040;
    width: 100%;
    height: 80px;
    top: 0;
    left: 0;
    z-index: 5;
}

/*=============== NAV ===============*/
.nav {
    align-items: center;
    align-self: stretch;
    display: flex;
    flex: 1;
    flex-grow: 1;
    width: 1400px;
    justify-content: space-between;
    padding: 0 60px;
    position: relative;
    color: #fff;

    cursor: pointer;
}

.brand {
    align-items: stretch;
    display: flex;
    padding: 2px 2px 2px 2px;
    position: relative;
}

.brand__assets {
    align-items: flex-start;
    align-self: stretch;
    flex-direction: column;
    width: 430px;
}

.brand__image {
    align-items: center;
    flex: 0 0 auto;
    gap: 2px;
    width: 100%;
}

.nav__logo {
    align-items: flex-start;
    align-self: stretch;
    color: #fff;
    border: 1px none;
    display: flex;
    flex: 1;
    font-family: var(--main-font);
    font-weight: 800;
    font-size: 22px;
    line-height: 28px;
    margin-top: -1px;
    gap: 2px;
    height: 50px;
    padding: 2px;
    width: 212.63px;
}

.nav__img {
    width: 50px;
    /*border-radius: 50%;
    border-color: #fff;
    border-style: solid;*/
}

.name__midle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
    font-family: var(--main-font);
}

.rev__menu {
    align-items: center;
    align-self: stretch;
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
    position: relative;
    padding: 2px 0px;
    width: 100%;
    height: 18px;
}

.rev__list {
    display: flex;
    align-items: center;
    align-self: stretch;
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
    position: relative;
    padding: 2px 0px;
    width: 100%;
    color: #fff;
}

.rev__item {
    margin-left: 4px;
}

.rev__link {
    color: #fff;
}

.rev__devide {
    border-style: solid;
    border-color: #fff;
    height: 10px;
    border-width: 1px;
}

.rev__icon {
    fill: #fff;
}

.rev__name {
    color: #fff;
}

.nav__icon {
    display: none;
    fill: #fff;
}

.nav__menu {
    align-items: center;
    align-self: stretch;
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 550px;
    gap: 8px;
    padding: 4px 0px 4px 0px;
}

.menu__list {
    justify-content: space-between;
    display: flex;
    width: 100%;
    height: 100%;
}

.menu__item {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    align-content: center;
}

.nav__link {
    color: #fff;
    align-items: stretch;
    align-self: center;
    align-content: center;
    justify-content: center;
}

.nav__name {
    text-align: center;
}

.nav__cta {
    align-items: center;
    align-self: stretch;
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 100px;
    gap: 8px;
    padding: 4px 0 4px 0;
}

.nav__btn {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 70px;
    justify-content: center;
    position: relative;
}

.btn__link {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.btn__icon {
    fill: #fff;
}

.btn__devide {
    border-style: solid;
    border-color: #fff;
    height: 40px;
    border-width: 1px;
}

.btn__name {
    text-align: center;
    align-self: stretch;
    align-items: center;
}

.btn__act {
    align-items: center;
    background-color: var(--primary-color);
    box-shadow: 0px 4px 4px #00000040;
    border-radius: 24px 0px 0px 24px;
    bottom: 85px;
    display: flex;

    justify-content: center;
    padding: 8px;
    position: fixed;
    right: 0;
    width: 168px;
    height: 40px;
}

.btn__link-vert {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    color: #fff;
}

.cta__vert {
    border-radius: 24px;
    border-style: solid;
    border-color: var(--primary-color);
    padding: 8px;
    margin: 12px;
    width: 169px;
    height: 44px;

}

.cta__link-vert {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
}

.cta__icon {
    fill: var(--primary-color);
}

.active {
    background-color: var(--primary-color);
}

.link-active {
    color: #fff;
}

.icon-active {
    fill: #fff;
}

.bgbp__brand {
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.bgbp__logo{
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

/*=============== BREAKPOINTS ===============*/
/*xl 1200px*/
@media screen and (max-width: 1200px) {
    .nav {
        padding: 0 40px;
        width: 100%;
    }

    .nav__menu {
        padding: 8px;
        gap: 0px;
    }

    .menu__list {
        gap: 0;
    }
}

/*lg 992px*/
@media screen and (max-width: 992px) {
    main {
        padding: 20px;
    }

    .nav {
        padding: 0 25px;
        width: 100%;
    }


    .nav__menu {
        width: 400px;
        gap: 8px;
        padding: 8px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        display: flex;
        /*gap: 2px;
            padding: 4px 0 4px 0;*/
    }

    .nav__list {
        gap: 8px;
        width: auto;
    }

    .nav__link {
        display: flex;
        flex-direction: column;
        height: 50px;
        justify-content: center;
        align-items: center;
        align-self: center;
        position: relative;
    }
}

/*md 768px*/
@media screen and (max-width: 768px) {
    body {
        margin-bottom: 50px;
    }

    main {
        padding: 20px;
    }

    .nav {
        padding: 0 20px;
    }

    .nav__menu {
        position: fixed;
        bottom: 0;
        left: 0;
        background-color: var(--primary-color);
        width: 100%;
        padding: 0 20px;
        height: 50px;
        display: flex;
        justify-content: space-between;
        box-shadow: 0px -4px 4px #00000040;
        align-items: center;
        align-self: center;
    }

    .menu__list {
        align-items: stretch;
    }

    .nav__link {
        display: flex;
        flex-direction: column;
        height: 50px;
        justify-content: center;
        align-items: center;
        align-self: center;
        position: relative;
    }

    .nav__icon {
        display: block;
    }

    .nav__name {
        font-family: Roboto;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 20px;
        /* 142.857% */
        letter-spacing: 0.1px;
    }

    .cta__btn {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: auto;
        left: 0;
        margin: 12px;
        padding: 8px;
        border: 1px;
        align-items: center;
    }
}

/*sm 576px*/
@media screen and (max-width: 576px) {
    main {
        padding: 15px;
    }

    .nav {
        padding: 0px 15px;
        width: 100%;
    }

    .nav__menu {
        padding: 0px 15px;
    }

    .rev__menu {
        gap: 1px;
        padding: 0px;
        width: auto;
    }

    .rev__list {
        gap: 4px;
        width: auto;
    }
}

/*xs 360px*/
@media screen and (max-width: 360px) {
    main {
        padding: 10px;
    }

    .nav {
        padding: 0px 10px;
        width: 100%;
    }

    .nav__menu {
        padding: 0px 10px;
    }

    .rev__menu {
        gap: 1px;
        padding: 0px;
        width: auto;
    }

    .rev__list {
        gap: 4px;
        width: auto;
    }
}

/*xxs 320px*/
@media screen and (min-width: 270px) and (max-width:320px) {
    main {
        padding: 5px;
    }

    .nav {
        display: flex;
        padding: 0px 5px;
        width: 100%;
    }

    .brand__assets {
        width: 300px;
    }

    .rev__menu {
        gap: 1px;
        padding: 0px;
        width: auto;
    }

    .rev__list {
        gap: 4px;
        width: auto;
    }


    .nav__menu {
        padding: 5px 5px;
    }

}
