* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
body {
  background-color: #00162b;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: #ffffff;
}
wrap {
  display: flex;
  width: 100%;
  height: 100vh;
  justify-content: center;
}
header {
  display: flex;
  width: 100%;
  height: 100px;
  background-color: #00162b;
  align-items: center;
  border-bottom: 1px solid #6666ff;
}
#logo {
  display: flex;
  width: 90px;
  height: 80px;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
}
#title {
  display: flex;
  flex-direction: column;
  width: 400px;
  height: 100px;
  font-family: "Audiowide", sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  justify-content: center;
  align-items: start;
  margin-left: 10px;
}
.p-title {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
}
#links-wrap {
  display: flex;
  width: 400px;
  height: 50px;
  font-weight: bold;
  justify-content: right;
  align-items: center;
  margin-right: 40px;
}
#links-wrap a {
  color: #ffffff;
  text-decoration: none;
}
#links-wrap a:hover {
  color: #6666ff;
}
#contact-wrap {
  display: flex;
  width: 100%;
  height: 80px;
  justify-content: right;
  align-items: center;
  padding-right: 50px;
}
.contact-btn {
  display: flex;
  width: 200px;
  height: 40px;
  background-color: #181b50;
  color: #ffffff;
  font-size: 16px;
  border-radius: 30px;
  border: 1px solid #6666ff;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.contact-btn:hover {
  background-color: #6666ff;
  border: 0;
  text-decoration: none;
  cursor: pointer;
}
.contact-btn,
.contact-btn:link,
.contact-btn:visited,
.contact-btn:hover,
.contact-btn:active,
.contact-btn:focus {
  text-decoration: none;
  color: #ffffff;
}
.hero {
  display: flex;
  width: 100%;
  height: 600px;
  background-color: #181b50;
}
/* SLIDESHOW */
#hero-slideshow {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  position: relative;
  overflow: hidden;
}
#hero-slideshow .slides {
  position: relative;
  width: 100%;
  height: 100%;
}
#hero-slideshow .slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
#hero-slideshow .slides img.active {
  opacity: 1;
}
/* END SLIDESHOW */
/* SLIDESHOW MOBILE*/
#hero-slideshow-MOBILE {
  display: none;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  position: relative;
  overflow: hidden;
}
#hero-slideshow-MOBILE .slides {
  position: relative;
  width: 100%;
  height: 100%;
}
#hero-slideshow-MOBILE .slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
#hero-slideshow-MOBILE .slides img.active {
  opacity: 1;
}
/* END MOBILE SLIDESHOW */
h2 {
  margin-bottom: 20px;
  font-size: 16px;
  color: #6666ff;
}
.h2-body {
  border-bottom: 1px solid #6666ff;
  margin-bottom: 20px;
}
.h2-body a {
  color: #ffffff;
  text-decoration: none;
}
.h2-body a:hover {
  color: #6666ff;
  text-decoration: underline;
  cursor: pointer;
}
.contact-body {
  margin-bottom: 100px;
  font-size: 18px;
}
.contact-body a {
  color: #ffffff;
  text-decoration: none;
}
.contact-body a:hover {
  color: #6666ff;
  text-decoration: underline;
  cursor: pointer;
}
p {
  margin-bottom: 10px;
  line-height: 1.4;
}
h3 {
  font-size: 32px;
  margin-bottom: 10px;
}
.body-section01-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  align-items: center;
  margin-top: 100px;
}
.body-section01 {
  display: flex;
  flex-direction: column;
  width: 80%;
  height: auto;
}
.card-row-wrap {
  display: flex;
  width: 100%;
  height: auto;
  justify-content: center;
  gap: 40px;
  margin-bottom: 100px;
}
.card {
  display: flex;
  flex-direction: column;
  width: 25%;
  height: 675px;
  border-radius: 30px;
  border: 1px solid #6666ff;
  padding: 30px;
}
.card ul {
  padding: 30px;
  padding-top: 10px;
  padding-bottom: 0;
  line-height: 1.5em;
}
.learn-more {
  display: flex;
  width: 100%;
  height: auto;
  font-weight: bold;
  justify-content: right;
  padding-right: 30px;
}
.learn-more a {
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}
.learn-more a:hover {
  color: #6666ff;
}
.card-icon {
  display: flex;
  width: 100%;
  height: auto;
  justify-content: center;
  margin-bottom: 30px;
}
.card-icon img {
  display: block;
  width: 150px;
  height: auto;
}
.card-icon2 {
  display: flex;
  width: auto;
  height: 241px;
  justify-content: center;
  margin-bottom: 30px;
}
.card-icon2 img {
  display: block;
  width: auto;
  height: 241px;
}
.body-bottom {
  width: 100%;
  height: 100px;
}
/* FOOTER */
#footer {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 100%;
  height: auto;
  align-items: center;
  background-color: #000000;
}
#footer-heading {
  display: flex;
  width: 80%;
  height: 100px;
  align-items: flex-end;
  font-size: 30px;
  margin-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ffffff;
}
#footer-middle {
  display: flex;
  flex-direction: row;
  width: 80%;
  height: auto;
  font-size: 14px;
  align-items: center;
  padding-top: 20px;
}
#footer-mid-left-wrap {
  display: flex;
  width: 66%;
  height: 100px;
  align-items: center;
}
#footer-mid-left-logo {
  display: flex;
  width: 90px;
  height: 80px;
  align-items: center;
  justify-content: center;
}
#footer-mid-left-text {
  display: flex;
  width: 800px;
  height: 100px;
  font-family: "Audiowide", sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  align-items: center;
  justify-content: left;
  padding-left: 0;
}
#footer-mid-middle-wrap {
  display: flex;
  width: 300px;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}
