@font-face {
  font-family: 'Aileron';
  src: url('/font/aileron/Aileron-Thin.otf') format('opentype');
  font-weight: 100;
}

@font-face {
  font-family: 'Aileron';
  src: url('/font/aileron/Aileron-UltraLight.otf') format('opentype');
  font-weight: 200;
}

@font-face {
  font-family: 'Aileron';
  src: url('/font/aileron/Aileron-Regular.otf') format('opentype');
  font-weight: 400;
}

@font-face {
  font-family: 'Aileron';
  src: url('/font/aileron/Aileron-Bold.otf') format('opentype');
  font-weight: 700;
}

@font-face {
  font-family: 'Aileron';
  src: url('/font/aileron/Aileron-Black.otf') format('opentype');
  font-weight: 900;
}

:root {
  --white: #ffffff;
  --black: #000000;
  --grey: #333333;
  --green: #024950;
  --mediumgreen: #074950;
  --blueGrey: #81a7ba;
  --lightgreen: #a9d621;
  --brown: #964734;
}

html, body{
  margin: 0;
  padding: 0 !important;
  font-family: "Aileron", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  overflow-x: hidden !important;
}
a:hover {
  color: #000000;
}
/* Header */
.header {
  background: url('/img/bg.svg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  min-height: 630px;
  padding-bottom: 50px;
  text-align: center;
}
#header-content {
  padding-top: 50px;
    padding-bottom: 100px;
}
.header-logo h3 {
  color: var(--white);
  font-size: 70px;
  font-weight: 700;
}
.header-logo img{
  display: block;
  margin-right: auto;
  height: 120px;
  margin-bottom: 40px;
}
.header-logo h6 {
  color: var(--white);
  font-size: 35px;
  text-align: left;
  font-weight: 700;
  width: 100%;
  margin: 0 auto 0 0;
}
.header-logo ul{
  appearance: none;
  color: var(--white);
  text-align: left; 
  padding: 0;
}
.header-logo li{
    margin-top: 15px;
    appearance: none;
    list-style-type: none;
    background-image: url(/img/icons/checkmark.svg);
    background-size: 22px;
    background-position: left center;
    padding-left: 35px;
    background-repeat: no-repeat;
    line-height: 1.1;
}
.header-logo p {
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
}
.header-row {
  height: 580px;
}
/* form */
.form-step {
  display: none;
}
.form-step.active {
  display: flex;
}
#contactform {
  width: 90%;
  padding: 40px 30px;
  margin: 0 0 0 auto;
  border-radius: 40px;
  border: 5px solid #FFF;
  background: linear-gradient(180deg, #f0feff 0%, #FFF 100%);
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
#contactform h1{
    color: var(--mediumgreen);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}
#contactform h2{
    font-size: 22px;
    margin: 0 auto 20px;
    max-width: 550px;
    color: #56c035;
    font-weight: 600;
}
.form-title h3 {
  color: var(--green);
  font-size: 25px;
  font-weight: 700;
  max-width: 85%;
  margin: 0 auto 10px auto;
}
.form-title p {
  color: var(--green);
  font-size: 15px;
  font-weight: 400;
  max-width: 80%;
  line-height: 1.1;
  margin: 0 auto 20px auto;
}
input[type="radio"] {
    display: none;
}
.radio-group{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.radio-group label {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: background-color 0.3s;
  border-radius:20px;
  background:  var(--mediumgreen);
  box-shadow: 0px 4px 4px 0px #D0D0E9;  
  display: flex;
  justify-content: center;
  font-size: 12px !important;
  align-items: center;
  margin: 10px 0;
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
}
#step-2 .radio-group label, #step-3 .radio-group label{
  padding: 10px 0;
  max-width: 170px;
  height: 115px;
}
#step-3 .radio-group label{
    font-size: 20px !important;
}
.radio-group label img {
  height: 40px;
  padding: 0 15px;
}
.radio-group .col-md-3{
  width: 32%;
  border-radius: 25px;
  padding: 15px;
  height: 115px;
}
input[type="radio"]:checked + label {
    background: #56c035;
}
.radio-group label:hover {
    background: #56c035;
}
.form-group input, .form-group select, .dropdown-toggle {
  border-radius: 60px;
  background: var(--white);
  box-shadow: 0px 4px 4px 0px #D0D0E9;
  width: 100%;
  height: 55px;
  font-size: 20px;
  color: var(--green) !important;
  padding: 0 0 0 25px;
  font-weight: 700;
  margin: 8px 0;
  border: none;
  -webkit-appearance: none;
}


