/*STYLES*/
/*
 1. Generics definitions
 2. Overfold Area
 3. Preheader bar
 4. Top menu
 5. Animated Burguer Button
 6. Below Overfold Cards
 7. About us section
 8. CSS for simple horizontal slider
 9. Slides Content
10. Qualitites Section
11. Services 
12. How Work
13. Pricing 
14. Locations
15. Contact Form
*/


/**GENERIC DEFINITIONS*/
:root {
  scroll-behavior: smooth;
  scroll-padding-top: 115px; 
}
html {
    box-sizing: border-box;
    font-family: Roboto, serif;
    line-height: 1.5;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: rgba(0,0,0,0)
 
}
*,*::before,*::after {
    box-sizing: inherit
}

body {
  overflow-x: hidden;
  margin: 0;
}
.homepage {
  background: url("/images/car-wash-overfold.webp") no-repeat;
  background-attachment: fixed;
  background-size:cover;
}
* {
  box-sizing: border-box;
}

p{
  margin-top: 0;
  margin-bottom:0;
}

table{
  border-collapse:collapse
}
a{
  text-decoration:none;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-family: "Open Sans";
    font-weight: 700;
    color: #1761a0;
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.5;
    letter-spacing: 0px;
    font-style: normal;
    text-decoration: none;
    text-align: inherit;
}

h1, .h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
}

h2, .h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
}

h3, .h3 {
    font-size: 1.75rem;
}

h4, .h4 {
    font-size: 1.5rem;
}

h5, .h5 {
    font-size: 1.25rem;
}

h6, .h6 {
    font-size: 1.125rem;
}

@media screen and (max-width: 975px) {
    h1, .h1 {
        font-size: 2.975rem;
    }
    h2, .h2 {
        font-size: 2.125rem;
    }
    h3, .h3 {
        font-size: 1.5rem;
    }
    h4, .h4 {
        font-size: 1.3125rem;
    }
    h5, .h5 {
        font-size: 1.0625rem;
    }
}

@media screen and (max-width: 575px) {
    h1, .h1 {
        font-size: 2.45rem;
    }
    h2, .h2 {
        font-size: 1.75rem;
    }
    h3, .h3 {
        font-size: 1.25rem;
    }
    h4, .h4 {
        font-size: 1.125rem;
    }
    h5, .h5 {
        font-size: 0.875rem;
    }
}

.button {
    margin: 1rem;
    display: inline-block;
    text-transform: none;
     max-width: 100%;
    transition: all .3s ease-in-out;
    background: #1761a0;
    color: #fff;
    padding: 0.5rem 1.5rem;
    font-size: 1.25rem;  
    border: 0;
  cursor: pointer;
}
.button:hover{
  background:#25a7f7;
}

.vcard {
  display: flex;
  flex-direction: column;
}
.vcard > .topcard {
  width: 100%;
  height: auto;
}
.vcard > .title {
  font-weight: bold;
}
.vcard > .body {
  margin-top: 1rem
}
.vcard > .foot {
  margin-top: auto
}

.social {
  display: flex;
  flex-wrap: nowrap;
  color: white;
  align-items: center;
  width: fit-content;
}
.social > div {
  width: 33%;
  height: 100%;
  transition: all 500ms ease;
}
.social >div:hover a {
  background: #25a7f7;
}

.social a {
  text-decoration: none;
  color: #fff;
  padding: 8px;
  display:flex
}

.hidden {
  display: none;
}
.hide_sm{
  display:none
}

