body {
    background: #131313 url('../imgs/background-pattern.png') top center repeat;
    margin: 0;
    padding: 0;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}
.logo {
    margin: 60px 0 0 0;
}
.pt-icon {
    width: 172px;
    height:193px;
    margin: 80px auto;
}
.container {
    max-width: 1000px;
    margin: 0 auto;
}
h1 {
    color: var(--brand-color);
    font-weight: bold;
    font-size: 15px;
    text-transform: uppercase;
}
.products {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 150px;
}
.product-item {
    display: inline-block;
    width: 50%;
    text-align: center;
    margin: 20px 0;
}
.product-item_content {
    position: relative;
    padding-left: 20px;
    padding-right: 20px;
}

/* Underline From Center */
.hvr-underline-from-center {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: visible;
  }
  .hvr-underline-from-center:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 51%;
    right: 51%;
    bottom: -6px;
    background: var(--brand-color);
    height: 4px;
    -webkit-transition-property: left, right;
    transition-property: left, right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .hvr-underline-from-center:hover:before, .hvr-underline-from-center:focus:before, .hvr-underline-from-center:active:before {
    left: 0;
    right: 0;
  }
footer {
    color: #fff;
    font-weight: 400;
    font-size: 13px;
}
footer a {
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}
footer a:hover {
    color: var(--brand-color);
}

@media only screen and (max-width: 800px) {
    .products {
        display: block;
    }
    .product-item {
        display: block;
        width: 100%;
        margin: 40px 0;
    }
    .pt-icon {
        margin: 50px auto 50px auto;
    }
}