@charset "utf-8";
/*
	Author: Filip Todorov - www.filiptodorov.com
	Project: BuffaloTech
	All rights reserved
*/
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500&display=swap');

body, html {
    font-family: Arial, sans-serif;
    position: relative;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    color: #000;
}

@media (min-width: 992px) {
    .container {
        padding-left: 3rem;
        padding-right: 3rem;
    }
    .row {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }
    .row div[class*='col'] {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* BUTTONS */
.btn.btn-primary {
    background: #6424ee;
    border-color: #6424ee;
    font-weight: bold;
    border-radius: 0;
    padding: 1rem 1.5rem;
}
.btn.btn-primary:hover,
.btn.btn-primary:focus {
    background: #5727c0;
    border-color: #5727c0;
    box-shadow: rgba(10,10,10,0.1) 0 0 1rem;
}
.btn.btn-primary:not(:disabled):not(.disabled):active {
    background: #7e5bcb;
    border-color: #7e5bcb;
    box-shadow: rgba(10,10,10,0.1) 0 0 1rem;
    transform-origin: center;
    transform: scale(0.975);
}
.btn.btn-secondary {
    background: #333;
    border-color: #333;
    font-weight: bold;
    border-radius: 0;
    padding: 1rem 3rem 1rem 1.5rem;
    position: relative;
}
.btn.btn-secondary:after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1.25rem;
    width: 0.75rem;
    height: 0.75rem;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    transform-origin: center;
    transform: rotate(-45deg);
    content: ' ';
    margin: auto;
}
.btn.btn-secondary:hover,
.btn.btn-secondary:focus {
    background: #5727c0;
    border-color: #5727c0;
    box-shadow: rgba(10,10,10,0.1) 0 0 1rem;
}
.btn.btn-secondary:not(:disabled):not(.disabled):active {
    background: #7e5bcb;
    border-color: #7e5bcb;
    box-shadow: rgba(10,10,10,0.1) 0 0 1rem;
    transform-origin: center;
    transform: scale(0.975);
}

/* BADGES */
.badge.badge-primary {
    background: #6424ee;
    color: #fff;
    font-size: 0.75rem;
    padding: 0 10px;
    line-height: 1.7;
    border-radius: 1.5rem;
}

/* TYPOGRAPHY */
.text-primary {
    color: #6424ee !important;
}

/* NAVIGATION */
.navbar-light {
    background: #fff !important;
    box-shadow: 0 2px 5px rgb(0 0 0 / 10%);
    padding: 1rem;
}
.navbar .navbar-brand {
    display: flex;
    align-items: center;
}
.navbar .navbar-brand img {
    height: 2rem;
    margin: 0 0.5rem 0 0;
}
.navbar .navbar-brand h1 {
    font-size: 1.15rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 4px;
    margin: 0;
}
.navbar .nav-item > .nav-link {
    font-size: 1rem;
    font-weight: bold;
    color: #000;
    margin-left: 1.75rem;
    transition: 0.15s ease all;
}
.navbar .nav-item > .nav-link:hover,
.navbar .nav-item.active > .nav-link,
.navbar .nav-item > .nav-link.active,
.navbar .nav-item.show > .nav-link {
    color: #6424ee;
}
.navbar .nav-item > .nav-link span {
    display: inline-block;
    vertical-align: middle;
}
.navbar .nav-item.dropdown > .nav-link.dropdown-toggle {
    position: relative;
    padding-right: 0.85rem;
}
.navbar .nav-item.dropdown > .nav-link.dropdown-toggle:after {
    content: ' ';
    display: block;
    border: none;
    width: 0.5rem;
    height: 0.5rem;
    border-bottom: 2px solid #000;
    border-left: 2px solid #000;
    transform-origin: center;
    transform: rotate(-45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    transition: 0.15s ease all;
}
.navbar .nav-item.dropdown > .nav-link.dropdown-toggle:hover:after {
    border-color: #6424ee;
}
.navbar .nav-item.dropdown.show > .nav-link.dropdown-toggle:after {
    border-color: #6424ee;
    transform: translateY(3px) rotate(135deg);
}
.navbar .nav-item.dropdown > .dropdown-menu {
    border: none;
    padding: 1rem 0.75rem;
    background: #fff;
    box-shadow: rgba(0,0,0,0.1) 0 0 0.25rem;
    border-radius: 0;
}
.navbar .nav-item.dropdown > .dropdown-menu .dropdown-item,
.navbar .nav-item.dropdown > .dropdown-menu .dropdown-item.active {
    padding: 0.5rem 1rem;
    background: none;
    color: #000;
    font-weight: bold;
    font-size: 1rem;
    text-transform: capitalize;
    border-radius: 0;
    transition: 0.15s ease all;
}
.navbar .nav-item.dropdown > .dropdown-menu .dropdown-item:hover {
    background: #f9f9f9;
}
.navbar .nav-item.dropdown > .dropdown-menu .dropdown-item:active {
    background: #f2f3f4;
    color: #6424ee;
}

/* MAIN */
.main {
    width: 100%;
    height: auto;
    position: relative;
    padding: 15rem 0 10rem 0;
    background: url("../img/main-bg.jpg") center no-repeat;
    background-size: cover;
}
.main:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    content: ' ';
    background: #000;
    opacity: 0.25;
}
.main .container {
    position: relative;
    z-index: 2;
}
.main h3 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    max-width: 80%;
    color: #fff;
}
.main h1 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 5rem;
    line-height: 1;
    margin: 1rem 0 1.5rem 0;
    color: #fff;
}
.main p {
    font-size: 1.25rem;
    color: #fff;
}
.main .team-statistics {
    margin-top: 5rem;
    display: flex;
    align-items: flex-start;
    color: #fff;
}
.main .team-statistics .statistic-item {
    display: block;
    margin-right: 3rem;
    position: relative;
}
.main .team-statistics .statistic-item strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 500;
}
.main .team-statistics .statistic-item span {
    display: block;
    opacity: 0.75;
}

