:root {
    --dark: #393939;
    --green: #27b161;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
    scroll-padding: 100px;
}


body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: #28352E;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
textarea,
input {
    margin: 0;
    font-family: "Roboto", sans-serif;
}

h2 {
    font-weight: 500;
    font-size: 60px;
    line-height: 120%;
    letter-spacing: -0.01em;
    color: #393939;
}

a {
    transition: 0.3s;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    outline: none;
    transition: 0.3s;
    background: transparent;
    cursor: pointer;
}

button:focus {
    outline: none;
}

ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}


.container {
    max-width: 1710px;
    padding: 0 15px;
    margin: 0 auto;
}

.header_main_wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
    height: 100%;
    padding-top: 20px;
    transition: 0.3s;
}

.header_main {
    transition: 0.3s;
    position: relative;
    height: 118px;
    clip-path: polygon(0 0,
            100% 0,
            100% 60%,
            50% 100%,
            0 60%);
    background: linear-gradient(0deg, #393939 13.56%, #818181 177.97%);
}

.header_green_block {
    content: '';
    position: absolute;
    left: 50%;
    translate: -50% 0;
    height: 140px;
    width: 312px;
    background: var(--green);
    top: 0;
    z-index: -1;
    clip-path: polygon(0 0,
            100% 0,
            100% 83%,
            50% 100%,
            0 83%);
}

.header_main .container {
    height: 100%;
}

.header_c {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% -50%;
}

.header_btn {
    font-weight: 300;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
}

.header_btn:hover {
    color: var(--green);
}

.header_burger_btn {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.header_l_menu_txt {
    font-weight: 300;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0.05em;
    color: #fff;
    transition: 0.3s;
}

.header_burger {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 7px;
}

.header_burger span {
    width: 60px;
    height: 3px;
    background: var(--white);
    transition: 0.3s;
}

.header_burger span:first-child {
    width: 42px;
}

.header_burger_btn:hover .header_l_menu_txt {
    color: var(--green);
}

.header_burger_btn:hover .header_burger span {
    background: var(--green);
}















@media(max-width: 1640px) {}

@media(max-width: 1450px) {}

@media(max-width: 1280px) {}

@media(max-width: 1280px) {}

@media(max-width: 1024px) {}

@media(max-width: 992px) {}

@media(max-width: 600px) {}

@media(max-width: 321px) {}