.centered {
  margin-right: auto;
  margin-left: auto;
}
/*Layouts*/
section{
    width:100%;
    padding: 3rem 0;
    background-color: #fff;
    position: relative
}
section >.sectioncontent {
  margin: 0 auto;
  width: 60%;
}
section >.sectioncontent > header {
  margin-bottom: 1.25rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
/*width in cols over 12 cols*/
.col-2 {
  width: calc(2 * 100%/12);
  height: 100%;
}
.col-3 {
  width: calc(3 * 100%/12);
}
.col-4 {
  width: calc(4 * 100%/12);
}
.col-6 {
  width: calc(6 * 100%/12);
}
.col-7 {
  width: calc(7 * 100%/12);
}
.col-8 {
  width: calc(8 * 100%/12);
}
.col-9 {
  width: calc(9 * 100%/12);
}
.col-10 {
  width: calc(10 * 100%/12);
}
.row > div img {
  max-width: 100%;
}
.footer {
  padding-top: 32px
}

/*MODAL DIALOG BOX*/
.modal {
  display: none;
  position: absolute;
  min-width: 300px;
  max-width: 100vw;
  background: lightgray;
  width: 100%;
  height: 100vh;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0%);
  background-color: #546e7a82;
  transition: all 600ms ease;
  z-index: 1000;
}
.modal .content {
  position: relative;
  max-width: 60vw;
  max-height: 90vh;
  width: fit-content;
  height: fit-content;
  overflow-y: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0 1rem 1rem 1rem;
  background: white;
}
.modal .content header{
  position: sticky;
  top: 0;
  background-color: white;
  z-index: 0;
}
/*X Close Button*/
.close {
  position: sticky;
  top: 0rem;
  margin-right: -1rem;
  margin-left: auto;
  width: 1.75rem;
  aspect-ratio: 1;
  cursor: pointer;
  background: #36688c;
  z-index: 10
}
.close::before, .close::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px; /* Grosor de la X */
  background-color: #e4e2ef; /* Color de la X */
  top: 50%;
  left: 0;
  transform-origin: center;
}
.close::before {
  transform: translateY(-50%) rotate(45deg);
}
.close::after {
  transform: translateY(-50%) rotate(-45deg);
}


/*PREHEADER BAR */
.preheader {
  background-color: rgb(23, 97, 160);
  width: 100%;
  position: relative;
  padding: 0.5rem;
  z-index: 10;
}

.preheader .inside {
  display: flex;
  justify-content: space-between;
  position: relative;
  color: #fff;
  width: 60%;
  height: max-content;
  margin: 0 auto;
  align-items: center;

}

.preheader .inside .row > div {
  margin: 0px 0.2rem;
  display: flex;
  align-items: center;
}
.preheader a {
  text-decoration: none;
  position: relative;
 
}

/*TOP MENU BAR*/
.topmenu {
  background-color: rgb(255, 255, 255);
  border-radius: 0 0 6px 6px;
  box-shadow: rgba(0, 0, 0, 0.196) 0px 0px 20px 0px;
  color: rgb(90, 92, 91);
  display: flex;
  margin: 0 auto;
  max-width: 100%;
  position: sticky;
  top: 0;
  width: 60%;
  z-index: 100;
}
.topmenu .inside {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  align-items: center;
}
.topmenu .inside .menuitems {
  flex-grow: 2;
}
.topmenu .inside .menuitems > ul {
  align-items: center;
  color: rgb(90, 92, 91);
  display: flex;
  justify-content: flex-end;
  list-style-type: none;
}
.topmenu .inside .menuitems > ul > li {
  border: solid 2px transparent;
  margin: 0px 0.5rem;
  padding: 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.15rem;
}
.topmenu .inside .menuitems > ul > li a {
  color: #1761a0;
}
.topmenu .inside .menuitems > ul > li:hover,
.topmenu .inside .menuitems > ul > li:has(.activelnk)
{
  border-bottom: solid 2px black;
}

