/* =========================
   FONTS
========================= */

@font-face {
	font-family: 'Bodoni';
	src: url('../fonts/Bodoni/BodoniBoldItalic.otf');
	font-weight: 700;
}

@font-face {
	font-family: 'Bodoni';
	src: url('../fonts/Bodoni/BodoniBold.otf');
	font-weight: 600;
}

@font-face {
	font-family: 'Helvetica';
	src: url('../fonts/HelveticaWorld/HelveticaWorld-Regular.ttf');
	font-weight: 400;
}

/* =========================
   GLOBAL
========================= */

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Google Sans", sans-serif;
	cursor: default;
}

p {
	font-family: "Google Sans", sans-serif;
}

a {
	cursor: pointer;
}

h2 {
    text-transform: uppercase;
}

h2,
h5 {
	font-weight: 700;
	letter-spacing: 2px;
}

/* =========================
   BUTTONS & FORMS
========================= */

.btn-design-1 {
	position: relative;
	border-radius: 50px;
	background: #000;
	color: #fff;
	text-transform: uppercase;
	padding: 1em 2em;
	font-weight: 700;
	border: 1px solid rgba(255,255,255,0.15);
	overflow: hidden;

	/* subtle depth */
	box-shadow: 
		inset 0 1px 0 rgba(255,255,255,0.1),
		0 4px 15px rgba(0,0,0,0.4);

	transition: all 0.3s ease;
}

/* glass shine layer */
.btn-design-1::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;

	background: linear-gradient(
		120deg,
		transparent,
		rgba(255,255,255,0.25),
		transparent
	);

	transition: all 0.5s ease;
}

/* hover */
.btn-design-1:hover {
	background: #111;
	transform: translateY(-2px);

	box-shadow: 
		inset 0 1px 0 rgba(255,255,255,0.2),
		0 8px 25px rgba(0,0,0,0.6);
}

/* animate shine */
.btn-design-1:hover::before {
	left: 100%;
}

.form-control {
	border-radius: 0;
	padding: 1em;
}

/* =========================
   CONTAINERS
========================= */

.container-narrow {
	width: 100%;
	padding-inline: var(--bs-gutter-x, 0.75rem);
	margin-inline: auto;
}

@media (min-width: 576px) {
	.container-narrow {
		max-width: 480px;
	}
}

@media (min-width: 768px) {
	.container-narrow {
		max-width: 620px;
	}
}

@media (min-width: 992px) {
	.container-narrow {
		max-width: 760px;
	}
}

@media (min-width: 1200px) {
	.container-narrow {
		max-width: 900px;
	}
}

@media (min-width: 1400px) {
	.container-narrow {
		max-width: 1040px;
	}
}


/* =========================
   NAVBAR BACKGROUND
========================= */

.custom-navbar {
	background: rgba(0, 0, 0, 1);
	backdrop-filter: blur(8px);
}

/* homepage initial (transparent look) */
.home .custom-navbar {
	background: transparent;
	backdrop-filter: blur(2px);
}

/* when scrolled */
.home .custom-navbar.scrolled {
	background: rgba(0, 0, 0, 0.85);
}

/* =========================
   LOGO
========================= */

.navbar-brand img {
	max-width: 100px;
}

/* =========================
   MAIN MENU
========================= */

.navbar-nav {
	align-items: center;
}

.navbar .menu-item {
	list-style: none;
	position: relative;
	margin: 0 15px;
	text-align: center;
}

/* links */
.navbar-nav a {
	position: relative;
	color: #fff;
	font-weight: 500;
	letter-spacing: 1px;
	text-transform: uppercase;
	display: inline-block;
	padding: 5px 0;
	text-decoration: none;
	transition: color 0.3s ease;
}

/* =========================
   UNDERLINE ANIMATION
========================= */

/* hidden line */
.navbar-nav a::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -6px;
	width: 0;
	height: 2px;
	background-color: #fff;
	transform: translateX(-50%);
	transition: width 0.3s ease;
}

/* hover = line draws */
.navbar-nav a:hover::after {
	width: 100%;
}

/* hover text color */
.navbar-nav a:hover {
	color: #6f6f6f;
}

