/*!
 * Start Bootstrap - Creative Bootstrap Theme (http://startbootstrap.com)
 * Code licensed under the Apache License v2.0.
 * For details, see http://www.apache.org/licenses/LICENSE-2.0.
 */

html,
body {
    width: 100%;
    height: 100%;
}

body {
	font-family: Arial, sans-serif;
}

hr {
    max-width: 50px;
    border-color: #f05f40;
    border-width: 3px;
}

hr.light {
    border-color: #fff;
}

a {
    color: #f05f40;
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    transition: all .35s;
}

a:hover,
a:focus {
    color: #eb3812;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif;
}

p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.5;
}

.bg-primary {
    background-color: #f05f40;
}

.bg-dark {
    color: #fff;
    background-color: #222;
}

.text-faded {
    color: rgba(255,255,255,.7);
}

section {
	padding: 50px 0;
}

aside {
    padding: 50px 0;
}

.no-padding {
    padding: 0;
}

.navbar-default {
    border-color: rgba(34,34,34,.05);
    font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif;
    background-color: #fff;
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    transition: all .35s;
}

.navbar-default .navbar-header .navbar-brand {
    text-transform: uppercase;
    font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif;
    font-weight: 700;
    color: #f05f40;
}

.navbar-default .navbar-header .navbar-brand:hover,
.navbar-default .navbar-header .navbar-brand:focus {
    color: #eb3812;
}

.navbar-default .nav > li>a,
.navbar-default .nav>li>a:focus {
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    color: #222;
}

.navbar-default .nav > li>a:hover,
.navbar-default .nav>li>a:focus:hover {
    color: #f05f40;
}

.navbar-default .nav > li.active>a,
.navbar-default .nav>li.active>a:focus {
    color: #f05f40;
    background-color: transparent;
}

.navbar-default .nav > li.active>a:hover,
.navbar-default .nav>li.active>a:focus:hover {
    background-color: transparent;
}

@media(min-width:768px) {
    .navbar-default {
        border-color: rgba(255,255,255,.3);
        background-color: transparent;
    }

    .navbar-default .navbar-header .navbar-brand {
        color: rgba(255,255,255,.7);
    }

    .navbar-default .navbar-header .navbar-brand:hover,
    .navbar-default .navbar-header .navbar-brand:focus {
        color: #fff;
    }

    .navbar-default .nav > li>a,
    .navbar-default .nav>li>a:focus {
        color: rgba(255,255,255,.7);
    }

    .navbar-default .nav > li>a:hover,
    .navbar-default .nav>li>a:focus:hover {
        color: #fff;
    }

    .navbar-default.affix {
        border-color: rgba(34,34,34,.05);
        background-color: #fff;
    }

    .navbar-default.affix .navbar-header .navbar-brand {
        font-size: 14px;
        color: #f05f40;
    }

    .navbar-default.affix .navbar-header .navbar-brand:hover,
    .navbar-default.affix .navbar-header .navbar-brand:focus {
        color: #eb3812;
    }

    .navbar-default.affix .nav > li>a,
    .navbar-default.affix .nav>li>a:focus {
        color: #fffff;
    }

    .navbar-default.affix .nav > li>a:hover,
    .navbar-default.affix .nav>li>a:focus:hover {
        color: #f05f40;
    }
}

header {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    text-align: center;
    color: #fff;
    overflow: hidden;

    background:
      linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
      url(../img/header.png);

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

header::before {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(3px);
    pointer-events: none;
    z-index: 1;
}

header::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 40%, rgba(0,0,0,0.8));
    pointer-events: none;
    z-index: 1;
}

header .header-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

header .header-content .header-content-inner {
    margin-right: auto;
    margin-left: auto;
    max-width: 1000px;
}

header .header-content .header-content-inner h1 {
    margin-top: 0;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 64px;
}

header .header-content .header-content-inner hr {
    margin: 30px auto;
}

header .header-content .header-content-inner p {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 30px;
    max-width: 800px;
    font-size: 20px;
    font-weight: 300;
    color: rgba(255,255,255,.85);
}

