.box-kira {
    height: 100%;
}

.text-primary, a {
    rgba(100,100)
}
.products {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
}

h5 {
    font-weight: bold !important;
}
.product {
    padding: 5px;
    width: calc(100% / 3 - 20px);
    position: relative;
}
.product .prod-image {
    border-radius: 15px;
    border: 2px solid #000;
}
.product .prod-image img {
    width: 100%;
    height: auto;
    background-size: cover;
    background-position: center;
    border-radius: 13px;
    border: 5px solid #ffb142;

}

.product .prod-info {
    text-align: center;
    margin: 10px;

}

.product .prod-info .text-primary {
    font-weight: bold;
    letter-spacing: .05em;
}

.product .para {
    background: white url(../images/tech/tep.png) no-repeat center center;
}

.product .koza {
    background: white url(../images/tech/koza.png) no-repeat center center;
}

.product .info {
    background: white;
    cursor: pointer;
}

.product .stamp {
    position: absolute;
    width: 20%;
    aspect-ratio: 1;
    right: -5px;
    top: 0;
    background-size: calc(60%);
    border: 2px solid #000;
    border-radius: 50%;
}

#overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.overlay-content {
    margin: 30px;
    border-radius: 15px;
    background-color: #fdfdfd;
    flex-basis: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 50px;
}

.overlay-content p {
    margin: 5px 0;
}
#overlay .close {
    position: absolute;
    top: 30px;
    right: 15px;
    font-size: 30px;
    cursor: pointer;
    rotate: 45deg;
    color: #000;
    background-color: #fdfdfd;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: background-color 0.2s;
    z-index: 1000;
}

#overlay .close:hover {
    background-color: rgb(255, 177, 66);
}
.overlay-content h3 {
    margin-top: 20px;
}

.overlay-content h4 {
    margin: 20px 0;
}
.overlay-content ul {
    list-style: square outside none;
    padding: 15px;
}

.overlay-content ol {
    list-style: decimal outside none;
    padding: 15px;
}

.overlay-content ul ul {
    list-style: disc outside none;
    padding: 15px;
}

.overlay-content ul > li,
.overlay-content ol > li{
    padding: 5px;
    display: list-item;
}

.overlay-content ol > li{
    list-style-type: decimal;
}

p.rights {
    margin-top: 30px;
}
footer a {
    cursor: pointer;
}

.bigger {
    font-size: 20px;
}

.link {
    cursor: pointer;
}
.link:hover {
    color: rgb(255, 177, 66);
}

.link * {
    pointer-events: none;
}

.footer-classic {
    padding-top: 50px;
}

.brand-claim {
    font-size: 13px;
    text-align: left;
    color: #eee;
    text-transform: uppercase;
    text-shadow: rgba(0,0,0,5) 0 0 5px;
}

.embed {
    width: 120%;
    position: absolute;
    height: 100%;
    margin-left: -15%;
}

@media only screen and (max-width: 1200px) {
    .product {
        width: calc(100% / 3 - 20px);
    }
}
@media only screen and (max-width: 992px) {
    .product {
        width: calc(100% / 2 - 20px);
    }

    .overlay-content {
        margin: 20px;
        padding: 30px;
    }

    .brand-claim {
        display: none;
    }
}
@media only screen and (max-width: 575px) {
    .row.box-nina-wrapper .box-nina {
        width: 50%;
    }
}
@media only screen and (max-width: 480px) {
    .product {
        width: calc(100% / 2 - 20px);
    }

    .product h4 {
        font-size: 16px;
    }

    .product .prod-info > div {
        font-size: 13px;
    }

    .overlay-content {
        margin: 20px;
        padding: 20px;
    }
}