/* =========================================================
   MVJ-INSTAL
   MAIN WEBSITE STYLES
========================================================= */


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --navy: #07182d;
    --navy-light: #0d2747;
    --navy-dark: #04101f;

    --blue: #145ca8;
    --blue-light: #2d8fe5;
    --blue-soft: #eaf4fc;

    --gold: #d9a441;
    --gold-light: #f0c96b;
    --gold-dark: #a97820;

    --white: #ffffff;
    --light: #f5f7fa;
    --gray: #687386;
    --gray-light: #e5e9ef;

    --text: #142238;

    --container: 1240px;

    --transition: 0.3s ease;

}


/* =========================================================
   RESET
========================================================= */

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


html {
    scroll-behavior: smooth;
}


body {
    font-family:
        "Arial",
        "Helvetica Neue",
        sans-serif;

    color: var(--text);

    background: var(--white);

    line-height: 1.6;

    overflow-x: hidden;
}


img {
    display: block;

    width: 100%;

    height: auto;

    object-fit: cover;
}


a {
    color: inherit;

    text-decoration: none;
}


button,
input,
textarea,
select {
    font: inherit;
}


button {
    border: 0;

    cursor: pointer;
}


/* =========================================================
   CONTAINER
========================================================= */

.container {

    width: min(
        calc(100% - 40px),
        var(--container)
    );

    margin: 0 auto;

}


/* =========================================================
   HEADER
========================================================= */

.header {

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    background:
        linear-gradient(
            180deg,
            rgba(3, 13, 27, 0.94),
            rgba(3, 13, 27, 0.55),
            transparent
        );

}


.header-inner {

    min-height: 92px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


/* =========================================================
   LOGO
========================================================= */

.logo {

    display: flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;

}


.logo-mark {

    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 19px;

    font-weight: 900;

    color: var(--white);

    border: 2px solid var(--gold);

    position: relative;

}


.logo-mark::before {

    content: "";

    position: absolute;

    width: 28px;

    height: 2px;

    top: -8px;

    left: 10px;

    background: var(--gold);

    transform: rotate(-28deg);

}


.logo-text {

    display: flex;

    flex-direction: column;

}


.logo-main {

    color: var(--white);

    font-size: 25px;

    font-weight: 900;

    line-height: 1;

    letter-spacing: -1px;

}


.logo-main span {

    color: var(--gold);

}


.logo-sub {

    margin-top: 5px;

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

    font-size: 8px;

    letter-spacing: 1.5px;

    font-weight: 600;

}


/* =========================================================
   NAVIGATION
========================================================= */

.navigation {

    display: flex;

    align-items: center;

    gap: 28px;

}


.navigation a {

    position: relative;

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

    font-size: 13px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.5px;

    transition: var(--transition);

}


.navigation a:hover,
.navigation a.active {

    color: var(--gold-light);

}


.navigation a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -9px;

    width: 0;

    height: 2px;

    background: var(--gold);

    transition: var(--transition);

}


.navigation a:hover::after,
.navigation a.active::after {

    width: 100%;

}


/* =========================================================
   HEADER CONTACT
========================================================= */

.header-contact {

    display: flex;

    align-items: center;

    gap: 14px;

}


.header-phone {

    display: flex;

    align-items: center;

    gap: 7px;

    color: var(--white);

    font-size: 14px;

    font-weight: 700;

    white-space: nowrap;

}


.phone-icon {

    color: var(--gold-light);

    font-size: 17px;

}


.header-button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 44px;

    padding: 0 20px;

    background: var(--gold);

    color: var(--navy-dark);

    font-size: 12px;

    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: 0.4px;

    transition: var(--transition);

}


.header-button:hover {

    background: var(--gold-light);

    transform: translateY(-2px);

}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu-button {

    display: none;

    width: 44px;
    height: 44px;

    background: transparent;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 5px;

}


.mobile-menu-button span {

    display: block;

    width: 25px;
    height: 2px;

    background: var(--white);

}


