/* STYLE 12 */
.style12 .title-header h4{
    font-size: 40px;
    text-transform: capitalize;
    font-weight: 400;
}

.style12 .title-header h4 span{
    line-height: 1;
    font-size: 20px;
    font-weight: normal;
}

.style12 .nav.nav1 li,.style12 .nav.nav2 li,.style12 .nav.nav3 li{
    font-size: 18px;
    font-weight: 500;
}
.style12 .parts-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

.style12 .part {
    position: relative;
    /* overflow: hidden; */
    border-radius: 10px;
    height: fit-content;
}

.style12 .part img {
    object-fit: cover;
    width: 100%;
    height: 250px;
    max-height: 250px;
    border-radius: 10px 10px 10px 10px;
    position: relative;
    vertical-align: middle;
}

.style12 .part:hover .part-content {
    opacity: 1;

}

.style12 .part-content span {
    color: #FFCC00;
}

.style12 .part-shape {
    z-index: 100;
    position: absolute;
    top: -25px;
    right: -20px;
    background: url(../images/offer-shape-red.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 122px;
    height: 124px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
}

.style12 .part-shape div {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.style12 .part-shape small {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #fff;
    line-height: 1;
}

.style12 .part-shape p {
    font-size: 27px;
    font-weight: 900;
    color: #fff;
    margin: 0;
}

.style12 .part-content h4 {
    font-size: 40px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 50px;
}

.style12 .part-content h4 a:nth-child(1) {
    color: unset;
    text-decoration: none;
}

.style12 .part-content h4::first-letter {
    text-transform: capitalize;
}

.style12 .part-content p {
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
}

.style12 .part-content p::first-letter {
    text-transform: capitalize;
}

.style12 .part-content a {
    text-decoration: none;

}

.style12 .part-content a:nth-child(3) {
    text-transform: capitalize;
    padding: 15px 27px;
    text-align: center;
    border-radius: 30px;
    background: #e7272d;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border: 2px solid transparent;
    -webkit-transition: all .3s linear !important;
    transition: all .3s linear !important;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.style12 .part-content a:nth-child(3):hover {
    background: #fff;
    color: #e7272d;
    border-color: #e7272d;
}

.style12 .part-content {
    border-radius: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}