.offer-section-head {
    height: 100vh;
    background-image: url('/wp-content/themes/holtech/assets/images/offer-bg.jpg');
    display: flex;
    align-items: center;
    background-position: center;
}
.offer-head-box {
    margin: 0 auto;
    max-width: 500px;
    text-align: center;
    border: 5px solid transparent;
    background: white;
    padding: 25px;
    border-image: linear-gradient(to top right, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
    border-image-slice: 1;
}
.offer-head-box>h1 {
    font-weight: 800;
    margin-bottom: 25px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e3e3e3;
    color: #1d2327;
}
.offer-head-box>p {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 50px;
    color: #1d2327;
}
.offer-head-box>button {
    transition: 0.2s;
    width: 250px;
    background: #1d2327;
    padding: 25px;
    margin: 0 auto;
    color: white;
    font-weight: bold;
    font-size: 18px;
    border: none;
}
.offer-head-box>button:hover {
    transition: 0.2s;
    text-decoration: none;
    background-color: #13171a;
}
.offer-catalog-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-bottom: 100px;
}
.catalog-title {
    margin-top: 25px;
    margin-bottom: 25px;
    font-weight: 600;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    font-size: 44px;
    border-bottom: 1px solid white;
    padding-bottom: 25px;
}
.offer-end-section {
    display: flex;
    align-items: center;
    min-height: 250px;
    background: #2e2e2e;
    padding-top: 50px;
    padding-bottom: 50px;
}
.offer-end {
    text-align: center;
}
.offer-end>h2 {
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    margin-bottom: 0;
}
.offer-end>hr {
    background: white;
    width: 100px;
    margin-top: 25px;
    margin-bottom: 25px;
}
.offer-end>a {
    display: block;
    padding: 25px;
    background: transparent;
    max-width: 250px;
    margin: 0 auto;
    border: 3px solid white;
    color: white;
    position: relative;
}
.offer-end>a:hover {
    transition: 0.3s;
    text-decoration: none;
    color: #1d2327;
}
.offer-end>a>h2 {
    position: relative;
    font-size: 18px;
    font-weight: 500;
	transition: .3s ease-out;
    margin-bottom: 0;
    padding: 0;
}
.offer-end-hover-animation:before {
    position: absolute; 
    left: 0;
    bottom: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: white;
    color: #1d2327;
    transform-origin: 0 bottom 0;
    transform: scaleY(0);
    transition: .3s ease-out;
    z-index: 0;
}
.offer-end-hover-animation:hover:before {
    transform: scaleY(1);
}
.tabs {
    padding: 0;
    list-style: none;
}
.tabs>li {
    text-align: center;
}
.tabs>li>a {
    transition: 0.2s;
    color: #1d2327;
    font-size: 18px;
    padding: 25px;
    text-align: center;
    display: block;
    background: white;
    width: 100%;
    border-bottom: 1px solid #1d2327; 
}
.tabs>li>a:hover {
    transition: 0.2s;
    text-decoration: none;
    background-color: #1d2327;
    color: white;
    font-weight: bold;
}
.tabs>li>a.active {
    color: white;
    background: #1d2327;
    font-weight: bold;
}
.product-card {
    transition: 0.2s;
    margin-bottom: 30px;
    border: 3px solid white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    z-index: 0;
}
.product-card:hover {
    position: relative;
    transition: 0.2s;
    z-index: 100;
    transform: scale(1.4);
    -webkit-transform: scale(1.4);
    -moz-transform: scale(1.4);
    -ms-transform: scale(1.4);
    -o-transform: scale(1.4);
    border-color: transparent;
    border-image: linear-gradient(to top right, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
    border-image-slice: 1;
}
.product-card-image {
    width: 100%;
}
