@font-face {
    font-family: "GT America";
    src: url("./../media/GT-America-Standard-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "GT America";
    src: url("./../media/GT-America-Standard-Regular-Italic.ttf") format("truetype");
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: "GT America";
    src: url("./../media/GT-America-Standard-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

body {
    font-family: "GT America", sans-serif;
    background-color: #078B85;
}

header {
    position: absolute;
    width: 100%;
    border-bottom: 1px solid #fff;
    font-size: 0.79em;
    z-index: 20;
}

header.fixed {
    position: fixed;
}

header .head-section {
    display: flex;
    align-items: center;
    color: #fff;
    border-left: 1px solid #fff;
    padding: 1em;
    flex-shrink: 0;
}

header .head-section#head-logo {
    border-left: none;
}

header .head-section#head-info {
    width: 100%;
    flex-shrink: 2;
    justify-content: space-between;
}

header .head-section#head-search {
    font-style: italic;
}

header .head-section#head-search #head-search-input {
    font: inherit;
    background: none;
    border: none;
    color: #fff;
    margin-left: 1em;
}

header .head-section#head-search #head-search-input::-webkit-input-placeholder {
    color: #fff;
    opacity: 1;
}

header .head-section#head-search #head-search-input::-moz-placeholder {
    color: #fff;
    opacity: 1;
}

header .head-section#head-search #head-search-input:-ms-input-placeholder {
    color: #fff;
    opacity: 1;
}

header .head-section#head-search #head-search-input:-moz-placeholder {
    color: #fff;
    opacity: 1;
}

header .head-section#head-search #head-search-input::placeholder {
    color: #fff;
    opacity: 1;
}

header .head-section#head-search #head-search-input:focus {
    outline: none;
}

header .head-section#head-account #head-account-icon {
    width: 2.5em;
    border-radius: 50%;
    background-position: center;
    background-size: cover;
    box-shadow: 0 0 0 0.3em #fff;
}

header .head-section#head-account #head-logout {
    font-weight: 700;
}

header .head-section#head-burger svg.head-icon {
    display: block;
    cursor: pointer;
}

header .head-section#head-burger svg.head-icon path {
    stroke: #fff;
    stroke-width: 10;
}

header .head-section .head-icon {
    display: block;
    height: 2.5em;
}

header .head-section .head-icon.head-icon-space-right {
    margin-right: 1em;
}

.single-post #head {
    background-color: rgba(51, 51, 51, 0.3333333333);
}

#menu {
    position: fixed;
    background-color: #444;
    transition: 0.3s;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    z-index: 19;
    padding-top: 3.5em;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(4, 25%);
    grid-template-rows: 1fr 5em;
    place-items: center;
}

#menu.opened {
    left: 0;
}

#menu > .menu-foot {
    width: 100%;
    height: 100%;
    color: #fff;
}

#menu > .menu-foot .svg-icon {
    height: 2.5em;
}

#menu > .menu-foot .svg-icon .svg-fill {
    fill: #fff;
}

#menu #menu-logo {
    grid-column-start: 1;
    grid-column-end: 3;
    width: 100%;
}

#menu #menu-logo #nav-animation {
    position: relative;
    z-index: 1;
    max-width: 25em;
    display: block;
    margin: 0 auto;
}

#menu #menu-list {
    grid-column-start: 3;
    grid-column-end: 5;
    justify-self: flex-start;
}

#menu #menu-list .menu-link {
    display: inline-block;
    position: relative;
    font-size: 2.62em;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
    color: #fff;
    text-decoration: none;
}

#menu #menu-list .menu-link:hover {
    color: #FCCF44;
}

.color-navigation header {
    background-color: #078B85;
    transition: 0.2s;
}

.color-navigation header.fixed {
    background-color: transparent;
}

svg.logo-animation path {
    stroke: #FCCF44;
    stroke-width: 0.2;
}

.select-wrap {
    overflow: hidden;
    position: relative;
    transition: 0.2s;
    cursor: pointer;
}

.select-wrap .select-adjuster {
    transition: margin 0.3s;
}

.select-wrap .select-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.select-wrap.expanded .select-overlay {
    display: none;
}

.select-wrap.expanded .arrow-down .arrow-down-expand {
    display: none;
}

.select-wrap.expanded .arrow-down .arrow-down-shrink {
    display: block;
}

.select-wrap.expanded .arrow-down .arrow-down-svg {
    transform: rotate(180deg);
}

.select-wrap .select-option {
    transition: 0.2s;
    line-height: 1.4;
}

.select-wrap .arrow-down {
    position: absolute;
    top: 1em;
    display: flex;
    margin-top: -0.5em;
    right: 0.5em;
    cursor: pointer;
    line-height: 1;
    z-index: 2;
    transition: 0.2s;
    color: #999;
}

.select-wrap .arrow-down:hover {
    color: #078B85;
}

.select-wrap .arrow-down:hover .arrow-down-svg path {
    stroke: #078B85;
}

