/* General styling */
body {
  background-color: beige;
    margin: 0;
    font-family: Arial, sans-serif;
  }


  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fbfbfb;
    padding: 0.5rem 1rem;
    color: white;
  }
  
  .logo {
    font-size: 1.5rem;
  }
  
  .nav-links {
    margin-top: 1cm;
    list-style: none;
    padding: 0;
    display: flex;
    gap: 1rem;
  }
  
  .nav-links li {
    margin: 5px;
    
  }
  
  .nav-links a {
    color: rgb(71, 98, 88);
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: white;
  }
  
  .hamburger {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: rgb(53, 195, 79);
    cursor: pointer;
  }
  @media(min-width:768px){
  .can{
    margin: 2cm;
    display: flex;
   }
   ul.content{
    margin-top: 1.2cm;
   }
  }

  
  /* Responsive Design */
  @media (max-width: 768px) {
    ul.content{
      left: 6.4cm;
      top: 0cm;
    }
    .can{
      max-width: fit-content;
      margin-top: 1cm
    }
    .can img{
      max-width: 320px;
      
    }
    .nav-links {
      display: none;
      flex-direction: column;
      gap: 0;
      background-color: #edebb6;
      position: absolute;
      top: 3.5rem;
      left: 4rem;
      margin-top: 2.5cm;
      border-radius: 5px;
      padding: 1rem;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .hamburger {
      display: block;
    }
    
  }

.full{
    visibility: inherit;
}
/* General region */
* {
    margin: 0;
    padding: 0;
    appearance: 0;
    list-style: none;
    text-decoration: none;
    outline: 0;
    box-sizing: border-box;
  }
p{
    color: #20211c;
    background-color: linear-gradient(to right,skyblue,lightgreen);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

a{
    color: black;
    text-decoration: none;
}
/*Navbar*/
.header{ 
   display: contents;
    height: 90px;
    background-color:#4d000059 ;
    padding-top: .30rem;
    width: 100%;
}

.list{
    display: flex;
    justify-content: flex-end;
    width: auto;
    list-style-type: none;
}

li{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 20px;
    text-align: center;   
    background-color: rgb(255, 255, 255);
    margin-top: 15px;
    margin-left: 1%;
    margin-right: 1%;  
    cursor: pointer; 
    background: none;
    border:none;
    text-decoration: none;
}


li.b1{
    margin-right: 3%;
}

li.b11{
    object-fit: cover;
    margin-left: 2%;
    margin-right: 21%;
    vertical-align: top;
}
.padding_text{
    padding-top: 1rem;
}
a{
   position: relative;
   margin-left: 10px;
    color: #000000;
    cursor: pointer;
}

a::after{
    content: "";
    position:absolute;
    left: 0;
    width: 100%;
    bottom: -6px;
    height: 3px;
    background: #000000;
    border-radius: 5px;
    transform: scaleX(0);
    transition: transform 0.5s;
    transform-origin: right;
}
 a:hover:after{
    transform: scaleX(1);
    transform-origin: left;
}

.b11 a:hover:after{
    transform: scaleX(0);
    transform-origin: left;
}

li .link a:hover:after{
    transform: scaleX(0);
    transform-origin: left;
}


body{text-align: center;
    
    background-image: url() ;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    /* background-size: cover; */
}

p{
    margin: 15px;
    text-align: justify;
}

hr{
   margin: 15px;
}
/*image slider*/
.container {
	padding: 1rem;
    background-image: url();
}

.slider-wrapper {
	position: relative;
	max-width: 48rem;
	margin: 0 auto;
}

.slider {
	display: flex;
	aspect-ratio: 16 / 9;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
	border-radius: 0.5rem;
	-ms-overflow-style: none; /* Hide scrollbar IE and Edge */
	scrollbar-width: none; /* Hide scrollbar Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.slider::-webkit-scrollbar {
	display: none;
}

.slider img {
	flex: 1 0 100%;
	scroll-snap-align: start;
	object-fit: cover;
}
small{
    font-weight: 100;
    font-size: small;
}

.slider-nav {
	display: flex;
	column-gap: 1rem;
	position: absolute;
	bottom: 1.25rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 0;
}

.slider-nav a {
	width: 0.5px;
	height: 0.5px;
	border-radius: 50%;
	background-color: #fff;
	opacity: 0.75;
	transition: opacity ease 250ms;
}

.slider-nav a:hover {
	opacity: 1;
}
/*drop down menu */
.dropdown{
    display:block;
    position: relative;
    z-index: 2;
}
.dropdown .content a {
    display: block;
    color: black;
    text-decoration: none;
}
.content{margin-top: 2cm;
    display: none;
    font-size: 7px;
    position: absolute;
    top: 2rem;
    left: 0;
    background-color:#ffffff;
    padding: .75rem;
    border-radius: .25rem;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
    transform: translateY(-43px);
    z-index: 1;
}
.dropdown:hover .content{
    display:block;
}
.content :hover{
    background-color: hsl(0, 0%, 90%);
}

/*footer*/

footer {
    background-color: rgba(255, 255, 255, 0.912);
    padding: 2rem 0 0;
    box-shadow: inset 0 1.5rem 1.5rem rgba(0, 0, 0, 0.1);
  }
  .footer__socials {
    margin-inline: auto;
    width: fit-content;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.2rem;
  }
  
  .footer__socials a {
    background: var(--color-bg);
    border-radius: 50%;
    height: 2.3rem;
    width: 2.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .footer__socials a:hover {
    background: var(--color-white);
    color: var(--color-bg);
  }

.footer_nav{
    margin: 30px 0;
}
.footer_nav ul{
    display: flex;
    justify-content: center;
}
  
  .footer__copyright {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 2px solid var(--color-bg);
  }
