/* ==========================================================================
   CONTACT.CSS — this page only
   ========================================================================== */

/* ============ TOKENS ============ */

:root {
  --head-color: #1D364D;
  --text-color: #19325C;
  --page: #F5F8FC;
  --whatsapp: #25D366;
  --line: #C9D0D8;
  --map-line: #C4CBD6;
  --r-sm: 6px;

  /* Figma contact content width */
  --contact-shell: 1312px;
}


/* ============ PAGE ============ */

body {
  margin: 0;
  background: var(--page);
  color: var(--text-color);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

:focus-visible {
  outline: 2px solid var(--head-color);
  outline-offset: 2px;
  border-radius: 4px;
}

a {
  text-decoration: none;
  color:var(--text-color);
}


/* ============ CONTACT WRAPPER ============ */

.wrap{margin:0 auto;padding:56px var(--gutter) 80px}



/* ============ HEADING ============ */

h1 {
  margin: 0 0 26px;
  font-size: 34px;
  line-height: 1.25;
  font-weight: 500;
  color: var(--head-color);
}


/* ============ TWO COLUMN LAYOUT ============ */

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 24px;
  align-items: start;
}


/* ============ DETAILS ============ */

.details {
  min-width: 0;
}

address {
  font-style: normal;
  margin: 0 0 30px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-color);
}


/* ============ CONTACT LINES ============ */

.lines {
  display: grid;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.line {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 18px;
  color: var(--text-color);
}

.line .ico {
  flex: none;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: var(--head-color);
}

.line .ico svg {
  width: 24px;
  height: 24px;
}

.line .ico.wa {
  background: var(--whatsapp);
  color: #fff;
  border-radius: 50%;
  width: 26px;
  height: 26px;
}

.line .ico.wa svg {
  width: 15px;
  height: 15px;
}

.line a {
  text-decoration: underline;
}

.line a.plain {
  text-decoration: none;
}

.line a:hover {
  color: var(--head-color);
}


/* ============ MAP ============ */

.map-col {
  min-width: 0;
}

.map {
  width: 100%;
  height: 318px;
  border: 1px solid var(--map-line);
  border-radius: 2px;
  overflow: hidden;
  background: #EAEFF3;
}

.map iframe {
  display: block;
  width: 100%;
  height: 318px;
  border: 0;
}

/*.directions {*/
/*  margin: 12px 0 0;*/
/*  font-size: 15px;*/
/*}*/

/*.directions a {*/
/*  text-decoration: underline;*/
/*}*/


/* ============ MOBILE ============ */

@media (max-width: 900px) {

  .wrap {
    padding: 26px var(--gutter) 44px;
  }

  h1 {
    font-size: 24px;
    margin-bottom: 22px;
  }

  .contact {
    grid-template-columns: 1fr;
    row-gap: 26px;
  }

  address {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
  }

  .lines {
    gap: 22px;
  }

  .line {
    font-size: 15px;
    gap: 14px;
  }

  .line.wrap-2 {
    flex-wrap: wrap;
  }

  .line.wrap-2 .body {
    flex: 1;
    min-width: 0;
  }

  .map {
    height: 300px;
  }

  .map iframe {
    height: 300px;
  }
}


/* ============ SMALL MOBILE ============ */

@media (max-width: 600px) {

  .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  h1 {
    font-size: 24px;
  }

  .line {
    gap: 12px;
  }

  .line .body {
    min-width: 0;
  }

  .map,
  .map iframe {
    height: 280px;
  }
}