/* SECTIONS */
section .section-title {
    margin: 0;
}
section .section-title h1 {
    font-size: 4rem;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    margin: 0;
}
section .section-title h2 {
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    margin: 0;
}
section .section-title h3 {
    font-weight: bold;
}

/* SERVICES */
.services {
    padding: 8rem 0;
}
.services .service-box {
    display: block;
    padding: 2rem;
    background: #f2f3f4;
    transition: 0.15s ease all;
    cursor: pointer;
}
.services .service-box img {
    width: 3rem;
    height: 3rem;
    display: block;
    filter: brightness(0);
    transition: 0.15s ease all;
}
.services .service-box h3 {
    font-weight: 500;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    margin: 1.5rem 0 0.5rem 0;
}
.services .service-box:hover {
    color: #6424ee;
    background: #f7f3ff;
    transform-origin: center;
    transform: scale(1.025);
}
.services .service-box:hover img {
    filter: none;
}

/* BRANDS */
.brands {
    padding: 6rem 0;
    background: #f2f3f4;
}
.brands .brands-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brands .brands-logos img {
    max-width: 150px;
    max-height: 60px;
    filter: brightness(0);
}

/* ABOUT */
.about {
    padding: 8rem 0;
    background: #000;
    position: relative;
    color: #fff;
}
.about:after {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: #6424ee;
    content: ' ';
    z-index: 1;
    opacity: 0.9;
}
.about:before {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url("../img/main-bg.jpg") center no-repeat;
    background-size: cover;
    content: ' ';
    z-index: 1;
}
.about .container {
    position: relative;
    z-index: 2;
}
.about .section-title {
    position: relative;
}
.about .section-title:after {
    position: absolute;
    top: 1rem;
    right: 0;
    width: 70%;
    height: 4px;
    background: #fff;
    content: ' ';
    transform: translateX(60%);
}
.about .box {
    position: relative;
    padding: 2rem;
    background: #fff;
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 0;
    color: #000;
}
.about .box + .box {
    margin-top: 2.5rem;
}
.about .box.alt-box {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.25);
}
.about .box h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0 0 1rem 0;
}
.about .box p {
    margin: 0;
}
.about .box.alt-box p {
    font-weight: bold;
}

/* TEAM */
.team {
    padding: 6rem 0;
    background: #090909;
}
.team .team-member {
    text-align: center;
}
.team .team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(1);
    margin: 0 0 1.5rem 0;
}
.team .team-member h4 {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
}
.team .team-member p {
    color: rgba(255,255,255,0.5);
    font-weight: bold;
    font-size: 0.8rem;
    margin-bottom: 0;
}

/* CAREERS */
.careers {
    padding: 8rem 0;
    background: #fff;
}
.careers .section-title p {
    margin: 1.5rem 0 3rem 0;
}
.careers .job-item {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: #f2f3f4;
}
.careers .job-item + .job-item {
    margin-top: 1rem;
}
.careers .job-item .job-details {
    display: block;
    width: 100%;
}
.careers .job-item .job-details h3 {
    font-weight: bold;
    font-size: 1.25rem;
}
.careers .job-item .job-details .job-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.careers .job-item .job-details .job-meta .job-location,
.careers .job-item .job-details .job-meta .job-type {
    margin: 0 1rem 0 0;
    position: relative;
}
.careers .job-item .job-details .job-meta .job-location span,
.careers .job-item .job-details .job-meta .job-type span {
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.25rem;
}
.careers .job-item .job-details .job-meta .job-location:before {
    width: 1rem;
    height: 1rem;
    content: ' ';
    display: inline-block;
    vertical-align: middle;
    background: url("../img/icons/building.png") center no-repeat;
    background-size: contain;
}
.careers .job-item .job-details .job-meta .job-type:before {
    width: 1rem;
    height: 1rem;
    content: ' ';
    display: inline-block;
    vertical-align: middle;
    background: url("../img/icons/briefcase.png") center no-repeat;
    background-size: contain;
}
.careers .job-item .job-actions {
    width: 150px;
    flex-shrink: 0;
    text-align: center;
}
.careers .job-item .job-actions .btn.btn-primary {
}
.careers .job-item .job-description {
    display: none;
}

