@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root{
    --black: #000;
    --black-one: #1B1717;
    --white: #fff;
    --red: #8E1616;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    
}

main {
  flex: 1;
}

section {
    width: 100%;
    margin: 0;
    padding: 60px 80px; 
    box-sizing: border-box;
}


body {
    font-family: "Poppins", sans-serif;
    background-color: var(--white);
    color: var(--white);
}


/* hero */
.hero-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 20px 40px;
    width: 100%;
    max-width: none;
    margin: 0 auto;
    gap: 60px;
    min-height: 100vh;
    box-sizing: border-box;
    background-color: var(--black-one);
    flex-wrap: wrap;
}

.hero {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    flex: 1;
    text-align: left;
    max-width: 900px;
    padding: 40px 0 40px 40px;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 1s ease, transform 1s ease;
}

.hero-content.show {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.2s;
}

.hero-content h4 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--white);
    white-space: nowrap;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--white);
}

.hero-content h1 span {
    color: var(--red);
}

.hero-content h1 span img {
    height: 1em;
    vertical-align: middle;
}

.hero-content p {
    font-size: 1.4rem;
    color: var(--white);
    max-width: 800px;
    width: 100%;
    margin: 0 0 35px 0;
    line-height: 1.7;
    text-align: left;
}

.hero-title {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.hero-title:hover {
    color: var(--red);
}

.hero-title .logo-inline img {
    height: 1.5em;       /* mas proportional sa text */
    width: auto;
    display: inline-block;
    margin-left: -20px;   /* lapit sa "B" */
    margin-right: -20px;  /* lapit sa "T" */
    padding: 0;          /* siguraduhin walang padding */
    vertical-align: middle; /* pantay sa text */
    text-decoration: none;
}

.hero-title .logo-inline img:hover {
    filter: brightness(0) invert(1);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    padding: 20px 80px 0 0;
    margin-right: 0;
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 1s ease, transform 1s ease;
}

.hero-image.show {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
}

.hero-image img {
    max-width: 510px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.4));
    border-radius: 12px;
}

.buttons {
    display: flex;
    flex-direction: row;   
    gap: 15px;
    align-items: flex-start;
    justify-content: flex-start;
}

.buttons a {
    text-decoration: none;
    padding: 14px 36px;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: var(--red);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background-color: var(--white);
    color: var(--black);
    box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.4),
        inset -4px -4px 8px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--red);
}

.btn-secondary:hover {
    background-color: var(--red);
    color: var(--white);
    box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.25),
        inset -2px -2px 4px rgba(255, 255, 255, 0.5);
}

@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 40px 20px;
        gap: 40px;
        /* height: auto; */
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
        padding: 20px 0;
    }

    .hero {
        padding: 0;
    }

    .hero-content p {
        margin: 0 auto 25px;
        text-align: center;
    }

    .hero-title{
        justify-content: center;
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image {
        justify-content: center;
        padding: 0;
    }

    .hero-image img {
        max-width: 85%;
    }
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        gap: 30px;
    }

    .hero-content {
        order: 1;
        margin-bottom: 20px;
    }

    .hero-content h4 {
        white-space: normal; 
        text-align: center; 
  }

    .hero-image {
        order: 2;
        display: flex;
        justify-content: center;
    }

    .hero-image img {
        max-width: 90%;
        height: auto;
    }

    .buttons {
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .buttons a {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .hero-image img {
        max-width: 100%;
    }
}

/* key features */
.features-section {
    background-color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.section-title {
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 15px;
    color: var(--black);
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-size: 1rem;
    color: var(--black);
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 40px;
    justify-items: center;
}

.feature-card {
    margin-top: 60px;
    background: var(--red);
    color: var(--white);
    padding: 60px 20px 60px 20px;
    border-radius: 20px;
    position: relative;
    text-align: left;
    max-width: 270px;
    width: 100%;
    opacity: 0;
    transform: scale(0.5) rotate(-15deg);
    transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.4s ease;
}

.feature-card.show {
    opacity: 1;
    transform: scale(1) rotate(0);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.05) rotate(2deg);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.25);
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0); 
    }
}

.feature-card:nth-child(1) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.6s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.8s;
}

.feature-card .icon {
    background: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -30px;
    left: 20px;
    border: 2px solid var(--black);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-card .icon img {
    width: 35px;
    height: 35px;
}

.feature-card h3 {
    margin-top: 40px;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        gap: 15px;
    }

    .feature-card {
        padding: 35px 15px 15px 15px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }
}

/* why choose us */
.why-choose-us {
    width: 100%;
    background-color: var(--white);
    padding: 70px 50px;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.why-choose-us.show {
    opacity: 1;
    transform: translateY(0);
}

.why-choose-us .why-container {
    max-width: 2000px;
    margin: 0 auto;
}

.why-choose-us-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}

