/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 29-Dec-2015, 08:38:07
    Author     : Jasim Jawahir
*/

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}
::-webkit-scrollbar-track {
    background-color: #ccc;
    border-left: 1px solid #fff;
}
::-webkit-scrollbar-thumb {
    background-color: #1947ba;
}
::-webkit-scrollbar-thumb:hover {
    background-color: #fff;
}

@import "config";

body {
    background: #fff;
    max-width: 2000px;
    font-family: $font_3;
    font-size: 14px;
    overflow-x: hidden;
    margin-left: auto;
    margin-right: auto;

    * {
        /*border: 1px solid red;*/
    }
}
html,
body {
    /*min-width: 1141px;*/
}

.hide {
    display: none;
}

p {
    line-height: 25px;
}

.left {
    float: left;
}

.abs-left {
    left: 0;
}

.right {
    float: right;
}
.abs-right {
    right: 0;
}

.rtl {
    direction: rtl;
}

.clear:after {
    clear: both;
    display: block;
    content: " ";
}

.p-relative {
    position: relative;
}
.p-absolute {
    position: absolute;
}

.v-center {
    top: 50%;
    transform: translateY(-50%);
}
.h-center {
    left: 50%;
    transform: translateX(-50%);
}
.v-h-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.clear-float {
    display: block;
    clear: both;
    height: 1px;
}

br.minus {
    margin-bottom: -20px;
    display: block;
    content: "";
}

.wrapper {
    width: $wrapper_width;
    margin: 0 auto;
    position: relative;
}

.title-b {
    display: block;
}

.margin-zero {
    margin: 0 !important;
}
.margin-top-zero {
    margin-top: 0 !important;
}
.margin-bottom-zero {
    margin-bottom: 0 !important;
}

div {
    &.px-10 {
        content: " ";
        display: block;
        margin: 10px 0 0;
        line-height: 10px;
    }
    &.px-20 {
        content: " ";
        display: block;
        margin: 20px 0 0;
        line-height: 20px;
    }
    &.px-30 {
        content: " ";
        display: block;
        margin: 30px 0 0;
        line-height: 30px;
    }
    &.px-40 {
        content: " ";
        display: block;
        margin: 40px 0 0;
        line-height: 40px;
    }
    &.px-50 {
        content: " ";
        display: block;
        margin: 50px 0 0;
        line-height: 50px;
    }
    &.px-60 {
        content: " ";
        display: block;
        margin: 60px 0 0;
        line-height: 60px;
    }
    &.px-70 {
        content: " ";
        display: block;
        margin: 70px 0 0;
        line-height: 70px;
    }
    &.px-80 {
        content: " ";
        display: block;
        margin: 80px 0 0;
        line-height: 80px;
    }
    &.px-90 {
        content: " ";
        display: block;
        margin: 90px 0 0;
        line-height: 90px;
    }
    &.px-100 {
        content: " ";
        display: block;
        margin: 100px 0 0;
        line-height: 100px;
    }
    &.px-10-minus {
        content: " ";
        display: block;
        margin: -10px 0 0;
        line-height: 0px;
    }
    &.px-20-minus {
        content: " ";
        display: block;
        margin: -20px 0 0;
        line-height: 0px;
    }
    &.px-30-minus {
        content: " ";
        display: block;
        margin: -30px 0 0;
        line-height: 0px;
    }
    &.px-40-minus {
        content: " ";
        display: block;
        margin: -40px 0 0;
        line-height: 0px;
    }
    &.px-50-minus {
        content: " ";
        display: block;
        margin: -50px 0 0;
        line-height: 0px;
    }
    &.px-60-minus {
        content: " ";
        display: block;
        margin: -60px 0 0;
        line-height: 0px;
    }
}

.common-a {
}

.common-title {
    font-size: 35px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 35px;
}
.common-btn {
}

header {
}

footer {
}

