@font-face {
    font-family: GalanoGrotesque-Bold;
    src: url(../font/galano-grotesque-bold.woff);
    font-weight: bold;
}

html {
    background-color: #faf4f4;
}

body {
    background-color: #faf4f4;
    font-family: "Lato", serif !important;
    color: #535353;
    text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "GalanoGrotesque-Bold";
    letter-spacing: -0.4px;
}

h1 {
    font-size: 2.4rem;
    line-height: 2.9rem;
    color: #3b3b3b;
}

h2 {
    font-size: 2.6rem;
    line-height: 2.8rem;
    color: #484646;
    word-break: auto-phrase;
}

h3 {
    font-size: 2rem;
    color: #3b3b3b;
}

h4 {
    font-size: 1.4rem;
    color: #484646;
}

h5 {
    font-size: 1.4rem;
    color: #ff5768;
    font-weight: 700 !important;
}

h6 {
    font-size: 16px;
    font-weight: 600;
    color: #3b3b3b;
    letter-spacing: 0;
}

p {
    font-size: 1rem;
    line-height: 1.7rem;
}

span {
}

a {
    color: #ff5768;
}

a:hover {
    color: #f72e43;
    text-decoration: none;
}

hr {
}

blockquote {
    border-left: #484646 solid 5px;
    padding: 20px 0 12px 40px;
}

/*=============== MEDIA QUERIES ==================*/

@media (max-width: 768px) {
    .hero-intro {
        margin-top: -1rem !important;
        width: 98%;
    }

    h1 {
        font-size: 2.2rem;
        line-height: 2.4rem;
    }

    h2 {
        font-size: 2.6rem;
        line-height: 2.8rem;
        padding-top: 12px;
    }

    h3 {
        font-size: 1.8rem;
    }

    h4 {
        font-size: 1.4rem;
    }

    p {
        font-size: 1rem;
        line-height: 1.8rem;
    }
    .hero h1 .line-break {
        font-size: 3.6rem !important;
    }

    .menu-home {
        width: 5rem !important;
    }
    .menu-about {
        width: 5rem !important;
    }

    .container-design .card-deck {
        margin-top: 10px;
        margin-left: auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
        grid-gap: 0.5rem;
    }

    .container-fluid {
        padding-left: 0;
        padding-right: 0;
    }

    .card-hero .btn {
        margin-top: 20px;
        margin-bottom: 32px;
    }

    .ff-hero {
        margin-top: 35px !important;
        margin-bottom: 32px !important;
    }
}

@media (min-width: 768px) {
    .ff-hero {
        margin-top: 60px !important;
    }
}

@media (min-width: 992px) {
    .card-about {
        position: fixed;
    }
}

@media (min-width: 1043px) {
    .ff-hero {
        margin-top: 80px !important;
    }
}

@media (min-width: 1200px) {
    .work-hero-img {
        padding: 0 10rem 0 10rem;
    }
}

@media (max-width: 1200px) {
}

/*=============== ######## ==================*/

.brand {
    padding: 30px;
    left: 0 !important;
    float: left;
}

.hero {
    margin-top: 60px;
}

.hero .line-break {
    display: block;
}

.hero h1 {
    margin-top: 20px;
}

.hero h1 span {
    font-size: 5rem;
    line-height: 90%;
    color: #171717;
}

.hero h1 .location {
    font-size: 1.6rem;
    line-height: 2.2rem;
    display: block;
    color: #ff5768;
    font-weight: 700;
    margin-top: 28px;
}

.hero h2 {
    font-family: "Lato", serif !important;
    font-size: 1rem;
    line-height: 1.7rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    margin-bottom: 20px;
}

.hero .btn {
    margin-top: 20px;
}

.hero .fun {
    display: block;
    padding-top: 32px;
    padding-bottom: 36px;
}

.hero .fun-heart {
    float: left;
    background-image: url("../img/heart.svg");
    background-size: contain;
    width: 24px;
    height: 24px;
    transition: 0.3s ease-in-out;

    animation-name: anima-heart;
    animation-duration: 2s;
    animation-iteration-count: 2;
    animation-direction: alternate;
}

.hero .fun-heart:hover {
    transition: 0.3s ease-in-out;
    transform: scale(0.7);
}

@keyframes anima-heart {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(0.7);
    }
}

.hero .fun-star {
    float: left;
    background-image: url("../img/star.svg");
    background-size: contain;
    width: 24px;
    height: 24px;
    transition: 0.3s ease-in-out;
    margin-left: 20px;

    animation-name: anima-star;
    animation-duration: 2s;
    animation-iteration-count: 2;
    animation-direction: alternate;
}

