/*Desktop*/
@media only screen and (min-width: 1023px) {
  .carimg{
    height: 600px;
    object-fit: cover;
    object-position: center;
  }  
  .brandarea{
        display:flex;
        flex-direction:row;
        justify-content:center;
      }
        .brandname{
         display:flex;
         flex-direction:column;
         
      }
      .brandnameh2{
          margin-top:30px;
         font-weight:bold
        }
        .logo{
          height:96px;
          width:116px;
          margin-top:22px;
          margin-right:20px;
            
      }
        .navbar{
	height:80px;
	background-color:#1F61AA;
    
	}
   .nav-item{
   margin-right:20px
   }
   .nav-item:hover{
	border-bottom: 3px solid white;
	
	}
	.verytop{
	height:130px;
	font-family:proza;
	
	}
	.navbar-brand{
	display:none
	}
  
  .gallerycarousel{
    margin:40px auto; 
    width:70%;
  }
  
  .endsection{
  height:90px;
  background-color:#1F61AA;
  color:white;
 
  
  }
  .endsection a{
    color:#D2EA4C
  }
  #consent-banner {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 800px;
    background: linear-gradient(135deg, #1F61AA 0%, #2a7bc4 100%);
    color: white;
    border-radius: 15px;
    padding: 0;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(31, 97, 170, 0.3);
    border: 2px solid #D2EA4C;
    animation: slideUp 0.5s ease-out;
  }

  .consent-content {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 15px;
  }

  .consent-icon {
    flex-shrink: 0;
    background: rgba(210, 234, 76, 0.2);
    border-radius: 50%;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .consent-text {
    flex: 1;
  }

  .consent-text p {
    margin: 0;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
  }

  .disclaimer-title {
    color: #D2EA4C;
    font-weight: bold;
    font-size: 18px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  }

  .consent-close {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .consent-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
  }

  @keyframes slideUp {
    from {
      transform: translateX(-50%) translateY(100px);
      opacity: 0;
    }
    to {
      transform: translateX(-50%) translateY(0);
      opacity: 1;
    }
  }

  .countdown-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0 0 15px 15px;
    overflow: hidden;
  }

  .countdown-progress {
    height: 100%;
    background: linear-gradient(90deg, #D2EA4C 0%, #ff6b6b 100%);
    width: 100%;
    animation: countdown 15s linear forwards;
    transform-origin: left;
  }

}

/* Global countdown animation - works on all devices */
@keyframes countdown {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}
/*Mobile*/
@media only screen and (max-width: 700px) {
    .brandarea{
        display:flex;
        flex-direction:row;
        justify-content:center;
        text-align: center;
      }
        .brandname{
         display:flex;
         flex-direction:column;
         
      }
        .brandnameh2{
          margin-top:35px;
          font-size: 16px;
          font-weight:bold
        }
        .brandnameh5{
          font-size: 12px;
          
        }
        .logo{
          height:66px;
          width:76px;
          margin-top:22px;
          margin-right:10px;
            
      }
        .navbar{
	background-color:#1F61AA;
    
	}
   .nav-item{
   margin-right:20px
   }
   .nav-item:hover{
	border-bottom: 3px solid white;
	
	}
	.verytop{
	height:110px;
	font-family:proza;
	
	}
	.navbar-brand{
	display:none
	}
  .mynavbartext{
    text-align: center;
  }
  .gallerycarousel{
    margin:40px auto; 
    width:90%;
   
    
  }
  .carimg{
    height: 40vh;
    object-fit: cover;
    object-position: center;
  }
  .endsection{
  height:90px;
  background-color:#1F61AA;
  color:white;
 
  
  }
  .endsection a{
    color:#D2EA4C
  }
  #consent-banner {
    display: none;
    position: fixed;
    bottom: 10px;
    left: 10px;
    right: 10px;
    width: auto;
    background: linear-gradient(135deg, #1F61AA 0%, #2a7bc4 100%);
    color: white;
    border-radius: 12px;
    padding: 0;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(31, 97, 170, 0.3);
    border: 2px solid #D2EA4C;
    animation: slideUp 0.5s ease-out;
  }

  .consent-content {
    display: flex;
    align-items: center;
    padding: 15px;
    gap: 12px;
  }

  .consent-icon {
    flex-shrink: 0;
    background: rgba(210, 234, 76, 0.2);
    border-radius: 50%;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .consent-icon svg {
    width: 20px;
    height: 20px;
  }

  .consent-text {
    flex: 1;
  }

  .consent-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 500;
  }

  .disclaimer-title {
    color: #D2EA4C;
    font-weight: bold;
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  }

  .consent-close {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .consent-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
  }

  .consent-close svg {
    width: 16px;
    height: 16px;
  }

  .countdown-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0 0 12px 12px;
    overflow: hidden;
  }

  .countdown-progress {
    height: 100%;
    background: linear-gradient(90deg, #D2EA4C 0%, #ff6b6b 100%);
    width: 100%;
    animation: countdown 15s linear forwards;
    transform-origin: left;
  }
}

/*Tablet*/
@media only screen and (min-width: 700px) and  (max-width: 1023px) {
    .brandarea{
        display:flex;
        flex-direction:row;
        justify-content:center;
        text-align: center;
      }
        .brandname{
         display:flex;
         flex-direction:column;
         
      }
        .brandnameh2{
          margin-top:35px;
          font-size: 20px;
         font-weight:bold
        }
        .brandnameh5{
          font-size: 14px;
          
        }
        .logo{
          height:66px;
          width:76px;
          margin-top:22px;
          margin-right:10px;
            
      }
        .navbar{
	background-color:#1F61AA;
    
	}
   .nav-item{
   margin-right:20px
   }
   .nav-item:hover{
	border-bottom: 3px solid white;
	
	}
	.verytop{
	height:110px;
	font-family:proza;
	
	}
	.navbar-brand{
	display:none
	}
  .mynavbartext{
    text-align: center;
  }
  .gallerycarousel{
    margin:40px auto; 
    width:90%;
    
  }
  .carimg{
    height: 40vh;
    object-fit: cover;
    object-position: center;
  }
  .endsection{
  height:90px;
  background-color:#1F61AA;
  color:white;
 
  
  }
  .endsection a{
    color:#D2EA4C
  }
  #consent-banner {
    display: none;
    position: fixed;
    bottom: 10px;
    left: 10px;
    right: 10px;
    width: auto;
    background: linear-gradient(135deg, #1F61AA 0%, #2a7bc4 100%);
    color: white;
    border-radius: 12px;
    padding: 0;
    z-index: 1000;
    box-shadow: 0 8px 25px rgba(31, 97, 170, 0.3);
    border: 2px solid #D2EA4C;
    animation: slideUp 0.5s ease-out;
  }

  .consent-content {
    display: flex;
    align-items: center;
    padding: 15px;
    gap: 12px;
  }

  .consent-icon {
    flex-shrink: 0;
    background: rgba(210, 234, 76, 0.2);
    border-radius: 50%;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .consent-icon svg {
    width: 20px;
    height: 20px;
  }

  .consent-text {
    flex: 1;
  }

  .consent-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 500;
  }

  .disclaimer-title {
    color: #D2EA4C;
    font-weight: bold;
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  }

  .consent-close {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .consent-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
  }

  .consent-close svg {
    width: 16px;
    height: 16px;
  }

  .countdown-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0 0 12px 12px;
    overflow: hidden;
  }

  .countdown-progress {
    height: 100%;
    background: linear-gradient(90deg, #D2EA4C 0%, #ff6b6b 100%);
    width: 100%;
    animation: countdown 15s linear forwards;
    transform-origin: left;
  }
}