body {
    font-family: "komet", sans-serif;
font-weight: 400;
font-style: normal;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body a {
    color: #316BA5;
}

body a:hover {
    color: #777;
}

h1 {
            color: #333;
            font-size: 1.1em;
			margin-top: 5px;
            margin-bottom: 0px;
        }
        h2 {
            color: #666;
            font-size: 1.1em;
            margin-top: 20px;
            margin-bottom: 10px;
        }

header {
    background-color: #316BA5;
    color: white;
    padding: 10px 0;
    text-align: center;
	border-top-style: solid;
	border-bottom-style: solid;
	border-width: 5px;
    border-top-color: #68f5ff;
	border-bottom-color: #d9dde8;
}

header h1 {
    margin: 0;
}

main {
    flex: 1;
    padding-left: 10px;
	padding-right: 10px;
	padding-top: 0px;
}

.countries {
	padding-top: 0px;
	text-align: center;
}

.categories {
	padding-top: 20px;
	text-align: center;
}

.subcategories {
	padding-top: 20px;
	text-align: center;
}

.countries ul, .categories ul, .subcategories ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.countries ul li, .categories ul li, .subcategories ul li {
    margin: 5px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: background-color 0.3s ease, font-size 0.3s ease;
    /*flex: 1 1 22%; /* Default to 4 items per row */
    box-sizing: border-box;
}

.countries ul li a, .categories ul li a, .subcategories ul li a {
    text-decoration: none;
    color: #333;
    display: block;
    padding: 5px 10px;
    white-space: nowrap;
}

.countries ul li:hover, .categories ul li:hover, .subcategories ul li:hover {
    background-color: #f0f0f0;
}

.most-watched-items .gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.most-watched-items .gallery-item {
    margin: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    box-sizing: border-box;
    transition: transform 0.3s ease, font-size 0.3s ease;
    flex: 1 1 22%; /* Default to 4 items per row */
}

.most-watched-items .gallery-item img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: width 0.3s ease, height 0.3s ease;
}

.most-watched-items .gallery-item:hover {
    transform: scale(1.05);
}

.most-watched-items .gallery-item p {
    margin: 10px;
    text-align: center;
}

.email-container {
    max-width: 100%;
    margin: 10px 10px 10px 10px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background-color: #f9f9f9;
}

.responsive-text {
    padding-top: 0px;
}

.responsive-breadcrumb {
	padding-top: 20px;
	text-align: center;
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"], input[type="email"], textarea {
    width: 95%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049;
}

footer {
    background-color: #316BA5;
    color: white;
    text-align: center;
    padding: 0px 0px 20px;
	border: 10px;
    width: 100%;
}

nav a {
    color: #FFFFFF; /* Replace #FFFFFF with your desired color */
    text-decoration: none; /* Optional: remove underline from links */
	text-align: center;
    padding: 0px 10px;
    width: 100%;
}

nav a:hover {
    color: #B3B3B3; /* Optional: change color on hover */
	text-align: center;
    padding: 0px 10px;
    width: 100%;
}

header a {
    color: #FFFFFF;
    
}

header a:hover {
    color: #FFFFFF;
}

header a {
    color: #FFFFFF; /* Replace #FFFFFF with your desired color */
    text-decoration: none; /* Optional: remove underline from links */
	text-align: center;
    padding: 20px 10px;
    width: 100%;
	max-width: 100%;
}

header h1 {
    font-size: calc(2vw + 0.85em); /* Adjust this value as needed */
    white-space: nowrap; /* Prevent text from wrapping */
	text-align: center;
}

.tag-line {
	margin: 10px;
    text-align: center;
}	

/* Responsive adjustments */



.logo {
            width: 100%; /* Make the logo responsive */
            max-width: 125px; /* Set the maximum width */
            height: auto; /* Maintain aspect ratio */
}

@media (max-width: 1400px) {
    .countries ul li, .categories ul li, .subcategories ul li, .most-watched-items .gallery-item {
        flex: 1 1 22%; /* 4 items per row */
    }
}

@media (max-width: 1200px) {
    .countries ul li, .categories ul li, .subcategories ul li, .most-watched-items .gallery-item {
        flex: 1 1 30%; /* 3 items per row */
    }
    body {
        font-size: 100%;
    }
    .countries ul li a, .categories ul li a, .subcategories ul li a {
        font-size: 100%;
    }
}

@media (max-width: 992px) {
    .countries ul li, .categories ul li, .subcategories ul li, .most-watched-items .gallery-item {
        flex: 1 1 45%; /* 2 items per row */
    }
    body {
        font-size: 100%;
    }
    .countries ul li a, .categories ul li a, .subcategories ul li a {
        font-size: 100%;
    }
}

@media (max-width: 768px) {
    .countries ul li, .categories ul li, .subcategories ul li {
        flex: 1 1 45%; /* No fewer than 2 items per row */
    }
    .most-watched-items .gallery-item {
        flex: 1 1 45%; /* 1 item per row */
    }
    body {
        font-size: 100%;
    }
    .countries ul li a, .categories ul li a, .subcategories ul li a {
        font-size: 120%;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 130%;
    }
    .countries ul li a, .categories ul li a, .subcategories ul li a {
        font-size: 100%;
    }
    .most-watched-items .gallery-item img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 130%;
    }
    .countries ul li a, .categories ul li a, .subcategories ul li a {
        font-size: 100%;
    }
    .most-watched-items .gallery-item img {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 360px) {
    body {
        font-size: 130%;
    }
    .countries ul li a, .categories ul li a, .subcategories ul li a {
        font-size: 100%;
    }
    .most-watched-items .gallery-item img {
        width: 100%;
        height: auto;
    }
}

/* Media query for larger screens */
@media (min-width: 992px) {
    .responsive-text {
        display: none;
    }
}

/* Media query for larger screens */
@media (max-width: 768px) {
    .responsive-breadcrumb {
        display: none;
    }
}