.hero .fun-star:hover {
    transition: 0.3s ease-in-out;
    transform: rotate(180deg);
}

@keyframes anima-star {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(180deg);
    }
}

.hero .fun-circle {
    float: left;
    background: url("../img/circle.svg") no-repeat;
    background-size: contain;
    width: 24px;
    height: 24px;
    transition: 0.3s ease-in-out;
    margin-left: 20px;

    animation-name: anima-circle;
    animation-duration: 2s;
    animation-iteration-count: 2;
    animation-direction: alternate;
}

.hero .fun-circle:hover {
    transition: 0.3s ease-in-out;
    transform: scale(1.2);
}

@keyframes anima-circle {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.2);
    }
}

.work {
    margin-top: 5rem;
}
.work h2 {
    margin-bottom: 30px;
}

.card-deck {
}

.card-columns {
    margin-top: 2rem;
}

.badge-light {
    border-radius: 4px !important;
    margin-right: 8px;
    padding: 6px;
}

.btn {
}

.btn-primary {
    background-color: #fafafa;
    border: 1px solid #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    color: #ff5768;
    transition: 0.3s ease-in-out;
    padding: 12px 20px 12px 20px;
}

.btn-primary:hover {
    background-color: #f8f0f0;
    color: #ff5768;
    padding-left: 24px;
    transition: 0.3s ease-in-out;
    border: 1px solid #fff;
}

.btn-primary:active,
.btn-primary:focus {
    background-color: #fafafa !important;
    color: #ff5768 !important;
}

.btn-icon {
    background-image: url("../img/icons/arrow-p.svg");
    background-position: right 50% bottom 50%;
    padding-left: 20px;
    margin-left: 8px;
}

.card {
    border: none;
    border-radius: 28px !important;
    box-shadow: 0 0 28px 0 rgba(0, 0, 0, 0.02) !important;
    margin-bottom: 32px !important;
}

.card hr {
    margin: 16px 0 24px 0;
}

.card-icon {
    border-radius: 16px !important;
}