/* =========================================================
   HERO
========================================================= */

.hero {

    min-height: 760px;

    position: relative;

    overflow: hidden;

    background: var(--navy);

    color: var(--white);

}


.hero-background {

    position: absolute;

    inset: 0;

    background-image:
        url("images/hero.jpg");

    background-size: cover;

    background-position: center right;

}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4, 15, 31, 0.98) 0%,
            rgba(4, 15, 31, 0.94) 27%,
            rgba(4, 15, 31, 0.73) 49%,
            rgba(4, 15, 31, 0.22) 78%,
            rgba(4, 15, 31, 0.38) 100%
        );

}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-container {

    position: relative;

    z-index: 5;

    min-height: 760px;

    display: flex;

    align-items: center;

}


.hero-content {

    width: 53%;

    padding-top: 65px;

}


.hero-brand {

    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--gold-light);

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 20px;

}


.hero-brand-line {

    width: 42px;

    height: 2px;

    background: var(--gold);

}


.hero h1 {

    font-size: clamp(
        42px,
        5vw,
        72px
    );

    line-height: 0.98;

    font-weight: 900;

    letter-spacing: -2px;

    text-transform: uppercase;

}


.hero h1 span {

    color: var(--gold-light);

}


.hero-description {

    max-width: 600px;

    margin-top: 27px;

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

    font-size: 18px;

    line-height: 1.65;

}


.hero-buttons {

    display: flex;

    align-items: center;

    gap: 14px;

    margin-top: 34px;

}


/* =========================================================
   BUTTONS
========================================================= */

.button {

    min-height: 54px;

    padding: 0 26px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    text-transform: uppercase;

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 0.5px;

    transition: var(--transition);

}


.button span {

    font-size: 18px;

}


.button-primary {

    background: var(--gold);

    color: var(--navy-dark);

}


.button-primary:hover {

    background: var(--gold-light);

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px
        rgba(217,164,65,0.22);

}


.button-outline {

    border: 1px solid
        rgba(255,255,255,0.65);

    color: var(--white);

    background: rgba(0,0,0,0.1);

}


.button-outline:hover {

    border-color: var(--gold);

    color: var(--gold-light);

    background: rgba(217,164,65,0.06);

}


/* =========================================================
   HERO TRUST
========================================================= */

.hero-trust {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 38px;

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

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;

}


.hero-trust i {

    color: var(--gold);

    font-style: normal;

}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-image {

    position: absolute;

    right: -2%;

    top: 125px;

    width: 55%;

    height: 610px;

    z-index: -1;

}


.hero-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            var(--navy) 0%,
            rgba(7,24,45,0.35) 18%,
            transparent 50%
        );

}


.hero-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

}


/* =========================================================
   HERO DIAGONALS
========================================================= */

.hero-diagonal {

    position: absolute;

    z-index: 4;

    pointer-events: none;

}


.hero-diagonal-one {

    right: 30%;

    top: -15%;

    width: 18px;

    height: 135%;

    background: var(--gold);

    transform: rotate(23deg);

    opacity: 0.95;

}


.hero-diagonal-two {

    right: 32%;

    top: -15%;

    width: 5px;

    height: 135%;

    background: var(--blue-light);

    transform: rotate(23deg);

}


/* =========================================================
   SERVICES STRIP
========================================================= */

.services-strip {

    position: relative;

    z-index: 20;

    background: var(--white);

    border-bottom: 1px solid
        var(--gray-light);

    box-shadow:
        0 8px 30px
        rgba(5,20,40,0.08);

}


.services-strip-inner {

    display: grid;

    grid-template-columns:
        repeat(8, 1fr);

}


.service-mini {

    min-height: 118px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 8px;

    padding: 12px 8px;

    text-align: center;

    color: var(--navy);

    border-right: 1px solid
        #d8e0e9;

    transition: var(--transition);

}


.service-mini:last-child {

    border-right: 0;

}


