:root {
    --navy: #1a2853;
    --jade: #23b25c;
    --lapis: #2c89c9;
    --green: #3f824b;
    --blue: #407bb0;
    --gray: #828a94;
    --dark-gray: #595962;
    --black: #010101;
    --white: #fff;
    --font-main: "Montserrat", sans-serif;
    --site-width: 1280px;
    --medium-width: 1030px;
    --narrow-width: 620px;
    --animation-fast: 100ms;
    --animation-average: 300ms;
    --animation-slow: 500ms;
    --base-animation-easing: cubic-bezier(0.62, 0.01, 0.37, 0.99);
}
.vps-ms {
    font-family: var(--font-main);
    color: var(--navy);
    margin: 0 auto;
    font-size: 16px;
}
.vps-ms,
.vps-ms * {
    box-sizing: border-box;
}
.vps-ms h1 {
    font-size: 30px;
    font-weight: 700;
}
.vps-ms h2 {
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--green);
}
.vps-ms h3 {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 10px;
}
.vps-ms p {
    margin: 0 0 30px;
    line-height: 1.4;
}
.vps-ms .button {
    color: var(--white);
    background-color: var(--green);
    padding: 14px 60px;
    font-weight: 600;
    font-size: 22px;
    display: inline-block;
    text-decoration: none;
    transition: .3s ease;
}
.vps-ms .button:focus,
.vps-ms .button:hover {
    background-color: #277cb4;
}
.vps-ms .button--outline {
    border: 2px solid var(--white);
    color: var(--white);
}
.vps-ms .button--outline:focus,
.vps-ms .button--outline:hover {
    background-color: var(--white);
    color: var(--navy);
}
.vps-ms img {
    max-width: 100%;
    height: auto;
}
.vps-ms .band {
    padding: 50px 0;
}
@media (min-width: 768px) {
    .vps-ms .band {
        padding: 80px 0;
    }
}
.vps-ms .band.pad-top {
    padding-bottom: 0;
}
.vps-ms .band.pad-bottom {
    padding-top: 0;
}
.vps-ms .inner-container {
    padding: 0 30px;
    max-width: 1340px;
    margin: 0 auto;
}
.vps-ms .inner-container--narrow {
    max-width: 1033px;
}
.vps-ms .screen-reader-text,
.vps-ms .visually-hidden {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}
.vps-ms__header .inner-container {
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 60px;
}
@media (min-width: 960px) {
    .vps-ms__header .inner-container {
        flex-direction: row;
        gap: 60px;
    }
}
.vps-ms__header .nav-toggle {
    width: 1.875rem;
    height: 1.25rem;
    position: relative;
    background-color: transparent;
    border: none;
    cursor: pointer;
}
@media (min-width: 768px) {
    .vps-ms__header .nav-toggle {
        display: none;
    }
}
.vps-ms__header .nav-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #1A2853;
    transition: all 0.3s cubic-bezier(0.62, 0.01, 0.37, 0.99);
}
.vps-ms__header .nav-toggle span:first-of-type {
    top: 0;
}
.vps-ms__header .nav-toggle span:nth-of-type(2) {
    top: 6.5px;
}
.vps-ms__header .nav-toggle span:nth-of-type(3) {
    bottom: 3px;
}
.vps-ms__header .nav-toggle.toggled span:first-of-type {
    transform: translateY(6.5px) rotate(-45deg);
}
.vps-ms__header .nav-toggle.toggled span:nth-of-type(2) {
    opacity: 0;
}
.vps-ms__header .nav-toggle.toggled span:nth-of-type(3) {
    transform: translateY(-6.5px) rotate(45deg);
}
.vps-ms .center {
    text-align: center;
}
.vps-ms .site-title {
    margin: 0;
}
.vps-ms .site-title img {
    width: 100%;
    max-width: 200px;
}
.vps-ms__navigation {
    display: none;
}
@media (min-width: 768px) {
    .vps-ms__navigation {
        display: block;
    }
}
.vps-ms__navigation.active {
    display: block;
}
.vps-ms__navigation ul {
    list-style-type: none;
    margin: 0;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
@media (min-width: 768px) {
    .vps-ms__navigation ul {
        gap: 40px;
    }
}
.vps-ms__navigation a {
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: 0.3s ease;
    color: var(--navy);
}
.vps-ms__navigation a:focus,
.vps-ms__navigation a:hover {
    text-decoration: underline;
}
.vps-ms__intro {
    padding: 0;
    position: relative;
}
.vps-ms__intro .inner-container {
    position: relative;
    display: flex;
    flex-direction: column;
}
@media (min-width: 768px) {
    .vps-ms__intro .inner-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        -moz-column-gap: 35px;
        column-gap: 35px;
    }
}
@media (min-width: 960px) {
    .vps-ms__intro .inner-container {
        -moz-column-gap: 70px;
        column-gap: 70px;
    }
}
.vps-ms__intro h1 {
    margin-bottom: 0;
}
.vps-ms__intro-img {
    flex-shrink: 0;
    width: 100%;
    height: 350px;
}
@media (min-width: 768px) {
    .vps-ms__intro-img {
        order: 2;
        max-width: 400px;
        height: 300px;
    }
}
.vps-ms__intro-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.vps-ms .c-cards {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}
@media (min-width: 960px) {
    .vps-ms .c-cards {
        flex-direction: row;
        flex-wrap: wrap;
        -moz-column-gap: 40px;
        column-gap: 40px;
        row-gap: 60px;
        justify-content: center;
    }
}
@media (min-width: 960px) {
    .vps-ms .c-card {
        width: calc(33.33% - 27px);
    }
}
.vps-ms .c-card__img {
    position: relative;
    height: 300px;
    margin: 0 0 36px;
}
.vps-ms .c-card__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.vps-ms .c-card__img:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(180deg, hsla(0, 0%, 100%, 0.2), #1a2853);
}
.vps-ms .c-card__heading {
    position: absolute;
    z-index: 2;
    margin-bottom: 25px;
    width: 100%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    padding: 0 20px;
}
@media (max-width: 959px) {
    .vps-ms__support {
        padding-top: 100px;
    }
}
.vps-ms__support .inner-container {
    max-width: 1230px;
    border: 1px solid var(--navy);
    padding: 80px 0 50px;
    position: relative;
}
@media (min-width: 960px) {
    .vps-ms__support .inner-container {
        padding: 50px 0;
    }
}
.vps-ms__support .band__header {
    background-color: var(--white);
    position: absolute;
    top: -95px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 30px;
}
@media (min-width: 960px) {
    .vps-ms__support .band__header {
        top: -26px;
    }
}
.vps-ms .support-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 60px;
}
@media (min-width: 960px) {
    .vps-ms .support-items {
        flex-direction: row;
        -moz-column-gap: 40px;
        column-gap: 40px;
        row-gap: 60px;
        justify-content: space-evenly;
    }
}
.vps-ms .support-items--4 {
    padding-bottom: 50px;
    border-bottom: 1px solid var(--navy);
}
.vps-ms .support-items--3 {
    padding-top: 50px;
}
.vps-ms .support-item {
    text-align: center;
}
.vps-ms .support-item__stat {
    color: var(--blue);
    font-size: 60px;
    font-weight: 700;
}
.vps-ms .support-item__title {
    color: var(--navy);
    font-size: 20px;
    font-weight: 700;
}
.vps-ms__consult .inner-container {
    max-width: 800px;
    margin: 0 auto;
}
.vps-ms__consult .band__title .blue {
    color: var(--blue);
}
.vps-ms__consult .band__title .navy {
    color: var(--navy);
}
.vps-ms__awards .band__title {
    margin-bottom: 36px;
}
.vps-ms .awards-items {
    display: flex;
}
@media (min-width: 768px) {
    .vps-ms .awards-items {
        -moz-column-gap: 20px;
        column-gap: 20px;
        row-gap: 30px;
        justify-content: center;
    }
}
@media (min-width: 960px) {
    .vps-ms .awards-items {
        -moz-column-gap: 40px;
        column-gap: 40px;
        row-gap: 60px;
    }
}
.vps-ms .awards-items + .awards-items {
    margin-top: 30px;
}
.vps-ms__cta {
    background-color: var(--green);
    color: var(--white);
    padding: 30px 0;
}
.vps-ms__cta .inner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (min-width: 768px) {
    .vps-ms__cta .inner-container {
        justify-content: space-between;
        flex-direction: row;
        max-width: 835px;
        align-items: center;
    }
}
.vps-ms__cta .band__title {
    color: var(--white);
    margin-bottom: 30px;
}
@media (min-width: 768px) {
    .vps-ms__cta .band__title {
        margin: 0;
    }
}
.vps-ms__footer {
    background: linear-gradient(90deg, #2c89c9, #1a2853);
    color: var(--white);
    padding: 25px 0;
}
.vps-ms__footer-logo {
    margin-bottom: 30px;
}
.vps-ms__footer-logo img {
    width: 100%;
    max-width: 100px;
}
.vps-ms__footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.vps-ms .social {
    font-weight: 700;
    display: flex;
    align-items: center;
    -moz-column-gap: 20px;
    column-gap: 20px;
}
.vps-ms .social a {
    color: var(--white);
}
/*# sourceMappingURL=index.min.css.map */
