*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

/*
  0-600em ----------- phone
  600px - 900 --------tablet portrait
  900 - 1200 --------- tablet landscape
  1200 --- 1800px ------ desktop
  1800px ----- upward ------big desktop
*/
html {
  box-sizing: border-box;
  font-size: 62.5%; }
  @media only screen and (max-width: 75em) {
    html {
      font-size: 56.25%; } }
  @media only screen and (max-width: 56.25em) {
    html {
      font-size: 50%; } }

body {
  position: relative; }

.font {
  font-weight: 400; }

body {
  font-family: 'inter', sans-serif;
  font-weight: 400;
  color: #495057; }

.heading {
  font-family: 'Rubik', sans-serif;
  color: #071e33; }
  .heading--1 {
    font-size: 6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.9px; }
    @media only screen and (max-width: 65.625em) {
      .heading--1 {
        font-size: 5rem; } }
  .heading--2 {
    font-size: 4.5rem;
    font-weight: 600;
    text-transform: capitalize; }
    @media only screen and (max-width: 26.875em) {
      .heading--2 {
        font-size: 3.125rem; } }
  .heading--3 {
    font-size: 2rem;
    font-weight: 600; }

.body-copy {
  line-height: 1.5;
  font-weight: 400;
  color: #495057; }
  .body-copy--small {
    font-size: 1.6rem; }
    @media only screen and (max-width: 75em) {
      .body-copy--small {
        font-size: 1.777777777777778rem; } }
    @media only screen and (max-width: 56.25em) {
      .body-copy--small {
        font-size: 2rem; } }
  .body-copy--big {
    font-size: 1.8rem; }
    @media only screen and (max-width: 75em) {
      .body-copy--big {
        font-size: 2rem; } }
    @media only screen and (max-width: 56.25em) {
      .body-copy--big {
        font-size: 2.25rem; } }
  .body-copy--large {
    font-size: 2.2rem; }

.mg-t-sm {
  margin-top: 1rem; }

.mg-t-md {
  margin-top: 2rem; }

.mg-t-lg {
  margin-top: 3rem; }

.mg-t-xlg {
  margin-top: 4rem; }

.mg-t-xxlg {
  margin-top: 5rem; }

.mg-b-sm {
  margin-bottom: 1rem; }

.mg-b-md {
  margin-bottom: 2rem; }

.mg-b-lg {
  margin-bottom: 3rem; }

.mg-b-xlg {
  margin-bottom: 6rem; }
  @media only screen and (max-width: 37.5em) {
    .mg-b-xlg {
      margin-bottom: 4rem; } }

.text-c {
  text-align: center; }

.block {
  display: block; }

.bold {
  font-weight: 700; }

.light {
  font-weight: 400; }

.uppercase {
  text-transform: uppercase; }

.container {
  max-width: 120rem;
  margin: 0 auto; }

.hidden {
  display: none !important; }

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(89, 89, 89, 0.407);
  z-index: 110; }

.header.sticky {
  position: fixed;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.98); }

.btn, .btn:link, .btn:visited {
  display: inline-block;
  border: none;
  background-color: transparent;
  padding: 1.5rem 3.5rem;
  font-weight: 500;
  font-size: 1.8rem;
  font-family: 'inter', sans-serif;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s; }
  @media only screen and (max-width: 75em) {
    .btn, .btn:link, .btn:visited {
      font-size: 1.778rem; } }
  @media only screen and (max-width: 56.25em) {
    .btn, .btn:link, .btn:visited {
      font-size: 2rem; } }

.btn--fill {
  background-color: #2f74b3;
  color: #fff; }
  .btn--fill:hover {
    background-color: #165a9a; }

.btn__round--sm {
  border-radius: 5px; }

.btn__round--full {
  border-radius: 50rem; }

.btn--small {
  min-width: 15rem; }

.btn--text {
  padding: 0;
  color: #4683bc;
  transition: all 0.2s;
  text-decoration: none;
  padding-bottom: 1px;
  border-bottom: 2px solid transparent; }

.btn--outline {
  border: 2px solid #4683bc;
  background-color: transparent;
  transition: all 0.2s; }
  .btn--outline:hover {
    background-color: #4683bc;
    color: #fff; }

.destination-cards {
  display: grid;
  gap: 5rem 7rem;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr)); }

.destination-card {
  background-color: #fff;
  overflow: hidden;
  display: grid;
  gap: 1rem;
  cursor: pointer;
  box-shadow: 0 1px 1px 1px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
  border-radius: 0.5rem; }
  .destination-card:hover {
    box-shadow: 0 2px 2px 4px rgba(0, 0, 0, 0.02);
    transform: translateY(-0.2rem); }
  .destination-card__img {
    grid-row: 1 / 2;
    grid-column: 1 / -1;
    height: 25rem;
    width: 100%;
    object-fit: cover; }
  .destination-card__box-text {
    padding: 1.3rem;
    padding-top: 1rem;
    display: grid; }
  .destination-card__details {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .destination-card__btn {
    border-width: 1.5px;
    border-radius: 5px;
    padding: 0.7rem 2rem;
    font-weight: 700;
    color: #888; }
  .destination-card__icon-like {
    grid-row: 1 / 2;
    grid-column: 1 / -1;
    height: min-content;
    justify-self: end;
    margin: 0.8rem; }
    .destination-card__icon-like > * {
      color: #2f74b3;
      transition: all 0.2s; }
      .destination-card__icon-like > *:hover {
        color: #fff;
        transform: scale(1.1) rotate(10deg); }
  .destination-card__title {
    font-size: 1.9rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
    color: #495057; }
    @media only screen and (max-width: 75em) {
      .destination-card__title {
        font-size: 2.44rem; } }
    @media only screen and (max-width: 56.25em) {
      .destination-card__title {
        font-size: 2.75rem; } }
  .destination-card__location {
    font-size: 1.5rem;
    color: #888; }
    @media only screen and (max-width: 75em) {
      .destination-card__location {
        font-size: 1.67rem; } }
    @media only screen and (max-width: 56.25em) {
      .destination-card__location {
        font-size: 1.875rem; } }
  .destination-card__price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #4683bc;
    font-family: 'Rubik', sans-serif !important; }
  .destination-card__price-unit {
    color: #888;
    font-size: 1.4rem;
    font-weight: 500; }
    @media only screen and (max-width: 75em) {
      .destination-card__price-unit {
        font-size: 1.5556rem; } }
    @media only screen and (max-width: 56.25em) {
      .destination-card__price-unit {
        font-size: 1.75rem; } }
  .destination-card .dollar {
    color: #2f74b3; }

.form__container {
  font-family: 'inter', sans-serif;
  max-width: 50rem;
  max-width: max-content;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  box-shadow: 4px 4px 8px -8px rgba(0, 0, 0, 0.2); }
  @media only screen and (max-width: 45.625em) {
    .form__container {
      width: 100%; } }

.form--signup,
.form--login {
  background-color: #fff; }

.form--signup {
  display: none !important; }

.form__tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background-color: #e8f0f7; }

.form__tab--active {
  background-color: #2f74b3;
  color: #fff; }

.form--active {
  display: flex !important; }

.form-close {
  position: fixed;
  right: -4%;
  top: -2%;
  background-color: #4683bc;
  padding: 0.5rem;
  border-radius: 10rem;
  height: 3.3rem;
  width: 3.3rem;
  cursor: pointer;
  color: #fff; }

.form {
  padding: 2rem 5rem 5rem;
  display: none;
  flex-direction: column;
  gap: 2rem; }
  @media only screen and (max-width: 45.625em) {
    .form {
      padding: 2rem 3rem 3rem; } }
  .form__header {
    margin-bottom: 2rem; }
  .form__fields {
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 1rem; }
  .form__label {
    font-size: 1.6rem; }
  .form__input {
    align-self: stretch;
    font-size: 1.4rem;
    border: 2px solid #2f74b3;
    padding: 1.5rem 2.5rem;
    color: inherit;
    font-family: 'inter', sans-serif;
    border-radius: 5px; }
    .form__input:focus {
      border: 2px solid #4683bc;
      outline: none; }
  .form__btn {
    background-color: #4683bc;
    padding: 1.5rem 2.5rem;
    border-radius: 5px;
    color: #fff;
    transition: all 0.2s; }
    .form__btn:hover {
      background-color: #2f74b3; }
  .form__policy {
    display: flex;
    gap: 1.5rem; }
  .form__login {
    font-size: 1.6rem; }
  .form .important {
    display: inline-block;
    color: #4683bc;
    margin-left: 2px; }
  .form__links:link, .form__links:visited {
    font-size: 1.5rem;
    color: #495057;
    transition: all 0.2s; }
  .form__links:hover, .form__links:active {
    color: #4683bc;
    text-decoration: none; }
  .form__remembers {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 2rem; }
  .form__remember {
    display: flex;
    gap: 1rem; }

.logo, .logo:link, .logo:visited {
  font-family: 'Pacifico', cursive;
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-decoration: none;
  color: #2f74b3; }

.header {
  background-color: #e8f0f7;
  width: 100%;
  padding: 1rem 5rem;
  display: flex;
  align-items: center;
  gap: 7rem; }
  @media only screen and (max-width: 64.375em) {
    .header {
      justify-content: start;
      gap: 5rem; } }
  @media only screen and (max-width: 31.25em) {
    .header {
      padding: 1rem 2rem;
      gap: 3rem; } }
  @media only screen and (max-width: 23.125em) {
    .header {
      gap: 1.5rem; } }

.nav-menu {
  margin-left: auto; }
  @media only screen and (max-width: 64.375em) {
    .nav-menu {
      display: none; } }

.nav-menu-btn {
  color: #2f74b3;
  cursor: pointer;
  display: none; }
  @media only screen and (max-width: 64.375em) {
    .nav-menu-btn {
      display: block; } }
  @media only screen and (max-width: 23.125em) {
    .nav-menu-btn {
      margin: 0; } }

.nav__list {
  display: flex;
  align-items: center;
  gap: 4rem; }

.nav__items {
  list-style-type: none; }

.nav__link:link, .nav__link:visited {
  text-decoration: none;
  color: #495057;
  font-size: 1.8rem;
  transition: all 0.1s; }
  .nav__link:link:hover, .nav__link:visited:hover {
    color: #2f74b3; }

.nav .nav__icon {
  color: #495057; }

.nav__btn {
  align-self: center;
  border: 2px solid #2f74b3;
  padding: 1rem 1.5rem;
  transition: all 0.2s;
  display: grid;
  place-items: center; }
  .nav__btn:hover, .nav__btn:active {
    background-color: #2f74b3;
    cursor: pointer; }
    .nav__btn:hover .nav__link,
    .nav__btn:hover .nav__icon, .nav__btn:active .nav__link,
    .nav__btn:active .nav__icon {
      color: #fff; }
  .nav__btn-list {
    display: flex;
    align-items: center;
    gap: 2rem; }
  @media only screen and (max-width: 64.375em) {
    .nav__btn {
      margin-left: auto; } }

.nav__icon {
  font-size: 4rem; }

.cookie {
  font-family: 'inter', sans-serif;
  display: grid;
  grid-template-columns: 1fr max-content;
  gap: 3rem;
  justify-content: center;
  align-items: center;
  padding: 1rem 1.5rem;
  background-color: #4683bc;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%; }
  .cookie--message {
    color: #fff;
    transition: all 0.2s; }
  .cookie--btn {
    padding: 1rem 2.5rem;
    background-color: #fff;
    color: #495057;
    border-radius: 140rem;
    transition: all 0.2s; }
    @media only screen and (max-width: 39.8125em) {
      .cookie--btn {
        font-size: 1.6rem; } }
    .cookie--btn:hover {
      color: #fff;
      background-color: #2f74b3; }
  @media only screen and (max-width: 39.8125em) {
    .cookie {
      font-size: 1.6rem; } }

.reviews {
  display: grid;
  gap: 4rem 8rem;
  grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr)); }

.review {
  display: grid;
  gap: 3rem;
  padding: 2rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 1px 1px rgba(0, 0, 0, 0.04);
  transform: scale(1);
  transition: all 0.2s; }
  .review:hover {
    transform: scale(1.02);
    cursor: pointer; }
  .review-text {
    line-height: 1.7; }
  .review-img {
    height: 6rem;
    width: 6rem;
    object-fit: cover;
    border-radius: 50rem;
    border: 1px solid #2f74b3; }
  .review__user-details {
    display: flex;
    align-items: center;
    gap: 2rem; }
    @media only screen and (max-width: 25em) {
      .review__user-details {
        flex-direction: column; } }

.user-name {
  font-weight: 500;
  margin-bottom: 3px; }

.user-occupation {
  font-size: 1.4rem;
  color: #888; }
  @media only screen and (max-width: 75em) {
    .user-occupation {
      font-size: 1.56rem; } }
  @media only screen and (max-width: 56.25em) {
    .user-occupation {
      font-size: 1.75rem; } }

.footer {
  padding: 8rem 8rem 2rem;
  background-color: #e8f0f7; }
  @media only screen and (max-width: 37.5em) {
    .footer {
      padding: 2.3rem; } }
  @media only screen and (max-width: 59.375em) {
    .footer__logo {
      grid-column: 1 / -1;
      margin-bottom: 5rem; } }
  @media only screen and (max-width: 48.75em) {
    .footer__logo {
      grid-column: 1 / -1;
      margin-bottom: 4rem; } }
  @media only screen and (max-width: 30em) {
    .footer__logo {
      grid-column: 1 / -1;
      margin-bottom: 3rem; } }
  .footer-heading {
    font-weight: 500;
    margin-bottom: 3rem;
    font-size: 1.7rem;
    color: #071e33; }
    @media only screen and (max-width: 75em) {
      .footer-heading {
        font-size: 2.055555555555556rem; } }
    @media only screen and (max-width: 56.25em) {
      .footer-heading {
        font-size: 2.3125rem;
        margin-bottom: 4rem; } }
    @media only screen and (max-width: 37.5em) {
      .footer-heading > :not(:last-child) {
        margin-bottom: 3rem; } }
  .footer__text {
    font-size: 1.6rem;
    color: #444; }
    @media only screen and (max-width: 75em) {
      .footer__text {
        font-size: 1.78rem; } }
    @media only screen and (max-width: 56.25em) {
      .footer__text {
        font-size: 2rem; } }
  .footer-navs {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: 1fr 1fr 1fr 1fr 2fr;
    margin-bottom: 8rem; }
    @media only screen and (max-width: 48.75em) {
      .footer-navs {
        grid-template-columns: 1fr 1fr 1fr;
        row-gap: 5rem;
        column-gap: 2rem;
        margin-bottom: 3rem; } }
    @media only screen and (max-width: 37.5em) {
      .footer-navs {
        row-gap: 6rem; } }
    @media only screen and (max-width: 30em) {
      .footer-navs {
        grid-template-columns: 1fr 1fr;
        justify-content: center;
        margin-bottom: 4rem; } }
    @media only screen and (max-width: 22.5em) {
      .footer-navs {
        grid-template-columns: 1fr;
        margin-bottom: 3rem; } }
  @media only screen and (max-width: 59.375em) {
    .footer-address {
      grid-column: 4 / -1; } }
  @media only screen and (max-width: 48.75em) {
    .footer-address {
      grid-column: 1 / -1; } }
  .footer__list {
    list-style-type: none; }
    .footer__list > :not(:last-child) {
      margin-bottom: 3.2rem; }
    @media only screen and (max-width: 37.5em) {
      .footer__list > :not(:last-child) {
        margin-bottom: 3rem; } }
  .footer__link {
    text-decoration: none;
    color: #555;
    transition: all 0.4s; }
    .footer__link:hover, .footer__link:active {
      color: #333; }
  .footer-copyright {
    display: flex;
    gap: 3rem;
    flex-flow: row wrap; }
    @media only screen and (max-width: 33.125em) {
      .footer-copyright {
        flex-flow: column;
        gap: 1.5rem; } }

.address {
  font-style: normal; }

.copyright {
  margin-left: auto; }
  @media only screen and (max-width: 42.5625em) {
    .copyright {
      margin: 0; } }

.heros {
  background-color: #e8f0f7; }

.hero {
  min-height: 90vh;
  padding: 6rem;
  display: grid;
  grid-template-columns: 60rem min-content;
  justify-content: center;
  gap: 5rem;
  align-items: center; }
  @media only screen and (max-width: 74.375em) {
    .hero {
      justify-content: space-between; } }
  @media only screen and (max-width: 71.375em) {
    .hero {
      justify-content: center; } }
  @media only screen and (max-width: 65.625em) {
    .hero {
      grid-template-columns: 1fr;
      padding: 5rem 3rem; } }
  @media only screen and (max-width: 65.625em) {
    .hero-text__box {
      text-align: center; } }
  .hero__btn {
    justify-self: start; }
    @media only screen and (max-width: 65.625em) {
      .hero__btn {
        justify-self: center; } }
  .hero__text {
    font-size: 1.9rem;
    color: #495057; }
  .hero__texts {
    display: block; }
    @media only screen and (max-width: 30.1875em) {
      .hero__texts {
        display: inline; } }
  .hero__img {
    justify-self: center; }
  .hero-img {
    height: 45rem;
    transform: rotate(-2deg); }
    @media only screen and (max-width: 71.375em) {
      .hero-img {
        height: 38rem; } }
    @media only screen and (max-width: 27.375em) {
      .hero-img {
        height: 30rem; } }
    @media only screen and (max-width: 22.875em) {
      .hero-img {
        height: 25rem; } }
    @media only screen and (min-width: 87.5em) {
      .hero-img {
        height: 55rem; } }
  .hero-image--girl {
    height: 25rem;
    object-fit: cover; }
  .hero-image--dubia {
    grid-column: 1 / span 1; }
  .hero--up {
    height: auto;
    grid-column: 2 / -1;
    grid-row: 1 / 3;
    align-self: center; }

.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  min-width: 30vw;
  padding: 2.5rem;
  height: 100vh;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2.5rem; }
  .sidebar__logo {
    margin-bottom: 1.7rem; }
  .sidebar-container {
    display: flex;
    flex-direction: column;
    gap: 6rem; }
  @media only screen and (max-width: 37.5em) {
    .sidebar {
      min-width: 60vw; } }
  .sidebar-copyright {
    font-style: italic;
    color: #7b7b7b;
    margin-top: auto; }
  .sidebar-close {
    display: flex;
    justify-content: end; }
  .sidebar-close-icon {
    font-size: 5rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.35s; }
    .sidebar-close-icon:hover {
      background-color: #eee;
      border-radius: 150rem;
      color: #fff;
      font-weight: bolder; }
  .sidebar-heading {
    font-size: 3rem;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    margin-bottom: 1.5rem; }
  .sidebar__list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    list-style: none; }
  .sidebar__link {
    font-size: 2.55556rem;
    color: #495057;
    text-decoration: none;
    cursor: cell;
    transition: all 0.2s; }
    .sidebar__link:hover {
      color: #4683bc; }

.section {
  padding: 8rem 7rem; }
  @media only screen and (max-width: 37.5em) {
    .section {
      padding: 9rem 2.3rem; } }

.section-experience {
  display: grid;
  gap: 5rem;
  justify-content: center;
  align-items: center;
  grid-template-columns: 60rem 1fr; }
  @media only screen and (max-width: 71.875em) {
    .section-experience {
      grid-template-columns: 50rem 1fr; } }
  @media only screen and (max-width: 62.5em) {
    .section-experience {
      grid-template-columns: 45rem 1fr; } }
  @media only screen and (max-width: 59.375em) {
    .section-experience {
      grid-template-columns: 1fr; } }
  .section-experience__text-box > :first-child {
    color: #cecece; }
  .section-experience__text-box > p {
    line-height: 1.9; }
  .section-experience__details {
    display: grid;
    gap: 2rem;
    padding: 1rem; }
    @media only screen and (max-width: 59.375em) {
      .section-experience__details {
        grid-column: 1 / -1;
        grid-row: 1 / 2; } }
    @media only screen and (max-width: 37.5em) {
      .section-experience__details {
        padding: 0; } }
  .section-experience__img {
    justify-self: center; }
  .section-experience .experience-img {
    height: 50rem; }
    @media only screen and (max-width: 71.875em) {
      .section-experience .experience-img {
        height: 40rem; } }
    @media only screen and (max-width: 62.5em) {
      .section-experience .experience-img {
        height: 35rem; } }
    @media only screen and (max-width: 59.375em) {
      .section-experience .experience-img {
        height: 50rem; } }
    @media only screen and (max-width: 31.25em) {
      .section-experience .experience-img {
        height: 40rem; } }
    @media only screen and (max-width: 31.25em) {
      .section-experience .experience-img {
        height: 35rem; } }

.ratings {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(5rem, 1fr)); }
  @media only screen and (max-width: 47.5em) {
    .ratings {
      grid-template-columns: 1fr;
      max-width: 45rem;
      margin: 0 auto; } }
  .ratings .rating--number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #4683bc;
    justify-content: center; }
  .ratings .rating--text {
    text-align: center; }
  .ratings-box {
    padding: 2rem 1.5rem;
    border-radius: 0.8rem;
    cursor: pointer;
    display: grid;
    gap: 1rem;
    place-items: center;
    transition: all 0.2s; }
    @media only screen and (max-width: 59.375em) {
      .ratings-box {
        grid-template-columns: repeat(2, auto); } }
    @media only screen and (max-width: 33.125em) {
      .ratings-box {
        grid-template-columns: auto; } }
    .ratings-box:hover {
      box-shadow: 0 1px 1px 1px rgba(0, 97, 223, 0.253); }

.section-us__details {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 4rem 6rem; }
  @media only screen and (max-width: 37.5em) {
    .section-us__details {
      row-gap: 5rem; } }

.section-us__box {
  display: grid; }

.section-us__icon {
  margin-bottom: 3rem;
  background-color: #e8f0f7;
  justify-self: start;
  padding: 1rem;
  border-radius: 150rem; }
  .section-us__icon > * {
    font-size: 4rem !important; }
    @media only screen and (max-width: 56.25em) {
      .section-us__icon > * {
        font-size: 5rem !important; } }

.section-us__text {
  grid-column: 2 / -1;
  line-height: 1.6; }

.section-us__heading {
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-bottom: 1.3rem; }

.section-destination {
  background-color: #e8f0f7;
  position: relative; }

.section-blogs {
  background-color: #fff;
  position: relative; }

.section-blog {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7rem; }
  @media only screen and (max-width: 45.625em) {
    .section-blog {
      grid-template-columns: 1fr;
      gap: 6rem; } }

.blog {
  display: grid;
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 4px 4px rgba(0, 0, 0, 0.04);
  transition: all 0.1s; }
  .blog:hover {
    box-shadow: 0 4px 22px 3px rgba(0, 0, 0, 0.05); }
    .blog:hover .blog__btn {
      border-bottom: 2px solid #4683bc; }
  .blog__heading {
    font-size: 2.5rem; }
  .blog__btn {
    justify-self: start;
    display: flex;
    gap: 0.5rem;
    text-decoration: none;
    font-style: normal;
    transition: all 0.5s; }
  .blog__img {
    object-fit: cover;
    height: 30rem;
    width: 100%;
    grid-row: 1 / 2;
    grid-column: 1 / -1; }
  .blog__text-details {
    padding: 1.5rem;
    padding-top: 1rem; }
  .blog__view {
    display: flex;
    gap: 1rem;
    justify-self: end;
    align-self: start;
    align-items: center;
    grid-column: 1 / -1;
    grid-row: 1 / 2;
    margin: 1rem;
    padding: 0.5rem;
    border-radius: 50rem;
    background-color: rgba(70, 131, 188, 0.2); }
    .blog__view--views {
      font-weight: 500; }

.section-reviews {
  background-color: #e8f0f7; }

.icon--small {
  font-size: 3rem; }

.icon--big {
  font-size: 4rem; }

.icon--large {
  font-size: 5rem; }

.icon--top {
  position: absolute;
  height: 7rem;
  width: 7rem;
  opacity: 0.2;
  margin: 2rem;
  z-index: -1;
  top: 0;
  left: 0;
  transform: rotate(330deg); }

.icon--bottom {
  position: absolute;
  height: 7rem;
  width: 7rem;
  opacity: 0.2;
  margin: 2rem;
  z-index: -1;
  bottom: 0;
  right: 0;
  transform: rotate(30deg); }

.icon--visible {
  z-index: 1; }
