.welcome-section {
    position: relative;
    padding: 115px 0px 115px;
    background: rgb(252,107,0);
}

.welcome-bg {
    position: absolute;
    content: '';
    left: 0px;
    top: 0px;
    right: 0px;
    height: 213px;
    background-size: cover;
}

.welcome-section .video {
    position: relative;
    margin: 0 auto;
    text-align: center;
}

.welcome-section .video .play-box {
    position: relative;
    left: 0px;
    top: 0px;
    width: 72px;
    height: 72px;
    text-align: center;
    line-height: 70px;
    display: inline-block;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    box-shadow: inset 0 0 45px rgb(255,255,255);
}

.welcome-section .video .play-box span {
    position: relative;
    width: 72px;
    height: 72px;
    z-index: 99;
    color: #ffffff;
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    padding-left: 4px;
    display: inline-block;
    transition: all 900ms ease;
    -moz-transition: all 900ms ease;
    -webkit-transition: all 900ms ease;
    -ms-transition: all 900ms ease;
    -o-transition: all 900ms ease;
    background-color: rgb(0,0,0);
}

.welcome-section .video .play-box .ripple,
.welcome-section .video .play-box .ripple:before,
.welcome-section .video .play-box .ripple:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 72px;
    height: 72px;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    -webkit-animation: ripple 3s infinite;
    -moz-animation: ripple 3s infinite;
    -ms-animation: ripple 3s infinite;
    -o-animation: ripple 3s infinite;
    animation: ripple 3s infinite;
}

.welcome-section .video .play-box .ripple:before {
    -webkit-animation-delay: .9s;
    -moz-animation-delay: .9s;
    -ms-animation-delay: .9s;
    -o-animation-delay: .9s;
    animation-delay: .9s;
    content: "";
    position: absolute;
}

.welcome-section .video .play-box .ripple:after {
    -webkit-animation-delay: .6s;
    -moz-animation-delay: .6s;
    -ms-animation-delay: .6s;
    -o-animation-delay: .6s;
    animation-delay: .6s;
    content: "";
    position: absolute;
}

@-webkit-keyframes ripple {
    70% {
        box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

@keyframes ripple {
    70% {
        box-shadow: 0 0 0 40px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.default-portfolio-item {
    position: relative;
    margin-bottom: 30px;
}

.default-portfolio-item .inner-box {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.default-portfolio-item .image-box {
    position: relative;
    display: block;
    margin-bottom: 0px;
}

.default-portfolio-item .image-box img {
    position: relative;
    display: block;
    width: 100%;
}

.default-portfolio-item .overlay-box {
    position: absolute;
    left: 1px;
    top: 1px;
    right: 1px;
    bottom: 1px;
    padding: 0px;
    opacity: 0;
    text-align: center;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    -moz-transform: scaleX(0);
    transform: scaleX(0);
    color: rgb(255,255,255);
}

.default-portfolio-item .inner-box:hover .overlay-box {
    top: 0px;
    opacity: 1;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    -moz-transform: scaleX(1);
    transform: scaleX(1);
}

.default-portfolio-item .overlay-inner {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    display: table;
    vertical-align: middle;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.70);
}

.default-portfolio-item .overlay-inner .content {
    position: relative;
    display: table-cell;
    vertical-align: middle;
}

.default-portfolio-item .overlay-inner h3 {
    position: relative;
    font-size: 40px;
    line-height: 1.2em;
    font-weight: 700;
    text-transform: uppercase;
    color: rgb(255,255,255);
}

.default-portfolio-item .overlay-inner h3 a {
    position: relative;
    transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    color: rgb(255,255,255);
}

.default-portfolio-item .overlay-inner h3 a:hover {
    color: rgb(0,0,0);
}

.welcome-section .lower-box {
    position: relative;
    padding-top: 30px;
    text-align: center;
}

.welcome-section .lower-box .text {
    position: relative;
    font-size: 20px;
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.7em;
    margin-bottom: 40px;
    color: rgb(255,255,255);
}

@media only screen and (max-width: 767px) {
    .welcome-section .lower-box .text {
        font-size: 18px;
        line-height: 1.6em;
    }
}
.gallery-section-two{
    background:rgba(0,0,0,0.99);
}
.news-section{
    background:rgb(252,107,0);
}
.sponsors-section{
    background:;
}