@media(min-width:768px) {
    header {
        min-height: 100%;
    }

    header .header-content {
        position: absolute;
        top: 50%;
        padding: 0 50px;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    header .header-content .header-content-inner {
        margin-right: auto;
        margin-left: auto;
        max-width: 1000px;
    }

    header .header-content .header-content-inner p {
        margin-right: auto;
        margin-left: auto;
        max-width: 80%;
        font-size: 18px;
    }
}

.section-heading {
    margin-top: 0;
}

.service-box {
    margin: 50px auto 0;
    max-width: 400px;
}

@media(min-width:992px) {
    .service-box {
        margin: 20px auto 0;
    }
}

.service-box p {
    margin-bottom: 0;
}

.portfolio-box {
    display: block;
    position: relative;
    margin: 0 auto;
    max-width: 650px;
}

.portfolio-box .portfolio-box-caption {
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #fff;
    opacity: 0;
    background: rgba(240,95,64,.9);
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    transition: all .35s;
}

.portfolio-box .portfolio-box-caption .portfolio-box-caption-content {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
}

.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category,
.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name {
    padding: 0 15px;
    font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif;
}

.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
}

.portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name {
    font-size: 18px;
}

.portfolio-box:hover .portfolio-box-caption {
    opacity: 1;
}

@media(min-width:768px) {
    .portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-category {
        font-size: 16px;
    }

    .portfolio-box .portfolio-box-caption .portfolio-box-caption-content .project-name {
        font-size: 22px;
    }
}

.call-to-action h2 {
    margin: 0 auto 20px;
}

.text-primary {
    color: #f05f40;
}

.no-gutter > [class*=col-] {
    padding-right: 0;
    padding-left: 0;
}

.btn-default {
    border-color: #fff;
    color: #fff;
    background:linear-gradient(135deg,#ff7b55 0%,#f05f40 45%,#b72f1f 100%);
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    transition: all .35s;
}

.btn-default:hover,
.btn-default:focus,
.btn-default.focus,
.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
    border-color: #ededed;
    color: #222;
    background-color: #f2f2f2;
}

.btn-default:active,
.btn-default.active,
.open > .dropdown-toggle.btn-default {
    background-image: none;
}

.btn-default.disabled,
.btn-default[disabled],
fieldset[disabled] .btn-default,
.btn-default.disabled:hover,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default:hover,
.btn-default.disabled:focus,
.btn-default[disabled]:focus,
fieldset[disabled] .btn-default:focus,
.btn-default.disabled.focus,
.btn-default[disabled].focus,
fieldset[disabled] .btn-default.focus,
.btn-default.disabled:active,
.btn-default[disabled]:active,
fieldset[disabled] .btn-default:active,
.btn-default.disabled.active,
.btn-default[disabled].active,
fieldset[disabled] .btn-default.active {
    border-color: #fff;
    background-color: #fff;
}

.btn-default .badge {
    color: #fff;
    background-color: #222;
}

.btn-primary {
    border-color: #f05f40;
    color: #fff;
    background-color: #f05f40;
    -webkit-transition: all .35s;
    -moz-transition: all .35s;
    transition: all .35s;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
    border-color: #ed431f;
    color: #fff;
    background-color: #ee4b28;
}

.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
    background-image: none;
}

.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary,
.btn-primary.disabled:hover,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary:hover,
.btn-primary.disabled:focus,
.btn-primary[disabled]:focus,
fieldset[disabled] .btn-primary:focus,
.btn-primary.disabled.focus,
.btn-primary[disabled].focus,
fieldset[disabled] .btn-primary.focus,
.btn-primary.disabled:active,
.btn-primary[disabled]:active,
fieldset[disabled] .btn-primary:active,
.btn-primary.disabled.active,
.btn-primary[disabled].active,
fieldset[disabled] .btn-primary.active {
    border-color: #f05f40;
    background-color: #f05f40;
}

.btn-primary .badge {
    color: #f05f40;
    background-color: #fff;
}

.btn {
    border: 0;
    border-radius: 300px;
    text-transform: uppercase;
    font-family: 'Open Sans','Helvetica Neue',Arial,sans-serif;
    font-weight: 700;
}

.btn-xl {
    padding: 15px 30px;
}

::-moz-selection {
    text-shadow: none;
    color: #fff;
    background: #222;
}

