*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  background: rgb(250, 250, 250);
  background-size: 100px;
  touch-action: manipulation;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-size: 1rem;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  max-width: 1920px;
  margin: 0 auto;
  overflow-x: hidden;
  overflow-x: clip;
}
@media only screen and (min-width: 0px) and (max-width: 800px) {
  body * {
    font-size: 0.925rem;
  }
}

b a,
p,
li,
ul,
span,
div,
button {
  text-wrap: pretty;
  font-family: "Inter", system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
}

p {
  letter-spacing: -0.25px;
}

h1,
h2,
h3 {
  line-height: 1.25;
  font-family: "Anton", system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 100;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.75);
}

button {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

.skip {
  position: absolute;
  top: -100px;
  left: 20px;
  z-index: 10000;
  background: var(--primary);
  color: black;
  padding: 14px 18px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
}

.header-title {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.75);
}

.skip:focus {
  top: 20px;
  outline: 3px solid #fff;
}

:root {
  --black: #000;
  --white: #fff;
  --yellow: #F1A908;
  --text-color: #133552;
  --primary: #fed050;
  --primaryHover: #fabb0d;
  --secondary: #6099C7;
  --body: #f9f9f9;
  --bodyDark: #0D1B2A;
  --cta: 0px 0px 3px rgba(0, 0, 0, 0.125),
      0px 0px 2px rgba(0, 0, 0, 0.25),
      0px 0px 1.5px rgba(0, 0, 0, 0.125),
      0px 0px 1px rgba(0, 0, 0, .25);
}

