@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=DynaPuff:wght@400..700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

.quicksand-Circles {
  font-family: "Quicksand", Helvetica;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

.dynapuff-Bubbly {
  font-family: "DynaPuff", system-ui;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings:
    "wdth" 90;
}

.great-vibes-regular {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-style: normal;
}

body {
  margin: 0;
  font-family: dynapuff, quicksand, Helvetica;
  background-color: #f4f4f4;
}

a {
  color: #000;
}

/* header */

.header {
  background-color: white;
  box-shadow: 4px 4px 4px 0 rgba(0,0,0,.25);
  top: 30px;
  left: 5%;
  position: fixed;
  width: 90%;
  z-index: 3;
  border-radius: 10px;
}

.header ul {
  margin: 0;
  margin-top: 5px;
  margin-right: 50px;
  padding: 0;
  list-style: none;
  overflow: hidden;
  background-color: white;
}

.header li a {
  display: block;
  padding: 20px 20px;
  text-decoration: none;
  font-size: 18px;
}

.header li a:hover,
.header .menu-btn:hover {
  color: #a21f1f;
  font-weight: 600;
}

.logo {
    height: 50px;
    margin-left: 50px;
}

.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: block;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
  margin-top: 5px;
}

.header .menu-icon .navicon {
  background: #333;
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  background: #333;
  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;
}

.social-icons {
    background-color: #ffffff;
    padding: 5px 15px 15px 15px;
    border-radius: 10px;
    position: fixed;
    right: 30px;
    bottom: -20px;
    transform: translateY(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 4px 4px 4px 0 rgba(0,0,0,.25);
}

.social-icons a img {
    height: 30px;
    padding-top: 10px;
}

.social-icons img:hover {
  transform: scale(1.15);
}

/*footer*/

.footer {
  background-color: #F8B49B;
  color: #13070C;
  padding: 40px 80px 20px;
  font-family: quicksand, 'Helvetica Neue', Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1 1 250px;
}

.footer-section h3 {
  margin-bottom: 12px;
  font-size: 20px;
  color: #A21F1F;
  font-family: dynapuff;
  font-weight: 500;
}

.footer-section p {
  margin: 5px 0;
  line-height: 1.6;
  color: #13070C;
  font-weight: bold;
}

.footer-section p a {
  text-decoration: none;
  color: #13070C;
  font-family: quicksand, Helvetica;
}

.map-container {
  padding-right: 40px;
}

.map-container iframe {
  width: 100%;
  height: 180px;
  border: none;
  border-radius: 8px;
  margin-top: 10px;
}

.footer-section.social {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-section.social h3 {
  display: block;
  width: 100%;
}

.social {
  display: flex;
  column-gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
}

.social img {
  width: 26px;
  height: 26px;
}

.social img:hover {
  transform: scale(1.15);
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid #13070C;
  font-size: 14px;
  color: #13070C;
  font-weight: bold;
}


/* 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;
  }
}

@media (max-width: 767px) {
  .header {
    top: 0;
    width: 100%;
    left: 0;
    border-radius: 0;
    box-shadow: 4px 4px 4px 0 rgba(0,0,0,.25);
  }
    .logo {
        margin-left: 0px;
    }
    .social-icons {
        right: 10px;
    }
}

@media (max-width: 424px) {
  .footer {
    padding: 40px 25px 20px;
  }
}