.service-mini:hover {

    background: var(--blue-soft);

}


.service-mini-icon {

    color: var(--blue);

    font-size: 28px;

    line-height: 1;

}


.service-mini span {

    font-size: 10px;

    font-weight: 900;

    line-height: 1.35;

    text-transform: uppercase;

}


/* =========================================================
   SECTIONS
========================================================= */

.section {

    padding: 110px 0;

}


.section-heading {

    margin-bottom: 45px;

}


.section-title-line {

    width: 45px;

    height: 3px;

    background: var(--gold);

    margin-bottom: 12px;

}


.section-label {

    display: block;

    color: var(--blue);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2.5px;

    text-transform: uppercase;

}


.section-heading h2 {

    margin-top: 7px;

    color: var(--navy);

    font-size: clamp(
        34px,
        4vw,
        52px
    );

    line-height: 1.05;

    font-weight: 900;

    letter-spacing: -1px;

}


.section-heading h2 span {

    color: var(--blue);

}


.section-heading p {

    max-width: 650px;

    margin-top: 14px;

    color: var(--gray);

    font-size: 16px;

}


/* =========================================================
   SERVICES
========================================================= */

.services {

    position: relative;

    background:

        linear-gradient(
            135deg,
            #ffffff 0%,
            #f4f7fa 100%
        );

}


.services::before {

    content: "";

    position: absolute;

    left: -100px;

    top: 80px;

    width: 260px;

    height: 600px;

    background:
        linear-gradient(
            135deg,
            transparent 45%,
            rgba(20,92,168,0.07) 46%,
            rgba(20,92,168,0.07) 54%,
            transparent 55%
        );

    pointer-events: none;

}


.services-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 22px;

}


.service-card {

    background: var(--white);

    border: 1px solid
        #e0e6ed;

    box-shadow:
        0 8px 25px
        rgba(7,24,45,0.07);

    transition: var(--transition);

    overflow: hidden;

}


.service-card:hover {

    transform: translateY(-7px);

    border-color:
        rgba(20,92,168,0.3);

    box-shadow:
        0 18px 40px
        rgba(7,24,45,0.12);

}


.service-card-image {

    height: 185px;

    overflow: hidden;

}


.service-card-image img {

    width: 100%;

    height: 100%;

    transition: 0.5s ease;

}


.service-card:hover
.service-card-image img {

    transform: scale(1.06);

}


.service-card-content {

    min-height: 135px;

    padding: 20px;

    display: flex;

    align-items: flex-start;

    gap: 14px;

}


.service-card-icon {

    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--blue);

    border: 1px solid
        rgba(20,92,168,0.25);

    background: var(--blue-soft);

    font-size: 20px;

}


.service-card h3 {

    color: var(--navy);

    font-size: 16px;

    line-height: 1.25;

    text-transform: uppercase;

    font-weight: 900;

}


.service-card p {

    margin-top: 6px;

    color: var(--gray);

    font-size: 13px;

    line-height: 1.5;

}


/* =========================================================
   ABOUT
========================================================= */

.about {

    position: relative;

    overflow: hidden;

    background: var(--navy);

    color: var(--white);

}


.about-background {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(4,15,31,0.98),
            rgba(4,15,31,0.9)
        ),

        url("images/about.jpg");

    background-size: cover;

    background-position: center;

}


.about-container {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 75px;

    align-items: center;

}


.about-image {

    height: 560px;

    position: relative;

    overflow: hidden;

}


.about-image::before {

    content: "";

    position: absolute;

    z-index: 2;

    inset: 0;

    border: 2px solid
        rgba(217,164,65,0.8);

    clip-path:
        polygon(
            0 0,
            92% 0,
            100% 12%,
            100% 88%,
            92% 100%,
            0 100%
        );

}


.about-image img {

    height: 100%;

}


.about-content .section-title-line {

    background: var(--gold);

}


.about-content .section-label {

    color: var(--gold-light);

}


.about-content h2 {

    color: var(--white);

}


