/* Global */
html, body {
  color: white;
  font-family: "Best Defence Black", Helvetica, Arial, Lucida, sans-serif !important;
  height: 100%;
}

button {
  background-color: transparent;
  border: 1px solid black;
  color: white;
  padding: 6px 60px;
  text-align: center;
  text-decoration: uppercase;
}

h1,
h2 {
  font-family: "Montserrat", Helvetica, Arial, Lucida, sans-serif;
}

.img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100%;
}

.col {
  padding: 50px 40px;
}

.section {
  padding: 40px;
  min-height: 320px;
  position: relative;
}

/* Navigation */

nav {
  align-items: center;
  background-color: rgb(63, 63, 63);
  display: flex;
  height: 72px;
  padding: 0px 16px;
  width: 100%;
}

/* Section 1 */
#section-1 .container {
  margin-top: 30px;
}

#section-1-bg-overlay {
  background-image: linear-gradient(
      rgba(72, 33, 122, 0.3) 0%,
      rgba(72, 33, 122, 0.3) 100%
    ),
    url("https://www.shieldassociate.com/wp-content/uploads/2023/01/Copy-of-Farrah-Shelly-Lead-Capture-Page.png");
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

#section-1 button {
  background-color: white;
  border-color: white;
  color: black;
  margin-top: 30px;
}

/* Section 2 */
#section-2-img {
  background-image: url("../img/section2-img.jpg");
  background-size: cover;
  left: 0;
  position: absolute;
  top: 0;
  z-index: 2;
}

#section-2 {
  background-color: #5900a1;
}

#section-2 .col:last-of-type {
  width: 50% !important;
}

/* Section 3 */
#section-3 {
  background-color: #f7f7f7 !important;
}

#section-3-img {
  background-image: url("../img/section3-img.png");
  background-size: contain;
}

#section-3 > * {
  color: black;
}

#section-3 .col:last-of-type {
  background-color: white;
}

#section-3 h2 {
  color: #5900a1 !important;
}

#section-3 form .row .col {
  display: flex;
  padding: 15px !important;
  justify-content: space-around;
}

#section-3 form input[name="first_name"],
#section-3 form input[name="last_name"] {
  flex-grow: inherit;
}

#section-3 button {
    background-color: #5900a1;
    border: none; 
    color: white !important;
    display: block;
    margin: auto;
    margin-top: 30px;
}

/* Section 4 */
#section-4 {
  background-color: rgb(89, 0, 161);
}

#section-4-img {
  background-image: url("../img/section4-img.png");
  background-position: center 15%;
  background-size: contain;
  margin: auto;
  max-width: 300px;
}

#section-4 > * {
  color: white !important;
}

#section-4 .row .item .text {
  display: flex;
  flex-direction: column;
}

#section-4 .icon {
  background-size: contain !important;
  height: 80px;
  margin-right: 15px;
  width: 80px;
}

#section-4 .row .item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin-bottom: 30px;
}

#section-4 .row .item:nth-of-type(1) .icon {
  background-image: url("https://www.shieldassociate.com/wp-content/uploads/2022/08/homebasedbusiness-img-2.png");
}

#section-4 .row .item:nth-of-type(2) .icon {
  background-image: url("https://www.shieldassociate.com/wp-content/uploads/2022/08/homebasedbusiness-img-3.png");
}

#section-4 .row .item:nth-of-type(3) .icon {
  background-image: url("https://www.shieldassociate.com/wp-content/uploads/2022/08/homebasedbusiness-img-4.png");
}

#section-4 .row .item:nth-of-type(4) .icon {
  background-image: url("https://www.shieldassociate.com/wp-content/uploads/2022/08/homebasedbusiness-img-5.png");
}

#section-4 .row .item .icon {
  display: none;
}

/* Section 5 */
#section-5 #menu ul {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  list-style: none;
}

#section-5 .Lorem {
  color: black;
  display: flex;
  justify-content: center;
  margin-top: 30px;
  text-align: center;
}

#section-5 #video_overlay {
  background-color: white;
  border-radius: 50%;
  cursor: pointer;
  height: 200px;
  left: 50%;
  position: absolute;
  top: calc(50% - 100px);
  transform: translateX(-50%) translateY(-50%);
  width: 200px;
}

#section-5 .arrow-right {
  width: 0;
  height: 0;
  border-top: 60px solid transparent;
  border-bottom: 60px solid transparent;
  border-left: 80px solid #363636;
  left: 56%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  position: relative;
  cursor: pointer;
}

#section-5 #video_overlay:hover .arrow-right {
  border-left: 80px solid black;
}

#section-5 ul {
  display: flex;
  justify-content: space-between;
}


@media (max-width: 767px) {
  #section-5 #video_overlay {
    height: 100px;
    left: 50%;
    top: calc(50% - 100px);
    transform: translateX(-50%) translateY(-50%);
    width: 100px;
  }

  #section-5 .arrow-right {
    border-top: 30px solid transparent;
    border-bottom: 30px solid transparent;
    border-left: 40px solid #363636;
  }
}

@media (max-width: 480px) {
  #section-2 .row .col:first-of-type,
  #section-3 .row .col:first-of-type {
    display: none;
  }

  #section-3 form .row .col {
    display: flex !important;
    flex-direction: column;
  }
}