*{
	padding:0px;
	margin:0px;
	box-sizing:border-box;
}

body{
    font-family: 'Courier New', Courier, monospace;
   
}  

.header1{
    background-color:rgb(207, 230, 8);
    margin-top: -20px;
}

.lists{
    justify-content: center;
}

a{
    text-decoration: dotted;
}
/* header section */
header{
    width: 1140px;
    max-width: 80%;
    margin: auto;
    height: 50px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100;
}

header nav a{
    color: #eee;
    margin-right: 5px;
    padding:  5px 10px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 12px;
    transition: 0.2s;
    text-decoration: dotted;
}

header nav a.active, header nav a:hover{
    background: #14ff72cb;
    border-radius: 2px;
}

/* slider section */

.slider{
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
    margin-top: -50px;
}

.slider .list .item{
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0 0 0 0;
}

.slider .list .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider .list .item .content{
    position: absolute;
    top: 20%;
    width: 1140px;
    max-width: 80%;
    left: 50%;
    transform: translateX(-50%);
    padding-right: 30%;
    box-sizing: border-box;
    color: #fff;
    text-shadow: 0 5px 10px #0004;
}

.slider .list .item .content .title,
.slider .list .item .content .type{
    font-size: 5em;
    font-weight: bold;
    line-height: 1.3em;
}

.slider .list .item .content .type{
    color: #14ff72;
}

.slider .list .item .content .description{
    font-size: 14px;
}

.slider .list .item .content .button button{
    border: none;
    background-color: #eee;
    padding: 7px 14px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 500;
    cursor: pointer;
    letter-spacing: 2px;
    transition: 0.4s;
}

.slider .list .item .content .button button:hover{
    background-color: #14ff72cb;
    color: #eee;
}

/* Thumnail section */

.thumbnail{
    display: flex;
    gap: 20px;
    position: absolute;
    bottom: 50px;
    left: 60%;
    width: max-content;
    z-index: 100;
}

.thumbnail .item{
    width: 150px;
    height: 220px;
    flex-shrink: 0;
    position: relative;
}

.thumbnail .item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 5px 0 15px rgba(0,0,0,0.3);
}

/* nextPrevArrows section */
.nextPrevArrows{
    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}

.nextPrevArrows button{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #14ff72cb;
    border: none;
    color: #fff;
    font-family: monospace;
    font-weight: bold;
    cursor: pointer;
    transition: 0.5s;
}

.nextPrevArrows button:hover{
    background-color: #fff;
    color: #000;
}


/* Animation part */
.slider .list .item:nth-child(1){
    z-index: 1;
}

.slider .list .item:nth-child(1) .content .title,
.slider .list .item:nth-child(1) .content .type,
.slider .list .item:nth-child(1) .content .description,
.slider .list .item:nth-child(1) .content .button{
    transform:translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent 0.5s 1s linear 1 forwards;
}

@keyframes showContent{
    to{
        transform:translateY(0px);
        filter: blur(00px);
        opacity: 1;
    }
}

.slider .list .item:nth-child(1) .content .title{
    animation-delay: 0.4s;
}
.slider .list .item:nth-child(1) .content .type{
    animation-delay: 0.6s;
}
.slider .list .item:nth-child(1) .content .description{
    animation-delay: 0.8s;
}
.slider .list .item:nth-child(1) .content .button{
    animation-delay: 1s;
}

/* Animation for next button click */
.slider.next .list .item:nth-child(1) img{
    width: 150px;
    height: 220px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    border-radius: 30px;
    animation: showImage 0.5s linear 1 forwards;
}

