﻿/*@import url('main-header.css');
@import url('main-footer.css');*/
@import url('gallery.css');

.main-slider {
    position: relative;
}

    .main-slider .auto-container {
        position: relative;
    }

    .main-slider .mouse-btn-down {
        position: absolute;
        left: 50%;
        margin-left: -20px;
        bottom: 20px;
        width: 30px;
        height: 68px;
        cursor: pointer;
        display: block;
        background: url(../images/icons/mouse-icon.png) center center no-repeat;
        z-index: 20;
    }

    .main-slider .mouse-btn-down {
        -webkit-animation: mover 1s infinite alternate;
        animation: mover 1s infinite alternate;
    }

    .main-slider .mouse-btn-down {
        -webkit-animation: mover 1s infinite alternate;
        animation: mover 1s infinite alternate;
    }

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-10px);
    }
}

.main-slider .slide {
    position: relative;
    height: calc(100vh - 160px);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.main-slider h2 {
    position: relative;
    color: #ffffff;
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1em;
    margin-bottom: 20px;
    opacity: 0;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 100ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
}

.main-slider .active h2 {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    transition-delay: 1000ms;
}

.main-slider .text {
    position: relative;
    color: #ffffff;
    font-size: 18px;
    opacity: 0;
    line-height: 1.8em;
    font-weight: 400;
    margin-top: 35px;
    margin-bottom: 32px !important;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 100ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
}

    .main-slider .text.alternate {
        color: #1f1f1f;
    }

.main-slider .active .text {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    transition-delay: 1500ms;
}

.main-slider .link-box {
    opacity: 0;
    width: 100%;
    -webkit-transition: all 1000ms ease;
    -moz-transition: all 100ms ease;
    -ms-transition: all 1000ms ease;
    -o-transition: all 1000ms ease;
    transition: all 1000ms ease;
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
}

.main-slider .active .link-box {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    transition-delay: 2000ms;
}

.main-slider .link-box .theme-btn {
    margin-right: 20px;
}

.main-slider .owl-dots {
    position: absolute;
    left: 0px;
    right: 0;
    margin-left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    bottom: 10px;
}

    .main-slider .owl-dots .owl-dot {
        position: relative;
        width: 12px;
        height: 12px;
        margin: 0px 4px 8px;
        overflow: hidden;
        border-radius: 50px;
        border: 2px solid #ffffff;
        transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -webkit-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        -o-transition: all 500ms ease;
    }

        .main-slider .owl-dots .owl-dot.active,
        .main-slider .owl-dots .owl-dot:hover {
            background-color: #bb0010;
        }

.main-slider .owl-nav {
    position: absolute;
    left: 0px;
    top: 50%;
    z-index: 1;
    width: 100%;
    margin-top: -10px;
}

    .main-slider .owl-nav .owl-prev {
        position: absolute;
        left: 40px;
        color: #ffffff;
        font-size: 38px;
        transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -webkit-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        -o-transition: all 500ms ease;
    }

    .main-slider .owl-nav .owl-next {
        position: absolute;
        right: 40px;
        color: #ffffff;
        font-size: 38px;
        transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -webkit-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        -o-transition: all 500ms ease;
    }

        .main-slider .owl-nav .owl-prev:hover,
        .main-slider .owl-nav .owl-next:hover {
            color: #fa7712;
        }


/*** 

====================================================================
	Welcome Section
====================================================================

***/

.welcome-section {
    position: relative;
    padding: 50px 0px 50px;
}

    .welcome-section .content-column {
        position: relative;
    }

        .welcome-section .content-column .inner-column {
            position: relative;
            padding-top: 0px;
        }

        .welcome-section .content-column h2 {
            position: relative;
            color: #333333;
            font-weight: 700;
            font-size: 22px;
            line-height: 30px;
            margin-bottom: 10px;
        }

        .welcome-section .content-column .bold-text {
            position: relative;
            color: #777777;
            font-weight: 500;
            font-size: 16px;
            margin-top: 15px;
        }

        .welcome-section .content-column .text {
            position: relative;
            color: #777777;
            font-weight: 400;
            font-size: 16px;
            margin-top: 0;
            line-height: 20px;
            max-width: 100%;
            margin-bottom: 15px;
            text-align: justify;
        }

        .welcome-section .content-column p {
            font-size: 15px;
            font-weight: 500;
            color: #000;
            line-height: 18px;
            text-align: justify;
            letter-spacing: 0;
            margin-bottom: 10px;

        }
/*Video Box*/

.video-box {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0px 3px 7px 2px #d8d4d4;
    max-width: 200px;
    width: 200px;
    height: 200px;
    float: right;
    margin: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #bb00104d;
}

    .video-box .video-image {
        position: relative;
        margin: 0px;
        max-width: 80%;
        flex: 1 0 80%;
        background: #fff;
        border-radius: 5px;
        padding: 20px;
        box-shadow: 0 0 6px 2px #ea7b85;
    }

        .video-box .video-image img {
            position: relative;
            width: 100%;
            z-index: 3;
        }

    .video-box .overlay-box {
        position: absolute;
        left: 0px;
        top: 0px;
        width: 100%;
        height: 100%;
        text-align: center;
        overflow: hidden;
        line-height: 80px;
        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;
    }

        .video-box .overlay-box span {
            position: absolute;
            width: 80px;
            height: 80px;
            left: 50%;
            top: 50%;
            z-index: 99;
            color: #ffffff;
            font-weight: 400;
            font-size: 20px;
            text-align: center;
            border-radius: 50%;
            padding-left: 4px;
            display: inline-block;
            margin-top: -50px;
            margin-left: -50px;
            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: #bb0010;
        }

.theme-btn.btn-style-three {
    padding: 6px 20px;
    border-radius: 3px;
    background: #bb0010;
    color: #fff;
    font-weight: 500;
    border: 2px solid transparent;
}

    .theme-btn.btn-style-three:hover {
        background: #bb001030;
        color: #bb0010;
        border: 2px solid #bb0010;
    }

.message-from-section, .section-gallery, .testimonials {
    position: relative;
    padding: 60px 0px 50px;
}

.msg-president {
    width: 100%;
    clear: both;
        min-height: 280px;
}

    .msg-president .presi-img {
        max-width: 200px;
        flex: 1 0 200px;
            min-height: 230px;
        position: relative;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        flex-wrap: wrap;
        border: 5px solid #fff;
        background: #fff;
        border-radius: 2px;
        box-shadow: 0px 2px 9px -1px #dadada;
        overflow: hidden;
        margin: 0px 15px 15px 0px;
        float: left;
    }

        .msg-president .presi-img img {
            max-width: 190px;
            height: 190px;
        }

        .msg-president .presi-img > img + p {
            margin: 0;
            font-size: 16px;
            font-weight: 500;
            color: #000;
            line-height: 20px;
            text-align: center;    padding-top: 8px;
        }

    .msg-president .presi-msg {
        padding: 5px 20px 0;
    }

        .msg-president .presi-msg > b {
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 10px;
        }

        .msg-president .presi-msg > p {
            font-size: 16px;
            line-height: 21px;
            text-align: justify;
            margin-bottom: 5px;
            text-indent: 30px;
        }



.section-video {
    background: #f6f6f6;
    padding: 50px 0px;
}

    .section-video .gallery-block .inner-box .image {
        max-height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        border: 5px solid #fff;
        border-radius: 2px;
        box-shadow: 0 2px 7px 1px #b5b1b1;
        overflow: hidden;
    }

        .section-video .gallery-block .inner-box .image > a.open-says-vdo ~ .gallery-title {
            position: absolute;
            bottom: -100%;
            left: 0;
            right: 0;
            background: #fff;
            padding: 4px 5px;
            font-size: 14px;
            font-weight: 500;
            color: #666;
            z-index: 999;
            text-transform: capitalize;
            -webkit-transition: bottom 0.3s ease-in-out;
            -moz-transition: bottom 0.3s ease-in-out;
            -o-transition: bottom 0.3s ease-in-out;
            transition: bottom 0.3s ease-in-out;
        }

        .section-video .gallery-block .inner-box .image:hover > a.open-says-vdo ~ .gallery-title {
            bottom: 0;
        }

    .section-video .gallery-block .inner-box {
        padding: 8px;
    }

        .section-video .gallery-block .inner-box .image > a.open-says-vdo {
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: #0000005e;
            opacity: 0;
            pointer-events: none;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

            .section-video .gallery-block .inner-box .image > a.open-says-vdo:after {
                content: "\f12b";
                position: relative;
                font-family: Flaticon;
                font-style: normal;
                display: flex;
                align-items: center;
                justify-content: center;
                width: 50px;
                height: 50px;
                margin: 0 auto;
                background-color: #1d52b7;
                opacity: 1;
                border-radius: 50%;
                color: #fff;
            }

        .section-video .gallery-block .inner-box .image:hover > a.open-says-vdo {
            opacity: 1;
            pointer-events: all;
        }

        .section-video .gallery-block .inner-box .overlay-box:before {
            opacity: 0.3;
        }

.section-download-p-r {
    padding: 50px 0px;
}



.section-video .gallery-block .inner-box .image:hover {
    -webkit-box-shadow: 0 4px 5px 0px #908e8e;
    -moz-box-shadow: 0 4px 5px 0px #908e8e;
    box-shadow: 0 4px 5px 0px #908e8e;
}

.download-list {
}

    .download-list .download-item {
        display: flex;
        width: 100%;
        align-items: center;
        justify-content: flex-start;
        margin-bottom: 10px;
        border: 1px solid #e3969d;
        border-radius: 2px;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

        .download-list .download-item > a.download-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 50px;
            flex: 1 0 50px;
            min-height: 45px;
        }

        .download-list .download-item > a.download-info {
            display: flex;
            align-items: center;
            max-width: calc(100% - 50px);
            flex: 1 0 100%;
            min-height: 45px;
        }

        .download-list .download-item > a > svg {
            width: 32px;
            height: 32px;
        }

            .download-list .download-item > a > svg > path {
                fill: #bb001069;
            }

            .download-list .download-item > a > svg > g {
                fill: #bb0010;
            }

        .download-list .download-item > a > p {
            margin: 0;
            color: #bb0010;
        }

        .download-list .download-item:hover {
            box-shadow: 0px 0px 0px 1px #e3969d, 1px 1px 7px 0px #e3969d;
            background: #e3969d47;
        }

.press-release-list {
    display: flex;
    flex-wrap: wrap;
}

    .press-release-list .press-release-item {
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 100%;
        flex: 1 0 100%;
        padding: 10px;
        margin-bottom: 20px;
        border-radius: 3px;
        border: 1px solid #e0e0e0;
        box-shadow: 0 0 16px inset #fcfcfc;
    }

.press-release-item .press-release-icon {
    max-width: 80px;
    flex: 1 0 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .press-release-item .press-release-icon > svg {
        width: 50px;
        height: 50px;
    }

.press-release-item .press-release-info {
    display: flex;
    flex-wrap: wrap;
    font-weight: 500;
    max-width: calc(100% - 80px);
    flex: 1 0 100%;
}

    .press-release-item .press-release-info .span-h4 {
        max-width: 100%;
        flex: 1 0 100%;
        font-size: 16px;
        line-height: 19px;
        margin-bottom: 5px;
        color: #423f3f;
        font-family: 'Roboto', sans-serif;
        text-transform: capitalize;
    }

    .press-release-item .press-release-info .span-p {
        font-size: 14px;
        line-height: 18px;
        color: #bb0010;
    }

.press-release-list .press-release-item:last-child {
    margin-bottom: 0px;
}

.press-release-list .press-release-item:hover {
    box-shadow: 1px 1px 8px 1px rgba(0, 0, 0, 0.05);
}

.scrolling-news {
    height: 100%;
    max-height: 100%;
    display: flex;
}

    .scrolling-news marquee {
        max-height: 100%;
    }

    .scrolling-news .press-release-item .press-release-info {
        max-width: calc(100% - 50px);
        padding-left: 10px;
    }

    .scrolling-news .press-release-item .press-release-icon {
        max-width: 40px;
        flex: 1 0 40px;
    }

    .scrolling-news marquee.press-release-list {
        display: block;
        min-height: 344px;
    }

    .scrolling-news .press-release-item .press-release-icon > svg {
        width: 35px;
        height: 35px;
    }

.ad-box {
    background-color: #fff;
    border: 1px solid #dddfe2;
    border-radius: 3px;
    margin-bottom: 15px;
    pointer-events: all;
    height: 100%;
    position: relative;
}

@media(max-width: 600px) {
    .ad-box {
        display: none;
    }
}

.ad-box .ad-box-close {
    position: absolute;
    right: 0;
    display: flex;
    padding: 2px 3px;
}

.ad-box .ad-info {
    display: none;
    font-size: 13px;
    line-height: 15px;
    padding: 0 5px;
    color: #bb0010;
}

.ad-box-close:hover .ad-info {
    display: block;
}

.ad-box .ad-box-close > button {
    display: flex;
    width: 16px;
    height: 16px;
    line-height: 15px;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: transparent;
    border: 1px solid;
    color: #bb0010;
    font-size: 13px;
    margin-right: 2px;
    cursor: pointer;
    outline: none !important;
}

.ad-box .ad-info-button {
}

.ad-box .ad-clse-button {
}

.ad-box-close:hover {
    background: #bb001042;
}

@media (max-width: 500px) {
    .video-box {
        float: none;
        margin: 0 auto;
    }
}

.scrolling-news .press-release-list .press-release-item:not(:hover) {
    box-shadow: 0 0 16px #fff;
}

.scrolling-news .press-release-list .press-release-item {
    background: none;
}

    .scrolling-news .press-release-list .press-release-item .press-release-info .span-h4 {
        color: #1f1f1f;
    }
    .scrolling-news .press-release-list .press-release-item .press-release-info .span-p{
        color: #666;
    }