* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    font-family: "Rubik", sans-serif;
    line-height: 1;
    font-weight: 400;
    color: #555;
}

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

.grid {
    display: grid;
    row-gap: 9.6rem;
    column-gap: 6.4rem;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;

    position: relative;

    height: 9.6rem;
    padding: 0 4.8rem;
}

.logo-header {
    height: 5rem;
}

/* NAVIGATION */
.main-nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 3.2rem;
  }

  .main-nav-link:link,
  .main-nav-link:visited {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    font-size: 1.8rem;
    transition: all 0.3;

    display: inline-block;
  }

  .main-nav-link:hover,
  .main-nav-link:active {
    color: #f5821f;
  }

  .main-nav-link.nav-cta:link,
  .main-nav-link.nav-cta:visited {
    padding: 1.2rem 2.4rem;
    border-radius: 5px;
    color: #fff;
    background-color: #f5821f;
  }

  .main-nav-link.nav-cta:hover,
  .main-nav-link.nav-cta:active {
    background-color: #f5821f;
  }


/* HERO SECTION */
.section-hero {
    padding: 10rem 0 8rem 0;
}

.hero {
    max-width: 130rem;
    margin: 0 auto;
    padding: 0 3.2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9.6rem;
    align-items: center;
}

.hero-description {
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 4.8rem;
    color: #444;
}

.hero-description a {
  text-decoration: none;
  color: #444;
}

.hero-img {
    height: 40rem;
    width: 100%;
}

.trustpilot {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    margin-top: 8rem;
}

.trustpilot-imgs img {
    width: 12rem;
    margin-right: 0.5rem;
}

.trustpilot-text:link,
.trustpilot-text:visited {
    text-decoration: none;
    color: #767676;
    font-size: 1.8rem;
    font-weight: 600;
}

.trustpilot-text span {
    color: #02b679;
    font-weight: 700;
}

.margin-right-sm {
    margin-right: 1.6rem !important;
}

.heading-primary {
  font-weight: 700;
  color: #444;
  letter-spacing: -0.5px;
  font-size: 5.2rem;
  line-height: 1.05;
  margin-bottom: 3.2rem;
}

.btn,
.btn:link,
.btn:visited {
  text-decoration: none;
  font-size: 2rem;
  padding: 1.6rem 3.2rem;
  border-radius: 5px;
  font-weight: 600;

  border: none;
  cursor: pointer;

  display: inline-block;
  transition: all 0.3s;
}

.btn--full:link,
.btn--full:visited {
  background-color: #f5821f;
  color: #fff;
}

.btn--full:hover,
.btn--full:active {
  background-color: #f47101;
}

/* FOOTER */
.footer {
    padding: 12.8rem 0;
    border-top: 1px solid #eee;
}

.grid--footer {
    grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr;
}

.logo-col {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: block;
    margin-bottom: 3.2rem;
}

.social-links {
    list-style: none;
    display: flex;
    gap: 2.4rem;
}

.social-icon {
    height: 2.4rem;
    width: 2.4rem;
}

.copyright {
    font-size: 1.4rem;
    color: #767676;
    line-height: 1.6;
    margin-top: auto;
}

.footer-heading {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 4rem;
}

.contacts {
    font-style: normal;
    font-size: 1.6rem;
    line-height: 1.6;
}

.address {
    margin-bottom: 2.4rem;
}

.footer-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

.footer-link:link,
.footer-link:visited {
    text-decoration: none;
    font-size: 1.6rem;
    color: #767676;
    transition: all 0.3s;
}

.footer-link:hover,
.footer-link:active {
    color: #555;
}