.select-wrap .arrow-down .arrow-down-shrink {
    display: none;
}

.select-wrap .arrow-down .arrow-down-svg {
    font-size: 0.79em;
    transition: 0.3s;
}

.select-wrap .arrow-down .arrow-down-svg path {
    fill: none;
    stroke: #999;
    stroke-width: 10;
    transition: 0.2s;
}

.select-wrap input[type=radio] {
    display: none;
}

.select-wrap label {
    display: block;
}

.select-wrap.account-contact-select-wrap {
    background-color: #fff;
    border-bottom: 1px solid #ccc;
}

.select-wrap.account-contact-select-wrap .select-option {
    padding: 0.1em 0;
    color: #aaa;
}

.select-wrap.account-contact-select-wrap .select-option:hover {
    background-color: #f8f8f8;
    color: #000;
}

.select-wrap.account-contact-select-wrap .select-option.checked {
    color: #000;
}

.select-wrap.account-job-list-select-wrap {
    margin: 0.4em auto;
    background-color: #fff;
    border-bottom: 1px solid #000;
}

.select-wrap.account-job-list-select-wrap .select-option {
    font-size: 1.62em;
    padding: 0.1em 0;
    color: #777;
}

.select-wrap.account-job-list-select-wrap .select-option:hover {
    background-color: #f8f8f8;
    color: #000;
}

.select-wrap.account-job-list-select-wrap .select-option.checked {
    color: #000;
}

.select-wrap.job-list-select-wrap {
    position: relative;
    z-index: 1;
    margin: 0.4em auto;
    padding-right: 2em;
    border-bottom: 2px dashed #fff;
}

.select-wrap.job-list-select-wrap.expanded {
    background-color: #fff;
    border-bottom: 2px dashed #000;
}

.select-wrap.job-list-select-wrap.expanded .select-option {
    color: #000;
}

.select-wrap.job-list-select-wrap.expanded .select-option:hover {
    background-color: #f8f8f8;
    color: #fff;
}

.select-wrap.job-list-select-wrap.expanded .select-option:hover, .select-wrap.job-list-select-wrap.expanded .select-option.checked {
    color: #000;
}

.select-wrap.job-list-select-wrap.expanded .arrow-down path {
    stroke: #000;
}

.select-wrap.job-list-select-wrap .select-option {
    font-size: 2em;
    padding: 0.1em 0.5em;
    color: #fff;
}

.select-wrap.job-list-select-wrap .select-option.checked {
    color: #fff;
}

.select-wrap.job-list-select-wrap .arrow-down {
    top: 1em;
    right: 0;
}

.select-wrap.job-list-select-wrap .arrow-down svg {
    height: 3em;
}

.select-wrap.job-list-select-wrap .arrow-down path {
    stroke: #fff;
}

.select-wrap.job-list-select-wrap .arrow-down:hover path {
    stroke: #FCCF44;
}

@media (max-width: 900px) {
    .select-wrap.job-list-select-wrap {
        font-size: 0.75em;
        margin-left: 0.5em;
    }
}