.dropdown-toggle{
  padding-left: 0;
  padding-right: 0;
}

.dropdown-menu {
    width: 100%;
    height: 200px;
    padding: 0;
    overflow-y: scroll;
    cursor: pointer;
    color: var(--green);
}

.dropdown-menu li {
    font-size: 16px;
    color: var(--green);
    padding: 6px 15px;
}

.dropdown-menu li:hover {
    color: white;
    cursor: pointer;
    background: var(--green);
}
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
  color: var(--green) !important;
  font-weight: 700;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  color: var(--green) !important;
  opacity: 1;
  font-weight: 700;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
  color: var(--green) !important;
  opacity: 1;
  font-weight: 700;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: var(--green) !important;
  font-weight: 700;
}
::-ms-input-placeholder { /* Microsoft Edge */
  color: var(--green) !important;
  font-weight: 700;
}
::placeholder { /* Most modern browsers support this now. */
  color: var(--green) !important;
  font-weight: 700;
}
.form-check label {
  margin: 10px 0 0 -10px;
  position: relative;
  padding-left: 18px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: var(--green);
}
.form-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark {
  position: absolute;
  top: 1px;
  left: 0;
  height: 12px;
  width: 12px;
  background-color: transparent;
  border: 1px solid var(--green);
  border-radius: 2px;
  padding-right: 5px;
  color: var(--lightgreen);
}
.form-check input[type=checkbox]:checked + .checkmark::after {
  content: "\2713";
  display: block;
  text-align: center;
  line-height: 12px;
  margin-left: 0px;
  margin-top: 0px;
  font-size: 14px;
}
#politica-link {
  color: var(--green);
}
#politica-link:hover {
  color: var(--lightgreen);
}
.form-button {
  position: relative;
  width: 100%;
  height: 50px;
  border-radius: 50px;
  border: none;
  margin-top: 20px;
  background: var(--mediumgreen);
  color: white;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: color 0.5s ease-in-out, background 0.5s ease-in-out;
} 
.modal .modal-footer .btn{
  background: var(--mediumgreen);
  transition: color 0.5s ease-in-out, background 0.5s ease-in-out;
  color: white;
}

.modal .modal-footer .btn:hover {
  background: var(--white);
  color: var(--mediumgreen);
}
.form-button::before {
  content: '';
  position: absolute;
  top: 100%;
  width: 200%;
  left: 0;
  height: 100%;
  background: linear-gradient(0deg, var(--mediumgreen) 0%, var(--lightgreen) 100%);
  transition: top 0.3s ease-in-out;
  z-index: -1;
}
.form-button:hover::before, .modal .btn:hover{
  top: 0;
}
.form-button:hover {
  color: var(--white);
}
.lds-roller,
.lds-roller div,
.lds-roller div:after {
  box-sizing: border-box;
}
.lds-roller {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  color: var(--lightgreen);
  margin-bottom: 20px;
}
.lds-roller div {
  animation: lds-roller 1.4s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7.2px;
  height: 7.2px;
  border-radius: 50%;
  background: currentColor;
  margin: -3.6px 0 0 -3.6px;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 62.62742px;
  left: 62.62742px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 67.71281px;
  left: 56px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 70.90963px;
  left: 48.28221px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 70.90963px;
  left: 31.71779px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 67.71281px;
  left: 24px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 62.62742px;
  left: 17.37258px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12.28719px;
}
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.error, #termos-error {
  color: red;
  font-size: 12px;
  line-height: 1;
  width: 100%;
}
/* Message */
.message-box {
  width: 435px;
  padding: 30px;
  margin: 0 auto;
  border-radius: 40px;
  border: 5px solid #FFF;
  background: linear-gradient(180deg, #f0feff 0%, #FFF 100%);
  display: flex;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}
.message-box h3 {
  color: var(--green);
  font-size: 30px;
  font-weight: 700;
  margin: 0 auto 10px auto;
  text-wrap: balance;
}
.message-box h6 {
  color: #56c035;
  font-size: 20px;
  font-weight: 700;
  text-wrap: balance;
}
.message-box p {
  font-size: 15px;
  line-height: 1.1;
  font-weight: 400;
  color: var(--grey);
  margin: 5px auto;
  max-width: 90%;
  text-wrap: balance;
}
.message-box img {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 250px;
  margin: 20px auto;
}
/* section1 */
.section1 {
  padding: 0 0 60px 0;
}
.sec1-txt {
  text-align: center;
}
.sec1-txt h3 {
  font-size: 35px;
  font-weight: 700;
  color: var(--lightgreen);
}
.sec1-txt p {
  font-size: 25px;
  font-weight: 400;
  color: var(--grey);
  line-height: 1.1;
  margin: 20px auto 0 auto;
  max-width: 90%;
}
.sec1-txt p span {
  font-weight: 700;
  color: #56c035;
}
.vants-row {
  margin-top: 80px;
}
.vants {
  height: 110px;
  display: flex;
  align-items: center;  
  position: relative;
  overflow: hidden;
}
.vants::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 90px;
  border-radius: 15px 0px 0px 15px;
  left: 0;
  top: 0;
  background: url('/img/location_pin.svg');
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: left 25px;
}
.vants p {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--grey);
  max-width: 90%;
  margin: 0 0 0 40px;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transition: opacity 0.3s, clip-path 1s;
}
.vants p span {
  font-weight: 700;
  color: #56c035;
}
.vants.animate p {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}
#vant1.animate p {
  animation-delay: 0.4s;
}
#vant2.animate p {
  transition-delay: 0.8s;
}
#vant3.animate p {
  transition-delay: 1.7s;
}
.road {
  height: 45px;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}