/*ANIMATED BURGUER BUTTON*/
#navtoggler {
  background-color: black;
  height: 40px;
  width:  40px;
  display: flex;
  align-items: center;
  padding: 8px;
  justify-content: center;
}
#navtoggler #hamframe {
  cursor: pointer;
}
#navtoggler #hamframe .hamlines {
  position: relative;
  width: 17px;
  height: 2px;
  display: inline-block;
  background-color: #fff;
  -webkit-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  transform: translateY(-4px);
}
#navtoggler #hamframe .hamlines:before {
  top: -6px;
}
#navtoggler #hamframe .hamlines:after {
  bottom: -6px;
}
#navtoggler #hamframe .hamlines:before, 
#navtoggler #hamframe .hamlines:after {
  width: 17px;
  height: 2px;
  content: '';
  position: absolute;
  background-color: #fff;
  transition: transform 0.2s;
  transform-origin: center;
}
/**Expanded, open**/
.expanded #navtoggler #hamframe .hamlines:before, 
.expanded #navtoggler #hamframe .hamlines:after{
  top:0;
}
.expanded #navtoggler #hamframe .hamlines {
  background-color: transparent;
}
.expanded #navtoggler #hamframe .hamlines:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg) scaleX(1.75);
}
.expanded #navtoggler #hamframe .hamlines:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg) scaleX(1.75);
}

/*BELOW OVERFOLD CARDS*/
.top {
  width: 100%;
  padding-bottom: 0;
  background-color: transparent;
}

.posthero {
  flex-direction: column;
  max-width: 100%;
  position: relative;
  text-align: start;
  width: 100%;
  background: url(/images/mike-newbry-229532-unsplash.jpg);
  position: relative;
  margin-top: calc(60vw - 28% );
}
.posthero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(23 97 160/80%)
}
.posthero .inside {
  height: fit-content;
  margin: 0 auto;
  position: relative;
  transform: translate(0, -50%);
  width: 60%;
  border-radius: 6px;
  overflow:hidden;
  align-items: stretch;
}
/*Every column in posthero cards info panel */
.posthero .inside > div {
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  align-items: flex-start;
  padding: 12px 12px;
  background: #fff;
}

.posthero .inside >.row >div{
  height: 100%
}

.posthero .inside > div:nth-child(2) {
  background-color: #314e67;
  padding: 0 1.5rem;
}
.posthero .inside table {
  margin-top: 1rem;
  background: #314e67;
  color: white;
  width: 100%;
}
.posthero table tr:nth-child(even) {
  margin-top: 12px;
  background: #25a7f7;
}
.posthero table td {
  padding: 4px 10px;
}
.posthero table td:nth-child(2n) {
  text-align: right
}
.posthero table tr:not(:first-child) {
  padding: 4px 10px;
  border-top: 1px solid #ffffff70;
}
/*Column with data (3rd) */
.posthero .datarows {
  display: flex;
  flex-direction: column;
}
.posthero .datarows >.row{
  align-items: start;
  margin-bottom: 1rem; 
}
.posthero .datarows >.row >.col-2{
  text-align: center
}

.posthero .datarows [class^=icon-] {
  font-size: 1.5rem;
  color: #1761a0;
  margin-top: 10px;
}
.posthero .datarows .data {
  display: flex;
}

/*ABOUT US SECTION */
.aboutus{
 
  padding: 3rem 0;
  background-color: white
}
.aboutus .col {
  padding: 0 0.25rem;
}
.aboutus img {
  border-radius: 10px;
  margin-top: 3rem;
}

/*CSS FOR SIMPLE HORIZONTAL SLIDER */
.slider.clone {
  opacity: 0.4
}
.slide{
  max-width: 100%;
}
.slider {
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  max-width: 100%;
  transition: opacity 0.3s ease;
  opacity:0
}
.slider.loaded {
  opacity: 1;
}
.slider-track {
  display: flex;
  cursor: grab;
   will-change: transform; 
}
.slider-dots {
  text-align: center;
  margin-top: 10px;
  user-select: none;
}
.slider .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 5px;
  background: rgba(228, 228, 228, 1.00);
  border-radius: 50%;
  cursor: pointer;
}
.slider .dot.active {
  background: red;
}
.slider .slide img {
  border-radius: 50%;
  height: auto
}