.select-wrap.home-slider-select-wrap {
    position: relative;
    z-index: 10;
    margin-top: -0.1em;
    padding-right: 1.5em;
    border-bottom: 2px dashed #fff;
    max-height: 10em;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.select-wrap.home-slider-select-wrap.expanded {
    overflow: auto;
}

.select-wrap.home-slider-select-wrap::-webkit-scrollbar {
    display: none;
}

.select-wrap.home-slider-select-wrap .select-option {
    padding: 0.1em 0;
}

.select-wrap.home-slider-select-wrap .select-option:hover {
    color: #FCCF44;
}

.select-wrap.home-slider-select-wrap .arrow-down {
    top: 0.8em;
    right: 0;
}

.select-wrap.home-slider-select-wrap .arrow-down path {
    stroke: #fff;
}

.select-wrap.home-slider-select-wrap .arrow-down:hover path {
    stroke: #FCCF44;
}

.select-wrap.home-offer-list-select-wrap {
    margin-top: -0.2em;
    padding: 0 1.5em 0 0.5em;
    border-bottom: 2px dashed #fff;
    background-color: #fff;
    position: relative;
    z-index: 2;
}

.select-wrap.home-offer-list-select-wrap .select-option {
    padding: 0.2em 0;
}

.select-wrap.home-offer-list-select-wrap .select-option:hover {
    color: #FCCF44;
}

.select-wrap.home-offer-list-select-wrap .arrow-down {
    top: 1em;
    right: 0;
}

.select-wrap.home-offer-list-select-wrap .arrow-down:hover path {
    stroke: #FCCF44;
}

h1 {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.65em;
}

h2 {
    font-weight: 700;
    font-size: 1.65em;
    padding-top: 1.5em;
}

h3 {
    font-weight: 700;
    font-size: 1em;
    padding-top: 1.5em;
}

hr {
    margin: 1em 0;
    border: none;
    border-top: 1px solid #000;
}

ul {
    list-style-type: none;
    padding: 0.5em;
    margin: 0;
}

.link {
    cursor: pointer;
    opacity: 1;
    transition: 0.2s;
}

.link:hover {
    opacity: 0.75;
}

.text-link {
    color: #1B447C;
    padding-bottom: 1px;
    border-bottom: 2px dashed #1B447C;
    transition: 0.2s;
}

.text-link:hover {
    color: #078B85;
    border-color: #078B85;
}

.part {
    max-width: 100em;
    margin: 0 auto;
}

.column {
    padding-left: 3em;
    padding-right: 3em;
}

.column-half {
    padding-left: 1.5em;
    padding-right: 1.5em;
}

.column-half-right {
    padding-right: 1.5em;
}

.column-half-left {
    padding-left: 1.5em;
}

.box {
    background-color: #fff;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
}

.box,
.box-shadow {
    box-shadow: 0.1em 0.1em 0.5em rgba(0, 0, 0, 0.75);
}

.inline-icon {
    display: inline-block;
    height: 1.29em;
    margin: 0.1em 0.25em;
    vertical-align: middle;
}

.nodisplay {
    display: none;
}

.svg-icon {
    height: 100%;
}

svg .svg-stroke {
    fill: none;
    stroke: #000;
}

svg .svg-fill {
    fill: #000;
}

.color {
    color: #078B85;
}

.color .svg-stroke {
    fill: none;
    stroke: #078B85 !important;
}

.color .svg-fill {
    fill: #078B85 !important;
}

.color-green-blue {
    color: #078B85;
}

.color-green-blue .svg-stroke {
    fill: none;
    stroke: #078B85 !important;
}

.color-green-blue .svg-fill {
    fill: #078B85 !important;
}

.color-red {
    color: #D14B47;
}

.color-red .svg-stroke {
    fill: none;
    stroke: #D14B47 !important;
}

.color-red .svg-fill {
    fill: #D14B47 !important;
}

.color-blue {
    color: #1B447C;
}

.color-blue .svg-stroke {
    fill: none;
    stroke: #1B447C !important;
}

.color-blue .svg-fill {
    fill: #1B447C !important;
}

.color-gray {
    color: #aaa;
}

.color-gray .svg-stroke {
    fill: none;
    stroke: #aaa !important;
}

.color-gray .svg-fill {
    fill: #aaa !important;
}

.color-white {
    color: #fff;
}

.color-white .svg-stroke {
    fill: none;
    stroke: #fff !important;
}

.color-white .svg-fill {
    fill: #fff !important;
}

.dark-bg {
    background-color: #333;
}

button {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    height: 3em;
    background: none;
    background-color: #D14B47;
    border: none;
    color: #fff;
    font-size: 0.75em;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0 1em;
    margin: 0;
    cursor: pointer;
    opacity: 1;
    transition: 0.2s;
}

button.small-button {
    height: 2em;
}

button.button-green-blue {
    background-color: #078B85;
}

button.button-blue {
    background-color: #1B447C;
}

button.button-gray {
    background-color: #aaa;
}

button:hover {
    opacity: 0.75;
}

button .svg-icon {
    display: block;
    height: 2.5em !important;
}

button .svg-icon .svg-stroke {
    stroke: #fff;
    fill: none;
}

button .svg-icon .svg-fill {
    fill: #fff;
}

button span.button-text {
    padding: 0 0.75em;
}

button .icon-button svg {
    margin: -0.6em;
}

.title {
    font-size: 2.62em;
    font-weight: 700;
    color: #fff;
}

.full-page-bg {
    background-size: cover;
    background-position: center;
    min-height: 100vh;
}

/* foot */
#foot-main {
    position: relative;
    background-color: #333;
    padding-top: 3em;
    padding-bottom: 3em;
    color: #fff;
}

#foot-main .part > .column-half {
    flex-shrink: 0;
    flex-grow: 2;
    max-width: 35em;
}

#foot-main .part > .column-half:nth-last-child(1) {
    flex-shrink: 2;
    flex-grow: 0;
}

#foot-main .foot-social .inline-icon {
    margin: 0;
    font-size: 1.5em;
}

#foot-main .svg-fill {
    fill: #fff;
}

#foot-main #logo-icon-foot {
    max-width: 10em;
}

#foot-contact {
    background-size: cover;
    background-position: center;
    color: #fff;
}

#foot-contact #foot-contact-form {
    max-width: 35em;
    margin-left: auto;
}

#foot-contact #foot-contact-form input,
#foot-contact #foot-contact-form textarea {
    border-color: #fff;
}

#foot-contact #foot-contact-form button {
    background-color: #fff;
}

form input,
form textarea,
form select {
    background: none;
    border: none;
    width: 100%;
    padding: 0.5em 0.5em 0.4em 0.5em;
    color: inherit;
    font: inherit;
    border-bottom: 1px solid #ccc;
}

form input:focus,
form textarea:focus,
form select:focus {
    outline: none;
}

