@font-face {
  font-family: 'Sligoil';
  src: url('fonts/Sligoil-Micro.woff2') format('woff2'),
       url('fonts/Sligoil-Micro.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
    --primary-color: #000;
    --secondary-color: #fff;
    --accent-color: #ddd;
    --border-width: clamp(0.22rem,0.39rem + -0.29vw,0.18rem);
  }


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Sligoil", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }

  body {
    font-size: calc(1rem + .5vw);
    max-width: 100rem;
    margin: 0 auto;

    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  h1, h2, h3, h4 {
    font-weight: normal;
  }

  main {
    display: flex;
  min-height: 100vh;
  margin-right: auto;
  margin-left: auto;
  flex-direction: column;
  border: var(--border-width) solid var(--primary-color);
  margin: 1rem;
  }

  .header {
    border-bottom: var(--border-width) solid var(--primary-color);
  }

  .header h1 {
    font-weight: normal;
    padding: 2rem;
    font-size: calc(2rem + 3vw);
    text-transform: uppercase;
    text-align: center;
  
  }

  .main-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    border-bottom: var(--border-width) solid var(--primary-color);
  }

  .left-column {
    padding: 4rem;
    border-right: var(--border-width) solid var(--primary-color);
  }

  .right-column {
    background-color: var(--secondary-color);
    position: relative;
    overflow: hidden;
  }

  .right-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }

  .left-column p {
    margin-bottom: 1rem;
    line-height: 1.5;
  }

  .contact-button {
    display: inline-block;
    padding: 1rem 2rem;
    border: var(--border-width) solid var(--primary-color);
    text-decoration: none;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-top: 1rem;
    text-align: center;
  }

  
  

.right-column {
    position: relative;
    overflow: hidden;
    background-color: var(--secondary-color);
}

.corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border: var(--border-width) solid var(--primary-color);
    z-index: 2;
}

.top-left {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.top-right {
    top: 20px;
    right: 20px;
    border-left: none;
    border-bottom: none;
}

.bottom-left {
    bottom: 20px;
    left: 20px;
    border-right: none;
    border-top: none;
}

.bottom-right {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

@media (max-width: 768px) {
    .corner {
        width: 20px;
        height: 20px;
    }
}

.about-container {
    /*display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;*/
    border-bottom: var(--border-width) solid var(--primary-color);
    padding: 4rem;
}

.about-container p {
  //padding: 3rem;
}


@media (max-width: 768px) {
  .about-container {
      padding: 2rem;
  }
}
  .border {
    content: "";
    height: var(--border-width);
    background: var(--primary-color);
    margin: 1rem 0;
  }

  .services-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding: 0;
    width: 100%;
    //border-top: 1px solid #000;
    margin: 0 auto;
  }

  .service-column {
    display: flex;
    flex-direction: column;
    padding: 4rem;
    border-right: var(--border-width) solid var(--primary-color);
    border-bottom: var(--border-width) solid var(--primary-color);
    transition: all 0.3s ease;
    background: #fff;
  }

  .service-column:nth-child(2n) {
    border-right: none;
  }

  .service-column p {
    /*font-size: 90%;*/
    line-height: 1.6;
    color: var(--primary-color);
    padding-bottom: 1rem;
  }

  .service-icon {
    display: none;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    width: 4rem;
    height: 4rem;
    background: var(--primary-color);
  }

  .service-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--secondary-color);
  }

  .service-column h3, .process-step h3 {
    margin-bottom: 2rem;
    font-size: calc(1.5rem + 0.5vw);
    text-transform: uppercase;
    /*background: var(--primary-color);*/
    color: var(--primary-color);
    /*padding: 1rem 2rem;*/
    /*text-align: center;
    width: fit-content;*/

    /*text-decoration: underline;
    text-decoration-style: solid;
    text-underline-offset: .3em;
    text-decoration-thickness: var(--border-width);
    text-decoration-color: var(--primary-color);*/
  }

  

  .rounded-button {
    border-radius: 30px;
  }

  .service-items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 2rem;
  }

 
  .service-items span {
    font-size: calc(0.7rem + 0.2vw);
    padding: 0.25rem 0.75rem;
    /*border: var(--border-width) solid var(--primary-color);*/
    border-radius: 0px;
    text-transform: uppercase;
    background-color: var(--accent-color);
    color: var(--primary-color);
    /*color: var(--secondary-color);*/
  }

  .tagline {
    font-size: calc(2rem + 1vw);
    line-height: 1.2;
    padding-top: 20rem;
    margin-bottom: 4rem;
    font-weight: normal;
}