#footer-middle-wrap {
  display: flex;
  flex-direction: row;
  width: 75%;
  justify-content: center;
}
#footer-links-wrapper {
  display: flex;
  width: 33%;
  height: auto;
  justify-content: right;
  font-size: 18px;
}
.footer-links {
  display: flex;
  width: 400px;
  height: auto;
  justify-content: right;
  padding-right: 20px;
  line-height: 24px;
}
.footer-links a {
  color: #ffffff;
  text-decoration: none;
}
.footer-links a:hover {
  color: #6666ff;
  cursor: pointer;
}
#footer-bottom {
  display: flex;
  width: 80%;
}
#footer-legal {
  display: flex;
  width: 50%;
  height: 120px;
  font-size: 14px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid white;
}
#footer-webmaster {
  display: flex;
  width: 50%;
  height: 120px;
  font-size: 14px;
  margin-top: 20px;
  padding-top: 20px;
  justify-content: right;
  border-top: 1px solid white;
}
#footer-webmaster a {
  color: #ffffff;
  text-decoration: none;
}
#footer-webmaster a:hover {
  color: #6666ff;
  text-decoration: underline;
  cursor: pointer;
}

/* MOBILE DEVICES */
@media screen and (max-width: 768px) {
  .card-row-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .card {
    display: flex;
    flex-direction: column;
    width: 90%;
    height: auto;
  }
  #logo {
    display: flex;
    width: 50px;
    height: auto;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
  }
  #title {
    display: flex;
    flex-direction: column;
    width: 300px;
    height: 100px;
    font-size: 7px;
    margin-left: 10px;
  }
  .p-title {
    font-size: 12px;
  }
  #links-wrap {
    display: none;
  }
  #contact-wrap {
    display: flex;
    width: 150px;
    height: 80px;
    justify-content: right;
    align-items: center;
    padding-right: 10px;
  }
  .contact-btn {
    display: flex;
    width: 90px;
    height: 30px;
    background-color: #181b50;
    color: #ffffff;
    font-size: 16px;
    border-radius: 30px;
    border: 1px solid #6666ff;
    justify-content: center;
    align-items: center;
  }
  #footer-heading {
    display: flex;
    width: 80%;
    height: 100px;
    align-items: flex-end;
    font-size: 24px;
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid white;
  }
  #footer-links-wrapper {
    display: none;
  }
  #footer-mid-left-logo {
    margin: 0;
    padding: 0;
  }
  #footer-mid-left-text {
    display: flex;
    width: 200px;
    height: auto;
    font-size: 16px;
  }
  #footer-mid-middle-wrap {
    display: flex;
    width: 80%;
    height: auto;
    justify-content: center;
    align-items: center;
    font-size: 18px;
  }
  #footer-middle {
    display: flex;
    justify-content: left;
    align-items: center;
    padding-top: 0;
  }
  #footer-middle-wrap {
    display: flex;
    height: auto;
    flex-direction: column;
  }
  #footer-mid-left-wrap {
    display: flex;
    width: 80%;
    height: 100px;
    align-items: center;
  }
  #footer-bottom {
    display: flex;
    flex-direction: column;
    width: 80%;
  }
  #footer-legal {
    display: flex;
    width: 100%;
    height: 60px;
    align-items: center;
    font-size: 14px;
    margin-top: 0;
    padding-top: 0;
    border-top: 1px solid white;
  }
  #footer-webmaster {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 50px;
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 50px;
    align-items: center;
    justify-content: center;
    border-top: 1px solid white;
  }
  /* SLIDESHOW */
  #hero-slideshow {
    display: none;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    position: relative;
    overflow: hidden;
  }
  #hero-slideshow .slides {
    position: relative;
    width: 100%;
    height: 100%;
  }
  #hero-slideshow .slides img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
  }
  #hero-slideshow .slides img.active {
    opacity: 1;
  }
  /* END SLIDESHOW */
  /* SLIDESHOW MOBILE*/
  #hero-slideshow-MOBILE {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    position: relative;
    overflow: hidden;
  }
  #hero-slideshow-MOBILE .slides {
    position: relative;
    width: 100%;
    height: 100%;
  }
  #hero-slideshow-MOBILE .slides img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
  }
  #hero-slideshow-MOBILE .slides img.active {
    opacity: 1;
  }
  /* END MOBILE SLIDESHOW */
}