/*SLIDES CONTENT*/
 .slidecontent {
  max-width: 100%;
  width: 450px;
  border: 2px solid #25a7f7;
  margin-right: 8px;
}
slidecontent .row {
  justify-content: start;
  flex-wrap: wrap;
  padding: 8px;
}
.slidecontent .row > div {
  padding: 8px;
}
.slidecontent .textbody {
  padding: 10px
}

/*features SECTION*/
.features, .location {
  background-color: #25a7f7;
  padding: 4rem 0;
  color: white;
  width: 100%
}
.features .card {
  text-align: center;
  margin: 0 10px;
  padding: 3rem 0;
}
.features .cardbody {
  padding: 0 1rem
}
.feature {
  position: relative;
}
.feature .card {
  z-index: 10
}
/*As background*/
.feature [class^=icon-]::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    z-index: 0;
    color: #0013d411;
    font-size: 12rem;
}
/*SERVICES*/
.services {
  position: relative;
}
.services .vcard {
  margin: 1rem 1.5rem;
  overflow-x: hidden
}
.services .vcard .topcard{
  overflow: hidden;
  text-align:center;
  transition: transform 300ms ease;
}
.services .vcard .topcard img{
  transition: transform 300ms ease-in-out;
}
.services .vcard .topcard:hover img{
  transform: scale(1.2);
}
.services .vcard .button{
  margin-left: 0;
  width: fit-content
}
.services .col-4 {
  min-width: 300px;
}
 
/*HOW WORK*/
.howwork .vcard {
  margin: 1rem 0;
}
.howwork .vcard .img {
  height: 64px;
  width: 64px;
  display: flex;
  justify-content: center;
  align-items:center;
  font-size: 2rem;
  color:white;
  background-color: #1761a0;
  border-radius: 50%;
  margin: 1rem 0;
}
.howwork .vcard svg {
  height: 100%;
  width: 100%;
  fill: #ffd;
}
 
/*PRICING SECTION*/
.pricing .row {
  padding: 2rem 0; 
}
.pricing .btnprices {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  cursor: pointer;
  transition: background 500ms ease;
}
.pricing .carstype {
  align-items: center;
}
.pricing .btnprices img {
  height: 100px;
}
.pricing .btnprices:hover, .pricing .btnprices.active {
  background: rgb(23, 97, 160);
}
.pricing .btnprices:hover h4, .pricing .btnprices.active h4 {
  color: #fff !important;
}
.pricing .vcard {
  border: 1px solid blue;
  margin: 0 .4rem;
  padding: 0.5rem 0;
  height: 100%
}
 
.pricing .vcard .topcard, .pricing .vcard .title {
  text-align: center;
}
.pricing .vcard .topcard {
  margin-bottom: 2rem;
  font-weight: 700;
}
.pricing .vcard .topcard .img{
  font-size: 2rem;
}
.pricing .vcard .title {
  font-size: 3rem;
  font-weight: 100;
  text-align: center;
}
.pricing .vcard .title span {
  font-size: 1.5rem;
  font-weight: 100;
  position: relative;
  top: -2rem
}
.pricing .pricetable ul {
  padding-left: 0;
  margin-top: 0.5rem;
  list-style: none;
}
.pricing .pricetable ul li {
  text-align: center;
  margin: 1.5rem 0
}
.pricing .pricetable >.row {
  align-items:stretch;
}

.pricing .pricetable {
  position: relative;
  overflow: hidden;
  transition: height 600ms ease;
  width: 100%;
}

.pricing .pricetable.init {
  position: absolute;
  z-index: -1;
}
.carstype > .row > div:nth-of-type(1) {
  order: 1;
}
.carstype > .row > div:nth-of-type(2) {
  order: 4;
}
.carstype > .row > div:nth-of-type(3) {
  order: 2;
}
.carstype > .row > div:nth-of-type(4) {
  order: 5;
}
.carstype > .row > div:nth-of-type(5) {
  order: 3;
}
.carstype > .row > div:nth-of-type(6) {
  order: 6;
}

