.intro1{
    display: flex;
    padding-top: 3%;
    max-width: 1200px;
    width:100%;
}
.introWord1{
    display: flex;
    flex-direction:column;
}
.highlightjob{
    color: #f77f00;
}
.long-content1{
    line-height: 1.5;
    font-size: 16px;
    margin-top: 20px;
    text-align: justify;
}
.title_Btn{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#slider{
    position: relative;
    max-width: 900px;
    max-height: 600px;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    width:100%;
    height: 100%;
    border-radius: 10px;

}

#slider ul {
    position: relative;
    list-style: none;
    height: 100%;
    width: 10000%;
    padding: 0;
    margin: 0;
    transition: all 750ms ease;
    left: 0;
  }
  #slider ul li {
    position: relative;
    height: 100%;
    float: left;
}
#slider ul li img{
    max-width: 900px;
    max-height: 600px;
    width:100%;
    height: 100%;

  }
#slider #prev, #slider #next {
    width: 50px;
    line-height: 50px;
    text-align: center;
    color: white;
    text-decoration: none;
    position: absolute;
    top: 50%;
    border-radius: 50%;
    font-size: 2rem;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    transform: translateY(-50%);
    transition: all 150ms ease;
}
#slider #prev {
    left: 10px;
  }
#slider #next {
    right: 10px;
}

#slider #prev:hover, #slider #next:hover {
    background-color: rgba(0, 0, 0, 0.5);
    text-shadow: 0;
}
.center{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 30px;
}


.pulse{
	animation-name: pulse;
	-webkit-animation-name: pulse;	

	animation-duration: 1.5s;	
	-webkit-animation-duration: 1.5s;

	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
}

@keyframes pulse {
	0% {
		transform: scale(0.9);
		opacity: 0.7;		
	}
	50% {
		transform: scale(1);
		opacity: 1;	
	}	
	100% {
		transform: scale(0.9);
		opacity: 0.7;	
	}			
}

@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scale(0.95);
		opacity: 0.7;		
	}
	50% {
		-webkit-transform: scale(1);
		opacity: 1;	
	}	
	100% {
		-webkit-transform: scale(0.95);
		opacity: 0.7;	
	}			
}

@media(max-width:1000px){
    .intro1{
        max-width: 600px;
        width: 100%;
    }
    #slider{
        max-width: 600px;
        max-height: 400px;
        width:100%;
        height: 100%;
    }
    #slider ul li img{
        max-width: 576px;
        max-height: 400px;
        width:100%;
        height: 100%;
    }
}
@media(max-width:600px){
    .intro1{
        max-width: 380px;
        width: 100%;
    }
    #slider{
        max-width: 300px;
        max-height: 200px;
        width:100%;
        height: 100%;
    }
    #slider ul li img{
        max-width: 300px;
        max-height: 200px;
        width:100%;
        height: 100%;
    }
    .long-content1{
        font-size: 12px;
    }
}