.toggle-menu {
    position: absolute;
    right: 40px;
    top: 84px;
    transform: translateY(-50%);
    display: none;
    z-index: 20;
    .bar1,
    .bar2,
    .bar3 {
        width: 35px;
        height: 5px;
        background-color: #2059a8;
        margin: 6px 0;
        transition: 0.4s;
        cursor: pointer;
    }

    &.active .bar1 {
        -webkit-transform: rotate(-45deg) translate(-8px, 7px);
        transform: rotate(-45deg) translate(-8px, 7px);
    }

    &.active .bar2 {
        opacity: 0;
    }

    &.active .bar3 {
        -webkit-transform: rotate(45deg) translate(-8px, -8px);
        transform: rotate(45deg) translate(-8px, -8px);
    }
}

.slide-menu {
    display: none;
    position: absolute;
    top: 0;
    left: -80%;
    width: 80%;
    background: #000;
    z-index: 99999;
    padding: 30px;
    padding-top: 20px;
    @include delay(1s);
    &:after {
        content: " ";
        position: fixed;
        top: 0;
        left: -80%;
        width: 80%;
        height: 100%;
        z-index: -1;
        background: #000;
        @include delay(1s);
    }

    .top-part {
        margin-bottom: 25px;
        .links {
            text-align: center;
            margin-bottom: 20px;
            margin-left: -30px;
            margin-top: -20px;
            width: calc(100% + 60px);
            background: #2059a8;
            height: 49px;
            padding-top: 16px;
            box-shadow: 3px -2px 5px rgba(0, 0, 0, 0.1098039);
            a {
                color: #fff;
                text-transform: uppercase;
                position: relative;
                padding: 0 15px;
                &:after {
                    content: " ";
                    position: absolute;
                    right: 0;
                    top: 2px;
                    border-left: 1px solid #fff;
                    height: 15px;
                }
                &:last-child:after {
                    display: none;
                }
            }
        }
    }

    & > ul > li {
        font-weight: bold;
        text-transform: uppercase;
        color: #fff;
        margin-bottom: 5px;
        padding-top: 5px;
        padding-bottom: 10px;
        border-bottom: 1px dotted #fff;
        &.has-sub {
            margin-left: 0;
            & > span {
                padding-left: 37px;
                background: url(../img/icons/slide-menu-main-plus.png) no-repeat left
                    top;
                background-size: 27px;
                display: block;
            }
            &.active > span {
                background: url(../img/icons/slide-menu-main-minus.png) no-repeat left
                    top;
                background-size: 27px;
            }
        }
        &:last-child {
            border-bottom: none;
        }
        & > span a {
            position: relative;
            padding: 0px;
            font-size: 18px;
            line-height: 27px;
        }
        &:first-child a {
            padding-left: 0;
        }
        &:last-child {
            a:after {
                display: none;
            }
            padding-right: 0;
        }
        a {
            @include delay(0.2s);
        }
        /*        a:hover{
                        color: #2059a8; 
                    }*/

        .sub-menu {
            width: 100%;
            margin-top: 8px;
            display: none;
            .logo {
                width: 180px;
            }
            ul.main {
                width: calc(100% - 30px);
                margin-left: 30px;
                & > li {
                    text-transform: uppercase;
                    border-top: 1px dotted #fff;
                    &.has-sub {
                        & > span {
                            padding-right: 35px;
                            background: url(../img/icons/slide-menu-second-plus.png) no-repeat
                                right 9px;
                            background-size: 13px;
                            display: block;
                        }
                        ul {
                            display: none;
                        }
                        &.active {
                            & > span {
                                background: url(../img/icons/slide-menu-second-minus.png)
                                    no-repeat right 9px;
                                background-size: 13px;
                            }
                            ul {
                                display: block;
                            }
                        }
                    }
                    & > a,
                    & > span a {
                        padding: 5px 0;
                        font-weight: normal;
                        display: block;
                    }
                    ul {
                        margin-bottom: 10px;
                        li {
                            position: relative;
                            padding-left: 15px;
                            margin-bottom: 6px;
                            color: #ccc;
                            &:after {
                                content: " ";
                                position: absolute;
                                left: 0;
                                top: 7px;
                                width: 5px;
                                height: 5px;
                                background: #7a8295;
                            }
                            &:last-child {
                                margin-bottom: 0;
                            }
                            a {
                                font-weight: normal;
                            }
                        }
                    }
                }
            }
        }
        &.active {
            .sub-menu {
                display: block;
            }
        }
    }
    &.active {
        left: 0;
        &:after {
            left: 0;
        }
    }
}