.about-content h2 span {

    color: var(--gold-light);

}


.about-content > p {

    max-width: 680px;

    margin-top: 20px;

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

    font-size: 16px;

}


.about-values {

    margin-top: 35px;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 25px;

}


.about-value {

    display: flex;

    align-items: flex-start;

    gap: 14px;

}


.about-value-icon {

    width: 38px;
    height: 38px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--gold-light);

    border: 1px solid
        rgba(217,164,65,0.55);

    font-weight: 900;

}


.about-value h3 {

    color: var(--white);

    font-size: 13px;

    text-transform: uppercase;

}


.about-value p {

    margin-top: 3px;

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

    font-size: 12px;

}


/* =========================================================
   PROJECTS
========================================================= */

.projects {

    background: var(--white);

}


.projects-heading {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 30px;

}


.projects-heading .button {

    color: var(--navy);

    border-color: var(--navy);

}


.projects-heading .button:hover {

    color: var(--blue);

    border-color: var(--blue);

}


.projects-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    grid-auto-rows: 245px;

    gap: 15px;

}


.project-card {

    position: relative;

    overflow: hidden;

    background: var(--navy);

}


.project-card.project-large {

    grid-column: span 2;

    grid-row: span 2;

}


.project-card img {

    width: 100%;
    height: 100%;

    transition: 0.5s ease;

}


.project-card:hover img {

    transform: scale(1.07);

}


.project-overlay {

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 28px 22px 20px;

    color: var(--white);

    background:
        linear-gradient(
            transparent,
            rgba(3,13,27,0.95)
        );

    transform: translateY(5px);

    transition: var(--transition);

}


.project-card:hover
.project-overlay {

    transform: translateY(0);

}


.project-overlay span {

    color: var(--gold-light);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;

}


.project-overlay h3 {

    margin-top: 3px;

    font-size: 18px;

    font-weight: 900;

}


/* =========================================================
   PRICE CTA
========================================================= */

.price-cta {

    position: relative;

    overflow: hidden;

    background:

        linear-gradient(
            135deg,
            var(--navy),
            var(--navy-light)
        );

    color: var(--white);

}


.price-cta::after {

    content: "";

    position: absolute;

    right: -120px;

    top: -150px;

    width: 500px;
    height: 500px;

    border: 3px solid
        rgba(217,164,65,0.15);

    transform: rotate(45deg);

}


.price-cta-inner {

    min-height: 260px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

}


.price-cta .section-label {

    color: var(--gold-light);

}


.price-cta h2 {

    margin-top: 8px;

    font-size: 42px;

    line-height: 1.05;

    font-weight: 900;

}


.price-cta h2 span {

    color: var(--gold-light);

}


.price-cta p {

    max-width: 650px;

    margin-top: 12px;

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

}


/* =========================================================
   CONTACT
========================================================= */

.contact {

    background:

        linear-gradient(
            135deg,
            #f7f9fb,
            #edf2f7
        );

}


.contact-grid {

    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 65px;

    align-items: start;

}


.contact-info {

    padding-top: 10px;

}


.contact-info-item {

    display: flex;

    align-items: center;

    gap: 17px;

    padding: 23px 0;

    border-bottom: 1px solid
        #d8e0e8;

}


.contact-icon {

    width: 50px;
    height: 50px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--white);

    background: var(--blue);

    font-size: 21px;

}


.contact-info-item span {

    display: block;

    color: var(--gray);

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 2px;

}


.contact-info-item a,
.contact-info-item strong {

    display: block;

    margin-top: 4px;

    color: var(--navy);

    font-size: 18px;

    font-weight: 900;

}


.contact-info-item a:hover {

    color: var(--blue);

}


.contact-slogan {

    margin-top: 35px;

    padding-left: 20px;

    border-left: 3px solid
        var(--gold);

}


.contact-slogan p {

    color: var(--navy);

    font-size: 18px;

    font-style: italic;

}


