* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --font-primary: "Inter", sans-serif;
  --font-size-base: 1.1rem;
  --line-height-base: 1.5;
  --text-color: rgb(78, 78, 78);
  --primary-color: #439c9c;
  --secondary-color: #ff8080ff;
  --tertiary-color: #e4b248;
  --quarternary-color: #395c6b;
  --shadow-color: hsla(0, 0%, 0%, 0.2);
  --border-thickness: 0.3rem;
  /* --primary-color: #395c6b; */
  /* --primary-color: #20c997; */
  /* --primary-color: #b084cc; */
  /* --secondary-color: #e15554; */
}
body {
  color: var(--text-color);
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  background-image: url(/img/bluebird.svg), url(/img/redbird.svg);
  background-repeat: no-repeat, no-repeat;
  background-size: 30%, 30%;
  background-position: right, left bottom;
  background-attachment: fixed;
}
a {
  color: white;
  text-decoration: none;
}
ul {
  list-style-type: none;
}
h1,
h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -0.5px;
}
h2 {
  font-size: 1.5rem;
}
.wrapper {
  margin: 0 auto;
  max-width: 1000px;
}
.container {
  display: flex;
  flex-direction: column;
  margin: 144px auto;
  z-index: 1;
  gap: 15rem;
}
.top-banner {
  position: fixed;
  /* box-shadow: 0 4px 16px 0 var(--shadow-color); */
  top: 0;
  z-index: 10;
  width: 100%;
  height: 80px;
  background-color: var(--primary-color);
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.scalloped-shape {
  position: absolute;
  fill: var(--primary-color);
  bottom: -29px;
  left: 0;
  width: 100%;
  height: 30px;
  transform: rotate(180deg);
}
.scalloped-shape2 {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 30px;
}
.logo-image {
  width: 30%;
  height: auto;
  max-width: 150px;
  margin: 0.25rem 0 0.25rem 1rem;
  filter: drop-shadow(0 5px 5px var(--shadow-color));
  border-radius: 100%;
  top: 0;
  position: fixed;
  border: solid var(--border-thickness) var(--primary-color);
}
.top-nav {
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  font-size: 0.9rem;
  font-weight: 400;
}
.top-nav-mobile {
  display: none;
}
.top-nav a {
  color: white;
  text-align: center;
  text-decoration: none;
}
.sub-nav .sub-nav-button {
  border: none;
  color: white;
  background-color: inherit;
  font-family: inherit;
  font-size: inherit;
}
.top-nav a:hover {
  background-color: inherit;
  color: var(--quarternary-color);
}
.top-nav .nav-link-cta {
  background-color: white;
  opacity: 0.9;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 10px 15px 0 var(--shadow-color);
  color: rgb(67, 156, 156);
  font-weight: 500;
  text-transform: uppercase;
}
.top-nav .nav-link-cta:hover {
  background-color: white;
  color: var(--tertiary-color);
  opacity: 1;
}
.welcome {
  display: grid;
  grid-template-columns: repeat(1, auto);
  justify-items: center;
  line-height: 2;
  text-align: center;
  gap: 2rem;
  /* margin: 0 10%; */
}
.welcome p {
  margin-bottom: 1.5rem;
}
.welcome img {
  width: 100%;
  height: auto;
  max-width: 450px;
}
.welcome-images {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 2%;
}
.welcome-images img {
  transition: transform 0.3s ease;
  border: solid var(--border-thickness) var(--secondary-color);
  opacity: 80%;
  border-radius: 100%;
  box-shadow: 0 10px 15px 0 var(--shadow-color);
  width: 100%;
  height: auto;
  /* outline: solid 0.3rem #ff8080ff; */
}
.welcome-images img:hover {
  transform: scale(1.2);
  opacity: 100%;
}
.promise {
  display: grid;
  grid-template-columns: repeat(2, auto);
  padding: 2rem;
  border: solid var(--border-thickness) var(--primary-color);
  border-top: solid 0.5rem var(--primary-color);
  /* border-bottom: solid 0.4rem #439c9c; */
  border-radius: 6rem 0.5rem;
  box-shadow: 0 10px 15px 0 var(--shadow-color);
  align-items: center;
  justify-items: center;
  text-align: left;
  background-color: white;
}
.promise-col {
  columns: 2;
}
.promise li {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  gap: 1rem;
}
.promise img {
  height: 100px;
  width: auto;
  /* border: solid 0.3rem var(--primary-color); */
  /* border-radius: 100%; */
  /* background-color: #d8d5db; */
  /* background-color: #ffe9e9;
  border-radius: 100%;
  border: solid 2px #439c9c;
  box-shadow: 0 10px 15px 0 hsla(0, 0%, 0%, 0.05); */
}
.promise-header {
  grid-column: 1 / span 2;
  margin-bottom: 3rem;
}
.promise-header h2 {
  color: var(--secondary-color);
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, auto);
  text-align: center;
  gap: 2rem;
  /* padding: 2rem; */
}
.testimonials-header {
  grid-column: 1 / span 2;
  margin-bottom: 2rem;
}
.testimonials-header h2 {
  margin-bottom: 1.5rem;
}
.testimonial-item {
  transition: transform 0.3s ease;
  padding: 2rem;
  border-top: solid 0.5rem var(--primary-color);
  text-align: center;
  font-size: 1rem;
  line-height: 1.8;
  /* border: solid 2px #439c9c3d; */
  box-shadow: 0 10px 15px 0 var(--shadow-color);
  /* border: solid 0.1rem #ff8080ff; */
  /* box-shadow: 0 0 1rem 0 rgba(255, 128, 128, 0.178); */
  border-radius: 1rem;
  background-color: white;
}