.truck {
  position: relative;
  width: 380px;
  margin: 0px 0px 0px -100px;
}
.truck2 {
  display: none;
}
/* section2 */
.section2 {
  margin-top: 50px;
}
.section2 .section-title h2{
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  color: var(--lightgreen);
}
.section2 .section-title h3 {
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  color: #56c035;
  text-decoration: underline;
  margin: 0 0 10px 0;
}
.section2 .section-title p{
  font-size: 16px;
  text-align: center;
  max-width: 1107px;
  text-wrap: balance;
  line-height: 1.1;
  margin: 15px auto 0;
}
.section-title{
  padding: 0 0 75px;
}

.containerB {
    position: relative;
    width: 550px;
    height: 550px;
    margin: 80px auto;
    border-radius: 50%;
    border: 40px solid var(--mediumgreen);
    display: flex;
    justify-content: center;
    align-items: center; 
}

/* Rotating container */
.circle-container {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-origin: center;
    transition: transform 0.8s ease-in-out;
}

/* Position circles in cardinal directions */
.circle {
    position: absolute;
    width: 160px;
    height: 160px;
    background-color: var(--mediumgreen);
    border-radius: 50%;
    cursor: pointer;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease, scale 0.3s;
}
/* 4 circles */ 
/*.circle:nth-child(4) {
    top: -20%;
    left: 35%;
} 
.circle:nth-child(2) {
    bottom: -20%;
    left: 35%;
}
.circle:nth-child(3) {
    top: 35%;
    right: -20%;
}  
.circle:nth-child(1) {
    top: 35%;
    left: -20%;
}
.circle.active {
    transform: scale(1.5);
}*/
/* 3 circles */
/* Position circles in 3 evenly spaced locations around the container */
.circle:nth-child(1) { /* Top */
    top: -10%;
    left: 70%;
}

.circle:nth-child(2) { /* Bottom-left */
    bottom: 40%;
    left: -20%;
}

.circle:nth-child(3) { /* Bottom-right (Active position) */
    bottom: -20%;
    right: 20%;
}
.circle.active {
    transform: scale(1.2);
}
.circle.active img{
  padding: 10px;
  max-height: 120px;
}
.circle img {
  width: 100%;
  transition: all 0.3s ease, rotate 1s ease;
  max-height: 100px;  
  transform: rotate(-var(--rotation-angle));
}

.circle span {
  color: var(--white);
  font-size: 85px;
}

 
.list-content {
  display: none;
  background-color: var(--white);
  box-shadow: 0 0 10px var(--blueGrey);
  padding: 30px;
  max-width: 600px;
  border-radius: 15px;
}
.list-content.active{
  display: flex;
  padding: 30px;
  flex-direction: column;
}
.list-content h3 {
  font-size: 25px;
  font-weight: 700;
  color: var(--lightgreen);
  width: 85%;
  margin: 15px 0 30px 0;
} 
.list-content img{
  width: 75px;
  height: 75px;
  padding: 10px;
}
.list-content .img-div{
  width: 100px;
  height: 100px;
  background-color: var(--mediumgreen);
  padding: 15px;
  border-radius: 50%;
}
.list-content p {     
  color: var(--grey);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
}

