/* NOTO-SANS */
@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 400;
    src: url('./fonts/noto-sans-v42-latin-regular.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 500;
    src: url('./fonts/noto-sans-v42-latin-500.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 600;
    src: url('./fonts/noto-sans-v42-latin-600.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 700;
    src: url('./fonts/noto-sans-v42-latin-700.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 800;
    src: url('./fonts/noto-sans-v42-latin-800.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Noto Sans';
    font-style: normal;
    font-weight: 900;
    src: url('./fonts/noto-sans-v42-latin-900.woff2') format('woff2');
}

@font-face {
    font-family: 'Recoleta';
    src: url('/fonts/Recoleta-RegularDEMO.otf') format('otf'),
        url('/fonts/Recoleta-RegularDEMO.otf') format('otf');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

::-webkit-scrollbar {
    width: 0.45rem;
}

::-webkit-scrollbar-track {
    background-color: var(--white);
}

::-webkit-scrollbar-thumb {
    background-color: var(--och-yashil);
    border-radius: 10px;
}

:root {
    --white: #ffffff;
    --black: #000000;
    --gren: #163A24;
    --och-yashil: #198C36;
}

::selection {
    background-color: var(--och-yashil);
    color: var(--white);
}

.mybutton {
    background-color: inherit;
    border: 2px solid var(--och-yashil);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px 34px;
    border-radius: 28px;
    color: var(--);
    font-family: "Poppins";
    font-weight: 700;
    font-size: 15px;
    line-height: 100%;
    letter-spacing: 0px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;

    &:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: inherit;
        border-radius: 28px;
        z-index: -2;
    }

    &:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0%;
        height: 100%;
        background-color: var(--och-yashil);
        transition: all 0.3s;
        border-radius: 10rem;
        z-index: -1;
    }

    &:hover {
        color: var(--white);

        &:before {
            width: 100%;
        }
    }
}




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

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
}

ul,
ol,
li {
    margin: 0;
    padding: 0;
    list-style: none;
    list-style-type: none;
}

a {
    margin: 0;
    padding: 0;
    text-decoration: none;
}

img {
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

html {
    margin: 0;
    padding: 0;
    height: 100%;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    min-width: 320px;
    font-family: 'Noto Sans' 'Recoleta';
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    height: 100%;
    line-height: 1.5;
    color: var(--black);
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    background-color: var(--white);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

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

.header {

    background-color: var(--gren);
}

.header-container {
    padding-top: 22px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.header-logo-link {
    transition: 350ms ease all;

    &:active {
        transition: 350ms ease all;
        opacity: 0.5;
    }
}

.header-list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;

}

.header-texst-link {
    transition: 350ms ease all;

    :hover {
        transition: 350ms ease all;
        color: var(--och-yashil);
        transform: translate(3px, -3px);
    }
}

.header-logo-img {}

.header-texst {
    width: 152px;
    font-family: 'Noto Sans';
    font-weight: 400;
    font-size: 16px;
    color: var(--white);
    line-height: 100%;
    letter-spacing: 0%;
    text-align: end;

}

.hero {
    background-color: var(--gren);
}

.hero-container {
    padding-top: 35px;


    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.left-boxs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.hero-title {
    margin-right: 70px;
    width: 391px;
    font-family: 'Recoleta';
    font-weight: 600;
    font-size: 48px;
    color: var(--white);
    line-height: 65.25px;
    letter-spacing: 0%;

}

.hero-texs {
    padding-top: 18px;

    width: 476px;
    font-family: 'Noto Sans';
    font-weight: 400;
    font-size: 18px;
    color: var(--white);
    line-height: 27px;
    letter-spacing: 0%;

}

.hero-img {
    padding-top: 25px;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.person {
    padding: 120px 0;
}

.person-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 100px;
}


.person-row.reverse {
    flex-direction: row-reverse;
}

.person-img {
    width: 480px;
    max-width: 100%;
}


.person-text {
    max-width: 620px;
    padding-right: 100px;
}

.person-text h2 {
    font-family: 'Recoleta';
    font-size: 48px;
    line-height: 54px;
    color: var(--gren);
}

.person-LESFT-boxs {
    padding-left: 100px;
}

.PERSON-TITLE2 {
    W: 376PX;
    font-family: 'Recoleta';
    font-weight: 600;
    font-size: 48px;
    line-height: 54px;
    letter-spacing: 0%;
}

.PERSON-TEXST2 {
    width: 380PX;
    font-family: 'Noto Sans';
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    letter-spacing: 0%;
}

.person-text {
    margin-top: 20px;
    font-family: 'Noto Sans';
    font-size: 18px;
    line-height: 27px;
    color: var(--gren);
}

.title {
    text-align: center;
    margin: 100px 0 60px;
    font-family: 'Recoleta';
    font-size: 48px;
    color: var(--gren);
}

.brands {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    padding: 0;
    gap: 10px;
}

.brands img {
    width: 100px;
    opacity: 0.5;

}

.brands img:hover {
    opacity: 1;
}

.img-svg {
    transition: 350ms ease all;

    &:active {
        transition: 350ms ease all;
        opacity: 0.5;
    }
}

.categoriy {
    padding-top: 66px;
    background-color: var(--gren);

}

.container-categoriy-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: start;
}

.categoriy-title {
    padding-top: 6px;
    width: 823px;
    font-family: 'Recoleta';
    font-weight: 600;
    font-size: 48px;
    color: var(--white);
    line-height: 54px;
    letter-spacing: 0%;
    text-align: center;
}

.categoriy-title-links {
    transition: 350ms ease all;

    :hover {
        transition: 350ms ease all;
        color: var(--och-yashil);
        transform: translate(3px, 3px);
    }

}


.categoriy-box {
    padding-top: 68px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
}

.categoriy-boxs-img {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    transition: 350ms ease all;

    &:active {
        transition: 350ms ease all;
        opacity: 0.5;
    }
}

.categoriy-boxs-texst-mini {
    padding-top: 25px;
    font-family: 'Noto Sans';
    font-weight: 400;
    font-size: 18px;
    color: var(--white);
    line-height: 27px;
    letter-spacing: 0%;
    text-align: center;
}

.categoriy-boxs-texst {
    width: 198px;
    font-family: 'Noto Sans';
    font-weight: 400;
    font-size: 18px;
    color: var(--white);
    line-height: 25px;
    letter-spacing: 0%;
    text-align: start;
    padding-bottom: 138px;
}

.picture {
    padding-top: 114px;
    background-color: #F2EFE6;
}

.container-picture-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.picture-title {
    width: 739px;
    font-family: 'Recoleta';
    font-weight: 600;
    font-size: 48px;
    color: var(--gren);
    line-height: 54px;
    letter-spacing: 0%;
    text-align: center;

}

.picture-texst {
    padding-top: 27px;
    padding-bottom: 16px;
    width: 760px;
    font-family: 'Noto Sans';
    font-weight: 400;
    font-size: 18px;
    color: var(--black);
    line-height: 27px;
    letter-spacing: 0%;
    text-align: center;

}

.picture-boxs {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding-bottom: 50px;
    padding-bottom: 134px;

}

.picture-ful-img {
    transition: 350ms ease all;

    &:active {
        transition: 350ms ease all;
        opacity: 0.5;
    }
}

.person3 {
    background-color: var(--white);
    padding-top: 187px;
    padding-bottom: 126px;
}

.container-person3-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.person-rigth-boxs3 {
    margin-left: 288px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.person-title3 {
    width: 376px;
    font-family: 'Recoleta';
    font-weight: 600;
    font-size: 48px;
    color: var(--gren);
    line-height: 54px;
    letter-spacing: 0%;
}

.person-texs3 {
    width: 379px;
    font-family: 'Noto Sans';
    font-weight: 400;
    font-size: 18px;
    color: var(--gren);
    line-height: 27px;
    letter-spacing: 0%;

}

.rasm3 {
    background-color: var(--white);
    max-width: 100%;
    overflow: hidden;

}

.container-rasm3-container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 155px;
}

.left-boxs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.rasm3-title {
    padding-top: 274px;
    padding-top: 27px;
    width: 338px;
    font-family: 'Recoleta';
    font-weight: 600;
    font-size: 48px;
    color: var(--gren);
    line-height: 54px;
    letter-spacing: 0%;

}

.rasm-texst3 {

    width: 379px;
    font-family: 'Noto Sans';
    font-weight: 400;
    font-size: 18px;
    caret-color: var(--gren);
    line-height: 27px;
    letter-spacing: 0%;
    opacity: 0.7;

}

.rasm-icons3 {
    padding-top: 102px;

}

.consider {
    background-color: var(--white);
    padding-top: 120px;

}

.container-consider-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.consider-title {
    width: 727px;
    font-family: 'Recoleta';
    font-weight: 600;
    font-size: 48px;
    color: var(--gren);
    line-height: 54px;
    letter-spacing: 0%;
    text-align: center;

}

.consider-texst {
    width: 343px;
    font-family: 'Noto Sans';
    font-weight: 400;
    font-size: 18px;
    color: var(--gren);
    opacity: 0.7;
    line-height: 27px;
    letter-spacing: 0%;
    text-align: center;

}

.consider-box {
    padding-top: 18px;
    padding-bottom: 120px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: start;
    gap: 40px;
    background-color: white;

    :hover {
        transform: scale(1.15);
    }
}

.consider-boxs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    background-color: #FBFAF7;
}

.consider-boxs-imgs {
    margin-top: 40px;
    margin-left: 15px;
}

.consider-mini-boxs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;

}

.consider-box-title {
    padding-top: 20px;
    margin-left: 20px;
    width: 160px;
    font-family: 'Recoleta';
    font-weight: 600;
    font-size: 16px;
    color: var(--black);
    line-height: 23.5px;
    letter-spacing: 0%;
}

.consider-mini-boxstexst {
    width: 224px;
    font-family: 'Noto Sans';
    font-weight: 400;
    font-size: 16px;
    color: var(--white);
    line-height: 100%;
    letter-spacing: 0%;

}

.consider-mini-texst {
    width: 224px;
    font-family: 'Noto Sans';
    font-weight: 400;
    font-size: 16px;
    color: var(--white);
    line-height: 100%;
    letter-spacing: 0%;

}

.kichik-boxs {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.quti {
    margin-top: 120px;
    padding-bottom: 124px;

}

.container-quti-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.quti-title {
    width: 360px;
    font-family: 'Recoleta';
    font-weight: 600;
    font-size: 47px;
    color: var(--gren);
    line-height: 54px;
    letter-spacing: 0%;
    text-align: center;

}

.quti-texst {
    padding-top: 25px;
    width: 527px;
    font-family: 'Noto Sans';
    font-weight: 400;
    font-size: 18px;
    color: var(--gren);
    line-height: 27px;
    letter-spacing: 0%;
    text-align: center;

}

.quti-list {
    padding-top: 41px;
}

.quti-imgs {}

.qutibutton {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 25px;
    padding-right: 25px;
}

.section4 {
    background-color: whitesmoke;
    padding-top: 120px;

}

.container-section4-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 135px;
}

.left-section4-box {
    display: flex;
    flex-direction: column;
    justify-content: baseline;
    align-items: start;
    gap: 20px;
}

.section4-title {
    width: 360px;
    font-family: 'Recoleta';
    font-weight: 600;
    font-size: 48px;
    color: var(--gren);
    line-height: 54px;
    letter-spacing: 0%;

}

.section4-texst {
    width: 287px;
    font-family: 'Noto Sans';
    font-weight: 400;
    font-size: 18px;
    color: var(--gren);
    line-height: 27px;
    letter-spacing: 0%;
    opacity: o.7;

}

.get {
    max-width: 100%;
    background-color: var(--gren);
}






.container-get-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.get-title {
    padding-top: 114px;
    width: 549px;
    font-family: 'Recoleta';
    font-weight: 600;
    font-size: 48px;
    color: var(--white);
    line-height: 54px;
    letter-spacing: 0%;
    text-align: center;

}

.get-texst {
    padding-top: 26px;
    padding-bottom: 18px;
    width: 361px;
    font-family: 'Noto Sans';
    font-weight: 400;
    font-size: 18px;
    color: #FBFAF7;
    line-height: 27px;
    letter-spacing: 0%;
    text-align: center;
}

.get-button {
    background-color: inherit;
    border: 2px solid burlywood;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 25px;
    border-radius: 25px;
    color: var(--);
    font-family: 'Noto Sans';
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;

    &:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: inherit;
        border-radius: 25px;
        z-index: -2;
    }

    &:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0%;
        height: 100%;
        background-color: burlywood;
        transition: all 0.3s;
        border-radius: 10rem;
        z-index: -1;
    }

    &:hover {
        color: var(--gren);

        &:before {
            width: 100%;
        }
    }
}

