/* Farben und Hintergründe */
:root {
    --primary-color: #4A494A;
    --secondary-color: #f0f0f0;
    --accesnt-color: #CFCDCD;
    --border-color: #AC8BC0;
    --subline-color: #5C368C;
    --white-color: #fff;
    --vorteile-color: #efefef;
    --section-bg-color: #fbf7fe;
    --footer-bg-color: #3a094d;
}


@font-face {
    font-family: 'Raleway';
    src: url('https://primetimeconsulting.com/fonts/Raleway-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway';
    src: url('https://primetimeconsulting.com/fonts/Raleway-ExtraLightItalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
}


@font-face {
    font-family: 'Raleway';
    src: url('https://primetimeconsulting.com/fonts/Raleway-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway';
    src: url('https://primetimeconsulting.com/fonts/Raleway-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Raleway';
    src: url('https://primetimeconsulting.com/fonts/Raleway-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway';
    src: url('https://primetimeconsulting.com/fonts/Raleway-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Raleway';
    src: url('https://primetimeconsulting.com/fonts/Raleway-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway';
    src: url('https://primetimeconsulting.com/fonts/Raleway-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Raleway';
    src: url('https://primetimeconsulting.com/fonts/Raleway-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway';
    src: url('https://primetimeconsulting.com/fonts/Raleway-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}


@font-face {
    font-family: 'Raleway';
    src: url('https://primetimeconsulting.com/fonts/Raleway-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}


@font-face {
    font-family: 'Raleway';
    src: url('https://primetimeconsulting.com/fonts/Raleway-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Raleway';
    src: url('https://primetimeconsulting.com/fonts/Raleway-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway';
    src: url('https://primetimeconsulting.com/fonts/Raleway-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
}

@font-face {
    font-family: 'Raleway';
    src: url('https://primetimeconsulting.com/fonts/Raleway-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway';
    src: url('https://primetimeconsulting.com/fonts/Raleway-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
}


h1 {
    color: var(--primary-color);
    font-family: 'Raleway';
    font-size: 1.7rem;
}

h2 {
    color: var(--primary-color);
    font-family: 'Raleway';
    font-size: 1.5rem;
    line-height: 1.2rem;
    font-weight: 700;

}

h3 {
    color: var(--primary-color);
    font-family: 'Raleway';
}

h4 {
    color: var(--subline-color);
    font-family: 'Raleway';
}

h5 {
    color: var(--primary-color);
    font-family: 'Raleway';
}

h6 {
    color: var(--primary-color);
    font-family: 'Raleway';
}

p {
    color: var(--primary-color);
    font-family: 'Raleway';
}

li {
        color: var(--primary-color);
    font-family: 'Raleway';
}

a {
    text-decoration: none;
    color: var(--primary-color);
    font-family: 'Raleway';
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

ul{
    padding-left:18px;
}

button,
.buttons a {
    outline: none;
    appearance: none;
    background-color: var(--subline-color);
    border: none;
    border-radius: 50px;
    color: var(--white-color);
    font-family: 'Raleway';
    cursor: pointer;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

.buttons {
    display: flex;
    justify-content: center;
}

input[type=button] {
    outline: none;
    appearance: none;
    background-color: var(--subline-color);
    border: none;
    border-radius: 50px;
    color: var(--white-color);
    font-family: 'Raleway';
    cursor: pointer;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

button:hover,
input[type=button]:hover {
    background-color: var(--border-color);
}

html {}

body {
    overflow-x: hidden;
    font-family: 'Raleway';
}




header {

    background-color: var(--white-color);
    width: 100%;
    position: relative;
}

header.sticky .container:not(.spacer) {

    position: fixed;
}

header.sticky .container {
    transition: 0.3s;

    top: 0;
    left: 0%;
    z-index: 100;
    width: 100%;
}


header.sticky .logo img {
    transition: 0.3s;
    width: 100px;
}


header .container {
    background-color: var(--white-color);
    display: flex;
    flex-direction: row;
    justify-content: center;
}

header .container-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 5px 20px;
    width: 100%;

}


header .container.spacer {
    visibility: hidden;
}


.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 150px;
}


nav {
    display: flex;
    align-items: center;
}

#mobile-menu-togggle {
    cursor: pointer;
}

#mobile-menu-togggle i {
    color: var(--subline-color);
}

.menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 10px 20px;
    background-color: var(--white-color);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 100;
}

.menu li {
    padding: 10px 0;
list-style: none;

}

.menu li a {

    color: var(--subline-color);
    font-size: 20px;
}

.header-phone {
    display: none;
}



section .container {

    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px 20px;

}

.container.buttons {
    align-items: center;
}



.hero {
    position: relative;
    gap: 50px;
    padding: 40px 20px;
    background-color: var(--secondary-color);

}

.hero .video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero .video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero .hero-text h1 {
    font-size: 1.4em;
}

.hero .hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
    background-color: #ffffff99;
    border-radius: 15px;
    padding: 20px;
}

.nearshoring {
    padding: 25px 0;
}

.nearshoring .container {
    gap: 40px;
    padding: 25px 20px;
}

.nearshoring .container:last-child {
    margin-top: 20px;
    justify-content: center;
}

.nearshoring .left-column {
    display: flex;
    flex-direction: column;
    gap: 40px;

}

.nearshoring .right-column {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
}

.nearshoring article {

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nearshoring img {
    width: 100%;
    border-radius: 15px;
}

.vorteile {
    background-color: var(--section-bg-color);
}

.vorteile .container>div {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


.vorteile h2 {
    margin-bottom: 20px;
}

.vorteile article {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    gap: 10px;
}

.vorteile article i {
    align-self: center;
    font-size: 2rem;
    color: var(--subline-color);
}

.vorteile article:nth-child(even) {


    background-color: var(--vorteile-color);



}

.vorteile article h3 {
    color: var(--subline-color);
    text-align: center;
}

.vorteile article p {

    color: var(--primary-color);

}

.vorteile i.fa-solid:hover {

    color: var(--border-color);
}

.leistungen {
    background-image: url('https://primetimeconsulting.com/images/bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

.leistungen .container:first-child {
    padding-bottom: 30px;
}

.leistungen .container:nth-child(2) {
    padding-top: 10px;
}

.leistungen .container:last-child {
    padding: 0 10px 40px 10px;
}

.leistungen .container:last-child button {
    align-self: center;

}


.leistungen .container:first-child h2 {
    color: var(--white-color);
    font-family: 'Raleway';
    font-size: 3rem;
    text-align: center;
    line-height: 1em;
}


.leistungen .container>div {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.leistungen article {

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;

    padding: 40px;
    border-radius: 15px;
}

.leistungen article:not(.rahmen) {
    border: none;
}

.leistungen article:not(.rahmen) *,
.leistungen h1 {
    color: white;
}


.leistungen article.rahmen {
    border: 0px solid var(--border-color);
    background-color: #f9f2fd;
    padding: 40px;
}

.workflow {}


.workflow .timeline {

    padding-left: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

.workflow .timeline #timeline-bar {

    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    width: 5px;
    background-color: var(--primary-color);

}

.workflow .timeline #timeline-bar-progress {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--border-color);
    transition: height 0.5s;
}

.workflow .timeline-item {
    position: relative;
    z-index: 1;
}

.workflow .timeline-item h3 {
    color: var(--subline-color);
}


.workflow .timeline-item:before,
.workflow .timeline-item.active:after {
    position: absolute;
    left: -48px;
    top: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    font-size: 20px;
    color: var(--white-color);
}

.workflow .timeline-item.active:after {
    background-color: var(--border-color);
}

.workflow .timeline-item:nth-child(1):before,
.workflow .timeline-item.active:nth-child(1):after {
    content: '1';
}

.workflow .timeline-item:nth-child(2):before,
.workflow .timeline-item.active:nth-child(2):after {
    content: '2';
}

.workflow .timeline-item:nth-child(3):before,
.workflow .timeline-item.active:nth-child(3):after {
    content: '3';
}

.workflow .timeline-item:nth-child(4):before,
.workflow .timeline-item.active:nth-child(4):after {
    content: '4';
}

.workflow .timeline-item:nth-child(5):before,
.workflow .timeline-item.active:nth-child(5):after {
    content: '5';
}

.kontakt {
    background-color: var(--secondary-color);

}

.kontakt .container>div {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kontakt .container:first-child {
    padding: 50px 20px 0 20px;
    flex-direction: column;
    align-items: center;
}

.kontakt .container:nth-child(2) {
    padding-top: 50px;
    padding-bottom: 50px;

}

.kontakt form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kontakt li {
    padding: 10px 0;
    display: flex;
    gap: 10px;
}

.kontakt input {
    padding: 15px;
    border: 1px solid var(--border-color);
    appearance: none;
    outline: none;
    border-radius: 10px;
}

.kontakt .fas {
    color: var(--subline-color);
}

.recaptcha-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.recaptcha-container img {
    border-radius: 10px;

}


footer {

    background-color: var(--footer-bg-color);

}

footer * {
    color: var(--white-color);
    font-weight: 400;
    font-family: 'Raleway';
}

footer .container {
    padding: 50px 20px;
    display: flex;

    flex-direction: column;
    gap: 30px;
}

footer .container>div {
    display: flex;

    flex-direction: column;
    gap: 30px;
}

footer ul {
    display: flex;

    flex-direction: column;
    gap: 15px;
}

footer ul li {

    display: flex;
    gap: 10px;
}

.languages{
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.anniversary-logo {
    max-width: 50%;
    align-self: center;
}
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
}

.footer-bottom .partner-badge {
    width: 100%;
    max-width: 280px;
    height: auto;
}
footer .container .footer-legal-group {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

footer .container .footer-legal-group > div {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.privacy li{
        color: var(--primary-color);
    list-style:initial;
}

.scr-span {
    color: var(--subline-color);
    font-weight: 800;
}

@media(min-width:768px) {
        .footer-bottom .partner-badge {
        max-width: none;
    }
    section,
    footer {
        display: flex;
        justify-content: center;
    }

footer {
    flex-direction: column;
    align-items: center;
}
    section {
        flex-direction: column;
        align-items: center;
    }

    header .container-inner,
    section .container,
    footer .container {

        padding: 55px 20px;
        flex-direction: row;
        width: 620px;
    }

    header .container-inner {
        padding: 0 20px;
    }



    section .container>.left-column,
    section .container>.right-column {
        width: 50%;
    }

    .hero {
        padding: 60px 20px;

    }

    .hero .container {
        justify-content: right;
    }

    .hero .hero-text h1 {
        font-size: 1.7em;
    }

    .hero .hero-text {

        width: 60%;

    }

    .nearshoring .container:last-child {
        margin-top: 40px;
        justify-content: center;
    }

    .nearshoring {
        padding: 40px 0;
    }

    .nearshoring .container {
        gap: 80px;

    }

    .nearshoring .right-column,
    .nearshoring .left-column {
        display: grid;
        grid-template-rows: 1fr 1fr;
        gap: 20px;
        align-items: center;
    }

    .vorteile .container {
        flex-direction: column;
    }

    .vorteile .container>div {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .vorteile article:nth-child(odd),
    .vorteile article:nth-child(even) {
        width: calc(50% - 10px);
        background-color: var(--white-color);
    }

    .vorteile article:nth-child(2) {
        background-color: var(--vorteile-color);
    }

    .vorteile article:nth-child(3) {
        background-color: var(--vorteile-color);
    }

    .vorteile article:nth-child(6) {
        background-color: var(--vorteile-color);
    }



    .leistungen .container {
        flex-direction: column;
    }


    .leistungen .container>div {
        width: 100%;
    }

    .leistungen .container:last-child {
        padding: 0 10px 40px 10px;
    }

    .kontakt .container:first-child {

        padding-top: 105px;
    }

    .kontakt .container:nth-child(2) {

        padding-bottom: 105px;
    }


    .anniversary-logo {
        align-self: flex-start;
    } 

    .recaptcha-container {
        flex-wrap: nowrap;
    }

      footer .container {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 20px;
    }

    footer .container > div:first-child {
        flex: 1.6;
    }

    footer .container > div:nth-child(2) {
        flex: 1;
    }

    footer .container > .footer-legal-group {
        flex: 2;
    }

    footer .container .footer-legal-group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 20px;
        row-gap: 20px;
        align-content: start;
    }

    footer .container .footer-legal-group > .footer-bottom {
        grid-column: 1 / 3;
    }
}







@media(min-width:1024px) {

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.98rem;
        line-height: 1.98rem;
    }


    header .container-inner,
    section .container,
    footer .container {

        padding: 75px 20px;
        flex-direction: row;
        width: 960px;
    }

    .nearshoring {
        padding: 60px 0;
    }

    header .container-inner {
        padding: 0 20px;
    }



    .logo img {
        width: 240px;
    }

    header.sticky .logo img {
        transition: 0.3s;
        width: 180px;
    }

    .menu {
        display: flex;
        flex-direction: row;
        gap: 25px;
        padding: 10px 20px;
        background-color: transparent;
        position: static;
        width: 100%;
    }

    .menu li a {

        color: var(--primary-color);

    }

    .menu li a:hover,
    .menu li a.active {
        color: var(--subline-color);
    }

    #mobile-menu-togggle {
        display: none;
    }

    .leistungen .container:last-child {
        padding: 0 10px 40px 10px;
    }


}

@media(min-width:1200px) {

    header .container-inner,
    section .container,
    footer .container {

        padding: 105px 20px;
        flex-direction: row;
        width: 1140px;
    }

    .nearshoring {
        padding: 80px 0;
    }

    header .container-inner {
        padding: 0 20px;
    }


    header.sticky .container-inner {}


    .header-phone {
        display: flex;
        align-items: center;
        justify-content: center;

    }

    .header-phone a {
        font-style: italic;
        color: var(--subline-color);
    }

    .header-phone a svg {
        width: 18px;
    }

    .header-phone a path {
        fill: var(--subline-color);
    }

    .vorteile .container {
        flex-direction: column;
    }



    .vorteile article:nth-child(odd),
    .vorteile article:nth-child(even) {
        width: calc(33% - 10px);
        background-color: var(--white-color);
    }

    .vorteile article:nth-child(2) {
        background-color: var(--vorteile-color);
    }

    .vorteile article:nth-child(4) {
        background-color: var(--vorteile-color);
    }

    .vorteile article:nth-child(6) {
        background-color: var(--vorteile-color);
    }





    .leistungen .container.grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
    }

    .leistungen .container:last-child {
        padding: 0 10px 105px 10px;
    }

}