@keyframes showImage{
    to{
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

.slider.next .thumbnail .item:nth-last-child(1){
    overflow: hidden;
    animation: showThumbnail 0.5s linear 1 forwards;
}

.slider.prev .list .item img{
    z-index: 100;
}

@keyframes showThumbnail{
    from{
        width: o;
        opacity: 0;
    }
}

.slider.next .thumbnail{
    animation: effectNext .5s linear 1 forwards;
}

@keyframes effectNext{
    from{
        transform: translateX(150px);
    }
}

/* Animation for prev button click */
.slider.prev .list .item:nth-child(2){
    position: absolute;
    bottom: 0;
    left: 0;
    animation: outFrame 0.5s linear 1 forwards;
}

@keyframes outFrame{
    to{
        width: 150px;
        height: 220px;
        bottom: 50px;
        left: 50%;
        border-radius: 20px;
    }
}

.slider.prev .thumbnail .item:nth-child(1){
    overflow: hidden;
    opacity: 0;
    animation:  showThumbnail .5s linear 1 forwards;
}

.slider.prev .list .item:nth-child(1) .content .title,
.slider.prev .list .item:nth-child(1) .content .type,
.slider.prev .list .item:nth-child(1) .content .description,
.slider.prev .list .item:nth-child(1) .content .button{
    animation: contentOut 0.5s 1s linear 1 forwards;
}

@keyframes contentOut{
    to{
        transform: translateY(-150px);
        filter: blur(20px);
        opacity: 0;
    }
}

@media screen and (max-width:678px){
    .slider .list .item .content{
        padding-right: 0;
    }

    .slider .list .item .content .title{
        font-size: 30px;
    }
}




.first1{
    min-height: 100px;
    min-width:200px;
    margin-left: 20px;
}

.first1 h2{
    font-family: Britannic Bold;
    font-weight: 900;
    margin-bottom: 20px;
    color: rgba(78, 12, 12, 0.973);
}

.first1 p{
    line-height: 1.7em;
    font-family: Times New Roman;
}

.first2{
    min-height: 100px;
    min-width:200px;
    align-items: center;
    margin-bottom: 90px;
}

.first2 img{
    align-items: center;
    padding-left: 40px;
    margin-top: 50px;
}

.second1{
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 80px;
    background-color: #14ff72;
    padding-bottom: 100px;
    text-align: center;
}

.second2{
    background-color: rgba(78, 12, 12, 0.973);
    border-radius: 10px;
    padding-top: 40px;
}

.second2 h2{
    font-family: Britannic Bold;
    font-size: bolder;
    font-weight:900;
    color: #14ff72;
}

.second2 h3{
    font-family: Brush Script MT;
    color: #eee;
}

.second2 p{
    line-height: 2.0em;
    color: #eee;
    font-family: 'Times New Roman', Times, serif;
    font-size: 17px;
    margin-bottom: 40px;
}

.third1{
    padding-top: 60px;
}

.third2{
   align-items: center;
   padding-top: 50px;
   padding-right: 70px;
}

.third3 h3{
    font-family: Britannic Bold ;
    color: rgba(78, 12, 12, 0.973);
    font-weight:900;
}

.third1 h2{
    text-align: center;
    font-family: Britannic Bold;
    font-size: bolder;
    font-weight:900;
    color: rgba(78, 12, 12, 0.973);
}



.list{
    justify-content: center;
}

.list ul li a{
    color: aliceblue;
    font-size: bolder;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: 800;
    margin-left: 50px;
}


#third{
    background-image:url("image/image8.jpg");
    min-height:300px;
    background-position: center;
   
}

.overlay{
    background-color: rgba(10, 10, 10, 0.3);
    min-height:600px;
}

.fourth1{
    padding-top: 90px;
    margin-left: 30px;
}

.fourth1 h5{
    font-family: Colonna MT;
    color: #fff;
}

.fourth1 h1{
    font-family: 'Times New Roman', Times, sans-serif;
    color: #eee;
}

.body3{
    background-color: aliceblue;
    padding-bottom: 40px;
    padding-top: 40px;
   
}

.body3 h2{
    text-align: center;
    font-family: Britannic Bold;
    font-size: bolder;
    font-weight:900;
    color: rgba(78, 12, 12, 0.973);
}

.body4{
    background-color:rgba(78, 12, 12, 0.973);
    color: #14ff72;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 40px;
    margin-left: 60px;
    border-radius: 5px;
}

.body4 i{
    border: 1px solid #14ff72;
    padding: 20px;
    color: aliceblue;
    border-radius: 100px;
    background-color: #14ff72;
}

.body4 span{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 17px;
    padding-left: 10px;
}
.body5{
    background-color: #14ff72;
    color:rgba(78, 12, 12, 0.973);
    text-align: center;
    padding-top: 30px;
    margin-left: 60px;
    border-radius: 5px;
}

.body5 span{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 17px;
}

.body5 i{
    border: 1px solid rgba(78, 12, 12, 0.973);
    padding: 20px;
    color: aliceblue;
    border-radius: 60px;
    background-color: rgba(78, 12, 12, 0.973);
}


.body4:hover{
    margin-top: -50px;
}

.body5:hover{
    margin-top: -50px;
}
.fourth1 p{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: #eee;
}

.fifth1{
    padding-top: 100px;
    padding-left: 50px;
}

.fifth1 h2{
    text-align: center;
    font-family: Britannic Bold;
    font-size: bolder;
    font-weight:900;
    color: rgba(78, 12, 12, 0.973);
}



.fifth2 img{
    padding-left: 50px;
    padding-top: 60px;
    margin-bottom: 40px;
}

.fifth3{
    margin-left: -20px;
    padding-top: 60px;
}

.fifth3 h4{
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    color: rgba(78, 12, 12, 0.973);
}

.fifth3 .button1{
    margin-top: 31px;
}

.sixth1{
    padding-top: 80px;
}
.sixth1 h2{
    text-align: center;
    font-family: Britannic Bold;
    font-size: bolder;
    font-weight:900;
    color: rgba(78, 12, 12, 0.973);
    padding-bottom: 30px;
}

.sixth2{
    background-color: aliceblue;
}



.sixth2 img{
    margin-left: 8px;
}

.body{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: black;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin-left: 10px;
    margin-right: 10px;
}



.contact-container{
    max-width: 960;
    min-height: 300px;
    margin: auto;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    background: rgba(78, 12, 12, 0.973);
    box-shadow: 0 0 1rem hsla(0 0 0 /16%);
    overflow: hidden;
    border-radius: 0.5rem;
}

.form-container{
    padding: 20px;
}

.form-container h3{
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-form{
    display: grid;
    row-gap: 1rem;
}

.contact-form input, .contact-form textarea{
    width: 100%;
    border: none;
    outline: none;
    background:rgba(78, 12, 12, 0.973) ;
    padding: 10px;
    font-size: 0.9rem;
    color: #fff;
    border-radius: 0.4rem
}

.contact-form textarea{
    resize: none;
    height: 200px;
}

.contact-form .send-button{
    border: none;
    outline: none;
    background: #14ff72;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
}

.map iframe{
    width: 100%;
    height: 100%;
}

.footer{
    min-height: 200px;
    margin-left:1px;
    margin-right:1px;
    padding-top: 150px;
}

.line{
    border: 1px solid #14ff72cb;
    width: 70px;
    margin-left: 20px;
}

.footers{
    text-align: center;
    color: #14ff72cb;
    background-color:rgba(78, 12, 12, 0.973) ;
    padding-top: 20px;
}

.footers1{
    color: #14ff72cb;
    background-color:rgba(78, 12, 12, 0.973) ;
    padding-top: 20px;
    padding-bottom: 20px;
    
}

.footers1 a{
    margin-left: 20px;
    text-decoration: none;
    color: #14ff72cb;
}

.footers1 h4{
    margin-left: 15px;
}

.footers1 i{
    padding-left: 20px;
}

.footers1 h5{
    margin-left: 20px;
}

.footerss{
    text-align: center;
    background-color: #14ff72;
    color: rgba(78, 12, 12, 0.973) ;
    padding-top: 15px;
}

@media screen and (max-width:678px){
    .header1{
        margin-right: 10px;
    }

    .first2{
        margin-bottom: 40px;
        padding-top: -20px;
        text-align: center;
    }

    .first2 img{
        margin-left: -40px;
        width: 800px;
        height: 200px;
        object-fit: cover;
    }

    .second2{
        padding-top: 30px;
    }

    .fourth1{
        text-align: center;
        margin-left: -1px;
    }

    .fifth1 .fifth3{
        padding-left: 0px;
    }

    .fifth2{
        padding-top: 20px;
    }

    .fifth2 img{
        margin-left: -120px;
    }
    

    .fifth3{
        text-align: center;
      
       
    }

    .sixth2{
        text-align: center;
        padding-top: 30px;
        padding-bottom: 40px;
    }
    .body3{
       padding-left: 20px;
       padding-right: 20px;
    }
    .body4{
        margin-bottom: 30px;
    }

    .body4 span{
        font-size: 19px;
    }

    .body5 span{
        font-size: 19px;
    }

    .body5{
        margin-top: 30px;
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .fifth1 h2{
        margin-left: -20px;
    }

    .fifth2 img{
       margin-right: -30px;
    }

    .dd2{
        padding-right: 10px;
    }

    .contact-container{
        display: block;
        margin-left: 15px;
    }

    .for{
        margin-top: 100px;
    }

    .row{
        margin-left: 10px;
        margin-right: 10px;
    }

    
}