html {
  font-family: "Chilanka", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #000000;
}

body {
  min-height: 100vh;
  min-width: 100vw;
}

h1 {
  font-family: "Dancing Script", sans-serif;
  font-size: 5rem;
  margin-top: 0;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4,
p,
li,
label,
input,
select {
  font-size: 1.5rem;
}

li {
  line-height: 2;
}

img {
  max-width: 100%;
}

.align-txt-cntr {
  text-align: center;
}

.align-btn {
  text-align: center;
  margin: 3rem 0;
}
@media screen and (min-width: 800px) {
  .align-btn {
    text-align: right;
    margin-bottom: 1.5rem;
    margin-top: 0;
  }
}

a {
  color: #000000;
}
a:hover, a.fb-nav-item:hover {
  color: #ffffff;
}

header {
  text-align: center;
  background-color: #66ccff;
}
@media screen and (min-width: 800px) {
  header {
    padding-top: 50px;
  }
}
@media screen and (min-width: 1600px) {
  header {
    padding-top: 100px;
  }
}

h1 {
  font-family: "Dancing Script", sans-serif;
  font-size: clamp(2.5rem, 8vw, 5rem); /* Responsive sizing */
  margin-top: 0;
  white-space: nowrap; /* Prevents line breaks */
  padding: 0.5rem 1rem; /* Add some breathing room */
}
@media screen and (max-width: 400px) {
  h1 {
    font-size: 2.5rem; /* Minimum size for very small screens */
  }
}
@media screen and (min-width: 800px) {
  h1 {
    display: none;
  }
}

nav ul {
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 800px) {
  nav ul {
    display: flex;
    max-width: 800px;
    margin: auto;
  }
}
@media screen and (min-width: 1600px) {
  nav ul {
    max-width: 1300px;
  }
}
nav li {
  list-style: none;
}
@media screen and (min-width: 800px) {
  nav li {
    min-width: 160px;
  }
}
@media screen and (min-width: 1600px) {
  nav li {
    min-width: 216.6666666667px;
  }
}
nav li:last-child > a {
  margin-bottom: 0;
}
@media screen and (min-width: 1600px) {
  nav li.fb-nav {
    padding-left: 216.6666666667px;
  }
}
nav a {
  display: block;
  font-weight: bold;
  font-size: 2rem;
  text-decoration: none;
  text-transform: uppercase;
  margin: 0.15rem 0;
  padding: 1rem 0 0.5rem 0;
  background-color: #ff9900;
}
nav a.current-page {
  background-color: #ffaf39;
}
nav a.current-page:hover {
  color: #000000;
}
nav a.fb-nav-item {
  color: #0165e1;
  position: relative;
}
nav a.fb-nav-item::after {
  content: "Facebook";
}
@media screen and (min-width: 800px) {
  nav a.fb-nav-item::after {
    content: "";
  }
}
@media screen and (min-width: 1600px) {
  nav a.fb-nav-item::after {
    content: "Find Us On";
  }
}
@media screen and (min-width: 800px) {
  nav a {
    font-size: 1.6rem;
    margin: 0;
  }
}

.fb-img-item {
  display: none;
}
@media screen and (min-width: 800px) {
  .fb-img-item {
    position: absolute;
    display: initial;
    height: 50px;
    margin: 0;
    top: 25%;
  }
}
@media screen and (min-width: 1600px) {
  .fb-img-item {
    margin-left: 150px;
    top: 50%;
    transform: translateY(-50%);
  }
}

.top-nav {
  width: 100%;
  background-color: #ff9900;
}
.CDMC-logo-div {
  box-sizing: border-box;
  width: 100%;
}
@media screen and (min-width: 800px) {
  .CDMC-logo-div {
    max-width: 800px;
    margin: 0 auto;
    display: block;
    position: relative;
  }
}
@media screen and (min-width: 1600px) {
  .CDMC-logo-div {
    max-width: 1300px;
  }
}

.CDMC-logo-img {
  position: absolute;
  max-width: 160px;
  right: 0.5rem;
  transform: translateY(-70%);
}
@media screen and (min-width: 800px) {
  .CDMC-logo-img {
    right: 0rem;
  }
}
@media screen and (min-width: 1600px) {
  .CDMC-logo-img {
    max-width: 350px;
    right: 1rem;
    top: 50%;
    transform: translateY(-42%);
  }
}

.header-title {
  padding: 0;
}

.top-nav {
  background-color: #ff9900;
  width: 100%;
}

.nav-container {
  position: relative;
}

/* Navigation links - preserving original styles */
nav a.current-page {
  background-color: #ffaf39;
}

/* Hamburger button styling */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 15px;
  margin: 0;
  z-index: 100;
}
@media screen and (min-width: 800px) {
  .hamburger {
    display: none;
  }
}