/*LOCATIONS*/
.location {
  background-color: #25a7f7;
  color: white
}
.location header {
  margin-bottom: 2rem;
}
.location header :is(h2, h3) {
  color: #fff;
}
 
.location .datarows h4 {
  color: rgb(49, 78, 103);
  margin-bottom: 4px;
}

.location .datarows >.row>.col-2{
  text-align:center;
  align-self:start;
  padding-top: 0.5rem;
  font-size: 1.5rem;
  color: #314e67
}
.gmaps, .gmaps #map {
  padding-top: 0;
  height:400px;
  width: 100%;
  z-index: 1;
}

/*CONTACT FORM*/
.contactform * {
  box-sizing: border-box;
  align-items: center;
 }
 
.contactform form {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  padding: 12px;
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  align-items: center;
  margin: 0 auto;
}
.contactform form .control {
  grid-column: span 1;
 
}
.contactform form .control :is(input, select, textarea) {
  width: 100%;
  height: 2.5rem;
  border: 1px solid #a5d6ff;
  padding: 0.5rem;
  font-size: 1rem;
}
input:focus:focus-visible {
  outline: none;
}
.contactform form .control:has(textarea) {
  grid-column: span 2;
}
.contactform form .control textarea {
  height: 8rem;
}
.contactform form .button {
  width: 80%;
}
.contactform form .control:has(.checkbox) {
  grid-column: span 2;
  padding: 10px 0;
  display: flex;
  height: fit-content;
  padding: 0;
  align-items: center;
}
label {
  margin-bottom: 0;
}
.contactform form .control:has(.checkbox) > input {
  flex: 0;
  margin: 0 18px;
}
 
.contactform form #captcha {
  max-width: 140px;
  margin: 0 1rem;
}
.contactform form > div:has(button) {
  grid-column: span 1 ;
  text-align: center;
}
   
.regenerate{
  display: flex;
  align-items:center;
}
.regenerate .icon-sync-icon {
  font-size: 2.4rem;
  margin-left: 0.25rem;
}
.footerdata {
  width: 100%;
  margin: 0 auto;
  background-color: rgb(10, 55, 94);
  padding: 5rem 0;
}
.footerdata * {
  color: white
}
.footerdata .gmaps * {
  color: black;
}
  .footerdata .sectioncontent {
  width: 60%;
  margin: 0 auto;
}
.footerdata .sectioncontent .social {
  margin-top: 1rem
}
.footerdata .sectioncontent .row > div {
  padding: 0 1rem;
}
.footerdata .sectioncontent h4 {
  width: fit-content;
  padding-bottom: 0.2rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-weight: 100;
  text-transform: uppercase
}
.footerdata .sectioncontent table {
  width: 100% !important;
  margin: 0 auto;
}
.footerdata .sectioncontent table tr {
  border: 1px solid rgb(128, 128, 128);
  border-left: 0;
  border-right: 0;
}
.footerdata .sectioncontent table tr:first-of-type {
  border: 0
}
.footerdata .sectioncontent table tr:last-of-type {
  border: 0;
}
.footerdata .sectioncontent table td {
  padding: 0.5rem;
}
.footerdata .sectioncontent table td:nth-child(2n) {
  text-align: right;
}
.footerdata .sectioncontent table tr:nth-child(2n) {
  background-color: rgb(49, 78, 103);
}
.footerdata .vcard {
  height: 100%;
}
.footerdata .gmaps, #minimap {
  margin-top: 0;
  height: 100%;
  width: 100%;
  padding-bottom: 1rem
}
/*Responsive definitions */ 
@media (max-width: 1400px) {
    .preheader, .preheader .inside{
    width: 100%;
  }
  body >.homepage{
    background-size: contain;
  }
  .topmenu {
    width: 100%
  }
  .posthero .inside{
    width: 80%
  }
}