/* active menu (WordPress classes) */
.current-menu-item > a::after,
#menu-nav li.is-active > a::after {
    width: 100%;
}

/* optional: active style tweak */
.navbar-nav .current-menu-item > a,
.navbar-nav .current_page_item > a {
	color: #fff;
}

/* =========================
   SUB MENU
========================= */

.navbar .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	background: rgba(0, 0, 0, 0.95);
	padding: 10px 0;
	margin-top: 15px;
	min-width: 220px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
	z-index: 999;
}

/* show on hover (desktop) */
@media (min-width: 992px) {
	.navbar .menu-item-has-children:hover > .sub-menu {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
	}
}

/* =========================
   MOBILE
========================= */

@media (max-width: 991px) {

	.navbar .menu-item {
		margin: 10px 0;
	}

	.navbar .nav-link {
		display: block;
	}

	/* disable underline animation on mobile (optional cleaner look) */
	.navbar-nav a::after {
		display: none;
	}

	/* show submenu always */
	.navbar .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		background: transparent;
		padding-left: 15px;
		margin-top: 5px;
	}

	.navbar .sub-menu a {
		padding: 8px 15px;
		font-size: 13px;
	}
}

/* =========================
   TOGGLER
========================= */

.navbar-toggler-icon {
	filter: invert(1);
}

.navbar-toggler:focus {
	box-shadow: none;
}

/* =========================
   PAGE LOADER
========================= */
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000; /* BLACK BACKGROUND */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.loader-logo img {
  width: 90px;
  animation: pulse 1.2s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.25);
    opacity: 0.4;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* hidden state */
#page-loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* =========================
   HERO
========================= */
#home.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

#home.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    object-position: center center;
}

#home .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}

#home.hero .container{
    position: absolute;
	bottom: 0;
    z-index: 2;
	max-width: 100vw;
}

#home .btn-design-1{
	background: #0d6efd;
}

/* =========================
   SCROLL INDICATOR
========================= */

.scroll-down {
	position: absolute;
	right: 40px;
	bottom: 60px;
	writing-mode: vertical-rl;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-size: 14px;
	color: #fff;
	display: flex;
	align-items: center;
	gap: 15px;
	opacity: 0.8;
	transition: opacity 0.3s ease;
    text-decoration: none;
}

.scroll-down:hover {
	opacity: 1;
}

.scroll-down .arrow {
	width: 1px;
	height: 50px;
	background: #fff;
	position: relative;
	animation: scrollMove 2s infinite;
}

.scroll-down .arrow::after {
	content: "";
	position: absolute;
	bottom: -6px;
	left: -4px;
	width: 8px;
	height: 8px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(135deg);
}

@keyframes scrollMove {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(8px);
	}
}

/* Responsive scroll indicator */
@media (max-width: 768px) {
	.scroll-down {
		right: 20px;
		bottom: 30px;
		font-size: 12px;
		letter-spacing: 1.5px;
		gap: 10px;
	}

	.scroll-down .arrow {
		height: 35px;
	}
}

@media (max-width: 480px) {
	.scroll-down {
		right: 15px;
		bottom: 20px;
		font-size: 10px;
		letter-spacing: 1px;
		gap: 8px;
	}

	.scroll-down .arrow {
		height: 25px;
	}
}

/* =========================
   ABOUT
========================= */

#about {
	text-align: center;
}

#about p {
	width: 80%;
	line-height: 1.5;
	margin: 0 auto;
}

/* =========================
   SERVICES
========================= */

.services-bg {
	height: 70vh;
	background: url('../images/whatwedo_banner.jpg') center / cover no-repeat fixed;
}

#services p {
	line-height: 1.5;
	text-align: left;
	text-align: justify;
}

#services h2 {
	margin-bottom: 0;
	margin-top: 1rem;
	text-transform: uppercase;
}

#services h3 {
	margin-bottom: 20px;
    font-size: 0.9em;
    color: #6c757d;
}

#services h4 {
	text-align: left;
	word-wrap: break-word;
}