.hamburger-bar {
  display: block;
  width: 30px;
  height: 3px;
  margin: 6px 0;
  background-color: #000000;
  transition: all 0.3s ease-in-out;
}

/* Mobile styles */
@media screen and (max-width: 799px) {
  .hamburger {
    display: block;
    margin-left: 1rem;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 153, 0, 0.95);
    transition: left 0.3s ease-in-out;
    z-index: 90;
    padding-top: 20px;
    overflow-y: scroll;
  }
}
@media screen and (max-width: 799px) and (min-width: 800px) {
  .nav-menu {
    display: block;
  }
}
@media screen and (max-width: 799px) {
  .nav-menu.active {
    left: 0;
  }
  .hamburger.active {
    transition: right 3ms ease-in-out;
    position: fixed;
    top: 0;
    right: 0;
    margin: 1rem;
  }
  .hamburger.active .hamburger-bar:nth-child(1) {
    transform: rotate(45deg) translate(9px, 6px);
  }
  .hamburger.active .hamburger-bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .hamburger-bar:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -6px);
  }
  body.menu-open {
    overflow: hidden;
  }
}
@media screen and (min-width: 800px) {
  .show-mobile {
    display: none;
  }
}

main {
  box-sizing: border-box;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  padding: 1rem;
  margin-bottom: 125px;
}
@media screen and (min-width: 800px) {
  main {
    max-width: 800px;
    padding: 1rem;
  }
}
@media screen and (min-width: 1600px) {
  main {
    margin-bottom: 225px;
    max-width: 1300px;
  }
}
main h2 {
  color: #99cc33;
}

@media screen and (min-width: 1600px) {
  .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
}

.grid article:nth-of-type(1) {
  order: 2;
}

@media screen and (min-width: 800px) {
  main.aboutus-bg {
    background-image: url(../img/main-image-aboutus.png);
    background-repeat: no-repeat;
    background-position: 100% 50%;
    background-size: 250px;
  }
}
@media screen and (min-width: 1600px) {
  main.aboutus-bg {
    background-position: 90% 60%;
    background-size: 350px;
  }
}

@media screen and (min-width: 800px) {
  article.resize {
    max-width: 70%;
  }
}
@media screen and (min-width: 1600px) {
  article.resize {
    max-width: 60%;
  }
}

.maps-location {
  margin: 0;
  width: 100%;
  height: 650px;
  border: 0;
}
@media screen and (min-width: 800px) {
  .maps-location {
    width: 750px;
  }
}
@media screen and (min-width: 1600px) {
  .maps-location {
    width: 1250px;
  }
}

a.main-btn {
  display: block;
  font-size: 1.8rem;
  text-transform: uppercase;
  padding: 1.5rem;
  border-radius: 10px;
}
@media screen and (min-width: 800px) {
  a.main-btn {
    min-width: 185px;
    text-align: center;
    display: inline-block;
    padding: 1rem;
  }
}

div.clipboard-bg {
  background-image: url(../img/contacts-clipboardEmpty.png);
  background-repeat: no-repeat;
  background-position-x: center;
  background-size: contain;
  height: 660px;
}
@media screen and (min-width: 490px) {
  div.clipboard-bg {
    height: 760px;
  }
}
@media screen and (min-width: 590px) {
  div.clipboard-bg {
    height: 860px;
  }
}
@media screen and (min-width: 625px) {
  div.clipboard-bg {
    height: 960px;
  }
}

.green {
  background-color: #99cc33;
}

.turquoise {
  background-color: #33cccc;
}

.no-margin-bottom {
  margin-bottom: 0;
}

.no-margin-top {
  margin-top: 0;
}

.bigger-font {
  font-size: 1.5rem;
}
@media screen and (min-width: 590px) {
  .bigger-font {
    font-size: 2rem;
  }
}

