* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: sans-serif;
  line-height: 1;
  font-weight: 900;
  color: #555;
}
.navbar-brand {
  color: red !important;
}
.nav-link:link,
.nav-link:visited {
  display: inline-block;
  color: red !important;
  text-decoration: none;
  border-bottom: 1px solid;
  padding-bottom: 2px;
  transition: all 0.3s;
}
.nav-link:hover,
.nav-link:active {
  color: orange !important;
  border-bottom: 1px solid transparent;
}
.section-hero {
  background-color: black;
  padding: 4.8rem 0 9.6rem 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.6;
  margin-bottom: 4.8rem;
}

.hero-img {
  width: 100%;
}

.delivered-text span {
  color: #cf711f;
  font-weight: 700;
}
.hero-img {
  border-radius: 20%;
}
.btn--full {
  display: inline-block;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 20px 20px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s;
  background-color: orangered;
}
.btn--full:hover {
  display: inline-block;
  color: red;
  text-decoration: none;
  border-bottom: 1px solid;
  padding-bottom: 2px;
}
.btn--outline {
  display: inline-block;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 20px 20px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s;
  background-color: orangered;
}
.btn--outline:hover {
  display: inline-block;
  color: red;
  text-decoration: none;
  border-bottom: 1px solid;
  padding-bottom: 2px;
}
.sec,
.imgg {
  background-color: black;
  color: red;
}
.delete-btn {
  float: right;
  background-color: red;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.delete-btn:hover {
  background-color: darkred;
}
.footer {
  padding: 12.8rem 0;
  border-top: 1px solid white;
  background-color: black;
  color: red;
}
.grid--footer {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1fr;
  gap: 3.2rem;
}

.logo-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: block;
  margin-bottom: 3.2rem;
}
.logo {
  height: 70px;
  width: 70px;
}
.social-links {
  list-style: none;
  display: flex;
  gap: 2.4rem;
}
.social-icon {
  height: 2.4rem;
  width: 2.4rem;
  color: red;
}
.copyright {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-top: auto;
  color: #aaa;
}
.footer-heading {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: orange;
}
.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: 1.6rem;
}
.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: red;
  transition: all 0.3s;
}
.footer-link:hover,
.footer-link:active {
  color: orange;
}
.section-cta {
  padding: 4.8rem 0 12.8rem;
  background-color: black;
}
.cta {
  display: grid;
  grid-template-columns: 2fr 1fr;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.4);
  border-radius: 11px;
  background-image: linear-gradient(to right bottom, orange, red);
  overflow: hidden;
}
.cta-text-box {
  padding: 4.8rem 6.4rem 6.4rem 6.4rem;
  color: white;
}
.cta .heading-secondary {
  color: orangered;
  margin-bottom: 3.2rem;
}
.cta-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 4.8rem;
  color: rgb(214, 214, 214);
}
.cta-img-box {
  background-image: linear-gradient(
      to right bottom,
      rgba(255, 69, 0, 0.35),
      rgba(255, 0, 0, 0.35)
    ),
    url("../img/ivan-shilov-i9Z0wXCFmpU-unsplash.jpg");
  background-size: cover;
  background-position: center;
}
.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.2rem;
  row-gap: 2.4rem;
}
.cta-form label {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
  color: orangered;
}
.cta-form input,
.cta-form select {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.8rem;
  font-family: inherit;
  color: wheat;
  border: none;
  background-color: rgb(44, 44, 44);
  border-radius: 9px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.cta-form input::placeholder {
  color: rgb(160, 160, 160);
}
.cta *:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(255, 69, 0, 0.5);
}
.btn--form {
  display: inline-block;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 20px 20px;
  border-radius: 9px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s;
  background-color: red;
}
.cta-form label {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
  color: rgb(182, 182, 182);
}