form textarea {
    height: 8em;
    min-height: 8em;
    resize: vertical;
}

form .alt-file {
    width: 100%;
    padding: 0.5em 0.5em 0.4em 0.5em;
    border-bottom: 1px solid #ccc;
    color: #aaa;
    font-style: italic;
    cursor: pointer;
}

form .alt-file.file-added {
    color: #000;
    font-style: normal;
}

/* pagination */
.pagination {
    display: flex;
    justify-content: center;
    font-weight: 700;
    padding: 0.5em;
}

.pagination .page-num,
.pagination .page-prev,
.pagination .page-next {
    width: 1.75em;
    height: 1.75em;
    margin: 0 0.25em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    cursor: pointer;
}

.pagination .page-num:hover,
.pagination .page-prev:hover,
.pagination .page-next:hover {
    background-color: #eee;
}

.pagination .page-num.page-current,
.pagination .page-prev.page-current,
.pagination .page-next.page-current {
    background-color: #FCCF44;
}

/* edit */
.edit-link {
    color: #1B447C;
    font-size: 0.65em;
    font-weight: 700;
}

.edit-link .inline-icon {
    height: 2em;
}

.edit-link .svg-fill {
    fill: #1B447C;
}

/* page default */
body.page-white {
    background-color: #fff;
}

#top-image {
    padding-top: 12%;
    padding-bottom: 1%;
    background-size: cover;
    background-position: center;
}

.topbar-title,
.main-title {
    font-size: 2em;
    text-transform: none;
    margin-left: -1em;
    color: #fff;
}

.topbar-title:before,
.main-title:before {
    content: "";
    display: inline-block;
    vertical-align: 0.25em;
    width: 2em;
    height: 0.25em;
    background-color: #FCCF44;
    margin-right: 0.5em;
}

.main-title {
    color: #333;
}

.text-wrap {
    max-width: 58em;
    margin: 0 auto;
}

.center-title {
    font-size: 2em;
    font-weight: 700;
    text-align: center;
}

/* about us */
.about-us-icon {
    width: 10em;
    max-width: 25%;
    box-sizing: content-box;
}

/* blog archive */
.blog-post-link {
    width: 33.3333%;
    padding: 1.5em;
}

.blog-post-link.has-image .box {
    padding-top: 0;
}

.blog-post-link.has-image .blog-post-link-image {
    padding-bottom: 50%;
    background-position: center;
    background-size: cover;
    margin-bottom: 1.5em;
}

.blog-post-link.has-link .box {
    cursor: pointer;
    transition: 0.3s;
}

.blog-post-link .blog-post-link-title {
    font-weight: 780;
    font-size: 1.25em;
}

.blog-post-link .blog-post-link-arrow {
    position: absolute;
    bottom: -1.5em;
    right: 1.5em;
    width: 3em;
    height: 3em;
    padding: 0.75em;
    background-color: #FCCF44;
    border-radius: 50%;
    box-shadow: 0.1em 0.1em 0.5em rgba(0, 0, 0, 0.75);
    opacity: 0;
    transition: 0.3s;
}

.blog-post-link .blog-post-link-arrow svg {
    width: 100%;
}

.blog-post-link.has-link .box:hover {
    background-color: #eee;
}

.blog-post-link.has-link .box:hover .blog-post-link-arrow {
    opacity: 1;
}

#top-image.blog-top-image {
    padding-bottom: 10%;
    margin-bottom: -9%;
}

/* button links */
.read-more-link-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 20;
}

.read-more-link-wrap .read-more-link {
    display: inline-flex;
    padding: 0.5em 0.5em;
    align-items: center;
    box-shadow: 0.1em 0.1em 0.5em rgba(0, 0, 0, 0.75);
    cursor: pointer;
    transition: 0.3s;
}

.read-more-link-wrap .read-more-link .read-more-link-arrow {
    position: relative;
    top: 0;
    transition: 0.3s;
}

.read-more-link-wrap .read-more-link:hover .read-more-link-arrow {
    top: 0.25em;
}

.read-more-link-wrap .read-more-link.active .read-more-link-arrow {
    transform: rotate(180deg);
}

.read-more-link-wrap .read-more-link.active:hover .read-more-link-arrow {
    top: -0.25em;
}

.read-more-link-wrap .read-more-link .inline-icon {
    height: 2em;
}

.read-more-link-wrap .read-more-link .inline-icon .svg-icon {
    display: block;
    height: 100%;
}

.read-more-link-wrap .read-more-link span {
    text-transform: uppercase;
    font-weight: 700;
    padding: 0 0.75em;
    transition: 0.2s;
}

#home-slider-wrap {
    position: relative;
    min-height: 100vh;
    z-index: 2;
}

#home-slider-wrap #home-slider-text {
    opacity: 1;
    transition: opacity 0.3s;
    max-width: 25em;
}

#home-slider-wrap #home-slider-text.hidden {
    opacity: 0;
}

