body::-webkit-scrollbar {
    width: 0px; /* Remove scrollbar space */
    background: transparent; /* Optional: just to remove the background */
}

body {
    background-color: #1a2c38;
    font-family: 'Montserrat', sans-serif;
    color: white;
    margin: 0;
    padding: 0;
	overflow-y: scroll;
}

body {
    font-family: 'Montserrat', sans-serif;
}

.text-white {
  font-family: "Lilita One", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding-top: 20px;
}

.text-green {
  font-family: "Lilita One", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding-top: 20px;
  color: #23cf00;
}

@media (max-width: 768px) {
	.text-white  { 
		padding-top: 0px;
	}
}

.text-white-small {
  font-size: 25px;
}

@media (max-width: 768px) {
    .text-white-small {
        font-size: 18px;
    }
}

.navbar {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 0; /* Padding for top and bottom */
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Ensure space is distributed between items */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    width: 100%;
}

.logo {
    height: 50px;
}

.navbar-left {
    flex: 1;
}

.navbar-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Align items to the right */
}


.btn-contacts {
    background: linear-gradient(to bottom, #d3f432, #1fc21b);
    border: none;
    color:  #003C00;
	font-weight: bold;
	font-size: 16px;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
	
}

.btn-contacts:hover {
    /* Optionally, you can add hover effect here if needed */
}


.container.content {
    max-width: 1200px;
    margin: 0 auto;
   
	
	padding-left: 15px;
    padding-right: 15px;
	
	
	margin-bottom: 25px;
}

.no-padding {
    padding-left: 0 !important;
    padding-right: 0 !important;
}


/* Coming soon pill styles */
.coming-soon {
    position: absolute;
    top: 9%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.3);
    color: white;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-align: center;
    width: auto;
    max-width: 90%;
    box-sizing: border-box;
	z-index: 3;
}

@media (min-width: 769px) {

	.coming-soon {
		font-size: 14px;
	}
}


.partners-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.ribbon-container {
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    touch-action: pan-y; /* Prevent vertical scroll on swipe */
	user-select: none;
}

.ribbon {
    display: flex;
    transition: transform 0.3s ease;
}


.partner-card {
    background-color: #2d4453;
    border-radius: 10px;
    margin-right: 10px;
    flex: 0 0 calc((100% - 60px) / 7); /* Adjust based on your card layout */
    text-align: center;
    padding: 15px;
    box-sizing: border-box;
}

.partner-card img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}


.btn-arrow {
    /* Prevent zoom on double-tap */
    touch-action: manipulation;
    border-radius: 50px; /* Rounded pill shape */
}

.btn-group .btn-arrow {
    background: transparent;
    border: 1px solid #2d4453;
    color: white;
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px; /* Rounded pill shape */
}

.btn-arrow:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .partner-card {
        flex: 0 0 calc((100% - 20px) / 3); /* 3 cards per view on mobile */
    }
}

/* General card styling */
.card-custom {
    background-color: #2d4453;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
	font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    transition: background-color 0.5s ease;
}

