html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.header {
    height: 80px;
    display: flex;
    align-items: center;
    box-shadow: 0px 8px 15px #EFEFFC;
    box-shadow: 0px 4px 8px rgba(33, 131, 162, 0.15);
    width: 100%;
    background-color: #fff;
    position: relative;
}

.header-in {
    width: 960px;
    margin: auto;
    display: flex;
    align-items: center;
    height: 80px;
}

.header-link > a {
    color: #000;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    display: block;
    margin: 0 0 0 50px;
    height: 80px;
    line-height: 80px;
    box-sizing: border-box;
    font-size: 13px;
}

.header-link > a:hover, .header-link > a.selected {
    color: #08ABED;
    border-bottom: 4px solid #08ABED;
}

.content {
    min-height: calc(100vh - 80px);
    background: linear-gradient(180deg, #FBFDFE 0%, rgba(203, 222, 241, 0.5) 224.41%);
}

.content-in {
    width: 1010px;
    margin: auto;
    padding: 40px 20px;
    box-sizing: border-box;
    display: flex;
}

.card {
    box-shadow: 0px 4px 16px rgba(33, 131, 162, 0.15);
    box-shadow: 0px 4px 8px rgba(33, 131, 162, 0.15);
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.wide-card {
    width: 640px;
    padding: 20px;
}

.narrow-card {
    width: 340px;
}

.wide-card + .narrow-card {
    margin-left: 30px;
}

.narrow-card + .wide-card {
    margin-left: 30px;
}

.card-wrap + .wide-card {
    margin-left: 30px;
}

.main-title {
    font-weight: 700;
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
}

.main-content {
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
}

.main-img {
    border-radius: 5px;
}

.main-link {
    color: #08ABED;
    text-decoration: none;
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
}

.profile-narrow-heading {
    color: #3C7FAE;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.two-col-wide {
    display: flex;
    justify-content: space-between;
}

.col-wide {
    width: calc(50% - 0.25rem);
}

.profile-wide-heading {
    color: #000;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 10px;
}

.sign-in-text {
    color: #000;
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
}

.sign-in-link {
    color: #08ABED;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
}

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

.search-field {
    border: 1px solid #333;
    border-radius: 25px;
    padding: 0 10px;
    margin: 0;
    height: 25px;
    line-height: 25px;
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
    margin-left: 50px;
    width: 150px;
    background-image: url(../imgs/search.png);
    background-repeat: no-repeat;
    background-position: 94% center;
    background-size: 13px;
}

.profile-img {
    margin-left: 20px;
}

.arrow {
    margin-left: 5px;
}

.v-card {
    box-shadow: 0px 8px 15px #EFEFFC;
    box-shadow: 0px 4px 8px rgba(33, 131, 162, 0.15);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.v-card img {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.v-card-content {
    padding: 10px;
}

.v-card-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
}

.v-card-desc {
    margin: 10px 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    color: #333;
}

.v-card-code {
    text-align: center;
    background: rgba(222, 244, 252, 0.5);
    border: 1px dashed #3C7FAE;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    border-radius: 4px;
    margin: 10px 0;
    padding: 10px;
}

.benefit-wrap {
}

.benefit-item {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #CFE9FE;
}

.benefit-item:last-child {
    border-bottom: 0;
}

.benefit-icon {
    margin: 10px;
    min-width: 32px;
    display: flex;
    align-items: center;
}

.benefit-content {
    padding: 10px;
}

.benefit-title {
    color: #08ABED;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
}

.benefit-desc {
    color: #333;
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
}

.mb-0 {
    margin-bottom: 0;
}