#home-slider-wrap .title .strike {
    position: relative;
    white-space: pre;
    z-index: 1;
}

#home-slider-wrap .title .strike:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    margin-top: 0.05em;
    left: -2%;
    width: 104%;
    height: 0.18em;
    background-color: #fff;
    z-index: -1;
}

#home-slider-wrap .title.strike-yellow .strike:after {
    background-color: #FCCF44;
}

#home-slider-wrap .title.strike-blue .strike:after {
    background-color: #1B447C;
}

#home-slider-wrap .title.strike-red .strike:after {
    background-color: #D14B47;
}

#home-slider-wrap .home-slider-sub {
    color: #fff;
}

#home-slider-wrap .home-slider-sub .home-slider-icon {
    height: 3em;
    margin-right: 0.75em;
}

#home-slider-wrap .home-slider-sub .home-slider-icon svg {
    display: block;
}

#home-slider-wrap .home-slider-sub .home-slider-icon svg .svg-stroke {
    fill: none;
    stroke: #fff;
}

#home-slider-wrap .home-slider-sub .home-slider-icon svg .svg-fill {
    fill: #fff;
}

#home-slider-wrap .home-slider-sub .home-slider-sub-text {
    padding-top: 0.5em;
    font-size: 1.29em;
}

#home-slider-wrap #home-animation {
    position: relative;
    z-index: 1;
    max-width: 25em;
    display: block;
    margin: 0 auto;
}

#home-slider-bullets {
    position: absolute;
    top: 0;
    right: 2em;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#home-slider-bullets .f3-slider-bullet {
    position: relative;
    width: 1em;
    height: 1em;
    border: 2px solid #fff;
    border-radius: 50%;
    margin: 0.25em 0;
    cursor: pointer;
}

#home-slider-bullets .f3-slider-bullet:after {
    content: "";
    display: block;
    position: absolute;
    top: 25%;
    left: 25%;
    width: 50%;
    height: 50%;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0;
    transition: 0.2s;
}

#home-slider-bullets .f3-slider-bullet.active:after {
    opacity: 1;
}

#home-slider-bullets .f3-slider-bullet.hovered:after {
    opacity: 0.5;
}

#home-slider {
    position: absolute !important;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

#home-slider .single-slide {
    background-size: cover;
    background-position: center;
}

/* map link */
#home-map-link {
    background-color: #fff;
    margin-bottom: 0.4em;
}

#home-map-link:hover {
    background-color: #eee;
}

#home-map-link .svg-stroke {
    fill: none;
    transition: 0.2s;
}

#home-map-link .svg-fill {
    transition: 0.2s;
}

#home-map-link.strike-green-blue .svg-stroke {
    stroke: #078B85;
    fill: none;
}

#home-map-link.strike-green-blue .svg-fill {
    fill: #078B85;
}

#home-map-link.strike-green-blue span {
    text-transform: uppercase;
    font-weight: 700;
    color: #078B85;
    padding: 0 0.75em;
}

#home-map-link.strike-blue .svg-stroke {
    stroke: #1B447C;
    fill: none;
}

#home-map-link.strike-blue .svg-fill {
    fill: #1B447C;
}

#home-map-link.strike-blue span {
    text-transform: uppercase;
    font-weight: 700;
    color: #1B447C;
    padding: 0 0.75em;
}

#home-map-link.strike-red .svg-stroke {
    stroke: #D14B47;
    fill: none;
}

#home-map-link.strike-red .svg-fill {
    fill: #D14B47;
}

#home-map-link.strike-red span {
    text-transform: uppercase;
    font-weight: 700;
    color: #D14B47;
    padding: 0 0.75em;
}

/* map */
#home-map-container {
    position: relative;
    z-index: 2;
    max-height: 100vh;
    overflow: hidden;
}

#home-map-box {
    position: relative;
    width: 30em;
    z-index: 2;
    overflow: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex-shrink: 0;
}

#home-map-box::-webkit-scrollbar {
    display: none;
}

#home-map-box #home-map-title .inline-icon {
    margin: 0;
}

#home-map-box #home-map-filter {
    margin-left: 1em;
    border-bottom: 1px solid;
}

#home-map-box #home-offer-list-close {
    cursor: pointer;
    transition: 0.2s;
    border-radius: 50%;
}

#home-map-box #home-offer-list-close .svg-stroke {
    transition: 0.2s;
}

#home-map-box #home-offer-list-close:hover .svg-stroke {
    stroke: #D14B47;
}

#home-map-box .home-job-category {
    padding-top: 3em;
}

#home-map-box .home-job-category .home-job-category-title {
    position: relative;
    text-transform: uppercase;
    font-weight: 700;
}

#home-map-box .home-job-category .home-job-category-title .inline-icon {
    position: absolute;
    bottom: -0.1em;
    right: 100%;
}

#home-map-box .home-job-category .home-job-list {
    padding-top: 1.5em;
}

