
    :root {
    --PrimaryAccent: #176199;
    --SecondaryAccent: #9e29b3;
    --Black: #14110F;
    --Blue1: #BEE9E8;
    --Blue2: #62B6CB;
    --White:#f8f5f5;
    --envelope: #46acc2;
    --grey: #767d7f;

    --sz: 16px;
    --c1: rgba(30, 142, 176, 0.051);
    --c2: #62B6CB;
    --ts: 50%/ calc(var(--sz) * 10) calc(var(--sz) * 10);
    }
    body{
      /*Page Load animation*/
      animation:transitionIn 0.75s;
      /*Removes Horizontal Scrolling*/
      overflow-x: hidden !important;
      max-width: 100% !important;
    }


    /* DEBUGGING SPACING *
    * {
      outline: 1px solid red;
    }*/

    
    /*Page Load animation*/
    @keyframes transitionIn {
        from {
            opacity:0;
            transform: rotateX(-10deg);
        }

        to {
            opacity:1;
            transform: rotate(0);
        }
    }

    *{
        font-family: "Lato", sans-serif;
        font-style: normal;
    }
    h1,h2,h3,h4,h5{
        font-family: "Staatliches", sans-serif !important;
        font-style: normal;
    }

    /*Progress Bar*/
    .meter {
        box-sizing: content-box;
        height: 10px; /* Can be anything */
        position: relative;
        margin: 5px auto 20px auto; /* auto left/right centers it */
        background: var(--grey);
        border-radius: 25px;
        padding: 5px;
        box-shadow: inset 0 -1px 1px rgba(255, 255, 255, 0.3);
        
        }
        .meter > span {
        display: block;
        height: 100%;
        border-top-right-radius: 8px;
        border-bottom-right-radius: 8px;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
        background-color: rgb(115, 254, 245);
        background-image: linear-gradient(
            center bottom,
            rgb(43, 194, 83) 37%,
            rgb(84, 240, 84) 69%
        );
        box-shadow: inset 0 2px 9px rgba(255, 255, 255, 0.3),
            inset 0 -2px 6px rgba(0, 0, 0, 0.4);
        position: relative;
        overflow: hidden;
        }
        .meter > span:after,
        .animate > span > span {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background-image: linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.2) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0.2) 75%,
            transparent 75%,
            transparent
        );
        z-index: 1;
        background-size: 50px 50px;
        animation: move 2s linear infinite;
        border-top-right-radius: 8px;
        border-bottom-right-radius: 8px;
        border-top-left-radius: 20px;
        border-bottom-left-radius: 20px;
        overflow: hidden;
        }

        .animate > span:after {
        display: none;
        }

        @keyframes move {
        0% {
            background-position: 0 0;
        }
        100% {
            background-position: 50px 50px;
        }
        }

        .orange > span {
        background-image: linear-gradient(#f1a165, #f36d0a);
        }

        .red > span {
        background-image: linear-gradient(#f0a3a3, #f42323);
        }

        .nostripes > span > span,
        .nostripes > span::after {
        background-image: none;
        }

    /*Makes longer words responsive*/
    .text-wrap {
        word-wrap: break-word; /* Break long words */
        overflow-wrap: break-word; /* Alternative property for breaking long words */
    }
    .bg-primaryBlue{
        background-color: var(--PrimaryAccent);
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    
    nav.navbar{
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      /*border-bottom: 1px solid #ddd;*/
      flex-wrap: wrap;
    }
    nav.navbar, .responsiveSection {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: #007bff;
    }

    .innerDomComButtons{
        display: none;
    }
    .menu-toggle {
      display: none;
      font-size: 1.5rem;
      background: none;
      border: none;
      cursor: pointer;
      color: var(--White);
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
      margin-bottom: 0;
      color: var(--White) !important;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--White) !important;
      font-weight: 500;
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .nav-cta a {
      font-size: 0.9rem;
      color: var(--White) !important;
      text-decoration: none;
      z-index: 6;
    }

    .cust-btn{
        background-color: var(--SecondaryAccent);
        color: white;
        border: none;
        transition: 0.5s;
    }
    .cust-btn:hover{
        background-color: #424649;
        color: white;
        transform:scale(1.05);
        transition: 0.5s;
    }


    .commercialDomesticSection{
        background-color: var(--Blue1);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .btn-com{
      background-color: var(--PrimaryAccent) !important;
      border-color: var(--PrimaryAccent) !important;
      border-radius: 8px 8px 0 0;
    /* top-left | top-right | bottom-right | bottom-left */
    }
    .btn-dom{
      background-color: var(--Blue2) !important;
      border-color: var(--Blue2) !important;
      border-radius: 8px 8px 0 0;
    /* top-left | top-right | bottom-right | bottom-left */
    }
    .btn-com:hover,.btn-com:focus, .btn-dom:hover, .btn-dom:focus{
      background-color: var(--PrimaryAccent) !important;
      border-color: var(--PrimaryAccent) !important;
      outline: none !important;
      box-shadow: none !important;
    }

    .DomComButtons{
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav-links li{
    transition: 0.5s;
    text-decoration-color: var(--White);
    }
    .nav-links li:hover {               
        text-decoration: underline;
        transform:scale(1.05);
        transition: 0.5s;
    }      
    /* Responsive styles */
    @media (max-width: 1000px) {
      .DomComButtons{
        padding-right: 180px;
      }
    }
    @media (max-width: 768px) {
        .btn-dom, .btn-com{
            border-radius: 10px;
        }
        .commercialDomesticSection{
            display: none;
        }
        .menu-toggle {
            display: block;
        }

      .nav-links,
      .nav-cta, .innerDomComButtons {
        width: 100%;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        display: flex;
      }

     
      .transition-section .nav-links,
      .transition-section .nav-cta, .transition-section .innerDomComButtons
      {
        max-height: 0;
        opacity: 0;
        padding: 0px;
        transition: max-height 0.3s ease-out, opacity 0.2s ease-out, padding 0.3s ease-out;
      }
      .transition-section.show .nav-links,
      .transition-section.show .nav-cta, .transition-section.show .innerDomComButtons
      {
        max-height: 1000px; /* Make sure this is enough */
        opacity: 1;
        padding: 1rem 0;
      }

    }

    @media (max-width: 390px) {
      .transition-section .nav-links, .transition-section .nav-cta, .transition-section .innerDomComButtons{
        flex-flow: column;
        text-align: center;
      }
      .btn-secondary{
        margin-top: 16px;
      }
      .transition-section .innerDomComButtons{
        padding-top: 0px !important;
      }
    }


/*Hero Section*/

.main-container{    
    display: flex;
    justify-content: center;
    background: 
		radial-gradient(circle at 0% 0%, var(--c1) 7%, #fff0 calc(7% + 1px) 100%) var(--ts),
		radial-gradient(circle at 100% 0%, var(--c1) 7%, #fff0 calc(7% + 1px) 100%) var(--ts),
		radial-gradient(circle at 100% 100%, var(--c1) 7%, #fff0 calc(7% + 1px) 100%) var(--ts),
		radial-gradient(circle at 0% 100%, var(--c1) 7%, #fff0 calc(7% + 1px) 100%) var(--ts),
		radial-gradient(circle at 50% 0%, var(--c2) 8%, #fff0 calc(8% + 1px) 100%) var(--ts),
		radial-gradient(circle at 50% 100%, var(--c2) 8%, #fff0 calc(8% + 1px) 100%) var(--ts),
		radial-gradient(circle at 50% 0%, var(--c2) 8%, #fff0 calc(8% + 1px) 100%) var(--ts),
		radial-gradient(circle at 50% 100%, var(--c2) 8%, #fff0 calc(8% + 1px) 100%) var(--ts),
		radial-gradient(circle at 50% 0%, var(--c1) 13%, #fff0 calc(13% + 1px) 100%) var(--ts),
		radial-gradient(circle at 50% 100%, var(--c1) 13%, #fff0 calc(13% + 1px) 100%) var(--ts),
		radial-gradient(circle at 0% 50%, var(--c2) 8%, #fff0 calc(8% + 1px) 100%) var(--ts),
		radial-gradient(circle at 100% 50%, var(--c2) 8%, #fff0 calc(8% + 1px) 100%) var(--ts),
		radial-gradient(circle at 0% 50%, var(--c2) 8%, #fff0 calc(8% + 1px) 100%) var(--ts),
		radial-gradient(circle at 100% 50%, var(--c2) 8%, #fff0 calc(8% + 1px) 100%) var(--ts),
		radial-gradient(circle at 0% 50%, var(--c1) 13%, #fff0 calc(13% + 1px) 100%) var(--ts),
		radial-gradient(circle at 100% 50%, var(--c1) 13%, #fff0 calc(13% + 1px) 100%) var(--ts),
		linear-gradient(45deg, #fff0 0 22%, var(--c1) 0 28%, #fff0 0 72%, var(--c1) 0 78%, #fff0 0 100%) var(--ts),
		linear-gradient(135deg, #fff0 0 22%, var(--c1) 0 28%, #fff0 0 72%, var(--c1) 0 78%, #fff0 0 100%) var(--ts),
		radial-gradient(circle at 50% 50%, var(--c1) 15%, #fff0 calc(15% + 1px) 100%) var(--ts),
		linear-gradient(0deg, var(--c1) 0 4%,  #fff0 0 46%, var(--c1) 0 54%, #fff0 0 96%, var(--c1) 0 100%) var(--ts),
		linear-gradient(90deg, var(--c1) 0 4%,  #fff0 0 46%, var(--c1) 0 54%, #fff0 0 96%, var(--c1) 0 100%) var(--ts),
		var(--c2);
}
    /*background-color: #73cbde;*/

.everythingRow{
    max-width: 100%;
    padding-top: 32px;
    padding-inline:60px;
    display: flex;
    position: relative;
    overflow-x: visible;
    display: flex;
}
@media (max-width:880px) {
    .everythingRow{
    padding-inline:40px;
}
    
}
@media (max-width:400px) {
    .everythingRow{
    padding-inline:10px;
}
}

.textSection{
    position: relative;
    z-index: 2;
    overflow-x: visible;
    overflow-y: hidden;
    margin-bottom: 48px;

}
.textSection h2{
    font-size: 76px;
}
.textSection h2 span {
    color: var(--SecondaryAccent);
    font-family: "Staatliches", sans-serif !important;
    font-style: normal;
}
@media (max-width:770px) {
    .textSection{
      margin-bottom: 260px;
    }
}
@media (max-width:500px) {
    .textSection h2{
      font-size: 60px;
    }
}
.textSection ul li{
    font-size: 24px;
    color: #201f1e;
    font-weight: 600;
    list-style: none;
    display: flex; align-items: center; gap: 8px;
}
.textSection ul{
    padding-left: 0px;
}
.textSection ul img{
    filter: invert(21%) sepia(39%) saturate(3517%) hue-rotate(271deg) brightness(110%) contrast(103%);
    display: block;
}

.reviewsWidget{
  padding: 10px;
  border-radius: 60px;
  max-width: fit-content;
  display: flex;
  justify-content: start;
  align-items: center;
}
.reviewsWidget .google, .reviewsWidget .facebook{
  display: flex;
  justify-content: start;
  align-items: center;
}
@media(max-width:400px){
  .reviewsWidget{
    margin-inline: auto;
    max-width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
}
.reviewsWidget p{
 font-size: 12px;
}
.reviewsWidget p{
 font-size: 12px;
 margin-right: 24px;
}
.reviewsWidget img{
  height: 50px;
  margin-right: 12px;
}

.topForm{
    padding: 7px;
    width: 100%;
    height: auto;
    background-color: var(--grey);
    border-radius: 10px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    margin-top:180px;
}
.topForm form {
  overflow-x: hidden;
  margin-inline: 0px;
  background-color: var(--Blue2);
  background-image:url("../images/CardboardTexture.jpg")
}
.topForm form .cust-btn{
  background-color: #424649;
}
.formTextTop{
    text-align: center;
    background-image:url("../images/CardboardTexture.jpg");
    border-radius: 10px 10px 0 0;
    padding-bottom: 0.125rem;
}
.formTextTop h2{
    font-size: 44px;
    padding-top: 32px;
    padding-bottom: 0px;
    margin-bottom: 0px;
}
.formTextTop p{
    font-size: 28px;
}

.FormRow{
  padding-inline: 0px;
  margin-inline: 10px;
  width: 45% !important;
}

@media (max-width:1500px) {
    .topForm{
        margin-top:180px ;
    }
}

@media (max-width:770px) {
    .FormRow{
      width: 45% !important;
    }
}
@media (max-width:501px) {
    .FormRow{
      width: 90% !important;
    }
}

.vector-image {
  display: block;        /* Ensures it's treated like a block element */
  width: 100%;          /* Optional: scale as needed */
  height: auto;
}

.formImageContainer {
  position: relative;
  z-index: 1;
  overflow: visible; /* allow image to overflow */
}

.HeroArmsCrossed {
  position: absolute;
  top: -275px;
  left: 20%; /* controls how far out it sticks */
  height: 700px;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}
.left {
  position: absolute;
  top: 25%;
  left: -20px; /* controls how far out it sticks */
  height: 80px;
  object-fit: cover;
  z-index: 5;
  pointer-events: none;
}
.right {
  position: absolute;
  top: 25%;
  right: -20px; /* controls how far out it sticks */
  height: 80px;
  object-fit: cover;
  z-index: 5;
  pointer-events: none;
}

@media (max-width:1242px) {
  .HeroArmsCrossed {
    position: absolute;
      top: -275px;
      left: 20%; /* controls how far out it sticks */
      height: 700px;
      object-fit: cover;
      z-index: -1;
      pointer-events: none;
    }
    .FormRow{
      width: 40% !important;
    }
}
@media (max-width:1080px) {
    
    .HeroArmsCrossed {
      position: absolute;
      top: -275px;
      left: 10%; /* controls how far out it sticks */
      height: 700px;
      object-fit: cover;
      z-index: -1;
      pointer-events: none;
    }
}
@media (max-width:990px) {
  .main-container{
        overflow-x: hidden;  /* prevent overflow from inner elements */
      padding-inline: 10px;
  }
  .topForm{
    margin-top: 0px;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 55px;
  }
  .everythingRow{
      overflow: hidden;
  }
  
    .HeroArmsCrossed {
      position: absolute;
      top: -275px;
      left: 20%; /* controls how far out it sticks */
      height: 700px;
      object-fit: cover;
      z-index: -1;
      pointer-events: none;
    }
}

@media (max-width:706px) {
  .topForm{
    margin-bottom: 20px;
  }    
}
@media (max-width:520px) {
  .HeroArmsCrossed {
      position: absolute;
      top: -275px;
      left: -5%; /* controls how far out it sticks */
      height: 700px;
      object-fit: cover;
      z-index: -1;
      pointer-events: none;
    } 
}
@media (max-width:400px) {
  .HeroArmsCrossed {
      position: absolute;
      top: -275px;
      left: -10%; /* controls how far out it sticks */
      height: 700px;
      object-fit: cover;
      z-index: -1;
      pointer-events: none;
    } 
}
.badges{
  position: relative;
    z-index: 4;
    overflow: hidden;
        overflow-y: hidden;

    background-color: var(--White);
}
.badges .row{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  z-index: 4;
  overflow: hidden;
  padding-inline:60px;
  padding-top: 30px;
  padding-bottom: 30px;

}
.badges .row img{
  height: 120px;
  width: auto;
  z-index: 4;
  overflow: hidden;

}
.reviews{
  background-color: white;
  padding-bottom: 80px;
}
.reviews h3{
  margin-top: 40px;
  font-size: 60px;
}
.reviews .container{
    padding-inline:60px;
}
.reviews .text-primary{
  color: var(--SecondaryAccent) !important;
}

.cta-row{
  background-color: var(--White);
}
.cta-row .row{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  overflow: hidden;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-inline: 0px !important;
}
.cta-row .row .col{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  overflow: hidden;
  text-align: center;
  padding-inline: 0px;
}
.cta-row .row .col img{
  height: 120px;
  width: auto;
}
@media(max-width:840px){
  .cta-row .row .col img{
    height: 80px;
    width: auto;
  }
}
@media(max-width:435px){
  .cta-row .row .col img{
    height: 50px;
    width: auto;
  }
}
.cta-row .row .col h3{
  color: #14110F;
  font-size: 40px;
  transition: 0.3s;
}
.cta-row .row .col h3:hover{
  transform: scale(1.1);
  transition: 0.3s;
}
.cta-row .row .col button{
  margin: 0px;
}
@media(max-width:830px){
  .cta-row
  .cta-row .row .col img{
    margin-bottom: 20px;
  }
}
.leftImageRightText .leftImage img{
  border-radius: 80px;
  padding: 20px;
}
.leftImageRightText .leftImage{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  overflow: hidden;
}
.leftImageRightText .rightText{
  margin-top: auto;
  margin-bottom: auto;
  overflow: hidden;
}

@media(max-width:770px){
  .leftImageRightText{
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .leftImageRightText .rightText{
      padding-left: 32px !important;
}
  .leftImageRightText .leftImage{
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.leftImageRightText .leftImage img{
  width: 100%;
}
}