/* Section 3 */
.section3{
  margin: 100px 0 60px;
}
.section3 h1{
  font-size: 28px;
  color: var(--lightgreen);
  font-weight: 700;
  margin-bottom: 25px;
}
.section3 p{
  font-size: 14px;
  color: var(--grey);
} 
#section-1 .card {
  width: 300px;
  height: 300px;
  background-color: transparent;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 30px;
  border: none;
  /* overflow: hidden; */
}


#section-1 .card h1 {
  font-size: 30px;
  text-align: center;
  width: 100%;
  height: 75px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#section-1 .card .c-img {

  height: 225px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  border-radius: 0 0 30px 30px;
}

#section-1 .card .c-img img {
  width: auto;
  height: 225px;
}

#section-1 h1 {
  margin: 50px 0;
}

#section-1 .vant {
  max-width: 1100px;
  margin: 0 auto;
}

/* Slick Dots Container */
.slick-dots {
  position: absolute;
  bottom: 0px;
  display: flex !important;
  justify-content: center;
  width: 100%;
  padding: 0;
  list-style: none;
}

/* Each dot */
.slick-dots li {
  margin: 0 6px;
}

/* Dot button */
.slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0; /* hides the numbers */
}

/* Remove default pseudo-element */
.slick-dots li button:before {
  display: none;
}

/* Active dot */
.slick-dots li.slick-active button {
  background-color: var(--green); /* Indigo tone */
  transform: scale(1.1);
}

/* Hover effect */
.slick-dots li button:hover {
  background-color: var(--green);
}


.slick-track{
  padding: 50px 0;
}
.flip-card {
  background-color: transparent;
  width: 85%;
  height: 275px;
  perspective: 1000px;
  margin: 0 auto;
  cursor: pointer;
  text-wrap: balance;
}

.flip-card-front,
.flip-card-back {
  background-color: #9b9b9b;
}
.c-img{
    display: flex;
    align-items: flex-end;
    justify-content: center;
    align-content: flex-end;
    flex-wrap: wrap;
  width: 100%;
  height: 100%;
}
.flip-card-front img,
.flip-card-back img {
  display: block;
  width: 100%;
  height: 200px;
  border-bottom-left-radius: 30px ;
  border-bottom-right-radius: 30px ;
  object-fit: cover;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  color: #5d89a3;
  text-align: center;
  margin: 0;
}

.card-p {
  font-size: 11px;
  line-height: 1.1;
  color: #032239;
  padding: 0 0px;
  margin: 10px 0 0 0;
  text-align: left;
}

.flip-card-front h1, .flip-card-back h1 {
  text-align: center;
  font-size: 20px;
  padding: 20px 10px 0;
  margin: 0 auto 15px;
  color: white;
  width: 100%;
}
.flip-card-back p{
  color: white;
  font-size: 12px;
}
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 30px; 
}

.flip-card-front {}

