:root {
  --main-color: #004282;
  --off-white: #eaeef1;
  --accent-color: #fc5a0a;
  --dark: #141e24;
}

b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  background-color: var(--off-white);
}

body {
  padding-top: 100px;
}

.content {
  width: 90%;
  max-width: 1200px;
  margin: 20px;
}

@font-face {
  font-family: "Perandory";
  src: url("font/perandory/PERSONAL/PERANDORY/Perandory-Regular.otf") format("truetype");
}
.mycontainer {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

h1 {
  font-size: 72px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 25px;
}

p {
  font-size: 18px;
}

a {
  font-size: 18px;
}

@media screen and (max-width: 1200px) {
  h1 {
    font-size: 46px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 18px;
  }
  p {
    font-size: 16px;
  }
  a {
    font-size: 12px;
  }
}
.cool-button-blue {
  padding: 15px 25px 15px 25px;
  color: var(--main-color);
  background-color: transparent;
  border: solid 3px var(--main-color);
  transition: 0.3s ease;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Roboto Slab", serif;
  font-weight: 600;
}

.cool-button-blue:hover {
  color: var(--accent-color);
  cursor: pointer;
  border: solid 3px var(--accent-color);
}

.cool-button-white {
  padding: 15px 25px 15px 25px;
  color: #fff;
  background-color: transparent;
  border: solid 3px #fff;
  transition: 0.3s ease;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Roboto Slab", serif;
  font-weight: 600;
}

.cool-button-white:hover {
  color: var(--accent-color);
  cursor: pointer;
  border: solid 3px var(--accent-color);
}

.find-a-dealer {
  width: 100%;
  padding: 80px 0px 80px 0px;
  background-image: url("content/images/find-a-dealer-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
.find-a-dealer a h2 {
  text-align: center;
  font-family: "Roboto Slab", serif;
}
.find-a-dealer a {
  text-decoration: none;
  color: #fff;
}
.find-a-dealer a:hover {
  text-decoration: underline;
}

.landing {
  width: 100%;
  background-image: url("content/images/landingbg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0px 60px 0px;
  position: relative;
}
.landing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.landing h2 {
  margin: 0px 0px 40px 0px;
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  color: #fff;
  text-align: left;
  z-index: 2;
}

.fullscreen.active {
  top: 0;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.fullscreen img {
  height: auto;
  width: auto;
  max-height: 90%;
  max-width: 90%;
}

/* ---- header ---- */
.mobile {
  display: none !important;
}

.header {
  background-color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  padding: 10px 0px 10px 0px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
}
.header .logo img {
  height: 75px;
}
.header .links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.header .links a {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 700;
  color: var(--main-color);
  margin: 0px 20px 0px 20px;
  text-decoration: none;
  font-size: 22px;
  text-transform: uppercase;
}
.header .links a:hover {
  color: var(--accent-color);
}
.header .social {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.header .social a {
  margin: 0px 5px 0px 5px;
}

@media screen and (max-width: 1350px) {
  .large {
    display: none !important;
  }
  .mobile {
    display: flex !important;
  }
  .header {
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding: 10px 0px 10px 0px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
  }
  .header .top {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .header .top div img {
    transform: rotate(-90deg);
    height: 75px;
    margin: 0px 20px 0px 10px;
  }
  .header .logo img {
    height: 75px;
    margin-left: 10px;
  }
  .header .links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    margin: 20px 0px 20px 0px;
  }
  .header .links a {
    text-align: left;
    font-family: "Source Sans 3", sans-serif;
    font-weight: 700;
    color: var(--main-color);
    margin: 0px 35px 0px 35px;
    text-decoration: none;
    font-size: 22px;
    text-transform: uppercase;
  }
  .header .links a:hover {
    color: var(--accent-color);
  }
  .header .social {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .header .social a {
    margin: 0px 5px 0px 5px;
  }
}
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown .dropdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.dropdown .dropdown-content a {
  color: black;
  padding: 8px 12px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #ddd;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  background-color: #d6d6d6;
  cursor: pointer;
}

/* ---- footer ---- */
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: var(--dark);
  color: #fff;
  font-family: "Source Sans 3", sans-serif;
}
.footer .links {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
}
.footer .links .column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 50px;
}
.footer .links .column p {
  margin: 0px;
}
.footer a {
  color: var(--accent-color);
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1200px) {
  .footer .links {
    flex-direction: column;
  }
  .footer .links .column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 20px;
  }
  .footer .links .column p {
    margin: 0px;
  }
  .footer a {
    color: var(--accent-color);
    text-decoration: none;
  }
  .footer a:hover {
    text-decoration: underline;
  }
  .footer a {
    font-size: 16px;
  }
  .footer .after-footer {
    width: 90%;
  }
}
/* ---- home page ---- */
.home-landing {
  width: 100%;
  background-image: url("content/images/slider-homepage.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 0px 120px 0px;
  position: relative;
}
.home-landing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.home-landing .content {
  width: 90%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
  z-index: 2;
  margin: 30px;
}
.home-landing .content h2 {
  margin: 0px 0px 40px 0px;
  font-family: "Roboto Slab", serif;
  font-weight: 400;
  text-align: left;
}

.intro {
  width: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  margin-bottom: 0px;
}
.intro h3 {
  font-family: "Roboto Slab", serif;
  text-align: center;
  font-weight: 400;
  max-width: 85%;
}
.intro .section {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.intro .section .about {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}
.intro .section .about p {
  font-family: "Source Sans 3", sans-serif;
  max-width: 500px;
  text-align: center;
  margin: 20px;
}
.intro .section img {
  margin: 20px;
  width: 400px;
  object-fit: cover;
  height: 300px;
}

@media screen and (max-width: 1200px) {
  .intro {
    width: 90%;
  }
  .intro .section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .intro .section .about {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
  }
  .intro .section .about p {
    font-family: "Source Sans 3", sans-serif;
    max-width: 500px;
    text-align: center;
    margin: 20px;
  }
  .intro .section img {
    margin: 20px;
    width: 400px;
    object-fit: cover;
    height: 300px;
    width: 100%;
  }
}
.content .desktop {
  display: flex;
}
.content .mobile {
  display: none;
}

@media screen and (max-width: 1200px) {
  .content .mobile {
    display: flex;
  }
  .content .desktop {
    display: none;
  }
}
.content h3 {
  font-family: "Roboto Slab", serif;
}
.content p {
  font-family: "Source Sans 3", sans-serif;
}

.slider {
  display: flex;
  flex-direction: row;
  align-self: center;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
}
.slider .arrow {
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.slider .arrow button {
  font-weight: 800;
  font-size: 70px;
  padding: 0px;
  border: none;
  background-color: transparent;
}
.slider .arrow button:hover {
  color: var(--accent-color);
  cursor: pointer;
}
.slider .images {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 0px 20px 0px 20px;
  overflow: hidden;
}
.slider .images img {
  margin: 10px;
  border: solid 1px var(--main-color);
}

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