#navbar {
    padding-top: 50px;
    position: relative;
    .dbl_blk {
        // .inner {
        //   width: calc(100% / 2);
        //   float: left;
        // }
        .img_blk {
            background: #fff;
            padding: 15px 0;
            width: 223px;
            float: left;

            padding-left: 25px;

            img {
                display: block;
            }
        }
        .nav_blk {
            background: #202028;
            padding: 13px;
            width: calc(100% - 223px);
            float: left;
            ul {
                li {
                    float: left;
                    color: #fff;
                    text-transform: uppercase;

                    a {
                        padding: 12px 10px;
                        display: inline-block;
                        transition: 0.4s all;

                        &:hover {
                            color: $main_clr;
                        }

                        &.active {
                            color: $main_clr;
                        }
                    }
                }
            }
        }
    }
    .abstract-btn{
        font-weight: bold;
        color: #fff;
        text-align: center;
        padding: 9px 9px;
        background: #1947ba;
        display: inline-block;
        border: 2px solid #1947ba;
        transition: .4s all;
        margin-right: 15px;
        position: absolute;
        right: 0;
        bottom: 14px;
        &:hover{
            background: #fff0;
        }
    }
}

#banner {
    height: 400px;
    background: url(../images/hm_background.jpg) no-repeat;
    background-size: cover;

    h2 {
        font-size: 40px;
        text-align: center;
        font-weight: bold;
        color: #fff;
        text-transform: uppercase;
        margin-top: 100px;
        line-height: 60px;
    }
}

