/* todo: split into multiple stylesheets to include only needed styles per page */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'suisseintl', sans-serif;
    color: #7E7F8F;
    background-color: #F8F3F0;
}
@font-face {
    font-family: 'suisseintl';
    src: url('../fonts/suisseintl-regular-webxl.woff2') format('woff2'),
        url('../fonts/suisseintl-regular-webxl.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'suisseintl';
    src: url('../fonts/suisseintl-semibold-webxl.woff2') format('woff2'),
        url('../fonts/suisseintl-semibold-webxl.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

h1, p {
    margin: 0;
}


h1 {
    font-weight: 600;
    font-size: 56px;
    line-height: 64px;
    color: #0A083B;
}

p {
    font-size: 20px;
    line-height: 32px;
}

.break-word {
    word-break: break-word;
}

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

.d-none {
    display: none;
}

.d-inline-block {
    display: inline-block;
}

.d-flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.flex-align-center {
    align-items: center;
}

.flex-justify-center {
    justify-content: center;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse;
}

.p-rel {
    position: relative;
}

.p-abs {
    position: absolute;
}

.ovf-hidden {
    overflow: hidden;
}

.full-height {
    height: 100%;
}

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

.container.v-cntr {
    padding-top: 40px;
    padding-bottom: 40px;
}

.logo-cont {
    display: flex;
    justify-content: center;
    margin-bottom: 45px;
}

.logo-cont img {
    height: 35px;
}

.hero {
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
}

.text-center {
    text-align: center;
}

.main-heading {
    font-size: 44px;
    font-weight: 600;
    line-height: 54px;
    color: #0A083B;
    text-align: center;
}

.main-subheading {
    display: flex;
    justify-content: center;
    text-align: center;
}

.main-subheading p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #0A083B;
    width: 80%;
}

.container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 35px 0 45px;
}

.cards-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.card {
    min-width: 16rem;
    max-width: 37rem;
    width: 100%;
    min-height: 22rem;
    padding: 30px;
    background-color: white;
    border-radius: 5px;
}

.card__content {
    display: flex;
    flex-direction: column;
    gap: 1.875rem;
}

.card__heading {
    font-size: 30px;
    font-weight: 600;
    line-height: 32px;
    color: #0A083B;
}

.card__subheading {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #5A5A66;
}

.footer {
    padding-top: 0.5rem;
    border-top: 1px solid #E6E6E6;
}

.footer__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    color: #0A083B;
}

/* margins */

