/*
Theme Name: güch+ UG Werbeatelier
version: 1.0
Author Name: Mehedi Hasan Nipo
Author Url: https://mehedihasannipo.com
Developed By: Mehedi Hasan Nipo

Table Of Content
---
1. Common Css
2. Header Css
3. Banner Css
4. About Css
5. Service Css
6. Projects Css
7. Notice Css
8. Cta Css
9. Client Css
10. Contact Css
11. Graphics Css
12. Footer Css
13. Imprint Css
*/

/* 1. Common Css */
/* ******************************************** */

@font-face {
    font-family: 'HelveticaNeueRegular';
    src: url('assets/css//HelveticaNeue.ttc') format('truetype');
}
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
:root {
    --primary-color: #f24304;  
    --bg-color: #bababa;
    --text-color: #878787;
    --gray-color: #666666;
    --white-color: #fff;
    --black-color: #333333;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    font-family: 'HelveticaNeueRegular', sans-serif;
    font-size: 16px;
    line-height: 22px;
    color: var(--text-color);
    overflow: hidden;
    z-index: 1;
}
ul {
    list-style: none;
}
img {
    max-width: 100%;
    vertical-align: middle;
}
a {
    text-decoration: none;
    color: var(--primary-color);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

/* Container */
/* ******************************************** */

.container {
    width: 1400px;
    margin: 0 auto;
}
.container-fluid {
    width: 100%;
    margin: 0 auto;
    padding: 0 50px;
}

/* Padding */
/* ******************************************** */

.pt-10 {
    padding-top: 100px;
}
.pb-10 {
    padding-bottom: 100px;
}

/* Devider Css */
/* ******************************************** */

.devider {
    width: 100%;
    height: 3px;
    background-color: var(--bg-color);
}
/* 2. Header Css */
/* ******************************************** */

.header-area {
    background-color: var(--bg-color);
    opacity: 0.75;
    padding: 30px 0;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    overflow: hidden;
}
.header-area.sticky {
    position: fixed;
    padding: 20px 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
}
.header-container {
    width: 100%;
    opacity: 1;
}
.header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    opacity: 1;
}
.logo {
    -ms-flex-preferred-size: 15%;
        flex-basis: 15%;
    padding-left: 70px;
    opacity: 1;
}
.logo a img {
    max-width: 60px;
}
.header-info {
    opacity: 1;
    -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.header-title {
    -ms-flex-preferred-size: 85%;
        flex-basis: 85%;
}
.header-title h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 600;
    color: var(--primary-color);
}

.header-title h3 {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
}


.language {
    -ms-flex-preferred-size: 15%;
        flex-basis: 15%;
    text-align: right;
}
.language h4 {
    display: inline-block;
    background-color: var(--white-color);
    color: var(--black-color);
    padding: 10px 20px;
    cursor: pointer;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.language h4.active {
    background-color: var(--primary-color);
    color: var(--text-color);
}
.language .lang-de {
    border-radius: 20px 0 0 20px;
}
.language .lang-en {
    border-radius: 0 20px 20px 0;
    margin-left: -5px;
}
.menu {
    -ms-flex-preferred-size: 10%;
        flex-basis: 10%;
    padding-right: 60px;
	text-align: left;
}
.menu-icon img {
    max-width: 60px;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    cursor: pointer;
    float: right;
}
.menu-icon img.rotate {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}
.menu ul {
    position: fixed;
    top: 120px;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    background-color: var(--bg-color);
    text-align: left;
    -webkit-transition: top 0.5s ease;
    -o-transition: top 0.5s ease;
    transition: top 0.5s ease;
    z-index: 99;
    overflow: hidden;
}

.menu ul.show {
    top: 120px;
    min-height: calc(100% - 120px);
    height: auto;
    -webkit-transition: top 0.5s ease;
    -o-transition: top 0.5s ease;
    transition: top 0.5s ease;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
}
.menu ul.hide {
    top: 120px;
    -webkit-transition: top 0.7s ease;
    -o-transition: top 0.7s ease;
    transition: top 0.7s ease;
}
.menu ul li {
    border-bottom: 4px solid var(--primary-color);
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding-left: 50px;
}
.menu ul li a {
    text-transform: capitalize;
    font-size: calc(3.8rem + 2vw);
    line-height: 1.1;
    font-weight: 600;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: 100%;
    padding: 15px 15px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

/* 3. Banner Css */
/* ******************************************** */

.banner-area {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.banner-area::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/mv.jpg');
    background-size: cover;
    background-position: center top;
    z-index: -1;
}
.banner-area.banner-sticky {
    margin-top: 130px;
}
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
}
.banner-overlay img {
    display: block;
    width: 100%;
    height: 100%;
}
.banner-content {
    background-color: var(--bg-color);
    padding: 100px 0;
    text-align: center;
}
.banner-content h2 {
    font-size: 70px;
    color: var(--text-color)
}
.banner-content h2 span {
    color: var(--primary-color);
}


/* 4. About Css */
/* ******************************************** */

.about-area {
    color: var(--bg-color);
	background-color: var(--primary-color);
    padding: 40px 0;
}
.single-about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 40px 0;
}
.about-number {
    -ms-flex-preferred-size: 12%;
        flex-basis: 12%;
}
.about-number h4 {
    font-size: 130px;
    line-height: 100px;
}
.about-content {
    -ms-flex-preferred-size: 55%;
        flex-basis: 55%;
}
.about-content p {
    font-size: 60px;
    line-height: 60px;
}
.about-content p span {
    display: block;
}
.about-img {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
}
.about-img img {
    width: 100%;
}
.about-featured {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding: 40px 0;
}
.about-featured-content {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
}
.about-featured-content ul li {
    font-size: 120px;
    line-height: 120px;
    font-weight: 600;
}
.about-featured-img {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
}
.about-featured-img img {
    width: 100%;
}

