/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Mar 18 2024 | 08:27:19 */
body{
 /*	background: linear-gradient(180deg, #EDF1F4 0%, #C3CBDC 100%); */
	background-color: #f4f5f0 !important; 

}

.slider-heading {
	font-family: 'Times New Roman', Times, serif;
	font-size: 2em; 
	display: block;
	margin: 0.67em 0 0.67em 0;
    font-weight: bold;
    width: 100%;
	line-height: 1.2;
	height:auto;
    color: #fafafa;
    
}

.sliderBody {
    display: flex;
 	align-items:center;
    justify-content: space-around;
    width: 100%;
    height: 746px;
	background: linear-gradient(180deg, #055244 0%, rgba(5, 82, 68, 0.70) 52%, #055244 100%);

}


.slider-text-wrapper{
    width: 400px;
    height: 340px;
    z-index: 4;
}

.sliderText {
    /*border: solid red; */
    width: 400px;
    height: 220px;
    color: #fafafa;
    letter-spacing:1.5px;
    font-size: 1.1rem;
	font-family: 'Times New Roman', Times, serif;
}
.sliderText > p,.slider-heading {
    padding:  0 5px;
}

.slider-container {
   /* border: solid greenyellow; */
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.slider-track {
   /*  border: solid yellow; */
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    transition-duration: .5s;
    transition-timing-function: ease;
}


.sliderButtons {
    display: flex;
    margin: 40px 0 0 0px;
    width: 100px;
}

.sliderButtons img{
	cursor: pointer;	
}
.button-body{
    margin-left: 10px;  
    width: 50px;
}

.button-wrapper {
    width: 50px;
}
.button-wrapper > img {
    width: 100%;
}

.slider-background {
    z-index: 1;
    display: none;
}
.background-active{
    display: block;
    animation: fadeIn ease-in 0.5s;
    animation: zoom ease-in-out 0.4s;
    max-width: 600px;
    position: absolute;
	transform: translateY(-80px);
    height: 500px;
	
}

.slider-background>img, .background-active>img  {
    width: 100%;
}

.slider-image-container {
    width: 500px;
    height: 760px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-image {
    z-index: 1;
    max-width: 400px;
    height: 400px;
}

.slider-image-item {
    width: 100%;
    height: 350px;
    display: none;
	}

.slider-image>img {
    width: 100%;
	object-fit: cover;
	
}

.slider-image-track {
    width: 400px;
    position: relative;
    display: flex;
    flex-direction: column;

}

.active {
    z-index: 2;
    max-width: 400px;
    height: auto;
    display: block;
	margin:-90px 20px 0 0;
	border-radius: 60%;
	box-shadow: -10px -10px  rgba(255,255,255,.7), 10px 10px  rgba(255,255,255,.7);
	

}


@keyframes fadeIn {
    0% {opacity:0;}
    100% {opacity:1;}
  }

  @keyframes zoom {
    0% {max-width: 0;
		height:0;
	  }
    25%{max-width: 300px;
	  height:250px;
	  }
    100% {max-width: 600px;
	  height:500px;}
  }