.testimonial-item p {
  text-align: start;
}
.testimonial-item img {
  width: 20%;
  height: auto;
  min-width: 80px;
  border-radius: 100%;
  outline: solid var(--border-thickness) var(--primary-color);
  border: solid var(--border-thickness) white;
  margin-bottom: 1.5rem;
}
.testimonial-item h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.my-story {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.my-story ul {
  font-weight: bold;
}
.my-story li {
  text-align: start;
  font-weight: 100;
}
.my-story img {
  width: 80%;
  max-width: 350px;
  height: auto;
  border-radius: 100%;
  border: solid var(--border-thickness) var(--primary-color);
  box-shadow: 0 10px 15px 0 var(--shadow-color);
}
.my-story-lists {
  display: grid;
  grid-template-columns: auto auto;
  gap: 10%;
  margin: auto 0;
  width: 70%;
}
.contact {
  display: grid;
  grid-template-columns: auto;
  gap: 5%;
  border: solid var(--border-thickness) var(--primary-color);
  border-radius: 4rem 0.5rem;
  padding: 2rem 2rem 4rem 2rem;
  box-shadow: 0 10px 15px 0 var(--shadow-color);
  background-color: white;
}
iframe {
  min-height: 300px;
  border-radius: 0.5rem;
  /* padding-bottom: 1rem; */
  /* border: solid 10px #439c9c; */
}
footer {
  box-shadow: 0 4px 16px 0 var(--shadow-color);
  top: 0;
  /* padding: 2rem; */
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 150px;
  background-color: var(--primary-color);
  background-size: cover;
  color: white;
  text-align: center;
}

@media (max-width: 768px) {
  .container {
    margin: 112px auto;
    gap: 10rem;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .welcome img {
    display: none;
  }
  .welcome-images img {
    display: block;
  }
  .promise-header {
    border-top: solid 0.2rem var(--primary-color);
    padding-top: 2rem;
  }
  .promise {
    border: 0;
    /* border-top: solid 0.3rem #439c9c;
    border-bottom: solid 0.3rem #439c9c; */
    /* border-top-left-radius: 0rem; */
    box-shadow: none;
    /* border-radius: 5rem 0.5rem; */
  }
  .testimonial-item {
    border: 0;
    box-shadow: 0 0 1.5rem 0 var(--shadow-color);
  }
  .contact {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 2rem;
    border: 0;
    box-shadow: none;
    padding: 0;
    background-color: transparent;
  }
  .welcome-images {
    /* grid-template-columns: auto; */
    display: flex;
    flex-direction: column;
    width: 80%;
    height: auto;
    gap: 2rem;
    margin: 0 auto;
    align-items: center;
  }
  .promise {
    /* display: flex;
    flex-direction: column; */
    width: 90%;
    margin: 0 auto;
    border-radius: 2rem;
    /* box-shadow: 0 10px 15px 0 var(--shadow-color); */
    background-color: transparent;
  }
  .promise-col {
    columns: 1;
  }
  .testimonials {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 0 auto;
  }
  .testimonials-header {
    border-top: solid 0.2rem var(--primary-color);
    padding-top: 2rem;
  }
  .testimonial-item h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  .my-story {
    width: 95%;
    text-align: center;
  }
  .my-story-lists {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    text-align: center;
  }
  .my-story li {
    text-align: center;
  }
  .top-nav {
    display: none;
  }
  .top-nav-mobile {
    display: block;
  }
  .top-nav-mobile .mobile-menu-button {
    margin-right: 2rem;
  }
  .top-nav-mobile .mobile-menu-content ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    list-style: none;
    margin-top: 80px;
    padding-top: 1rem;
    border-top: solid 0.2rem white;
  }
  .top-nav-mobile .mobile-menu-content li {
    width: 100%;
  }
  .top-nav-mobile .mobile-menu-content a:active {
    background-color: white;
  }
  .top-nav-mobile .mobile-menu-content a {
    display: flex;
    color: white;
    text-decoration: none;
    /* margin-top: 1rem; */
    padding: 12px 16px;
    /* justify-content: center; */
  }
  .top-nav-mobile .mobile-menu-content {
    display: none;
    position: fixed;
    background-color: var(--primary-color);
    width: 100%;
    height: 100%;
    padding: 0 8px;
    right: 0px;
    top: 0;
    z-index: 1;
    /* text-align: center; */
    /* align-items: center; */
  }
  .top-nav-mobile .mobile-menu-button span {
    display: block;
    height: 3px;
    width: 30px;
    background: white;
    position: relative;
    z-index: 100;
    margin-top: 5px;
    cursor: pointer;
    transition: left 0.3s ease-in-out;
  }

  .trigger:checked ~ .mobile-menu-content {
    display: block;
    opacity: 0.95;
  }
  .trigger:checked ~ .mobile-menu-button span:first-child {
    transform: rotate(45deg);
    transition: all 0.3s ease-in-out;
    position: relative;
    top: 8px;
  }
  .trigger:checked ~ .mobile-menu-button span:last-of-type {
    transform: rotate(-45deg);
    transition: all 0.3s ease-in-out;
    position: relative;
    top: -8px;
  }
  .trigger:checked ~ .mobile-menu-button span:nth-child(2) {
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }
  .trigger {
    display: none;
  }
  .mobile-menu-content li:last-child a {
    background-color: white;
    color: var(--tertiary-color);
    border-radius: 5px;
    text-transform: uppercase;
  }
  footer {
    font-size: 1rem;
  }
}

@media (max-width: 425px) {
  .container {
    margin: 112px auto;
    gap: 10rem;
  }
  h1 {
    font-size: 1.5rem;
    line-height: 1.4;
  }
  h2 {
    font-size: 1.5rem;
    line-height: 1.4;
  }
  body {
    /* font-size: 0.9rem; */
    line-height: 1.5;
    text-align: center;
  }
  .welcome {
    line-height: 1.5;
  }
  .welcome-images {
    width: 100%;
    /* max-width: 50px; */
  }
  .promise {
    width: 100%;
    padding: 1rem;
    gap: 0;
    text-align: center;
  }
  .promise li {
    flex-direction: column;
    margin-bottom: 3rem;
  }
  .testimonials {
    padding: 0;
    width: 100%;
    text-align: center;
  }
  .testimonial-item {
    font-size: 0.9rem;
    text-align: center;
  }
  .testimonial-item img {
    width: 30%;
    height: auto;
  }
}
