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

html {
    font-family: Arial, Helvetica, sans-serif;
}

h1, h2, h3, h4, h5, h6, p, span, a, li {
    color: black;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 40px;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 28px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 10px;
}

p, span {
    font-size: 18px;
}

.container {
    max-width: 1180px;
    padding-left: 24px;
    padding-right: 24px;
    margin: 0 auto;
}

hr.dashed {
    width: 70%;
    border-top: 1px solid rgb(228, 228, 228);
    margin: 0 auto;
}

/* Header */

.header__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.header__logo {
    width: 60px;
    height: 60px;
    margin-right: 14px;
}

.header__title-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.header__title {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.header__title > h2 {
    font-size: 28px;
}

.header__title > p {
    font-size: 16px;
    color: rgb(95, 95, 95);
}

.header__nav > ul {
    list-style-type: none;
    display: flex;
}

.header__nav > ul > li > a {
    text-decoration: none;
    color: rgb(0, 110, 255);
}

.header__nav > ul > li:not(:last-child) {
    margin-right: 16px;
}

/* Intro */

.intro {
    display: flex;
    height: calc(100vh - 92px);
    align-items: center;
}

.intro__wrapper > h1 {
    margin-bottom: 12px;
    max-width: 650px;
}

.intro__wrapper > div > a {
    display: inline-block;
    font-size: 18px;
    color: rgb(0, 110, 255);
    text-decoration: none;

    padding: 8px 52px;
    border: 1px solid rgb(0, 110, 255);
    /* background-color: black; */
    border-radius: 30px;
}

/* Products */

.products {
    padding-bottom: 80px;
}

.products__heading {
    margin-bottom: 52px;
}

.products__card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    min-height: 300px;
    padding: 20px;
    -webkit-box-shadow: 0px 0px 25px -6px rgba(34, 60, 80, 0.25); 
    -moz-box-shadow: 0px 0px 25px -6px rgba(34, 60, 80, 0.25); 
    box-shadow: 0px 0px 25px -6px rgba(34, 60, 80, 0.25);
}

.products__card-img {
    max-width: 410px;
    height: auto;
}

.products__card .products__card-img > img {
    width: 100%;
}

.product__card-meta > h3 {
    margin-bottom: 12px;
}

.product__card-meta > p {
    margin-bottom: 18px;
}

.product__card-meta > a {
    text-decoration: none;
    display: inline-block;
    padding: 6px 28px;
    color: rgb(0, 110, 255);
    border: 1px solid rgb(0, 110, 255);
    border-radius: 20px;
}

.products__card-number {
    position: absolute;
    top: -15px;
    left: -15px;

    width: 60px;
    height: 60px;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 32px;
    color: white;
    /* padding: 40px; */
    border-radius: 100%;
    background-color: black;
}

.products__card:not(:last-child) {
    /* margin-right: 32px; */
    margin-bottom: 80px;
}

/* Footer */

.footer {
    min-height: 150px;
    background-color: black;
    padding: 24px 0;
}

.footer__wrapper {
    min-height: 150px;
    display: grid;
    gap: 14px;
    grid-template-columns: .35fr 1fr .35fr .5fr;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.footer__copyright {
    font-size: 14px;
    color: rgb(177, 177, 177);
    text-align: center;
}

.footer__info {
    list-style-type: none;
}

.footer__logo {
    width: 65px;
    height: auto;
    opacity: 80%;
}

.footer__info > li {
    font-size: 12px;
    color: rgb(177, 177, 177);
    margin-bottom: 6px;
}

.footer__info > li > a {
    text-decoration: none;
    font-size: 14px;
    color: rgb(177, 177, 177);
    margin-bottom: 6px;
}


/* WPPCT PAGE */

.about-product__intro {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 24px;
    height: calc(100vh - 92px);
    align-items: center;
    justify-content: center;
}

.about-product__intro > img {
    width: 100%;
}

.about-product__intro-wrapper > h1 {
    font-size: 32px;
    margin-bottom: 18px;
}

.about-product__info {
    padding: 60px 0;
}

.about-product__info-section {
    display: grid;
    gap: 28px;
    align-items: center;
}

.about-product__info-section.left {
    grid-template-columns: 1fr .8fr;
}

.about-product__info-section.right {
    grid-template-columns: .8fr 1fr;
}

.about-product__info > h2 {
    font-size: 28px;
    margin-bottom: 28px;
}

.about-product__info-section > img {
    width: 100%;
}

.about-product__info-section > ul {
    text-decoration: none;
    list-style-position: inside;
}

.about-product__info-section > ol {
    text-decoration: none;
    list-style-position: inside;
}

.about-product__info-section > ul > li {
    font-size: 18px;
    margin-bottom: 6px;
}

.about-product__info-section > ol > li {
    font-size: 18px;
    margin-bottom: 6px;
}

.about-product__docks {
    padding: 60px 0;
}

.about-product__docks > h2 {
    text-align: center;
    margin-bottom: 42px;
}

.about-product__docks-wrapper {
    display: flex;
    justify-content: space-around;
}

.about-product__docks-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    min-width: 200px;
    max-width: 300px;
}

.about-product__docks-card > img {
    width: 75px;
    opacity: 75%;
    margin-bottom: 12px;
}

.about-product__docks-card > p {
    font-size: 14px;
    text-align: center;
    margin-bottom: 16px;
}

.about-product__docks-card > a {
    text-decoration: none;
    display: inline-block;
    padding: 4px 14px;
    color: rgb(0, 110, 255);
    border: 1px solid rgb(0, 110, 255);
    border-radius: 20px;
}

/* Products Page */

.products-page {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 92px);
    padding: 48px 0;
}