/* Global Styles */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #ffffff;
    --accent-color: #0071e3;
    --text-color: #333333;
    --light-bg: #f8f9fa;
    --border-color: rgba(0, 0, 0, 0.1);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --transition-speed: 0.3s;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--secondary-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-top: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-speed) ease;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.header {
    width: 100%;
    height: 90px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header.scrolled .logo {
    color: var(--primary-color);
    text-shadow: none;
}

.logo .logol {
    display: none;
}

.logo-img {
    height: 50px;
    width: auto;
    mix-blend-mode: screen;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.header.scrolled .logo-img {
    filter: invert(1);
    mix-blend-mode: multiply;
}


.header nav {
    display: flex;
    gap: 40px;
}

.nav-item {
    position: relative;
    display: inline-block;
}

.nav-item a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.header.scrolled .nav-item a {
    color: var(--primary-color);
}

.navLine {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: width 0.3s ease;
}

.nav-item:hover .navLine {
    width: 100%;
}

.headerMenuIcon,
.scrollMenuIcon {
    cursor: pointer;
    z-index: 1001;
    display: none;
}

@media (max-width: 768px) {
    .headerMenuIcon {
        display: block;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: auto;
    }

    .scrollMenuIcon {
        display: none !important;
    }
}

.header:not(.scrolled) .headerMenuIcon {
    filter: invert(1);
}

.nav {
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 2000;
    top: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transform: translateY(-100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    box-shadow: none;
}

.nav.open {
    transform: translateY(0);
}

.nav a {
    padding: 10px;
    font-size: 32px;
    color: var(--primary-color);
    font-family: var(--font-heading);
    border-bottom: none;
    text-align: center;
    transition: color 0.3s ease, transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInSlideUp 0.5s forwards 0.3s;
}

.nav.open a:nth-child(2) {
    animation-delay: 0.1s;
}

.nav.open a:nth-child(3) {
    animation-delay: 0.2s;
}

.nav.open a:nth-child(4) {
    animation-delay: 0.3s;
}

.nav.open a:nth-child(5) {
    animation-delay: 0.4s;
}

.nav a:hover {
    padding-left: 0;
    color: var(--accent-color);
    transform: scale(1.1);
}

.nav .close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 48px;
    color: var(--primary-color);
    opacity: 1;
    transform: none;
    animation: none;
    cursor: pointer;
    line-height: 1;
}

.nav .close:hover {
    color: var(--accent-color);
    transform: rotate(90deg);
}

@keyframes fadeInSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subpage-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.subpage-header .logo {
    color: var(--primary-color);
    text-shadow: none;
}

.subpage-header .logo-img {
    filter: invert(1);
    mix-blend-mode: multiply;
}

.subpage-header .nav-item a {
    color: var(--primary-color);
}

.subpage-header .navLine {
    background-color: var(--primary-color);
}

.subpage-header .headerMenuIcon {
    filter: none !important;
}

.page-spacer {
    padding-top: 140px;
    min-height: 60vh;
}

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.hero-title {
    color: rgb(255, 255, 255);
    font-size: 80px;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
}

.highlight-text {
    font-style: italic;
    font-weight: 400;
}

.hero-subtitle {
    color: #d4d4d4;
    font-size: 22px;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background-color: var(--accent-color);
    color: #fff;
    border: 1px solid var(--accent-color);
}

.cta-button.primary:hover {
    background-color: #005bb5;
    border-color: #005bb5;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.cta-button.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.cta-button.secondary:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

.intro-section {
    padding: 100px 20px;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h2 {
    font-size: 48px;
    margin-bottom: 30px;
}

.intro-text p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.text-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.text-link:hover {
    color: var(--accent-color);
    gap: 15px;
}

.intro-slider-container {
    position: relative;
    width: 100%;
    margin: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.intro-slides {
    display: none;
}

.intro-slides img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    z-index: 10;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.intro-slider-container:hover .prev,
.intro-slider-container:hover .next {
    opacity: 1;
    visibility: visible;
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

.slider-dots {
    text-align: center;
    position: absolute;
    bottom: 20px;
    width: 100%;
    z-index: 10;
}

.dot {
    cursor: pointer;
    height: 8px;
    width: 30px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    display: inline-block;
    transition: background-color 0.6s ease, width 0.3s ease;
}

.active,
.dot:hover {
    background-color: #fff;
    width: 45px;
}

.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

@media (max-width: 768px) {
    .intro-slides img {
        aspect-ratio: 3 / 2;
    }

    .prev,
    .next {
        opacity: 1;
        visibility: visible;
        padding: 10px;
        background-color: rgba(0, 0, 0, 0.1);
    }
}


.benefits-section {
    background-color: var(--light-bg);
    padding: 100px 20px;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.icon-box {
    font-size: 32px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}


.portfolio-teaser {
    margin-top: 100px;
    padding: 120px 20px;
    text-align: center;
    background-image: url('img/interior1.JPG');
    background-size: cover;
    background-position: center;
    position: relative;
    background-attachment: fixed;
}

.portfolio-teaser::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.portfolio-cta {
    position: relative;
    z-index: 2;
    background: #fff;
    display: inline-block;
    padding: 60px 80px;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.portfolio-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.portfolio-text p {
    margin-bottom: 30px;
    color: #555;
    font-size: 18px;
}


.contact-section {
    padding: 100px 20px;
    background-color: #fff;
    text-align: center;
}

.contact-box {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f5ff 100%);
    padding: 60px;
    border-radius: 16px;
}

.contact-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-box p {
    font-size: 20px;
    color: #444;
    margin-bottom: 40px;
}

.contact-form-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: #fff;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}

.form-actions {
    margin-top: 10px;
    text-align: center;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.formdiv {
    padding: 60px 60px;
    text-align: left;
    display: block;
    max-width: 1200px;
    background-color: #ffffff;
    z-index: 1;
    position: relative;
    margin: 0 auto 80px;
}

.footer {
    background-color: #111;
    color: #fff;
    padding: 80px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-section h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #aaa;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: background 0.3s;
}

.social-icon:hover {
    background: var(--accent-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 20px 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #666;
    font-size: 14px;
}


@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header nav {
        display: none;
    }

    .headerMenuIcon,
    .scrollMenuIcon {
        display: block;
    }

    .hero-title {
        font-size: 48px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .intro-image-wrapper {
        order: -1;
    }

    .portfolio-cta {
        padding: 40px 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .contact-box {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 36px;
    }
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
    padding: 0;
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background: #f0f0f0;
}

.masonry-grid {
    column-count: 3;
    column-gap: 24px;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto 80px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 24px;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    transform: translateZ(0);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.masonry-item:hover {
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.masonry-item img {
    cursor: pointer;
}

/* Lightbox Styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    z-index: 3000;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lightbox.active .lightbox-content img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.lightbox-close:hover {
    transform: rotate(90deg);
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

@media (max-width: 768px) {
    .lightbox-close {
        top: 20px;
        right: 20px;
    }

    .lightbox-nav {
        width: 50px;
        height: 50px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }
}


/* Migrated from about/style.css */
.portRedirect {
    background-color: #ffffff;
    padding: 60px 60px;
    display: block;
    margin-top: -100px;
}

.portRedirect h2 {
    font-size: 40px;
}

.portRedirect img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0px 0px 20px rgb(180, 181, 182);
}

.portRedirectImgContent {
    margin-top: -50px;
    padding: 3vw;
    background: linear-gradient(135deg, #0071e3 0%, #1d8af5 50%, #0071e3 100%);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 113, 227, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
    text-decoration: none;
}


/* Restored styles */
.contactRedirectWrapper {
    background-color: #ffffff;
    padding: 60px 60px;
    display: block;
    margin-top: 0px;
}

.contactRedirect {
    position: relative;
    display: block;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #d6efff 0%, #e6f5ff 50%, #f0f9ff 100%);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), inset 0 2px 0 rgba(255, 255, 255, 0.5), inset 0 0 20px rgba(219, 219, 219, 0.3);
    overflow: hidden;
}

.contactRedirect h2 {
    font-size: 40px;
    margin: 0;
    flex: 1;
    z-index: 2;
    position: relative;
}

.contactText {
    font-size: 20px;
    line-height: 1.6;
    max-width: 800px;
    z-index: 99;
    position: relative;
}

.contactBTN {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    font-size: 20px;
    font-weight: 500;
    color: white;
    background: linear-gradient(135deg, #0071e3 0%, #1d8af5 50%, #0071e3 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 113, 227, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    margin-top: -10px;
    letter-spacing: 0.3px;
    text-decoration: none;
}

.contactBTN:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 113, 227, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #0077ed 0%, #1d91ff 50%, #0077ed 100%);
}

.contactBTN:active {
    transform: scale(0.98);
    box-shadow: 0 2px 10px rgba(0, 113, 255, 0.3),
        inset 0 1px 0 rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #0068d6 0%, #1b85eb 50%, #0068d6 100%);
}

.contactBTN:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.3);
}

.contactInfo {
    font-size: 15px;
    line-height: 10px;
}

.contactRedImg {
    position: absolute;
    right: 20px;
    top: 65px;
    width: 200px;
    transform: rotate(-20deg);
    filter: opacity(20%);
}

.portRedirectImgContent::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portRedirectImgContent:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 113, 227, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #0077ed 0%, #1d91ff 50%, #0077ed 100%);
    border-radius: 12px;
}

.portRedirectImgContent:active {
    transform: scale(1);
    box-shadow: 0 2px 10px rgba(0, 113, 255, 0.3),
        inset 0 1px 0 rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #0068d6 0%, #1b85eb 50%, #0068d6 100%);
}

.portRedirectImgContent:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.3);
}

.portRedirectImgContent p {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    font-size: 20px;
    text-align: center;
}

@media (max-width: 768px) {
    .portRedirect {
        padding: 60px 15px;
        margin-top: -170px;
    }

    .portRedirect h2 {
        font-size: 30px;
    }

    .portRedirect img {
        margin-bottom: 0 !important;
    }

    .portRedirectImgContent {
        margin-top: 0;
        border-radius: 12px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .contactRedirectWrapper {
        padding: 60px 15px;
    }

    .contactRedirect h2 {
        font-size: 30px;
    }
}

@media (max-width: 1024px) {
    .masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .masonry-grid {
        column-count: 1;
    }

    .portLand {
        padding: 60px 20px 30px;
    }

    .portLand h2 {
        font-size: 36px;
    }
}

.portLand {
    text-align: center;
    background-color: transparent;
    padding: 160px 20px 30px;
}

.portLand h2 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1px;
}

.portLand p {
    font-size: 20px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.5;
}

.contactLand {
    background-color: #ffffff;
    position: relative;
    padding: 60px 60px;
    padding-bottom: 10px;
    display: block;
}

.contactLand h2 {
    font-size: 40px;
}

.contactLand p {
    font-size: 20px;
}

.impdiv {
    background-color: #ffffff;
    position: relative;
    padding-left: 60px;
    padding-right: 60px;
    padding-bottom: 60px;
    display: block;
}

.impdiv h2 {
    font-size: 40px;
}

.impdiv p {
    font-size: 20px;
}

.impHeadline {
    font-weight: 800;
}

.impText {
    font-weight: 400;
}

@media (max-width: 768px) {

    .contactLand h2,
    .impdiv h2 {
        font-size: 30px;
    }

    .contactLand,
    .impdiv {
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 60px;
    }
}