#home {
    #banner {
        height: 573px;
        background: url(../images/hm_background.jpg) no-repeat;
        background-size: cover;

        .content {
            h2 {
                font-size: 50px;
                text-align: center;
                font-weight: bold;
                color: #fff;
                text-transform: uppercase;
                margin-top: 100px;
                line-height: 60px;
            }

            p{
                color: #fff;
                text-align: center;
                margin-bottom: 30px;
                font-size: 15px;
            }

            .btns{
                display: flex;
                justify-content: center;

                a {
                    font-weight: bold;
                    min-width: 216px;
                    color: #fff;
                    text-align: center;
                    padding: 15px 40px;
                    background: $main_clr;
                    display: inline-block;
                    border: 2px solid $main_clr;
                    transition: .4s all;
                    margin-right: 15px;

                    &:last-child{
                        margin-right: 0;
                    }

                    &:hover{
                        background: #fff0;
                    }
                }
            }
        }
    }

    #about {
        background: rgb(255, 255, 255);
        background: linear-gradient(
            90deg,
            rgba(255, 255, 255, 1) 50%,
            rgba(25, 71, 186, 1) 50%
            );
        padding: 80px 0;

        .dbl_blk {
            display: flex;
            align-items: center;
            .inner {
                width: calc(100% / 2);
                float: left;
            }
            .left_blk {
                h3 {
                    margin-bottom: 40px;
                }
                .blks {
                    .blk {
                        width: calc(100% / 2);
                        float: left;
                        padding-left: 20px;
                        border-left: 3px solid $main_clr;
                        margin-bottom: 40px;

                        img {
                            margin-bottom: 10px;
                        }

                        p {
                            margin: 0;
                            line-height: 20px;
                        }
                    }
                }
            }
            .right_blk {
                color: #fff;
                padding-left: 50px;
            }
        }
    }

    #event {
        padding: 80px 0;
        background: $sub_clr;
        color: #fff;

        h3 {
            color: $main_clr;
            text-transform: uppercase;
            text-align: center;
        }
        p {
            text-align: center;
        }

        #blks {
            margin-top: 40px;
            margin-bottom: -20px;
            display: inline-block;
            .blk {
                width: calc((100% / 2) - 40px);
                float: left;
                margin-bottom: 20px;
                display: inline-block;
                margin-left: 40px;
                border: 1px solid #fff;
                padding: 15px 20px;
                padding-left: 50px;
                background: url(../images/event-list.png) no-repeat 20px center;
                display: flex;
                align-items: center;

                p{
                    margin: 0;
                    text-align: left;
                }
            }
        }
    }

    #cmn_back {
        background: #e0e2e7;
    }

    #learning {
        padding: 80px 0;
        background: $main_clr;
        color: #fff;
        #dbl_blk {
            display: flex;
            align-items: center;
            .inner {
                width: calc(100% / 2);
                float: left;

                p {
                    margin: 0;
                }
            }
        }
    }

    #img_blk {
        background: rgb(224, 226, 231);
        background: linear-gradient(
            0deg,
            rgba(224, 226, 231, 1) 50%,
            rgba(25, 71, 186, 1) 50%
            );
        margin-bottom: 40px;

        img {
            display: block;
            width: 100%;
        }
    }

    #who {
        .wrapper {
            height: 474px;
            background: url(../images/who.png) no-repeat left;
            background-size: cover;
            position: relative;
        }

        .content {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            left: 65%;
            color: #fff;
            width: 250px;
            padding-left: 40px;
            border-left: 1px solid #fff;
        }
    }

    #imp_date {
        padding: 80px 0;

        .left_blk {
            width: calc(300px);
            float: left;

            h3 {
                color: $main_clr;
            }
        }

        .right_blk {
            width: calc(100% - 300px);
            float: left;

            .blks {
                .blk {
                    background: #fff;
                    width: calc((100% / 2) - 20px);
                    margin-left: 20px;
                    margin-bottom: 20px;
                    float: left;
                    padding: 40px 20px;

                    p {
                        margin: 0;
                    }

                    h4 {
                        text-transform: uppercase;
                        font-weight: 600;
                        margin-bottom: 10px;
                    }

                    .dbl_sec {
                        display: flex;
                        align-items: start;
                        .left_sec {
                            width: 105px;
                            float: left;
                            font-size: 50px;
                            font-weight: bold;
                            line-height: 50px;
                            color: $main_clr;
                        }
                        .right_sec {
                            width: calc(100% - 65px);
                            float: left;
                            padding-left: 10px;
                        }
                    }
                }
            }
        }
    }

    #committee{
        h3{
            text-align: center;
            margin-bottom: 40px;
        }

        .dbl_blk{
            .left_blk{
                width: 300px;
                float: left;
                padding-right: 50px;

                ul{
                    li{
                        color: #a5a5a5;
                        font-weight: bold;
                        font-size: 20px;
                        cursor: pointer;
                        transition: .4s all;

                        &:first-child{
                            padding-bottom: 20px;
                            border-bottom: 2px solid $third_clr;
                        }
                        &:last-child{
                            padding-top: 20px;
                        }

                        &.active{
                            color: #000;
                        }

                        &:hover{
                            color: #000;
                        }
                    }
                }
            }
            .right_blk{
                width: calc(100% - 300px);
                float: left;

                p{
                    margin: 0;
                }

                .item{
                    img{
                        margin-bottom: 20px;
                    }
                    h4{
                        font-weight: 800;
                        text-transform: uppercase;
                        margin-bottom: 10px;
                    }
                    p{
                        line-height: 20px;
                    }

                    a{
                        margin-top: 10px;
                        display: block;
                        color: $main_clr;
                    }
                }

                .contents{
                    .content{
                        display: none;

                        &.active{
                            display: block;
                        }
                    }
                }
            }
        }

        .owl-theme{
            .owl-nav{
                position: absolute;
                left: 0;
                bottom: 0;
                margin-left: -300px;

                .owl-prev{
                    width: 40px;
                    height: 40px;
                    color: #fff0;
                    background: url(../images/icons/left_arr.png) no-repeat center $main_clr;
                    transition: .4s all;

                    &:hover{
                        opacity: 80%;
                    }
                }

                .owl-next{
                    width: 40px;
                    height: 40px;
                    color: #fff0;
                    background: url(../images/icons/right_arr.png) no-repeat center #e0e2e7;
                    transition: .4s all;

                    &:hover{
                        opacity: 80%;
                    }
                }
            }
        }
    }

    #speaker{
        padding: 80px 0;
        background: #e0e2e7;

        h3{
            margin-bottom: 40px;
            text-align: center;
        }

        .blks{
            margin-left: -40px;
            .blk{
                width: calc((100% / 4) - 40px);
                margin-left: 40px;
                margin-bottom: 40px;
                float: left;

                img{
                    margin-bottom: 20px;
                    width: 100%;
                }
                h4{
                    font-weight: 800;
                    text-transform: uppercase;
                    margin-bottom: 10px;
                }
                p{
                    line-height: 20px;
                }
                a{
                    padding: 8px 25px;
                    color: #fff;
                    background: $main_clr;
                    text-align: center;
                    transition: 0.4s all;
                    border: 1px solid $main_clr;
                    letter-spacing: 1px;
                    margin-top: 10px;
                    font-size: 15px;
                    display: inline-block;

                    &:hover{
                        background: #fff0;
                        color: $main_clr;
                    }
                }
            }
        }
    }

    #program{
        padding: 80px 0;
        background: #e0e2e7;

        .dbl_blk{
            .left_blk{
                width: 330px;
                float: left;
                padding-right: 50px;
            }
            .right_blk{
                width: calc(100% - 330px);
                float: left;

                table{
                    width: 100%;

                    tr{
                        td{
                            padding: 20px;

                            &:first-child{
                                color: #fff;
                                font-weight: bold;
                                text-align: center;
                                width: 150px;
                            }
                        }

                        &:nth-child(odd){
                            td{
                                &:first-child{
                                    background: $main_clr;
                                }
                                &:last-child{
                                    background-color: #e0e2e7;
                                }
                            }
                        }

                        &:nth-child(even){
                            td{
                                &:first-child{
                                    background: $third_clr;
                                }
                                &:last-child{
                                    background-color: #fff;
                                }
                            }
                        }
                    }
                }
            }
        }

        .tabs{
            margin-top: 50px;
            .tab{
                display: block;
                margin-bottom: 10px;
                padding: 20px;
                background: #000000;
                font-weight: bold;
                color: #fff;
                padding-right: 50px;
                cursor: pointer;
                &.active, &.active:hover{ 
                    background: #1947ba url(../images/event-list.png) no-repeat calc(100% - 20px) center;
                }
                &:hover{
                      background: #1947ba;
                }
            }
        }
        .tab-dtl{
            display: none;
            &.active{
                display: block;
            }
        }
        .btns{
            margin-top: 20px;
                display: flex;  
                a {
                    font-weight: bold;
                    min-width: 216px;
                    color: #fff;
                    text-align: center;
                    padding: 15px 40px;
                    background: $main_clr;
                    display: inline-block;
                    border: 2px solid $main_clr;
                    transition: .4s all;
                    margin-right: 15px;

                    &:last-child{
                        margin-right: 0;
                    }

                    &:hover{
                        background: #fff0;
                        color:  $main_clr;
                    }
                }
            }
    }
}

#contact {
    .dbl_blk {
        .inner {
            width: calc(100% / 2);
            float: left;
        }
        .left_blk {
            img {
                width: 100%;
                display: block;
            }
        }
        .right_blk {
            background: $sub_clr;
            color: #fff;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding-left: 50px;

            h3 {
                margin-bottom: 30px;
            }

            .blks{
                .blk{
                    h4{
                        font-weight: 800;
                        font-size: 16px;
                    }
                    p{
                        margin: 0;
                    }
                    margin-bottom: 30px;
                }
            }
        }
    }
}

#copy_right {
    p {
        margin: 0;
        padding: 15px 0;
        text-align: center;
        font-weight: bold;
    }
}

#first-thermo{
    #sec_blk{
        a {
            font-weight: bold;
            min-width: 216px;
            color: #fff;
            text-align: center;
            padding: 15px 40px;
            background: $main_clr;
            display: inline-block;
            border: 2px solid $main_clr;
            transition: .4s all;
            margin-bottom: 40px;

            &:hover{
                background: #fff0;
                color: $main_clr;
            }
        }

        img{
            width: 100%;
            display: block;
        }
    }
}


