/* Komponenten: Content-Bereiche, Hintergründe, Formulare, Sidebar-Icons */
.content_container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: justify;
}

.content_container.less_padding_top {
    padding-top: 10px;
}

.content_container h1,
.content_container h2 {
    font-size: 3em;
}

.content_container h2.smaller,
.content_container h1.smaller {
    font-size: 2em;
    margin-top: -20px;
    margin-bottom: 20px;
}

.content_container p,
.content_list {
    font-size: 18px;
    line-height: 2;
}

.content_list {
    display: inline-block;
    margin: 20px auto;
    list-style: disc;
    background: #eee;
    padding: 20px 20px 20px 40px;
}

.content_list li {
    text-align: left;
}

.iconbox {
    position: relative;
    display: flex;
    gap: 26px;
    align-items: center;
    padding: 12px 0 12px 130px;
}

.iconbox::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 95px;
    height: 56px;
    background: url('../images/icons/fast-forward.svg') no-repeat center;
    background-size: contain;
}

.content_list_block {
    display: block;
}

.top_caption {
    padding-top: 250px;
    color: #fff;
    text-align: center;
}

.top_caption h1 {
    font-size: 5em;
}

.top_caption p {
    font-size: 2em;
}

.background_margin_top {
    margin-top: -10px;
}

.background--home-1,
.background--home-2,
.background--rohstoffe,
.background--werkstoffe-2,
.background--contact-v2,
.background--imprint,
.background--containership,
.background--halle,
.background--raffinerie-11,
.background--aluminium-bars,
.background--titan,
.background--video,
.background--service-kraftstoffe,
.background--service-containers,
.background--service-train {
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #333;
    background-position: top;
    min-height: 95vh;
    margin-left: -10px;
    width: calc(100% + 20px);
}

.background--home-1 {
    background-image: url('../images/oiltanker/oiltanker_preview.jpg');
}

.background--home-2 {
    background-image: url('../images/oiltanker/oiltanker_backview.png');
}

.background--rohstoffe {
    background-image: url('../images/backgrounds/rohstoffe.jpg');
}

.background--werkstoffe-2 {
    background-image: url('../images/backgrounds/werkstoffe_2.jpg');
}

.background--contact-v2 {
    background-image: url('../images/backgrounds/kontakt_v2.jpg');
}

.background--contact-europa {
    position: relative;
    background-image: url('../images/backgrounds/globus_europa.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    min-height: 52vh;
    margin-left: -10px;
    width: calc(100% + 20px);
}

.background--imprint {
    background-image: url('../images/backgrounds/impressum.jpg');
}

.background--containership {
    background-image: url('../images/backgrounds/container_ship.jpg');
}

.background--halle {
    background-image: url('../images/backgrounds/service_halle_new.jpg');
}

.background--raffinerie-11 {
    background-image: url('../images/backgrounds/raffinerie_11.jpg');
}

.background--aluminium-bars {
    background-image: url('../images/backgrounds/aluminium_bars.jpg');
}

.background--titan {
    background-image: url('../images/backgrounds/titan.jpg');
}

.background--video,
.background--service-kraftstoffe,
.background--service-containers,
.background--service-train {
    background-image: none;
}

.background--service-kraftstoffe {
    background-image: url('../images/backgrounds/tanker_21.png');
}

.background--service-containers {
    background-image: url('../images/backgrounds/tanker_22.png');
}

.background--service-train {
    background-image: url('../images/backgrounds/tanker_train_01.png');
}

.bg_video {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.bg_video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg_arrow_up,
.bg_arrow_down {
    position: absolute;
    left: calc(50% - 25px);
    width: 0;
    height: 0;
    z-index: 2;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
}

.bg_arrow_down {
    top: 0;
    border-top: 25px solid #f6f6f6;
}

.bg_arrow_up {
    top: auto;
    bottom: 0;
    border-bottom: 25px solid #f6f6f6;
}

.bg_arrow_down::after,
.bg_arrow_up::after {
    content: '';
    position: absolute;
    left: -16px;
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
}

.bg_arrow_down::after {
    top: -25px;
    border-top: 16px solid #bcbcbc;
    animation: arrowTipDown 1.5s ease-in-out infinite;
}

.bg_arrow_up::after {
    bottom: -25px;
    border-bottom: 16px solid #bcbcbc;
    animation: arrowTipUp 1.5s ease-in-out infinite;
}

@keyframes arrowTipDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

@keyframes arrowTipUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.bg_arrow_down--position_bottom {
    top: auto;
    bottom: 0;
}

.button_row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
}

.button--ship,
.button--bar {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 160px;
    padding: 12px 24px;
    background: #1f1f1f;
    color: #fff;
    border-radius: 2px;
    overflow: visible;
}

.button--ship {
    min-width: 200px;
}

.button--ship::after,
.button--bar::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 55%;
    width: 78px;
    height: 42px;
    transform: translateX(-50%) translateY(16px);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
    pointer-events: none;
    filter: drop-shadow(0 6px 4px rgba(0, 0, 0, 0.28));
}

