@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --black: #072438;
    --white: #fff;
    --white-sec: #f6f7fb;
    --white-ter: #e1e1e1;
    --gray: #7C7F82;
    --blue: #1a7f2b;
    --light-blue: #328CC1;
    --yellow: #4bb047;
}

*::-webkit-scrollbar {
    width: 8px;
    background-color: #f0f0f0;
}

*::-webkit-scrollbar-thumb {
    background-color: #cdcdcd;
}

*::-webkit-scrollbar-thumb:hover {
    background-color: #a6a6a6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    font-family: 'Poppins', sans-serif;

    scroll-behavior: smooth;
}

body {
    position: relative;

    overflow-x: hidden;
}

a {
    text-decoration: none;
}

h1 {
    font-size: 32px;
    font-weight: bold;
    color: var(--font_pri);
    text-transform: uppercase;
}

ul {
    list-style: none;
}

button {
    display: flex;
    align-items: center;
    gap: 10px;

    width: fit-content;
    padding: 10px 15px;

    font-weight: 600;
    white-space: nowrap;

    border-radius: 10px;
    outline: none;

    cursor: pointer;
    transition: 0.1s ease;
}

input {
    width: 100%;
    padding: 30px 20px 10px 20px;
    border: none;
    font-size: 16px;
    background: transparent;
    appearance: none;
    border-radius: 10px;
}

textarea {
    display: flex;
    width: 100%;
    padding: 30px 20px 0 20px;
    border: none;
    font-size: 16px;
    background: transparent;
    appearance: none;
    resize: none;
    border-radius: 10px;
}

hr {
    border: none;
    width: 250px;
    border-bottom: 3px solid var(--blue);

    margin-bottom: 15px;
}

.group-btn {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.main-btn {
    color: var(--blue);
    background: transparent;
    border: 3px solid var(--blue);
}

.main-btn:hover {
    color: var(--white);
    background: var(--yellow);
    border: 3px solid var(--yellow);
}

.header-btn1 {
    color: var(--white);
    background: transparent;
    border: 3px solid var(--white);
}

.header-btn2 {
    color: var(--white);
    background: var(--blue);
    border: 3px solid var(--blue);
}

.header-btn:hover {
    color: var(--white);
    background: var(--yellow);
    border: 3px solid var(--yellow);
}

.group-form {
    position: relative;
    background: var(--white-sec);
    border-radius: 10px;
}

.group-form label {
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 10px;
    font-weight: 700;
}

.whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 50px;
    height: 50px;

    font-size: 24px;
    color: var(--white);

    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 10;

    border-radius: 50%;
    background-color: var(--blue);

    transition: 0.1s ease;
}

.whatsapp:hover {
    background-color: var(--yellow);
}

@media only screen and (max-width: 768px) {
    .group-btn {
        flex-direction: column;
    }
}