/*View port <1024*/ 
@media (max-width: 1024px) {
  section >.sectioncontent {
    width: 95%;
  }
  .preheader, .preheader .inside{
    width: 100%;
  }
  .topmenu {
    width: 100%
  }  
  .topmenu .inside .menuitems > ul > li{
    letter-spacing:normal
  }

  
}  
@media (max-width: 1009px) {
  section >.sectioncontent {
    width: 95%;
  }
 

  .preheader, .preheader .inside{
    width: 100%;
  }
  .topmenu {
    width: 100%
  }  
  .topmenu .inside .menuitems > ul > li{
    letter-spacing:normal
  }

  .posthero .inside{
    width: 80%
  }

}  
/* Viewport  <992 */
@media (max-width: 992px) {
  section >.sectioncontent{
    width: 95%
  }

  .col-m-12 {
    width: 100%;
  }

  .preheader .inside{
    width:100%;
    font-size: 0.9rem
  }

  .topmenu .inside .menuitems > ul > li {
    margin: 0px 0.5rem;
}
  .posthero > .inside {
    transform: translate(0, -5%);
  }
  .posthero {
      margin-top: calc(60vw - 30%);
    height: auto;
  }
  .posthero > .row.inside {
    flex-direction: column;
    width: 60%;
  }
  .posthero > .row.inside .col-4 {
    width: 100%;
  }
  .aboutus .row {
    /* flex-direction: column; */
    width: 100%;
  }
  .aboutus .row .col {
    width: 100%;
  }
  .features .row {
    flex-direction: column
  }
  .features .row > div {
    width: 95%;
    padding: 0.5rem;
  }
  .services .col-4 {
    width: 50%;
  }
 
  .howwork .row .col-3 {
    width: 25%;
    text-align: center
  }
  .howwork .vcard .img {
    margin: 0 auto;
  }
  
 .location .sectioncontent {
    width: 90%
  }

  .footerdata .sectioncontent {
    width: 90%;
  }
  .footerdata .sectioncontent > .row {
    flex-direction: column
  }
  .footerdata .sectioncontent > .row > div {
    width: 100%
  }
  #minimap {
    width: 90%;
    height: 200px;
  }
}
/*Viewport: < 768px */
@media (max-width: 768px) {
  .hide_sm{
    display: block;
  }
  section >.sectioncontent{
    width: 95%
  }
  .col-m-12 {
    width: 100%;
  }
 
  .preheader {
    display: none
  }
  .topmenu {
    width: 100%;
  }
  .topmenu .inside {
    position: relative;
  }
  .topmenu .inside .menuitems{
    position: fixed;
    width: fit-content;
    padding-right:4rem;
    right: 0%;
    transform: translateX(100%);
    top: 80px;
    border: 1px solid #d3d3d3c9;
    background-color: white;
    transition: transform 300ms ease;
  }
   .topmenu .inside .menuitems > ul {
    background: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left:0;
 
  }
.topmenu.expanded >.inside .menuitems {
      transform: translateX(0);
  }
 
  .posthero > .inside {
    transform: translate(0, -5%);
  }
  posthero {
    margin-top: calc(60vw - 20%);
  }
  .posthero > .row.inside {
    flex-direction: column;
    width: 75%;
  }
  .posthero > .row.inside .col-4 {
    width: 100%;
  }
  .aboutus .row {
    flex-direction: column;
    width: 100%;
  }
  .aboutus .row .col {
    width: 100%;
  }
  .features .row {
    flex-direction: column
  }
  .features .row > div {
    width: 95%;
    padding: 0.5rem;
  }
  .services .col-4 {
    width: 100%;
  }
 
  .howwork >.row >.col-3 {
    width: 50%;
    text-align: center;
  }
  .howwork .vcard .img {
    margin: 0 auto;
  }
  .pricing .carstype > .row {
    flex-direction: column;
    align-items: center;
  }
  .carstype > .row > div:nth-of-type(1) {
    order: 1;
  }
  .carstype > .row > div:nth-of-type(2) {
    order: 2;
  }
  .carstype > .row > div:nth-of-type(3) {
    order: 3;
  }
  .carstype > .row > div:nth-of-type(4) {
    order: 4;
  }
  .carstype > .row > div:nth-of-type(5) {
    order: 5;
  }
  .carstype > .row > div:nth-of-type(6) {
    order: 6;
  }
  .pricetable > .row > .col-3 {
    width: 50%
  }
  .location .sectioncontent {
    width: 90%
  }
 
  .location .sectioncontent >.row > div {
    width: 50%;
  }
  .contactform * {
    box-sizing: border-box;
   }
 
  .contactform form .control {
    grid-column: span 2;
  }
  .contactform form .control:has(textarea) {
    grid-column: span 2;
  }
  .contactform form .control:has([type^=date]),
  .contactform form .control:has([type^=time]) {
     grid-column: span 1;
  } 
  .contactform form .control:has(.checkbox) {
    grid-column: span 2;
  }
  .contactform form > div:has(button) {
    grid-column: span 2 ;

  }
    .footerdata .sectioncontent {
      width: 90%;
    }
    .footerdata .sectioncontent > .row {
      flex-direction: column
    }
    .footerdata .sectioncontent > .row > div {
      width: 100%
    }
    #minimap {
      width: 90%;
      height: 200px;
    }
  }  
  
