@media (min-width: 1075px) {
    .container {
        max-width: 1025px;
    }
}

:root {
    --background: #ffffff;
    --foreground: #171717;
    --deep-teal: #589e6d;
    --teal: #c9dfc9;
    --gray1: #BDBDBD;
    --gray2: #908A8D;
    --green: #00A03B;
    --white: #ffffff;
    --blue: #005670;
}


* {
    font-family: "museo", sans-serif;
}

.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

/* Small (≥576) */
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

/* Medium (≥768) */
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

/* Large (≥992) */
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

/* X-Large (≥1200) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* XX-Large (≥1400) */
@media (min-width: 1440px) {
    .container {
        max-width: 1320px;
    }
}

/* XXX-Large (≥1400) */
@media (min-width: 1441px) {
    .container {
        max-width: 1441px;
    }
}

body {
    background: var(--deep-teal);
    color: var(--white);
    font-size: 22px;
    line-height: 27px;
    font-family: "museo", sans-serif;
}

header {
    background-color: var(--background);
}

header .vertical-bar {
    height: 68px;
    width: 3px;
    background-color: var(--deep-teal);
    display: inline-block;
    margin-inline-end: 18px;
}

header h1 {
    font-size: 30px;
    font-weight: bold;
    line-height: 37px;
    color: #005670;
    margin: 0;
}

.bar_top {
    background-color: var(--deep-teal);
    height: 29px;
    width: 100%;
}

.py-logo {
    padding-top: 29px;
    padding-bottom: 29px;
}

.px-form {
    padding-left: 123px;
    padding-right: 123px;
}

.mt-form {
    margin-top: 48px;
}

.mb-form {
    margin-bottom: 112px;
}

.horizontal-stroke {
    width: 63px;
    border-top: 2px solid var(--background);
    opacity: 1;
    margin-top: 48px;
}

section h2 {
    margin-top: 112px;
    font-size: 124px;
    line-height: 84.5%;
    font-weight: 400;
}

section h3 {
    font-size: 30px;
    line-height: 37px;
    font-weight: bold;
    margin-top: 21px;
}

.btn-teva {
    background-color: var(--white);
    border: 1px solid var(--white);
    font-size: 18px;
    border-radius: 40px;
    color: var(--deep-teal);
    margin-top: 43px;
    vertical-align: middle;
}

.btn-teva.border-deep-teal {
    border: 1px solid var(--deep-teal);
}

.btn-teva:hover {
    background-color: var(--blue);
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-teva.border-deep-teal:hover {
    background-color: var(--blue);
    color: var(--white);
    border: 1px solid var(--blue);
}

.btn-teva.border-deep-teal:focus {
    background-color: var(--green);
    color: var(--white);
    border: 1px solid var(--green);
}

.btn-teva span {
    display: inline-block !important;
}

.btn-teva span svg {
    width: 40px;
    margin-left: 1rem;
    vertical-align: middle;
}

.form-control {
    padding: 23px 28px;
    border-radius: 0;
    border-bottom: 2px solid var(--deep-teal);
}

.form-control::placeholder {
    color: rgba(60, 126, 121, 46);
}

label small {
    font-size: 16px;
    line-height: 25px;
}

.modal {
    color: var(--deep-teal);
}

@media (max-width: 991px) {
    body {
        font-size: 18px;
    }

    section h2 {
        margin-top: 70px;
        font-size: 90px;
    }

    section h3 {
        font-size: 30px;
    }

    .px-form {
        padding-left: 0;
        padding-right: 0;
    }

    .mb-form {
        margin-bottom: 61px;
    }
}

@media (max-width: 575px) {
    section h2 {
        font-size: 50px;
    }

    section h3 {
        font-size: 27px;
    }

    header .vertical-bar {
        margin-inline-end: 10px;
    }
}