@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
    .text-white { color: #fff; }
    .text-black { color: #000; }
    .text-aqua-green { color: #03b5bc;  }
    .text-charcoal { color: #32323c;  }
    .text-blue { color: #1f2d5f;  }
    .text-deep-blue { color: #051536;  }

    .bg-white { background-color: #fff; }
    .bg-black { background-color: #000; }
    .bg-aqua-green { background-color: #03b5bc;  }
    .bg-charcoal { background-color: #32323c;  }
    .bg-blue { background-color: #1f2d5f;  }
    .bg-deep-blue { background-color: #051536; }

    .hover:bg-aqua-green { background-color: #03b5bc; }
    .hover:text-white { color: #fff; }

    .border-aqua-green { border-color: #03b5bc; }

    .header__link:hover {
        color: #03b5bc;
    }
    .header-subscribe, .header-logout {
        color: #000;
    }
    .header-subscribe:hover, .header-logout:hover {
        background-color: #03b5bc;
        color: #fff;
    }

    .main-nav-link:hover {
        background-color: #03b5bc;
    }
    .main-nav-link.active {
        background-color: #6c727f;
    }
    .cta {
        background-color: #03b5bc;
        color: #fff;
    }
    .cta:hover {
        background-color: #00a4aa;
        color: #fff;
    }

    .to-tr-gradient {
        background: linear-gradient(to bottom right,#1f2d5f 0%, #03b5bc 100%);
    }
    .to-bottom-gradient {
        background: linear-gradient(to bottom,#1f2d5f 0%, #03b5bc 100%);
    }
    .evolution-text {
        margin-left: 0;
    }
    .margin-lr-buffer {
        margin: 0 20px;
    }
    .submission_form .flex-1 {
        margin: 0 10px;
    }
    .field-error {
        color: red;
    }
}
@media(min-width: 768px) {
    .evolution-text {
        margin-left: 45px !important;
    }
}