/* iPads/Tablets */
@media screen and (min-width: 769px) and (max-width: 1400px) {
  .card-row-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .card {
    display: flex;
    flex-direction: column;
    width: 90%;
    height: auto;
  }
  #logo {
    display: flex;
    width: 50px;
    height: auto;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
  }
  #title {
    display: flex;
    flex-direction: column;
    width: 300px;
    height: 100px;
    font-size: 7px;
    margin-left: 10px;
  }
  .p-title {
    font-size: 12px;
  }
  #links-wrap {
    display: none;
  }
  #contact-wrap {
    display: flex;
    width: 75%;
    height: 80px;
    justify-content: right;
    align-items: center;
    padding-right: 20px;
  }
  .contact-btn {
    display: flex;
    width: 200px;
    height: 40px;
    background-color: #181b50;
    color: #ffffff;
    font-size: 16px;
    border-radius: 30px;
    border: 1px solid #6666ff;
    justify-content: center;
    align-items: center;
    text-decoration: none;
  }
  #footer-heading {
    display: flex;
    width: 80%;
    height: 100px;
    align-items: flex-end;
    font-size: 24px;
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid white;
  }
  #footer-links-wrapper {
    display: none;
  }
  #footer-mid-left-logo {
    margin: 0;
    padding: 0;
  }
  #footer-mid-left-text {
    display: flex;
    width: 200px;
    height: auto;
    font-size: 16px;
  }
  #footer-mid-middle-wrap {
    display: flex;
    width: 80%;
    height: auto;
    justify-content: left;
    align-items: center;
    font-size: 18px;
  }
  #footer-middle {
    display: flex;
    justify-content: left;
    align-items: center;
    padding-top: 0;
  }
  #footer-middle-wrap {
    display: flex;
    height: auto;
    flex-direction: column;
  }
  #footer-mid-left-wrap {
    display: flex;
    width: 80%;
    height: 100px;
    align-items: center;
  }
  #footer-bottom {
    display: flex;
    flex-direction: column;
    width: 80%;
  }
  #footer-legal {
    display: flex;
    width: 100%;
    height: 60px;
    align-items: center;
    font-size: 14px;
    margin-top: 0;
    padding-top: 0;
    border-top: 1px solid white;
  }
  #footer-webmaster {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 50px;
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 50px;
    align-items: center;
    justify-content: center;
    border-top: 1px solid white;
  }
  /* SLIDESHOW */
  #hero-slideshow {
    display: none;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    position: relative;
    overflow: hidden;
  }
  #hero-slideshow .slides {
    position: relative;
    width: 100%;
    height: 100%;
  }
  #hero-slideshow .slides img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
  }
  #hero-slideshow .slides img.active {
    opacity: 1;
  }
  /* END SLIDESHOW */
  /* SLIDESHOW MOBILE*/
  #hero-slideshow-MOBILE {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    position: relative;
    overflow: hidden;
  }
  #hero-slideshow-MOBILE .slides {
    position: relative;
    width: 100%;
    height: 100%;
  }
  #hero-slideshow-MOBILE .slides img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
  }
  #hero-slideshow-MOBILE .slides img.active {
    opacity: 1;
  }
  /* END MOBILE SLIDESHOW */
}
