
body{
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    background-color:rgb(197, 202, 240);

}


a {
    color:rgb(227, 222, 253);
  }
  
  /* header */
  
  .header {
    background-color: rgb(6, 12, 59);
    box-shadow: 1px 1px 4px 0 rgba(0,0,0,.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 3;
    color:rgb(227, 222, 253);
  
  }
  
  .header ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow: hidden;
    background-color: rgb(6, 12, 59);
  }
  
  .header li a {
    display: block;
    padding: 20px 20px;
    text-decoration: none;
  }
  
  .header li a:hover,
  .header .menu-btn:hover {
    background-color: #f4f4f4;
    color: rgb(6, 12, 59)
  }
  
  .header .logo {
    display: block;
    float: left;
    font-size: 2em;
    padding: 10px 20px;
    text-decoration: none;
  }
  
  /* menu */
  
  .header .menu {
    clear: both;
    max-height: 0;
    transition: max-height .2s ease-out;
  }
  
  /* menu icon */
  
  .header .menu-icon {
    cursor: pointer;
    display: inline-block;
    
    padding: 28px 20px;
    position: relative;
    user-select: none;
  }
  
  .header .menu-icon .navicon {
    background: rgb(170, 203, 241);
    display: block;
    height: 2px;
    position: relative;
    transition: background .2s ease-out;
    width: 18px;
  }
  
  .header .menu-icon .navicon:before,
  .header .menu-icon .navicon:after {
    background: rgb(170, 203, 241);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
  }
  
  .header .menu-icon .navicon:before {
    top: 5px;
  }
  
  .header .menu-icon .navicon:after {
    top: -5px;
  }
  
  /* menu btn */
  
  .header .menu-btn {
    display: none;
  }
  
  .header .menu-btn:checked ~ .menu {
    max-height: 240px;
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon {
    background: transparent;
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon:before {
    transform: rotate(-45deg);
  }
  
  .header .menu-btn:checked ~ .menu-icon .navicon:after {
    transform: rotate(45deg);
  }
  
  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
  .header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
    top: 0;
  }
  
  /* 48em = 768px */
  
  @media (min-width: 48em) {
    .header li {
      float: left;
    }
    .header li a {
      padding: 20px 30px;
    }
    .header .menu {
      clear: none;
      float: right;
      max-height: none;
    }
    .header .menu-icon {
      display: none;
    }
  }
  


.service-head{
    height: 150px;
    width: 100%;
    background-color: rgb(197, 202, 240);
    text-align: center;
}

.head{
    height: 100px;
    width: auto;
    margin: 70px auto;
    font-size: 19px;
    font-weight: 400;
    color:rgb(6, 12, 59)
}

.form-container{
    width: 95%;
    min-height: 500px;
    background-color: rgb(255, 255, 255);
    margin: 70px auto;
    

}

.field{
    height: 60px;
    width: 500px;
    
}

.flex{

    min-height: 120px;
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.flex1{
    margin-top: 30px;
}
.inputbox{
    height: 60px;
    width: 500px;
    position: relative;
    margin: 10px 0 35px 0;
}
.inputbox input{
    padding: 5px 0;
    width: 100%;
    resize: none;
    font-size :18px;
    font-weight: 300;
    color: #333;
    background-color: rgb(255, 255, 255);
    border: none;
    border-bottom: 1px solid #777;
    outline: none;

}

.inputbox span{
    position: absolute;
    left:0;
    padding: 5px 0;
    font-size: 18px;
    font-weight: 300px;
    color: #333;
    transition: 0.5s;
    pointer-events: none;
}

.inputbox input:focus ~ span, textarea:focus ~ span,
.inputbox input:valid ~ span, textarea:valid ~ span{
    transform: translateY(-20px);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    color:rgb(206, 120, 98);
}


@import url(https://fonts.googleapis.com/css?family=Open+Sans:700,300);
html {
  box-sizing: border-box;
  font-size: 16px;
}
* {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
}


.frame {
  margin: 150px auto;
  width: 275px;
  transform: translate(-50%, -50%);
  overflow: hidden;
  background: #fff;
  color: #333;
  font-family: 'Open Sans', Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 20px 36px;
}


.list {
  list-style: none;
  margin-top: 24px;
}
.list li {
  padding-bottom: 20px;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.list label {
  flex-grow: 1;
  transition: color 0.5s;
}
.list input {
  position: relative;
}
.list input::after {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  border: 1px solid #888;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1);
  top: 50%;
  left: 50%;
  background-color: white;
  transition: transform 0.6s, border 0.6s;
}
.list input::before {
  position: absolute;
  content: '✔';
  height: 18px;
  width: 18px;
  transform: translate(-50%, -50%) scale(0.8);
  top: 60%;
  left: 80%;
  color: #888;
  z-index: 1;
  opacity: 0;
  transition: transform 0.6s, opacity 0.6s;
}
.list input:checked + label {
  color: rgba(51, 51, 51, 0.4);
}
.list input:checked::after {
  transform: translate(-50%, -50%) scale(1.2);
  border: 1px solid rgba(136, 136, 136, 0);
}
.list input:checked::before {
  opacity: 0.4;
  transform: translate(-50%, -50%) scale(1);
}
.flex3{
  height: 400px !important;
}

.selector{
  height: 60px;
  width: 500px;

}
#cars{
  height:100%;
  width: 100%;
}


/* <select> styles */
select {
  /* Reset */
  appearance: none;
  border: 0;
  outline: 0;
  font: inherit;
  /* Personalize */
  width: 20em;
  height: 3em;
  padding: 0 4em 0 1em;
  background: url(https://upload.wikimedia.org/wikipedia/commons/9/9d/Caret_down_font_awesome_whitevariation.svg) no-repeat right 0.8em center / 1.4em, linear-gradient(to left, rgba(255, 255, 255, 0.3) 3em, rgba(255, 255, 255, 0.2) 3em);
  color: rgb(19, 25, 114);
  border-radius: 0.25em;
  box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.2);
  cursor: pointer;
  /* <option> colors */
}
select option {
  color: inherit;
  background-color: #b1c3ff;
  /* Remove focus outline */
}
select:focus {
  outline: none;
  /* Remove IE arrow */
}
select::-ms-expand {
  display: none;
}

.conclude{
  width: 60%;
  height: auto;
  text-align: center;
  font-size: 20px;
  margin: 10px auto;
}

.click-me{
  width:50%;
  height: auto;
  text-align: center;
  margin: 30px auto;
}

.click{
  height: 50px;
  width: 90px;
  background-color: rgb(6, 12, 59);
  color:rgb(227, 222, 253);
  font-size: 17px;
  outline: 0;
  border: 0;
  border-radius: 25px;
}
.click:hover{
  background-color: rgb(178, 185, 236);
  color:rgb(5, 11, 54);
 
}