* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.sign-in-btn,
.how-to-articles ul li {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
body {
  margin: 0;
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
  overflow-y: auto;
  overflow-x: hidden;
}
.container {
  width: 1024px;
  margin: 0 auto;
}
header {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
  padding: 0 15px;
  box-shadow: 0 0 6px #00000026;
  background-color: #fff;
}
.logo {
  width: 150px;
}
.logo img {
  display: block;
  max-width: 100%;
}
.sign-in-btn {
  display: block;
  padding: 7px 15px;
  background: rgba(0, 183, 182, 0.7);
  color: #fff;
  border-radius: 4px;
}
.sign-in-btn:hover {
  text-decoration: none;
  background: rgba(0, 183, 182, 0.9);
}
.welcome-section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 380px;
  background: #5a42a5;
}
.welcome-section h2 {
  margin: 0;
  font-size: 62px;
  font-weight: 700;
  color: #ffffff;
}
.welcome-section h2 span {
  color: #00b3b3;
}
.help-links {
  display: flex;
  background: #f7f7f7;
  border-bottom: 1px solid #e3e3e3;
}

/* TILES */
.tiles-row {
  display: flex;
  flex-wrap: nowrap;
  border-bottom: 1px solid #e3e3e3;
}
.tiles-layout .tiles-row:last-child {
  border: none;
}
.tile {
  padding: 20px 0 0;
  background: transparent;
  transition-property: all;
  transition-duration: 170ms;
  text-align: center;
}
.tiles-layout .tiles-row:first-child .tile {
  padding: 20px 0 0;
}
.tiles-layout .tiles-row:last-child .tile-image {
  margin-top: 20px;
}
.tiles-layout .tiles-row:last-child .tile {
  padding: 0 0 20px;
  width: 25%;
}
.tile-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 20px 20px;
  border-right: 1px solid #e3e3e3;
}
.tiles-row .tile:last-child .tile-inner {
  border: none;
}
.tile:hover {
  background: #fff;
  border: transparent;
  -webkit-transform: scale(1.08);
  -moz-transform: scale(1.08);
  -ms-transform: scale(1.08);
  -o-transform: scale(1.08);
  transform: scale(1.08);
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.15);
  text-decoration: none;
}
.tile-image {
  width: 100px;
}
.tile-title {
  font-size: 20px;
  color: #1d1c1d;
}
.tile-description {
  font-size: 16px;
  line-height: 25px;
  color: #454245;
}

/* How To's */
.how-to-articles {
  padding: 30px 24px 50px;
}
.how-to-articles h4 {
  font-size: 20px;
}
.how-to-articles h4:before {
  content: '';
  display: inline-block;
  width: 27px;
  height: 25px;
  margin-right: 7px;
  background: url(https://encrypted-tbn0.gstatic.com/images?q=tbn%3AANd9GcQHNebwmOOYd3gmakee3FwESe7Kdvjy6-3l7b6gdoB8THZlnFY6&usqp=CAU)
    no-repeat;
  background-size: contain;
  vertical-align: bottom;
}
.how-to-articles ul {
  padding: 0 36px;
}
.how-to-articles ul li {
  flex: 1;
  padding-bottom: 12px;
}
.how-to-articles ul li:hover {
  color: #5a42a5;
}
.how-to-articles ul li:hover a {
  text-decoration: none;
}
.how-to-articles ul li:before {
  content: '';
  position: relative;
  top: -2px;
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 3px;
  border-radius: 50%;
  background: rgb(255, 73, 28);
  vertical-align: middle;
}

/* FOOTER */
.additional-links {
  display: flex;
  justify-content: space-between;
  padding: 80px 0;
}
.info-columns-wrapper {
  display: flex;
}
.info-column {
  margin: 0 40px;
  color: #696969;
}
.info-column-title {
  color: #454545;
}
.info-column ul li {
  margin-bottom: 10px;
  font-size: 13px;
}

.additional-info {
  padding: 25px 0;
  background: #eeeeee;
  color: #454545;
}
.additional-info ul {
  color: #454545;
}
.additional-info ul li {
  display: inline-block;
  margin: 0 10px;
}
.copyright {
  padding: 15px 0;
  background: #e5e3e5;
  font-size: 11px;
  color: #454545;
}
