/*  
Command Line 'sass --watch input.scss output.css' 




*/
html {
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  font-size: 15px;
  font-family: Helvetica, Helvetica Neue, Arial, Lucida Grande, sans-serif;
  font-style: normal;
  width: 100%;
}

ul, li {
  list-style-type: none;
}

a {
  color: inherit; /* blue colors for links too */
  text-decoration: inherit; /* no underline */
}

a.button {
  background-color: #3a3a3a;
  padding: 20px 25px;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 3px;
}
a.button:hover {
  transition: background-color 750ms ease-out;
  background-color: rgb(43, 99, 105);
}

/************ HEADER NORMAL **********/
header {
  margin: 0;
  width: 100%;
  height: 120px;
  border-bottom: 2px solid black;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
header img {
  width: 250px;
  height: auto;
}
header menu {
  display: flex;
  width: 400px;
  justify-content: space-around;
}
header menu .active {
  text-decoration: underline;
}
header menu li:hover {
  transition: text-decoration 750ms ease-out, background-color 750ms ease-out;
  text-decoration: underline;
  background-color: rgb(227, 252, 255);
}
header ul {
  display: flex;
  width: 250px;
  justify-content: space-between;
}
header ul li {
  margin: 20px;
}
header ul img {
  height: 30px;
  width: 30px;
}

/************ HEADER TABLET **********/
@media screen and (max-width: 900px) {
  header {
    flex-wrap: wrap;
    height: auto;
  }
  header .social-menu {
    display: none;
  }
}
/************ HEADER Transition **********/
@media screen and (max-width: 685px) {
  header {
    flex-wrap: wrap;
    flex-direction: column;
  }
  header img {
    padding-top: 10px;
    width: 25%;
    height: auto;
  }
}
/************ HEADER PHONE **********/
@media screen and (max-width: 450px) {
  header {
    flex-wrap: wrap;
  }
  header img {
    padding-top: 10px;
    width: 25%;
    height: auto;
  }
  header menu {
    width: 85%;
  }
}
/************ SLIDESHOW *************/
main {
  display: flex;
  margin: 0;
  padding: 0;
  background-image: url("assets/kia_slide_cover_2k.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 500px;
  justify-content: center;
  align-items: center;
  color: white;
  text-shadow: 2px 2px 4px black, 2px 2px 4px turquoise;
}
main .slideshow {
  text-align: center;
  height: 225px;
}
main h1 {
  font-size: 4rem;
  margin-top: 0;
  margin-bottom: 25px;
}
main h3 {
  font-size: 1.5rem;
  padding: 15px;
}
main a {
  /* see top of scss a.button   */
}

/************ DIV / SECTION TAGLINE *************/
.section {
  display: flex;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  flex-direction: column;
  background-color: white;
  color: #3a3a3a;
  border-bottom: 1px solid #dddddd;
}
.section .tagline {
  text-align: center;
  width: 90%;
  margin-top: 75px;
  margin-bottom: 30px;
}
.section .brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 70px;
  height: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section .brands img {
  height: 100px;
  width: 100px;
}
.section h2 {
  font-size: 2rem;
}
.section .services_section {
  display: flex;
  flex-direction: column;
  height: auto;
  align-items: center;
}
.section .services_section .services {
  width: 95%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section .services_section .services .title {
  margin-top: 30px;
}
.section .services_section .services .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.section .services_section .services .container .service {
  text-align: center;
  width: 25%;
  min-width: 260px;
  height: auto;
  padding: 25px;
}
.section .services_section .services .disclaimer {
  margin-top: 30px;
  margin-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
}
.section .contact_page {
  height: auto;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
}
.section .contact_page h1 {
  font-size: 2.5em;
}
.section .contact_page h2 {
  font-size: 1.5em;
}
.section .contact_page .contact_info {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.section .contact_page .contact_info p {
  margin: 10px;
}
.section .contact_page #success_page {
  margin-top: 50px;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section .contact_page .contact_form {
  display: flex;
  margin-top: 20px;
  flex-direction: column;
}
.section .contact_page .contact_form form {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.section .contact_page .contact_form form label {
  padding-top: 5px;
  padding-bottom: 5px;
}
.section .contact_page .contact_form form input {
  padding-top: 5px;
  padding-bottom: 5px;
}
.section .contact_page .contact_form form button {
  margin-top: 10px;
  margin-bottom: 10px;
  background-color: #3a3a3a;
  padding: 15px 25px;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  border: none;
  border-radius: 3px;
}
.section .contact_page .contact_form form button:hover {
  transition: background-color 750ms ease-out;
  background-color: rgb(43, 99, 105);
}
.section .gallery_class {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section .gallery_class #gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.section .gallery_class #gallery img {
  width: 200px;
  height: 200px;
  object-fit: fill;
  padding: 7px;
  transition: 500ms;
}
.section .gallery_class #gallery img:hover {
  filter: grayscale(100%);
  transform: scale(1.1);
}

@media screen and (max-width: 450px) {
  .section .gallery_class #gallery img {
    width: 140px;
    height: 140px;
  }
}
/************ FOOTER *************/
footer {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 300px;
  background-color: #f6f6f6;
  color: #333232;
}
footer .footer_top {
  padding-top: 20px;
  display: flex;
  width: 100%;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 1px solid #dddddd;
  padding-bottom: 20px;
}
footer .footer_top .quick_links {
  display: flex;
  width: 400px;
  justify-content: space-around;
  flex-direction: column;
  margin-left: 2%;
  margin-right: 2%;
}
footer .footer_top .quick_links .active {
  text-decoration: underline;
}
footer .footer_top .quick_links li:hover {
  transition: text-decoration 750ms ease-out, background-color 750ms ease-out;
  text-decoration: underline;
  background-color: rgb(227, 252, 255);
}
footer .footer_top ul {
  margin-left: 0px;
  margin-right: 0px;
  padding-left: 0px;
  padding-right: 0px;
  display: flex;
  width: 400px;
  justify-content: space-between;
}
footer .footer_top .newsletter {
  width: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
  margin-right: 2%;
  margin-left: 2%;
}
footer .footer_top .newsh2 {
  display: flex;
  justify-content: flex-start;
}
footer .footer_top .input_line {
  display: flex;
  justify-content: flex-end;
  height: 50px;
}
footer .footer_top .input_line input {
  width: 70%;
}
footer .footer_top .input_line a {
  align-self: center;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 50px;
  padding-left: 10px;
  padding-right: 10px;
}
footer .footer_top .input_line a .button {
  height: 50px;
  align-self: center;
  padding-top: 0;
  padding-bottom: 0;
}
footer .footer_bottom {
  padding-top: 5px;
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
}
footer .footer_bottom ul {
  margin: 0;
  padding: 0;
  display: flex;
  width: 80%;
  justify-content: center;
}
footer .footer_bottom ul li {
  margin: 20px;
}
footer .footer_bottom ul img {
  height: 30px;
  width: 30px;
}
footer .footer_bottom .copyright {
  width: 80%;
  display: flex;
  justify-content: center;
}

/********************  FOOTER TABLET ***********************/
@media screen and (max-width: 870px) and (min-width: 650px) {
  footer {
    height: auto;
  }
  footer .footer_top {
    padding-top: 0;
  }
  footer .footer_top .quick_links {
    width: 70%;
    flex-direction: row;
    align-content: center;
  }
  footer .footer_top .quick_links h2 {
    margin-right: 15px;
    margin-left: 15px;
  }
  footer .footer_top .quick_links ul li {
    align-self: center;
  }
  footer .footer_top .newsletter {
    width: 70%;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
  }
  footer .footer_top .newsletter h2 {
    margin-right: 15px;
    margin-left: 15px;
    align-self: center;
  }
  footer .footer_top .input_line {
    flex-wrap: nowrap;
    width: 80%;
    height: auto;
  }
}
/********************  FOOTER MOBILE ***********************/
@media screen and (max-width: 650px) {
  footer {
    height: auto;
  }
  footer .footer_top .quick_links {
    width: 90%;
  }
  footer .footer_top .quick_links ul {
    width: 90%;
    display: flex;
    flex-direction: column;
  }
  footer .footer_top .newsletter {
    width: 90%;
  }
  footer .footer_top .input_line {
    flex-wrap: wrap;
    margin-bottom: 30px;
    height: auto;
  }
  footer .footer_top .input_line input {
    width: 100%;
    height: 40px;
  }
  footer .footer_top .input_line a {
    width: 100%;
    margin-top: 5px;
    text-align: center;
  }
}

/*# sourceMappingURL=style.css.map */