.card-icon img {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.card-header {
    background: none;
    border: none !important;
    padding: 0;
    text-align: center;
}

.card-header img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.card-tag {
    margin-bottom: 0 !important;
}

.card-tag-item {
    float: left;
    margin-right: 16px;
    margin-bottom: 16px;
    text-align: center;
    background-color: #ffece6;
    border-radius: 100px;
    padding: 4px 20px 4px 20px;
}

.card-tag-item span {
    font-family: "GalanoGrotesque-Bold";
    font-size: 0.9rem;
    color: #fc917c;
}

.card-tag-item img {
    width: 16x;
    height: 16px;
    margin-bottom: 4px;
    margin-right: 12px;
}

.result-tag {
    display: inline;
    float: left;
    font-family: "GalanoGrotesque-Bold";
    font-size: 0.9rem;
    text-align: center;
    border-radius: 100px;
    padding: 7px 20px 6px 20px;
    margin: 8px 16px 8px 0 !important;
}

.result-tag-green {
    color: #58bfa4 !important;
    background-color: #1b3030 !important;
}

.result-tag-pink {
    color: #eebcdb !important;
    background-color: #36303a !important;
}

.result-tag-blue {
    color: #6ba1e8 !important;
    background-color: #122036 !important;
}

.result-tag-gold {
    color: #e7b698 !important;
    background-color: #352f2e !important;
}

.figure-caption {
    margin-top: 20px;
}

.list-group-item {
    background: #fafafa !important;
    border-radius: 16px !important;
    border-bottom: none !important;
}

.navbar {
    background-color: transparent;
    padding-bottom: 0;
    transition: top 0.4s;
    margin-top: -16px;
    box-sizing: border-box;
}

.menu-home {
    display: block;
    background: url("../img/icons/home.svg") no-repeat;
    width: 6rem;
    height: 100px;
    text-indent: -9999px;
    background-position: center;
}

.menu-home:hover,
.menu-work:hover,
.menu-about:hover {
    border-bottom: rgba(255, 87, 104, 0.3) 2px solid;
}

.menu-work {
    display: block;
    background: url("../img/icons/work.svg") no-repeat;
    width: 6rem;
    height: 100px;
    text-indent: -9999px;
    background-position: center;
}

.menu-about {
    display: block;
    background: url("../img/icons/about.svg") no-repeat;
    width: 6rem;
    height: 100px;
    text-indent: -9999px;
    background-position: center;
}

.page {
    margin-top: 3rem;
}

.frido-video {
    padding: 0 4rem 0 4rem;
}

.mb-video {
    padding: 0 5rem 0 5rem;
    border-radius: 0 0 28px 28px;
}

.mb-reel {
    padding: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.mb-reel video {
    height: auto;
    width: 100%;
}

.work-hero {
}

.work-hero h1 {
    font-size: 3.2rem;
    line-height: 3.6rem;
}

.work-hero p {
    margin-top: 32px;
}

.work-hero .card-tag {
    margin: 20px 0 80px 0;
}

.work-hero-img {
    margin-top: 64px;
}

.work-task {
    margin: 6rem 0 6rem 0;
}

.work-task h2 {
    margin-bottom: 1.4rem;
}

.work-task li {
    margin-top: 20px;
}

.work-task .card {
    min-width: inherit;
    max-width: auto;
}

.work-related {
    margin-top: 4rem;
}
.work-related a {
    font-family: "GalanoGrotesque-Bold";
    font-size: 4rem;
    color: #d6d6d6;
    margin-right: 32px;
}

.work-related a:hover {
    color: #ff5768;
}

.work-related .selected {
    color: #1f3053;
    font-weight: 700;
    padding: 20px;
}

.work-related a:selected {
    color: #1f3053;
    font-weight: 700;
    padding: 20px;
}

.container-design {
    background-color: #ffe7e7;
    padding-top: 20px;
    padding-bottom: 132px;
}

.card-deck {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-gap: 0.5rem;
}

.container-design .card-deck {
    margin-top: 10px;
    margin-left: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
    grid-gap: 0.5rem;
}

.about h1 {
    font-size: 4.4rem;
    line-height: 90%;
}

/*=============== CARD CONTAINER ACCENT ==================*/

.container-black {
    background-color: #000 !important;
}
.text-black {
    color: #000 !important;
}

.container-white {
    background-color: #fff !important;
}
.text-white {
    color: #fff !important;
}

.container-pink {
    background-color: #ffe7e7 !important;
}
.text-pink {
    color: #ffe7e7 !important;
}

.container-gray {
    background-color: #e6eaf2 !important;
}
.text-gray {
    color: #9e9aa2 !important;
}

.container-purple {
    background-color: #f2e2f3 !important;
}
.text-purple {
    color: #f2e2f3 !important;
}

.container-orange {
    background-color: #ffe9e2 !important;
}
.text-orange {
    color: #ffe9e2 !important;
}

.container-green {
    background-color: #d9f2f3 !important;
}
.text-green {
    color: #d9f2f3 !important;
}

.container-blue {
    background-color: #eaf7ff !important;
}
.text-blue {
    color: #eaf7ff !important;
}

.container-purple {
    background-color: #f0eaff !important;
}
.text-purple {
    color: #f0eaff !important;
}

.container-purple-light {
    background-color: #f5f1ff !important;
}
.text-purple-light {
    color: #f5f1ff !important;
}

.container-red {
    background-color: #ff5768 !important;
}
.text-red {
    color: #ff5768 !important;
}

.container-salmon {
    background-color: #ff7e65 !important;
}
.text-salmon {
    color: #ff7e65 !important;
}

.container-invisible {
    background-color: transparent !important;
    box-shadow: none !important;
}
.container-ash {
    background-color: #f6f6f6 !important;
    border: #fff solid 1px;
}

.container-snow {
    background-color: #fff8f8 !important;
    border: #fff solid 1px;
}

.container-madsen {
    background-color: #e7e5e6 !important;
}
.container-mb {
    background-color: #030514 !important;
}
.container-zattoo {
    background-color: #e2e2df !important;
}
.container-frido {
    background-color: #dee4f3 !important;
}
.container-miro {
    background-color: #EEEAE5 !important;
}

/*=============== CARD HERO ==================*/

.card-header {
    margin: 32px 0 0 44px;
}

.card-body {
    padding: 44px;
}

.card-hero h3 {
    font-size: 2.8rem;
    line-height: 92%;
    margin-bottom: 24px;
}

.card-hero h5 {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.card-hero .btn {
    margin-top: 20px;
}

.card-hero .card-body {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding-bottom: 0 !important;
}

.card-hero img {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

/*=============== CARD QUOTE ==================*/

.card-quote {
}
.card-quote .card-body {
    padding: 40px 0 40px 0;
}

.card-quote-icon img {
    width: 60px;
    margin-left: 40px;
    margin-bottom: 20px;
    display: block;
}

.card-quote .carousel-item {
    overflow-y: scroll;
    max-height: 600px;
    padding-left: 48px;
    padding-right: 48px;
    max-height: 480px;
}

.card-quote .card-body .card-author {
    margin: 20px 0 28px 0;
}

.card-quote .card-body .card-author h5 {
    color: #535353;
    font-size: 1.4rem;
}

.card-quote .card-body .card-author span {
    display: block;
    font-size: 40px;
    margin-bottom: 40px;
}

.carousel-controls {
}

.carousel-control-prev {
    width: 48px;
    height: 48px;
    left: auto;
    right: 96px !important;
}
.carousel-control-next {
    width: 48px;
    height: 48px;
    right: 40px !important;
}

.carousel-control-next-icon {
    background-image: url("../img/icons/arrow.svg");
}

.carousel-control-prev-icon {
    background-image: url("../img/icons/arrow.svg");
    transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
}

/*=============== CARD ABOUT ==================*/

.card-about {
    padding: 2.6rem 2.2rem 0.6rem 2.2rem !important;
    background-color: #fff8f8;
    border: #fff solid 1px;
}

.card-about .card-header {
    margin: 0 auto;
    padding-bottom: 20px;
}

.card-about .card-intro {
    display: block;
    max-width: 16rem;
    margin: 0 auto;
}

.card-about .card-body {
    padding: 1rem !important;
    padding: 1rem 0 1rem 0rem !important;
}

.card-about .card-body p {
    font-size: 0.9rem !important;
}

.card-about p img {
    float: right;
    margin-right: 0;
    margin-left: 32px;
    width: 18px;
    height: 18px;
    display: block;
}

.card-about p span {
    float: right;
    font-size: 20px;
    margin-right: 0;
    margin-left: 32px;
    width: 20px;
    height: 20px;
    display: block;
}

.card-about span img {
    width: 16px;
    height: 16px;
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    margin-left: 2px;
    margin-bottom: 4px;
}

.card-about .avatar {
    width: 6rem;
    height: 6rem;
}

/*=============== CARD HIGHLIGHT ==================*/

.card-highlight {
    box-shadow: none;
    padding-top: 0.6rem;
    background-color: #fff9f9;
}

.card-highlight .embed-responsive {
    border-radius: 16px !important;
}

.card-highlight img {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.card-highlight h4 {
    margin-top: -12px;
    margin-bottom: 20px;
}

.card-highlight .card-header {
    width: 64px;
    height: 64px;
    box-shadow: 0 8px 20px 0 rgba(237, 237, 237, 0.5);
}
.card-highlight .card-header img {
    width: 32px;
    height: 32px;
    margin-top: 16px;
}

.card-highlight strong {
    color: #acb6ca;
}

/*=============== CARD REEL ==================*/

.card-reel {
}

.card-reel .card-icon {
    background-color: #ffe7e7;
}

.card-reel img {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

/*=============== CARD QA ==================*/

.card-qa-question {
}

.card-qa-question .card {
    padding: 20px 20px 4px 20px;
    background-color: #e6eaf2;
    border-top-left-radius: 0px !important;
}

.card-qa-question img {
    float: left;
    margin-right: 20px;
}

.card-qa-answer {
}

.card-qa-answer img {
    float: right;
    margin-left: 20px;
}

.card-qa-answer .card {
    padding: 20px 20px 4px 20px;
    background-color: #ffe7e7;
    border-top-right-radius: 0px !important;
}

/*=============== CARD EXPERIENCE ==================*/

.card-positive img {
    width: 24px;
    height: 24px;
}

.card-negative img {
    width: 28px;
    height: 28px;
}

.work-task .card {
    min-width: inherit;
    max-width: auto;
}

.card-positive .card-header {
    margin-top: 40px;
    padding-left: 40px;
}

.card-negative .card-header {
    margin-top: 40px;
    padding-left: 40px;
}

/*=============== PARTNERS ==================*/

.partners {
    margin-top: 12rem;
    margin-bottom: 12rem;
}

.partners .row {
    margin-top: 80px;
}

/*=============== WIDGET: COMPANY ==================*/
.about-company {
    margin-bottom: 10rem;
}

.signature p {
    font-size: 13px;
    color: #b3b3b3;
    font-weight: bold;
}

.ff-hero {
    width: 100%;
    height: 200px;
    margin: 0 auto;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
}

.marquee-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    align-items: center;
    animation: marqueeScroll 90s linear infinite;
    width: calc(170px * 12); /* 6 logos * 2 for seamless infinite loop */
}

.marquee-content img {
    width: 130px;
    height: 130px;
    margin-right: 40px;
    flex-shrink: 0;
    border-radius: 0;
}

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