.tab-services {
	padding: 2em;
	border: 2px solid #e9e9e9ed;
	cursor: pointer;
	transition: border-color 0.3s ease;
}

.tab-services:hover {
	border-color: #000;
}

.tab-services img {
	max-width: 66px;
	padding: 1em 0 2em;
}

@media (max-width: 992px) {

	#services h4 {
		font-size: 1.2em;
		word-wrap: break-word;
	}
}

/* =========================
   CONTACT
========================= */

.branch-name{
   font-weight:700;
   font-size:20px;
   margin-bottom:10px;
}

.branch-card{
   border:1px solid #e5e5e5;
   padding:20px;
   height:100%;
   background:#fff;
   transition:0.25s;
   border-radius: 20px;
}

.branch-card a:hover {
	color: #666;
}

.branch-card:hover{
   box-shadow:0 6px 18px rgba(0,0,0,0.08);
}

.branch-card a {
	color: #000;
	text-decoration: none;
}

.branch-row{
   display:flex;
   align-items:flex-start;
   margin-bottom:8px;
   font-size:15px;
}

.branch-row i{
   width:22px;
   margin-right:8px;
   margin-top:2px;
}

.branch-social a{
   margin-right:15px;
   text-decoration:none;
   font-weight:500;
}

.branch-social i{
   margin-right:5px;
}

.branch-social a:hover{
   text-decoration:none;
}

.contact-btn-container {
	text-align: center;
	/* margin: 1em 0 0; */
}

.contact-section .branch-actions,
.branches-container .branch-actions {
	margin-top:12px;
	display:flex;
	gap:10px;
	flex-wrap:wrap;
}

.contact-section .branch-actions i,
.branches-container .branch-actions i {
	padding-right: 5px;
}

.contact-section .branch-actions a,
.branches-container .branch-actions a{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	padding:8px 14px;
	font-size:13px;
	font-weight:600;
	text-transform:uppercase;
	letter-spacing:0.5px;
	border-radius:50px;
	white-space:nowrap;
}

/* Book Now */
.contact-section .btn-book,
.branches-container .btn-book{
	background:#000;
	color:#fff;
	border:1px solid #000;
}

.contact-section .btn-book:hover,
.branches-container .btn-book:hover
{
	background:#333;
	border-color:#333;
	color:#fff;
}

/* Get Directions */
.contact-section .btn-direction,
.branches-container .btn-direction{
	background:#fff;
	color:#000;
	border:1px solid #000;
}

.contact-section .btn-direction:hover,
.branches-container .btn-direction:hover{
	background:#000;
	color:#fff;
}

/* =========================
   SMOOTH BUTTON TRANSITION
========================= */

.contact-section .btn-book,
.contact-section .btn-direction,
.branches-container .btn-book,
.branches-container .btn-direction{
	transition: 
		background-color 0.3s ease,
		color 0.3s ease,
		border-color 0.3s ease,
		transform 0.2s ease;
}

.contact-section .btn-book:hover,
.contact-section .btn-direction:hover,
.branches-container .btn-book:hover,
.branches-container .btn-direction:hover{
	transform: translateY(-1px);
}

/* =========================
   VIEW BRANCH BUTTON
========================= */

.contact-section .btn-branch,
.branches-container .btn-branch{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	padding:8px 14px;
	font-size:13px;
	font-weight:600;
	text-transform:uppercase;
	letter-spacing:0.5px;
	background:#f5f5f5;
	color:#000;
	border:1px solid #ddd;
	transition: all 0.3s ease;
}

.contact-section .btn-branch i,
.branches-container .btn-branch i{
	margin-right:6px;
}

.contact-section .btn-branch:hover,
.branches-container .btn-branch:hover{
	background:#000;
	color:#fff;
	border-color:#000;
	transform: translateY(-1px);
}


/* =========================
   FOOTER
========================= */

footer {
	background-color:#000; 
	padding:20px 0;
}

footer img {
	max-width:120px; 
	height:auto;
}

/* =========================
   SINGLE PAGE
========================= */
.single-page {
	padding-top: 3rem;
	padding-bottom: 3rem;
}