.subscribe {
    padding: 80px 0;
    background-color: #f5f3ed;
}

.subscribe-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.left h2 {
    font-size: 40px;
    color: #163a24;
    margin-bottom: 10px;
}

.left p {
    font-size: 16px;
    color: #163a24;
}

.right {
    max-width: 500px;
    width: 100%;
}

.form {
    display: flex;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid #2e6b3e;
}

.form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    outline: none;
    font-size: 16px;
}

.form button {
    padding: 0 25px;

    color: rgb(0, 0, 0);
    border: var(--gren);
    cursor: pointer;
    border-radius: 25px;
}

.privacy {
    font-size: 12px;
    margin-top: 10px;
    color: var(--gren);
}

.privacy a {
    color: var(--gren);
}

.span {
    color: var(--och-yashil);
}

.footer {
    padding-top: 38px;
    padding-bottom: 44px;
}

.footer-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 300px;
}

.footer-list {}

.footer-img {
    transition: 350ms ease all;

    &:active {
        transition: 350ms ease all;
        opacity: 0.5;
    }
}

.footer-mini-boxs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.footer-links-img {
    transition: 350ms ease all;

    &:active {
        transition: 350ms ease all;
        opacity: 0.5;
    }

}

.hr {
    color: rgb(0, 0, 0);
    max-width: 100%;
}

.footer2 {
    padding-bottom: 25px;
    padding-top: 25px;
}


.footer2-container {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
    gap: 200px;
}

.footer2-text {

    width: 462px;
    font-family: 'Noto Sans';
    font-weight: 400;
    font-size: 14px;
    color: var(--gren);
    line-height: 21px;
    letter-spacing: 0%;
    transition: 350ms ease all;
}

.footer2-links {
    gap: 20px;
    padding-left: 100px;
    transition: 350ms ease all;

    :hover {
        transition: 350ms ease all;
        color: var(--och-yashil);

    }
}