* {
    margin: 0;
    padding: 0;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    width: 100%; 
    overflow-x: hidden;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
    background: #eb0102;
    color: #ffffff;
    text-align: center;
    padding-top: 0px;
    transition: padding 0.5s ease, height 0.5s ease;
}

header.shrunk {
    padding-top: 0px;
}

.gtranslate_wrapper {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1000;
}

header img {
    max-width: 200px;
    height: auto;
    transition: max-width 0.5s ease;
}

header.shrunk img {
    max-width: 75px;
}

nav ul {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    background-color: #00B7EE;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 15px;       
    font-size: 22px;
    transition: color 0.5s ease;
}

@media (max-width: 1200px) {
    nav ul li a {
        font-size: 20px; /* medium */
    }
}

@media (max-width: 992px) {
    nav ul li a {
        font-size: 18px; /* small */
    }
}

@media (max-width: 768px) {
    nav ul li a {
        font-size: 16px; /* smaller */
    }
}

@media (max-width: 576px) {
    nav ul li a {
        font-size: 14px; /* smallest */
    }
}

nav ul li a:hover {
    color: #eb0102;
}

main {
    padding: 20px;
}

section {
    background: #ffffff;
    margin: 0;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    font-size: 22px;
}
section.visible {
    opacity: 1;
    transform: translateY(0);
}

footer {
    text-align: center;
    padding: 10px 0;
    background: #eb0102;
    color: #ffffff;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    display: inline;
    margin: 0 15px;
}

footer ul li a {
    color: #ffffff;
    text-decoration: none;
}

.carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 75vh; 
    width: 100%;
    margin: 0;
    overflow: hidden;
}

.carousel a {
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
}

.carousel img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    transform: translateX(100%);
    object-fit: contain; 
}

.carousel img.active {
    opacity: 1;
    transform: translateX(0); 
}

.carousel img.prev {
    opacity: 0;
    transform: translateX(-100%); 
}

.carousel img.next {
    opacity: 0;
    transform: translateX(100%); 
}

.carousel a img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    transform: translateX(100%);
    object-fit: contain; 
}

.carousel a img.active {
    opacity: 1;
    transform: translateX(0); 
}

.carousel a img.prev {
    opacity: 0;
    transform: translateX(-100%); 
}

.carousel a img.next {
    opacity: 0;
    transform: translateX(100%); 
}

.arrow {
    cursor: pointer;
    font-size: 5vw;
    color: #ffffff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    background: rgba(0, 0, 0, 0.5);
    padding: 2vh;
    border-radius: 50%;
}

#leftArrow {
    left: 3vw;
}

#rightArrow {
    right: 3vw;
}

.arrow:hover {
    background: rgba(0, 0, 0, 0.7);
}

.about {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5vh 2vw;
    margin: 5vh auto;
    object-fit: cover; 
}

.about img {
    width: 45vw;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.about .text {
    width: 90vw;
    padding-left: 2vw;
}

.about h2 {
    margin-bottom: 2vh;
}

.about p {
    line-height: 1.6;
    margin-bottom: 1vh;
    font-size: 18px; 
}

.certificate-container img {
  max-width: 50%;
  max-height: 50%;
  height: auto;
  width: auto;
  display: block;
  margin: 0 auto;
}


.products {
    margin: 5vh auto;
    align-items: center;
    justify-content: center;
}

.products h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2vh;
}

.products a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
}

.product-block {
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 2vh 2vw;
}

.product-block img {
    width: 100%;
    height: 100%;
}

.product-block h3 {
    margin: 2vh 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; 
}

.product-block p {
    margin: 2vh 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; 
}

button, .button {
    padding: 1vh 2vw;
    font-size: 24px;
    background-color: #00B7EE;
    color: #ffffff;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 2vh;
}

.button:hover {
    background-color: #009EC4;
}

.news {
    background-color: #ffffff;
    padding: 4vh 5vw;
    margin: 5vh auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.news h2 {
    text-align: center;
    color: #333;
    margin-bottom: 2vh;
}

.articles-list {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
}

.articles-list.open {
    opacity: 1;
    max-height: 10000px;
}

#toggleNews {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background-color: #00B7EE;
    color: white;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

#toggleNews:hover {
    background-color: #009EC4;
}



.news-article {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding: 3vh 0;
}

.news-article:last-child {
    border-bottom: none;
}

.news-picture {
    flex: 0 0 50%;
    padding-right: 20px;
}

.news-picture img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.article-text {
    flex: 1;
}

.article-headline {
    font-size: 22px;
    color: #00B7EE;
    margin-bottom: 1vh;
}

.article-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 1vh;
}

.article-content {
    font-size: 18px;
    line-height: 1.5;
}

.article-content a {
    color: #00B7EE;
    text-decoration: none;
}

.article-content a:hover {
    text-decoration: underline;
    color: #009EC4;
}

#contact {
    padding: 4vh 5vw;
    width: 100%;
    margin: 5vh auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

#contact * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

#contact h2 {
    text-align: center;
    margin-bottom: 2vh;
}

#contact .description {
    font-size: 18px;
    text-align: center;
    margin-bottom: 3vh;
}