/* =========================
   SINGLE PAGE BRANCHES
========================= */
.branches-container {
	margin: 1em 0 0;
}

.branches-container h2 {
	text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    letter-spacing: 2px;
	margin-top: 1em;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 2 columns */
    gap: 50px;
}

.branches-grid .branch-card:first-child {
    grid-column: 1 / -1;
	width: 60%;
    margin: 0 auto;
}

.branches-container .branch-card {
	margin: 1em 0;
	flex-direction: column;
}

.branches-container .branch-card .btn-container {
	margin: 2em 0 1em;
}

.branches-container .branch-card a.btn-design-1 {
	color: #FFF;
}

.branches-container .branch-card {
    display: flex;
    align-items: stretch; /* IMPORTANT */
    gap: 20px;
}

/* LEFT side */
.branch-content-left {
    flex: 1;
    padding: 15px 0;
}

/* RIGHT side FULL IMAGE */
.branch-thumb-right {
    
    flex-shrink: 0;
    overflow: hidden;
    /* border-radius: 12px; */
	width: 100%;
	order: -1; /* moves image to top */
}

/* Make image fill entire height */
.branch-thumb-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background-color: #000;
    max-height: 300px;
    border-radius: 20px;
    height: 300px;
}

@media (max-width: 768px) {
    .branches-grid {
        grid-template-columns: 1fr; /* stack on mobile */
    }

	.branches-grid .branch-card:first-child {
		width: 100%;
	}
}

@media (max-width: 768px) {
	.branches-container .branch-card {
		flex-direction: column;
	}

	.branch-thumb-right {
		width: 100%;
		order: -1; /* moves image to top */
	}

	.branch-thumb-right img {
		height: 200px; /* optional: control height */
	}
}

/* BRANCH SINGLE */
/* GLOBAL RESET FEEL */
.branch-page {
    background: #fff;
    color: #111;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
}

.branch-page .services {
	margin: 3em 0;
}


/* CONTAINER */
.content-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1em 20px;
}

/* ================= HERO ================= */
.hero {
    position: relative;
    height: 70vh;
    min-height: 520px;
    overflow: hidden;
}

.hero-media {
	width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2),
        rgba(0,0,0,0.65)
    );
}

.hero-content {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    width: 90%;
}

.hero-content h1 {
    font-size: 3rem;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.hero-content p {
    opacity: 0.85;
}

/* ================= INFO GRID ================= */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 2em;
}

.info-grid h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777;
    margin-bottom: 8px;
}

.info-grid p {
    font-size: 1rem;
    line-height: 1.6;
}

/* ================= CTA ROW ================= */
/* =========================
   CTA ROW (MATCH EXISTING BUTTON SYSTEM)
========================= */

.cta-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

/* Base CTA buttons */
.cta-row a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0; /* keep consistent with your system */
}

/* =========================
   PRIMARY (Google Maps)
========================= */

.cta-row .btn-primary {
    background: #fff;
    color: #000;
    border: 1px solid #000;
}

.cta-row .btn-primary:hover {
    background: #000;
    color: #fff;
    transform: translateY(-1px);
}

/* =========================
   SECONDARY (Facebook Message)
========================= */

.cta-row .btn-secondary {
    background: #000;
    color: #fff;
    border: 1px solid #000;
}

.cta-row .btn-secondary:hover {
    background: #333;
    border-color: #333;
    color: #fff;
    transform: translateY(-1px);
}

/* =========================
   SMOOTH TRANSITION (GLOBAL FEEL MATCH)
========================= */

.cta-row .btn-primary,
.cta-row .btn-secondary {
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease,
        transform 0.2s ease;
}

.cta-row .btn-primary i,
.cta-row .btn-secondary i{
	margin-right: 5px;
}

/* ================= CONTENT ================= */
.page-content {
    max-width: 800px;
    margin: 0 auto 80px;
    line-height: 1.8;
    font-size: 1.05rem;
    color: #444;
}

/* ================= SERVICES ================= */

.services-section {
	background-color: #000000;
	color: #FFF;
}

.services h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}

.service-block {
    margin-bottom: 80px;
}

.service-head {
    max-width: 750px;
    margin: 0 auto 25px;
    text-align: center;
}