@media only screen and (min-width: 0px) {
  main section [class$=-inner] {
    padding: 100px 0 125px;
  }
}
@media only screen and (min-width: 0px) and (min-width: 0px) and (max-width: 800px) {
  main section [class$=-inner] {
    padding: 75px 0;
  }
}
@media only screen and (min-width: 0px) {
  html section [class$=-header] {
    margin-bottom: clamp(25px, 3vw, 35px);
  }
  html section [class$=-header] .topper {
    display: block;
    font-family: "Inter", system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: clamp(1.25em, 3.5vw, 1.75em);
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--primary);
    text-shadow: none;
    line-height: 1.5;
  }
}
@media only screen and (min-width: 0px) and (min-width: 0px) and (max-width: 800px) {
  html section [class$=-header] .topper {
    margin-bottom: 5px;
  }
}
@media only screen and (min-width: 0px) {
  html section [class$=-header] h2 {
    font-weight: normal;
    font-size: clamp(1.75em, 3.5vw, 2.5em);
    line-height: 1.25;
    letter-spacing: 0.25px;
    margin-bottom: 20px;
    color: var(--secondary);
  }
}
@media only screen and (min-width: 0px) and (min-width: 0px) and (max-width: 800px) {
  html section [class$=-header] h2 {
    letter-spacing: 0.25px;
  }
}
@media only screen and (min-width: 0px) {
  html section [class$=-header] h3 {
    font-size: clamp(1.125em, 2vw, 1.3em);
  }
  html section [class$=-header] p {
    max-width: 800px;
    line-height: 1.75;
    margin-bottom: 25px;
  }
  html section [class$=-header] p:last-of-type {
    margin-bottom: 35px;
  }
}
@media only screen and (min-width: 0px) {
  html [class~=primary-cta] {
    display: inline-block;
    width: -moz-fit-content;
    width: fit-content;
    text-align: center;
    font-weight: bold;
    line-height: 1.5;
    border-radius: 100vw;
    padding: 25px 30px;
    font-size: 0.95rem;
    box-shadow: 0px 0px 3px rgb(0, 0, 0);
    text-shadow: var(--cta);
    color: white;
    background: var(--primary);
  }
  html [class~=primary-cta]:hover {
    background: var(--white);
    color: black;
    text-shadow: none;
  }
}
@media only screen and (min-width: 0px) and (min-width: 0px) and (max-width: 500px) {
  html [class~=primary-cta] {
    padding: 22px 20px;
  }
}
@media only screen and (min-width: 0px) {
  html .button {
    display: flex;
    gap: 15px;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
  }
  html .button a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    background: #fed050;
    font-size: 16px;
    color: var(--textColor);
  }
}
/* inter-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/inter-v20-latin-regular.woff2") format("woff2");
}
/* inter-700 - latin */
@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/fonts/inter-v20-latin-700.woff2") format("woff2");
}
/* anton-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/anton-v27-latin-regular.woff2") format("woff2");
}
@media only screen and (min-width: 0px) {
  .intro {
    background: #061F44;
    background-image: url(/assets/images/global/backgrounds/bg-light-blue.webp);
    background-size: cover;
    background-repeat: no-repeat;
  }
  .intro .intro-inner {
    width: min(1400px, 90%);
    margin: 0 auto;
    display: flex;
    flex-direction: row-reverse;
    gap: clamp(25px, 6vw, 50px);
    justify-content: center;
  }
  .intro .intro-content {
    max-width: 650px;
  }
  .intro .intro-content h2 {
    display: block;
    color: var(--primary);
    font-size: 15px;
    margin-bottom: 5px;
    font-family: "Inter", system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0;
  }
  .intro .intro-content .header-title {
    display: block;
    font-family: "Anton", system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: clamp(34px, 7vw, 52px);
    font-weight: 100;
    line-height: 1.15;
    margin-bottom: 15px;
    color: white;
    max-width: 600px;
  }
  .intro .intro-content p {
    max-width: 680px;
    color: white;
    font-size: clamp(15px, 2vw, 16px);
    line-height: 1.5;
    margin-bottom: 28px;
  }
  .intro .buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }
  .intro .buttons a {
    transition: 0.1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    height: 55px;
    padding: 25px 20px;
    text-decoration: none;
    box-shadow: 0px 0px 3px black;
  }
  .intro .buttons .btn-primary {
    color: var(--textColor);
    background: var(--primary);
    background-image: url(/assets/images/global/backgrounds/bg-yellow.webp);
  }
  .intro .buttons .btn-primary:hover {
    background-image: url(/assets/images/global/backgrounds/yellow-lighter.webp);
  }
  .intro .buttons .btn-secondary {
    color: var(--primary);
    background: rgba(0, 0, 0, 0.125);
    border: 1px solid var(--primary);
    font-weight: 700;
  }
  .intro .buttons .btn-secondary:hover {
    color: var(--textColor);
    background-image: url(/assets/images/global/backgrounds/yellow-lighter.webp);
  }
  .intro .intro-image {
    position: relative;
    overflow: hidden;
    border: 1px solid rgb(0, 0, 0);
  }
  .intro .intro-image img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 720px;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .intro .intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin: 28px 0 50px;
  }
  .intro .intro-stat {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 115px;
    padding: 25px 25px;
    text-decoration: none;
    background: #1c5285;
    border: 2px solid #051320;
    color: white;
    transition: 0.2s ease-in-out;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background-image: url(/assets/images/global/backgrounds/bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
  }
  .intro .intro-stat strong {
    display: block;
    margin-bottom: 15px;
    font-size: clamp(1.35rem, 3vw, 2rem);
    line-height: 1;
    font-weight: 700;
    color: white;
  }
  .intro .intro-stat .text {
    font-size: clamp(1.15rem, 2.5vw, 1.65rem);
  }
  .intro .intro-stat span {
    display: block;
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    color: white;
  }
  .intro .intro-stat small {
    display: block;
    font-size: 13px;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.75);
  }
  .intro a.intro-stat:hover {
    background-image: url(/assets/images/global/backgrounds/bg-light-blue.webp);
  }
  .intro a.intro-stat:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: -3px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 1100px) {
  .intro .intro-stats {
    display: none;
  }
}
@media only screen and (min-width: 0px) and (max-width: 900px) {
  .intro .intro-inner {
    display: flex;
    flex-direction: column-reverse;
  }
  .intro .intro-image img {
    max-height: 500px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 700px) {
  .intro .buttons a {
    width: 100%;
  }
}
@media only screen and (min-width: 0px) {
  .details {
    background-color: #143e68;
    background: linear-gradient(180deg, #1c5285 0%, #15426d 50%, #1c5285 100%);
    background-image: url(/assets/images/services/ceiling-painting/bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
  }
  .details .details-inner {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
  }
  .details .details-heading {
    max-width: 850px;
    margin: 0 auto 40px;
    text-align: center;
    background: rgba(3, 41, 93, 0.8);
    padding: clamp(22px, 3vw, 30px);
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.75);
  }
  .details .details-heading h2 {
    display: block;
    color: var(--primary);
    font-size: 15px;
    margin-bottom: 5px;
    font-family: "Inter", system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0;
  }
  .details .details-heading .header-title {
    display: block;
    font-family: "Anton", system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: clamp(34px, 7vw, 44px);
    font-weight: 100;
    line-height: 1.15;
    margin-bottom: 15px;
    color: white;
  }
  .details .details-heading p {
    max-width: 750px;
    margin: 0 auto;
    color: white;
    font-size: clamp(15px, 2vw, 16px);
    line-height: 1.5;
  }
  .details .details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .details .detail-card {
    padding: clamp(22px, 3vw, 30px);
    background: rgba(3, 41, 93, 0.8);
    border: 1px solid rgb(0, 0, 0);
    transition: 0.2s ease-in-out;
  }
  .details .detail-card h3 {
    font-size: clamp(16px, 3vw, 24px);
    font-weight: 100;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 12px;
  }
  .details .detail-card p {
    color: rgb(255, 255, 255);
    font-size: 15px;
    line-height: 1.5;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.75);
  }
}
@media only screen and (min-width: 0px) and (max-width: 1000px) {
  .details .details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 0px) and (max-width: 700px) {
  .details .details-heading {
    text-align: left;
  }
  .details .details-heading p {
    margin: 0;
  }
  .details .details-grid {
    grid-template-columns: 1fr;
  }
  .details .detail-card:hover {
    transform: none;
  }
}
@media only screen and (min-width: 0px) {
  .process {
    background: #061F44;
    background-image: url(/assets/images/global/backgrounds/bg-light-blue.webp);
    background-size: cover;
    background-repeat: no-repeat;
  }
  .process .process-inner {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(35px, 6vw, 70px);
    align-items: stretch;
  }
  .process .process-heading {
    max-width: 850px;
    margin-bottom: 35px;
  }
  .process .process-heading h2 {
    display: block;
    color: var(--primary);
    font-size: 15px;
    margin-bottom: 5px;
    font-family: "Inter", system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0;
  }
  .process .process-heading .header-title {
    display: block;
    font-family: "Anton", system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: clamp(34px, 7vw, 44px);
    font-weight: 100;
    line-height: 1.15;
    margin-bottom: 15px;
    color: white;
  }
  .process .process-heading p {
    max-width: 700px;
    color: white;
    font-size: clamp(15px, 2vw, 16px);
    line-height: 1.5;
  }
  .process .process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .process .process-step {
    padding: clamp(22px, 3vw, 30px);
    background: #1b4b7c;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background-image: url(/assets/images/global/backgrounds/bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
  }
  .process .process-step span {
    font-family: "Anton", system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: clamp(16px, 3vw, 24px);
    font-weight: 100;
    line-height: 1;
    color: var(--primary);
    margin-bottom: 10px;
  }
  .process .process-step h3 {
    font-family: "Anton", system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: clamp(16px, 3vw, 24px);
    font-weight: 100;
    line-height: 1.1;
    color: white;
    margin-bottom: 12px;
  }
  .process .process-step p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.5;
  }
  .process .process-image {
    overflow: hidden;
    border: 1px solid rgb(0, 0, 0);
  }
  .process .process-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .process .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 50px;
  }
  .process .cta-buttons a {
    transition: 0.1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    height: 55px;
    padding: 25px 20px;
    text-decoration: none;
    box-shadow: 0px 0px 3px black;
  }
  .process .cta-buttons a:first-child {
    color: var(--textColor);
    background: var(--primary);
    background-image: url(/assets/images/global/backgrounds/bg-yellow.webp);
  }
  .process .cta-buttons a:first-child:hover {
    background-image: url(/assets/images/global/backgrounds/yellow-lighter.webp);
  }
  .process .cta-buttons .cta-phone {
    color: var(--primary);
    background: rgba(0, 0, 0, 0.125);
    border: 1px solid var(--primary);
    font-weight: 700;
  }
  .process .cta-buttons .cta-phone:hover {
    color: var(--textColor);
    background-image: url(/assets/images/global/backgrounds/yellow-lighter.webp);
  }
}
@media only screen and (min-width: 0px) and (min-width: 0px) and (max-width: 700px) {
  .process .cta-buttons {
    margin-top: 25px;
  }
  .process .cta-buttons a {
    width: 100%;
  }
}
@media only screen and (min-width: 0px) and (max-width: 900px) {
  .process .process-inner {
    grid-template-columns: 1fr;
  }
  .process .process-image img {
    max-height: 500px;
  }
}
@media only screen and (min-width: 0px) and (max-width: 700px) {
  .process .process-grid {
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 0px) {
  .gallery {
    background: #061F44;
    background-image: url(/assets/images/global/backgrounds/bg-inverse.webp);
    background-size: cover;
    background-repeat: no-repeat;
  }
  .gallery .gallery-inner {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
  }
  .gallery .gallery-heading {
    max-width: 850px;
    margin: 0 auto 35px;
    text-align: center;
  }
  .gallery .gallery-heading h2 {
    display: block;
    color: var(--primary);
    font-size: 15px;
    margin-bottom: 5px;
    font-family: "Inter", system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0;
  }
  .gallery .gallery-heading .header-title {
    display: block;
    font-family: "Anton", system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: clamp(34px, 7vw, 44px);
    font-weight: 100;
    line-height: 1.15;
    margin-bottom: 15px;
    color: white;
  }
  .gallery .gallery-heading p {
    max-width: 650px;
    margin: 0 auto;
    color: white;
    font-size: clamp(15px, 2vw, 16px);
    line-height: 1.5;
  }
  .gallery .gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
  .gallery .gallery-preview-grid a {
    display: block;
    position: relative;
    overflow: hidden;
    background: #143e68;
    aspect-ratio: 4/3;
  }
  .gallery .gallery-preview-grid a:hover img {
    transform: scale(1.06);
  }
  .gallery .gallery-preview-grid img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transition: transform 0.35s ease;
  }
  .gallery .gallery-button {
    display: flex;
    justify-content: center;
    margin-top: clamp(30px, 5vw, 50px);
  }
  .gallery .gallery-button a {
    transition: 0.1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: var(--textColor);
    height: 55px;
    padding: 25px 20px;
    background: var(--primary);
    box-shadow: 0px 0px 3px black;
    text-decoration: none;
    background-image: url(/assets/images/global/backgrounds/bg-yellow.webp);
  }
  .gallery .gallery-button a:hover {
    background-image: url(/assets/images/global/backgrounds/yellow-lighter.webp);
  }
}
@media only screen and (min-width: 0px) and (max-width: 700px) {
  .gallery .gallery-heading {
    text-align: left;
  }
  .gallery .gallery-heading p {
    margin: 0;
  }
  .gallery .gallery-preview-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .gallery .gallery-button a {
    width: 100%;
  }
}
@media only screen and (min-width: 0px) {
  #cta {
    background: #0d2b4a;
    background-image: url(/assets/images/about/cta.webp);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: left;
  }
  #cta .cta-inner {
    background-color: rgba(0, 0, 0, 0.25);
    width: 100%;
    margin: 0 auto;
    padding: clamp(60px, 8vw, 100px) 0;
  }
  #cta .cta-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    padding: clamp(15px, 5vw, 60px);
  }
  #cta .cta-content h2 {
    display: block;
    color: var(--primary);
    font-size: 15px;
    margin-bottom: 5px;
    font-family: "Inter", system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0;
  }
  #cta .header-title {
    display: block;
    font-family: "Anton", system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
    max-width: 800px;
    font-size: clamp(34px, 7vw, 44px);
    font-weight: 100;
    line-height: 1.15;
    margin: 0 auto;
    margin-bottom: 15px;
    color: white;
  }
  #cta p {
    max-width: 650px;
    margin: 0 auto 35px;
    color: white;
    font-size: clamp(15px, 2vw, 15px);
    line-height: 1.5;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.75);
  }
  #cta .cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }
  #cta .cta-buttons a {
    transition: 0.1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    height: 55px;
    padding: 25px 20px;
    text-decoration: none;
    box-shadow: 0px 0px 3px black;
  }
  #cta .cta-buttons a:first-child {
    color: var(--textColor);
    background: var(--primary);
    background-image: url(/assets/images/global/backgrounds/bg-yellow.webp);
  }
  #cta .cta-buttons a:first-child:hover {
    background-image: url(/assets/images/global/backgrounds/yellow-lighter.webp);
  }
  #cta .cta-buttons .cta-phone {
    color: var(--primary);
    background: rgba(0, 0, 0, 0.125);
    border: 1px solid var(--primary);
    font-weight: 700;
  }
  #cta .cta-buttons .cta-phone:hover {
    color: var(--textColor);
    background-image: url(/assets/images/global/backgrounds/yellow-lighter.webp);
  }
}
@media only screen and (min-width: 0px) and (max-width: 700px) {
  #cta .cta-content {
    text-align: left;
  }
  #cta .cta-buttons a {
    width: 100%;
  }
}/*# sourceMappingURL=ceiling-painting-local.css.map */