#home-map-box .home-job-category .home-job-list .home-job {
    padding: 0.5em 0;
    border-top: 1px solid #000;
}

#home-map-box .home-job-category .home-job-list .home-job:nth-child(1) {
    border: none;
}

#home-map-box .home-job-category .home-job-list .home-job .inline-icon {
    margin-left: -0.2em;
}

#home-map-box .home-job-category .home-job-list-more {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 0.5em 0;
    cursor: pointer;
}

#home-map-box .home-job-category .home-job-list-more span {
    position: relative;
    left: 0;
    text-transform: uppercase;
    font-size: 0.65em;
    transition: 0.2s;
}

#home-map-box .home-job-category .home-job-list-more:hover span {
    left: 1em;
}

#home-map {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #eee;
}

#home-map #home-map-wrap {
    position: relative;
    top: -50%;
    left: -50%;
    width: 200%;
    padding-bottom: 200%;
    cursor: all-scroll;
}

#home-map #home-map-wrap #home-map-svg-wrap {
    position: absolute;
    top: 25%;
    left: 25%;
    width: 50%;
    transition: 0.5s;
}

#home-map #home-map-wrap #home-map-svg-wrap svg {
    display: block;
    width: 100%;
    height: 100%;
}

#home-map #home-map-wrap #home-map-svg-wrap svg .map-region {
    fill: #eee;
    stroke: #aaa;
    stroke-width: 1;
    transition: 0.3s;
    cursor: pointer;
}

#home-map #home-map-wrap #home-map-svg-wrap svg .map-region:hover {
    fill: #fff;
}

#home-map #home-map-wrap #home-map-svg-wrap svg .map-region text {
    font-size: 7px;
    stroke-width: 0;
    fill: #000;
}

#home-map #home-map-wrap #home-map-svg-wrap svg .map-region circle {
    fill: #FCCF44;
    stroke-width: 0;
}

#home-map #home-map-wrap #home-map-pin-group {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5em;
    height: 5em;
    margin: -2.5em;
    pointer-events: none;
}

#home-map #home-map-wrap #home-map-pin-group img {
    position: absolute;
    top: -158%;
    left: -48%;
    display: block;
    width: 200%;
}

#home-map #home-map-wrap #home-map-pin-group span {
    position: absolute;
    top: 50%;
    left: 100%;
    white-space: pre;
    font-weight: 700;
    text-transform: uppercase;
    color: #078B85;
    background-color: #FCCF44;
    padding: 0.5em 1em;
    box-shadow: 0.1em 0.1em 0.5em rgba(0, 0, 0, 0.75);
    transform: rotate(-5deg);
}

#account-sidebar {
    position: relative;
    max-width: 24em;
    margin: 0 auto;
}

#account-content {
    max-width: 65em;
    margin: 0 auto;
}

#account-sidebar .account-image-container {
    position: absolute;
    top: -4em;
    left: 3em;
}

.account-image-container {
    position: relative;
    width: 8em;
    margin-left: 1em;
}

.account-image-container .account-image {
    position: relative;
    z-index: 2;
    border-radius: 50%;
    background-position: center;
    background-size: cover;
    box-shadow: 0 0 0 1em #fff, 0.1em 0.1em 0.5em 1em rgba(0, 0, 0, 0.75);
    width: 100%;
    padding-bottom: 100%;
}

.account-image-container .account-image-edit {
    position: absolute;
    height: 0.8em;
    width: 0.8em;
    padding: 0.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1B447C;
    color: #fff;
    line-height: 0;
    font-size: 3em;
    font-weight: 700;
    border-radius: 50%;
    right: -0.45em;
    bottom: -0.45em;
    cursor: pointer;
    transition: 0.3s;
}

.account-image-container .account-image-edit:hover {
    opacity: 0.75;
}

.account-image-container .account-image-edit .svg-stroke {
    stroke: #fff;
    stroke-width: 16;
}

.account-link {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.75em 0.25em;
    border-bottom: 1px solid #ddd;
    z-index: 1;
    cursor: pointer;
}

.account-link:after {
    content: "";
    position: absolute;
    top: -1px;
    right: 0;
    bottom: 0;
    left: -2.5em;
    display: block;
    background-color: #FCCF44;
    opacity: 0;
    z-index: -1;
    transition: 0.2s;
}

.account-link.current, .account-link:hover {
    border-bottom: 1px solid transparent;
}

.account-link.current:after, .account-link:hover:after {
    opacity: 1;
}

.account-link.current:after {
    left: -0.5em;
    right: -2em;
}

.account-link:hover:after {
    left: -0.3em;
    right: -2.2em;
}

.account-link .account-link-icon {
    height: 1.5em;
    margin-right: 1em;
}

.account-link .account-link-text {
    text-transform: uppercase;
    font-weight: 700;
}

.title-icon {
    width: 3em;
    background-color: #FCCF44;
    border-radius: 50%;
    padding: 0.4em;
}

#account-content-wrap {
    padding-left: 4.5em;
}

