/* Variables */
@import url("https://fonts.googleapis.com/css2?family=Oswald&family=Roboto:wght@300;400;500;700&display=swap");
body {
  background-color: #E1E8F0;
  font-family: 'Roboto', sans-serif; }

.shadow, .container, .widgets .dayforecast, .widgets .cities .card {
  -webkit-box-shadow: 0px 15px 20px 0px rgba(33, 33, 33, 0.15);
  box-shadow: 0px 15px 20px 0px rgba(33, 33, 33, 0.15); }

.container {
  width: 86%;
  margin: 4em auto;
  padding: 30px 40px 70px;
  background: #fff;
  border-radius: 2em; }
  @media screen and (max-width: 767px) {
    .container {
      width: 78%; } }

.row {
  display: flex;
  flex-direction: row; }
  @media screen and (max-width: 767px) {
    .row {
      width: 100%;
      flex-wrap: wrap; } }

.column {
  display: flex;
  flex-direction: column; }
  @media screen and (max-width: 767px) {
    .column {
      width: 100%; } }

h3 {
  font-size: 1.7em;
  font-weight: 700; }
  h3 span {
    font-weight: 300; }

/* Widget Principal */
.principal {
  width: 120px;
  position: relative;
  top: 50px;
  left: -40px;
  display: inline-flex;
  flex-direction: column; }
  .principal .icono {
    background: #31328A;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    border-radius: 0 30px 30px 15px;
    padding: 25px 0;
    z-index: 11; }
  .principal .temperatura {
    background: #7D68E9;
    color: #fff;
    font-size: 3.2em;
    text-align: center;
    padding: 35px 0 15px 0;
    margin-top: -25px;
    border-radius: 0 0 30px 0;
    z-index: 10;
    font-family: 'Oswald', sans-serif; }
    .principal .temperatura span {
      font-family: 'Roboto', sans-serif;
      font-size: 0.5em;
      font-weight: 700;
      position: relative;
      top: -0.7em; }

/* Header */
.header {
  background: url("../img/bg-cielo.jpg");
  background-size: cover;
  background-position: center left;
  border-radius: 2em;
  min-height: 300px;
  margin-top: -200px;
  padding: 50px 150px; }
  @media screen and (max-width: 767px) {
    .header {
      padding: 2em 1em 1em 5.2em; } }
  .header .city {
    color: #7D68E9;
    font-size: 2em;
    font-weight: 500; }
    .header .city i {
      font-size: 0.8em; }

/* Widgets */
.widgets {
  display: flex;
  column-gap: 50px;
  width: 100%;
  margin-top: 1em;
  /* Singapore Widget */
  /* Cities Cards */ }
  @media screen and (max-width: 767px) {
    .widgets {
      flex-wrap: wrap; } }
  .widgets .column {
    width: 23%; }
    @media screen and (max-width: 767px) {
      .widgets .column {
        width: 100%; } }
  .widgets .column:last-child {
    width: 31%; }
    @media screen and (max-width: 767px) {
      .widgets .column:last-child {
        width: 100%; } }
  .widgets .dayforecast {
    display: flex;
    border: 1px solid #CFD8DC;
    border-radius: 20px;
    margin: 1em auto;
    transition: all .5s ease; }
    .widgets .dayforecast:hover {
      transform: scale(1.02); }
    .widgets .dayforecast .widget-icon {
      width: 20%;
      padding: 1em;
      color: #7D68E9; }
    .widgets .dayforecast .widget-description {
      width: 40%;
      display: flex;
      flex-direction: column;
      align-self: center; }
      .widgets .dayforecast .widget-description .widget-day {
        font-weight: 700; }
      .widgets .dayforecast .widget-description .widget-info {
        color: #CFD8DC; }
    .widgets .dayforecast .widget-temperatura {
      width: 40%;
      background: #DCE8F4;
      border: 2px solid #DCE8F4;
      border-radius: 15px;
      font-size: 1.3em;
      display: flex;
      justify-content: center;
      align-items: center;
      font-family: 'Oswald', sans-serif;
      transition: all .5s ease; }
      .widgets .dayforecast .widget-temperatura:hover {
        background: #7D68E9;
        color: #fff;
        border: 2px solid #7D68E9; }
  .widgets .places {
    background-size: cover;
    background-position: bottom center;
    border-radius: 2em;
    height: -webkit-fill-available;
    opacity: 0.87;
    padding: 1em;
    display: flex;
    color: #fff;
    cursor: pointer;
    transition: all .5s ease; }
    @media screen and (max-width: 767px) {
      .widgets .places {
        height: 150px; } }
    .widgets .places:hover {
      transform: scale(1.02); }
    .widgets .places h4 {
      width: 50%;
      font-weight: 500;
      margin: 0 0 0 10px; }
  .widgets .placetovisit {
    background: url("../img/singapore.jpg"); }
  .widgets .others {
    row-gap: 2em;
    margin: 1em 0;
    /* Art Museum Widget */
    /* Place with link*/ }
    .widgets .others .row {
      align-items: center;
      color: #CFD8DC; }
      .widgets .others .row h3 {
        font-size: 1em;
        margin: 0 10px; }
      .widgets .others .row .image-review {
        width: 30px;
        height: 30px;
        margin-right: -7px;
        border: 2px solid #fff;
        border-radius: 10px; }
      .widgets .others .row .more-reviews {
        background: rgba(125, 104, 233, 0.75);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: 3px; }
    .widgets .others .place {
      background: url("../img/art-museum.jpg");
      height: 150px; }
    .widgets .others .placewithlink {
      background: url("../img/fountain.jpg"); }
  .widgets .cities {
    margin: -120px 35px 0 0;
    z-index: 15; }
    @media screen and (max-width: 767px) {
      .widgets .cities {
        margin: 0; } }
    .widgets .cities .card {
      width: 100%;
      background: #fff;
      border-radius: 1em;
      margin: 0.7em auto;
      overflow: hidden;
      transition: all .5s ease; }
      .widgets .cities .card:hover {
        transform: scale(1.02); }
      .widgets .cities .card .row {
        column-gap: 15px;
        align-items: center;
        justify-content: space-between; }
        @media screen and (max-width: 767px) {
          .widgets .cities .card .row {
            justify-content: unset; } }
        .widgets .cities .card .row .card-icon {
          background: #DCE8F4;
          border-radius: 1em;
          padding: 35px; }
          .widgets .cities .card .row .card-icon i {
            color: #7D68E9; }
        .widgets .cities .card .row .card-temperatura {
          width: 30%;
          font-family: 'Oswald', sans-serif;
          font-size: 2.6em;
          align-self: center;
          text-align: center; }
          @media screen and (max-width: 767px) {
            .widgets .cities .card .row .card-temperatura {
              width: unset; } }
          .widgets .cities .card .row .card-temperatura span {
            font-family: 'Roboto', sans-serif;
            font-size: 0.5em;
            font-weight: 300;
            position: relative;
            top: -0.7em; }
        .widgets .cities .card .row .card-lugar {
          width: 40%;
          font-weight: 700; }
          @media screen and (max-width: 767px) {
            .widgets .cities .card .row .card-lugar {
              width: unset; } }
        .widgets .cities .card .row .humidity, .widgets .cities .card .row .wind, .widgets .cities .card .row .velocity {
          width: 33.33%;
          text-align: center;
          color: #CFD8DC;
          margin: 10px auto; }

/*# sourceMappingURL=estilos.css.map */
