body {margin:0;font-family:Arial;overflow-x: hidden;}

* {
  box-sizing: border-box;
}

.topmenu {
    text-align: center;
    background-color: black;
    color:  white;
    padding: 10px 0;
    font-family: Arial, sans-serif;
  
  
}

.topmenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.topmenu li {
    display: inline;
    margin: 0 15px;
}

.topmenu a {
    color: white;
    text-decoration: none;
}

/*top nav*/



.topnav {
  overflow: hidden;
  background-color: white;
  position: relative;
}

.topnav #myLinks {
  display: none;
}

.topnav a {
  color:  red;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}

h1{
    text-align: center;
    margin-top: 40px;
    color:blue;
    font-weight: bolder;
}
.topnav a.icon {
  background: white;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 35px;
}

.topnav a:hover {

  color: red;
}

.active {
  background-color: white;
  color: black;
}


/*

Slide

*/
.mySlides {display: none;}
img {vertical-align: middle;
z-index: 0;}

/* Slideshow container */
.slideshow-container {
  max-width: 1000%;
  position: relative;

}

/* Caption text */
.text {
  color:white;
  font-size: 30px;
  background-color: rgba(0, 0, 0, 0.368);
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  font-weight: bold;
  text-align: center;
}

.anim{
    opacity: 0;
    transform:translateY(40px);
    animation: moveup 3s linear forwards;
}

@keyframes moveup{
    100%{
        opacity: 1;
        transform: translateX(0px);
    }
}
/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #f4511e;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.active {
  background-color:none;
  color:red;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

.main-image{
    width:100%;
    height:550px;
    object-fit: cover;
    z-index: 0;
}

@keyframes fade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {font-size: 11px}
}

body, html {
  height: 100%;
}

.logo{
    width:200px;
    height:55px;
    object-fit: cover;
}

.parallax {
  /* The image used */
  background-image: url('../Media/p9.jpg');

  /* Full height */
  height: 350px; 

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Turn off parallax scrolling for tablets and phones. Increase the pixels if needed */
@media only screen and (max-device-width: 1366px) {
  .parallax {
    background-attachment: scroll;
  }
}

.socialmedia {
  position: absolute;
  top:  0;
  right: 0;
  width: 100%;
  z-index: 9999; /* Remove 'px' — z-index is a unitless number */
  background-color: none;/* semi-transparent overlay */
  color:white;
  padding: 10px 0;
  text-align: left;
  font-family: Arial, sans-serif;

}

.socialmedia ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.socialmedia li {
  display: inline;
  margin: 0 10px;
}

.socialmedia a {
  color: white;
  text-decoration: none;
}

/* Float four columns side by side */
.column {
  float: left;
  width: 50%;
  padding: 0 10px;
}

.column li{

  font-weight: bold;
  margin-bottom: 6px;

}

/* Remove extra left and right margins, due to padding */
.row {margin: 0 -5px;}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}
.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 16px;
  text-align: center;
  background-color: white;
  border-bottom: 10px solid black;
  border-top: 10px solid black;
}

.card img{
    width:300px;
    height: 300px;
    object-fit: cover;
}


/* Responsive columns */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
}

.button {
  border-radius: 4px;
  background-color: #f4511e;
  border: none;
  color: #FFFFFF;
  text-align: center;
  font-size: 28px;
  padding: 20px;
  width: 200px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 5px;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

.button a{
    text-decoration: none;
    color:white;
}
.accordion {
  background-color: #333333;
  color:white;
  cursor: pointer;
  padding: 22px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  border-bottom: 4px solid #f4511e;
}

.Active, .accordion:hover {
  background-color: #f4511e;
  color:black;
  font-weight: bold;
  letter-spacing: 6px;
}

.accordion:after {
  content: '\002B';
  color: #f4511e;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #333333; 
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: red; 
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

#myBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: red;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 4px;
}

#myBtn:hover {
  background-color: #555;
}

.site-footer {
  background-color: #333;
  color: white;
  padding: 30px 20px;
  font-family: Arial, sans-serif;
}

.site-footer p a{
color:white;
text-decoration: none;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-section {
  flex: 1 1 200px;
}

.footer-section h4 {
  margin-bottom: 10px;
  font-size: 18px;
  color:#f4511e;
  text-align: center;
  margin-bottom: 30px;
}

.footer-section a {
  display: block;
  color: white;
  text-decoration: none;
  margin-bottom: 5px;
}

.footer-section a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-section {
    margin-bottom: 20px;
  }

  #hide{
    display: none;
  }
}

h4{
  text-align: center;
}