/* =========================================================
   CONTACT FORM
========================================================= */

.contact-form {

    padding: 35px;

    background: var(--white);

    border: 1px solid
        #dce3ea;

    box-shadow:
        0 15px 45px
        rgba(7,24,45,0.08);

}


.form-row {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;

}


.form-group {

    margin-bottom: 20px;

}


.form-group label {

    display: block;

    margin-bottom: 7px;

    color: var(--navy);

    font-size: 11px;

    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: 0.5px;

}


.form-group input,
.form-group textarea,
.form-group select {

    width: 100%;

    border: 1px solid
        #d6dee7;

    background: #fafbfd;

    color: var(--navy);

    padding: 14px 15px;

    outline: none;

    transition: var(--transition);

}


.form-group input,
.form-group select {

    height: 50px;

}


.form-group textarea {

    resize: vertical;

    min-height: 130px;

}


.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {

    border-color: var(--blue);

    background: var(--white);

    box-shadow:
        0 0 0 3px
        rgba(20,92,168,0.08);

}


.form-checkbox {

    display: flex;

    align-items: flex-start;

    gap: 9px;

    margin-bottom: 20px;

}


.form-checkbox input {

    margin-top: 3px;

}


.form-checkbox label {

    color: var(--gray);

    font-size: 12px;

}


.form-submit {

    width: 100%;

}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta {

    min-height: 450px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    overflow: hidden;

    background:

        url("images/hero.jpg")
        center / cover no-repeat;

}


.final-cta-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            rgba(4,15,31,0.91),
            rgba(4,15,31,0.88)
        );

}


.final-cta-content {

    position: relative;

    z-index: 2;

    color: var(--white);

}


.final-cta .section-label {

    color: var(--gold-light);

}


.final-cta h2 {

    margin-top: 10px;

    font-size: clamp(
        38px,
        5vw,
        65px
    );

    line-height: 1;

    font-weight: 900;

}


.final-cta h2 span {

    color: var(--gold-light);

}


.final-cta p {

    margin: 20px 0 28px;

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

}


/* =========================================================
   FOOTER
========================================================= */

.footer {

    color: var(--white);

    background: var(--navy-dark);

}


.footer-main {

    padding: 70px 0;

    display: grid;

    grid-template-columns:
        1.5fr 0.8fr 1fr 1fr;

    gap: 55px;

}


.footer-brand > p {

    max-width: 340px;

    margin-top: 20px;

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

    font-size: 13px;

}