.why-choose-us-header h2 {
    font-size: 55px;
    font-weight: 800;
    color: var(--black);
    margin: 0;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.nav-buttons button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--black);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.nav-buttons button i {
    font-size: 20px;
}

.nav-buttons button:hover {
    background: var(--red);
}

.why-choose-us-content {
    display: flex;
    flex-direction: row;
    gap: 5rem;
    align-items: center;
}

.features-why {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 4rem;
    flex: 1;
    min-height: 28rem;
    max-width: none;
}

.feature {
    max-width: 300px;
    opacity: 0;
    transform: scale(0.8) rotate(5deg);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.feature.show {
    opacity: 1;
    transform: scale(1) rotate(0);
}

.feature-number {
    font-size: 40px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.feature-title {
    font-size: 25px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.feature-text {
    font-size: 18px;
    color: var(--black);
    line-height: 1.6;
}

.image-box {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-frame {
    border: 8px solid var(--red);
    border-radius: 1rem;
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    height: 37rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: opacity 0.5s ease;
}

.image-frame img {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-frame img.active {
    display: block;
}


@media (max-width: 768px) {
    .why-choose-us {
        padding: 40px 20px;
    }

    .why-choose-us-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .why-choose-us-header h2 {
        font-size: 35px;
        margin-bottom: 1rem;
    }

    .why-choose-us-content {
        flex-direction: column;
        gap: 2rem;
    }

    .features-why {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature {
        max-width: 100%;
    }

    .feature-number {
        font-size: 30px;
    }

    .feature-title {
        font-size: 20px;
    }

    .feature-text {
        font-size: 15px;
    }

    .image-frame {
        height: 25rem;
    }

    .nav-buttons {
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .why-choose-us {
        padding: 30px 15px;
    }

    .why-choose-us-header h2 {
        font-size: 28px;
    }

    .feature-number {
        font-size: 25px;
    }

    .feature-title {
        font-size: 18px;
    }

    .feature-text {
        font-size: 14px;
    }

    .image-frame {
        height: 20rem;
    }
}

/* benefits */
.benefits {
    max-width: none;
    width: 100%;
    margin: 0 auto;
    padding: 2rem 1rem;
    text-align: center;
    background-color: var(--red);
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.benefits.show {
    opacity: 1;
    transform: translateY(0);
}

.benefits h2 {
    font-weight: 700;
    font-size: 55px;
    margin-bottom: 50px;
}

.benefits p.description {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 5rem;
    color: var(--white);
    line-height: 1.6;
}

.benefits .b-cards {
    display: flex;
    flex-direction: row;
    gap: 19rem;
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: center;
}

@media (min-width: 640px) {
    .benefits .b-cards {
        flex-direction: row;
        justify-content: center;
        gap: 19rem;
        align-items: stretch;
    }
}

.benefits .b-cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 3rem;                 
    max-width: 1200px;         
    margin: 0 auto;            
    flex-wrap: nowrap;         
}


.benefits .b-card.show {
    opacity: 1;
    transform: rotateY(0);
}

.benefits .b-card .b-icon {
    background: var(--white);
    border-radius: 1rem;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    flex-shrink: 0;
    margin-left: 55px;
}

.benefits .b-card .b-icon img {
    width: 50%;
    height: 50%;
    object-fit: contain;
}

.benefits .b-card h3 {
    font-weight: 600;
    font-size: 25px;
    margin-bottom: 10px;
    width: 100%;                
    text-align: center;
    white-space: nowrap; 
}

.benefits .b-card p {
    font-size: 18px;
    color: var(--white);
    line-height: 1.5;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .benefits .b-card p {
        padding: 0;
    }
}

/* contact us */
.contact-us {
    width: 100%;
    margin: 0 auto;
    padding: 30px 20px;
    background-color: var(--white);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

.contact-us.show {
    opacity: 1;
    transform: translateY(0);
}

.contact-container {
    max-width: 1200px;  
    margin: 0 auto;
    padding: 0 15px;
}

.contact-us h1 {
    font-size: 55px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    color: var(--black);
}

.contact-us hr {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
}

.contact-us form {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--black);
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

@media (min-width: 768px) {
    .contact-us form {
        flex-direction: row;
    }
}

.contact-us .left-panel {
    background-color: var(--red);
    color: var(--white);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 300px;
    flex-shrink: 0;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.contact-us .left-panel.show {
    opacity: 1;
    transform: translateX(0);
}

.contact-us .left-panel h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-us .left-panel img {
    width: 40px;
    height: 40px;
    margin-bottom: 5px;
    display: inline-block;
    vertical-align: middle;
    text-decoration: none;
}

.logo-w {
    height: 1.5em;
    width: auto;
    margin-left: -5px;
    vertical-align: middle;
    transition: filter 0.3s ease; 
}

.logoW-t {
    margin-left: -10px;
    margin-right: -10px;
}

.contact-us .contact-info div {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 1rem;
}

.contact-us .social-links {
    display: flex;
    gap: 10px;
}

.contact-us .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--black-one);
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
}

.contact-us .social-links a:hover {
    transform: scale(1.1);

}

.contact-us .right-panel {
    flex: 1;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    min-width: 0;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.contact-us .right-panel.show {
    opacity: 1;
    transform: translateX(0);
}

@media (min-width: 640px) {
  .contact-us .right-panel {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-us .subject-options {
      display: grid;
      grid-template-columns: repeat(1fr 1fr);
      gap: 12px 15px;
  }

  .contact-us .subject-options label {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.85rem;
      white-space: normal;
  }
}

@media (min-width: 1024px) {
  .contact-us .right-panel {
    grid-template-columns: repeat(2, minmax(250px, 1fr));
    gap: 30px; 
  }
}

.contact-us .span-two {
  grid-column: 1 / -1;
}

.contact-us label {
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--black);
}

.contact-us input,
.contact-us textarea {
    border: none;
    border-bottom: 1px solid var(--black);
    outline: none;
    padding: 8px 0;
    font-size: 1rem;
    width: 100%;
    background: transparent;
    resize: none;
}

/* .contact-us .span-two {
    grid-column: span 2;
} */

.contact-us .select {
    display: inline-block;
    margin: 10px 0 15px 0; 
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
}

.contact-us .subject-options {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-us .subject-options label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    white-space: nowrap;
}

.contact-us .subject-options input[type="radio"] {
    width: 16px;
    height: 16px;
}

.contact-us .message {
    display: inline-block;
    margin: 10px 0 15px 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
}

.contact-us button {
    grid-column: span 2;
    justify-self: end;
    background-color: var(--black);
    color: var(--white);
    border: none;
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.5),
                -6px -6px 12px rgba(255, 255, 255, 0.05);

    transition: box-shadow 0.3s ease, transform 0.2s ease;
}


.contact-us button:hover,
.contact-us button:active {
    background-color: var(--white);
    color: var(--black);
    box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.5),
        inset -4px -4px 8px rgba(255, 255, 255, 0.05);
    transform: translateY(1px);
}


/* footer */
.footer {
    background: var(--black);
    color: var(--white);
    text-align: center;
    padding: 5rem 1rem;
    margin-top: 0;  
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-nav a:hover {
    color: var(--red);
    transform: scale(1.1);
}

.footer-nav a.active::after {
    width: 100%;
}


.footer-logo {
    height: 40px;
    transition: 0.3s ease-in-out;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
}


.footer-logo:hover {
    transform: scale(1.2);
    content: url("images/logo.png");
}

.footer-divider {
    border: none;
    border-top: 1px solid #666;
    margin: 1.5rem auto;
    width: 80%;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-social a {
    color: var(--white);
    font-size: 1.2rem;
    border: 1px solid var(--white);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    text-decoration: none;
}


.footer-social a {
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
    background: var(--red);
    border-color: var(--red);
    transform: scale(1.1);
}


.footer-bottom {
    font-size: 0.8rem;
    color: var(--white);
}

.footer.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 1rem;
    }

    .footer-nav {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .footer-nav a {
        font-size: 0.9rem;
    }

    .footer-social {
        gap: 1rem;
    }

    .footer-social a {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2.5rem 1rem;
    }

    .footer-nav {
        flex-direction: column;
        gap: 0.8rem;
    }

    .footer-nav a {
        font-size: 0.85rem;
    }

    .footer-social {
        flex-wrap: wrap;
        gap: 0.8rem;
    }

    .footer-social a {
        width: 30px;
        height: 30px;
        font-size: 0.95rem;
    }

    .footer-bottom {
        font-size: 0.75rem;
    }
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.lightbox-img {
    max-width: 90%;
    max-height: 85%;
    border-radius: 10px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: var(--white);
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox .close:hover {
    color: var(--red);
}

/* Lightbox navigation buttons */
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--red);
}

.lightbox-prev {
    left: calc(50% - 45% - 40px);
}

.lightbox-next {
    right: calc(50% - 45% - 40px);
}

@media (max-width: 768px) {
    .lightbox-img {
        max-width: 95%;
        max-height: 75%;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 1.6rem;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .lightbox-img {
        max-width: 100%;
        max-height: 70%;
    }

    .lightbox .close {
        font-size: 2rem;
        top: 15px;
        right: 20px;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 1.2rem;
        padding: 6px 10px;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }
}