@font-face {
    font-family: 'Titillium';
    font-style: normal;
    font-weight: 100;
    src:  url('../assets/fonts/Titillium/Titillium-Thin.otf') format('opentype');
}

@font-face {
    font-family: 'Titillium';
    font-style: italic;
    font-weight: 100;
    src:  url('../assets/fonts/Titillium/Titillium-ThinItalic.otf') format('opentype');
}

@font-face {
    font-family: 'Titillium';
    font-style: normal;
    font-weight: 300;
    src:  url('../assets/fonts/Titillium/Titillium-Light.otf') format('opentype');
}

@font-face {
    font-family: 'Titillium';
    font-style: italic;
    font-weight: 300;
    src:  url('../assets/fonts/Titillium/Titillium-LightItalic.otf') format('opentype');
}

@font-face {
    font-family: 'Titillium';
    font-style: normal;
    font-weight: 400;
    src:  url('../assets/fonts/Titillium/Titillium-Regular.otf') format('opentype');
}

@font-face {
    font-family: 'Titillium';
    font-style: italic;
    font-weight: 400;
    src:  url('../assets/fonts/Titillium/Titillium-RegularItalic.otf') format('opentype');
}

@font-face {
    font-family: 'Titillium';
    font-style: normal;
    font-weight: 600;
    src:  url('../assets/fonts/Titillium/Titillium-Semibold.otf') format('opentype');
}

@font-face {
    font-family: 'Titillium';
    font-style: italic;
    font-weight: 600;
    src:  url('../assets/fonts/Titillium/Titillium-SemiboldItalic.otf') format('opentype');
}

@font-face {
    font-family: 'Titillium';
    font-style: normal;
    font-weight: 700;
    src:  url('../assets/fonts/Titillium/Titillium-Bold.otf') format('opentype');
}

@font-face {
    font-family: 'Titillium';
    font-style: italic;
    font-weight: 700;
    src:  url('../assets/fonts/Titillium/Titillium-BoldItalic.otf') format('opentype');
}

html, body {
    margin:0;
    padding:0;
    font-family: 'Titillium';
}

.header {
    position:relative;
    height:200px;
}