.mt-64 {
    margin-top: 64px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-32 {
    margin-bottom: 32px;
}

.mb-40 {
    margin-bottom: 40px;
}

.ml-auto {
    margin-left: auto;
}

.mr-auto {
    margin-right: auto;
}

/* buttons */
.button {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 16px 32px;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
}

.button--outline {
    background-color: white;
    color: #0A083B;
    border: 1px solid #0A083B;
}

.button--outline:hover {
    box-shadow: 0 0 0 1px #0A083B inset;
    border-color: #0A083B;
    background-color: #0A083B1A;
}

.button--outline:active {
    box-shadow: 0 0 0 1px #0A083B inset;
    border-color: #0A083B;
    background-color: #0A083B;
    color: white;
}

.button--outline:active .arrow-svg path {
    fill: white;
}

.button--orange {
    background-color: #F75B11;
    color: white;
    border: 1px solid #F75B11;
}

.button--orange:hover {
    box-shadow: 0 0 0 1px #F75B11 inset;
    background-color: #F75B111A;
    color: #F75B11;
}

.button--orange:hover .arrow-svg path {
    fill: #F75B11;
}

.button--orange:active {
    box-shadow: 0 0 0 1px #F75B11 inset;
    background-color: white;
    color: #F75B11;
}

.button--orange:active .arrow-svg path {
    fill: #F75B11;
}

a.btn {
    text-decoration: none;
}

.btn {
    padding: 12px 32px;
    line-height: 32px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    display: flex;
    justify-content: center;
    outline: none !important;
}

/* .btn.lg {
padding: 16px 32px;
} */

.btn.primary {
    background-color: #f75b11;
    transition: background-color 200ms ease;
}

.btn.primary:hover, .btn.primary:focus {
    background-color: #EF8959;
}

.btn.secondary {
    padding: 11px 31px;
    background-color: transparent;
    color: #0a083b;
    border: 1px solid #0a083b;
    transition: box-shadow 200ms ease;
}

.btn.secondary:hover, .btn.secondary:focus {
    box-shadow: 0 0 0 1px #0a083b inset;
}

.btn.secondary.lg {
    padding: 15px 31px;
}

.btn-row .btn-wrap {
    width: 264px;
    max-width: 100%;
}

.btn-row .btn-wrap:not(:last-child) {
    margin-right: 24px;
}

/* vectors */
.floating-1 {
    height: 93px;
    right: -53px;
    top: 17px;
}

.floating-2 {
    bottom: 112px;
}

.floating-3 {
    height: 53px;
    right: 0;
    top: 21px;
}

.vc {
    left: 164px;
    top: 44px;
}

.vc svg {
    width: 47px;
}

.vc svg:first-child {
    position: relative;
    top: 12px;
}

.vc svg:first-child path {
    fill: #f8f3f0;
}

.vc svg:last-child path {
    stroke: #f8f3f0;
}

/* viewport >= 768px  */
@media screen and (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

/* viewport >= 992px  */
@media screen and (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

/* viewport >= 1200px  */
@media screen and (min-width: 1200px) {
    .container {
        max-width: 1158px;
    }
    .vc {
        left: 188px;
    }
}

/* viewport >= 1440px  */
@media screen and (min-width: 1440px) {
    .container {
        max-width: 76rem;
    }
}

/* viewport < 992px */
@media screen and (max-width: 991.98px) {
    h1 {
        font-size: 34px;
        line-height: 40px;
    }

    p {
        font-size: 16px;
        line-height: 24px;
    }

    .container {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        padding: 1.5rem;
    }

    .container.v-cntr {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .logo-cont {
        margin-bottom: 3rem;
        justify-content: left;
    }

    .button {
        width: 100%;
    }

    .main-heading {
        font-size: 34px;
        line-height: 40px;
        text-align: left;
    }

    .main-subheading {
        text-align: left;
        justify-content: left;
    }

    .main-subheading p {
        width: 100%;
    }

    .cards-container {
        flex-direction: column;
    }

    .logo-cont img {
        height: 25px;
    }

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

    .mb-md-16 {
        margin-bottom: 16px;
    }

    .mb-md-24 {
        margin-bottom: 24px;
    }

    .mb-md-32 {
        margin-bottom: 32px;
    }

    .btn.md-smaller {
        font-size: 14px;
        padding: 8px 24px;

    }

    .btn.secondary.md-smaller {
        padding: 7px 23px;
    }
}

@media screen and (max-width: 767.98px) {
    .d-sm-block {
        display: block;
    }

    .d-sm-none {
        display: none;
    }

    .error-img-holder {
        margin-left: -24px;
        margin-right: -24px;
        padding-top: 32px;
    }

    .container {
        max-width: 540px;
    }
}

@media screen and (min-width: 576px) and (max-width: 991.98px) {
    .btn-row .btn-wrap {
        width: 200px;
    }

    .btn-row .btn-wrap:not(:last-child) {
        margin-right: 16px;
    }
}

@media screen and (max-width: 575.98px) {
    .btn-row .btn-wrap {
        width: 100%;
    }

    .btn-row .btn-wrap:not(:last-child) {
        margin-top: 16px;
        margin-right: 0;
    }
}

@media (max-width: 479.98px) {
    .floating-3 {
        right: -58px;
    }
}
