:root {
    --main-bg: #121212;
    --default-color: #ffffff;
    --effect-color:#fcdd35;
    --border-color:#e91b15;
    --container-bg:#1e1e1e;
    --main-width:1200px;
    --gradient-a: #f7f7f7;
    --gradient-b: #f6f6f6;
}



*, *:after, *:before {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

*:focus {
    outline: none;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: "Lexend", sans-serif;

}

html {   
    background-color: #121212;
    color: #ffffff;
}


a {
    color:#000;
    text-decoration: none;
}

.page-wrap {
    max-width: var(--main-width);
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.page-logo {
    display: flex;
    justify-content: center;
    padding: 20px;
    position:relative;
}

.page-logo img {
    width:400px;
}

.products-list, .promo-products-list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.product-card {
    display: flex;
    flex-direction: column;
    background: var(--container-bg);
    padding: 20px;
    border-radius: 6px;
    color: var(--default-color);
    flex-basis: 32%;
    transition: background-color 0.5s, color 0.5s;
}

.promo-products-card {
    display: flex;  
    background: var(--container-bg);
    color: var(--default-color);
    width:100%;
    border-radius:6px;
    min-height:400px;
    height:100%;
}

#office-products-list {
    margin-bottom:30px;
}

#more-products {
    margin-bottom:30px;
    margin-top:30px;
}

#more-products-list  .promo-products-card {
    display: flex;  
    background: var(--container-bg);
    color: var(--default-color);
    width:100%;
    border-radius:6px;
    min-height:800px;
    height:100%;
}

.product-info {
    font-family:'Lexend-Light', sans-serif;
    text-align: center;
    margin-bottom: 30px;
}

.product-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

.product-description {
    font-size: 16px;
    font-weight: 300;
}

.product-image {
    text-align: center;
}

.product-img {
    max-width: 300px;
}

.button-default {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size:14px;
    cursor: pointer;
    transition: background-color 0.3s;
    border: none;
}

.button-default:hover {
    background-color: #555;
}

.product-details {
    padding-top: 60px;
    text-align: right;
}

.section-title {
    font-size: 28px;
    padding-left: 10px;
}

.product-info-box {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: stretch;
    width: var(--main-width);
    margin: 20px auto;
}

.product-more-box {
    flex-basis: 45%;
    background: var(--container-bg);
    padding: 20px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    transition: background-color 0.5s, color 0.5s;
    justify-content: space-between;
    
    color: #333;
}

.product-details-description {
    color:var(--default-color);
    font-family:'Lexend-Light', sans-serif;
    text-align: left;
    font-weight: 200;
    font-size: 18px;
    line-height: 26px;
    transition: color 0.5s;
}

.product-image-large {
    display:flex;
    flex-basis: 55%;
    border-radius: 6px;
}

.product-large-img {
    max-width: 700px;
    border-radius: 6px;
}

.custom_title {
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.custom_title_one {
    color: #fff;
    font-family: Tahoma;
    font-size: 70px;
    font-weight: bold;
    transition: color 0.5s, -webkit-text-stroke-color 0.5s;
}


.points-container {
    display:flex;
    flex-direction: row;
    gap:20px;
    justify-content:space-between;
} 

.points-container img {
    max-width:100%;
    width:100%;
    border-radius:6px;
}

.info-titles-container {
    display:flex;
    flex-direction:column;
    gap:20px; 
    justify-content:space-between; 
    text-align:center; 
}


.info-title {
    flex-basis: 33%;
    background: var(--container-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.5s, color 0.5s;
}

.info-title span {
    font-size: 24px;
}

html.dark-mode .info-title {
    background: #1e1e1e;
    color: #ffffff;
}

.section-video {
    display:flex;
    justify-content:center;
    padding-top:80px;
    max-width:100%;
    width:100%;
    margin:0 auto;
}

.section-video iframe {
    border-radius:12px;
}

@font-face {
    font-family: 'Lexend';
    font-style: normal;
    font-weight: 400;
    src: local('Lexend'),
         url('assets/fonts/Lexend-Regular.ttf') format('truetype');
}


@font-face {
    font-family: 'Lexend-Light';
    font-style: normal;
    font-weight: 100;
    src: local('Lexend'),
         url('assets/fonts/Lexend-Light.ttf') format('truetype');
}