/* 5. Service Css */
/* ******************************************** */

.services-area {
    background-color: var(--bg-color);
    padding: 100px 0 50px;
}
.services {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.single-service {
    -ms-flex-preferred-size: 32%;
        flex-basis: 32%;
    text-align: center;
    margin-bottom: 50px;
}
.single-service h4 {
    font-size: 40px;
    line-height: 40px;
    margin-top: 15px;
}
.single-service h4 span {
    display: block;
}
.single-service img {
    max-width: 200px;
}

/* 6. Projects Css */
/* ******************************************** */

.project-title {
    background-color: var(--bg-color);
    padding: 40px 0;
}
.project-title p {
    font-size: 100px;
    line-height: 100px;
}
.project-title p span {
    color: var(--primary-color);
}
.projects-area {
    background-color: var(--primary-color);
    padding: 80px 0;
}
.projects {
    padding: 40px 0;
}
.projects .slick-slide {
    margin: 0 60px;
}


.projects .slick-arrow {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 9;
    background-color: transparent;
    border: 0;
    display: none;
}
.projects .slick-arrow.slick-prev {
    left: 40px;
}
.projects .slick-arrow.slick-next {
    right: 40px;
}
.projects .slick-arrow i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background-color: var(--white-color);
    color: var(--primary-color);
    font-size: 14px;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
    display: none;
}


/* 7. Notice Css */
/* ******************************************** */

.notice-area {
    background-color: var(--bg-color);
    padding: 40px 0;
    overflow: hidden;
}

.notice-area h4 {
    font-size: 50px;
    line-height: 50px;
    font-weight: 500;
    color: var(--primary-color);
    margin-right: 40px;
    display: inline-block;
}

.marquee-container {
    white-space: nowrap;
    overflow: hidden;
}

.marquee-content {
    display: inline-block;
    -webkit-animation: marquee 30s linear infinite;
            animation: marquee 30s linear infinite;
    -webkit-animation-delay: 0s;
            animation-delay: 0s;
}

