
header {
    width: 100%;
    height: auto;
}
.header_content {
    display: flex;
    justify-content: space-between;
}
.logo {
    margin-left: 25px;
    display: flex;
    align-items: center;
}
.logo a > img {
    width: 165px;
    height: auto;
}
.logo_text {
    font-size: 1.8rem;
    color: #1056A7;
    font-weight: 900;
}

.header_cta {
    background: linear-gradient(to bottom, #3CB7A1, #075D4E);
    color: #fff !important;
    font-size: 1.6rem;
    font-weight: 700;
    padding: 20px 50px;
    display: flex;
  align-items: center;
  justify-content: center;
}
.header_cta img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}


@media screen and (max-width: 500px) {
    .logo {
        margin-left: 10px;
        display: flex;
        align-items: center;
    }
    .logo a > img {
        width: 165px;
        height: auto;
    }
    .logo_text {
        font-size: 1.8rem;
        color: #1056A7;
        font-weight: 900;
    }

    .header_cta {
        display: none;
    }
}