body{
	font-family: Verdana;
	position: sticky;
	margin: 0;
	padding: 0;
}
a{
	text-decoration:none;
}
header{
	background-color: #555;
	color: #1876f2;
	padding: 20px;
	overflow: auto;
}
nav ul{
	list-style: none;
	margin: 0;
	padding:0;
	display: flex;
	justify-content: center;
}
nav li {
	margin: 0 10px ;
	color: white;
}
nav a {
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	padding: 10px;
	transition: background-color 0.3s ease;
}
nav a {
	background-color: #555;
}
.hero {
	width: 100%;
	background-image: url('images/Contact.png');
	background-size:  cover;
	background-position: left;
	height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero-text {
	text-align: center;
}
.hero-text h1 {
	font-size: 60px;
	margin: 10px;
}
.hero p{
	font-size: 24px;
	margin: 0px;
}
.ata-atn{
	display: inline-block;
	padding: 10px 20px;
	background-color: #333;
	margin: 30px;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	font-size: 18px;
	text-transform: uppercase;
	transition: background-color 0.3s ease;
}
.ata-atn:hover {
	background-color: #555;
}
.latest-news {
	background-color: #f9f9f9;
	padding: 50px 0;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
}

.news-items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.news-item {
	flex-basis: 30%;
	margin: 20px;
	box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.news-item img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.news-item h3 {
	font-size: 24px;
	margin: 10px;
}

.news-item p {
	font-size: 16px;
	margin: 10px;
	text-align: justify;
}

.read-more {
	display: block;
	padding: 10px;
	background-color: #333;
	color: #fff;
	text-decoration: none;
	text-align: center;
	transition: background-color 0.3s ease;
}

.read-more:hover{
	background-color: #555;
}

/* Style for the main section */

.slider_container {
    position: relative;
    width: 90%;
    height: 40rem;
    margin: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    animation: 10s cubic-bezier(1, 0.95, 0.565, 1) sliding infinite;
}
.slide {
    position: relative;
    min-width: 100%;
    height: 100%;
}
.slide img {
    width: 100%;
    height: 100%;
    background: #b4b4b451;
}
.slide .caption {
    position: absolute;
    left: 0;
    bottom: 85%;
    font-size: 5rem;
    font-weight: 600;
    /* color: #ffffff; */
    text-transform: capitalize;
    background: rgba(0, 0, 0, 0.348);
    backdrop-filter: blur(10px);
    padding: 1rem 5rem;
    border-radius: 0 2rem 2rem 0;
}
.slide one {
    background: rgb(182, 19, 109);
}
.slide two {
    background: rgb(255, 64, 64);
}
.slide three {
    background: rgb(11, 173, 188);
}
.slide four {
    background: rgb(11, 188, 14);
}
.slide five {
    background: rgb(173, 11, 188);
}
@keyframes sliding {
    0% {
      transform: translate(0%);
    }
    20% {
        transform: translate(0%);
    }
    25% {
      transform: translate(-100%);
    }
    45% {
        transform: translate(-100%);
    }
    50% {
     transform: translate(-200%);
    }
    70% {
        transform: translate(-200%);
    }
    75% {
     transform: translate(-300%);
    }
    95% {
        transform: translate(-300%);
    }
    100% {
     transform: translate(-400%);
    }
} 		


    /* Style for the register page*/
      form {
        max-width: 500px;
        margin: 0 auto;
      }

      label {
        display: block;
        margin-bottom: 10px;
      }

      input[type="text"],
      input[type="email"],
      input[type="tel"],
      input[type="number"] {
        width: 100%;
        padding: 10px;
        margin-bottom: 20px;
        border: 2px solid #ccc;
        border-radius: 5px;
      }

      button[type="submit"] {
        display: block;
        margin: 20px auto;
        padding: 10px 20px;
        background-color: #1a1a1a;
        color: #fff;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
      }

      button[type="submit"]:hover {
        background-color: #333;
      }

    h1{
      text-align: center;
      padding: 0px;
      margin-bottom: 20px;

    }
























/* Style for the footer */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 10px;
  margin-top:20px ;
}




/*-----------------------------------------media-kori-----------------------------------------------------*/
@media (max-width: 800px){
			nav{
				width: 100%;
			}
			nav ul{
				list-style: none;
				margin: 0;
				padding:0;
				display: flex;
				justify-content: center;
			}
			nav li {
				width: 95%;
				margin: 0 5px ;
				color: white;
			}
			nav a {
				color: #fff;
				text-decoration: none;
				text-transform: none;
				padding: 10px;
				transition: background-color 0.3s ease;

			}
			nav a {
				background-color: #555;
			}

			.hero {
				background-image: url('images/Contact.png');
				background-size:  cover;
				background-position: center;

				height: 600px;
				display: flex;
				align-items: center;
				justify-content: center;
			}

			.hero-text h1 {
				font-size: 30px;
				margin: 5px;
			}
			.hero p{
				font-size: 24px;
				margin: 10px;
			}
			.ata-atn{
				display: inline-block;
				padding: 10px 20px;
				background-color: #333;
				margin: 30px;
				color: #fff;
				text-decoration: none;
				border-radius: 5px;
				font-size: 18px;
				text-transform: uppercase;
				transition: background-color 0.3e ease;
			}
			.ata-atn:hover {
				background-color: #555;
			}
			.latest-news {
				background-color: #f9f9f9;
				padding: 50px 0;
			}

			.container {
				max-width: 1000px;
				margin: 0 auto;
			}

			.news-items {
				display: flex;
				flex-wrap: wrap;
				justify-content: center;
			}

			.news-item {
				flex-basis: 80%;
				margin: 20px;
				box-shadow: 0 0 10px rgba(0,0,0,0.2);
			}

			.news-item img {
				width: 100%;
				height: 300px;
				object-fit: cover;
			}

			.news-item h3 {
				font-size: 24px;
				margin: 10px;
			}

			.news-item p {
				font-size: 16px;
				margin: 10px;
			}

			.read-more {
				display: block;
				padding: 10px;
				background-color: #333;
				color: #fff;
				text-decoration: none;
				text-align: center;
				transition: background-color 0.3s ease;
			}

			/* Style for the main section */



			/* Style for the footer */
		    footer {
		      background-color: #333;
		      color: #fff;
		      text-align: center;
		      font-size: 14px;
		      padding: 5px;
		    
		    }
}
@media (max-width: 585px) {
    			nav{
				width: 100%;
			}
			nav ul{
				list-style: none;
				margin: 0;
				padding:0;
				display: flex;
				justify-content: left;
			}
			nav li {
				width: 95%;
				margin: 0 5px ;
				color: white;
			}
			nav a {
				color: #fff;
				text-decoration: none;
				text-transform: none;
				padding: 10px;
				transition: background-color 0.3s ease;

			}
			nav a {
				background-color: #555;
			}
			
			.hero-text h1 {
				font-size: 20px;
				margin: 5px;
			}
			.hero p{
				font-size: 24px;
				margin: 10px;
			}
			.ata-atn{
				display: inline-block;
				padding: 10px 20px;
				background-color: #333;
				margin: 30px;
				color: #fff;
				text-decoration: none;
				border-radius: 5px;
				font-size: 18px;
				text-transform: uppercase;
				transition: background-color 0.3s ease;
			}
			.ata-atn:hover {
				background-color: #555;
			}
			.latest-news {
				background-color: #f9f9f9;
				padding: 50px 0;
			}

			.container {
				max-width: 1000px;
				margin: 0 auto;
			}

			.news-items {
				display: flex;
				flex-wrap: wrap;
				justify-content: center;
			}

			.news-item {
				flex-basis: 90%;
				margin: 20px;
				box-shadow: 0 0 10px rgba(0,0,0,0.2);
			}

			.news-item img {
				width: 100%;
				height: 300px;
				object-fit: cover;
			}

			.news-item h3 {
				font-size: 24px;
				margin: 10px;
			}

			.news-item p {
				font-size: 16px;
				margin: 10px;
			}

			.read-more {
				display: block;
				padding: 10px;
				background-color: #333;
				color: #fff;
				text-decoration: none;
				text-align: center;
				transition: background-color 0.3s ease;
			}

			/* Style for the main section */



			/* Style for the footer */
		    footer {
		      background-color: #333;
		      color: #fff;
		      text-align: center;
		      font-size: 14px;
		      padding: 5px;
		    
		    }
    
}