@-webkit-keyframes marquee {
    0% { -webkit-transform: translateX(0); transform: translateX(0); }
    100% { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
}

@keyframes marquee {
    0% { -webkit-transform: translateX(0); transform: translateX(0); }
    100% { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
}


/* 8. Cta Css */
/* ******************************************** */

.cta-title {
    color: var(--bg-color);
	background-color: var(--primary-color);
    padding: 100px 0;
}
.cta-title h4 {
    font-size: 100px;
    line-height: 110px;
    font-weight: 500;
}
.cta-area {
    position: relative;
}
.counter-area {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #ffffffba;
    padding: 400px 0;
}
.counters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.single-counter {
    -ms-flex-preferred-size: 32%;
        flex-basis: 32%;
    text-align: center;
}
.single-counter h4 {
    font-size: 140px;
    line-height: 140px;
    font-weight: 700;
    color: var(--primary-color);
}
.single-counter h2 {
    font-size: 50px;
    line-height: 50px;
    color: var(--black-color);
}

/* 9. Client Css */
/* ******************************************** */

.client-area {
    background-color: var(--primary-color);
    padding: 60px 0;
    position: relative;
    z-index: 2;
}
.client-area h2 {
    color: var(--bg-color);
	position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    font-size: 160px;
    line-height: 160px;
    z-index: -1;
    opacity: .70;
}
.clients {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}
.single-client {
    -ms-flex-preferred-size: 24%;
        flex-basis: 24%;
}
.single-client img {
    height: 300px;
}

/* 10 Contact CSS */
/* ******************************************** */


.contact-area {
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #ffffffba;
    padding: 60px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.contact-area h2 {
    color: #F24304;
	position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    font-size: 160px;
    line-height: 160px;
    z-index: -1;
    opacity: .80;
}

.contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}


/* 11. Graphics Css */
/* ******************************************** */
.graphics-area {
    background-color: var(--bg-color);
    padding: 800px 0;
    position: relative;
    z-index: 2;
}
.graphics-area ul li img {
    position: absolute;
    max-width: 50px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    cursor: pointer;
}
.graphics-area ul li img:hover {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
}
.graphics-area h2 {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
    text-align: center;
    font-size: 289px;
    line-height: 200px;
    z-index: -1;
    white-space: nowrap;
}
.graphics-area ul li:nth-child(1) img {
    top: 80px;
    left: 80px;
    max-width: 250px;
}
.graphics-area ul li:nth-child(2) img {
    top: 180px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    max-width: 350px;
}
.graphics-area ul li:nth-child(2) img:hover {
    -webkit-transform: translateX(-50%) scale(1.1);
        -ms-transform: translateX(-50%) scale(1.1);
            transform: translateX(-50%) scale(1.1);
}
.graphics-area ul li:nth-child(3) img {
    top: 250px;
    right: 300px;
    max-width: 120px;
}
.graphics-area ul li:nth-child(4) img {
    top: 600px;
    left: 45%;
    max-width: 90px;
}
.graphics-area ul li:nth-child(5) img {
    top: 650px;
    right: 80px;
    max-width: 180px;
}
.graphics-area ul li:nth-child(6) img {
    top: 770px;
    left: 25%;
    max-width: 180px;
}
.graphics-area ul li:nth-child(7) img {
    top: 950px;
    right: 30%;
    max-width: 180px;
}
.graphics-area ul li:nth-child(8) img {
    top: 1100px;
    right: 25%;
    max-width: 60px;
}
.graphics-area ul li:nth-child(8) img {
    top: 1200px;
    left: 80px;
    max-width: 250px;
}
.graphics-area ul li:nth-child(9) img {
    top: 1150px;
    left: 40%;
    max-width: 180px;
}
.graphics-area ul li:nth-child(10) img {
    top: 1320px;
    left: 50%;
    max-width: 150px;
}
.graphics-area ul li:nth-child(11) img {
    top: 1270px;
    right: 350px;
    max-width: 100px;
}
.graphics-area ul li:nth-child(12) img {
    top: 1400px;
    right: -70px;
    max-width: 150px;
}
.graphics-area ul li:nth-child(13) img {
    bottom: -15px;
    left: 70px;
    max-width: 100px;
}
.graphics-area ul li:nth-child(14) img {
    bottom: -50px;
    left: 50%;
    max-width: 100px;
}

/* 12. Footer Css */
/* ******************************************** */

.footer-area {
    background-color: var(--gray-color);
    padding: 80px 0;
}
.footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.footer-img {
    -ms-flex-preferred-size: 23%;
        flex-basis: 23%;
}
.footer-img img {
    max-width: 200px;
}
.footer-wrap {
    -ms-flex-preferred-size: 23%;
        flex-basis: 23%;
}
.footer-wrap h2 {
    color: var(--primary-color);
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 30px;
}
.footer-wrap ul li {
    display: block;
    margin-bottom: 7px;
    padding-bottom: 7px;
    font-size: 24px;
}
.footer-wrap ul li a {
    color: var(--text-color);
}
.footer-wrap p {
    font-size: 24px;
    line-height: 24px;
}

.footer-wrap a:hover {
    color: #F24304;
}

/* 13. Imprint Css */
/* ******************************************** */

.imprint-area {
    background-color: var(--gray-color);
    padding: 40px 0;
    color:#bababa;
}
.imprint-area p {
    font-size: 60px;
    line-height: 60px;
}