.add-auto-margin {
  width: 75%;
  margin: auto;
  padding-top: 35%;
}
@media screen and (min-width: 800px) {
  .add-auto-margin {
    padding-top: 35%;
    width: 60%;
  }
}
@media screen and (min-width: 1600px) {
  .add-auto-margin {
    width: 70%;
  }
}

@media screen and (min-width: 1600px) {
  .add-line-breaks > span {
    display: block;
  }
}

@media screen and (min-width: 1600px) {
  .add-padding-top {
    padding-top: 12rem;
  }
}

.align-ul {
  text-align: initial;
  margin: auto;
  width: 60%;
}

footer {
  margin-top: auto;
  line-height: initial;
}

.footer-copy {
  margin: 1rem 0;
  text-align: center;
}
.footer-copy p {
  font-size: 1rem;
  margin: 0;
}

.footer-yellow-layer {
  min-height: 165px;
  position: relative;
}

.footer-yellow-gradient {
  width: 100%;
  min-height: 100%;
  background-image: linear-gradient(to right, #ffffff, #ffff33);
  position: absolute;
  bottom: 0;
  z-index: -2;
}

.footer-red-layer {
  min-height: 165px;
  background-image: url(../img/clouds-footer.png);
  background-position: bottom;
  background-repeat: repeat-x;
  position: relative;
}

.footer-characters-layer {
  height: 100%;
  max-width: 600px;
  margin: auto;
  position: relative;
}
@media screen and (min-width: 800px) {
  .footer-characters-layer {
    max-width: 800px;
  }
}
@media screen and (min-width: 1600px) {
  .footer-characters-layer {
    max-width: 1300px;
  }
}

.footer-characters-img-index {
  position: absolute;
  bottom: 0;
  z-index: -1;
  max-height: 400px;
  transform: translateX(-25%);
}
@media screen and (min-width: 800px) {
  .footer-characters-img-index {
    transform: none;
    max-height: 450px;
  }
  .footer-characters-img-index.place-left {
    left: 0;
  }
  .footer-characters-img-index.place-right {
    left: auto;
    right: 0;
  }
}
@media screen and (min-width: 1600px) {
  .footer-characters-img-index {
    max-height: none;
  }
}

.footer-characters-img {
  position: absolute;
  bottom: 0;
  z-index: -1;
  max-height: 400px;
}
@media screen and (min-width: 800px) {
  .footer-characters-img {
    transform: none;
    max-height: 450px;
  }
  .footer-characters-img.place-left {
    left: 0;
  }
  .footer-characters-img.place-right {
    left: auto;
    right: 0;
  }
}
@media screen and (min-width: 1600px) {
  .footer-characters-img {
    max-height: none;
  }
}

.footer-red-gradient {
  width: 100%;
  min-height: 100%;
  background-image: linear-gradient(to right, #ffffff, #ff3300);
  position: absolute;
  bottom: 0;
  z-index: -2;
}

.footer-yellow-layer-text {
  box-sizing: border-box;
  min-height: inherit;
  max-width: 600px;
  margin: auto;
  padding: 1rem;
  position: relative;
  text-align: center;
  text-align: center;
}
@media screen and (min-width: 800px) {
  .footer-yellow-layer-text {
    padding-left: 240px;
    padding-bottom: 1rem;
    max-width: 800px;
    text-align: left;
  }
}
@media screen and (min-width: 1600px) {
  .footer-yellow-layer-text {
    padding-left: 315px;
    max-width: 1300px;
  }
}
.footer-yellow-layer-text h3 {
  margin: 0;
}
@media screen and (min-width: 800px) {
  .footer-yellow-layer-text {
    text-align: left;
  }
}

.footer-layer-text {
  box-sizing: border-box;
  min-height: inherit;
  max-width: 600px;
  margin: auto;
  padding: 1rem;
  padding-left: 140px;
  position: relative;
  text-align: center;
  text-align: center;
}
@media screen and (min-width: 800px) {
  .footer-layer-text {
    padding-left: 240px;
    padding-bottom: 1rem;
    max-width: 800px;
    text-align: left;
  }
}
@media screen and (min-width: 1600px) {
  .footer-layer-text {
    padding-left: 315px;
    max-width: 1300px;
  }
}
.footer-layer-text h3 {
  margin: 0;
}
@media screen and (min-width: 800px) {
  .footer-layer-text {
    text-align: left;
  }
}

.no-bg {
  background-image: none;
}

.place-right {
  right: 0;
}

.place-left {
  left: 0;
}

a.footer-btn {
  display: block;
  font-size: 1.8rem;
  text-transform: uppercase;
  padding: 1.5rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 800px) {
  a.footer-btn {
    min-width: 185px;
    text-align: center;
    display: inline-block;
    margin-bottom: 0;
  }
}

.yellow {
  background-color: #ffcc00;
}

.red {
  background-color: #ff6633;
}

.main-page-banner {
  display: none;
}
@media screen and (min-width: 800px) {
  .main-page-banner {
    display: flex;
    height: 485px;
    justify-content: center;
    background-image: url(../img/clouds-banner.png);
    background-position: 0 40%;
    background-repeat: repeat-x;
    position: relative;
  }
}
@media screen and (min-width: 1600px) {
  .main-page-banner {
    height: 725px;
    background-size: 800px;
    background-position: 0 60%;
  }
}

.banner-logo-title {
  box-sizing: border-box;
  width: 800px;
  padding-left: 285px;
  padding-top: 300px;
  padding-bottom: 20px;
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 1600px) {
  .banner-logo-title {
    width: 1300px;
    padding-left: 375px;
    padding-top: 485px;
  }
}

.banner-title {
  font-family: "Dancing Script", sans-serif;
  font-size: 4em;
  text-shadow: #ff8c00 2px 0 12px;
  margin: 0;
  padding-top: 15px;
}
@media screen and (min-width: 1600px) {
  .banner-title {
    font-size: 7em;
  }
}

.banner-subtitle {
  font-size: 2.25em;
  color: #ff6633;
  margin: 0;
  text-transform: uppercase;
}
@media screen and (min-width: 1600px) {
  .banner-subtitle {
    font-size: 3em;
    transform: translateY(-25px);
  }
}

.banner-background {
  width: 800px;
  position: absolute;
  z-index: -3;
}
@media screen and (min-width: 1600px) {
  .banner-background {
    width: 1300px;
  }
}

.banner-cdmc-logo {
  position: absolute;
  width: 250px;
  left: 15px;
  bottom: -25px;
  z-index: 1;
}
@media screen and (min-width: 1600px) {
  .banner-cdmc-logo {
    bottom: 0px;
    left: 50px;
    width: 300px;
  }
}

.banner-cdmc-bg {
  position: absolute;
  width: 800px;
  top: 0;
  text-align: center;
  z-index: -2;
}
@media screen and (min-width: 1600px) {
  .banner-cdmc-bg {
    width: 1300px;
  }
}

/* Placeholder colors */
::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #9b9b9b;
}

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #9b9b9b;
  opacity: 1;
}

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #9b9b9b;
  opacity: 1;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #9b9b9b;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #9b9b9b;
}

