* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: var(--site-font, 'Montserrat', Arial, sans-serif);
    background: var(--site-bg, #f5f7fb);
    color: var(--site-text, #111827);
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HEADER */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(14px);
    z-index: 999;
    box-shadow: 0 2px 18px rgba(0,0,0,.08);
}

.nav-wrap {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
}

.brand img {
    height: 58px;
    max-width: 230px;
    object-fit: contain;
}

.brand span {
    font-size: 28px;
    font-weight: 900;
    color: #111827;
    letter-spacing: .8px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-nav a {
    color: #111827;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    transition: .25s;
}

.site-nav a:hover {
    color: var(--site-primary, #1e88e5);
}

.mobile-menu-btn {
    display: none;
    width: 44px;
    height: 44px;
    border: none;
    background: var(--site-primary, #1e88e5);
    border-radius: 12px;
    padding: 10px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    border-radius: 2px;
}

/* HERO */

.hero {
    height: 100vh;
    min-height: 720px;
    position: relative;
    overflow: hidden;
    background: var(--site-secondary, #111827);
    padding-top: 88px;
}

.slider-bg,
.slide {
    position: absolute;
    inset: 0;
}

.slide {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.04);
    transition: opacity 1s ease, transform 6s ease, visibility 1s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.slide-image,
.slide video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.slide-image {
    background-size: cover;
    background-position: center;
}

.fallback-slide {
    background:
        linear-gradient(135deg, rgba(30,136,229,.65), rgba(17,24,39,.8)),
        url('../img/hero.jpg');
    background-size: cover;
    background-position: center;
}

.slide video {
    object-fit: cover;
}

.slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0,0,0,.80) 0%,
        rgba(0,0,0,.55) 45%,
        rgba(0,0,0,.22) 100%
    );
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 820px;
    color: #fff;
}

.slide-badge {
    display: inline-block;
    width: fit-content;
    background: rgba(30,136,229,.22);
    border: 1px solid rgba(255,255,255,.30);
    padding: 9px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.4px;
    margin-bottom: 18px;
}

.slide-content h1 {
    font-size: clamp(38px, 5vw, 70px);
    line-height: 1.08;
    margin-bottom: 22px;
}

.slide-content p {
    font-size: clamp(16px, 2vw, 21px);
    line-height: 1.75;
    max-width: 720px;
    margin-bottom: 32px;
    color: #f1f5f9;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--site-primary, #1e88e5);
    color: #fff;
    padding: 15px 28px;
    border-radius: 13px;
    font-weight: 900;
    text-decoration: none;
    transition: .25s;
    border: none;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(30,136,229,.25);
}

.btn:hover {
    transform: translateY(-2px);
    background: var(--site-secondary, #111827);
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    box-shadow: none;
}

.btn-outline:hover {
    background: #fff;
    color: #111827;
}

/* SLIDER CONTROLS */

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 52px !important;
    height: 52px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    border: 1px solid rgba(255,255,255,.45) !important;
    background: rgba(0,0,0,.35) !important;
    color: #fff !important;
    font-size: 34px !important;
    line-height: 1 !important;
    cursor: pointer;
    backdrop-filter: blur(8px);
}

.slider-arrow.prev {
    left: 28px;
}

.slider-arrow.next {
    right: 28px;
}

.slider-arrow:hover {
    background: var(--site-primary, #1e88e5) !important;
    transform: translateY(-50%) scale(1.06);
}

.slider-arrow span {
    display: block;
    margin-top: -4px;
}

.slider-dots {
    position: absolute;
    z-index: 20;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.slider-dots button {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.45);
    cursor: pointer;
    padding: 0;
}

.slider-dots button.active {
    width: 32px;
    border-radius: 20px;
    background: var(--site-primary, #1e88e5);
}

/* TRUST STRIP */

.trust-strip {
    position: relative;
    margin-top: -50px;
    z-index: 5;
}

.trust-grid {
    background: #fff;
    border-radius: 24px;
    padding: 26px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    box-shadow: 0 24px 55px rgba(15,23,42,.14);
    border: 1px solid #e5e7eb;
}

.trust-grid div {
    display: grid;
    gap: 6px;
    text-align: center;
    padding: 10px;
}

.trust-grid svg {
    width: 34px;
    height: 34px;
    color: var(--site-primary, #1e88e5);
    margin: 0 auto 6px;
}

.trust-grid strong {
    color: #111827;
    font-size: 16px;
}

.trust-grid span {
    color: #64748b;
    font-size: 13px;
}

/* GENERAL */

.section {
    padding: 105px 0;
}

.light {
    background: #fff;
}

.section-head {
    max-width: 780px;
    margin: 0 auto 46px;
    text-align: center;
}

.section-tag {
    color: var(--site-primary, #1e88e5);
    font-weight: 900;
    letter-spacing: 2px;
    font-size: 13px;
}

.section-head h2,
.about-content h2,
.quote-text h2 {
    font-size: clamp(30px, 4vw, 46px);
    margin: 12px 0 14px;
    color: #111827;
    line-height: 1.16;
}

.section-head p {
    color: #64748b;
    line-height: 1.75;
}

/* ABOUT */

.about-pro {
    background:
        radial-gradient(circle at top left, rgba(30,136,229,.10), transparent 32%),
        #f8fafc;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 34px;
    align-items: center;
}

.about-content {
    background: #fff;
    border-radius: 26px;
    padding: 36px;
    box-shadow: 0 22px 55px rgba(15,23,42,.08);
    border: 1px solid #e5e7eb;
}

.about-content p {
    color: #475569;
    line-height: 1.9;
    font-size: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.about-stats div {
    background: #f8fafc;
    border-radius: 18px;
    padding: 18px;
    border: 1px solid #e5e7eb;
}

.about-stats strong {
    display: block;
    font-size: 24px;
    color: var(--site-primary, #1e88e5);
    margin-bottom: 6px;
}

.about-stats span {
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}

.about-side {
    display: grid;
    gap: 18px;
}

.about-feature {
    background: #fff;
    border-radius: 22px;
    padding: 25px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 45px rgba(15,23,42,.07);
    transition: .25s;
}

.about-feature:hover {
    transform: translateY(-4px);
}

.about-feature svg {
    width: 38px;
    height: 38px;
    color: var(--site-primary, #1e88e5);
    margin-bottom: 14px;
}

.about-feature h3 {
    margin-bottom: 8px;
    color: #111827;
}

.about-feature p {
    color: #64748b;
    line-height: 1.7;
}

/* CARDS */

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: #fff;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 20px 50px rgba(15,23,42,.08);
    border: 1px solid #e5e7eb;
    transition: .25s;
}

.card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--site-primary, #1e88e5), #1565c0);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 18px;
    box-shadow: 0 12px 28px rgba(30,136,229,.22);
}

.card-icon svg {
    width: 26px;
    height: 26px;
}

.card h3 {
    margin-bottom: 11px;
    font-size: 21px;
    color: #111827;
}

.card p {
    color: #64748b;
    line-height: 1.75;
}

.image-card {
    padding: 0;
    overflow: hidden;
}

.image-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}

.image-card h3 {
    padding: 20px 22px 8px;
}

.image-card p {
    padding: 0 22px 22px;
}

/* GALLERY */

.gallery-front-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.gallery-front-card {
    position: relative;
    height: 240px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(15,23,42,.12);
    cursor: pointer;
}

.gallery-front-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}

.gallery-front-card:hover img {
    transform: scale(1.08);
}

.gallery-front-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 18px;
    background: linear-gradient(transparent, rgba(0,0,0,.78));
    color: #fff;
}

.gallery-front-overlay h3 {
    margin: 0;
    font-size: 17px;
}

/* BLOG */

.blog-card {
    position: relative;
}

.blog-date {
    display: inline-block;
    background: rgba(30,136,229,.10);
    color: var(--site-primary, #1e88e5);
    padding: 7px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 15px;
}

/* QUOTE */

.quote-section {
    background:
        linear-gradient(135deg, rgba(30,136,229,.08), rgba(17,24,39,.04)),
        #f8fafc;
}

.quote-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 32px;
    align-items: center;
}

.quote-text p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 24px;
}

.quote-text ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.quote-text li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: #334155;
}

.quote-text svg {
    color: var(--site-primary, #1e88e5);
}

.quote-form-card {
    background: #fff;
    border-radius: 26px;
    padding: 32px;
    box-shadow: 0 22px 55px rgba(15,23,42,.10);
    border: 1px solid #e5e7eb;
}

/* FORMS */

.main-form {
    display: grid;
    gap: 15px;
}

input,
textarea,
select {
    width: 100%;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 13px;
    font-size: 15px;
    font-family: inherit;
    background: #f8fafc;
}

textarea {
    min-height: 130px;
    resize: vertical;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--site-primary, #1e88e5);
    box-shadow: 0 0 0 4px rgba(30,136,229,.12);
}

button {
    padding: 15px;
    border: none;
    background: var(--site-primary, #1e88e5);
    color: #fff;
    border-radius: 13px;
    font-weight: 900;
    cursor: pointer;
}

/* CONTACT */

.contact-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 30px;
    align-items: stretch;
}

.contact-info-card,
.contact-form-card {
    background: #fff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 50px rgba(15,23,42,.09);
    border: 1px solid #e5e7eb;
}

.contact-info-card {
    background:
        linear-gradient(135deg, rgba(30,136,229,.08), rgba(17,24,39,.03)),
        #fff;
}

.contact-item {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid #eef2f7;
}

.contact-item:last-of-type {
    border-bottom: none;
}

.contact-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--site-primary, #1e88e5), #1565c0);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(30,136,229,.25);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.2;
}

.contact-item h3 {
    font-size: 17px;
    margin-bottom: 6px;
}

.contact-item a,
.contact-item p {
    color: #475569;
    text-decoration: none;
    line-height: 1.7;
    word-break: break-word;
}

.contact-item a:hover {
    color: var(--site-primary, #1e88e5);
}

.contact-whatsapp {
    display: block;
    text-align: center;
    margin-top: 24px;
    padding: 16px;
    border-radius: 14px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 12px 30px rgba(37,211,102,.25);
}

.contact-form-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-map {
    margin-top: 34px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15,23,42,.10);
    border: 1px solid #e5e7eb;
}

.contact-map iframe {
    width: 100%;
    height: 360px;
    border: 0;
    display: block;
}

/* ALERT */

.alert {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    border-radius: 14px;
    margin-bottom: 20px;
    position: relative;
    animation: fadeIn .5s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.alert.success {
    background: #e6f9ec;
    border-left: 6px solid #28a745;
}

.alert-icon {
    color: #28a745;
    font-weight: 900;
}

.alert-content strong {
    display: block;
    color: #155724;
}

.alert-content p {
    margin: 4px 0 0;
    color: #2f6f3e;
    font-size: 14px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FOOTER */

footer {
    background: var(--site-secondary, #111827);
    color: #fff;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr;
    gap: 30px;
}

footer h2,
footer h3 {
    color: #fff;
    margin-bottom: 14px;
}

footer p,
footer a {
    color: #cbd5e1;
    text-decoration: none;
    line-height: 1.8;
    display: block;
}

footer a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    margin-top: 38px;
    padding: 18px;
    border-top: 1px solid rgba(255,255,255,.08);
    color: #94a3b8;
}

/* WHATSAPP */

.whatsapp-fixed {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25d366;
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 12px 28px rgba(37,211,102,.32);
}

.whatsapp-fixed svg {
    width: 27px;
    height: 27px;
}

/* LIGHTBOX */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.86);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 92vw;
    max-height: 88vh;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

/* TABLET */

@media(max-width: 1100px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-front-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .site-nav {
        gap: 13px;
    }

    .site-nav a {
        font-size: 13px;
    }
}

/* MOBILE */

@media(max-width: 860px) {
    .nav-wrap {
        min-height: 76px;
    }

    .brand img {
        height: 48px;
        max-width: 185px;
    }

    .brand span {
        font-size: 23px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .site-nav {
        position: fixed;
        top: 76px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 12px 5%;
        box-shadow: 0 16px 30px rgba(0,0,0,.12);
        display: none;
    }

    .site-nav.active {
        display: flex;
    }

    .site-nav a {
        width: 100%;
        padding: 14px 0;
        border-bottom: 1px solid #eef2f7;
        font-size: 15px;
    }

    .hero {
        min-height: 650px;
        padding-top: 76px;
    }

    .slide::after {
        background: rgba(0,0,0,.64);
    }

    .slide-content {
        justify-content: center;
        padding-left: 30px;
        padding-right: 30px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn {
        width: 100%;
        max-width: 270px;
    }

    .slider-arrow {
        width: 40px !important;
        height: 40px !important;
        font-size: 28px !important;
    }

    .slider-arrow.prev {
        left: 10px;
    }

    .slider-arrow.next {
        right: 10px;
    }

    .slider-dots {
        bottom: 22px;
    }

    .section {
        padding: 75px 0;
    }

    .trust-strip {
        margin-top: 0;
        padding: 22px 0;
        background: #f8fafc;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        border-radius: 20px;
    }

    .about-grid,
    .quote-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .grid,
    .gallery-front-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-content,
    .about-feature,
    .card,
    .quote-form-card,
    .contact-info-card,
    .contact-form-card {
        padding: 24px;
        border-radius: 20px;
    }

    .image-card {
        padding: 0;
    }

    .gallery-front-card {
        height: 220px;
    }

    .contact-item {
        gap: 13px;
    }

    .contact-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
    }

    .contact-icon svg {
        width: 21px;
        height: 21px;
    }

    .contact-map iframe {
        height: 280px;
    }

    .whatsapp-fixed {
        width: 52px;
        height: 52px;
        right: 16px;
        bottom: 16px;
    }
}

/* SMALL MOBILE */

@media(max-width: 430px) {
    .container {
        width: 92%;
    }

    .brand img {
        height: 42px;
        max-width: 160px;
    }

    .slide-content {
        padding-left: 22px;
        padding-right: 22px;
    }

    .slide-badge {
        font-size: 11px;
    }

    .slide-content h1 {
        font-size: 34px;
    }

    .contact-item {
        flex-direction: column;
    }

    .contact-icon {
        margin-bottom: 2px;
    }

    input,
    textarea {
        font-size: 14px;
    }

    footer {
        padding-top: 42px;
    }
}/* MOBİL RENK DÜZELTME */
a {
    -webkit-tap-highlight-color: transparent;
}

.site-nav a,
.card h3,
.image-card h3,
.contact-item a,
.contact-whatsapp,
footer a {
    color: inherit;
}

.site-nav a {
    color: #111827 !important;
}

.site-nav a:hover {
    color: var(--site-primary, #1e88e5) !important;
}

.card h3,
.image-card h3 {
    color: #111827 !important;
}

.contact-item a {
    color: #475569 !important;
    text-decoration: none !important;
}

.contact-item a:hover {
    color: var(--site-primary, #1e88e5) !important;
}

.contact-whatsapp {
    color: #fff !important;
}

@media(max-width: 860px) {
    .site-nav a {
        color: #111827 !important;
    }

    .site-nav a:hover {
        color: var(--site-primary, #1e88e5) !important;
    }

    .contact-item a,
    .contact-item p {
        color: #475569 !important;
        text-decoration: none !important;
    }
}
.project-thumbs {
    display: flex;
    gap: 8px;
    padding: 0 18px 14px;
    margin-top: -6px;
    overflow-x: auto;
}

.project-thumbs img {
    width: 58px !important;
    height: 46px !important;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid #e5e7eb;
    transition: .2s;
}

.project-thumbs img:hover {
    border-color: var(--site-primary, #1e88e5);
    transform: scale(1.05);
}
.project-card-front > img {
    cursor: pointer;
}

.project-thumbs {
    display: flex;
    gap: 8px;
    padding: 12px 18px 0;
    overflow-x: auto;
}

.project-thumbs img {
    width: 58px !important;
    height: 46px !important;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid #e5e7eb;
    transition: .2s;
}

.project-thumbs img:hover {
    border-color: var(--site-primary, #1e88e5);
    transform: scale(1.05);
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.88);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,.45);
}

.lightbox-arrow,
.lightbox-close {
    position: absolute;
    border: none;
    color: #fff;
    cursor: pointer;
    z-index: 100000;
}

.lightbox-arrow {
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(255,255,255,.18);
    font-size: 42px;
    line-height: 1;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-close {
    top: 25px;
    right: 30px;
    background: #dc2626;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 26px;
}

@media(max-width:700px) {
    .lightbox-arrow {
        width: 42px;
        height: 42px;
        font-size: 32px;
    }

    .lightbox-prev {
        left: 12px;
    }

    .lightbox-next {
        right: 12px;
    }
}
.lightbox-arrow {
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,.18) !important;
    color: #fff !important;
    font-size: 42px !important;
    line-height: 56px !important;
    text-align: center !important;
    padding: 0 !important;
}

.lightbox-prev {
    left: 35px !important;
}

.lightbox-next {
    right: 35px !important;
}

.lightbox-arrow:hover {
    background: var(--site-primary, #1e88e5) !important;
}

@media(max-width:700px) {
    .lightbox-arrow {
        width: 44px !important;
        height: 44px !important;
        font-size: 32px !important;
        line-height: 44px !important;
    }

    .lightbox-prev {
        left: 12px !important;
    }

    .lightbox-next {
        right: 12px !important;
    }
}