@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
.max-width {
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}
html {
    scroll-behavior: smooth;
}





/* navbar styling */

.navbar {
    position:fixed;
    width: 100%;
    z-index: 999;
    padding: 25px;
    font-family: "Ubuntu", sans-serif;
    transition: all 0.4s ease;
}
.navbar.sticky {
    padding: 20px 0;
    background: rgb(251, 93, 34);
}
.navbar .max-width {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar .logo a {
    color: white;
    font-size: 35px;
    font-weight: 600;
}
.navbar .logo a span {
    color: rgb(251, 93, 34);
}
.navbar.sticky .logo a span {
    color: white;
    transition: all 0.4s ease;
}
.navbar .menu li {
    list-style: none;
    display: inline-block;
}
.navbar .menu li a {
    display: block;
    color: white;
    font-size: 23px;
    font-weight: 500;
    margin-left: 25px;
    transition: 0.4s ease;
}

.navbar .menu li a:hover {
    color: rgb(251, 93, 34);
}
.navbar.sticky .menu li a:hover {
    color: white;
}





/* menu btn styling */

.menu-btn {
    color: white;
    font-size: 35px;
    cursor: pointer;
    display: none;
}





/* home section styling */

.home {
    display: flex;
    background: url("Images/logoo.png") no-repeat center;
    background-size: contain;
    background-color: rgb(7, 7, 7);
    background-position: 50% 45px;
    color: white;
    height: 100vh;
    min-height: 500px;
    font-family: "Ubuntu", sans-serif;
}
.home .home-content .text-1 {
    position: absolute;
    font-size: 40px;
    font-weight: 500;
    bottom: 100px;
    top: 60%;
    left: 40%;
}
.home .home-content .text-2 {
    position: absolute;
    color: rgb(251, 93, 34);
    font-weight: 400;
    font-size: 30px;
    top: 65%;
    left: 45%;
}





/* immer gleicher content styling*/

section {
    padding: 100px 0;
}
.überuns, .services, .karriere, .teams, .contact, .footer, .impressum, .datenschutz {
    font-family: "Poppins", sans-serif;
}
.überuns .überuns-content,
.services .service-content,
.karriere .karriere-content,
.footer .footer-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
section .title {
    position: relative;
    text-align: center;
    font-size: 60px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: "Ubuntu", sans-serif;
}
section .title::before {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 245px;
    height: 3px;
    background: #111;
    transform: translateX(-50%);
}
section .title::after {  
    position: absolute;
    bottom: -10px;
    left: 50%;
    font-size: 22px;
    color: rgb(251, 93, 34);
    padding: 5px;
    background: #fff;
    transform: translateX(-50%);
}





/* überuns section styling*/

.überuns .title::after {
    content: "wer wir sind";
}

.überuns .überuns-content .left {
    width: 40%;
}
.überuns .überuns-content .left img {
    height: 400px;
    width: 400px;
    object-fit: cover;
    border-radius: 10px;
}
.überuns .überuns-content .right {
    width: 55%;
}
.überuns .überuns-content .right .text {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}
.überuns .überuns-content .right p {
    font-size: 20px;
    hyphens: auto;
    text-align: justify;
}
.überuns .überuns-content .right a {
    display: inline-block;
    background: rgb(251, 93, 34);
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 50px;
    border: 2px solid rgb(251, 93, 34);
    transition: all 0.3s ease;
}
.überuns .überuns-content .right a:hover {
    color: rgb(251, 93, 34);
    background: none;
}





/* service section styling*/

.services {
    color: white;
    background: rgb(7, 7, 7);
}
.services .title::before {
    background: white;
}
.services .title::after {
    background: rgb(7, 7, 7);
    content: "wofür wir stehen";
}
.services .service-content .card {
    width: calc(33% - 20px);
    background: rgb(17, 17, 17);
    text-align: center;
    border-radius: 15px;
    padding: 50px 25px;
    cursor: pointer;
    transition: all 0.4s ease;
}
.services .service-content .card:hover {
    background: rgb(251, 93, 34);
}
.services .service-content .box {
    transition: all 0.4s ease;
}
.services .service-content .card:hover .box {
    transform: scale(1.05);
}
.services .service-content .card i {
    font-size: 45px;
    color: rgb(251, 93, 34);
    transition: color 0.4s ease;
}
.services .service-content .card:hover i {
    color: white;
}
.services .service-content .card .text {
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px 0;
}





/* Karriere section styling*/

.karriere .title::after {
    content: "Ihre Chance";
}
.karriere .karriere-content .column {
    width: calc(50% - 30px);
}
.karriere .karriere-content .left {
    margin-bottom: 30px;
}
.karriere .karriere-content .left .text {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}
.karriere .karriere-content .left p {
    font-size: 20px;
}
.karriere .karriere-content .left a {
    display: inline-block;
    margin-top: 20px;
    background: rgb(251, 93, 34);
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    border-radius: 50px;
    border: 2px solid rgb(251, 93, 34);
    transition: all 0.3s ease;
}
.karriere .karriere-content .left a:hover {
    color: rgb(251, 93, 34);
    background: none;
}
.karriere .karriere-content .right .bars {
    margin-bottom: 40px;
    text-align: center;
    background: rgb(17, 17, 17);
    color: white;
    padding: 5px 0px;
    border: 2px solid black;
    border-radius: 15px;
}
.karriere .karriere-content .right .info i {
    font-size: 20px;
    padding: 0 20;
    color: rgb(251, 93, 34);
}
.karriere .karriere-content .right .text {
    font-size: 20px;
    color: rgb(251, 93, 34);
}





/* teams section styling*/

.teams .title::before {
    background: white;
}
.teams .title::after {
    background: rgb(7, 7, 7);
    content: "wer wir sind";
}
.teams {
    color: white;
    background: rgb(7, 7, 7);
}
.teams .carousel .card {
    background: rgb(17, 17, 17);
    border-radius: 15px;
    padding: 25px 35px;
    transition: all 0.4s ease;
}
.teams .carousel .card:hover {
    background: rgb(251, 93, 34);
} 
.teams .carousel .card .box,
.teams .carousel .card .box p {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    transition: all 0.4s ease;
}
.teams .carousel .card:hover .box {
    transform: scale(1.05);
}
.teams .carousel .card .text {
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px 0;
}
.teams .carousel .card img{
    height: 150px;
    width: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid rgb(251, 93, 34);
    transition: all 0.4s ease;
} 
.teams .carousel .card:hover img {
    border-color: white;
}
.owl-dots {
    text-align: center;
    margin-top: 20px;
}
.owl-dot {
    height: 18px;
    width: 18px;
    margin: 0 5px;
    outline: none!important;
    border-radius: 50%;
    border: 2px solid rgb(251, 93, 34)!important;
    transition: all 0.4s ease;
}
.owl-dot.active {
    width: 45px;
    border-radius: 50px;
}
.owl-dot.active,
.owl-dot:hover {
    background: rgb(251, 93, 34)!important;
}





/* kontakt section styling*/

.contact .title::after {
    content: "schreib uns";
}
.contact .contact-content .column {
    width: calc(50% - 100px);
}
.contact .contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.contact .contact-content .text {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 15px;
}
.contact .contact-content .left p{
    text-align: justify;
    font-size: 20;
}
.contact .contact-content .left .icons {
    margin: 10px 0;
}
.contact .contact-content .row {
    display: flex;
    height: 85px;
    align-items: center;
}
.contact .contact-content .row .info {
    margin-left: 30px;
}
.contact .contact-content .row i {
    font-size: 22px;
    color: rgb(251, 93, 34);
}
.contact .contact-content .info .head {
    font-size: 20px;
    font-weight: 500;
}
.contact .contact-content .info .sub-title {
    font-size: 18px;
}





/* footer section styling*/

.footer {
    color: white;
    background: rgb(7, 7, 7);
    padding: 100px 30px;
}
.footer .footer-content .column {
    width: calc(50% - 30px);
}
.footer .footer-content .left {
    text-align: center;
    justify-content: center;
}
.footer .footer-content .socialicons p {
    padding: 0px 10px;
    color: gray;
    font-size: 20px;
}
.footer .footer-content .left i {
    font-size: 40px;
    text-decoration: none;
    color: rgb(251, 93, 34);
    padding: 10px 10px;
}
.footer .footer-content .right {
    text-align: center;
}
.footer .footer-content .right a {
    text-decoration: none;
    color: gray;
}
.footer .footer-content .right p {
    padding: 10px 10px;
    font-size: 20;
} 





/* impressum section styling*/

.impressum {
    background: rgb(17, 17, 17);
    color: white;
}
.impressum .title {
    color: white;
}
.impressum .title::before {
    background: white;
}
.impressum .title::after {
    background: rgb(17, 17, 17);
    content: "Lies mich";
    font-size: 17px;
}
.impressum .impressum-content p {
    font-size: 20px;
    hyphens: auto;
    text-align: justify;
}
.impressum .impressum-content a {
    text-decoration: underline;
    color: white;
}
.impressum strong {
    font-size: 25px;
    color: rgb(251, 93, 34);
}





/* datenschutzerklärung section styling*/

.datenschutz {
    background: rgb(17, 17, 17);
    color: white;
}
.datenschutz .title {
    color: white;
}
.datenschutz .title::before {
    background: white;
}
.datenschutz .title::after {
    background: rgb(17, 17, 17);
    content: "Lies mich";
    font-size: 17px;
}
.datenschutz .datenschutz-content p {
    font-size: 20px;
    hyphens: auto;
    text-align: justify;
}
.datenschutz .datenschutz-content a {
    text-decoration: underline;
    color: white;
}
.datenschutz .datenschutz-content h2 {
    text-align: center;
    font-size: 33;
}
.datenschutz strong {
    font-size: 25px;
    color: rgb(251, 93, 34);
}





/* responsive media query start */

@media (max-width: 1104px) {
    .überuns .überuns-content .left img{
        height: 320px;
        width: 320px;
    }
}

@media (max-width: 991px) {
    .max-width{
        padding: 0 50px;
    }
}

@media (max-width: 1100px) {
    .max-width {
        padding: 0 50px;
    }
    .menu-btn {
        display: block;
        z-index: 999;
    }
    .menu-btn i.active:before {
        content: "\f00d";
    }
    .navbar .menu {
        position: fixed;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: 0;
        background: black;
        text-align: center;
        padding-top: 120px;
        transition: all 0.4s ease;
    }
    .navbar .menu.active {
        left: 0;    
    }
    .navbar .menu li {
        display: block;
    }
    .navbar .menu li a {
        display: inline-block;
        margin: 20 0;
        font-size: 25px;
    }
    .navbar .menu li a:hover {
        color: rgb(251, 93, 34);
    }
    .max-width {
        max-width: 800px;
    }
    .home {
            background-position: center;
    }
    section .title::after {
        font-size: 16px;
    }
    .überuns .überuns-content .column {
        width: 100%;
    }
    .überuns .überuns-content .left {
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }
    .überuns .überuns-content .right {
        flex: 100%;
    }
    .services .service-content .card {
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }
    .karriere .karriere-content .column,
    .contact .contact-content .column {
        width: 100%;
        margin-bottom: 35px;
    }
    .karriere .karriere-content .right .bars {
    margin-bottom: 15px;
    }
}

@media (max-width: 690px) {
    .services .service-content .card {
        width: 100%;
    }
    .footer .footer-content .right  a{
        font-size: 10px;
    }
    .footer .footer-content .socialicons p {
        font-size: 10px;
    }
    .footer .footer-content .left  i{
        font-size: 20px;
        padding-left: 5px;
    }
    .datenschutz .title {
        font-size: 40;
    }
    .datenschutz .datenschutz-content h2 {
        font-size: 25;
    }
    .datenschutz .datenschutz-content strong {
        font-size: 20;
    }
    .datenschutz .datenschutz-content p {
        font-size: 17;
    }
}
@media (max-width: 530px) {
    section .title {
        font-size: 50px;
    }
    .karriere .karriere-content .right .text {
        font-size: 15px;
    }
    .footer .footer-content .right p {
        padding: 10;
    }
    .footer .footer-content .right a {
        font-size: 12;
    }
    .datenschutz .title {
        font-size: 25;
    }
    .datenschutz .datenschutz-content h2 {
        font-size: 20;
    }
    .datenschutz .datenschutz-content strong {
        font-size: 17;
    }
    .datenschutz .datenschutz-content p {
        font-size: 15;
    }
    .impressum .impressum-content strong {
        font-size: 17;
    }
    .impressum .impressum-content p {
        font-size: 15;
    }
}
@media (max-height: 823px), (max-width: 1557px) {
    .home .home-content .text-1,
    .home .home-content .text-2 {
        display: none;
    }
}