.info-table {
    width: 100%;
    font-size: 0.79em;
    border-collapse: collapse;
}

.info-table th {
    font-weight: 400;
    text-align: left;
    border: none;
}

.info-table th,
.info-table td {
    padding: 0.5em 0.25em;
    vertical-align: top;
}

.info-table td {
    border-top: 1px solid #ddd;
}

.info-table tr.info-hidden-row td {
    padding: 0;
    border: none;
}

.info-table tr.info-hidden-row td .info-hidden {
    padding: 0.5em 0 2em 0;
}

@media (max-width: 1420px) {
    #account-content-wrap {
        padding-left: 0;
    }
}

@media (max-width: 1310px) {
    #account-main-flex {
        padding-left: 0;
        padding-right: 0;
    }
}

#account-sidebar-button {
    display: none;
    background-color: #FCCF44;
    width: 2.2em;
    height: 4em;
    position: fixed;
    top: 13em;
    left: -0.5em;
    border-radius: 0 2em 2em 0;
    padding-top: 1em;
    padding-left: 0.2em;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
    box-shadow: 0.2em 0.2em 0.2em rgba(0, 0, 0, 0.5);
}

#account-sidebar-button svg {
    width: 70%;
    margin: 15%;
    transition: 0.3s;
}

#account-sidebar-button:hover {
    background-color: #FCCF44;
    left: 0;
}

#account-sidebar-button.active {
    left: 20.8em;
}

#account-sidebar-button.active svg {
    transform: rotate(180deg);
}

@media (max-width: 1260px) {
    #account-sidebar-button {
        display: block;
    }

    #account-sidebar {
        position: fixed;
        top: 10em;
        left: -25em;
        width: 24em;
        transition: 0.3s;
        z-index: 10;
    }

    #account-sidebar.active {
        left: -1.5em;
    }

    #account-content {
        width: 100%;
    }
}

@media (max-width: 600px) {
    #account-sidebar-button.active {
        left: 22.3em;
    }

    #account-sidebar.active {
        left: -0.8em;
    }
}

/* forms */
.input-line {
    display: flex;
    align-items: center;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

.input-line label,
.input-line .label {
    flex-shrink: 0;
}

.input-line input {
    width: 100%;
}

.input-line.input-small label,
.input-line.input-small input,
.input-line.input-small .alt-file {
    font-size: 0.65em;
}

label,
.label {
    padding-right: 0.5em;
    padding-left: 0.5em;
}

.inputs {
    font-size: 0.65em;
    padding-right: 0.5em;
    padding-left: 0.5em;
}

.inputs input[type=checkbox],
.inputs input[type=radio] {
    display: none;
}

.inputs input[type=checkbox] + label,
.inputs input[type=radio] + label {
    position: relative;
    display: block;
    padding-bottom: 0.5em;
    padding-left: 1.5em;
    color: #aaa;
    cursor: pointer;
}

.inputs input[type=checkbox] + label:before,
.inputs input[type=radio] + label:before {
    content: "";
    position: absolute;
    display: block;
    width: 0.5em;
    height: 0.5em;
    border: 1px solid #000;
    box-shadow: 0 0 0 1px #fff inset;
    left: 0;
    top: 0.28em;
}

.inputs input[type=checkbox]:checked + label,
.inputs input[type=radio]:checked + label {
    color: #000;
}

.inputs input[type=checkbox]:checked + label:before,
.inputs input[type=radio]:checked + label:before {
    background-color: #000;
}

form ::-webkit-input-placeholder {
    color: #aaa;
    opacity: 1;
    font-style: italic;
}

form ::-moz-placeholder {
    color: #aaa;
    opacity: 1;
    font-style: italic;
}

form :-ms-input-placeholder {
    color: #aaa;
    opacity: 1;
    font-style: italic;
}

form :-moz-placeholder {
    color: #aaa;
    opacity: 1;
    font-style: italic;
}

form ::placeholder {
    color: #aaa;
    opacity: 1;
    font-style: italic;
}

.annotation {
    font-size: 0.65em;
    color: #aaa;
}

/* data line */
.data-line {
    display: flex;
}

.data-line .data-line-name {
    color: #747474;
    padding-right: 0.5em;
}

.data-line .data-line-value {
    font-style: italic;
}

/* color style */
.style-option {
    display: flex;
    align-items: center;
    margin: 0.5em;
    transition: 0.3s;
    cursor: pointer;
}

.style-option:hover {
    opacity: 0.75;
}

.style-option .style-option-color {
    width: 4em;
    height: 1.5em;
    margin-right: 0.5em;
}

.style-option .style-option-name {
    text-transform: uppercase;
    font-size: 0.75em;
}

/* round icon */
.round-icon {
    background-color: #ddd;
    border-radius: 50%;
    padding: 0.5em;
    height: 4em;
}

/* general */
.mobile,
.mobile-row,
.mobile-600 {
    display: none;
}

@media (max-width: 900px) {
    body {
        font-size: 0.85em;
    }

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

    .full-mobile {
        width: 100%;
    }

    .column-desktop {
        padding-left: 0;
        padding-right: 0;
    }

    .column-left-desktop {
        padding-left: 0 !important;
    }

    .column-right-desktop {
        padding-right: 0 !important;
    }

    .col2-mobile {
        width: 50%;
    }

    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

    .mobile-row {
        display: table-row;
    }

    .mobile-row td {
        border: none;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 0.75em;
    }

    .column {
        padding-left: 1.5em;
        padding-right: 1.5em;
    }

    .column-half {
        padding-left: 0.75em;
        padding-right: 0.75em;
    }

    .column-half-right {
        padding-right: 0.75em;
    }

    .column-half-left {
        padding-left: 0.75em;
    }

    .box {
        padding-top: 0.75em;
        padding-bottom: 0.75em;
    }

    .full-mobile-600 {
        width: 100%;
    }

    .column-desktop-600 {
        padding-left: 0;
        padding-right: 0;
    }

    .column-left-desktop-600 {
        padding-left: 0 !important;
    }

    .column-right-desktop-600 {
        padding-right: 0 !important;
    }

    .desktop-600 {
        display: none;
    }

    .mobile-600 {
        display: block;
    }

    .flex-align-center-mobile-600 {
        justify-content: center;
    }

    .auto-mobile-600 {
        width: auto;
    }
}

/* menu bar */
@media (max-width: 900px) {
    #head #head-logo {
        width: 100%;
        flex-shrink: 1;
    }

    #head #head-logo #logo-icon-full {
        height: 2em;
    }

    #head #head-info,
    #head #head-account-text {
        display: none;
    }

    #head .head-section .head-icon {
        height: 2em;
    }

    #head .head-section .head-icon.head-icon-space-right {
        margin-right: 0;
    }

    #head .head-section .head-icon#head-account-icon {
        width: 2em;
    }

    #head #head-search #head-search-input {
        position: absolute;
        left: -100%;
        width: 100%;
        top: 100%;
        margin: 0;
        background-color: #fff;
        color: #000;
        transition: 0.3s;
    }

    #head #head-search #head-search-input::-webkit-input-placeholder {
        color: #999;
        opacity: 1;
    }

    #head #head-search #head-search-input::-moz-placeholder {
        color: #999;
        opacity: 1;
    }

    #head #head-search #head-search-input:-ms-input-placeholder {
        color: #999;
        opacity: 1;
    }

    #head #head-search #head-search-input:-moz-placeholder {
        color: #999;
        opacity: 1;
    }

    #head #head-search #head-search-input::placeholder {
        color: #999;
        opacity: 1;
    }

    #head #head-search.active #head-search-input {
        left: 0;
    }
}