.flip-card-back {
  transform: rotateY(180deg) scale(1);
  align-items: center;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.flip-card-back p{
  margin: auto;
  max-width: 90%;
}
/* Sectio 4  */
.section4{
  margin-bottom: 60px;
  text-align: center;
}
.section4 h1{
  color: var(--lightgreen);
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 50px;
}
.section4 h4 {
  list-style: none;
  color: var(--green);
  font-size: 20px;
  line-height: 1.2;
  list-style: disc;
  margin: 0 auto 20px;
  max-width: 300px;
  font-weight: 700;
}
.bullet-vant {
  max-width: 80%;
  margin: 0 auto;
}
/*
.section4 li:before{
  content: "·";
  font-size: 80px;
  vertical-align: middle;
  line-height: 20px;
  display: inline-block;
  transform: translateY(-30%);
}*/
.section4 p{
  font-size: 14px;
}
/* Footer */
.footer {
    background: url(/img/footer_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 20px;
    padding-top: 100px;
    padding-bottom: 30px;
    background-position: top center;
}
.footer-content h3 {
  color: var(--green);
  font-size: 35px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 5px 0;
  max-width: 475px;
}
.footer-content p {
  color: var(--grey);
  font-size: 30px;
  font-weight: 400;
  margin: 0;
  line-height: 1.1;
} 
.footer-cta {
  width: 320px;
  height: 65px;
  border-radius: 80px;
  border: none;
  background: var(--green);
  color: var(--white);
  font-size: 25px;
  font-weight: 700;
  margin-top: 40px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: color 0.5s ease-in-out, background 0.5s ease-in-out;
}
.footer-cta::before {
  content: '';
  position: absolute;
  top: 100%;
  width: 200%;
  left: 0;
  height: 100%;
  background: linear-gradient(0deg, var(--lightgreen) 0%, var(--mediumgreen) 100%);
  transition: top 0.3s ease-in-out;
  z-index: -1;
}
.footer-cta:hover::before {
  top: 0;
}
.footer-cta:hover {
  color: var(--white);
}
.footer-img img {
  margin-left: -250px;
}
/* Adstrategy */
#section-ads {
  text-align: center;
  padding: 30px 0;
}
@media only screen and (max-width:1459px) {
  .slick-current .flip-card .flip-card-inner {
    transform: rotateY(180deg);
  }

}
/* Media Queries */
@media only screen and (min-width: 1950px) {
  .footer-img img {
    margin-left: -50px;
  }
  .section1 {
    padding: 80px 0;
  }
  .sec2-img {
    background-position: left bottom;
    height: 850px;
    background-size: 80%;
  }
  .truck {
    position: absolute;
    left: 0;
    margin: 0 0 -20px -20px;
  }
  .road {
    margin-top: 50px;
  }
}
@media only screen and (min-width: 1451px) and (max-width: 1950px) {
  .header {
    min-height: 850px;
  }
  .sec2-img {
    background-size: contain;
    height: 900px;
  }
  .list-content h3 {
    width: 65%;
    font-size: 38px;
  }
  .list-content {
    padding-left: 0;
  } 
  .footer-img img {
    width: 1250px;
    margin-left: -300px;
  }
  .truck {
    position: absolute;
    left: 0;
    margin: 0 0 -20px -20px;
  }
  .road {
    margin-top: 50px;
  }
}

@media only screen and (min-width:1400px) {
   #slider-description,.slider-description{
  display: none!important;
 }
}

@media only screen and (max-width: 1400px) {
     #slider-description,.slider-description{
  display: block!important;
 }

  .bullet-vant {
    max-width: 100%;
  }
