@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto+Slab:wght@100..900&display=swap');
@import url(./custom.css);
@import url(./header.css);
@import url(./footer.css);
@import url(./hero.css);
@import url(./reasons.css);
@import url(./map.css);
@import url(./price.css);
@import url(./features.css);
@import url(./protocol.css);

:root {
    --color-black: #212024;
    --prime-color: #648863;

    --prime-color--active: #496449;

    --header-container-width: 1320px;
    --content-container-width: 1150px;

    --main-text-color: #4A3006;

    --title-font: "Roboto Slab", serif;
}


img {
    max-width: 100%;
    height: auto;
}

input {
    position: relative;
    box-sizing: border-box;
    padding: 8px 40px 8px 12px;
    /*min-width: 255px;*/

    color: white;
    font-size: 14px;
    line-height: 23px;

    border: none;
    border-radius: 8px;
    background-color: #515B60;
}

input::placeholder {
    color: white;
    font-size: 14px;
    line-height: 23px;
    font-family: "Inter", sans-serif;
}

.input-wrapper {
    width: fit-content;
    position: relative;

}

.icond-send-button {
    z-index: 1;
    display: inline-flex;
    position: absolute;
    top: 50%;
    right: 0px;

    padding: 0 20px;
    transform: translateY(-50%);

    /* max-width: 18px; */
    /* max-height: 18px; */
    height: 100%;


    background-image: url(../images/icons/send.svg);
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: center;

    background-color: transparent;
    border-radius: 8px;
    border: none;
}

.icond-send-button:hover {
    background-color: var(--prime-color);
}


.container {
    max-width: 1150px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
}


.section-title {
    margin-top: 0;

    font-size: 36px;
    line-height: auto;
    text-align: center;
}


@media (max-width:812px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section-title {
        font-size: 30px;
        line-height: auto;

    }
}


.social-list {
    padding: 0;
    margin: 0;
    margin-top: auto;
    list-style: none;
    display: flex;

    font-size: 0;

}

.social-list a {
    display: inline-flex;
    width: 32px;
    height: 32px;

    margin-right: 8px;
    margin-left: 8px;

    border-radius: 100%;
    background-color: #3C474C;
    background-repeat: no-repeat;
    background-position: center;

    background-size: 18px;

    transition: 0.34s;

}

.social-list a:hover {
    scale: 1.1;
    /* background-size: 24px; */
}

.social-list a:first-of-type {
    margin-left: 0;
}

.social-list a.inst {
    background-image: url(../images/icons/inst.svg);
}

.social-list a.net {
    background-image: url(../images/icons/glob.svg);
}

.social-list a.twit {
    background-image: url(../images/icons/twit.svg);
}

.social-list a.youtube {
    background-image: url(../images/icons/youtube.svg);
}




html,
body {
    margin: 0;
    padding: 0;

    background-color: #FFF4E6;

    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

body {
    color: #4A3006;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Roboto Slab", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

a {
    color: #648863;
}

a:hover {
    color: #4A3006;
}

a.button,
button {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6.5px 28px;

    background-color: var(--prime-color);
    color: white;
    border-radius: 4px;

    font-size: 16px;
    font-weight: 700;
    line-height: 23px;
    text-decoration: none;
    border: 1px solid var(--prime-color);

    transition: 0.28s ease;

    cursor: pointer;
    /* border: none; */
}

a.button:hover,
button:hover {
    background-color: transparent;
}

.prime-button {}

.prime-button:hover {
    color: var(--prime-color);
}

.button.secondary-button:hover {
    border-color: var(--prime-color);
    background-color: var(--prime-color);
    color: white;
}

.button.secondary-button {
    background-color: transparent;

    border: 1px solid var(--color-black);
    color: var(--color-black);
}