/* CONTACT */
.contact {
    padding: 8rem 0;
    position: relative;
}
.contact:before {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 90%;
    background: #f2f3f4;
    content: ' ';
}
.contact .container {
    position: relative;
    z-index: 1;
}
.contact .map {
    width: 100%;
    height: 500px;
    background: #111;
}
.contact .contact-item {
    display: flex;
    align-items: center;
    margin-top: 2.5rem;
}
.contact .contact-item img {
    width: 3rem;
    height: 3rem;
    flex-shrink: 0;
}
.contact .contact-item .contact-info {
    width: 100%;
    padding-left: 1rem;
}
.contact .contact-item .contact-info strong {
    font-size: 1.5rem;
    display: block;
}
.contact .contact-item .contact-info span {
    display: block;
}

/* FOOTER */
footer.page-footer {
    position: relative;
    padding: 0 0 2.5rem 0;
}
footer.page-footer .navbar-brand {
    display: flex;
    align-items: center;
    color: #000;
}
footer.page-footer .navbar-brand img {
    height: 2rem;
    margin: 0 0.5rem 0 0;
    filter: brightness(0);
}
footer.page-footer .navbar-brand h1 {
    font-size: 1.15rem;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 4px;
    margin: 0;
}
footer.page-footer p {
    margin: 0;
    font-size: 0.8rem;
    color: #7a7a7a;
}

/* JOB POPUP */
@media (min-width: 768px) {
    .modal.job-popup .modal-dialog {
        max-width: 700px;
    }
}
.modal.job-popup .modal-content {
    padding: 1.5rem;
}
.modal.job-popup .modal-header .modal-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
}

@media (min-width: 992px) and (max-width: 1199px) {
    html, body {
        font-size: 14px;
    }
    .brands .brands-logos {
        flex-wrap: wrap;
    }
    .brands .brands-logos img {
        margin: 1rem 2rem;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    html, body {
        font-size: 12px;
    }
    .brands .brands-logos {
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .brands .brands-logos img {
        max-width: 120px;
        max-height: 40px;
        margin: 1rem 2rem;
    }
    .team .team-member img {
        width: 100px;
        height: 100px;
    }
}
@media (max-width: 767px) {
    .navbar-light .navbar-toggler {
        border: none;
        outline: none;
        box-shadow: none;
    }
    .navbar .nav-item {
        width: 100%;
    }
    .navbar .nav-item > .nav-link {
        margin-left: 0;
        text-align: left;
    }
    .main {
        padding: 10rem 0 5rem 0;
    }
    .main h1 {
        font-size: 2.5rem;
        margin: 0.5rem 0 1rem 0;
    }
    .main h3 {
        font-size: 1.25rem;
    }
    .main p {
        font-size: 1rem;
    }
    .main .team-statistics {
        margin-top: 2.5rem;
    }
    .main .team-statistics .statistic-item span {
        font-size: 0.8rem;
    }
    section .section-title h1 {
        font-size: 2.5rem;
    }
    section .section-title h3 {
        font-size: 1rem;
    }
    .services {
        padding: 4rem 0;
    }
    .about {
        padding: 4rem 0;
    }
    .about:before,
    .about:after {
        display: none;
    }
    .about .section-title {
        margin-bottom: 2rem;
    }
    .about .section-title:after {
        display: none;
    }
    .team {
        padding: 0 0 1.5rem 0;
    }
    .team .team-member {
        margin-bottom: 2.5rem;
    }
    .team .team-member img {
        width: 100px;
        height: 100px;
    }
    .team .team-member h4 {
        font-size: 1.25rem;
    }
    .careers {
        padding: 4rem 0;
    }
    .careers .section-title p {
        margin-bottom: 1.5rem;
    }
    .careers .jobs-list {
        padding-top: 1.5rem;
    }
    .careers .job-item {
        padding: 1.5rem;
        flex-direction: column;
    }
    .careers .job-item .job-actions {
        width: 100%;
        margin-top: 1rem;
    }
    .careers .job-item .job-actions .btn {
        width: 100%;
    }
    .contact {
        padding: 0 0 4rem 0;
    }
    .contact:before {
        display: none;
    }
    .contact .map {
        height: 200px;
        display: none;
    }
    .contact .contact-item .contact-info strong {
        font-size: 1.15rem;
    }
    .brands {
        text-align: center;
        padding: 4rem 0;
    }
    .brands .section-title {
        margin-bottom: 1.5rem;
    }
    .brands .brands-logos {
        flex-wrap: wrap;
        justify-content: space-around;
    }
    .brands .brands-logos img {
        max-width: 120px;
        max-height: 40px;
        margin: 1rem 0.5rem;
    }
    footer.page-footer {
        text-align: center;
    }
    footer.page-footer .navbar-brand {
        justify-content: center;
    }
}