/* Keyframe animation to change background color */
@keyframes cardHighlight {
    0% { background-color: #23cf00; }
    100% { background-color: #2d4453; }
}

/* Animation for each card */
.card-custom:nth-child(1) {
    animation: cardHighlight 2.5s infinite;
    animation-delay: 0s;
}
.card-custom:nth-child(2) {
    animation: cardHighlight 2.5s infinite;
    animation-delay: 0.5s;
}
.card-custom:nth-child(3) {
    animation: cardHighlight 2.5s infinite;
    animation-delay: 1s;
}
.card-custom:nth-child(4) {
    animation: cardHighlight 2.5s infinite;
    animation-delay: 1.5s;
}
.card-custom:nth-child(5) {
    animation: cardHighlight 2.5s infinite;
    animation-delay: 2s;
}


/* Responsive layout */
@media (min-width: 769px) {
    .card-custom {
        flex: 1 1 calc(20% - 10px);
        margin-right: 10px;
    }

    .card-custom:last-child {
        margin-right: 0;
    }

    .card-container {
        display: flex;
        justify-content: space-between;
		margin-top: 44px;
    }
	
}

@media (max-width: 768px) {
    .card-custom {
        flex: 1 1 100%;
        margin-bottom: 10px;
		padding-top: 10px;
		padding-bottom: 10px;
    }

    .card-container {
        display: block;
		margin-top: 0;
    }
	
	/*
	.card-custom:nth-child(1) {
        width: 90%;
		margin-left: 5%; 
    }
    .card-custom:nth-child(2) {
        width: 90%;
		margin-left: 5%; 
    }
    .card-custom:nth-child(3) {
        width: 90%;
		margin-left: 5%; 
    }
    .card-custom:nth-child(4) {
        width: 90%;
		margin-left: 5%; 
    }
    .card-custom:nth-child(5) {
        width: 90%;
		margin-left: 5%; 
    }
	*/
	
}

/*NEWS*/
.news-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.ribbon-container {
    overflow: hidden;
    position: relative;
    touch-action: pan-y;
    user-select: none;
}

.ribbon {
    display: flex;
    transition: transform 0.3s ease;
    width: 100%;
}

.news-card {
    display: flex;
    justify-content: space-between;
    background-color: #2d4453;
    border-radius: 10px;
    padding: 15px;
    box-sizing: border-box;
    flex: 0 0 calc((100% - 20px) / 3); /* 3 cards per row, 10px gap between cards */
    margin-right: 10px;
    text-decoration: none;
}

.news-card:last-child {
    margin-right: 0; /* Remove margin for the last card */
}

.news-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.news-header {
    color: white;
    font-size: 1.2em;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    white-space: normal;
}

.news-image {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.news-info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.news-type {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    padding: 3px 8px;
    border-radius: 50px;
    font-size: 0.75em;
    white-space: nowrap;
}

.news-date {
    color: #aaa;
    font-size: 0.9em;
}

@media (max-width: 768px) {
    .news-card {
        flex: 0 0 calc(100%); /* 1 card per row on mobile with a margin */
        margin-bottom: 10px;
    }

    .news-content {
        max-width: 100%;
    }

    .news-image {
        width: 100px;
        height: 100px;
    }
}




/* Additional CSS styles can be added here */
.contacts {
  padding: 0;
}

.left-content img {
  max-width: 100%;
}

.right-content form {
  	padding-top: 20px;
	padding-bottom: 20px;
	padding-right: 0;
	padding-left: 0;
}

.right-content input[type="text"],
.right-content input[type="email"],
.right-content input[type="tel"],
.right-content textarea {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  margin-bottom: 20px;
}

.right-content input[type="text"]::placeholder,
.right-content input[type="email"]::placeholder,
.right-content input[type="tel"]::placeholder,
.right-content textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.contacts p {
   font-size: 15px;
}


.social-icons {
  display: flex;
  justify-content: start;
}

.social-icon {
  font-size: 26px; /* Adjust icon size as needed */
  color: white;
  margin-right: 15px; /* Adjust spacing between icons */
  transition: color 0.3s; /* Add transition for smooth color change */
}

.social-icon:hover {
  color: #23cf00; /* Change color to red on hover */
}

.copyright-text {
	color: grey;
}

.footer-link {
  text-decoration: underline;
  color: grey;
}

.footer-link:hover {
  color: #23cf00; /* Change color on hover if needed */
}

.separator {
  margin: 0 10px;
  color: grey;
}

.hidden-on-desktop {
    display: none; /* Set default display property */
}

.visible-on-mobile {
    display: block; /* Hide by default on desktop */
}

/* Media query for desktop */
@media screen and (min-width: 768px) {
    .hidden-on-desktop {
        display: block;
    }
    
    .visible-on-mobile {
        display: none; 
    }
}

.modal-content {
  background-color: #2d4453;
  color: white; /* Optionally, set text color to white */
}

.modal-header {
  border-bottom: none; /* Remove the bottom border */
  padding-bottom: 0;
}

/* Ensure the modal takes up 100% height */
.modal-dialog-fullscreen {
  height: 100%;
  margin: 0;
  max-width: 500px;
  /* Center the modal horizontally */
  margin-left: auto;
  margin-right: auto;
	align-items: center;  
}



@media (max-width: 768px) {
	.modal-dialog-fullscreen {
		max-width: 100%;
		height: 100%;
	}
}


.modal-content-fullscreen {
  height: 100%;
  border: none;
  border-radius: 0; /* Optional: Remove border-radius for full height */
  display: flex;
  flex-direction: column;
}

.modal-body-fullscreen {
  flex: 1;
  overflow: hidden;
}

iframe {
  width: 100%;
  height: 100%;
}



/*GRADIENT CARDS*/
/* Gradient Card Container */
.gradient-card-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin: 0;
    padding: 0;
}

/* Gradient Card Styles */
.gradient-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    background: linear-gradient(to bottom, var(--gradient-start) 0%, var(--gradient-start) 70%, var(--gradient-end) 100%);
    aspect-ratio: 10 / 13; /* Card height 130% of its width */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}


.gradient-card:hover {
    transform: translateY(-5px);
}

/* Card Image */
.gradient-card img {
    max-width: 70%;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
    z-index: 1;
}

/* Card Text (Centered) */
.gradient-card-text {
    color: white;
    font-family: "Lilita One", sans-serif;
    text-align: center;
    margin-top: auto;
    padding-bottom: 35px;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

/* Desktop Mode - Increase Font Size */
@media (min-width: 769px) {
    .gradient-card-text {
        font-size: 28px; /* Larger text for desktop */
    }
}

/* Mobile Mode */
@media (max-width: 768px) {
    .gradient-card-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 cards per row on mobile */
    }

    .gradient-card-text {
        font-size: 18px; /* Smaller text for mobile */
		padding-bottom: 10px;
    }

	.gradient-card img {
    	margin-top: 20px;
	}
}

