html {
  scroll-behavior: smooth;
}

*{
    font-family: Verdana, Geneva, sans-serif;
}

body {
    background-color: #567295;
    margin: 0;
    padding: 0;
    
}



section {
    position: relative;
    width: 100%;
    height: 3900px;
    text-align: center; /* Center text */
}


.navbar {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #333;
    position: fixed;
    top: 0; /* Stick to the top */
    z-index: 10; /* Ensure it stays on top of other content */
    width: 100%;
    font-size: 17px
}

.navbar li {
    float: left;
}

.navbar li a {
    display: block;
    color: #ffffff;
    text-align: center;
    padding: 10px 11px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.navbar li a:not(.active):hover {
    background-color: #222;
    transform: scale(1.1);
}
#section::before {
    content: '';
    position: absolute;
    top: -500px;
    left: 0;
    width: 100%;
    height: 230%;
    background: radial-gradient(#ADC3E5, #567295, #d0e1f3);
    background-size: 400% 400%;
    animation: gradientAnimation 22s infinite linear;
    filter: blur(8px);
    z-index: 0;
    opacity: 0.9;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 100%; }
    100% { background-position: 0% 0%; }
}



.overlay-image {
    width: 100%;
    height: auto;
    opacity: .6;
    /*top: -5px;*/
}



section > * {
    position: relative;
    z-index: 1;
    
}


ul li {
    float: left;
}


ul li a img.logo {
    height: 13px;
    transform: scale(1.4);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.active {
    background-color: #ffffff;
}

.welcome-text {
    font-size: 25px;
    color: #ffffff;
    text-align: center;
    /*margin-top: 100px;*/
    margin-top: 60px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
      background-position: bottom;
    margin-bottom: 0;
    
    
}

.specialist-text {
    font-size: 25px;
    color: #ffffff;
    text-align: center;
    margin-top: 0;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    margin-left: 20px;
    margin-right: 20px;
}

.Bottom-text-index {
    font-size: 13px;
    text-align: center;
    color: #adadad;
    position: fixed; /* Make the text fixed */
    bottom: -20px; /* Position it 10px from the bottom */
    /*left: 50%; *//* Center it horizontally */
    /*transform: translateX(-50%);*/ /* Adjust to truly center it */
    background-color: #333; /* Background color to match the body */
    padding: 12px 10px; /* Padding for better appearance */
    z-index: 10; /* Ensure it stays on top of other content */
    width: 100%; /* Optional: full width */
    height: 30px;
}

.Bottom-text-pages {
    font-size: 13px;
    text-align: center;
    color: #adadad;
    position: fixed; /* Make the text fixed */
    bottom: -20px; /* Position it 10px from the bottom */
    /*left: 50%; *//* Center it horizontally */
    /*transform: translateX(-50%);*/ /* Adjust to truly center it */
    background-color: #333; /* Background color to match the body */
    padding: 12px 10px; /* Padding for better appearance */
    z-index: 10; /* Ensure it stays on top of other content */
    width: 100%; /* Optional: full width */
    height: 30px;
}


.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.button {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    padding: 0;
    transition: transform 0.3s;
    background: none;
    border: none;
    color: #ffffff;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    
    
}



.button:first-child {
    margin-right: 15px;
}

.button:last-child {
    margin-left: 15px;
}

.button:hover {
    transform: scale(1.20);
}

.button-image {
    width: 100px;
    height: 70px;
    margin-bottom: 10px;
    border-radius: 2px;
}
/*
.flex-container {
  display: flex;
  flex-direction: row;
  font-size: 18px;
  text-align: left;
  margin-top: 50px;
  margin-left: 50px;
  margin-right: 50px;
  color: #ffffff;
}*/

/* makes a one column-layout instead of two-column layout */
.flex-container {
    flex-direction: column;
  display: flex;
  font-size: 18px;
  text-align: left;
  margin-top: 50px;
  margin-left: 20px;
  margin-right: 20px;
    /*align-content: top; */
  color: #ffffff;
/*    max-width:1280px*/
        
  }




.flex-item-left {
  background-color: #444;
  padding: 10px;
  flex: 50%;
  align-content: center;    
}

.flex-item-right {
  background-color: #444;
  padding: 10px;
  flex: 50%;
  align-content: center;
}

.flex-item-top {
  background-color: #444;
  padding: 10px;
  flex: 50%;
  align-content: top;
}

.flex-item-bottom {
  background-color: #444;
  padding: 10px;
  flex: 50%;
  align-content: bottom;
}

.contentInsideLeft {
    font-size: 15px;
    float:left;
	width: 50%;
}
.contentInsideRight {
    font-size: 15px;
	float:right;
	width: 50%;
}



.resizable-logo {
    background-image: url('logo.png'); /* Path to your logo */
    background-size: contain; /* Ensures the logo is fully visible */
    background-repeat: no-repeat;
    background-position: center;
    width: 300px; /* Default size */
    height: 100px;
    display: block;
    margin: 0 auto; /* Centers the logo */
    
}



/* Responsive layout - makes a one column-layout instead of two-column layout */
/*@media (max-width: 1000px) {
  .flex-container {
    flex-direction: column;
      margin-left: 10px;
      margin-right: 10px;
  }
}*/

/*
@media screen and (max-width: 1000px) and (max-aspect-ratio: 2/3) {
    .welcome-text {
        margin-top: 20%;
   } 
}
*/


@media screen and (min-width: 1024px) {
  .flex-container 
    {
    max-width: 1024px; 
    }
    .navbar 
    {
    max-width: 1044px; 
    }    
.Bottom-text-pages    
    {
    max-width: 1024px; 
    }    

    /*    .welcome-text
    {
    max-width: 1024px; 
    } 
.specialist-text    
    {
    max-width: 1024px; 
    } 
.logo-container    
    {
    max-width: 1024px; 
    }     
.button-container    
    {
    max-width: 1024px; 
    }     
.overlay-image    
    {
    max-width: 1024px; 
    }     */
}



@media screen and (max-height: 500px)  {
    .welcome-text {
        margin-top: 5px;
   } 

 
}


@media (max-width: 600px) {
   .navbar {
        font-size: 14px
    }
}