#contact .contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2vh;
    margin-bottom: 3vh;
    margin-top: 3vh;
}

#contact .contact-info a {
    text-decoration: none;
    color: #00B7EE;
    font-size: 18px;
    transition: color 0.3s;
}

#contact .contact-info a:hover {
    color: #009EC4;
}

#contact .address {
    font-size: 18px;
    text-align: center;
    color: #555;
}

#c_static_722-1662552822489 {
    margin: 0 auto;
}

#myImg {
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}

/* Modal */

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: hidden;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    width: 80%;
    height: 80%;
    background-color: white;
    border: none;
    box-sizing: border-box;
}

#caption {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 24px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px;
    box-sizing: border-box;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.modal iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Individual product pages */

.product-container {
    margin: 0 auto;
    padding: 20px;
}

.product-overview {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.product-overview img {
    max-width: 50%;
    height: auto;
}

.overview-content {
    width: 50%;
    padding-left: 20px;
    font-size: 14px;
}

.overview-header {
    font-size: 1.5em;
    color: #00B7EE;
}

.overview-subheader {
    font-size: 1em;
    color: #555555;
}

.overview-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    margin-bottom: 20px;
}

.overview {
    margin-top: 20px;
}

.overview h2 {
    background-color: #00B7EE;
    font-size: 1em;
    padding: 5px;
    color: #ffffff;
}

.overview p {
    color: #555555;
}

.product-details {
    padding: 20px;
    border-radius: 8px;
}

.product-details img {
    display: block;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

.product-details table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.product-details table, .product-details th, .product-details td {
    border: 1px solid #ffffff;
}

.product-details th, .product-details td {
    padding: 10px;
    text-align: left;
}

.product-details th {
    background-color: #00B7EE;
    color: #ffffff;
}

.product-details tr {
    background-color: #dddddd;
}

/* Responsive Styles for Mobile (Phones) */
@media only screen and (max-width: 768px) {
    body {
        font-size: 12px;
    }

    header {
        padding-top: 10px;
    }

    header img {
        max-width: 80px;
    }

    nav ul li a {
        font-size: 14px;
    }

    main {
        padding: 15px;
    }

    section {
        font-size: 16px;
    }

    footer ul li a {
        font-size: 14px;
    }

    .carousel {
        height: 50vh;
    }

    .carousel img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .about {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about img {
        width: 70%;
        margin-bottom: 20px;
    }

    .about .text {
        width: 80%;
        padding-left: 0;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-block {
        padding: 1vh;
    }

    .news-article {
        flex-direction: column;
        align-items: center;
    }

    .news-picture {
        flex: 1;
        margin-bottom: 20px;
    }

    .article-headline {
        font-size: 16px;
    }

    .article-content {
        font-size: 14px;
    }

    #contact .description,
    #contact .address {
        font-size: 14px;
    }

    .modal-content {
        width: 80%;
        max-height: 80%;
    }
    
    .feedback-form {
        padding: 20px;
    }

    .feedback-form h2 {
        font-size: 22px;
    }

    button[type="submit"] {
        padding: 12px 30px;
        font-size: 14px;
    }

    .arrow {
        font-size: 6vw;
        padding: 2vh;
    }

    #leftArrow {
        left: 5vw;
    }

    #rightArrow {
        right: 5vw;
    }

    .modal-content {
        width: 90%;
        height: auto;
    }

    .modal iframe {
        width: 100%;
        height: 100%;
    }
    
    .product-overview {
        flex-direction: column;
        align-items: center;
    }

    .product-overview img {
        max-width: 70%;
        margin-bottom: 20px;
    }

    .overview-content {
        width: 80%;
        padding-left: 0;
    }

    .overview-header,
    .overview-subheader {
        font-size: 1em;
    }

    .overview-stats {
        grid-template-columns: 1fr;
    }

    .feedback-form input,
    .feedback-form textarea {
        padding: 12px;
        font-size: 12px;
    }

    .feedback-form button[type="submit"] {
        width: 100%;
        font-size: 14px;
    }

    .product-details table {
        width: 100%;
        margin-bottom: 20px;
    }

    .product-details th,
    .product-details td {
        padding: 8px;
    }

    .product-details th {
        font-size: 12px;
    }

    .product-details tr {
        background-color: #f0f0f0;
    }
}


.e_container-7 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 20px;
}

.cbox-7-1 p_item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.e_html-45 iframe {
  max-width: 100%;
  max-height: 100%;
  border: none;
}

.feedback-form {
    max-width: 600px;
    margin: 30px auto;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); 
    font-family: 'Arial', sans-serif;
}

.feedback-form h2 {
    text-align: center;
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
}

.feedback-form label {
    display: block;
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
}

.feedback-form input,
.feedback-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box; 
}

.feedback-form input:focus,
.feedback-form textarea:focus {
    outline: none;
}

.form-group {
    margin-bottom: 20px;
}

button[type="submit"] {
    color: white;
    padding: 15px 40px;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none; 
    display: inline-block;
    margin-top: 20px;
    width: 250px; 
    background-color: #00B7EE;
}

button[type="submit"]:hover {
    background-color: #009EC4;
}

