h5 {
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: #72788899;
    letter-spacing: 2px;
    font-weight: bold;
    margin-bottom: 1em;
    text-align: center;
    margin-top: 1.5em;
}

h5s {
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    color: #72788899;
    letter-spacing: 2px;
    font-weight: bold;
    margin-bottom: 1em;
    text-align: left;
    margin-top: 1.5em;
}

p.ab-txt {
    width: 70%;
    margin-right: 6.5em;
    margin-left: 6.5em;
    margin-top: 3em;
}

.ab-column {
    background: var(--coffee-1c);
    color: var(--bg);
    padding: 2em;
    border-radius: 15px;
    width: 70%;
}

.rows {
    display: flex;
    gap: 2em;
    margin-top: 5em;
}


.codepen-btn,
.instagram-btn {
    padding: 6px 12px;
    border-radius: 18px;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    position: relative;
    transition: .3s;
}

.codepen-btn:hover,
.instagram-btn:hover {
    opacity: 0.8;
}

.instagram-btn {
    background: linear-gradient(270deg, rgb(251, 206, 255) 0%, rgb(255, 209, 209) 100%);
    color: rgba(208, 0, 166, 0.8);
}

.codepen-btn {
    background: linear-gradient(270deg, rgb(240, 214, 255) 0%, rgb(211, 205, 255) 100%);
    color: rgba(92, 27, 174, 0.8);
}

buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 3.5em;
}

.inka {
    display: block;
    border: 1px solid #72788899;
    color: #bbb;
    padding: 12px;
    text-align: left;
    border-radius: 12px;
    transition: .3s;
}

.inka:hover {
    border-color: #dddddd69;
}

.inka:after {
    content: "*";
    position: absolute;
    right: 10.7em;
    font-size: 20px;
    color: #bbbbbb3d;
}


pc {
    margin-top: 7em;
    margin-right: 19.5em;
    margin-left: 19.5em;
    display: flex;
    gap: 20px;
    justify-content: center;
    transition: .3s;
    height: 2em;
}

.pc-text {
    content: 'Manufacturers';
    display: none;
    opacity: 0.5;
    position: absolute;
}

pc:hover::before {
    filter: none;
    display: block;
    z-index: 400;
}

pc:hover {
    z-index: -400;
    color: white;
    content: "sd";
    filter: blur(8px);
}

pc img {
    width: 6em;
    height: 1em;
    opacity: 0.4;
}

.nav {
    height: 50px;
    width: 100%;
    background-color: #4d4d4d;
    position: relative;
}

.nav>.nav-header {
    display: inline;
}

.nav>.nav-header>.nav-title {
    display: inline-block;
    font-size: 22px;
    color: #fff;
    padding: 10px 10px 10px 10px;
}

.nav>.nav-btn {
    display: none;
}

.nav>.nav-links {
    display: inline;
    float: right;
    font-size: 18px;
}

.nav>.nav-links>a {
    display: inline-block;
    padding: 13px 10px 13px 10px;
    text-decoration: none;
    color: #efefef;
}

.nav>.nav-links>a:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

.nav>#nav-check {
    display: none;
}

@media (max-width:600px) {
    .nav>.nav-btn {
        display: inline-block;
        position: absolute;
        right: 0px;
        top: 0px;
    }

    .nav>.nav-btn>label {
        display: inline-block;
        width: 50px;
        height: 50px;
        padding: 13px;
    }

    .nav>.nav-btn>label:hover,
    .nav #nav-check:checked~.nav-btn>label {
        background-color: rgba(0, 0, 0, 0.3);
    }

    .nav>.nav-btn>label>span {
        display: block;
        width: 25px;
        height: 10px;
        border-top: 2px solid #eee;
    }

    .nav>.nav-links {
        position: absolute;
        display: block;
        width: 100%;
        background-color: #333;
        height: 0px;
        transition: all 0.3s ease-in;
        overflow-y: hidden;
        top: 50px;
        left: 0px;
    }

    .nav>.nav-links>a {
        display: block;
        width: 100%;
    }

    .nav>#nav-check:not(:checked)~.nav-links {
        height: 0px;
    }

    .nav>#nav-check:checked~.nav-links {
        height: calc(100vh - 50px);
        overflow-y: auto;
    }
}

body,
main {
    display: block;
}

.mobile {
    display: none;
}

@media only screen and (max-width: 1100px) {

    body,
    main {
        display: none;
    }

    body,
    .mobile {
        display: block;
        margin-top: 1em;
        margin-left: 1em;
        color: #eb7777;
    }
}