::selection {
    text-shadow: none;
    color: #fff;
    background: #222;
}

img::selection {
    color: #fff;
    background: 0 0;
}

img::-moz-selection {
    color: #fff;
    background: 0 0;
}

body {
    webkit-tap-highlight-color: #222;
}
#about,
#portfolio,
#contact {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* container ma być pełny */
#about .container,
#portfolio .container,
#contact .container {
    width: 100%;
}

/* wyrównanie w środku */
#about .row,
#portfolio .row,
#contact .row {
    width: 100%;
}

/* popraw spacing */
section {
    padding: 80px 20px;
}
#about .text-faded {
    max-width: 780px;
    margin: 0 auto;
}

#about .text-faded p {
    font-size: 19px;
    line-height: 1.8;
}
/* MOBILE */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
#about .text-faded {
    max-width: 780px;
    margin: 0 auto;
}

#about .text-faded p {
    text-align: justify;
    text-justify: inter-word;

    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;

    color: rgba(255,255,255,0.92);

    hyphens: auto;
}

/* zachowaj nagłówek na środku */
#about .section-heading {
    text-align: center;
}
/* ===== PRZYCISK PORTFOLIO – CENTROWANIE ===== */

.portfolio-btn {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}
/* ===== COOKIE BANNER ===== */

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 900px;
  background: rgba(20,20,20,0.95);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  z-index: 9999;
  display: none;
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-content p {
  margin: 0;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.btn-cookie {
  padding: 10px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn-cookie.accept {
  background: #f05f40;
  color: #fff;
}

.btn-cookie.reject {
  background: #333;
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .btn-cookie {
    flex: 1;
  }
}


/* ===== STOPKA ===== */
.site-footer {
  padding: 28px 20px 40px;
  text-align: center;
  background: #0d0d0d;
}

.site-footer p {
  margin: 0;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-sep {
  display: inline-block;
  margin: 0 10px;
  opacity: 0.6;
}
.policy-header {
    margin: 0; /* 🔥 usuwa przerwę */
    padding: 100px 20px 50px; /* lekko zmniejszony top */
    text-align: center;

    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;

    background:
        linear-gradient(rgba(0,0,0,0.74), rgba(0,0,0,0.74)),
        url('img/header.png') center center / cover no-repeat;
}
header.policy-header {
    height: auto;
    min-height: auto;
}
.policy-header h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.policy-header p {
    font-size: 18px;
    line-height: 1.6;
}
header.policy-header {
    position: relative;
    height: auto;
    min-height: auto;
    margin: 0;
    padding: 100px 20px 50px;
}

header.policy-header::before,
header.policy-header::after {
    content: none;
    display: none;
}

header.policy-header h1,
header.policy-header p {
    position: relative;
    z-index: 2;
    text-shadow: none;
}


/* ===== GALERIE PORTFOLIO Z OPISEM ===== */
.portfolio-gallery-section {
    min-height: auto;
    display: block;
    padding: 10px 10px;
}

.portfolio-gallery {
    max-width: 980px;
    margin: 35px auto 0;
}

.gallery-main-row {
    display: flex;
    align-items: stretch;
    justify-content: center;
    text-align: left;
}

.gallery-image-col,
.gallery-desc-col {
    float: none;
}

.gallery-main-img {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    margin: 0 auto;
    background: #f7f7f7;
    border: 0px solid #f7f7f7;
    cursor: zoom-in;
    opacity: 1;
    transition: opacity .26s ease, transform .26s ease;
}

.gallery-main-img.is-fading {
    opacity: 0;
    transform: scale(0.985);
}

.gallery-desc-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 35px;
    background: #fffff;
    border: 0px solid #fffff;
    border-left: none;
}

.gallery-title {
    margin-top: 0;
    margin-bottom: 18px;
    font-weight: 700;
    color: #222;
}

.gallery-desc,
.gallery-extra {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
}

.gallery-image-col {
    position: relative;
}

.gallery-main-img {
    cursor: zoom-in;
    transition: opacity .26s ease;
}

.gallery-main-img.is-fading {
    opacity: .18;
}

/* ===== MINIATURY: jeden rząd + małe szare strzałki po bokach ===== */
.gallery-thumbs-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 860px;
    margin: 26px auto 6px;
}

.gallery-thumbs-viewport {
    overflow: hidden;
    width: 100%;
    max-width: 760px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery-thumbs-viewport::-webkit-scrollbar {
    display: none;
}

.gallery-thumbs {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
    width: max-content;
    min-width: 100%;
    overflow: visible;
    padding: 8px 2px 10px;
    margin: 0;
}

.gallery-thumb {
    flex: 0 0 105px;
    width: 105px;
    height: 72px;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    overflow: hidden;
    opacity: .78;
    transition: border-color .25s ease, border-radius .25s ease, opacity .25s ease, box-shadow .25s ease;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-thumb:hover {
    opacity: 1;
}

.gallery-thumb.active {
    border-color: #f05f40;
    border-radius: 8px;
    opacity: 1;
    box-shadow: 0 0 0 1px rgba(240,95,64,0.3);
}

.gallery-thumb-arrow {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 70%;
    background: #e6e6e6;
    color: #777;
    font-size: 20px;
    line-height: 27px;
    font-weight: 400;
    text-align: center;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, opacity .2s ease;
}

.gallery-thumb-arrow:hover {
    background: #d2d2d2;
    color: #333;
}

.gallery-thumb-arrow:disabled {
    opacity: .35;
    cursor: default;
}

.gallery-thumbs-wrapper.no-scroll .gallery-thumb-arrow {
    visibility: hidden;
}

.next-category {
    margin-top: 35px;
}

/* ===== LIGHTBOX GALERII PORTFOLIO ===== */
body.lightbox-open {
    overflow: hidden;
}

.portfolio-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(0,0,0,0.88);
    opacity: 0;
    transition: opacity .25s ease;
}

.portfolio-lightbox.active {
    display: flex;
    opacity: 1;
}

.portfolio-lightbox-content {
    max-width: 1180px;
    width: 100%;
    text-align: center;
    color: #fff;
    animation: portfolioLightboxFade .25s ease;
}

.portfolio-lightbox-content img {
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
    box-shadow: 0 20px 70px rgba(0,0,0,0.55);
    background: #111;
}

.portfolio-lightbox-caption {
    max-width: 820px;
    margin: 18px auto 0;
}

.portfolio-lightbox-caption h3 {
    margin: 0 0 8px;
    color: #fff;
    font-weight: 700;
}

.portfolio-lightbox-caption p {
    margin: 0;
    color: rgba(255,255,255,0.78);
    font-size: 15px;
}

.portfolio-lightbox-close {
    position: fixed;
    top: 22px;
    right: 28px;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: #f05f40;
    color: #fff;
    font-size: 34px;
    line-height: 42px;
    text-align: center;
    cursor: pointer;
    z-index: 10001;
}

.portfolio-lightbox-close:hover {
    background: #ee4b28;
}

@keyframes portfolioLightboxFade {
    from { opacity: 0; transform: scale(.98); }
    to { opacity: 1; transform: scale(1); }
}

@media (max-width: 991px) {
    .gallery-main-row { display: block; }
    .gallery-desc-col { border-left: 1px solid #eee; border-top: none; padding: 25px 20px; text-align: center; }
    .gallery-main-img { max-height: none; }
}

@media (max-width: 480px) {
    .gallery-thumbs-wrapper { gap: 6px; max-width: 100%; }
    .gallery-thumbs-viewport { max-width: calc(100vw - 96px); }
    .gallery-thumbs { gap: 8px; }
    .gallery-thumb { flex-basis: 82px; width: 82px; height: 58px; }
    .gallery-thumb-arrow { flex-basis: 28px; width: 28px; height: 28px; font-size: 18px; line-height: 25px; }
    .portfolio-lightbox { padding: 18px; }
    .portfolio-lightbox-close { top: 12px; right: 12px; }
    .portfolio-lightbox-caption p { font-size: 14px; }
}

/* ===== GALERIA PREMIUM: 6 MINIATUR + FADE + INERTIA + SWIPE ===== */
.portfolio-gallery {
    max-width: 1180px;
    margin: 0 auto;
}

.gallery-main-img {
    cursor: zoom-in;
    opacity: 1;
    transition: opacity .24s ease, transform .24s ease;
    will-change: opacity, transform;
}

.gallery-main-img.is-fading {
    opacity: 0;
    transform: scale(.992);
}

.gallery-desc-col.text-fade-in {
    animation: galleryTextFade .38s ease both;
}

@keyframes galleryTextFade {
    from { opacity: .35; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.gallery-thumbs-wrapper.premium-thumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 100%;
    margin: 30px auto 0;
}

.gallery-thumbs-viewport {
    overflow: hidden;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    cursor: grab;
    touch-action: pan-y;
}

.gallery-thumbs-viewport.is-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.gallery-thumbs {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    align-items: center;
    margin: 0;
    padding: 4px 0;
}

.gallery-thumb {
    flex: 0 0 105px;
    width: 105px;
    height: 72px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    background: transparent;
    overflow: hidden;
    opacity: .72;
    cursor: pointer;
    transition: border-color .24s ease, border-radius .24s ease, opacity .24s ease, transform .24s ease;
}

.gallery-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.gallery-thumb:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.gallery-thumb.active {
    opacity: 1;
    border-color: #f05f40;
    border-radius: 8px;
    box-shadow: 0 8px 18px rgba(240,95,64,.14);
}

.gallery-thumb-arrow {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    background: #eeeeee;
    color: #777777;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, opacity .2s ease, transform .2s ease;
}

.gallery-thumb-arrow:hover {
    background: #dddddd;
    color: #222222;
    transform: scale(1.05);
}

.gallery-thumb-arrow:disabled {
    opacity: .28;
    cursor: default;
    transform: none;
}

.gallery-thumbs-wrapper.no-scroll .gallery-thumb-arrow {
    visibility: hidden;
}

@media (max-width: 767px) {
    .gallery-thumbs-wrapper.premium-thumbs {
        gap: 8px;
    }
    .gallery-thumb {
        flex-basis: 82px;
        width: 82px;
        height: 58px;
    }
    .gallery-thumbs {
        gap: 10px;
    }
    .gallery-thumb-arrow {
        flex-basis: 28px;
        width: 28px;
        height: 28px;
        font-size: 18px;
        line-height: 24px;
    }
}


/* FORCE PORTFOLIO CARDS RADIUS 8PX */
.portfolio-box,
.portfolio-item,
.portfolio-card,
.portfolio-box img,
.portfolio-item img,
.portfolio-card img,
#portfolio img,
#portfolio .portfolio-box,
#portfolio .portfolio-item,
#portfolio .portfolio-card,
.clients-portfolio img,
.clients-portfolio .portfolio-box,
.clients-portfolio .portfolio-item,
.clients-portfolio .portfolio-card {
    border-radius: 8px !important;
}


/* FORCE THUMBNAILS RADIUS 2PX */
.thumbnail,
.thumbnails img,
.gallery-thumb,
.gallery-thumbnails img,
.thumb,
.thumb img,
.portfolio-thumbnails img,
.portfolio-thumb img,
.swiper-slide img,
.gallery-nav img {
    border-radius: 2px !important;
}


/* FINAL GALLERY THUMB FIX */
.gallery-thumb,
.gallery-thumb img,
.gallery-thumbnails img,
.thumb,
.thumb img,
.swiper-slide,
.swiper-slide img,
.slick-slide img,
.portfolio-gallery-thumb,
.portfolio-gallery-thumb img {
    border-radius: 2px !important;
    overflow: hidden !important;
}

/* thin gray border same as gallery */
.gallery-thumb,
.thumb,
.swiper-slide,
.slick-slide,
.portfolio-gallery-thumb {
    border: 1px solid rgba(120,120,120,0.55) !important;
    box-shadow: none !important;
}

/* remove orange/red border */
.gallery-thumb.active,
.thumb.active,
.swiper-slide-active,
.slick-current,
.slick-active {
    border: 1px solid rgba(120,120,120,0.55) !important;
    box-shadow: none !important;
}


/* portfolio-btn-spacing-fix */
.hero-buttons,
.cta-buttons,
.about-buttons{
display:flex;
gap:24px;
flex-wrap:wrap;
}

@media(max-width:768px){
.hero-buttons,
.cta-buttons,
.about-buttons{
gap:14px;
}
}