.button-group {
    display: flex;
    gap: 1rem;
}

.primary-button, .secondary-button {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    text-transform: uppercase;
    font-size: calc(1rem + 0.5vw);
    transition: all 0.3s ease;
}

.primary-button {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: var(--border-width) solid var(--primary-color);
    box-shadow: 0.2rem 0.2rem 0 0 var(--accent-color);
}

.primary-buttons {
  color: var(--primary-color);
}

.secondary-button {
    background: transparent;
    color: var(--primary-color);
    border: var(--border-width) solid var(--primary-color);
}

.primary-button:hover {
    background: var(--primary-color);
    border-color: var(--primary-color)
}

.secondary-button:hover {
    background: #f5f5f5;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  border-bottom: var(--border-width) solid var(--primary-color);
}

.contact-left {
  padding: 3rem;
  /*border-right: var(--border-width) solid var(--primary-color);*/
}

.contact-left h3, .contact-right h3 {
  font-size: 1em;
  font-weight: normal;
  text-transform: uppercase;
}

.contact-info {
  margin-top: 2rem;
}

.contact-info p {
  /*font-size: 90%;*/
  line-height: 1.6;
  color: var(--primary-color);
  padding-bottom: 1rem;
}

.contact-right {
  padding: 3rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

select {
    width: 100%;
    padding: 1.2rem;
    border: var(--border-width) solid var(--primary-color);
    font-family: inherit;
    font-size: calc(1rem + 0.5vw);
    background: transparent;
    border-radius: 0;
    color: #666;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,<svg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M6 9L12 15L18 9' stroke='black' stroke-width='4' stroke-linecap='square' stroke-linejoin='miter'/></svg>");
    background-repeat: no-repeat;
    background-position: calc(100% - 1rem) center;
    background-size: 1.2rem;
    border-radius: 0;
}

select::-ms-expand {
    display: none;
}

select option {
    font-size: 1rem;
    padding: 0.5rem;
}

select option:first-child {
    color: #666;
}

select:focus {
    outline: none;
}

/* Hide default arrow in IE */
select::-ms-expand {
    display: none;
}


.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style-type: none;
    border-bottom: var(--border-width) solid var(--primary-color);

}

.faq-item {
    border-bottom: var(--border-width) solid var(--primary-color);
}

.faq-list .faq-item:last-child {
    border-bottom: none;
}

.faq-details {
    display: flex;
    flex-direction: column;
    width: 100%;
    cursor: pointer;
}

.faq-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.faq-title {
    font-weight: normal;
    color: var(--primary-color);
    margin: 0;
    /*text-transform: uppercase;*/
    /*font-size: calc(0.8rem + 1vw);*/
    
}

.faq .icon-container {
    display: flex;
    align-items: center;
    padding-bottom: 0rem;
    justify-content: space-between;
}

.faq-icon {
    font-size: calc(2rem + 0.5vw);
    /*font-weight: 300;*/
    line-height: 1;
    transition: transform 0.3s ease;
}

details[open] .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    padding: 2rem;
    padding-top: 0;
}

details > summary::-webkit-details-marker, details > summary::marker {
  display: none;
  content: "";
}

::-webkit-details-marker {   
  display:none; 
}


.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 1rem;
  border: var(--border-width) solid var(--primary-color);
  background: transparent;
  font-family: inherit;
  font-size: calc(0.8rem + 0.2vw);
  color: var(--primary-color);
  border-radius: 0;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
}

.contact-form button {
  align-self: flex-start;
}

.testimonials-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    border-bottom: var(--border-width) solid var(--primary-color);
    padding: 4rem;
    gap: 4rem;
}

.testimonial-column {
    /*padding: 3rem;
    border-right: var(--border-width) solid var(--primary-color);*/
    border: solid var(--border-width) var(--primary-color);
    padding: 2rem 2rem;
    box-shadow: 0.2rem 0.2rem 0 0 var(--accent-color);
}

.testimonial-column:last-child {
    /*border-right: none;*/
}

.testimonial-column h3 {
    font-size: 1em;
    font-weight: normal;
    text-transform: uppercase;
}

