.front-row .contacts-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.front-row .front-title, .front-row .front-description{
    color: #fff;
}
@media (max-width: 768px) {
    .front-row .front-title, .front-row .front-description {
        text-align: center;
    }
    .front-row .front-description {
        max-width: 85%;
    }
}
.front-description {
    max-width: 45%;
    text-align: center;
}
figure {
    text-align: center;
}
figure img {
    max-width: 50%;
}
.socials-wrapper {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}
.catalog-link {
    padding: 15px 25px;
    background-color: #b06c3c;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 20px;
    transition: .3s;
}
.catalog-link:hover {
    background-color: #f3f3f3;
    color: #181818;
}
body {
    background-color: #181818;
    margin: 0;
    font-family: 'Montserrat';
}
a {
    color: #fff;
    text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
}
section {
    padding: 10px 0;
}
ul {
    width: 100%;
    display: flex;
    align-items: center;
    padding-inline-start: 0;
    list-style: none;
}
.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
#header {
    width: 100%;
    height: 140px;
    text-align: center;
    position: fixed;
    top: 0;
    overflow: hidden;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
#header .header-center{
    transition: .4s;
}
#header nav {
    position: absolute;
    bottom: 0;
    height: 70px;
    line-height: 70px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.1);
}
#header nav a {
    color: #fff;
    display: inline-block;
    padding: 10px 15px;
    line-height: 1;
    text-decoration: none;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    font-weight: 600;
    letter-spacing: 0.4px;
}

body.sticky-header {
    padding-top: 100px;
}
body.sticky-header #header {
    height: 50px;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 5;
}
body.sticky-header #header .header-center {
    -moz-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
}

/* Slideshow container */

#slider {
    margin-top: 160px;
    position: relative;
}
.slideshow-container {
    max-width: 1200px;
    position: relative;
    margin: auto;
}
#slider .slider-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 50px;
    z-index: 2;
}
#slider .slider-item img{
    border-radius: 6px;
}
#slider .slider-item .text{
    font-size: 40px;
    line-height: 1;
    position: absolute;
    bottom: 3px;
    color: #fff;
    font-weight: 800;
    width: 1160px;
    height: 100px;
    display: flex;
    align-items: center;
    backdrop-filter: blur(8px);
    border-radius: 6px;
    z-index: 1;
    padding-left: 40px;
}
/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 28px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}
.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    transition: 0.6s ease;
}

.dot.active, .dot:hover {
    background-color: rgba(0, 0, 0, 0.8);
    width: 30px;
    border-radius: 6px;
}

/* Fading animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .prev, .next,.text {font-size: 11px}
}

/* Products */
.product-cards {
    display: flex;
    gap: 25px 0;
    flex-wrap: wrap;
    justify-content: space-between;
}
.product-section-title {
    font-size: 32px;
    line-height: 40px;
    color: #fff;
    margin-top: 0;
}
.product-card {
    flex-basis: 32%;
    background-color: #ffffff1c;
    border-radius: 0 0 6px 6px;
    transition: .3s;
    cursor: pointer;
}
.product-card:hover {
    background-color: #b06c3c;
}
.product-img {
    border-radius: 6px 6px 0 0;
}
.product-info {
    padding: 0 15px
}
.product-title {
    color: #fff;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
}
.product-description {
    color: #fff;
}

/* Triggers */
.triggers-row {
    display: flex;
    padding: 50px 0;
    gap: 30px;
}
.triggers-row .trigger-item {
    padding: 20px;
    background-color: #ffffff1c;
    border-radius: 6px;
    transition: .3s;
    flex-basis: 33%;
}
.trigger-item:hover {
    background-color: #b06c3c;
}
.trigger-info {
    color: #fff;
}
.trigger-title {
    font-size: 18px;
}
.trigger-description {
    font-size: 14px;
    line-height: 18px;
}