.flash-div {
  margin-left: 0.5rem;
}

.mail-sent-true {
  color: #009933;
}

.mail-sent-false {
  color: #cc0000;
}

textarea::-moz-placeholder {
  color: #9b9b9b;
}

textarea::placeholder {
  color: #9b9b9b;
}

select {
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  background-color: transparent;
}

.select {
  border: 1px solid #9b9b9b;
}

/* Colors for focused fields */
input[type=text],
input[type=email],
input[type=tel],
input[type=date],
textarea {
  outline: none;
  border: 1px solid #9b9b9b;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=email]:focus,
input[type=date]:focus,
textarea:focus {
  border: 1px solid #00c5be;
}

/* Input styling */
textarea {
  box-sizing: border-box;
  width: 100%;
  resize: none;
  font-size: 1.8rem;
  padding: 0.6rem;
  border-radius: 10px;
  color: #4c4c4c !important;
}

.contact-form-div input,
select {
  box-sizing: border-box;
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  border-radius: 10px;
  color: #4c4c4c !important;
}

.contact-form-div input[type=submit] {
  width: 100%;
  font-size: 1.8rem;
  text-transform: uppercase;
  padding: 1.5rem;
  background-color: #00c5be;
  color: #fff !important;
}
@media screen and (min-width: 800px) {
  .contact-form-div input[type=submit] {
    min-width: 185px;
    text-align: center;
    padding: 1rem;
    width: unset;
  }
}

.contact-form-div input[type=submit]:disabled {
  background-color: darkgray;
}

#a6776299757 {
  display: none;
}

.inv {
  display: none;
}

/* General page styling */
body {
  color: #4c4c4c;
}/*# sourceMappingURL=styles.css.map */