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

:root {
    --primary-bg: #f5f7f9;
    --primary-text: #525760;
    --secondary-text: #717f8c;
    --error-color: #cc2b52;
    --theme-color: #00a173;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--primary-text);
}

ul {
    list-style-position: inside;
}

img {
    max-width: 100%;
}


.container {
    max-width: 1140px;
    padding: 0 1rem;
    margin: 0 auto;
}

.section {
    background-color: var(--primary-bg);
    padding: 40px 16px;
    border-radius: 4px;
    text-align: center;
}

.section>* {
    margin-bottom: 16px;
}

.section>*:last-child {
    margin-bottom: 0;
}

.header {
    padding: 20px 0px;
}

.download .btn {
    max-width: 330px;
}

.title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2.25rem;
    text-align: center;
}

.gr-ball {
    height: 17px;
    width: 17px;
    border-radius: 50%;
    background: radial-gradient(41.74% 41.74% at 34.35% 35.22%, #92eaaa 0%, #1ac449 100%);
}

.btn {
    width: 100%;
    color: #fff;
    background-color: var(--theme-color);
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 24px;
    border: none;
    cursor: pointer;
    font-size: 28px;
    font-weight: 500;
    line-height: 42px;
    text-decoration: none;
    transition: all ease 0.5s;
}

.app-install {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.app-install p {
    font-size: 12px;
    line-height: 18px;
}

.steps-section {
    padding: 24px 0;
}

.steps-wrapper {
    max-width: 200px;
    margin: 0 auto;
    padding-top: 10px;
}

.steps-wrapper>* {
    margin-bottom: 22px;
}

.single-step {
    display: flex;
    align-items: center;
    gap: 10px;
}

.single-step .step-icon {
    position: relative;
    color: var(--theme-color);
    border: 3px solid var(--theme-color);
    height: 40px;
    width: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 2.125rem;
}

.single-step .step-icon::after {
    content: "";
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    height: 14px;
    width: 2px;
    border-radius: 50%;
    background-color: #717f8c66;
}

.single-step:last-child .step-icon::after {
    display: none;
}

.single-step .step-text {
    text-align: left;
}

.single-step .step-text p {
    font-size: 10px;
    line-height: 15px;
}

.single-step .step-text h5 {
    font-size: 15px;
    font-weight: 600;
    line-height: 22.5px;
}

.single-step .step-text h5.font-normal {
    font-weight: normal;
}

.middle-section {
    margin-bottom: 30px;
}

.middle-section .img-wrapper {
    max-width: 345px;
    margin: 0 auto;
}

footer {
    padding: 130px 0 25px;
}

.footer-wrapper {
    max-width: 666px;
    margin: 0 auto;
}

.footer-wrapper p {
    font-size: .625rem;
    line-height: .6875rem;
    text-align: center;
}

.privacy-policy {
    margin-top: 40px;
    margin-bottom: 45px;
    text-align: center;
}

.privacy-policy a {
    display: inline-block;
    color: var(--primary-text);
    text-decoration: underline;
    font-size: 12px;
    line-height: 24px;
    transition: 0.3s ease-in-out;
    margin-right: 8px;
}

.second {
    max-width: 1140px;
    padding: 60px 16px;
    margin: auto;
    margin-bottom: 35px;
}

.second .title {
    font-size: 2.5rem;
    line-height: 33px;
}

.second .wrapper {
    padding-top: 42px;
    max-width: 408px;
    margin: 0 auto;
}

.second .wrapper .steps-wrapper {
    max-width: 317px;
}

.form > * {
    margin-bottom: 18px;
}

.form-input-wrapper {
    position: relative;
}

.form-input {
    color: var(--secondary-text);
    width: 100%;
    border-radius: 14px;
    border: 1px solid var(--theme-color);
    background-color: #fff;
    padding: 18px 20px 18px 55px;
    font-size: 20px;
    line-height: 24px;
    transition: all ease 0.5s;
}

.form-input-wrapper svg {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 18px;
    color: var(--secondary-text);
}

.form-info {
    font-size: 0.75rem;
    line-height: 18px;
}

.subpage-title {
    font-size: 1.5rem;
    color: #797979;
    margin-bottom: 1rem;
}

.page-content {
    padding: 3rem;
}

.page-content h2 + p,
.page-content ul {
    margin-bottom: 1.5rem;
}

.page-content ul li {
    margin-bottom: 0.5rem;
}

.error {
    color: var(--error-color);
    padding-top: 8px;
}
