.carousel{
    height: 100vh;
    overflow: hidden;
    position: relative;
}
.header_left h1{
	color: #06121E;
    font-size: 34px;
    line-height: 38px;
    font-weight: 600;
    margin: 0;
    transition: all .5s linear;
    text-transform: capitalize;
}
.carousel .list .item{
    width: 128px;
    height: 158px;
    position: absolute;
    top: 80%;
    transform: translateY(-70%);
    left: 70%;
    border-radius: 2px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background-position: 50% 50%;
    background-size: cover;
    z-index: 100;
    transition: 1s;
}

.carousel .list .item:nth-child(1),
.carousel .list .item:nth-child(2){
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}

.carousel .list .item:nth-child(3){
    left: 74%;
}

.carousel .list .item:nth-child(4){
    left: calc(70% + 200px);
}

.carousel .list .item:nth-child(5){
    left: calc(55% + 400px);
}

.carousel .list .item:nth-child(6){
    left: calc(55% + 600px);
}

.carousel .list .item:nth-child(n+7){
    left: calc(63% + 800px);
    opacity: 0;
}
.list .item .content{
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    width: 560px;
    text-align: left;
    color: #fff;
    display: none;
}

.list .item:nth-child(2) .content{
    display: block;
}

.content .title{
    font-size: 48px;
    color: #FFFFFF;
    font-weight: 700;
    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
}


@keyframes animate {
    
    from{
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to{
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}
.carousel .dots {
    position: absolute;
    bottom: 40px;
    right: 90px;
    transform: translateX(5%);
    display: flex;
    z-index: 200;
    align-items: center;
    width: 275px;
}
.carousel .dot {
    width: 55px;
    height: 2px;
    /* border-radius: 50%; */
    background: #FFFFFF6B;
    cursor: pointer;
    transition: 0.3s;
}

.carousel .dot.active {
    background: #FF9500;
    /* transform: scale(1.6); */
    border-radius: 50px;
    height: 4px;
}
/* Carousel */

#common_header {
    padding: 160px 0px 80px;
    overflow: hidden;
}
#common_banner{
    height: 400px;
    overflow: hidden;
}
#common_banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomin 80s ease-in infinite;
}
@keyframes zoomin {
  0% {transform: scale(1);}
  50% {transform: scale(1.3);}
  100% {transform: scale(1);}
}

.career_header h1 {
    width: 500px;
}
.header_right p {
    margin: 0;
    width: 430px;
    color: #5D5D5D;
    font-size: 17px;
}
.header_right {
    display: flex;
    justify-content: right;
}
#common_header .row {
    width: 90%;
    margin: auto;
}
.slidersec {
    padding-top: 90px;
}