﻿/*** ====================================================
	 Fonts
==========================================***/

@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900|Orbitron:500,700|Ubuntu:400,500,700&amp;display=swap');

/*** 

====================================================================
	 Resources / Css Files
====================================================================

 ***/

@import url('fontawesome-all.css');
@import url('flaticon.css');
@import url('elegent-icon.css');
@import url('animate.css');
@import url('swiper.css');
@import url('owl.css');
/* @import url('jquery.fancybox.min.css'); */

/*** 

====================================================================
    Reset
====================================================================

 ***/

* {
    margin: 0px;
    padding: 0px;
    border: none;
    outline: none;
}

/*** 

====================================================================
	Global Settings
====================================================================

 ***/

body {
    font-size: 14px;
    color: #777777;
    line-height: 1.7em;
    font-weight: 400;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: #f20487;
}

    button,
    a:hover,
    a:focus,
    a:visited {
        text-decoration: none;
        outline: none !important;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    position: relative;
    font-weight: normal;
    margin: 0px;
    background: none;
    line-height: 1.6em;
    font-family: 'Ubuntu', sans-serif;
}

textarea {
    overflow: hidden;
}

p,
.text {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    color: #888888;
    font-weight: 400;
}

.auto-container {
    position: static;
    max-width: 1200px;
    padding: 0px 15px;
    margin: 0 auto;
}

.large-container {
    position: static;
    max-width: 1550px;
    padding: 0px 15px;
    margin: 0 auto;
}

