
html, body {
    background-color: #FFF;
}

body {
    font-family: brother-1816, sans-serif;
    font-weight: 300;
    font-style: normal;
    color: #000;
    font-size: 16px;
    line-height: 24px;
}
p {
    margin-bottom: 30px;
}
p a {
    color: inherit;
    text-decoration: underline;
}


/* Headings */

h1, h2, h3, h4, h5, h6 {
    font-family: brother-1816,sans-serif;
    font-weight: 700;
    font-style: normal;
}
h1 {
    font-size: 38px;
    line-height: 38px;
}
h2 {
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 30px;
}
h3 {
    font-size: 28px;
    line-height: 28px;
}
h4 {
    font-size: 24px;
    line-height: 24px;
}
.prefix {
    font-size: 20px;
    margin-bottom: 10px;
    color: #DEBD60;
    text-transform: uppercase;
}

/* Buttons */

.btn {
    border-radius: 5px;
    padding: 12px 20px 12px 20px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
}
.btn::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Pro';
    color: #000;
    margin-left: 20px;
    font-size: .8em;
}
.btn-primary {
    background-color: #DEBD60;
    border-color: #DEBD60;
    color: #000;
}
.btn-primary:hover, .btn-primary:active, .btn-primary.active, .btn-primary:focus {
    background-color: #233E33;
    border-color: #233E33;
    color: #FFF;
}
.btn-outline-primary {
    background: transparent;
    border-color: #DEBD60;
    color: #000;
}
.btn-outline-primary:hover, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary:focus {
    background: transparent;
    border-color: #233E33;
    color: #233E33;
}
.button-group {
    margin: 1.5em 0;
}
.button-group a {
    margin: 10px 10px 10px 0px;
}

.btn:focus, button:focus {
    box-shadow: none;
    outline: none;
}


/* Layout */

main {
    overflow: hidden;
    background-color: #FFF;
}
section {
    padding: 50px 0px;
}

/* Header */

.header {
    position: fixed;
    display: flex;
    align-items: center;
    padding: 20px 0px;
    width: 100vw;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
    transition: ease .5s;
}
.header.scrolling {
    background: #FFF;
    padding: 10px 0px;
}
.header.scrolling .logo a img {
    max-height: 60px;
}
.header .social ul li a {
    width: 50px;
    height: 50px;
    border: 2px solid #DEBD60;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
}
.header .social ul li {
    margin-right: 10px;
}
.header .logo a img {
    max-height: 80px;
    transition: ease .5s;
}
.header .navigation {
    position: relative;
}
.header .navigation .hamburger {
    width: 60px;
    height: 50px;
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background: transparent;
}
.header .navigation .hamburger::before {
    content: 'Menu';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    font-weight: 700;
    font-size: 14px;  
}
.header .navigation .hamburger span {
    height: 2px;
    left: 10px;
    right: 10px;
    border-radius: 20px;
    background: #DEBD60;
    display: block;
    position: absolute;
    transition: all 250ms ease-in-out
}
.header .navigation .hamburger span:first-child {
    top: 10px
}
.header .navigation .hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%)
}
.header .navigation .hamburger span:last-child {
    bottom: 10px;
    right: 20px;
}
.header .navigation .hamburger.open span:nth-child(2) {
    width: 0px;
    opacity: 0
}
.header .navigation .hamburger.open span:first-child {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    right: auto;
    left: auto;
    width: 40px;
}
.header .navigation .hamburger.open span:last-child {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 40px;
    right: auto;
    left: auto;
}
.header .navigation .hamburger.open {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Menu overlay */

.menu-overlay {
    display: none;
    visibility: hidden;
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background: #FFF;
    opacity: 0;
    transition: opacity .60s,visibility .60s,height .60s;
    z-index: 99;
    overflow-x: hidden;
    overflow-y: scroll;
}
.menu-overlay.open {
    display: block;
    opacity: 1;
    visibility: visible;
    height: 100%;
}
.menu-overlay .menu-overlay-navigation {
    padding-top: 160px;
}
.menu-overlay nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.menu-overlay nav ul li {
    display: block;
    width: 100%;
    margin-bottom: 20px;
}
.menu-overlay nav ul li a {
   color: #000;
   font-weight: 700;
   font-size: 1.2em;
   padding: 10px 0px 10px 10px;
   display: block;
   text-decoration: none;
   display: flex;
   justify-content: space-between;
}
.menu-overlay nav ul li a::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Pro';
    color: #DEBD60;
    margin-left: 1em;
    margin-right: 20px;
    font-size: .8em;
}