.footer-column {

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.footer-column h3 {

    margin-bottom: 8px;

    color: var(--gold-light);

    font-size: 11px;

    letter-spacing: 2px;

    text-transform: uppercase;

}


.footer-column a,
.footer-column span {

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

    font-size: 13px;

    transition: var(--transition);

}


.footer-column a:hover {

    color: var(--gold-light);

}


.footer-contact a {

    font-size: 15px;

    font-weight: 700;

}


.footer-bottom {

    border-top: 1px solid
        rgba(255,255,255,0.09);

}


.footer-bottom-inner {

    min-height: 70px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

}


.footer-bottom span,
.footer-bottom a {

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

    font-size: 11px;

}


.footer-bottom div {

    display: flex;

    gap: 20px;

}


/* =========================================================
   MOBILE CALL
========================================================= */

.mobile-call {

    display: none;

    position: fixed;

    z-index: 2000;

    right: 20px;

    bottom: 20px;

    width: 58px;
    height: 58px;

    align-items: center;
    justify-content: center;

    background: var(--gold);

    color: var(--navy-dark);

    border-radius: 50%;

    font-size: 22px;

    box-shadow:
        0 10px 30px
        rgba(0,0,0,0.25);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {


    .navigation {

        gap: 16px;

    }


    .navigation a {

        font-size: 11px;

    }


    .header-phone {

        display: none;

    }


    .services-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .services-strip-inner {

        grid-template-columns:
            repeat(4, 1fr);

    }


    .service-mini:nth-child(4) {

        border-right: 0;

    }


    .about-container {

        grid-template-columns:
            1fr;

    }


    .about-image {

        height: 420px;

    }


    .projects-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .project-card.project-large {

        grid-column: span 2;

    }


    .footer-main {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {


    .container {

        width:
            calc(100% - 30px);

    }


    .header-inner {

        min-height: 76px;

    }


    .logo-mark {

        width: 43px;
        height: 43px;

        font-size: 15px;

    }


    .logo-main {

        font-size: 20px;

    }


    .logo-sub {

        font-size: 6px;

        letter-spacing: 1px;

    }


    .navigation,
    .header-contact {

        display: none;

    }


    .mobile-menu-button {

        display: flex;

    }


    .hero {

        min-height: 760px;

    }


    .hero-container {

        min-height: 760px;

        align-items: flex-end;

        padding-bottom: 70px;

    }


    .hero-content {

        width: 100%;

        padding-top: 100px;

    }


    .hero h1 {

        font-size: 43px;

        letter-spacing: -1.5px;

    }


    .hero-description {

        font-size: 15px;

        max-width: 500px;

    }


    .hero-image {

        top: 0;

        right: 0;

        width: 100%;

        height: 100%;

        opacity: 0.42;

    }


    .hero-image::after {

        background:
            linear-gradient(
                180deg,
                rgba(4,15,31,0.35),
                rgba(4,15,31,0.97) 72%
            );

    }


    .hero-diagonal-one {

        right: 5%;

        opacity: 0.55;

    }


    .hero-diagonal-two {

        right: 8%;

        opacity: 0.6;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .button {

        min-height: 52px;

    }


    .hero-trust {

        margin-top: 25px;

        font-size: 9px;

    }


    .services-strip-inner {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .service-mini {

        min-height: 95px;

        border-bottom: 1px solid
            #d8e0e9;

    }


    .service-mini:nth-child(2n) {

        border-right: 0;

    }


    .section {

        padding: 75px 0;

    }


    .section-heading h2 {

        font-size: 36px;

    }


    .services-grid {

        grid-template-columns:
            1fr;

    }


    .service-card-image {

        height: 210px;

    }


    .about-container {

        gap: 40px;

    }


    .about-image {

        height: 330px;

    }


    .about-values {

        grid-template-columns:
            1fr;

    }


    .projects-heading {

        flex-direction: column;

        align-items: flex-start;

    }


    .projects-grid {

        grid-template-columns:
            1fr;

        grid-auto-rows: 230px;

    }


    .project-card.project-large {

        grid-column: span 1;

        grid-row: span 1;

    }


    .price-cta-inner {

        min-height: 360px;

        flex-direction: column;

        align-items: flex-start;

        justify-content: center;

    }


    .price-cta h2 {

        font-size: 36px;

    }


    .contact-grid {

        grid-template-columns:
            1fr;

        gap: 40px;

    }


    .contact-form {

        padding: 22px;

    }


    .form-row {

        grid-template-columns:
            1fr;

        gap: 0;

    }


    .final-cta {

        min-height: 420px;

    }


    .final-cta h2 {

        font-size: 42px;

    }


    .footer-main {

        grid-template-columns:
            1fr;

        gap: 40px;

        padding: 55px 0;

    }


    .footer-bottom-inner {

        min-height: 100px;

        flex-direction: column;

        justify-content: center;

        text-align: center;

    }


    .mobile-call {

        display: flex;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {


    .hero h1 {

        font-size: 37px;

    }


    .hero-trust {

        gap: 7px;

        letter-spacing: 1px;

    }


    .service-mini-icon {

        font-size: 24px;

    }


    .service-mini span {

        font-size: 9px;

    }


    .section-heading h2 {

        font-size: 32px;

    }


    .contact-info-item a,
    .contact-info-item strong {

        font-size: 15px;

    }


    .footer-bottom div {

        flex-direction: column;

        gap: 5px;

    }

}