.containerB {
    width: 500px;
    height: 500px;
    display: none!important;
  }

 .containerC{
  display: none!important;
 }
    .circle.active{
      transform: scale(1.3) !important;
    }
  .circle:nth-child(3){
    right: -25%;
  }
  .circle:nth-child(1), .circle:nth-child(3){
    top: 30%;
  }
  .circle:nth-child(2), .circle:nth-child(4){
    left: 30%;
  }
}
@media only screen and (max-width: 1300px) {
  #contactform {
    width: 100%;
  }
  .header-logo h6 {
    font-size: 32px;
  }
  .list-content h3 {
    width: 95%;
    font-size: 32px;
  }
  .vants p {
    max-width: 85%;
  }
  .footer-content h3 {
    font-size: 33px;
  }
  .footer-img img {
    width: 950px;
  }
}
@media only screen and (max-width: 1200px) {
  .header {
    min-height: 750px;
  }
  .header-logo h3 {
    font-size: 55px;
  }
  .header-logo h6 {
    font-size: 25px;
  }
  .form-title h3 {
    max-width: 90%;
    font-size: 22px;
  }
  .form-group input, .form-group select, .radio-group label {
    font-size: 18px;
  }
  .vants p {
    font-size: 19px;
  }
  .vants p {
    max-width: 100%;
  }
  .list-content h3 {
    font-size: 30px;
  }
  .list-content ul li {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .footer-content h3 {
    font-size: 30px;
  }
  .footer-content p {
    font-size: 25px;
  }
  .truck {
    width: 270px;
    margin: 0 0 0 -200px;
  }
  .footer-img img {
    width: 850px;
  }
}
@media only screen and (max-width: 1090px) {
  .footer-content h3 {
    font-size: 26px;
  }
  .footer-content p {
    font-size: 22px;
  }
}
@media only screen and (max-width: 991px) {
  #contactform {
    width: 420px;
    padding: 30px 15px;
  }
  .header {
    min-height: 850px;
    background-size: cover;
  }
  .circle-container{
      display: flex;
      justify-content: space-evenly;
  }
  .header-logo img {
    height: 90px;
    margin: 20px 0 10px 0;
  }
  .header-logo h3 {
    font-size: 45px;
  }
  .header-logo h6 {
    font-size: 20px;
    width: 100%;
  }
  .sec1-txt h3 {
    font-size: 32px;
  }
  .sec1-txt p {
    font-size: 20px;
  }

  .containerB{
    width: 100%;
    max-width: 768px;
    height: 50px;
    border-radius: 0;
    border: none;
    border-top: none;  
    display: flex;
    justify-content: space-evenly;
    margin-bottom: 120px;
  } 
  .circle{
    width: 130px;
    height: 130px;
    position: relative;
    top: unset !important;
    right: unset !important;
    bottom: unset !important;
    left: unset !important;
    transform: translate(0%, -50%) !important;
  }
  .circle img{
    max-height: 50px;
  }
  .circle.active{
    transform: translate(0%, -20%) scale(1.1) !important;
  }
  .circle.active img{
    padding: 5px;
    max-height: 80px;
  }
  .vants p {
    font-size: 18px;
  }
  .list-content {
    padding-left: 30px;
  }
  .list-content h3 {
    font-size: 26px;
  }
  .footer-content {
    padding-left: 30px;
  }
  .footer-img img {
    margin-left: -310px;
  }
  .section1 {
    padding: 0;
  }
  .truck {
    display: none;
  }
  .truck2 {
    width: 100% !important;
    display: flex;
    justify-content: space-between;
    width: 350px;
    margin-top: 50px;
  }
  .truck2 svg {
    width: 50%;
    -webkit-box-reflect: right;
  }
}
@media only screen and (max-width: 920px) {
  #contactform {
    width: 400px;
  }
  .footer-content {
    padding-left: 28px;
  }
  #contactform h1{
      font-size: 28px;
  }
  #contactform h2{
      font-size: 18px;
  }
}
@media only screen and (max-width: 880px) {
  #contactform {
    width: 370px;
  }
  .footer-img img {
    width: 700px;
    margin-left: -220px;
  }
  .list-content h3 {
    font-size: 24px;
  }
  .footer-content h3 {
    font-size: 25px;
  }
  .footer-content p {
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .header {
    min-height: 800px;
  }
  .header-logo img {
    margin: 20px auto;
  }
  .header-logo h6 {
    text-align: center;
    margin: 10px auto 20px auto;
  }
  #contactform {
    width: 100%;
    margin: 0 auto;
  }
  #contactform h1{
      font-size: 24px;
  }
  .radio-group label{
      margin: 5px auto;
  }
  .radio-group{
      padding: 5px 30px;
  }
  .footer-content h3, .footer-cta{
      margin: 0 auto 30px !important;
  }
  .section4 li{
      margin-top: 20px;
      margin-bottom: 10px;
      max-width: 100%;
  }
  .radio-group .col-md-3{
    width: 90%; 
    margin: 10px auto 0;
  }
    #contactform{
      background:#f0feff;
    }
  .header-row {
    height: auto;
  }
  #header-content {
    padding-top: 30px;
  }
  .header-logo {
    margin-bottom: 40px;
  }
  .header-logo h3 {
    font-size: 55px;
  }
  .header-logo h6 {
    font-size: 22px;
    width: 80%;
  }
  .header-logo p {
    font-size: 16px;
    width: 55%;
    line-height: 1.2;
    margin: 10px auto;
  }
  .vants {
    margin-bottom: 30px;
  }
  .vants p {
    font-size: 22px;
    max-width: 80%;
  }
  .section2 {
    background: rgba(240,240,248,0.5);
    padding: 60px 0 50px 0;
  }
  .footer {
    text-align: center;
    padding-top: 60px;
  }
  .footer-content {
    padding-left: 0;
  }
  .footer-content h3 {
    font-size: 35px;
  }
  .footer-content p {
    font-size: 25px;
  }
  .footer-img img {
    margin-left: 40px;
  }
  .truck2 svg {
    -webkit-box-reflect: right 20px;
  }
}
@media only screen and (max-width: 650px) {
  .footer-img img {
    width: 600px;
  }
  .circle {
    width: 100px;
    height: 100px;
  }
  .circle.active img{
    max-height: 55px;
  }
}
@media only screen and (max-width: 520px) {
  .sec1-txt h3 {
    margin: 0 auto 30px auto;
    max-width: 80%;
  }
  .sec1-txt p {
    font-size: 18px;
    margin: 20px 0 auto 0;
    max-width: 95%;
  }
  .footer-content h3 {
    font-size: 26px;
  }
  .footer-content p {
    font-size: 18px;
  }
  .footer-img img {
    width: 500px;
    margin-left: 0;
  }
  .truck2 svg {
    -webkit-box-reflect: unset;
  }
  .header-logo p {
    width: 75%;
  }
    .circle.active img{
      padding: 10px;
    }
    .containerB{
      max-width: 100%; 
      margin: 60px auto !important;
      border: none;
      justify-content: space-between;
    }
  .section2 .section-title h2{
    font-size: 26px;
  }
  .section2 .section-title h3{
    font-size: 18px;
  }
  .section2 .section-title{
    padding: 0 0 30px;
  }
    .vants-row{
      margin-top: 50px;
    }
  .section2 .section-title p{
    font-size: 14px;
    line-height: 1.3; 
    
  }
    .header-logo h6{
      width: 100%;
    }
  .section4 li, .section4 p, .header-logo h6{
    text-align: center;
  }
  .section4{
    max-width: 400px;
    margin: auto;
  }
    .footer-content h3{
      margin-bottom: 25px;
      font-size: 30px;
    }
}
@media only screen and (max-width: 450px) {
  #contactform {
    width: 100%;
    margin-bottom: 90px;
  } 
  .header{
      padding: 0;
  }
  
  .section4{
      padding: 0 15px;
  }
  .header-logo h3 {
    font-size: 45px;
  }  
  .sec1-txt h3 {
    max-width: 90%;
  }
  .footer-img img {
    width: 400px;
    margin: 30px 0 0 30px;
  }
    .circle{
      width: 75px;
      height: 75px;
      padding: 7px;
    }
    .section2{
      margin-top: 0;
    }
    .footer{
      padding-bottom: 30px;
      padding-top: 80px;
      margin-top: 0;
    }
    .message-box{
      width: 100%;
    }
    .footer-content h3{
        font-size: 24px;
    }
    #contactform h1{
        font-size: 23px;
    }
    #contactform h2{
        font-size: 14px;
        margin: 0;
    }
}
@media only screen and (max-width: 420px) {
  .list-content h3 {
    width: 100%;
    font-size: 23px;
  }
  .list-content ul li {
    font-size: 16px;
  }
  .footer-img img {
    width: 450px;
    margin-left: -50px;
  }
  .footer-cta {
    width: 100%;
  }
  .sec1-txt h3 {
    max-width: 100%;
  }
}
@media only screen and (max-width: 375px) {
  .sec1-txt p {
    font-size: 16px;
  }
  .section3 h1{
      font-size: 22px;
  }
  .list-content h3 {
    text-align: center;
  }
  .list-content {
    padding-left: 0;
  }
  .header-logo h3 {
    font-size: 40px;
  }
  .header-logo h6 {
    font-size: 18px;
    width: 95%;
  }
  .form-group input, .form-group select, .radio-group label {
    font-size: 16px;
  }
  .sec1-txt h3 {
    font-size: 30px;
  }
  .footer-img img {
    width: 350px;
    margin-left: 30px;
  }
}
@media only screen and (max-width: 360px) {
  .header-logo h6 {
    font-size: 17px;
    width: 100%;
  }
  .header-logo p {
    width: 80%;
  }
}
@media only screen and (max-width: 320px) {
  .header-logo h3 {
    font-size: 30px;
  }
  .header-logo h6 {
    font-size: 16px;
    width: 100%;
  }
  .header-logo p {
    font-size: 14px;
  }
  .sec1-txt p {
    font-size: 16px;
  }
  .list-content h3 {
    text-align: center;
  }
  .list-content {
    padding-left: 0;
  }
  .sec1-txt h3 {
    font-size: 25px;
    margin: 0 auto;
  }
  .sec1-txt p {
    font-size: 15px;
    max-width: 100%;
  }
  .radio-group label img {
    height: 25px;
    padding: 0 10px;
  }
  .form-title h3 {
    font-size: 20px;
    max-width: 100%;
  }
  .form-title p {
    max-width: 90%;
    font-size: 14px;
  }
  .form-check {
    text-align: left;
  }
  .footer-content h3 {
    font-size: 30px;
  }
  .footer-img img {
    width: 280px;
    margin-left: 20px;
  }
  .footer-cta {
    margin: 20px 0;
  }
}