.testimonial-column p {
    /*font-size: 90%;*/
    line-height: 1.6;
    color: var(--primary-color);
    margin: 2rem 0;
    margin-top: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.author-initial {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: calc(1rem + 0.2vw);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author-info span {
    font-size: calc(0.8rem + 0.1vw);
}

.author-info .company {
    color: #666;
    font-size: calc(0.9rem + 0.1vw);
}

.testimonial-author {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.testimonial-author span {
    font-size: 0.9em;
}

.testimonial-author .company {
    color: #666;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /*gap: 2rem;
    margin-top: 2rem;*/
}

.clients-grid span {
    font-size: calc(0.7rem + 1vw);
    color: var(--primary-color);
}

.stats-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 3rem;
    border-bottom: var(--border-width) solid var(--primary-color);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1rem;
}

.stat-number {
    font-size: calc(1.5rem + 1vw);
    font-weight: normal;
    color: var(--primary-color);
}

.stat-label {
    font-size: calc(1rem + 0.1vw);
    color: var(--primary-color);
}

.stat-separators {
    width: 1px;
    height: 50px;
    background-color: var(--primary-color);
}

.clients-container {
    /*padding: 3rem;*/
    border-bottom: var(--border-width) solid var(--primary-color);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}

.clients-grid span {
    font-size: calc(0.8rem + 1vw);
    padding: 2rem 0;
    border-right: var(--border-width) solid var(--primary-color);
    border-bottom: var(--border-width) solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.clients-grid span:nth-child(4n) {
    border-right: none;
}

.clients-grid span:nth-last-child(-n+4) {
    border-bottom: none;
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .clients-grid span:nth-child(2n) {
        border-right: none;
    }
    
    .clients-grid span:nth-child(4n) {
        /*border-right: var(--border-width) solid var(--primary-color);*/
    }
    
    .clients-grid span:nth-last-child(-n+4) {
        border-bottom: var(--border-width) solid var(--primary-color);
    }
    
    .clients-grid span:nth-last-child(-n+2) {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
  .services-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .service-column {
    padding: 2rem;
    border-right: none;
  }

  .service-items {
      gap: 0.35rem;
      padding-top: 1.5rem;
  }
  
  .service-items span {
      font-size: 0.75em;
      padding: 0.2rem 0.5rem;
  }

  .tagline {
      font-size: calc(1.1rem + 1vw);
      margin-bottom: 2rem;
  }

 
  
  .button-group {
      flex-direction: column;
  }
  
  .primary-button, .secondary-button {
      text-align: center;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .contact-left {
    /*border-right: none;
    border-bottom: var(--border-width) solid var(--primary-color);*/
    padding: 2rem;
  }

  .contact-right {
    padding: 2rem;
  }

  .testimonials-container {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
  
  .testimonial-column {
    /*border-right: none;
    border-bottom: var(--border-width) solid var(--primary-color);*/
  }
  
  .testimonial-column:last-child {
    /*border-bottom: none;*/
  }
  
  .clients-grid {
    /*gap: 1rem;*/
  }

  .stats-container {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1rem;
  }
  
  .stat-separator {
    //display: none;
  }
  
  .stat-item {
    padding: 0;
  }

  .testimonial-author {
    gap: 0.75rem;
  }
  
  .author-image {
    width: 40px;
    height: 40px;
  }

  .main-container {
    grid-template-columns: 1fr;
  }

  .left-column {
    order: 2;
    padding: 2rem;
    border-right: none;
  }

  .right-column {
    order: 1;
    min-height: 50vh;
    border-bottom: var(--border-width) solid var(--primary-color);
  }

  .tagline {
    font-size: calc(1.1rem + 1vw);
    padding-top: 0;
  }

  .clients-container {
    /*padding: 2rem;*/
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    //gap: 1.5rem;
  }

  .corner {
        width: 20px;
        height: 20px;
    }

  .header h1 {
    font-size: calc(1.5rem + 3vw);
    padding: 1rem;
    text-align: center;
    /*flex-direction: column;
    gap: 0.5rem;*/
  }

  main {
    margin: 0.5rem;
  }
}





marquee {
    color: var(--text-color);
    text-transform: uppercase;
    padding: 2rem;
    border-bottom: var(--border-width) solid var(--primary-color);
  }
  
  marquee span:after {
    display: inline-block;
    content: "·";
    margin: 0 1rem;
   }
  

  
  @-moz-keyframes scroll-left {
    0% {
        -moz-transform: translateX(100%);
    }
    100% {
        -moz-transform: translateX(-100%);
    }
  }
  
  @-webkit-keyframes scroll-left {
    0% {
        -webkit-transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(-100%);
    }
  }
  
  @keyframes scroll-left {
    0% {
        -moz-transform: translateX(100%);
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        -moz-transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
  }

  .process-title {
    display: flex;
    align-items: center;
    justify-content: center; 
    padding: 3rem;
    font-size: calc(1.2rem + 1vw);
    border-bottom: var(--border-width) solid var(--primary-color);
    text-transform: uppercase;
  }

  .process-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    border-bottom: var(--border-width) solid var(--primary-color);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
}

.process-step {
    padding: 4rem;
    border-bottom: var(--border-width) solid var(--primary-color);
    border-right: var(--border-width) solid var(--primary-color);
    position: relative;
}

.process-number {
    font-size: calc(20rem + 0.5vw);
    color: #f5f5f5;
    position: absolute;
    z-index: -1;
    right: 2rem;
    bottom: 2rem;
    /*background-color: var(--accent-color);*/
    /*padding: 0rem;
    width: fit-content;
    margin-bottom: 0rem;
    box-shadow: 0.2rem 0.2rem 0 0 var(--primary-color);*/
}

.process-step h3 {
    /*margin-bottom: 0rem;*/
    /*font-size: calc(1.3rem + 0.5vw);*/
    text-transform: uppercase;
    /*background: var(--primary-color);*/
    color: var(--primary-color);
    /*padding: 1rem;
    text-align: center;
    width: fit-content;*/
}

.process-step:nth-child(2n) {
    border-right: none;
}

.process-step:nth-last-child(-n+2) {
    border-bottom: none;
}

.process-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        border-right: none;
    }

    .process-step:nth-last-child(-n+2) {
        border-bottom: var(--border-width) solid var(--primary-color);
    }

    .process-step:last-child {
        border-bottom: none;
    }
}

  @media (max-width: 768px) {
    .process-step {
        padding: 2rem;
    }
    
    .process-content {
        gap: 0.75rem;
    }

    .process-number {
      font-size: calc(15rem + 0.5vw);
      color: #f5f5f5;
      position: absolute;
      z-index: -1;
      right: 2rem;
      bottom: 2rem;
      /*background-color: var(--accent-color);*/
      /*padding: 0rem;
      width: fit-content;
      margin-bottom: 0rem;
      box-shadow: 0.2rem 0.2rem 0 0 var(--primary-color);*/
  }
}

  .footer {
    display: flex;
    justify-content: space-between;
    padding: 3rem;
  }


  .process-title span {
    position: relative;
  }

  .process-title span::after {
    content: '';
    position: absolute;
    bottom: -0.125rem;
    left: -0.5rem;
    right: -0.5rem;
    height: 1.5rem;
    z-index: -1;
    background-image: url('underline.svg');
    background-repeat: no-repeat;
    background-size: cover;
  }

  .red {
    position: relative;
  }

.red::after {
  content: '';
  position: absolute;
  bottom: -0.7rem;
  left: -0.5rem;
  right: -0.5rem;
  height: 1.5rem;
  z-index: -1;
  background-image: url(underline.svg);
  background-repeat: no-repeat;
  background-size: cover;
  }
::selection {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.qr {
  border: var(--border-width) solid var(--primary-color);
  padding: 0.2rem;
  width: 10rem;
  height: 10rem;
}

.form-container {
    width: 100%;
}

.form-container h2 {
    font-size: calc(1.2rem + 0.5vw);
    margin-bottom: 2rem;
    font-weight: normal;
    text-transform: uppercase;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    /*display: block;*/
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: calc(0.8rem + 0.2vw);
}


input::placeholder, textarea::placeholder {
  font-size: calc(1rem + 0.5vw);
  color: #666;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    border: var(--border-width) solid var(--primary-color);
    font-family: inherit;
    font-size: calc(1rem + 0.5vw);
    background: transparent;
    border-radius: 0;
    color: var(--primary-color);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
}

.form-container button {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: var(--border-width) solid var(--primary-color);
    padding: 1rem 2rem;
    text-transform: uppercase;
    font-size: calc(1rem + 0.5vw);
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0.2rem 0.2rem 0 0 var(--accent-color);
}

.success-message,
.error-message {
    display: none;
    padding: 1rem;
    margin-top: 1rem;
    text-transform: uppercase;
    font-size: calc(1rem + 0.5vw);
}

.success-message {
    border: var(--border-width) solid var(--primary-color);
    background-color: var(--accent-color);
}

.error-message {
    border: var(--border-width) solid var(--primary-color);
    background-color: #ffebee;
}

.turnstile-container {
    margin: 1.5rem 0;
}