.eit_logo-wrapper {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:140px;
    background:linear-gradient(90deg, #034EA2 0%, #CD154F 100%);
}

.eit_logo {
    height:140px;
    display:block;
    margin-left:auto;
    margin-right:auto;
}

.sus4-wrapper {
    margin-top: 140px;
    padding-top:20px;
    padding-left: 20px;
    height:220px;
    background: linear-gradient(90deg, #034EA2 0%, #CD154F 100%);
}

.logo {
    color:white;
    display:flex;
    align-items: center;
    text-decoration: none;
}

.sus4-name {
    margin:0;
    margin-left:2%;
    font-size:2.5rem;
}

.sus4-logo {
    height:170px;
}

.main {
    min-height:800px;
    padding:1%;
}

.main p, .main li {
    font-size:1.2rem;
    line-height:30px;
}
.tabs {
    display: flex;
    justify-content: space-evenly; /* Ensures even spacing */
    align-items: center;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    gap: 0.5rem; /* Provides spacing between buttons */
    padding: 1rem 0;
}

.tablinks {
    font-family: inherit;
    border-radius: 10px;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    border: 1px solid #ccc; /* Subtle border */
    color: #333;
    background: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    flex-grow: 1; /* Ensures equal button widths within the flex container */
    text-align: center;
    min-width: 120px; /* Ensures buttons don’t shrink too much */
}

.tablinks:hover, .tablinks.active {
    background: #f5f5f5; /* Subtle hover effect */
    color: #000;
    border-color: #aaa;
}

/* Styles for the image list */
.image-list {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: space-between; /* Space out the list items evenly */
}

.image-list .list-item {
    display: flex;
    flex-direction: column; /* Arrange the elements vertically */
    align-items: center; /* Center the items */
    text-align: center; /* Center the text */
    width: 30%; /* Set the width of each column */
    padding: 10px;
}

.image-list .short-text {
    margin-bottom: 10px; /* Space between short text and image */
}

.image-list .list-image {
    margin-bottom: 10px; /* Space between image and long text */
    width: 200px; /* Adjust image size */
    height: 150px;
}

.image-list .long-text {
    font-size: 14px; /* Adjust text size */
    color: #555; /* Adjust text color */
}
/* Thin space container */
.thin-space {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal sections */
    width: 100%; /* Match grid width */
    height: 30px; /* Adjust height as needed */
    margin-bottom: 10px; /* Space before the grid */
    text-align: center;
    font-weight: bold;
}

/* Columns inside the thin space */
.thin-space .column-process {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e7f3f3; /* Light background for visibility */
    padding: 5px;
    border-radius: 5px;
}
.thin-space .column-production {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff4e6; /* Light background for visibility */
    padding: 5px;
    border-radius: 5px;
}
/* Grid layout for the Italy section */
.italy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Creates 4 equal-width columns */
    gap: 20px; /* Space between grid items */
}

/* General styling for each grid item */
.grid-item {
    background-color: #f9f9f9; /* Light background for each grid item */
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Light shadow */
    text-align: center;
}

/* Process level benefits - add distinct styles */
.process-level {
    background-color: #e7f3f3; /* Light blue background */
}

.process-level img {
    border-radius: 8px;
    max-width: 100%;
    height: auto;
}

/* Production line level benefits - add distinct styles */
.production-line {
    background-color: #fff4e6; /* Light orange background */
}

.production-line img {
    border-radius: 8px;
    max-width: 100%;
    height: auto;
}
/* HVAC level benefits - add distinct styles */
.hvac-level {
    background-color: #f3ede7; /* Light orange background */
}

.hvac-level img {
    border-radius: 8px;
    max-width: 100%;
    height: auto;
}


/* Additional styling for the descriptions */
.grid-item p {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
}
/* Grid layout for the Lithuania section (one column layout) */
.selteka-grid {
    display: grid;
    grid-template-columns: 1fr; /* Single column */
    gap: 20px; /* Space between grid items */
    margin-top: 20px; /* Space before the Lithuania section */
	
	width: 50%; /* Adjust width as needed */
    max-width: 1200px; /* Optional: set a max width */
    margin-left: auto; /* Centering */
    margin-right: auto; /* Centering */
	
}

/* General styling for the grid item in Lithuania section */
.grid-item.selteka {
    background-color: #f9f9f9; /* Light background for the grid item */
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Light shadow */
    text-align: center;
}


/* Image styling */
.selteka img {
    border-radius: 8px;
    max-width: 45%;
    height: 45%;
}

/* Description styling */
.selteka p {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
}


/*.tablinks {
    font-family: inherit;
    border-radius: 10px; 
    font-size: 1.2rem;
    margin-right: 0.5rem;
}

.tablinks:hover {
    color: white;
    background: linear-gradient(90deg, #034EA2 0%, #CD154F 100%);;
}*/

.tab-content a {
    text-decoration: none;
    color: inherit;
}
.logos-grid {
    display:flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top:30px;
}

.logos-grid .partner-link {
    display:block;
}

.logos-grid .partner-link .partner-logo {
    height:120px;
    width:auto;
}

.upkip {
    height: 70px;
    width: auto;
    margin-top: 20px;
}

.products-img {
    height: 380px;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.events {
    height: 220px;
    width: auto;
    display: flex;
    justify-content:space-around;
}

.footer {
    position:relative;
    height:120px;
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 10px; 
    color: white; /* Make all text inside the footer white */
    background:linear-gradient(90deg, #034EA2 0%, #CD154F 100%);
}
.contact-info-wrapper {
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 10px; 
    background:#D4D4D4;
}

.footer a {
    text-decoration: none;
    color: inherit; /* Inherits white text color */
}

.contact-info-wrapper h3 {
    color:white;
}

.social-icon {
    width:40px;
    height:40px;
    padding-left: 50px;
}

@media screen and (max-width:640px) {
    .header {
        height:auto;
    }

    .eit_logo-wrapper {
        height:80px;
    }

    .eit_logo {
        width:100%;
        height:auto;
    }

    .sus4-wrapper {
        margin-top: 80px;
        padding-bottom:10px;
    }

    .sus4-name {
        margin:0;
        margin-left:.2%;
        margin-top:3%;
        font-size:1.8rem;
    }

    .sus4-logo {
        height:150px;
        margin-top:3%;
    }

    .logos-grid .partner-link .partner-logo {
        height:60px;
        width:auto;
    }

    .upkip {
        height: 30px;
        width: auto;
    }

    .footer {
        height:130px;
        padding:30px;
    }

    .products-img {
        height: 135px;
        width: auto;
    }

    .events {
        height: 80px;
        width: auto;
        overflow: hidden;
    }

    .social-icon {
        width:25px;
        height:25px;
    }
	
	
	
	
	
}

.centered-text {
    text-align: center !important;
	font-weight: bold !important;	
    font-size: 1.3rem !important;
    
	}
	
	.centered-image {
    
    display: block; /* Ensures it behaves as a block element */
    margin: 0 auto; /* Centers the image horizontally */
}

.centered-h {
    text-align: center !important;
	background:linear-gradient(90deg, #034EA2 0%, #CD154F 100%);
	color:white;
    
	}
	
	
	/* Grid layout for the Italy section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Creates 4 equal-width columns */
    gap: 20px; /* Space between grid items */
}