.service-head h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.service-row {
	margin: 2em 0;
	min-height: 350px;
}

.service-head p {
    color: #555;
}

.service-img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	/* object-fit: scale-down; */
	transition: transform 0.5s ease;
	border-radius: 20px;
}

.service-img:hover {
	transform: scale(1.03);
} 

/* ================= CAROUSEL ================= */
.carousel img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 14px;
}

/* ================= STICKY CTA ================= */
.sticky-cta {
    position: fixed;
    right: 24px;
    bottom: 24px;
    background: #1877f2;
    color: #fff;
    padding: 14px 22px;
    /* border-radius: 999px; */
    font-weight: 600;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: 0.25s ease;
	text-decoration: none;
}

.sticky-cta:hover {
    transform: scale(1.05);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .info-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cta-row {
        flex-direction: column;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .carousel img {
        height: 280px;
    }
}


/* =========================
   SERVICES SECTION
========================= */

.branch-page .services {
    margin-top: 50px;
    padding: 0 15px;
}

.branch-page .service-block {
    margin-bottom: 50px;
}

.branch-page .service-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
    position: relative;
}

.branch-page .service-title::after {
    content: '';
    display: block;
    width: 10%;
    height: 3px;
    background: #000000; /* accent color */
    margin-top: 8px;
    /* border-radius: 2px; */
}

/* =========================
   HORIZONTAL SCROLLABLE GALLERY
========================= */

.branch-page .service-gallery {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 15px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; /* smooth scroll on iOS */
}

/* hide scrollbar */
.branch-page .service-gallery::-webkit-scrollbar {
    display: none;
}
.branch-page .service-gallery {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* each card */
.branch-page .service-item {
    flex: 0 0 auto;
    width: 240px;
    scroll-snap-align: start;
    /* border-radius: 12px; */
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* image */
.branch-page .service-thumb {
    width: 100%;
    height: 160px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.25s ease;
    display: block;
}

/* hover effect */
.branch-page .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.branch-page .service-thumb:hover {
    transform: scale(1.05);
}

/* responsive tweaks */
@media (max-width: 768px) {
    .branch-page .service-item {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .branch-page .service-item {
        width: 160px;
    }
}

/* =========================
   LIGHTBOX MODAL (ANIMATED + CLEAN)
========================= */

.branch-page .img-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    justify-content: center;
    align-items: center;

    /* animation base */
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

/* ACTIVE STATE */
.branch-page .img-modal.show {
    display: flex;
    opacity: 1;
    transform: scale(1);
}

/* IMAGE */
.branch-page .img-modal img {
    max-width: 90%;
    max-height: 90%;
    /* border-radius: 10px; */

    transform: scale(0.9);
    transition: transform 0.25s ease;
}

/* IMAGE ACTIVE */
.branch-page .img-modal.show img {
    transform: scale(1);
}

/* CLOSE BUTTON */
.branch-page .close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 35px;
    color: #fff;
    cursor: pointer;

    opacity: 0;
    transform: translateY(-10px);
    transition: 0.2s ease;
}

.branch-page .img-modal.show .close-modal {
    opacity: 1;
    transform: translateY(0);
}

/* THUMB HOVER */
.branch-page .service-thumb {
    transition: transform 0.2s ease;
}

.branch-page .service-thumb:hover {
    transform: scale(1.03);
}

/* LIGHTBOX BASE */
.img-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.92);

    display: flex;
    justify-content: center;
    align-items: center;

    visibility: hidden;
    opacity: 0;

    z-index: 999999;

    transition: 0.25s ease;
}

/* MODAL BACKDROP */
.img-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    display: flex;
    justify-content: center;
    align-items: center;

    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
    z-index: 999999;
}

/* SHOW */
.img-modal.show {
    opacity: 1;
    visibility: visible;
}

/* IMAGE */
.img-modal img {
    max-width: 70%;
    max-height: 70%;
    /* border-radius: 10px; */
}

/* CLOSE */
.close-modal {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* arrows */
.swiper-button-next,
.swiper-button-prev {
    color: #ffffff;
}