/*Viewport <575px*/  
@media (max-width: 575px) {
  section >.sectioncontent{
    width: 95%
  }
 
  .col-m-12 {
    width: 100%;
  }
  .preheader {
    display: none
  }
  .topmenu {
    width: 100%
  }
  .posthero > .inside {
    transform: translate(0, -5%);
  }
  posthero {
    margin-top: 10vw;
  }
  .posthero > .row.inside {
    flex-direction: column;
    width: 95%;
  }
  .posthero > .row.inside .col-4 {
    width: 100%;
  }
  .aboutus .row {
    flex-direction: column;
    width: 100%;
  }
  .aboutus .row .col {
    width: 100%;
  }
  .features .row {
    flex-direction: column
  }
  .features .row > div {
    width: 95%;
    padding: 0.6rem;
  }
  .feature [class^=icon-]::before{
    font-size: 8rem
  }
  .services .col-4 {
    width: 100%;
  }
  .howwork .row {
    flex-direction: column
  }
  .howwork .row .col-3 {
    width: 100%;
    text-align: center
  }
  .howwork .vcard .img {
    margin: 0 auto;
  }
  .pricing .carstype > .row {
    flex-direction: column;
    align-items: center;
  }
  .carstype > .row > div:nth-of-type(1) {
    order: 1;
  }
  .carstype > .row > div:nth-of-type(2) {
    order: 2;
  }
  .carstype > .row > div:nth-of-type(3) {
    order: 3;
  }
  .carstype > .row > div:nth-of-type(4) {
    order: 4;
  }
  .carstype > .row > div:nth-of-type(5) {
    order: 5;
  }
  .carstype > .row > div:nth-of-type(6) {
    order: 6;
  }
  .pricetable > .row > .col-3 {
    width: 80%;
    margin-top: 0.5rem;
  }
  
 .location .sectioncontent {
    width: 90%
  }
  .location .sectioncontent > .row {
    flex-direction: column;
  }
  .location .sectioncontent > .row > div {
    width: 100%;
    margin-bottom: 0.75rem
  }

  .footerdata .sectioncontent {
    width: 90%;
  }
  .footerdata .sectioncontent > .row {
    flex-direction: column
  }
  .footerdata .sectioncontent > .row > div {
    width: 100%
  }
  #minimap {
    width: 90%;
    height: 200px;
  }

  .modal .content{
    max-width: 90%;
    width: 95%;
  }
}
@media (max-width: 376px) {
  .posthero {
   margin-top: 25vw;   
  }
}
 
/*Legal pages*/  
.legal p{
  margin: 1rem 0;
}
