/* Reset */

*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
body {
  /* line-height: 1; */
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
#root, #__next {
  isolation: isolate;
}

/* DKT */

:root {
  width:100%;
  height:100%;
  font-size:10px;
  font-family: "IBM Plex", sans-serif;
  line-height: 1.2;
}

body {
  width:100%;
  height:100%;
}

h1 {
  font-size: 3.4rem;
  line-height: 1;
}

h1 span {
  font-size: 3.8rem;
}

h2 {
  font-size: 3.4rem;
  margin-bottom: 0.8rem;
  /* color: #28b3e2; */
}

a {
  color:#fff;
  text-decoration: none;
}

#wrap {
  width:100%;
  height:100%;
  display:flex;
  flex-direction: column;
  align-items: stretch;
  font-size: 1.8rem;
  overflow: hidden;
  color: #282828;
}

.inner {
  /* max-width:70rem; */
  margin-left:auto;
  margin-right:auto;
}

#top-section {
  background-color: #1bbbf1;
}

#top-section .inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  /* justify-content: center; */
  gap: 1.2rem;
  padding: 1.6rem 2.4rem;
  flex-shrink: 0;
  
  color:#fff;
}

#top-section img {
  height: 10rem;
}

#mid-section {
  height: 100%;
  padding: 4.8rem 2.4rem;
  overflow-y: auto;
}

#mid-section .inner {
  gap: 3.4rem;
  display: flex;
  flex-direction: column;
  max-width: 54rem;
}

#info-container {
  display:flex;
  flex-direction: column;
  gap: 3.4rem;
  /* text-align: center; */
}

#info-container p{
  font-weight: 700;
  font-size: 3.4rem;
  color: #00afe1;
  /* text-align: center; */
}

#info-container ul{
  padding:0;
  list-style-type:none;
  display:flex;
  flex-wrap:wrap;
  gap: 1.6rem 0;
  flex-direction: row;
  /* width: 24rem; */
  align-self: center;
}

#info-container ul li{
  display:flex;
  flex-direction: column;
  align-items:center;
  gap: 0.8rem;
  width: 12rem;
  text-align: center;
  line-height: 1.2;
  font-weight: 600;
  max-width: 33.333%;
}

#info-container ul li img{
  background-color: #1bbbf1;
  width: 6.4rem;
  height: 6.4rem;
  padding: 1.6rem;
  border-radius: 9999px;
}

#bottom-section {
  color: #fff;
  flex-shrink: 0;
  background-color: #e4f1f9;
  padding: 2.4rem;
  padding-top: 1.2rem;
  -webkit-box-shadow: 0px 0px 24px 0px rgba(0,0,0,0.2);
  box-shadow: 0px 0px 24px 0px rgba(0,0,0,0.2);
}

#bottom-section .inner{
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: center;
}

#bottom-section p {
  color: #282828;
  font-weight:700;
}

#contact-container {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
  /* font-size: 1.6rem; */
}

.contact-button {
  display: flex;
  flex-direction: row;
  gap: 0.8rem;
  padding: 0.8rem 1.6rem;
  border-radius: 9999px;
  align-items: center;
  line-height: 1;
}

#contact-phone {
  background-color: #1bbbf1;
}

#contact-whatsapp {
  background-color: #1bbbf1;
}

#contact-mail {
  background-color: #1bbbf1;
}

.contact-button img{
  width: 2.4rem;
}

@media (width >= 1024px) {
  :root {
    /* font-size:12px; */
  }
  #top-section .inner {
    justify-content: center;
  }
  #mid-section {
    padding: 4.8rem 1.6rem;
  }
  #info-container {
    /* text-align: center; */
    /* gap: 6.4rem; */
  }
  #contact-container {
    flex-direction: row;
  }
  #intro-container {
    text-align: center;
  }
  #info-container p{
    text-align:center;
  }
  #info-container p br {
    display:none;
  }
}