.medium-container {
    max-width: 850px;
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

ul,
li {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

img {
    display: inline-block;
    max-width: 100%;
}

.theme-btn {
    display: inline-block;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.centered {
    text-align: center;
}

.theme-btn .flaticon-arrow {
    display: inherit;
    font-size: inherit;
    margin-left: 3px;
    font-size: 14px;
    -webkit-transform: scaleX(-1) translateY(-1px);
    -moz-transform: scaleX(-1) translateY(-1px);
    -ms-transform: scaleX(-1) translateY(-1px);
    -o-transform: scaleX(-1) translateY(-1px);
    transform: scaleX(-1) translateY(-1px);
}

::-webkit-input-placeholder {
    color: inherit;
}

::-moz-input-placeholder {
    color: inherit;
}

::-ms-input-placeholder {
    color: inherit;
}


::selection {
    background: #ec167f;
    color: #ffffff;
}

::-moz-selection {
    background: #ec167f;
    color: #ffffff;
}

::-webkit-selection {
    background: #ec167f;
    color: #ffffff;
}

/*** =========================================================
	Buttons Style
==============================================================***/

.theme-btn {
    position: relative;
    transition: all 300ms ease;
}

/* Button style one*/
.btn-style-one {
    position: relative;
    padding: 10px 30px;
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 400;
    text-align: center;
    background-color: #ec167f;
    overflow: hidden;
    border-radius: 10px;
}

    .btn-style-one .btn-title {
        position: relative;
    }

    .btn-style-one:hover {
        color: #ec167f;
        -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
        -moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
        -ms-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
        -o-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    }

    .btn-style-one:before {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        content: "";
        background-color: #ffffff;
        -webkit-transform: scale(0, 1);
        -ms-transform: scale(0, 1);
        transform: scale(0, 1);
        -webkit-transform-origin: top right;
        -ms-transform-origin: top right;
        transform-origin: top right;
        -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
        -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
        -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
        transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
        /* easeInOutQuint */
        -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
        -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
        -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
        transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
        /* easeInOutQuint */
    }

    .btn-style-one:hover:before {
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        transform: scale(1, 1);
        -webkit-transform-origin: bottom left;
        -ms-transform-origin: bottom left;
        transform-origin: bottom left;
    }

/* Button style three*/

.btn-style-three {
    position: relative;
    padding: 10px 30px;
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 400;
    text-align: center;
    background-color: #1c94d2;
    overflow: hidden;
    border-radius: 10px;
}

    .btn-style-three .btn-title {
        position: relative;
    }

    .btn-style-three:hover {
        color: #1c94d2;
        -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
        -moz-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
        -ms-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
        -o-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
    }

    .btn-style-three:before {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        content: "";
        background-color: #ffffff;
        -webkit-transform: scale(0, 1);
        -ms-transform: scale(0, 1);
        transform: scale(0, 1);
        -webkit-transform-origin: top right;
        -ms-transform-origin: top right;
        transform-origin: top right;
        -webkit-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
        -moz-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
        -o-transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
        transition: transform 500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
        /* easeInOutQuint */
        -webkit-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
        -moz-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
        -o-transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
        transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
        /* easeInOutQuint */
    }

    .btn-style-three:hover:before {
        -webkit-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        transform: scale(1, 1);
        -webkit-transform-origin: bottom left;
        -ms-transform-origin: bottom left;
        transform-origin: bottom left;
    }

/* List Style One */

.list-style-one {
    position: relative;
}

    .list-style-one li {
        position: relative;
        font-size: 16px;
        line-height: 26px;
        color: #444444;
        font-weight: 400;
        padding-left: 35px;
        margin-bottom: 10px;
    }

        .list-style-one li:before {
            position: absolute;
            left: 0;
            top: 0;
            font-size: 16px;
            content: "\52";
            font-family: 'ElegantIcons';
            color: #e1137b;
        }

/* List Style Two */

.list-style-two {
    position: relative;
}

    .list-style-two li {
        position: relative;
        font-size: 16px;
        line-height: 30px;
        color: #888888;
        font-weight: 400;
        padding-left: 25px;
        margin-bottom: 10px;
    }

        .list-style-two li:before {
            position: absolute;
            left: 0;
            top: 12px;
            height: 6px;
            width: 6px;
            background-color: #e1137b;
            content: "";
        }

/*** 

====================================================================
	Social Icons
====================================================================

 ***/

/*Social Icon One*/

.social-icon-one {
    position: relative;
}

    .social-icon-one li {
        position: relative;
        display: inline-block;
        margin-right: 8px;
        margin-bottom: 10px;
    }

        .social-icon-one li:last-child {
            margin-right: 0;
        }

        .social-icon-one li a .fab {
            position: relative;
            display: block;
            height: 40px;
            width: 40px;
            line-height: 40px;
            text-align: center;
            font-size: 16px;
            color: #a9b1bf;
            background-color: #373851;
            transition: all 900ms ease;
            -moz-transition: all 900ms ease;
            -webkit-transition: all 900ms ease;
            -ms-transition: all 900ms ease;
            -o-transition: all 900ms ease;
        }

        .social-icon-one li a:hover .fab {
            transform: rotate(360deg);
        }

        .social-icon-one li a:hover .fab {
            background-color: #e1137b;
            border-color: #e1137b;
            color: #ffffff;
        }

/*Social Icon Two*/



/*Social Icon Three*/


.theme_color {
    color: #d24c59;
}

.preloader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background-color: #ffffff;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(../images/icons/preloader.svg);
    background-size: 100px;
}

    .preloader:after {
        position: absolute;
        left: 50%;
        top: 50%;
        content: "loading..";
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        margin-top: 45px;
        font-size: 24px;
        line-height: 1em;
        color: #f20487;
        text-decoration: underline;
        font-family: "Ubuntu", sans-serif;
        font-weight: 400;
    }


img {
    display: inline-block;
    max-width: 100%;
    height: auto;
}

.pull-left {
    float: left;
}

.pull-right {
    float: right;
}

/*** 

====================================================================
	Scroll To Top style
====================================================================

***/

.scroll-to-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    color: #ffffff;
    font-size: 18px;
    text-transform: uppercase;
    line-height: 40px;
    text-align: center;
    z-index: 100;
    cursor: pointer;
    background: #e1137b;
    display: none;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

    .scroll-to-top:hover {
        color: #ffffff;
        background: #4c35a9;
    }

.tabs-box {
    position: relative;
}

    .tabs-box .tab {
        display: none;
    }

        .tabs-box .tab.active-tab {
            display: block;
        }

/*** 

====================================================================
	Page Title
====================================================================

***/

.page-title {
    position: relative;
    text-align: center;
    overflow: hidden;
    z-index: 1;
    padding: 120px 0;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}

    .page-title h1 {
        position: relative;
        display: block;
        font-size: 60px;
        color: #ffffff;
        line-height: 1em;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .page-title .bread-crumb {
        position: relative;
    }

        .page-title .bread-crumb li {
            position: relative;
            display: inline-block;
            font-size: 18px;
            line-height: 30px;
            color: #ffffff;
            font-weight: 500;
            cursor: default;
            padding-right: 15px;
            margin-right: 15px;
        }

            .page-title .bread-crumb li:before {
                position: absolute;
                right: -3px;
                font-size: 18px;
                line-height: 30px;
                color: #ffffff;
                font-weight: 400;
                content: "|";
            }

            .page-title .bread-crumb li:last-child {
                padding-right: 0;
                margin-right: 0;
            }

                .page-title .bread-crumb li:last-child:before {
                    display: none;
                }

            .page-title .bread-crumb li a {
                color: #ffffff;
                -webkit-transition: all 300ms ease;
                -moz-transition: all 300ms ease;
                -ms-transition: all 300ms ease;
                -o-transition: all 300ms ease;
                transition: all 300ms ease;
            }

                .page-title .bread-crumb li a:hover {
                    color: #f0c52e;
                }

/*** 

====================================================================
	Section Title
====================================================================

***/

.sec-title {
    position: relative;
    margin-bottom: 70px;
}

    .sec-title .title {
        position: relative;
        display: block;
        font-size: 16px;
        line-height: 1em;
        color: #ff8a01;
        font-weight: 500;
        background: rgb(247, 0, 104);
        background: -moz-linear-gradient(to left, rgba(247, 0, 104, 1) 0%, rgba(68, 16, 102, 1) 25%, rgba(247, 0, 104, 1) 75%, rgba(68, 16, 102, 1) 100%);
        background: -webkit-linear-gradient(to left, rgba(247, 0, 104, 1) 0%, rgba(68, 16, 102, 1) 25%, rgba(247, 0, 104, 1) 75%, rgba(68, 16, 102, 1) 100%);
        background: linear-gradient(to left, rgba(247, 0, 104) 0%, rgba(68, 16, 102, 1) 25%, rgba(247, 0, 104, 1) 75%, rgba(68, 16, 102, 1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F70068', endColorstr='#441066', GradientType=1);
        color: transparent;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-transform: uppercase;
        letter-spacing: 5px;
        margin-bottom: 15px;
    }

    .sec-title h2 {
        position: relative;
        display: inline-block;
        color: #1e1f36;
        text-transform: capitalize;
        font-size: 34px;
        font-weight: 600;
        line-height: 1.3;
    }

    .sec-title .text {
        position: relative;
        font-size: 16px;
        line-height: 28px;
        color: #888888;
        margin-top: 30px;
    }

    .sec-title.light h2,
    .sec-title.light .title {
        color: #ffffff;
        -webkit-text-fill-color: inherit;
    }

.anim-icons {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
}

    .anim-icons.full-width {
        max-width: 100%;
    }

    .anim-icons .icon {
        position: absolute;
        background-position: center;
        background-repeat: no-repeat;
    }

/*** 
===================================================================
	Main Header
====================================================================

***/
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

    .main-header .main-box {
        position: relative;
        padding: 25px 0;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
    }

    .main-header .logo-box {
        position: relative;
        float: left;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
    }

        .main-header .logo-box .logo img {
            display: inline-block;
            max-width: 100%;
            -webkit-transition: all 300ms ease;
            -ms-transition: all 300ms ease;
            -o-transition: all 300ms ease;
            -moz-transition: all 300ms ease;
            transition: all 300ms ease;
        }

    .main-header .nav-outer {
        position: relative;
        float: right;
        -webkit-transition: all 600ms ease;
        -moz-transition: all 600ms ease;
        -ms-transition: all 600ms ease;
        -o-transition: all 600ms ease;
        transition: all 600ms ease;
    }

        .main-header .nav-outer .main-menu {
            position: static;
            float: left;
        }

.main-menu .navigation {
    position: static;
    margin: 0px;
}

    .main-menu .navigation > li {
        position: relative;
        float: left;
        margin-left: 45px;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
    }

        .main-menu .navigation > li > a {
            position: relative;
            display: block;
            font-size: 16px;
            line-height: 30px;
            font-weight: 500;
            padding: 10px 0;
            color: #fefefe;
            opacity: 1;
            text-align: center;
            -webkit-transition: all 300ms ease;
            -moz-transition: all 300ms ease;
            -ms-transition: all 300ms ease;
            -o-transition: all 300ms ease;
            transition: all 300ms ease;
        }

            .main-menu .navigation > li > a:before {
                position: absolute;
                left: 50%;
                bottom: 10px;
                height: 2px;
                width: 0%;
                content: "";
                -webkit-transform: scale(-1);
                -moz-transform: scale(-1);
                -ms-transform: scale(-1);
                -o-transform: scale(-1);
                transform: scale(-1);
                background: rgb(247, 0, 104);
                background: -moz-linear-gradient(to left, rgba(247, 0, 104, 1) 0%, rgba(68, 16, 102, 1) 100%);
                background: -webkit-linear-gradient(to left, rgba(247, 0, 104, 1) 0%, rgba(68, 16, 102, 1) 100%);
                background: linear-gradient(to left, rgba(247, 0, 104) 0%, rgba(68, 16, 102, 1) 100%);
                filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F70068', endColorstr='#441066', GradientType=1);
                -webkit-transition: all 300ms ease;
                -moz-transition: all 300ms ease;
                -ms-transition: all 300ms ease;
                -o-transition: all 300ms ease;
                transition: all 300ms ease;
            }

        .main-menu .navigation > li.current > a:before,
        .main-menu .navigation > li:hover > a:before {
            left: 0;
            width: 100%;
        }

        .main-menu .navigation > li > ul > li.dropdown > a:before {
            font-family: 'Font Awesome 5 Free';
            content: "\f105";
            position: absolute;
            right: 25px;
            top: 8px;
            width: 10px;
            height: 20px;
            display: block;
            line-height: 20px;
            font-size: 16px;
            font-weight: 900;
            text-align: center;
            z-index: 5;
        }

        .main-menu .navigation > li > ul > li > ul > li.dropdown:hover > a:after {
            color: #ffffff;
        }

        .main-menu .navigation > li > ul {
            position: absolute;
            left: 0px;
            top: 100%;
            width: 220px;
            z-index: 100;
            display: none;
            opacity: 0;
            visibility: hidden;
            padding: 20px 0px;
            background: #ffffff;
            border-radius: 3px;
            -webkit-transform-origin: top;
            -moz-transform-origin: top;
            -ms-transform-origin: top;
            -o-transform-origin: top;
            transform-origin: top;
            -moz-transform: rotateX(90deg);
            -webkit-transform: rotateX(90deg);
            -ms-transform: rotateX(90deg);
            -o-transform: rotateX(90deg);
            transform: rotateX(90deg);
            border-bottom: 3px solid #f20487;
            border-radius: 0 0 6px 6px;
            -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
            -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
            -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
            -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
            box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
        }

            .main-menu .navigation > li > ul:before {
                position: absolute;
                content: '';
                left: 0px;
                top: -30px;
                width: 100%;
                height: 30px;
                display: block;
            }

            .main-menu .navigation > li > ul.from-right {
                left: auto;
                right: 0px;
            }

            .main-menu .navigation > li > ul > li {
                position: relative;
                width: 100%;
                margin-bottom: 0px;
            }

                .main-menu .navigation > li > ul > li:last-child {
                    margin-bottom: 0px;
                }

                .main-menu .navigation > li > ul > li > a {
                    position: relative;
                    display: block;
                    padding: 5px 25px;
                    line-height: 24px;
                    font-weight: 400;
                    font-size: 16px;
                    text-transform: capitalize;
                    color: #222222;
                    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-menu .navigation > li > ul > li:hover > a {
                    color: #e1137b;
                }

                .main-menu .navigation > li > ul > li > ul {
                    position: absolute;
                    left: 100%;
                    top: 100%;
                    width: 220px;
                    z-index: 100;
                    display: none;
                    opacity: 0;
                    visibility: hidden;
                    margin-top: -50px;
                    padding: 20px 0px;
                    background: #ffffff;
                    -webkit-transform-origin: top;
                    -moz-transform-origin: top;
                    -ms-transform-origin: top;
                    -o-transform-origin: top;
                    transform-origin: top;
                    -webkit-transform: rotateX(90deg);
                    -moz-transform: rotateX(90deg);
                    -ms-transform: rotateX(90deg);
                    -o-transform: rotateX(90deg);
                    transform: rotateX(90deg);
                    border-bottom: 3px solid #f20487;
                    border-radius: 0 0 6px 6px;
                    -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
                    -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
                    -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
                    -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
                    box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
                }

                    .main-menu .navigation > li > ul > li > ul.from-right {
                        left: auto;
                        right: 0px;
                    }

                    .main-menu .navigation > li > ul > li > ul > li {
                        position: relative;
                        width: 100%;
                        margin-bottom: 0px;
                    }

                        .main-menu .navigation > li > ul > li > ul > li:last-child {
                            margin-bottom: 0px;
                        }

                        .main-menu .navigation > li > ul > li > ul > li > a {
                            position: relative;
                            display: block;
                            padding: 5px 25px;
                            line-height: 24px;
                            font-weight: 400;
                            font-size: 16px;
                            text-transform: capitalize;
                            color: #222222;
                            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-menu .navigation > li > ul > li > ul > li:hover > a {
                            color: #e1137b;
                        }

        .main-menu .navigation > li.dropdown:hover > ul {
            visibility: visible;
            opacity: 1;
            -webkit-transform: rotateX(0deg);
            -moz-transform: rotateX(0deg);
            -ms-transform: rotateX(0deg);
            -o-transform: rotateX(0deg);
            transform: rotateX(0deg);
            -webkit-transition: all 500ms ease;
            -moz-transition: all 500ms ease;
            -ms-transition: all 500ms ease;
            -o-transition: all 500ms ease;
            transition: all 500ms ease;
        }

    .main-menu .navigation li > ul > li.dropdown:hover > ul {
        visibility: visible;
        opacity: 1;
        -moz-transform: rotateX(0deg);
        -webkit-transform: rotateX(0deg);
        -ms-transform: rotateX(0deg);
        -o-transform: rotateX(0deg);
        transform: rotateX(0deg);
        -webkit-transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        transition: all 500ms ease;
    }

.main-menu .navbar-collapse > ul li.dropdown .dropdown-btn {
    position: absolute;
    right: 10px;
    top: 6px;
    width: 30px;
    height: 30px;
    text-align: center;
    color: #ffffff;
    line-height: 28px;
    border: 1px solid #ffffff;
    background-size: 20px;
    cursor: pointer;
    z-index: 5;
    display: none;
}

/* Outer box */
.main-header .outer-box {
    position: relative;
    float: right;
    margin-left: 50px;
}

.main-header .search-box-outer {
    position: relative;
    float: left;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-header .search-box-btn {
    position: relative;
    float: left;
    font-size: 24px;
    line-height: 30px;
    cursor: pointer;
    background: none;
    color: #ffffff;
    font-weight: 400;
    cursor: pointer;
    margin-top: 10px;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.dropdown-toggle::after {
    display: none;
}

.main-header .search-box-outer .dropdown-menu {
    top: 44px !important;
    left: auto !important;
    right: 0;
    padding: 0px;
    width: 280px;
    border-radius: 0px;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    border-top: 3px solid #df6512;
}

.main-header .search-panel .form-container {
    padding: 25px 20px;
}

.main-header .search-panel .form-group {
    position: relative;
    margin: 0px;
}

.main-header .search-panel input[type="text"],
.main-header .search-panel input[type="search"],
.main-header .search-panel input[type="password"],
.main-header .search-panel select {
    display: block;
    width: 100%;
    line-height: 24px;
    padding: 7px 40px 7px 15px;
    height: 40px;
    font-size: 14px;
    border: 1px solid #e0e0e0;
    background: #ffffff;
}

    .main-header .search-panel input:focus,
    .main-header .search-panel select:focus {
        border-color: #25262c;
    }

.main-header .search-panel .search-btn {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 40px;
    height: 40px;
    text-align: center;
    color: #555555;
    font-size: 12px;
    background: none;
    cursor: pointer;
}

.main-header .outer-box .btn-box {
    position: relative;
    float: right;
    padding: 5px 0;
    margin-left: 20px;
}

    .main-header .outer-box .btn-box a {
        position: relative;
        float: right;
        padding: 10px 20px;
        line-height: 20px;
        font-size: 14px;
    }

.nav-outer .mobile-nav-toggler {
    position: relative;
    float: right;
    font-size: 40px;
    line-height: 50px;
    cursor: pointer;
    color: #e1137b;
    margin: 7px 0px 2px;
    display: none;
}

/*** ==========================================================
	Header Style Two
==========================***/
.header-span {
    height: 90px;
    display: block;
}

.header-style-two .main-box {
    padding: 0;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.10);
}

.header-style-two .outer-box,
.header-style-two .logo-box,
.header-style-two .main-menu .navigation > li {
    padding: 20px 0;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

    .header-style-two .search-box-btn,
    .header-style-two .main-menu .navigation > li > a {
        color: #3f4161;
    }

.header-style-two.fixed-header {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.10);
}

.main-header.header-style-two.fixed-header .main-box {
    background-color: #ffffff;
    padding: 0;
}

.header-style-two.fixed-header .outer-box,
.header-style-two.fixed-header .logo-box,
.header-style-two.fixed-header .main-menu .navigation > li {
    padding: 10px 0;
}

/*** ============================================================
	Header Style Three
============================***/

.header-style-three .main-menu .navigation > li {
    margin-left: 35px;
}

.header-style-three .nav-outer {
    float: left;
}

    .header-style-three .nav-outer .main-menu {
        margin-left: 45px;
    }

.header-style-three .outer-box {
    position: relative;
    float: right;
}

    .header-style-three .outer-box .btn-box a {
        border-radius: 3px;
    }

/*** 

====================================================================
		Fixed Header
====================================================================

***/

.main-header.fixed-header .main-box {
    padding: 10px 0;
    background-color: #101130;
}

/*** 

====================================================================
			Mobile Menu
====================================================================

***/

.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    padding-right: 30px;
    max-width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    z-index: 999999;
}

    .mobile-menu .nav-logo {
        position: relative;
        padding: 20px 20px;
        text-align: left;
    }

        .mobile-menu .nav-logo img {
            max-width: 200px;
        }

.mobile-menu-visible {
    overflow: hidden;
}

    .mobile-menu-visible .mobile-menu {
        opacity: 1;
        visibility: visible;
    }

.mobile-menu .menu-backdrop {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
    opacity: 1;
    visibility: visible;
}

.mobile-menu .menu-box {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    max-height: 100%;
    overflow-y: auto;
    background: #ffffff;
    padding: 0px 0px;
    z-index: 5;
    opacity: 0;
    border-radius: 0px;
    visibility: hidden;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: top right;
    -moz-transform-origin: top right;
    -ms-transform-origin: top right;
    -o-transform-origin: top right;
    transform-origin: top right;
    -webkit-transition: all 400ms ease;
    -moz-transition: all 400ms ease;
    -ms-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease;
}

.mobile-menu-visible .mobile-menu .menu-box {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.mobile-menu .close-btn {
    position: absolute;
    right: 15px;
    top: 25px;
    line-height: 30px;
    width: 30px;
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    background-color: #e1137b;
    cursor: pointer;
    z-index: 10;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
}

.mobile-menu-visible .mobile-menu .close-btn {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

.mobile-menu .close-btn:hover {
    opacity: 0.50;
}

.mobile-menu .navigation {
    position: relative;
    display: block;
    border-top: 1px solid rgba(0, 0, 0, 0.10);
}

    .mobile-menu .navigation li {
        position: relative;
        display: block;
        border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    }

        .mobile-menu .navigation li > ul > li:last-child {
            border-bottom: none;
        }

        .mobile-menu .navigation li > ul > li:first-child {
            border-top: 1px solid rgba(0, 0, 0, 0.10);
        }

        .mobile-menu .navigation li > a {
            position: relative;
            display: block;
            line-height: 24px;
            padding: 10px 20px;
            font-size: 16px;
            color: #404040;
            font-weight: 600;
            text-transform: capitalize;
        }

        .mobile-menu .navigation li:hover > a,
        .mobile-menu .navigation li.current > a {
            color: #e1137b;
        }

        .mobile-menu .navigation li.dropdown .dropdown-btn {
            position: absolute;
            right: 0px;
            top: 0px;
            width: 44px;
            height: 44px;
            text-align: center;
            font-size: 16px;
            line-height: 44px;
            color: #404040;
            cursor: pointer;
            z-index: 5;
        }

            .mobile-menu .navigation li.dropdown .dropdown-btn:after {
                content: '';
                position: absolute;
                left: 0px;
                top: 10px;
                width: 1px;
                height: 24px;
                border-left: 1px solid rgba(0, 0, 0, 0.10);
            }

        .mobile-menu .navigation li > ul,
        .mobile-menu .navigation li > ul > li > ul {
            display: none;
        }

/*** 

====================================================================
		Banner Section
====================================================================

***/

.banner-section {
    position: relative;
}



.slide-item {
    position: relative;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 250px 0 200px;
    text-align: center;
}

    .slide-item:before {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background-color: #000000;
        opacity: .70;
        content: "";
    }

.content-box {
    position: relative;
}

    .content-box .title {
        display: block;
        font-size: 28px;
        color: #faaC1D;
        font-weight: 500;
        margin-bottom: 25px;
        opacity: 1;
        -webkit-transform: translateY(100px);
        -moz-transform: translateY(100px);
        -ms-transform: translateY(100px);
        -o-transform: translateY(100px);
        transform: translateY(100px);
        -webkit-transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        transition: all 500ms ease;
    }

.active .content-box .title {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.content-box h2 {
    display: block;
    font-size: 74px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 30px;
    opacity: 1;
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.active .content-box h2 {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    -ms-transition-delay: 300ms;
    -o-transition-delay: 300ms;
    transition-delay: 300ms;
}

.content-box .info-list {
    position: relative;
    margin-bottom: 45px;
    opacity: 1;
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.active .content-box .info-list {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 600ms;
    -moz-transition-delay: 600ms;
    -ms-transition-delay: 600ms;
    -o-transition-delay: 600ms;
    transition-delay: 600ms;
}

.content-box .info-list li {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 26px;
    color: #ffffff;
    font-weight: 400;
    margin: 0 10px;
    text-transform: uppercase;
}

    .content-box .info-list li .icon {
        color: #faaC1D;
        margin-right: 10px;
        float: left;
        font-size: 18px;
        line-height: 26px;
    }

.content-box .btn-box {
    opacity: 0;
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.active .content-box .btn-box {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition-delay: 900ms;
    -moz-transition-delay: 900ms;
    -ms-transition-delay: 900ms;
    -o-transition-delay: 900ms;
    transition-delay: 900ms;
}

.owl-nav {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
}

.owl-next,
.owl-prev {
    position: absolute;
    left: 0;
    top: 0;
    height: 100px;
    width: 30px;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.10);
    font-size: 20px;
    line-height: 100px;
    text-align: center;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}

.owl-next {
    left: auto;
    right: 0;
}

    .owl-next:hover,
    .owl-prev:hover {
        background-color: rgba(255, 255, 255, .90);
        color: #222222;
    }


/*** 

====================================================================
		About Section
====================================================================

***/

.about-section {
    position: relative;
    padding: 120px 0 70px;
}

    .about-section .content-column {
        position: relative;
        margin-bottom: 50px;
    }

        .about-section .content-column .inner-column {
            position: relative;
            padding-right: 80px;
        }

        .about-section .content-column .sec-title {
            position: relative;
            margin-bottom: 20px;
        }

            .about-section .content-column .sec-title .text {
                margin-top: 20px;
            }

            .about-section .content-column .sec-title h2 {
                font-size: 40px;
            }

        .about-section .content-column .list-style-one {
            margin-bottom: 30px;
        }

        .about-section .content-column .btn-box {
            position: relative;
        }

            .about-section .content-column .btn-box a {
                padding: 15px 30px;
                line-height: 20px;
                font-weight: 600;
                font-size: 15px;
            }

    .about-section .image-column {
        position: relative;
        margin-bottom: 50px;
    }

        .about-section .image-column .image-box {
            position: relative;
            padding-left: 80px;
        }

        /*    .about-section .image-column .image-box img {
                position: relative;
                z-index: 1;
                border-radius: 50%;
                border: 15px solid #ffffff;
                box-shadow: 0 0 20px rgba(0, 0, 0, 0.10);
            }*/

        .about-section .image-column .image {
            position: relative;
            margin-bottom: 0;
        }
/*
            .about-section .image-column .image:before {
                position: absolute;
                right: -10%;
                top: -10%;
                height: 120%;
                width: 120%;
                background-image: url(../images/icons/shape-2.png);
                background-repeat: no-repeat;
                background-position: center;
                background-size: 100%;
                -webkit-animation: dizzling 10s infinite;
                -moz-animation: dizzling 10s infinite;
                -ms-animation: dizzling 10s infinite;
                -o-animation: dizzling 10s infinite;
                animation: dizzling 10s infinite;
                -webkit-transition: all 300ms ease;
                -moz-transition: all 300ms ease;
                -ms-transition: all 300ms ease;
                -o-transition: all 300ms ease;
                transition: all 300ms ease;
                content: "";
            }*/

@keyframes dizzling {
    0% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }

    50% {
        -webkit-transform: rotate(5deg);
        -moz-transform: rotate(5deg);
        -ms-transform: rotate(5deg);
        -o-transform: rotate(5deg);
        transform: rotate(5deg);
    }

    100% {
        -webkit-transform: rotate(0);
        -moz-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }
}

.icon-shape-1 {
    width: 484px;
    height: 225px;
    background-image: url(../images/icons/shape-1.png);
}

.icon-shape-2 {
    width: 325px;
    height: 280px;
    background-image: url(../images/icons/shape-2.png);
}

.icon-line-1 {
    width: 128px;
    height: 128px;
    background-image: url(../images/icons/icon-line-1.png);
}

.icon-dots {
    width: 72px;
    height: 60px;
    background-image: url(../images/icons/icon-dots.png);
}

.icon-dots-3 {
    width: 204px;
    height: 114px;
    background-image: url(../images/icons/icon-dots-3.png);
}

.icon-circle-1 {
    width: 500px;
    height: 500px;
    background-image: url(../images/icons/icon-circle-1.png);
    background-size: 100%;
}

.icon-circle-blue {
    width: 300px;
    height: 300px;
    background-image: url(../images/icons/circle-blue.png);
}

.about-section .icon-circle-blue {
    right: -150px;
    bottom: -150px;
    opacity: .70;
    -webkit-animation: fa-spin 30s infinite;
    -moz-animation: fa-spin 30s infinite;
    -ms-animation: fa-spin 30s infinite;
    -o-animation: fa-spin 30s infinite;
    animation: fa-spin 30s infinite;
}

.about-section .icon-dots {
    top: 30%;
}

.about-section .icon-circle-1 {
    left: -200px;
    top: -200px;
    opacity: .05;
}

/***========================================
		Coming Soon
=======================================***/

.coming-soon-section {
    position: relative;
    z-index: 2;
}

    .coming-soon-section .outer-box {
        position: relative;
        display: block;
        padding: 30px 80px;
        background-color: #ffffff;
        text-align: center;
        margin-top: -72px;
        background: rgb(247, 0, 104);
        background: -moz-linear-gradient(to left, rgba(247, 0, 104, 1) 0%, rgba(68, 16, 102, 1) 100%);
        background: -webkit-linear-gradient(to left, rgba(247, 0, 104, 1) 0%, rgba(68, 16, 102, 1) 100%);
        background: linear-gradient(to left, rgba(247, 0, 104) 0%, rgba(68, 16, 102, 1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F70068', endColorstr='#441066', GradientType=1);
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.30);
    }

    .coming-soon-section .timer-column {
        position: relative;
    }

    .coming-soon-section .time-counter {
        position: relative;
    }

    .coming-soon-section .time-countdown {
        position: relative;
    }

        .coming-soon-section .time-countdown .counter-column {
            position: relative;
            display: inline-block;
            margin: 0px 40px;
            width: 100px;
            text-align: center;
            font-size: 18px;
            color: #ffffff;
            font-weight: 500;
        }

            .coming-soon-section .time-countdown .counter-column:before {
                position: absolute;
                content: ':';
                top: 10px;
                right: -50px;
                font-size: 56px;
                line-height: 1em;
                color: #ffffff;
            }

            .coming-soon-section .time-countdown .counter-column:last-child:before {
                display: none;
            }

            .coming-soon-section .time-countdown .counter-column .count {
                position: relative;
                display: block;
                font-size: 60px;
                line-height: 1em;
                color: #ffffff;
                font-weight: 700;
            }

/***=========================================================
		Speakers Section
==========***/
.speakers-section {
    position: relative;
    padding: 60px 0 40px;
}

    .speakers-section:before {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
/*        background-color: rgba(28, 139, 210, .50);*/
        content: "";
    }

.speaker-block {
    position: relative;
    margin-bottom: 40px;
}

    .speaker-block .inner-box {
        position: relative;
        overflow: hidden;
        border-radius: 1rem;
        /* border: 10px solid #ffffff; */
        box-shadow: 0 30px 30px rgba(0, 0, 0, 0.40);
        max-width: 300px;
        margin: 0 auto;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 500ms ease;
    }

        .speaker-block .inner-box:hover {
            box-shadow: none;
        }

    .speaker-block .image-box {
        position: relative;
    }

        .speaker-block .image-box .image {
            position: relative;
            margin-bottom: 0;
        }

            .speaker-block .image-box .image img {
                display: block;
                width: 100%;
                height: 300px;
                object-fit: cover;
                background: #fff;
                -webkit-transition: all 300ms ease;
                -moz-transition: all 300ms ease;
                -ms-transition: all 300ms ease;
                -o-transition: all 300ms ease;
                transition: all 300ms ease;
            }

    .speaker-block .inner-box:hover .image img {
        opacity: .80;
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }

    .speaker-block .info-box .name {
        position: relative;
        display: block;
        font-size: 22px;
        color: #ffffff;
        font-weight: 700;
    }

        .speaker-block .info-box .name a {
            color: #ffffff;
            -webkit-transition: all 300ms ease;
            -moz-transition: all 300ms ease;
            -ms-transition: all 300ms ease;
            -o-transition: all 300ms ease;
            transition: all 300ms ease;
        }

    .speaker-block .info-box .designation {
        position: relative;
        display: block;
        font-size: 13px;
        color: #ffffff;
        font-weight: 400;
        opacity: 1;
    }

    .speaker-block .social-links {
        position: relative;
        opacity: 0;
        -webkit-transform: translateY(20px);
        -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
        -o-transform: translateY(20px);
        transform: translateY(20px);
        -webkit-transition: all 400ms ease;
        -moz-transition: all 400ms ease;
        -ms-transition: all 400ms ease;
        -o-transition: all 400ms ease;
        transition: all 300ms ease;
    }

    .speaker-block .inner-box:hover .social-links {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
        -webkit-transition-delay: 700ms;
        -moz-transition-delay: 700ms;
        -ms-transition-delay: 700ms;
        -o-transition-delay: 700ms;
        transition-delay: 700ms;
    }

    .speaker-block .social-links li {
        position: relative;
        display: inline-block;
        margin-bottom: 10px;
    }

        .speaker-block .social-links li a i {
            position: relative;
            display: block;
            width: 32px;
            height: 32px;
            font-size: 16px;
            line-height: 30px;
            background-color: #ffffff;
            text-align: center;
            -webkit-transition: all 300ms ease;
            -moz-transition: all 300ms ease;
            -ms-transition: all 300ms ease;
            -o-transition: all 300ms ease;
            transition: all 300ms ease;
        }

        .speaker-block .social-links li a:hover i {
            color: #ffffff;
        }

/*** 

====================================================================
	Speakers Section Three
====================================================================

***/
/*.speakers-section-three {
    position: relative;
    padding: 60px 0 60px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}*/

.speakers-section-three {
    position: relative;
    padding: 60px 0 60px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
    background-image: url(../images/overlay.png);
}

.speaker-block-three {
    position: relative;
    margin-bottom: 50px;
}

    .speaker-block-three .inner-box {
        position: relative;
        background-color: #ffffff;
        overflow: hidden;
        padding-bottom: 30px;
        max-width: 300px;
        margin-bottom: 15px !important;
        overflow: hidden;
        box-shadow: 0 20px 30px rgba(0, 0, 0, 0.10);
        -webkit-transition: all 300ms ease;
        -moz-transition: all 600ms ease;
        -ms-transition: all 600ms ease;
        -o-transition: all 600ms ease;
        transition: all 600ms ease;
        margin: 0% auto;
    }

        .speaker-block-three .inner-box:hover {
            box-shadow: 0 0px 5px rgba(0, 0, 0, 0.10);
        }

    .speaker-block-three .image-box {
        position: relative;
        display: block;
        text-align: center;
        padding: 50px 0;
    }

/*        .speaker-block-three .image-box:before {
            position: absolute;
            left: -10px;
            right: -10px;
            top: -4px;
            height: 100%;
            background-image: url(../images/icons/shape-5.png);
            -webkit-transform: scale(-1);
            -moz-transform: scale(-1);
            -ms-transform: scale(-1);
            -o-transform: scale(-1);
            transform: scale(-1);
            background-repeat: no-repeat;
            background-position: right top;
            background-size: cover;
            content: "";*/
        }

        .speaker-block-three .image-box .image {
            position: relative;
            display: inline-block;
            height: 150px;
            width: 150px;
            overflow: hidden;
            border: 4px solid #682372;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.30);
            /* border-radius: 50%; */
            z-index: 9;
            margin-bottom: 0;
            -webkit-transition: all 600ms ease;
            -ms-transition: all 600ms ease;
            -o-transition: all 600ms ease;
            -moz-transition: all 600ms ease;
            transition: all 600ms ease;
        }

    .speaker-block-three .inner-box:hover .image-box .image {
        border-radius: 0px;
    }

    .speaker-block-three .image-box .image img {
        display: block;
        width: 100%;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
    }

    .speaker-block-three .inner-box:hover .image img {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }

    .speaker-block-three .info-box {
        position: relative;
        display: inline-block;
        padding: 10px 30px;
        padding-right: 10px;
        background-color: #f20487;
    }

        .speaker-block-three .info-box:before {
            position: absolute;
            left: 0;
            right: -30px;
            background-color: #f20487;
            content: "";
            top: 0;
            height: 100%;
            -webkit-transform: skew(-30deg);
            -moz-transform: skew(-30deg);
            -ms-transform: skew(-30deg);
            -o-transform: skew(-30deg);
            transform: skew(-30deg);
            border-radius: 0 14px 14px 0;
        }

        .speaker-block-three .info-box .name {
            position: relative;
            font-size: 18px;
            line-height: 1.2em;
            color: #ffffff;
            font-weight: 500;
        }

            .speaker-block-three .info-box .name a {
                color: #ffffff;
                -webkit-transition: all 300ms ease;
                -moz-transition: all 300ms ease;
                -ms-transition: all 300ms ease;
                -o-transition: all 300ms ease;
                transition: all 300ms ease;
            }

                .speaker-block-three .info-box .name a:hover {
                    color: #ffffff;
                }

        .speaker-block-three .info-box .designation {
            position: relative;
            display: block;
            font-size: 14px;
            line-height: 20px;
            color: #ffffff;
            font-weight: 400;
        }

    .speaker-block-three .social-box {
        position: absolute;
        top: 90px;
        transform: translateX(-50px);
        -webkit-transition: all 600ms ease;
        -ms-transition: all 600ms ease;
        -o-transition: all 600ms ease;
        -moz-transition: all 600ms ease;
        transition: all 600ms ease;
    }

        .speaker-block-three .social-box .social-links li {
            margin-bottom: 4px;
        }

    .speaker-block-three .inner-box:hover .social-box {
        transform: translateX(10px);
    }

.speaker-block-two .social-links li {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.speaker-block-three .social-links li a i {
    position: relative;
    display: block;
    width: 32px;
    height: 32px;
    border: 1px solid #eeeeee;
    font-size: 16px;
    line-height: 30px;
    background-color: #ffffff;
    text-align: center;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.speaker-block-three .social-links li a:hover i {
    color: #ffffff;
}

/*** =====================================
	Speker Detail								
======================================***/

.speaker-detail {
    position: relative;
    padding: 120px 0 70px;
}

    .speaker-detail .image-column {
        position: relative;
        margin-bottom: 50px;
    }

        .speaker-detail .image-column .image-box {
            position: relative;
            padding-right: 20px;
        }

        .speaker-detail .image-column .image {
            position: relative;
            margin-bottom: 30px;
            overflow: hidden;
            border: 10px solid #ffffff;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.10);
        }

            .speaker-detail .image-column .image img {
                display: block;
                width: 100%;
            }

    .speaker-detail .info-column {
        position: relative;
    }

        .speaker-detail .info-column .inner-column {
            position: relative;
        }

        .speaker-detail .info-column h1 {
            position: relative;
            font-size: 50px;
            line-height: 1em;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .speaker-detail .info-column h3 {
            position: relative;
            display: block;
            font-size: 40px;
            line-height: 1em;
            font-weight: 600;
            margin-bottom: 20px;
            color: #101130;
        }

        .speaker-detail .info-column h4 {
            position: relative;
            display: block;
            font-size: 24px;
            line-height: 1em;
            font-weight: 500;
            margin-bottom: 20px;
            color: #222222;
        }

        .speaker-detail .info-column h5 {
            position: relative;
            display: block;
            font-size: 18px;
            line-height: 1em;
            font-weight: 500;
            margin-bottom: 10px;
            color: rgba(68, 16, 102, 1);
        }

        .speaker-detail .info-column .text-box {
            position: relative;
        }

        .speaker-detail .info-column p {
            position: relative;
            font-size: 16px;
            line-height: 1.6em;
            color: #888888;
            margin-bottom: 30px;
        }

    .speaker-detail .speaker-session-info {
        position: relative;
        margin-bottom: 30px;
    }

        .speaker-detail .speaker-session-info p {
            margin-bottom: 0;
            color: rgb(247, 0, 104);
        }


    .speaker-detail .bottom-box {
        position: relative;
        padding-left: 80px;
        min-height: 50px;
        margin-bottom: 30px;
    }

/***======================================================
	schedule Section
======================================================***/

.schedule-section {
    position: relative;
    padding: 60px 0 50px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-color: #fafafa;
    overflow: hidden;
}

    .schedule-section .icon-circle-4 {
        right: -200px;
        bottom: 160px;
    }

    .schedule-section .icon-circle-3 {
        left: -375px;
        top: 340px;
        opacity: .30;
    }

.tabs-box {
    position: relative;
}

    .tabs-box .tab {
        display: none;
    }

        .tabs-box .tab.active-tab {
            display: block;
        }

.schedule-tabs {
    position: relative;
}

    .schedule-tabs .btns-box {
        position: relative;
        display: block;
        margin-bottom: 40px;
    }

    .schedule-tabs .tab-buttons {
        position: relative;
        text-align: center;
    }

        .schedule-tabs .tab-buttons li {
            position: relative;
            display: inline-block;
            height: 135px;
            width: 160px;
            border-radius: 20px;
            background-color: #ffffff;
            font-size: 16px;
            line-height: 20px;
            color: #222222;
            font-weight: 600;
            text-align: left;
            padding: 15px 15px;
            padding-top: 70px;
            padding-left: 90px;
            cursor: pointer;
            margin: 0 15px 20px;
            border: 1px solid #dddddd;
            -webkit-transition: all 300ms ease;
            -moz-transition: all 300ms ease;
            -ms-transition: all 300ms ease;
            -o-transition: all 300ms ease;
            transition: all 300ms ease;
        }

            .schedule-tabs .tab-buttons li .day {
                position: absolute;
                left: 0px;
                top: 30px;
                padding: 5px 20px;
                background-color: #222222;
                font-size: 14px;
                line-height: 20px;
                font-weight: 600;
                color: #ffffff;
                border-radius: 0 15px 15px 0;
            }

            .schedule-tabs .tab-buttons li .date {
                position: absolute;
                left: -0;
                top: 80px;
                width: 100px;
                text-align: center;
                font-size: 38px;
                line-height: 20px;
                font-weight: 600;
                color: #222222;
            }

            .schedule-tabs .tab-buttons li .month {
                display: block;
                font-size: 20px;
                line-height: 1em;
                font-weight: 600;
                color: #222222;
                text-transform: uppercase;
            }

            .schedule-tabs .tab-buttons li .year {
                font-size: 30px;
            }

            .schedule-tabs .tab-buttons li.active-btn {
                box-shadow: 0 20px 30px rgba(0, 0, 0, .10);
            }

            .schedule-tabs .tab-buttons li:nth-child(4n + 1) .day {
                background-color: #ffc20b;
            }

            .schedule-tabs .tab-buttons li:nth-child(4n + 2) .day {
                background-color: #40cbb4;
            }

            .schedule-tabs .tab-buttons li:nth-child(4n + 3) .day {
                background-color: #4c35a9;
            }

            .schedule-tabs .tab-buttons li:nth-child(4n + 4) .day {
                background-color: #e6275a;
            }


            .schedule-tabs .tab-buttons li:nth-child(4n + 1) .month,
            .schedule-tabs .tab-buttons li:nth-child(4n + 1) .date {
                color: #ffc20b;
            }

            .schedule-tabs .tab-buttons li:nth-child(4n + 2) .month,
            .schedule-tabs .tab-buttons li:nth-child(4n + 2) .date {
                color: #40cbb4;
            }

            .schedule-tabs .tab-buttons li:nth-child(4n + 3) .month,
            .schedule-tabs .tab-buttons li:nth-child(4n + 3) .date {
                color: #4c35a9;
            }

            .schedule-tabs .tab-buttons li:nth-child(4n + 4) .month,
            .schedule-tabs .tab-buttons li:nth-child(4n + 4) .date {
                color: #e6275a;
            }


            .schedule-tabs .tab-buttons li:nth-child(4n + 1).active-btn {
                box-shadow: 0 0px 30px rgba(255, 194, 11, .30);
                border: 1px solid #ffc20b;
            }

            .schedule-tabs .tab-buttons li:nth-child(4n + 2).active-btn {
                box-shadow: 0 0px 30px rgba(64, 203, 180, .30);
                border: 1px solid #40cbb4;
            }

            .schedule-tabs .tab-buttons li:nth-child(4n + 3).active-btn {
                box-shadow: 0 0px 30px rgba(76, 53, 169, .30);
                border: 1px solid #4c35a9;
            }

            .schedule-tabs .tab-buttons li:nth-child(4n + 4).active-btn {
                box-shadow: 0 0px 30px rgba(230, 39, 90, .30);
                border: 1px solid #e6275a;
            }

.schedule-timeline {
    position: relative;
}

/*=== Schedule Block ===*/

.schedule-block {
    position: relative;
    margin-bottom: 30px;
}

    .schedule-block:after {
        display: table;
        clear: both;
        content: "";
    }

    .schedule-block .inner-box {
        position: relative;
        float: right;
        width: 50%;
        text-align: left;
    }

        .schedule-block .inner-box .inner {
            position: relative;
            padding: 20px 30px 20px;
            background-color: #ffffff;
            border: 1px solid #dddddd;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
            margin-left: 80px;
            border-radius: 20px;
        }

    .schedule-block .inner:before {
        position: absolute;
        top: 0;
        bottom: -30px;
        right: 100%;
        border-left: 2px dashed #dddddd;
        content: "";
        margin-right: 80px;
    }

    .schedule-block .inner:after {
        position: absolute;
        right: 100%;
        top: 35px;
        border-top: 15px solid transparent;
        border-right: 20px solid #ffffff;
        border-bottom: 15px solid transparent;
        content: "";
    }

    .schedule-block .date {
        position: absolute;
        left: -132px;
        width: 100px;
        top: 0px;
        height: 100px;
        background-color: #ffffff;
        text-align: center;
        font-size: 14px;
        line-height: 18px;
        color: #212639;
        font-weight: 500;
        padding: 30px 15px 0;
        border-radius: 50%;
        border: 2px dashed #dddddd;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
    }

    .schedule-block .speaker-info {
        position: relative;
        padding-left: 80px;
        padding-top: 10px;
        min-height: 60px;
    }

        .schedule-block .speaker-info .thumb {
            position: absolute;
            left: 0;
            top: 0;
            width: 60px;
            border-radius: 50%;
            overflow: hidden;
        }

        .schedule-block .speaker-info .name {
            font-size: 16px;
            color: #212639;
            font-weight: 500;
            line-height: 1.2em;
        }

        .schedule-block .speaker-info .designation {
            font-size: 13px;
        }

    .schedule-block h4 {
        position: relative;
        font-size: 22px;
        line-height: 1.2em;
        color: #0f1925;
        font-weight: 600;
        margin-bottom: 15px;
        padding-top: 15px;
    }

        .schedule-block h4 a {
            color: #212639;
            display: inline-block;
            -webkit-transition: all 300ms ease;
            -moz-transition: all 300ms ease;
            -ms-transition: all 300ms ease;
            -o-transition: all 300ms ease;
            transition: all 300ms ease;
        }

            .schedule-block h4 a:hover {
                color: #f14b59;
            }

    .schedule-block .text {
        position: relative;
        font-size: 16px;
        line-height: 26px;
        color: #888888;
        margin-bottom: 15px;
        height:75px;
        overflow:hidden;
    }

    .schedule-block .btn-box {
        position: relative;
        padding: 6px 0;
    }

        .schedule-block .btn-box a {
            padding: 10px 20px;
            line-height: 20px;
            font-size: 14px;
            background-color: #444444;
            color: #ffffff;
            border-top: 2px solid transparent;
            border-bottom: 2px solid transparent;
            border-radius: 5px;
        }

            .schedule-block .btn-box a:hover {
                color: #ffffff;
                /* box-shadow: 0 10px 20px rgba(0,0,0,0.10); */
            }

    .schedule-block.even .inner-box {
        float: left;
        text-align: right;
    }

        .schedule-block.even .inner-box .inner {
            margin-left: 0;
            margin-right: 80px;
        }

    .schedule-block.even .inner:before {
        right: auto;
        left: 100%;
        margin-left: 80px;
        margin-right: 0;
    }

    .schedule-block.even .inner:after {
        right: auto;
        left: 100%;
        border-right: 0;
        border-left: 20px solid #ffffff;
    }

    .schedule-block:last-child .inner:before {
        display: none;
    }

    .schedule-block.even .date {
        left: auto;
        right: -132px;
    }

    .schedule-block.even .speaker-info {
        padding-left: 0;
        padding-right: 80px;
    }

        .schedule-block.even .speaker-info .thumb {
            left: auto;
            right: 0;
        }

    .schedule-block:nth-child(4n + 1) .date,
    .schedule-block:nth-child(4n + 1) .inner:before {
        border-color: #ffc20b;
    }

    .schedule-block:nth-child(4n + 2) .date,
    .schedule-block:nth-child(4n + 2) .inner:before {
        border-color: #40cbb4;
    }

    .schedule-block:nth-child(4n + 3) .date,
    .schedule-block:nth-child(4n + 3) .inner:before {
        border-color: #4c35a9;
    }

    .schedule-block:nth-child(4n + 4) .date,
    .schedule-block:nth-child(4n + 4) .inner:before {
        border-color: #e6275a;
    }

    /* Backgroud */

    .schedule-block:nth-child(4n + 1) .btn-box a {
        background-color: #ffc20b;
    }

        .schedule-block:nth-child(4n + 1) .btn-box a:hover {
            color: #ffc20b;
            border-radius: 0px;
            background: none;
            border-color: #ffc20b;
        }

    .schedule-block:nth-child(4n + 2) .btn-box a {
        background-color: #40cbb4;
    }

        .schedule-block:nth-child(4n + 2) .btn-box a:hover {
            border-radius: 0px;
            color: #40cbb4;
            background: none;
            border-color: #40cbb4;
        }

    .schedule-block:nth-child(4n + 3) .btn-box a {
        background-color: #4c35a9;
    }

        .schedule-block:nth-child(4n + 3) .btn-box a:hover {
            border-radius: 0px;
            color: #4c35a9;
            background: none;
            border-color: #4c35a9;
        }

    .schedule-block:nth-child(4n + 4) .btn-box a {
        background-color: #e6275a;
    }

        .schedule-block:nth-child(4n + 4) .btn-box a:hover {
            border-radius: 0px;
            color: #e6275a;
            background: none;
            border-color: #e6275a;
        }

    /* color */

    .schedule-section.style-three .schedule-block:nth-child(4n + 1) .date,
    .schedule-section.style-two .schedule-block:nth-child(4n + 1) .date,
    .schedule-block:nth-child(4n + 1) h4 a:hover {
        color: #ffc20b;
    }

    .schedule-section.style-three .schedule-block:nth-child(4n + 2) .date,
    .schedule-section.style-two .schedule-block:nth-child(4n + 2) .date,
    .schedule-block:nth-child(4n + 2) h4 a:hover {
        color: #40cbb4;
    }

    .schedule-section.style-three .schedule-block:nth-child(4n + 3) .date,
    .schedule-section.style-two .schedule-block:nth-child(4n + 3) .date,
    .schedule-block:nth-child(4n + 3) h4 a:hover {
        color: #4c35a9;
    }

    .schedule-section.style-three .schedule-block:nth-child(4n + 4) .date,
    .schedule-section.style-two .schedule-block:nth-child(4n + 4) .date,
    .schedule-block:nth-child(4n + 4) h4 a:hover {
        color: #e6275a;
    }

.schedule-section.style-three {
    position: relative;
}

.schedule-tabs.style-three .tab-buttons li {
    float: left;
    width: 33.33%;
    margin: 0;
    box-shadow: none;
    border-radius: 0;
    border-color: transparent;
}

    .schedule-tabs.style-three .tab-buttons li.active-btn {
        z-index: 2;
    }

.schedule-section.style-three .schedule-block .date {
    position: relative;
    left: 0;
    top: 0;
    margin: 0;
    padding: 0;
    border: 0;
    box-shadow: none;
    height: auto;
    width: auto;
    margin-bottom: 20px;
    text-align: left;
    font-size: 16px;
}

.schedule-section.style-three .schedule-block .inner-box {
    width: 100%;
}

    .schedule-section.style-three .schedule-block .inner-box .inner {
        margin: 0;
        padding: 25px 25px 20px;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.10);
        height:280px;
        overflow:hidden;
    }

.inner-box .inner a.icon.fa {
    position: absolute;
    bottom: 3%;
    right: 7%;
}

.schedule-section.style-three .schedule-block .inner:before,
.schedule-section.style-three .schedule-block .inner:after {
    display: none;
}

.schedule-section.style-three .schedule-timeline {
    position: relative;
}


/*** ===================================================
		Event Detail
=====================================================***/

.event-detail {
    position: relative;
    padding: 120px 0 90px;
}

    .event-detail .auto-container {
        max-width: 1000px;
    }

    .event-detail .image-box {
        position: relative;
        margin-bottom: 30px;
    }

        .event-detail .image-box .image {
            position: relative;
            margin-bottom: 0;
        }

            .event-detail .image-box .image img {
                display: block;
                width: 100%;
                height: auto;
            }

    .event-detail .content-box {
        position: relative;
    }

    .event-detail .upper-info {
        position: relative;
        margin-bottom: 20px;
    }

        .event-detail .upper-info li {
            position: relative;
            display: inline-block;
            font-size: 14px;
            line-height: 24px;
            color: #222222;
            font-weight: 500;
            text-transform: uppercase;
            padding-left: 25px;
            margin-right: 20px;
        }

        .event-detail .upper-info .icon {
            position: absolute;
            left: 0;
            top: 0;
            font-size: 16px;
            line-height: 24px;
            color: #e1137b;
        }

    .event-detail .content-box h2 {
        display: block;
        font-size: 32px;
        line-height: 1.2em;
        color: #222222;
        font-weight: 700;
        margin-bottom: 25px;
    }

    .event-detail .speaker-info {
        position: relative;
        padding-left: 75px;
        min-height: 60px;
        margin-bottom: 25px;
    }

        .event-detail .speaker-info .thumb {
            position: absolute;
            left: 0;
            top: 0;
            width: 60px;
            border-radius: 50%;
            overflow: hidden;
        }

        .event-detail .speaker-info .name {
            font-size: 16px;
            line-height: 30px;
            font-weight: 500;
            color: #222222;
        }

        .event-detail .speaker-info .designation {
            font-size: 14px;
            line-height: 20px;
        }

    .event-detail .content-box p {
        position: relative;
        display: block;
        font-size: 16px;
        line-height: 30px;
        color: #888888;
        font-weight: 400;
        margin-bottom: 30px;
    }

    .event-detail .two-column {
        position: relative;
    }

        .event-detail .two-column .column {
            margin-bottom: 30px;
        }

        .event-detail .two-column .image {
            position: relative;
            margin-bottom: 0;
        }

            .event-detail .two-column .image img {
                display: block;
                width: 100%;
            }

        .event-detail .two-column h4 {
            font-size: 20px;
            line-height: 1.2em;
            color: #222222;
            font-weight: 500;
            margin-bottom: 20px;
            margin-top: 20px;
        }

/***==========================================
		Fun Fact Section
==========================================***/

.fun-fact-section {
    position: relative;
    padding: 50px 0px;
}

    .fun-fact-section:before {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        background-image: url(../images/icons/pattern-1.jpg);
        content: "";
        opacity: .10;
    }

    .fun-fact-section .fact-counter {
        position: relative;
    }

    .fun-fact-section .counter-column {
        position: relative;
        text-align: center;
/*        margin-bottom: 50px;*/
    }

    .fun-fact-section .count-box {
        position: relative;
        font-size: 80px;
        line-height: 1em;
        color: #222222;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }

        .fun-fact-section .count-box .icon {
            position: relative;
            display: inline-block;
            font-size: 60px;
            color: #ffffff;
            margin-bottom: 20px;
            height: 120px;
            width: 120px;
            line-height: 120px;
            border-radius: 50%;
            font-weight: 400;
            -webkit-transition: all 600ms ease;
            -ms-transition: all 600ms ease;
            -o-transition: all 600ms ease;
            -moz-transition: all 600ms ease;
            transition: all 600ms ease;
            background-color: #222222;
            box-shadow: 5px 10px 30px rgba(0, 0, 0, 0.10);
        }

        .fun-fact-section .count-box:hover .icon {
            transform: rotateY(360deg);
        }

        .fun-fact-section .count-box .count-text {
            position: relative;
            display: block;
            font-size: 60px;
            line-height: 1em;
            color: #15212f;
            text-shadow: 10px 10px 10px rgba(0, 0, 0, 0.10);
            font-weight: 600;
            margin-bottom: 10px;
        }

        .fun-fact-section .count-box .counter-title {
            position: relative;
            display: block;
            font-size: 18px;
            line-height: 22px;
            font-weight: 700;
            color: #222222;
        }

    .fun-fact-section .counter-column:nth-child(4n + 1) .count-box .icon {
        background-color: #ffc20b;
    }

    .fun-fact-section .counter-column:nth-child(4n + 2) .count-box .icon {
        background-color: #40cbb4;
    }

    .fun-fact-section .counter-column:nth-child(4n + 3) .count-box .icon {
        background-color: #4c35a9;
    }

    .fun-fact-section .counter-column:nth-child(4n + 4) .count-box .icon {
        background-color: #e6275a;
    }

    .fun-fact-section .counter-column:nth-child(4n + 1) .counter-title {
        color: #ffc20b;
    }

    .fun-fact-section .counter-column:nth-child(4n + 2) .counter-title {
        color: #40cbb4;
    }

    .fun-fact-section .counter-column:nth-child(4n + 3) .counter-title {
        color: #4c35a9;
    }

    .fun-fact-section .counter-column:nth-child(4n + 4) .counter-title {
        color: #e6275a;
    }

    .fun-fact-section.style-two {
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
    }

/*        .fun-fact-section.style-two:before {
            background: #1c94d2;
            opacity: 0;
        }*/

        .fun-fact-section.style-two .count-box .count-text {
            color: #ffffff;
        }

/*** =====================================
		Video Section
===========================================***/

.video-section {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0 140px;
    background-attachment: fixed;
}

    .video-section:before {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background: rgb(247, 0, 104);
        background: -moz-linear-gradient(to left, rgba(247, 0, 104, 1) 0%, rgba(68, 16, 102, 1) 100%);
        background: -webkit-linear-gradient(to left, rgba(247, 0, 104, 1) 0%, rgba(68, 16, 102, 1) 100%);
        background: linear-gradient(to left, rgba(247, 0, 104) 0%, rgba(68, 16, 102, 1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#F70068', endColorstr='#441066', GradientType=1);
        opacity: .70;
        content: "";
    }

    .video-section .content-box {
        position: relative;
        text-align: center;
    }

        .video-section .content-box .text {
            position: relative;
            display: block;
            font-size: 18px;
            line-height: 26px;
            color: #ffbc00;
            font-weight: 500;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .video-section .content-box h2 {
            display: block;
            font-size: 48px;
            line-height: 1.2em;
            color: #ffffff;
            font-weight: 700;
        }

    .video-section .play-now {
        /* position: relative;
	display: inline-block;
	margin-top: 50px; */
        position: relative;
        display: inline-block;
        margin-top: 50px;
        margin: 0% auto;
        text-align: center;
        display: flex;
    }

        .video-section .play-now .icon {
            height: 100px;
            width: 100px;
            line-height: 100px;
            background-color: #ffbc00;
            padding-left: 0;
            font-size: 50px;
            margin: 0% auto;
        }

.play-now {
    position: relative;
    display: block;
    z-index: 9;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

    .play-now .icon {
        position: relative;
        display: inline-block;
        height: 80px;
        width: 80px;
        text-align: center;
        line-height: 80px;
        background-color: #000000;
        color: #ffffff;
        z-index: 1;
        padding-left: 5px;
        font-size: 24px;
        display: block;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        border-radius: 50%;
        -webkit-box-shadow: 0 0px 10px 0 rgba(255, 255, 255, .3);
        -moz-box-shadow: 0 0px 10px 0 rgba(255, 255, 255, .3);
        -ms-box-shadow: 0 0px 10px 0 rgba(255, 255, 255, .3);
        -o-box-shadow: 0 0px 10px 0 rgba(255, 255, 255, .3);
        box-shadow: 0 0px 10px 0 rgba(255, 255, 255, .3);
        -webkit-transform-origin: center;
        -moz-transform-origin: center;
        -ms-transform-origin: center;
        -o-transform-origin: center;
        transform-origin: center;
    }

    .play-now .ripple,
    .play-now .ripple:before,
    .play-now .ripple:after {
        position: absolute;
        top: 50%;
        left: 50%;
        height: 70px;
        width: 70px;
        -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-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        border-radius: 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;
    }

        .play-now .ripple:before {
            -webkit-animation-delay: .9s;
            -moz-animation-delay: .9s;
            -ms-animation-delay: .9s;
            -o-animation-delay: .9s;
            animation-delay: .9s;
            content: "";
            position: absolute;
        }

        .play-now .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 70px 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 70px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/*** ==========================================
		Clients Section
==========================***/
.clients-section {
    position: relative;
    padding: 60px 0 50px;
}

    .clients-section:before {
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background-image: url(../images/icons/icon-dots-2.png);
        content: "";
        opacity: .02;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        -webkit-transform: scale(-1);
        -moz-transform: scale(-1);
        -ms-transform: scale(-1);
        -o-transform: scale(-1);
        transform: scale(-1);
    }

    .clients-section .sponsors-outer {
        position: relative;
        margin-bottom: 50px;
    }

        .clients-section .sponsors-outer .owl-dots,
        .clients-section .sponsors-outer .owl-nav {
            display: none;
        }

        .clients-section .sponsors-outer .client-block {
            position: relative;
            margin-bottom: 30px;
        }

        .clients-section .sponsors-outer .image-box {
            position: relative;
            text-align: center;
            margin-bottom: 0;
            border: 1px solid #dddddd;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.10);
            background-color: #ffffff;
            -webkit-transition: all 300ms ease;
            -moz-transition: all 300ms ease;
            -ms-transition: all 300ms ease;
            -o-transition: all 300ms ease;
            transition: all 500ms ease;
        }

            .clients-section .sponsors-outer .image-box:hover {
                box-shadow: none;
            }

            .clients-section .sponsors-outer .image-box img {
                max-width: 50%;
                width: auto;
                display: inline-block;
                opacity: 1;
                -webkit-transition: all 300ms ease;
                -moz-transition: all 300ms ease;
                -ms-transition: all 300ms ease;
                -o-transition: all 300ms ease;
                transition: all 300ms ease;
            }

            .clients-section .sponsors-outer .image-box:hover img {
                opacity: .70;
            }

        .clients-section .sponsors-outer h3 {
            display: inline-block;
            font-size: 20px;
            line-height: 1.2em;
            background-color: #ec167f;
            color: #ffffff;
            padding: 10px 30px;
            font-weight: 700;
            margin-bottom: 20px;
            border-radius: 10px;
        }

        .clients-section .sponsors-outer:nth-child(3) h3 {
            background-color: #1d95d2;
        }

        .clients-section .sponsors-outer:nth-child(2) h3 {
            background-color: #40cbb4;
        }

    .clients-section .icon-dots-3 {
        left: -60px;
        top: 230px;
    }

    .clients-section .icon-circle-blue {
        left: -370px;
        top: 500px;
        opacity: .50;
        -webkit-animation: fa-spin 30s infinite alternate;
        -moz-animation: fa-spin 30s infinite alternate;
        -ms-animation: fa-spin 30s infinite alternate;
        -o-animation: fa-spin 30s infinite alternate;
        animation: fa-spin 30s infinite alternate;
    }

/***===========================
		Main Footer
===========================***/
.main-footer {
/*    position: relative;
    background-color: #101130;
    background-image: url(../images/background/9.jpg);*/
}

    .main-footer .widgets-section {
        position: relative;
        background-repeat: no-repeat;
        background-position: center;
        background-size: cover;
        padding: 60px 0 10px;
    }

    .main-footer .footer-column {
        position: relative;
        margin-bottom: 40px;
    }

    .main-footer .footer-widget {
        position: relative;
    }

    .main-footer .footer-column .widget-title {
        position: relative;
        font-size: 24px;
        font-weight: 500;
        color: #ffffff;
        line-height: 30px;
        padding-bottom: 10px;
        margin-bottom: 30px;
    }

        .main-footer .footer-column .widget-title:before {
            position: absolute;
            left: 0;
            bottom: 0;
            height: 1px;
            width: 40px;
            background-color: #f70068;
            content: '';
        }

    .main-footer .about-widget {
        position: relative;
    }

    .main-footer .logo {
        position: relative;
        margin-bottom: 5px;
        top: -20px;
    }

    .main-footer .footer-logo figure {
        margin: 0;
    }

    .main-footer .footer-logo img {
        display: block;
        max-width: 100%;
    }

    .main-footer .about-widget .text {
        position: relative;
        margin-bottom: 30px;
    }

        .main-footer .about-widget .text p {
            font-size: 14px;
            line-height: 24px;
            color: #aaaaaa;
            font-weight: 400;
            margin-bottom: 30px;
        }

/*=== User LInks ===*/

.useful-links {
    position: relative;
    padding-left: 50px;
}

.user-links li {
    position: relative;
    display: block;
    margin-bottom: 5px;
}

    .user-links li a {
        position: relative;
        display: block;
        font-size: 14px;
        line-height: 30px;
        color: #ffffff;
        font-weight: 400;
        padding: 0 15px;
        border-left: 1px solid #f70068;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
    }

        .user-links li a:hover {
            color: #f70068;
        }

.main-footer .contact-list {
    position: relative;
}

    .main-footer .contact-list li {
        position: relative;
        padding-left: 40px;
        margin-bottom: 25px;
    }

        .main-footer .contact-list li:last-child {
            margin-bottom: 0;
        }

        .main-footer .contact-list li .icon {
            position: absolute;
            left: 0;
            top: 0;
            font-size: 23px;
            line-height: 25px;
            color: #ffffff;
        }

        .main-footer .contact-list li .text {
            display: block;
            font-size: 14px;
            line-height: 24px;
            color: #ffffff;
            font-weight: 400;
        }

            .main-footer .contact-list li .text a {
                color: #ffffff;
                -webkit-transition: all 300ms ease;
                -moz-transition: all 300ms ease;
                -ms-transition: all 300ms ease;
                -o-transition: all 300ms ease;
                transition: all 300ms ease;
            }

                .main-footer .contact-list li .text a:hover {
                    color: #f70068;
                }

/*=== Footer Bottom ===*/
.main-footer .footer-bottom {
    position: relative;
    width: 100%;
    background-color: rgba(255, 255, 255, .10);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 18px 0;
}

    .main-footer .footer-bottom .inner-container {
        position: relative;
    }

    .main-footer .footer-bottom .copyright-text {
        position: relative;
    }

        .main-footer .footer-bottom .copyright-text p {
            position: relative;
            line-height: 20px;
            font-size: 16px;
            color: #ffffff;
            font-weight: 400;
            margin-bottom: 0;
        }

        .main-footer .footer-bottom .copyright-text a {
            color: #ffffff;
            font-weight: 600;
            text-decoration: underline;
            -webkit-transition: all 300ms ease;
            -moz-transition: all 300ms ease;
            -ms-transition: all 300ms ease;
            -o-transition: all 300ms ease;
            transition: all 300ms ease;
        }

            .main-footer .footer-bottom .copyright-text a:hover {
                color: #f70068;
            }

    .main-footer .footer-bottom .footer-nav {
        position: relative;
        float: right;
    }

        .main-footer .footer-bottom .footer-nav ul {
            position: relative;
            padding: 15px 0;
        }

            .main-footer .footer-bottom .footer-nav ul li {
                position: relative;
                float: left;
                margin-left: 10px;
                font-family: "Oswald", sans-serif;
            }

                .main-footer .footer-bottom .footer-nav ul li a {
                    position: relative;
                    display: block;
                    font-size: 14px;
                    line-height: 20px;
                    color: #ffffff;
                    font-weight: 400;
                    padding: 5px 10px;
                    text-transform: uppercase;
                    background-color: #333333;
                    -webkit-transition: all 300ms ease;
                    -moz-transition: all 300ms ease;
                    -ms-transition: all 300ms ease;
                    -o-transition: all 300ms ease;
                    transition: all 300ms ease;
                }

                    .main-footer .footer-bottom .footer-nav ul li a:hover {
                        color: #f70068;
                        box-shadow: 0 0 10px rgba(0, 0, 0, 0.20);
                    }

/*** ==========================================
	Sidebar Page Container
===========================================***/

/* Sidebar Title */

.sidebar-title {
    position: relative;
    display: block;
    font-size: 24px;
    line-height: 1.2em;
    color: #333333;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #eeeeee;
}

/*Search Box Widget*/

.sidebar .search-box {
    margin-bottom: 60px;
}

    .sidebar .search-box .form-group {
        position: relative;
        margin: 0px;
    }

        .sidebar .search-box .form-group input[type="text"],
        .sidebar .search-box .form-group input[type="search"] {
            position: relative;
            padding: 20px 50px 20px 30px;
            border: 2px solid #eeeeee;
            background: #ffffff;
            display: block;
            font-size: 15px;
            line-height: 18px;
            width: 100%;
            height: 60px;
            color: #333333;
            -webkit-transition: all 500ms ease;
            -moz-transition: all 500ms ease;
            -ms-transition: all 500ms ease;
            -o-transition: all 500ms ease;
            transition: all 500ms ease;
        }

            .sidebar .search-box .form-group input[type="text"]:focus,
            .sidebar .search-box .form-group input[type="search"]:focus {
                color: #666666;
            }

        .sidebar .search-box .form-group button {
            position: absolute;
            right: 0;
            top: 0;
            height: 60px;
            width: 60px;
            display: block;
            font-size: 18px;
            color: #888888;
            line-height: 60px;
            font-weight: normal;
            background: #eeeeee;
            z-index: 9;
            cursor: pointer;
        }

            .sidebar .search-box .form-group button:hover {
                color: #e1137b;
            }

/*Post Widget*/

.sidebar .popular-posts .post {
    position: relative;
    margin-bottom: 20px;
}

    .sidebar .popular-posts .post .post-inner {
        position: relative;
        padding-left: 110px;
        min-height: 90px;
    }

    .sidebar .popular-posts .post .post-thumb {
        position: absolute;
        left: 0px;
        top: 0px;
        width: 90px;
    }

        .sidebar .popular-posts .post .post-thumb img {
            display: block;
            width: 100%;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

    .sidebar .popular-posts .post .text {
        position: relative;
        font-size: 18px;
        line-height: 26px;
        font-weight: 600;
        color: #888888;
        margin: 0px;
    }

        .sidebar .popular-posts .post .text a {
            color: #3f4161;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

    .sidebar .popular-posts .post a:hover {
        color: #e1137b;
    }

.sidebar .popular-posts .post-info {
    position: relative;
    font-size: 16px;
    color: #7f8897;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 5px;
}

/* Blog Categories */

.blog-categories {
    position: relative;
}

    .blog-categories li {
        position: relative;
    }

        .blog-categories li a {
            position: relative;
            display: block;
            color: #333333;
            font-size: 18px;
            line-height: 30px;
            font-weight: 400;
            margin-bottom: 10px;
            -webkit-transition: all 500ms ease;
            -moz-transition: all 500ms ease;
            -ms-transition: all 500ms ease;
            -o-transition: all 500ms ease;
            transition: all 500ms ease;
        }

            .blog-categories li a span {
                float: right;
            }


            .blog-categories li a:hover {
                color: #e1137b;
            }

/*Popular Tags*/




/* Header Top */

.header-top {
    position: relative;
    background-color: #ec167f;
    -webkit-transition: all 600ms ease;
    -ms-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    -moz-transition: all 600ms ease;
    transition: all 600ms ease;
}

    .header-top .top-left {
        position: relative;
        padding: 15px 0px;
    }

    .header-top .text {
        position: relative;
        color: #ffffff;
        font-size: 16px;
    }

    .header-top .top-right {
        position: relative;
    }

.header-span.style-two {
    height: 145px;
}

.header-top .social-links {
    position: relative;
    padding: 16px 0px;
    float: left;
}

    .header-top .social-links li {
        position: relative;
        margin-left: 18px;
        display: inline-block;
    }

        .header-top .social-links li a {
            position: relative;
            color: #ffffff;
            font-size: 14px;
            -webkit-transition: all 0.3s ease;
            -moz-transition: all 0.3s ease;
            -ms-transition: all 0.3s ease;
            -o-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

            .header-top .social-links li a:hover {
                color: #4c35a9;
            }

.header-top .register-btn {
    position: relative;
    color: #ffffff;
    float: left;
    font-size: 16px;
    padding: 16.5px 30px;
    margin-left: 25px;
    background-color: #1c94d2;
}

.main-header.header-style-two.alternate-two {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
}

    .main-header.header-style-two.alternate-two .outer-box .search-box-btn,
    .main-header.header-style-two.alternate-two .main-menu .navigation > li > a {
        color: #ffffff;
    }

    .main-header.header-style-two.alternate-two.fixed-header .outer-box .search-box-btn,
    .main-header.header-style-two.alternate-two.fixed-header .main-menu .navigation > li > a {
        color: #000000;
    }

    .main-header.header-style-two.alternate.fixed-header .header-top,
    .main-header.header-style-two.alternate-two.fixed-header .header-top-two {
        display: none;
    }

    .main-header.header-style-two.alternate-two .main-box {
        position: fixed;
        width: 100%;
    }


.header-top-two {
    position: relative;
    border-bottom: 1px solid rgba(245, 245, 245, 0.50);
}

    .header-top-two .top-left {
        position: relative;
        float: left;
    }

        .header-top-two .top-left .links {
            position: relative;
        }

            .header-top-two .top-left .links li {
                position: relative;
                margin-right: 18px;
                padding: 13px 0px;
                padding-right: 22px;
                display: inline-block;
                border-right: 1px solid rgba(245, 245, 245, 0.50);
            }

                .header-top-two .top-left .links li:last-child {
                    border-right: none;
                }

                .header-top-two .top-left .links li a {
                    position: relative;
                    font-size: 15px;
                    font-weight: 400;
                    color: #ffffff;
                    padding-left: 24px;
                }

                    .header-top-two .top-left .links li a .icon {
                        position: absolute;
                        left: 0px;
                        color: #ec167f;
                    }

    .header-top-two .top-right {
        position: relative;
        float: right;
    }

        .header-top-two .top-right .social-icons {
            position: relative;
            float: left;
        }

            .header-top-two .top-right .social-icons li {
                position: relative;
                margin-left: 15px;
                padding: 13px 0px;
                display: inline-block;
            }

                .header-top-two .top-right .social-icons li a {
                    position: relative;
                    color: #ffffff;
                    font-size: 16px;
                }


/* Styled Form */

.styled-form {
    position: relative;
}

    .styled-form .submit-text {
        font-size: 15px;
        color: #9e9e9e;
        font-weight: 400;
        margin-top: 10px;
    }

    .styled-form .form-group {
        position: relative;
        margin-bottom: 15px;
        font-size: 14px;
        color: #222222;
    }

        .styled-form .form-group.social-icon-one {
            padding-top: 8px;
        }

.checkout-section .styled-form .form-group {
    position: relative;
    margin-bottom: 20px;
}

.styled-form .form-group .check-box {
    line-height: 24px;
    font-size: 15px;
    font-weight: normal;
    padding-top: 5px;
    color: #272727;
}

    .styled-form .form-group .check-box label {
        position: relative;
        top: -1px;
        font-weight: normal;
        padding: 0px;
        font-size: 15px;
        cursor: pointer;
    }

.styled-form .pull-left label,
.styled-form .pull-right label {
    cursor: pointer;
}

.styled-form .form-group .adon-icon {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    right: 10px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    font-size: 15px;
    color: #999999;
    z-index: 2;
}

.styled-form .form-group .field-label {
    display: block;
    color: #272727;
    text-transform: capitalize;
    font-size: 16px;
    margin-bottom: 7px;
    font-weight: 400;
}

.styled-form input[type="text"],
.styled-form input[type="email"],
.styled-form input[type="password"],
.styled-form input[type="tel"],
.styled-form input[type="number"],
.styled-form input[type="url"],
.styled-form select,
.styled-form textarea {
    position: relative;
    display: block;
    width: 100%;
    background: #ffffff;
    line-height: 30px;
    padding: 8px 20px;
    height: 50px;
    border: 1px solid #f4f4f4;
    transition: all 300ms ease;
    -webkit-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
}

.event-info-section .map-outer iframe {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 435px;
    margin-bottom: -10px;
}

.map-section .map-outer iframe {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 540px;
    margin-bottom: -10px;
}


.footer-cont span {
    color: #fff;
}

/*annousment */

.gsem-annousment .expo-name li {
    float: left;
    color: #000;
    margin: 6px 5px 0px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 20px 28px;
}

.gsem-annousment .expo-name {
    padding: 0;
    margin: 0;
    display: flex;
    list-style: none;
}


.gsem-annousment {
    background: #EBE7DE;
    position: relative;
    /* transform: rotate(-0.6deg); */
    /* -webkit-transform: rotate(-0.6deg); */
    overflow: hidden;
    margin-top: -1em;
}

    .gsem-annousment .expo-name li:after {
        content: '';
        position: absolute;
        right: -14px;
        top: 20px;
        background: url(../images/logo-vector.png) no-repeat scroll center right / contain;
        width: 25px;
        height: 22px;
        transform: rotate(320deg);
    }


    .gsem-annousment .expo-name li span {
        -webkit-text-stroke: 1px rgb(0 0 0 / 90%);
        -webkit-text-fill-color: transparent;
    }

.sessionwise {
    font-weight: bold;
    color: #101130;
    margin-bottom: 10px;
}

.sidebar-post .post-inner .post {
    position: relative;
    padding: 0px 0px 0px 0px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #b1b1b1 !important;
    min-height: 75px;
}

::-webkit-scrollbar-thumb {
    background: #fff;
    border-radius: 10px;
}

::-webkit-scrollbar {
    width: 7px;
}

.sidebar-post .post-inner .post .post-date {
    position: absolute;
    left: 0px;
    top: 4px;
    width: 54px;
    height: 54px;
    text-align: center;
    border-radius: 2px;
    padding: 8px 0px;
}

.sidebar-post .post-inner .post .post-date {
    background: #1937b2;
}

    .sidebar-post .post-inner .post .post-date p {
        display: block;
        font-size: 18px;
        font-weight: 500;
        color: #fff;
        line-height: 20px;
        text-align: center;
    }

    .sidebar-post .post-inner .post .post-date span {
        position: relative;
        display: block;
        font-size: 13px;
        line-height: 18px;
        text-transform: uppercase;
        color: #fff;
    }

.sidebar-post .post-inner .post .file-box {
    position: relative;
    margin-bottom: 9px;
}

    .sidebar-post .post-inner .post .file-box i {
        position: relative;
        display: inline-block;
        font-size: 14px;
        color: #666666 !important;
        margin-right: 10px;
    }

    .sidebar-post .post-inner .post .file-box p {
        position: relative;
        display: inline-block;
    }

.sidebar-post .post-inner .post h5 {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    margin-bottom: 0px;
    color: #101130;
}

    .sidebar-post .post-inner .post h5 a {
        display: inline-block;
        color: var(--fontmain);
    }

        .sidebar-post .post-inner .post h5 a:hover {
            color: #e61819;
        }

.post-inner .carousel-inner {
    position: relative;
    width: 100%;
    overflow: auto;
    max-height: 300px;
    padding: 5px 10px 0px 0px;
}

.content-box {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -40%);
    text-align: center;
}

.banner-section:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #000000;
    opacity: .70;
    content: "";
}

.banner-section video {
    height: 100%;
    width: 100%;
}

.info-box {
    background: #000;
    padding: 10px 5px;
}

.video-section .text {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 26px;
    color: #ffbc00;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-align: center;
}

.content-box {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -40%);
    text-align: center;
}

.banner-section:before {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #000000;
    opacity: .70;
    content: "";
}

.banner-section video {
    height: 100%;
    width: 100%;
}

.info-box {
    background: #000;
    padding: 10px 5px;
}

.video-section .text {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 26px;
    color: #ffbc00;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-align: center;
}

.main-banner-area-four {
    /* padding-bottom: 250px; */
    overflow: hidden;
}

.main-banner-area {
    background-image: linear-gradient(#00095e, #000638);
    /* padding-top: 200px; */
    /* padding-bottom: 300px; */
    position: relative;
    z-index: 1;
}

    .main-banner-area::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* background-image: url(../images/4.png);
	animation: focus-one 1s linear 1s infinite; */
        z-index: -1;
    }

.fun-fact-section.style-two:before {
    /* background: #1c94d2; */
    opacity: 0.9;
    background-image: url(../images/featureBG.png);
}

@keyframes focus-one {
    0% {
        opacity: 0;
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.main-banner-area-four .over-shape img:nth-child(1) {
    top: 300px;
    left: 40px;
    animation: animationFramesOne 25s infinite linear;
}

.main-banner-area-four .over-shape img:nth-child(2) {
    top: 200px;
    left: 800px;
    animation: animationFramesOne 40s infinite linear;
}

.main-banner-area-four .over-shape img:nth-child(3) {
    top: 150px;
    right: 800px;
    animation: animationFramesOne 20s infinite linear;
}

.main-banner-area-four .over-shape img:nth-child(4) {
    bottom: 200px;
    right: 800px;
    animation: animationFramesOne 30s infinite linear;
}

.main-banner-area-four .over-shape img:nth-child(5) {
    top: 200px;
    right: 200px;
    animation: animationFramesOne 10s infinite linear;
}

.main-banner-area-four .over-shape img {
    position: absolute;
    z-index: -1;
}

@keyframes animationFramesOne {
    0% {
        transform: translate(0px, 0px) rotate(0deg);
    }

    20% {
        transform: translate(73px, -1px) rotate(36deg);
    }

    40% {
        transform: translate(141px, 72px) rotate(72deg);
    }

    60% {
        transform: translate(83px, 122px) rotate(108deg);
    }

    80% {
        transform: translate(-40px, 72px) rotate(144deg);
    }

    100% {
        transform: translate(0px, 0px) rotate(0deg);
    }
}

.fun-fact-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/home-one-banner/banner-one-shape/4.png);
    animation: moVebounce 5s linear infinite;
    z-index: -1;
}

@keyframes moVebounce {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(50px);
    }

    100% {
        transform: translateY(0px);
    }
}

.banner-img {
    position: relative;
    z-index: 1;
    top: 0;
}

    .banner-img img {
        position: absolute;
    }

        .banner-img img:nth-child(1) {
            bottom: -220px;
            right: 0;
            left: 0;
            margin: auto;
        }

        .banner-img img:nth-child(2) {
            top: -220px;
            left: 0;
            right: 0;
            margin: auto;
        }


.content-box1 h2 {
    display: block;
    font-size: 48px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
}

img.robot-right {
    position: absolute;
    right: 2%;
    top: 10%;
    animation: moVebounce 1.5s infinite ease-in-out !important;
}

img.robot-left {
    position: absolute;
    left: 2%;
    top: 10%;
    animation: moVebounce 1.5s infinite ease-in-out !important;
    /* transform: translateY(-50%) !important; */
}



.main-banner-area-four {
    /* padding-bottom: 250px; */
    overflow: hidden;
}

.main-banner-area {
    background-image: linear-gradient(#00095e, #000638);
    /* padding-top: 200px; */
    /* padding-bottom: 300px; */
    position: relative;
    z-index: 1;
}

    .main-banner-area::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        /* background-image: url(../images/4.png);
	animation: focus-one 1s linear 1s infinite; */
        z-index: -1;
    }

@keyframes focus-one {
    0% {
        opacity: 0;
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.main-banner-area-four .over-shape img:nth-child(1) {
    top: 300px;
    left: 40px;
    animation: animationFramesOne 25s infinite linear;
}

.main-banner-area-four .over-shape img:nth-child(2) {
    top: 200px;
    left: 800px;
    animation: animationFramesOne 40s infinite linear;
}

.main-banner-area-four .over-shape img:nth-child(3) {
    top: 150px;
    right: 800px;
    animation: animationFramesOne 20s infinite linear;
}

.main-banner-area-four .over-shape img:nth-child(4) {
    bottom: 200px;
    right: 800px;
    animation: animationFramesOne 30s infinite linear;
}

.main-banner-area-four .over-shape img:nth-child(5) {
    top: 200px;
    right: 200px;
    animation: animationFramesOne 10s infinite linear;
}

.main-banner-area-four .over-shape img {
    position: absolute;
    z-index: -1;
}

@keyframes animationFramesOne {
    0% {
        transform: translate(0px, 0px) rotate(0deg);
    }

    20% {
        transform: translate(73px, -1px) rotate(36deg);
    }

    40% {
        transform: translate(141px, 72px) rotate(72deg);
    }

    60% {
        transform: translate(83px, 122px) rotate(108deg);
    }

    80% {
        transform: translate(-40px, 72px) rotate(144deg);
    }

    100% {
        transform: translate(0px, 0px) rotate(0deg);
    }
}

.fun-fact-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/home-one-banner/banner-one-shape/4.png);
    animation: moVebounce 5s linear infinite;
    z-index: -1;
}

@keyframes moVebounce {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(50px);
    }

    100% {
        transform: translateY(0px);
    }
}

.banner-img {
    position: relative;
    z-index: 1;
    top: 0;
}

    .banner-img img {
        position: absolute;
    }

        .banner-img img:nth-child(1) {
            bottom: -220px;
            right: 0;
            left: 0;
            margin: auto;
        }

        .banner-img img:nth-child(2) {
            top: -220px;
            left: 0;
            right: 0;
            margin: auto;
        }


.content-box1 h2 {
    display: block;
    font-size: 48px;
    line-height: 1.2em;
    color: #ffffff;
    font-weight: 700;
    text-align: center;
}

img.robot-right {
    position: absolute;
    right: 2%;
    top: 10%;
    animation: moVebounce 1.5s infinite ease-in-out !important;
}

img.robot-left {
    position: absolute;
    left: 2%;
    top: 10%;
    animation: moVebounce 1.5s infinite ease-in-out !important;
    /* transform: translateY(-50%) !important; */
}

.bg-color {
    background: linear-gradient(45deg, #f5a8dd, #0b336f);
    border-radius: 10px;
}

.Attend {
    padding: 10px;
    text-align: center;
    color: #fff;
    margin: 25px 0px;
}

    .Attend h4 {
        font-weight: 700;
        line-height: 25px;
    }

    .Attend p {
        color: #fff;
        line-height: 19px;
        margin-top: 10px;
        font-size: 12px;
        letter-spacing: 1px;
        margin-bottom: 0px;
    }

section.who-section {
    position: relative;
}

img.r1 {
    position: absolute;
    /* writing-mode: lr; */
    right: 2%;
    top: 1%;
    transform: translate(-50%, -0%);
    /* animation: moVebounce 1s infinite ease-in-out !important; */
}

img.r2 {
    position: absolute;
    top: 2%;
    left: 5%;
    z-index: 9;
}

.ai-main-banner-shape2 {
    position: absolute;
    top: 6%;
    left: 5%;
    transform: translateY(-10%) translateX(-40%);
    z-index: -1;
    animation: rotate3d 4s linear infinite;
}

@keyframes rotate3d {
    0% {
        transform: rotateY(0deg)
    }

    to {
        transform: rotateY(1turn)
    }
}

img.left-img {
    position: absolute;
    bottom: 0%;
    width: 13%;
    right: 0%;
    opacity: 0.5;
}


.horizontal-shake {
    animation: horizontal-shaking 0.9s infinite;
}

@keyframes horizontal-shaking {
    0% {
        transform: translateX(0)
    }

    25% {
        transform: translateX(3px)
    }

    50% {
        transform: translateX(-3px)
    }

    75% {
        transform: translateX(3px)
    }

    100% {
        transform: translateX(0)
    }
}

.particle-canvas {
    width: 100%;
    height: 100%;
}
.team-block_two {
    position: relative;
}

.team-block_two-inner {
    position: relative;
    padding: 15px 15px 0px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #fff;
}

    .team-block_two-inner:before {
        position: absolute;
        content: '';
        left: 0px;
        bottom: 0px;
        right: 0px;
        height: 50px;
        transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -webkit-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        border-radius: 0px 0px 25px 25px;
        border-bottom: 10px solid transparent;
    }

    .team-block_two-inner:after {
        position: absolute;
        content: '';
        left: 0px;
        top: 0px;
        right: 0px;
        height: 0px;
        z-index: 1;
        opacity: 0;
        transition: all 500ms ease;
        -moz-transition: all 500ms ease;
        -webkit-transition: all 500ms ease;
        -ms-transition: all 500ms ease;
        -o-transition: all 500ms ease;
        background-image: linear-gradient(to left, rgba(247, 0, 104) 0%, rgba(68, 16, 102, 1) 100%);
        /* background-image: linear-gradient(to bottom, rgb(255, 101, 12), #fff); */
    }

    .team-block_two-inner:hover::after {
        height: 100%;
        opacity: 1;
    }

    .team-block_two-inner:hover .team-block_two-title,
    .team-block_two-inner:hover .team-block_two-designation {
        color: #fff;
        /* Makes text white */
    }

.team-block_two-image {
    position: relative;
}

    .team-block_two-image img {
        position: relative;
        width: 100%;
        display: block;
        overflow: hidden;
        border-radius: 25px;
        z-index: 2;     
    }

.team-block_two-content {
    position: relative;
    padding: 10px;
    z-index: 9;
}

.team-block_two-title {
    position: relative;
    font-size: 18px;
    font-weight: 700;
    color: #111;
}


.team-block_two-designation {
    position: relative;
    font-size: 14px;
    color: #555;
    height:46px;
    overflow:hidden;
}