/* navigation */
@media (max-width: 900px) {
    #menu {
        grid-template-rows: 1fr 5em 5em;
    }

    #menu #menu-logo {
        display: none;
    }

    #menu #menu-list {
        grid-column-start: 1;
        justify-self: center;
    }

    #menu > .menu-foot {
        grid-column-end: span 2;
    }

    #menu > .menu-foot .svg-icon {
        height: 2.5em;
    }
}

/* home */
@media (max-width: 900px) {
    #home-slider-text {
        margin: 0 auto;
        padding-right: 3em;
    }

    #home-map-container {
        max-height: none;
    }

    #home-map-container #home-map-box {
        width: 100%;
        order: 2;
    }

    #home-map-container #home-map-box .inline-icon {
        left: -2.5em;
        right: auto;
    }

    #home-map-container #home-map-box .home-job-category-title {
        margin-left: 2em;
    }

    #home-map-container #home-map {
        height: 75vh;
    }
}

/* page default */
@media (max-width: 900px) {
    #top-image {
        padding-top: 25%;
    }

    .topbar-title,
    .main-title {
        font-size: 1.5em;
        margin-left: 0.5em;
    }
}

@media (max-width: 600px) {
    #top-image {
        padding-top: 50%;
    }

    .center-title {
        font-size: 1.5em;
    }
}

/* blog */
@media (max-width: 900px) {
    .blog-post-link {
        width: 50%;
    }
}

@media (max-width: 600px) {
    .blog-post-link {
        width: 100%;
    }

    .blog-post-link .blog-post-link-arrow {
        opacity: 1;
    }
}

.box.info {
    color: #1B447C;
    box-shadow: 0.1em 0.1em 0.5em rgba(27, 68, 124, 0.75);
    border: 1px solid #1B447C;
}

.box.warning {
    color: #e9ba2c;
    box-shadow: 0.1em 0.1em 0.5em rgba(252, 207, 68, 0.45);
    border: 1px solid #FCCF44;
}

.box.danger {
    color: #D14B47;
    box-shadow: 0.1em 0.1em 0.5em rgba(209, 75, 71, 0.65);
    border: 1px solid #842029;
}

/*# sourceMappingURL=base.css.map */