.button--ship::after {
    background: url('../images/icons/tanker.png') no-repeat center;
    background-size: contain;
}

.button--bar::after {
    width: 72px;
    background: url('../images/icons/aluminium_bars.png') no-repeat center;
    background-size: contain;
}

.button--ship:hover,
.button--bar:hover {
    background: #d7151d;
    text-decoration: none;
}

.button--ship:hover::after,
.button--bar:hover::after {
    transform: translateX(-50%) translateY(-4px);
    opacity: 1;
}

.contact_form input,
.contact_form textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    font-size: 16px;
}

.contact_form textarea {
    min-height: 180px;
}

.contact_form fieldset {
    border: 0;
    margin: 0 0 12px;
    padding: 0;
}

.contact_form__row {
    display: flex;
    justify-content: space-between;
    gap: 2%;
}

.contact_form .cols_2 {
    width: 49%;
}

.contact_form .cols_2 input {
    width: 100%;
}

.contact_form label {
    display: block;
}

.contact_form .fieldset_captcha {
    display: flex;
    gap: 10px;
    align-items: center;
}

.contact_form .fieldset_captcha img {
    height: 48px;
}

.contact_form__feedback {
    min-height: 24px;
    margin-top: -4px;
    color: #b00020;
    font-size: 14px;
}

.contact_form__feedback.success {
    color: #0b6e2f;
}

.contact_form__submit {
    width: 100%;
    border: 1px solid #444;
    background: #1f1f1f;
    color: #fff;
    padding: 12px;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.contact_form__submit:hover,
.contact_form__submit:focus-visible {
    background: #d7151d;
    border-color: #d7151d;
}

.contacts {
    text-align: center;
    margin-bottom: 80px;
}

.contacts_box {
    text-align: center;
    display: inline-block;
    width: 200px;
    margin: 0 10px;
    font-size: 12px;
    vertical-align: top;
}

.contacts_box + .contacts_box {
    margin-top: 20px;
}

.contacts_box_img {
    min-height: 50px;
    margin-bottom: 40px;
}

.contacts_box_img img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.contacts_box_name,
.contacts_box_position,
.contacts_box_email {
    padding-top: 5px;
}

.contacts_box_email {
    padding-top: 10px;
}

.centered {
    text-align: center;
}

.icon_windowside {
    position: fixed;
    top: 170px;
    left: calc(100% - 60px);
    background-color: #eee;
    border: 2px solid #ccc;
    border-right: 0;
    border-radius: 10px 0 0 10px;
    min-width: 74px;
    height: 64px;
    overflow: hidden;
    z-index: 999;
    transition: left 0.2s linear;
}

.icon_windowside + .icon_windowside {
    top: 254px;
}

.icon_windowside > a,
.icon_windowside > div {
    float: left;
    height: 60px;
    line-height: 60px;
    white-space: nowrap;
}

.icon_windowside:hover {
    left: calc(100% - 70px);
}

.icon_windowside.active {
    left: calc(100% - 290px);
    width: 290px;
}

.icon--phone,
.icon--mail {
    width: 60px;
    height: 60px;
    background: #eee no-repeat center;
    background-size: 75% auto;
}

.icon--phone {
    background-image: url('../images/icons/phone.png');
}

.icon--mail {
    background-image: url('../images/icons/mail.png');
}

.team_image_placeholder {
    width: 100%;
    min-height: 140px;
    background: #e8e8e8;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}


.contact-popup {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.contact-popup.active {
    display: flex;
}

.contact-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.contact-popup__dialog {
    position: relative;
    z-index: 1;
    width: min(920px, calc(100% - 30px));
    margin: 0 auto;
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    max-height: calc(100vh - 40px);
    overflow: auto;
}

.contact-popup__close {
    position: absolute;
    top: 8px;
    right: 10px;
    border: 0;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}