/* Intro block */

.intro-block {
    min-height: 100vh;
    max-height: 1080px;
    display: flex;
    align-items: center;
}
.intro-block .content {
    padding: 200px 0px 50px 0px;
}
.intro-block .image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    max-width: 400px;
    margin: 50px auto;
}
.intro-block .image img {
    position: relative;
    z-index: 2;
    border-radius: 5px;
    width: 100%;
}
.intro-block .image .shape {
    position: absolute;
    top: 20px;
    bottom: -10px;
    left: -20px;
    width: 100%;
    background-color: #DEBD60;
    transform: rotate(-4deg);
    z-index: 1;
    border-radius: 5px;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}


/* About block */

.about-block .image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
    max-width: 400px;
    margin: 50px auto;
}
.about-block .image img {
    position: relative;
    z-index: 2;
    border-radius: 5px;
    width: 100%;
}
.about-block .image .shape {
    position: absolute;
    top: -20px;
    bottom: -10px;
    left: -20px;
    width: 100%;
    background-color: #DEBD60;
    transform: rotate(-4deg);
    z-index: 1;
    border-radius: 5px;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.about-block .content {
    margin: 50px 0px;
}

/* Partner logos */

.partner-logos .partner-logos-heading {
    text-align: center;
    margin-bottom: 50px;
}
.partner-logos .partner-logos-items {
    margin-bottom: 100px;
}
.partner-logos .partner-logos-items .partner-logos-item img {
    width: 100%;
}
.partner-logos .slick-arrow {
    position: absolute;
    bottom: -100px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: #DEBD60;
    border: 1px solid #DEBD60;
    border-radius: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.partner-logos .slick-arrow i {
    color: #000;
}
.partner-logos .slick-arrow.slick-next {
    transform: translateX(35px);
}
.partner-logos .slick-arrow.slick-prev {
    transform: translateX(-35px);
}

/* Cases overview */

.cases-overview .cases-overview-heading {
    text-align: center;
    margin-bottom: 50px;
}
.cases-overview .cases-overview-items {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 40px;
    grid-area: 40px;
}
.cases-overview .cases-overview-items .cases-overview-item a {
    color: inherit;
    text-decoration: none;
}
.cases-overview .cases-overview-items .cases-overview-item a .image {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 5px 5px 0px 0px ;
}
.cases-overview .cases-overview-items .cases-overview-item a .image .case-logo {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 2;
}
.cases-overview .cases-overview-items .cases-overview-item a .image .case-logo img {
    max-height: 100px;
}
.cases-overview .cases-overview-items .cases-overview-item a .image img {
    width: 100%;
}
.cases-overview .cases-overview-items .cases-overview-item a .content {
    box-shadow: 0px 0px 30px rgba(0,0,0,.1);
    padding: 30px;
    background-color: #FFF;
    border-radius: 0px 0px 5px 5px;
}
.cases-overview .cases-overview-items .cases-overview-item a .content .prefix {
    font-size: 16px;
}
.cases-overview .cases-overview-items .cases-overview-item a .content .button-group {
    margin-bottom: 0px;
}


/* Work block */

.work-block .work-block-heading {
    text-align: center;
    margin-bottom: 80px;
}
.work-block .work-block-items {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 50px;
    gap: 50px;
}
.work-block .work-block-items .work-block-item {
    position: relative;
}
.work-block .work-block-items .work-block-item::after {
    content: '';
    position: absolute;
    top: -20px;
    bottom: 20px;
    right: -15px;
    width: 100%;
    background-color: #233E33;
    transform: rotate(4deg);
    z-index: 1;
    border-radius: 5px;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.work-block .work-block-items .work-block-item .content {
    background-color: #FFF;
    box-shadow: 0px 0px 30px rgba(0,0,0,.1);
    border-radius: 5px;
    padding: 40px;
    position: relative;
    z-index: 3;
}
.work-block .work-block-items .work-block-item .content h4 {
    margin-bottom: 20px;
}


/* Cases Detail Main */ 

.cases-detail-main {
    padding-top: 200px;
}
.cases-detail-main h1 {
    margin-bottom: 50px;
}
.cases-detail-main .cases-detail-main-details ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}
.cases-detail-main .cases-detail-main-details ul li {
    font-size: inherit;
    margin-bottom: 10px;
    color: #DEBD60;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    margin: 25px 0px;
}
.cases-detail-main .cases-detail-main-details ul li span {
    font-size: inherit;
    color: #000;
    text-transform: none;
}
.cases-detail-main .cases-detail-main-details ul li span a {
    color: #000
}

/* Cases Detail Main Image */

.cases-detail-main-image {
    padding: 0px;
}
.cases-detail-main-image .image {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 5px 5px 0px 0px ;
}
.cases-detail-main-image .image .case-logo {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 2;
}
.cases-detail-main-image .image .case-logo img {
    max-height: 100px;
}
.cases-detail-main-image .image img {
    width: 100%;
}

/* Cases Detail Content Blocks */

.cases-detail-content-blocks .cases-detail-content-block .image {
    margin: 30px 0px;
}

/* Cases detail impression */

.cases-detail-impression .cases-detail-impression-heading {
    text-align: center;
    margin-bottom: 50px;
}
.cases-detail-impression .cases-detail-impression-images .image {
    margin: 15px 0px;
}

/* Cases detail contact */

.cases-detail-contact .cases-detail-contact-blocks {
    display: grid;
    grid-template-columns: 100%;
    row-gap: 50px;
    gap: 50px;
}
.cases-detail-contact .cases-detail-contact-blocks .cases-detail-contact-block {
    position: relative;
}
.cases-detail-contact .cases-detail-contact-blocks .cases-detail-contact-block::after {
    display: none;
    content: '';
    position: absolute;
    top: -20px;
    bottom: 20px;
    right: -15px;
    width: 100%;
    background-color: #233E33;
    transform: rotate(4deg);
    z-index: 1;
    border-radius: 5px;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.cases-detail-contact .cases-detail-contact-blocks .cases-detail-contact-block-inner {
    display: grid;
    grid-template-columns: 100%;
    background-color: #FFF;
    box-shadow: 0px 0px 30px rgba(0,0,0,.1);
    border-radius: 5px;
    position: relative;
    z-index: 3;
}
.cases-detail-contact .cases-detail-contact-blocks .cases-detail-contact-block-inner .content {
    padding: 40px;
}
.cases-detail-contact .cases-detail-contact-blocks .cases-detail-contact-block-inner .content h2 {
    margin-bottom: 20px;
}
.cases-detail-contact .cases-detail-contact-blocks .cases-detail-contact-block-inner .image {
    height: 100%;
}
.cases-detail-contact .cases-detail-contact-blocks .cases-detail-contact-block-inner .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Content page */

.content-page {
    padding: 250px 0px 100px 0px;
}
.content-page h1 {
    font-size: 50px;
    margin-bottom: 1em;
}
.content-page h2 {
    font-size: 40px;
}
.content-page h3 {
    font-size: 32px;
    margin-bottom: 1em;
}
.content-page h4 {
    font-size: 24px;
}
.content-page h5 {
    font-size: 20px;
}

/* Services Marquees */

.services-marquees .services-marquees-items .services-marquees-item {
    line-height: 60px;
}
.services-marquees .services-marquees-items .services-marquees-item span {
    font-size: 60px;
    text-transform: uppercase;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #000;
}
.services-marquees .services-marquees-items .services-marquees-item.gold span {
    -webkit-text-stroke-color: #DEBD60;
}
.services-marquees .services-marquees-items .services-marquees-item.black span {
    -webkit-text-stroke-color: #000;
}
.services-marquees .services-marquees-items .services-marquees-item.green span {
    -webkit-text-stroke-color: #233E33;
}
.services-marquees .services-marquees-items .services-marquees-item.grey span {
    -webkit-text-stroke-color: #DDD;
}

/* Footer */

footer {
    background: #233E33;
}
footer .footer-main {
    padding-top: 50px;
}
footer .footer-main .footer-main-heading {
    text-align: center;
    padding: 30px 0px;
}
footer .footer-main .footer-main-heading h2 {
    color: #FFF;
}
footer .footer-main .footer-main-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
footer .footer-main .footer-main-buttons .btn {
    margin: 10px 0px;
}
footer .footer-bottom {
    padding: 30px 0px;
}
footer .footer-bottom .footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px 0px;
}
footer .footer-bottom .footer-logo img {
    max-width: 240px;
    width: 100%;
}
footer .footer-bottom .footer-social.social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 30px 0px;
}
footer .footer-bottom .footer-social.social ul li {
    margin-right: 10px;
}

footer .footer-bottom .footer-social.social ul li a {
    width: 50px;
    height: 50px;
    border: 2px solid #DEBD60;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
}
footer .footer-bottom ul.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
footer .footer-bottom ul.footer-links li a {
    color: #FFF;
    opacity: .33;
    padding: 10px 0px;
    display: block;
}

@media (min-width: 576px) {

}

@media (min-width: 768px) { 
    .header {
        padding: 20px;
    }
}

@media (min-width: 992px) {

}

@media (min-width: 1200px) { 

    body {
        font-size: 20px;
        line-height: 32px;
    }

    h1 {
        font-size: 60px;
        line-height: 60px;
    }
    h2 {
        font-size: 50px;
        line-height: 50px;
    }
    h3 {
        font-size: 40px;
        line-height: 40px;
    }
    h4 {
        font-size: 34px;
        line-height: 34px;
    }
    
    section {
        padding: 80px 0px;
    }

    .header {
        padding: 30px 50px;
    }

    .header.scrolling {
        padding: 10px 50px;
    }
    .header .logo a img {
        max-height: 120px;
    }
    .header .navigation .hamburger::before { 
        font-size: 1em;
        left: -70px;
    }

    .menu-overlay .menu-overlay-navigation {
        padding-top: 250px;
    }
    .menu-overlay nav ul li a {
        font-size: 1.6em;
    }
    .about-block .image {
        width: 120%;
        max-width: 120%;
        margin-left: -20%;
    }
    .about-block .image .shape {
        left: -30px;
    }

    .cases-overview .cases-overview-items .cases-overview-item a {
        position: relative;
        display: block;
    }
    .cases-overview .cases-overview-items .cases-overview-item a .image {
        position: relative;
        width: 80%;
        min-height: 660px;
        height: 100%;
        border-radius: 5px;
    }
    .cases-overview .cases-overview-items .cases-overview-item:nth-child(even) a .image {
        margin-left: auto;
    }
    .cases-overview .cases-overview-items .cases-overview-item a .image img {
        width: 100%;
        object-fit: cover;
        height: 100%;
        position: absolute;
    }
    .cases-overview .cases-overview-items .cases-overview-item:nth-child(even) a .image .case-logo {
        right: auto;
        left: 15px
    }
    .cases-overview .cases-overview-items .cases-overview-item a .image .case-logo img {
        position: relative;
    }
    .cases-overview .cases-overview-items .cases-overview-item a .content {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        margin-top: 50px;
        max-width: 550px;
        width: 100%;
        border-radius: 5px;
        padding: 60px;
    }


    .cases-overview .cases-overview-items .cases-overview-item:nth-child(even) a .content {
        right: auto;
        left: 0;
    }

    .cases-detail-main {
        padding-top: 300px;
    }

    .cases-detail-main .cases-detail-main-details ul li {
        font-size: 20px;
    }

    .cases-detail-main .cases-detail-main-details ul {
        margin: 60px 0px 0px 0px;
    }
    .cases-detail-main-image {
        padding: 50px;
    }

    .cases-detail-contact .cases-detail-contact-blocks .cases-detail-contact-block-inner { 
        grid-template-columns: 1fr 30%;
        align-items: center;
    }
    .cases-detail-contact .cases-detail-contact-blocks .cases-detail-contact-block-inner .content {
        padding: 60px;
    }

    .cases-detail-contact .cases-detail-contact-blocks .cases-detail-contact-block::after { 
        display: flex;
    }

    .cases-detail-content-block {
        margin: 50px 0px;
    }

    .work-block .work-block-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        row-gap: 50px;
        gap: 100px;
        margin-top: 40px;
    }
    .work-block .work-block-items .work-block-item::after {
        right: -20px;
    }
    .work-block .work-block-items .work-block-item .content {
        padding: 60px;
    }
    .services-marquees .services-marquees-items .services-marquees-item {
        line-height: 120px;
    }
    .services-marquees .services-marquees-items .services-marquees-item span {
        font-size: 120px;
    }
    footer {
        margin-top: 80px;
    }
    footer .footer-bottom ul.footer-links {
        justify-content: start;
        text-align: left;
        align-items: start;
    }

    footer .footer-bottom .footer-social.social {
        align-items: end;
    }
    

}

@media (min-width: 1400px) {

}