/*
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 : Dec 22, 2014, 10:25:21 AM
    Author     : Jafran
*/


::-webkit-scrollbar {  
    width: 5px;  
}  
::-webkit-scrollbar-track {  
    background-color: #ccc;  
    /*border-left: 1px solid #fff;*/  
}  
::-webkit-scrollbar-thumb {  
    background-color:#f1594e;  
}  
::-webkit-scrollbar-thumb:hover {  
    background-color: #fff;  
}   


*{
    box-sizing:border-box;
    -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
}

a{
    color: inherit;
    cursor: pointer;
}

body { 
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    background: #fff;
    min-width: 1200px;
}

.left{
    float: left;
}

.right{
    float: right;
}

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

.hide{
    display: none;
}

.show{
    display: block;
}

.wrapper{
    width: 1200px;
    margin: 0 auto;
}

header .top{
    background: #f1594e;
    color: #fff;
    line-height: 10px;
}

header .top ul li{
    float: left;
    font-size: 12px;
}

header .top ul.left li{
    padding-left: 30px;
}

header .top ul.left li:nth-child(1){
    background: url(../img/phone-top.png) no-repeat left center;    
    margin-right: 50px;
}

header .top ul.left li:nth-child(2){
    background: url(../img/mail-top.png) no-repeat left center;
}

header .top ul.right li:nth-child(1){
    border-right: 1px solid rgba(255,255,255,.5);
}

header .top ul.right li a{
    display: block;
    padding: 0 20px;
    background: #e74e43;
    text-transform: uppercase;
}

header .top ul.right li a:hover{
    background: #ee3d2f;    

    transition: all .2s;
    -webkit-transition: all .2s;
}

header .bottom{
    background: #ede6d6;
}

header .bottom .logo {
    background: #fff;
    /*padding: 20px 20px 10px 0;*/
    padding: 0px 20px 0px 0;
    position: relative;
    height: 84px;
    /*overflow-y: hidden;*/ 
}

header .bottom .logo:before{
    position: absolute;
    content: ' ';
    width: 500%;
    height: 84px;
    top: 0;
    left: -500%;
    background: #fff;
}

header .bottom .menu{
    height: 84px;
    color: #51504c;
    background: #ede6d6;
    text-transform: uppercase;
    font-size: 12px;
    /*padding-left: 11%;*/
} 

header .bottom .menu > ul{
    margin-top: 24px;
}

header .bottom .menu > ul > li{
    float: left;
    position: relative;
}

header .bottom .menu > ul > li:first-child {
    padding-left: 59px;
}

header .bottom .menu > ul > li.has-sub:hover:after{
    content: '';
    width: 0; 
    height: 0; 
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #ede6d6;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;

    transition: all .5s  .2s;
    -webkit-transition: all .5s .2s;
}

header .bottom .menu > ul > li > a{
    display: block;
    padding: 12px 8px;
    text-align: center;
    border-radius: 0px;
    background-size: 0;
    background: url(../img/menu-bg.png) no-repeat left 80px;
    margin-right: 5px;

    transition: background .2s;
    -webkit-transition: background .2s;
}

header .bottom .menu > ul > li:hover > a,header .bottom .menu > ul > li.active > a{
    color: #000;
    background: #fff;
    background: url(../img/menu-bg.png) no-repeat left top;    
}

header .bottom .menu > ul > li .sub{
    position: absolute;
    background: #fff;
    color: #A3A19E;
    min-width: 103px;
    top: 39px;
    opacity: 0;
    z-index: -1;

    transition: all .5s  .2s;
    -webkit-transition: all .5s .2s;
}

header .bottom .menu > ul > li .sub li {
    position: relative;
}

header .bottom .menu > ul > li:hover .sub{
    opacity: 1;
    z-index: 99999;
}

header .bottom .menu > ul > li:hover .sub .sub{
    opacity: 0;   
}

header .bottom .menu > ul > li .sub a{
    display: block;
    text-align: center;
    line-height: 40px;
    border-bottom: 1px solid #eee;
}


header .bottom .menu > ul > li .sub a:hover{
    color: #000;
}

header .bottom .menu > ul > li:nth-child(2) .sub,
header .bottom .menu > ul > li:nth-child(4) .sub,
header .bottom .menu > ul > li:nth-child(6) .sub{
    width: 148px;
}

header .bottom .menu > ul > li:nth-child(2) .sub:before{
    left: 32%;
}

header .bottom .menu > ul > li:nth-child(4) .sub:before{
    left: 39%;
}

header .bottom .menu > ul > li .sub li > a + .sub{
    z-index: -1;
}

header .bottom .menu > ul > li> a + .sub li:hover > a + .sub{
    opacity: 1;
    z-index: 9999;
}


header .bottom .menu > ul > li > a + .sub li  .sub {
    position: absolute;
    left: 100%;
    top: -1px;
    border: 1px solid #eee;
    border-bottom: none;
}

header .bottom .menu > ul > li .sub li > a + .sub.left-side{
    left: auto;
    right: 100%;
}

header .bottom .menu > ul > li .sub li > a + .sub:before {
    left: -5px;
    top: 14px;
    border-left: none;
    border-right: none;
    border-bottom: none;

    border-style: solid;
    border-width: 5px 5px 5px 0;
    border-color: transparent #ede6d6 transparent transparent;    
}

header .bottom .menu > ul > li .sub li > a + .sub.left-side:before {
    left: auto;
    right: -5px;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-color: transparent transparent transparent #ede6d6;
}

header .bottom .menu > ul > li > a + .sub li > a +  .sub a{
    line-height: 40px;
} 

#new_select{
    display: none;
}

#new_select #view ul li.speaker ul li a,
#new_select #view ul li ul li ul li a,
#new_select #view ul li.rgist ul li a{
   background: url(../img/icons/arrow-left.png) no-repeat 24px 7px !important;
    background-size: 4% !important;
    padding-left: 38px !important;
}


/*Index page*/

.spalsh{
    height: 422px;
    background: #19274a url(../img/splash-bg.png) no-repeat 100px center;
    background-size: 100%;
    background-position-x: 80%;
    padding-top: 30px;
}

.spalsh .blk.left{ 
    width: 1000px;
    height: 429px;    
    margin: 0 auto;
    padding-bottom: 10px;
    /*background: #FAF9F5 url(../img/shadow-bg.png) no-repeat bottom center;*/
    float: none;
}

.spalsh .blk.left img{
    width: 100%;
}

.spalsh .blk.right{
    display: none;
    width: 411px;
    height: 422px;
    padding: 80px 20px 0;
    /*background: url(../img/splash-lady-bg.png) no-repeat bottom left;*/
}

.spalsh .blk.right h1, h1.most{
    font-size: 32px;
    color: #fff;
    line-height: 35px;
    text-transform: uppercase;
    font-family: loveloblack;
    position: relative;
    margin-bottom: 15px;
}

.spalsh .blk.right h1:after{
    content: ' ';
    display: block;
    bottom: -4px;
    position: absolute;
    width: 100%;
    border-bottom: 2px solid #ec2111;
}

.spalsh .blk.right {
    font-size: 13px;
    color: #a8acb4;
}

.spalsh .blk.right h1 .red, h1.most .red{
    color: #ec2111; 
}

.spalsh .blk.right form{
    margin-top: 25px;
}

.spalsh .blk.right form label{
    width: 100px;
    display: inline-block;
    padding-left: 15px;
}

.spalsh .blk.right form .form-blk{
    margin-bottom: 10px;
}

.spalsh .blk.right form input[type=text],.spalsh .blk.right form input[type=email]{
    height: 35px;
    width: 267px;
    background: transparent;
    border: 1px solid #a8acb4;
    border-radius: 3px;
    color:  #fff;
    padding: 0 10px;
    outline: none;
}

.spalsh .blk.right form input[type=submit]{
    background: #ec2111;
    border-radius: 3px;
    border: none;
    line-height: 34px;
    padding: 0 10px;
    font-family: loveloblack;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    margin-left: 104px;
    outline: none;
    cursor: pointer;

    transition: background .2s;
    -webkit-transition: background .2s;
}

.spalsh .blk.right form input[type=submit]:hover{
    opacity: .5;
}


h1.most{
    font-size: 20px;
    color: #0f0c0e;
    border-bottom: 1px solid #ede6d6;
    margin-bottom: 20px;
}

h1.most.double{
    border: none;   
}

h1.most.double span{
    color: #ec2111; 
}

.middle{
    background: #faf9f5;
    padding-top: 80px;
    font-family: 'Roboto', sans-serif;
    padding-bottom: 20px;
}

.middle .announce-call{
    margin-bottom: 20px;
}

.middle .announce-call .announcement{
    width: 80%;
    height: 54px;
    background: #f1594e;
    padding: 0 25px;
    padding-left: 70px;
    color: #fff;
    position: relative;
    float: left;
    overflow: hidden;
}

.middle .announce-call .announcement:before{
    content: ' ';
    position: absolute;
    left: 0; 
    top: 0;
    width: 70px;
    height: 54px;
    background: #e23835 url(../img/icons/news27.png) no-repeat center center;
    z-index: 99;
}

.middle .announce-call .announcement .marquee{
    font-size: 15px;
    text-transform: uppercase;
    line-height: 54px;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;

}

.middle .announce-call .announcement .marquee span{
    position: absolute;
    left: 100%;
    animation: marquee 10s linear infinite;   
}

.middle .announce-call .marquee:hover .js-marquee-wrapper{
    -webkit-animation-play-state: paused !important;
    -moz-animation-play-state: paused !important;
    -o-animation-play-state: paused !important;
    animation-play-state: paused !important;
}

/* Make it move */
@keyframes marquee {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-164%, 0); }
}


.middle .announce-call .call,
.middle .announce-call .winner{
    float: left;
    height: 54px;
    width: 20%;
    color: #fff;    
    position: relative;
    padding-right: 10px;

    text-transform: uppercase;
    background: #0c1733 url(../img/icons/download15.png) no-repeat 35px center;
}


.middle .announce-call .call:before,
.middle .announce-call .winner:before{

    content: ' ';
    position:  absolute;
    left: 0;
    top: 0;
    height: 54px;
    width: 20px;
    background: #faf9f5;
}

.middle .announce-call .call a,
.middle .announce-call .winner a{
    padding-left: 73px;
    display: block;

    position: relative;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    line-height: 50px;
    /*    margin-top: 0px;
        float: left;
        padding-top: 0px;
        top: 0;*/
}


.middle .blk .blk-title{
    float: left;
    width: 17.5%;
    height: 210px;
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;
    color: rgba(255,255,255,.8);
    padding-top: 110px;
    font-family: 'Didact Gothic', sans-serif;
    position: relative;

    transition: all .2s 1s;
    -webkit-transition: all .2s 1s;
}

.middle .blk:hover .blk-title{
    color: rgba(255,255,255,1);
}

.middle .blk .blk-title:before{
    content: "";
    top : 0;
    left: 0;
    width: 100%;
    height: 0px;
    position: absolute;

    transition: all 2s;
    -webkit-transition: all 2s;
}



.middle .blk-1 .blk-title{
    margin-right: 0;
    background: #f1594e url(../img/lightbulb.png) no-repeat center 65px;
    background-size: 20%;
    padding-top: 130px;
}

.middle .blk-1 .blk-title:before{   
    background:  url(../img/lightbulb-big.png) no-repeat center 65px;
    background-size: 20%;
}

.middle .blk-1:hover .blk-title:before,.middle .blk-2 .block:nth-child(1):hover .blk-title:before,.middle .blk-2 .block:nth-child(2):hover .blk-title:before{
    height: 210px;
}

.middle .blk .news .single-news{
    float: left;
    margin-left: 1.6666666666666666%;
    width:25.833333333333336%;
    height: 210px;
    padding: 20px 15px;
    background: #182646;
    position: relative;
    z-index: 2;
}

.middle .blk .news .single-news img{
    position: absolute;
    width: 100%;
    height: 210px;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: .2;
}

.middle .blk .news .single-news h1, .container.news .block h1{
    color: rgba(255,255,255,.5);
    font-size: 12px;
    text-transform: uppercase;
}

.middle .blk .news .single-news h1 span, .container.news .block h1 span{
    font-weight: bold;
    font-size: 30px;
    color: #fff;
    font-family: 'Francois One', sans-serif;
}

.middle .blk .news .single-news h2, .container.news .block h2{
    color: #F1594E;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
}

.middle .blk .news .single-news p, .container.news .block p{
    color: #A3A19E;
    font-size: 14px;
}

.middle .blk .news .single-news a, .container.news .block a{
    color: #fff;
    font-weight: bold;
    font-size: 12px;
    text-transform: capitalize;
    font-style: italic;
    cursor: pointer;
}

.middle a.all-news{
    display: block;
    margin: 20px 0 40px;
    border-bottom: 1px solid #ccc;
    line-height: 2px;
    text-align: right;
    text-transform :uppercase;
}

.middle a.all-news span{
    padding: 10px;
    background: #faf9f5;
    margin-right:   50px;
    color: #f1594e;
}

.middle .blk  .block{
    width: 47.5%;
    float: left;
}

.middle .blk-2{
    margin: 50px 0 30px;
}

.middle .blk-2 .blk-title{
    width:  35%;
    float: left;
    margin-right:  6.666666666666667% !important;
}

.middle .blk-2 .block .desc{
    width:  58.33333333333334%; 
    float: left;
    color: #A3A19E;  
    font-size: 13px;
}

.middle .blk-2 .block .desc p:first-child{
    margin-top: 0;
}

.middle .blk-2 .block:nth-child(1){
    margin-right: 5%;
}

/* style for important dates

*/.middle .blk-2 .block:nth-child(2) .blk-title{
    margin-right: 0;
    background: #F1594E url(../img/calendar.png) no-repeat center 54px;
    background-size: 23%;
}

.middle .blk-2 .block:nth-child(2) .blk-title:before{   
    background:  url(../img/calendar-big.png) no-repeat center 54px;
    background-size: 23%;
}


/*.middle .blk-2 .block:nth-child(1) ul,*/
.sidebar ul{
    margin-top: 30px;
}

.middle .blk-2 .block:nth-child(2) ul li,.sidebar ul li{
    margin-bottom: 19px;
}

.middle .blk-2 .block:nth-child(2) span,.sidebar ul li span{
    padding: 20px 0;
    text-align : center;
    width: 50px;
    font-size: 14px;
    color: #fff;
    background: #182647;
    display: inline-block;
    float: left;
    margin-right: 20px;
}

.middle .blk-2 .block:nth-child(2) .desc div,.sidebar ul li div{
    float: left;
    padding-top: 10px;
}

.middle .blk-2 .block:nth-child(2) ul  li:nth-child(3) div,
.sidebar ul li:nth-child(3) div{
    padding-top: 6px;
}

.middle .blk-2 .block:nth-child(2) h1,.sidebar ul li h1{
    font-size: 12px;
    text-transform: uppercase;
    color  : #000;
    font-weight: bold;
    margin-bottom: 2px;
}

/* start style for important dates



/* strat style for important links*/
/*.middle .blk-2 .block:nth-child(1) .blk-title{
    margin-right: 0;
    background: #182647 url(../img/link-hm.png) no-repeat center 54px;
    background-size: 23%;
}

.middle .blk-2 .block:nth-child(1) .blk-title:before{   
    background:  url(../img/link-hm-wht.png) no-repeat center 54px;
    background-size: 23%;
} 


.middle .blk-2 .block:nth-child(1) ul,.sidebar ul{
    margin-top: 30px;
}

.middle .blk-2 .block:nth-child(1) ul li,.sidebar ul li{
    margin-bottom: 16.5px;
}

.middle .blk-2 .block:nth-child(1) span,.sidebar ul li span{
    padding: 20px 0;
    text-align : center;
    width: 50px;
    font-size: 14px;
    color: #fff;
    background: #f1594e;
    display: inline-block;
    float: left;
    margin-right: 20px;
}

.middle .blk-2 .block:nth-child(1) span.pro{ 
    background: #f1594e url(../img/icons/pro.png) no-repeat center center;
    background-size: 50%;
}
.middle .blk-2 .block:nth-child(1) span.spkr{
    background: #f1594e url(../img/icons/speaker.png) no-repeat center center;
    background-size: 50%;
}

.middle .blk-2 .block:nth-child(1) span.award{ 
    background: #f1594e url(../img/icons/rgist.png) no-repeat center center;
    background-size: 70%;
}
.middle .blk-2 .block:nth-child(1) span.album{
    background: #f1594e url(../img/icons/gallery.png) no-repeat center center;
    background-size: 50%;
}


.middle .blk-2 .block:nth-child(1) span.dateLoc{
    background: #f1594e url(../img/icons/darteLoc.png) no-repeat center center;
    background-size: 50%;
} 

.middle .blk-2 .block:nth-child(1) .desc div,.sidebar ul li div{
    float: left;
    padding-top: 10px;
}

.middle .blk-2 .block:nth-child(1) h1,.sidebar ul li h1{
    font-size: 14px;
    text-transform: uppercase;
    color  : #000;
    font-weight: bold;
    margin-top: 12px
}*/


/*end style for important links*/


.middle .blk-2 .block:nth-child(1) .blk-title{
    margin-right: 0;
    background: #182647 url(../img/info.png) no-repeat center 47px;
    background-size: 34%;
}

.middle .blk-2 .block:nth-child(1) .blk-title:before{   
    background:  url(../img/info-big.png) no-repeat center 47px;
    background-size: 34%;
}


.comments{
    padding: 83px 0 0;
}

.comments .blk{
    width: 50%;
    float: left;
}

.comments .blk .img{
    width: 150px;
    height: 150px;
    margin-top: 10px;
    border-radius: 100px;
    border: 2px solid rgba(241, 89, 78, .4);
    box-shadow: 2px 2px 2px #ccc; 

    transition: all .2s;
    -webkit-transition: all .2s;
}

.comments .blk:hover .img{
    border: 5px solid rgba(241, 89, 78, .6); 
}

.comments .blk:first-child .img{
    background: url(../img/khalifa-1.jpg) no-repeat center center;
}

.comments .blk:last-child .img{
    background: url(../img/khalifa-2.jpg) no-repeat center center;
}

.comments .blk .desc{
    background: url(../img/quat.png) no-repeat 20px 25px;
    padding: 65px 20px 50px 20px; 
    width: 448px;
    font-size: 13px;
    color: #A3A19E;
    font-style: italic;
}

.comments .blk .desc span{
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: #666666;
    font-weight: bold;
}

.sponcers{
    margin-top: 83px;
}

.sponcers ul{
    display: block;
    margin: 0 auto;  
    margin-left: -30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.sponcers .blk{
    width: 100%;
    float: left;
    margin-right: 20px;
    margin-bottom: 40px;
}

.sponcers .blk:first-child ul li{
    width: 100% !important;
}

.sponcers .blk.support{
    width: 100%;
}

.sponcers h1{
    border: none; 
    margin-bottom: 31px;  
    line-height: 26px;
}

.sponcers ul li{
    float: left;
    margin-left: 30px;
    margin-bottom: 30px;
    width: calc((100% / 4) - 30px);
} 

.sponcers ul li a{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.sponcers ul li a img{
    max-height: 175px;
}

.sponcers .logo .aus,
.sponcers .logo .aus img{
    width: 100px;    
}

.sponcers .list-out ul li a{
    line-height: 25px;
    color: #979797;
    text-transform: uppercase;
    font-weight: bold;
    position: relative;
    padding-left: 14px;
}

.sponcers .list-out li a:before{
    content: ' ';
    width: 5px;
    height: 5px;
    background: rgba(236, 33, 17, 0.4);
    position: absolute;
    left: 0;
    top: 4px;
}

.sponcers ul li.zu{
    height: 87.2px;
}
.sponcers ul li img{
    max-width: 100%; 
    height: inherit;
}
.sponcers ul li.zu img{
    height: 100%;    
}

.sponcers .list-out{
    width: 447px;
}

.sponcers .list-out ul{
    width: 222px;
    float: left;
    font-size: 12px;
}

.sponcers .list-out ul:first-child{
    /*margin-left: 5%;*/
}

.sponcers .under {
    width: 27%;
    float: right;
    padding-left: 25px;
}

.sponcers .under ul,
.sponcers .under ul li{
    width: 100%;
}

/*Static*/
.splash-static{
    height: 334px;    
    padding-top: 142px;
}

.splash-static h1{
    font-weight: bold;
    font-size: 34px;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Francois One', sans-serif;
}

.splash-static h1 span{
    color: #ec2111;
}

.container.static {
    margin-top: 30px;
    color: #A3A19E;
}

.static .content {
    width: 68.41666666666667%;
}

.container.static .content p{
    padding-right: 55px;
    line-height: 25px;
}

.container.static .content > p:first-child{
    margin-top: 0;
}

.content b.title{
    font-size: 15px;
}

.content b{
    font-size: 14px;
    margin-bottom: 5px;
    margin-top: 25px; 
    color: rgba(64, 58, 58, 0.8);
}

.static .content img{
    width: 100%;
    margin-bottom: 20px;
}

.static p{
    margin-bottom: 20px;
}


/*Sidebar*/

.static .sidebar{
    width:  29.16666666666667%;
}

.static .sidebar h1.title{
    font-size: 24px;
    color: #ec2111;
    /*font-weight: bold;*/
    text-transform: uppercase;
    border-bottom: 1px solid #ccc;
    /*padding: 5px ;*/
    margin-bottom: 20px;
    font-family: 'Francois One', sans-serif;
}

.static .sidebar h1.title span{
    color: #000;
}

.sidebar ul li{
    margin-bottom: 24px;
}

.sidebar .useful,
.sidebar .call{
    margin-top: 0px;
    margin-bottom: 20px;
}

.sidebar .useful a,
.sidebar .call a{
    display: block;
    line-height: 40px;
    background: #ede6d6 ;
    margin-bottom: 10px;
    color: #716e68; 
    border-right: 0px solid #f1594e;    
}

.sidebar .useful a span,
.sidebar .call a span{
    background: #f1594e url(../img/link.png) no-repeat center center;
    background-size: 50%;
    height: 40px;
    width: 40px;
    display: inline-block;
    float: left;
    margin-right: 20px;

    transition: all .1s;
    -webkit-transition: all .1s;
}

.sidebar .useful a:hover span{
    background: #DF2113 url(../img/link.png) no-repeat center center;
    background-size: 60%;
}

.sidebar .call a.pdf span{
    background: #f1594e url(../img/pdf.png) no-repeat center center ;
    background-size: 50%;
}

.sidebar .call a.pdf:hover span{
    background: #DF2113 url(../img/pdf.png) no-repeat center center;
    background-size: 60%;
}


/*About*/
.splash-static.about{
    background: #0f1d40 url(../img/splashes/about.png?v2) no-repeat center center;
    background-size: 100%;
}

/*news single*/
.splash-static.singleNews{
    background: #0f1d40 url(../img/splashes/news-single.png?v2) no-repeat center center;
    background-size: 100%;
}


/*Research topics*/
.splash-static.researchTopics{
    background: #0f1d40 url(../img/splashes/research-topics.png?v2) no-repeat center center;
    background-size: 100%;
}


.researchTopics .content h2{
    color: #ec2111;
    font-size: 18px;
    text-transform: uppercase;
    font-family: 'Francois One', sans-serif;
}

.researchTopics .content h2 span{
    color: #000;

}


/*guidelines*/
.splash-static.guidelines{
    background: #0f1d40 url(../img/splashes/guidelines.png?v2) no-repeat center center;
    background-size: 100%;
}

.guidelines .content h2{
    color: #ec2111;
    font-size: 20px;
    text-transform: uppercase;
    font-family: 'Francois One', sans-serif;
    /*    margin-top: 30px;
        padding-top: 30px;*/
}

.guidelines .content h2:before{
    content: ' ';
    border-top: 1px solid #ccc;
    margin: 0 auto;
    margin-top: 30px;
    padding-top: 30px;
    width: 50%;
    display: block;
}

.guidelines .content h2.first:before{
    display: none;
}

.guidelines .content h2 span{
    color: #000;

}


.guidelines .content b{
    margin-bottom: 5px;
    margin-top: 25px;
    color: rgba(64, 58, 58, 0.8);
    display: block;    
}

.guidelines .content > ul{
    margin-top: 10px;
}

.guidelines .content ul li{
    list-style-position: inside;
    /*list-style-image: url(../img/li.png);*/
    margin-bottom: 10px;
}

.guidelines .content ul li > ul{
    /*margin-left: 10px;*/
}

/*presentation-guidelines*/
.presentation-guidelines ul li{
    margin-bottom: 10px;
}
.container.static.presentation-guidelines .content a{
    font-weight: bold;
    color: #f1594e;
    text-decoration: underline;
}
.container.static.presentation-guidelines .content a:hover{
     color: #ec2111;
}

/*News*/

.splash-static.news{
    background: #0f1d40 url(../img/splashes/news.png?v2) no-repeat center center;
    background-size: 100%;
    margin-bottom: 15px;
}

.container.news .block{
    padding: 25px 25px 25px 0;
    border-bottom: 1px solid rgba(204, 204, 204, 0.19);
}

.container.news .block:first-child{
    padding-top: 0;
} 

.container.news .block .img{
    position: relative;
    width:280px; 
    height: 183px;
    overflow: hidden;
    float: left;
}

.container.news .block img{
    width: 100%; 
    min-height: 183px;
    float: left;
}

.container.news p{
    margin-bottom: 3px;
}

.container.news .block:nth-child(even) {
    background: #f9f9f9;
}

.container.news .block .desc{
    float: left;
    width: calc(100% - 280px);
    padding-left: 30px;
}

.container.news .block h1,.container.news .block h1 span{
    color: #cfcfcf;
}

.container.news .block a{
    color: #000;  
}


/*Online submission*/
.splash-static.submission{
    background: #0f1d40 url(../img/splashes/submission.png?v2) no-repeat center center;
    background-size: 100%;
}

.container.submission .content,.container.contact .content{
    width: 100%;
}

.container.submission p:first-child{
    background: url(../img/info-p.png) no-repeat left top;
    padding-left: 25px;
}

.container.submission .form-block{
    margin-bottom: 10px; 
}

.container.submission .form-block:after{
    content: " ";
    display: block;
    clear: both;
}

.container.submission label.big{
    width: 50%;
    float: left;
    text-align: right;
    padding-right: 20px;
    line-height: 40px;
}

.container.submission .inputs{
    width: 50%;
    float: right;
}

.container.submission input[type=text],.container.submission input[type=email],.container.submission textarea,.container.submission select{
    width: 70%;
    height: 40px;
    padding: 0 10px;
    background: #f4f4f4;
    border: 1px solid #e7e7e7;
}

.container.submission textarea{
    height: 150px;
    padding: 10px; 
    background: #f4f4f4;
    border: 1px solid #e7e7e7;
}

.container.submission h1.title{
    line-height: 35px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;    
    font-size: 15px;
    position: relative;
    text-transform: uppercase;
    font-weight: bold;
    padding-left: 50px;
    margin-top: 40px;
}

.container.submission h1.title:first-child{
    margin-top: 0;
}

.container.submission h1.title span.bg{
    line-height: 36px;
    background: #ed2e20;
    color: #fff;      
    width: 40px;
    display: inline-block;
    text-align: center;
    font-weight: bold;
    font-size: 30px;
    position: absolute;
    left: 0;
    top : 0;
    cursor: pointer;
}

.container.submission h1.title span.bg.plus{
    background: #ccc;
}

.container.submission input[type=submit]{
    width: 150px;
    height: 40px;
    background: #ec2111;
    color: #fff;
    border: none;
    text-transform: uppercase;
    font-weight: bold;
    outline: none;

    transition: all .2s;
    -webkit-transition: all .2s;
}

.container.submission input[type=submit]:hover{
    opacity: .5;
}

.container.submission .blocks{
    display: none;
}

/*Committees*/
.splash-static.committee{
    background: #0f1d40 url(../img/splashes/committees.png?v2) no-repeat center center;
    background-size: 100%;
}

.container.committee .content{
    width: 100%;
}


.container.committee ul.menu{
    width: 27.5%;
    background: #f7f7f7;
    /*padding: 40px 0;*/
}

.container.committee ul.menu li{
    line-height: 40px;
    padding: 0 20px;
    cursor: pointer; 
    color: #f1594e; 

    transition: all .2s;
    -webkit-transition: all .2s;
}


.container.committee ul.menu li.active,.container.committee ul.menu li:hover{
    color: #fff;
    background: #f1594e;
    position: relative;
}

.container.committee ul.menu li.active:after{
    content: '+';
    color: #fff;
    right: 20px;
    top : 0px;
    position: absolute;
}

.container.committee .desc{
    width: 72%; 
    padding-left: 10px;
}

.container.committee .descList ul{
    width: 80%;
}

.container.committee .descList.double ul{
    float: left;
    width: 48%; 
}

.container.committee .descList.double ul:first-child{
    margin-right: 2%;
}

.container.committee .descList ul li{
    line-height: 30px;
    padding: 0 10px;  
    background: rgba(0, 0, 0, 0.08);
    color: #8A8A8A;
}

.container.committee .desc ul li b{
    margin-top: 38px;
    display: block;
}

.container.committee .desc > ul > li{
    display: none;
}

.container.committee .desc ul li > ul > li:nth-child(odd){
    background: #f9f9f9;
    color: #979797;

}

.container.committee .desc ul li.with-img{
    height: 155px;
    padding:  20px;
}

.container.committee .desc ul li.with-img .img{
    width: 26%;
    display: block!important;
    max-width: 115px;
    height: 115px;
    overflow: hidden;
    border-radius: 115px;
    border : 1px solid #ee5545;
    float: left;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.container.committee .desc ul li.with-img .img img{
    min-height: 100%;
}

.container.committee .desc ul li.with-img .dtls{
    float: left;
    padding-left: 20px;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.container.committee .desc ul li.with-img .dtls h1{
    font-size: 20px;
}

.container.committee .desc ul li.with-img .dtls span{
    display: block;
    padding-left: 30px;
    line-height: 24px;
}

.container.committee .desc ul li.with-img .dtls span.email{
    background: url(../img/icons/new67.png) no-repeat left center;
    background-size: 24px;
}

/*Contact*/
.splash-static.contact{
    background: #0f1d40 url(../img/splashes/contact.png?v2) no-repeat center center;
    background-size: 100%;
}

@media screen and (min-width :1260px){
    .splash-static.contact{
        background: #0f1d40 url(../img/splashes/contact.png?v2) no-repeat center -50px; 
        background-size: 100%;
    }
}



/*Below codes are new*/

/*
.container.contact .content{
    position: relative;
}

.container.contact .map{
    position: relative;
    background: #f0f0f0;
    padding: 20px 0;
}

.container.contact .forms{
    margin-left: -10%;
}

.container.contact .forms .form .title{
    padding: 20px;
    color: #909090;
    background: #F9F9F9;
     font-weight: 400; 
    font-weight: bold;
    font-size: 13px;
    letter-spacing: .7px;
}

.container.contact .forms .form{
    width: 40%;
    float: left;
    margin-bottom: 30px;
    margin-left: 10%;
}
.container.contact .forms .form .form-group{
    margin-bottom: 20px;
}

.container.contact .forms .form .form-group:after{ 
    clear: both;
    display: block;
    content: ' ';
}


.container.contact .forms .form .form-group label{
    float: left;
    width: 34%;
    line-height: 30px;
}


.container.contact form input[type=text],
.container.contact form input[type=email],
.container.contact form textarea,
.container.contact form select{
    float: right;
    margin-top: 20px;
    display: block;
    height: 30px;
    padding:0 10px;
    width: 66%;
    color: #292929;
    outline: none;
    border: 1px solid #A3A19E;
    border-radius: 5px;
}

.container.contact form select{
    color: #979797;
}

.container.contact form input[type=submit]{
    outline: none;
    float: left;
    margin-top: 10px;
    width: 100px;
    height: 30px;
    background: #ec2111;
    color: #fff;
    text-transform: uppercase;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    margin-left: 34%;

    transition: all .2s;
    -webkit-transition: all .2s;
} 

.container.contact form input[type=submit]:hover{
    opacity: .7;
}

.container.contact form textarea{
    height: 100px;
    padding: 10px;
}

.container.contact form input[type=text]:first-child{
    margin-top: 0;
}*/


/*new codes end*/



.container.contact .content{
    position: relative;
}

.container.contact .map {
    position: relative;
}

.container.contact form{
    position: absolute;
    background: #111f42;
    padding: 20px;
    z-index: 999;
    width: 400px;  
    right: 45px;
    top: 23px;
}

.container.contact form input[type=text], .container.contact form input[type=email],.container.contact form textarea,.container.contact form select{
    background: #2b354e;
    margin-top: 20px;
    display: block;
    height: 40px;
    padding:0 10px;
    width: 100%;
    border: 1px solid #444e67;
    color: #fff;
    outline: none;
}

.container.contact form select{
    color: #979797;
}

.container.contact form input[type=submit]{
    margin-top: 20px;
    width: 100px;
    height: 40px;
    background: #ec2111;
    color: #fff;
    text-transform: uppercase;
    border: none;
    cursor: pointer;

    transition: all .2s;
    -webkit-transition: all .2s;
} 

.container.contact form input[type=submit]:hover{
    opacity: .7;
}

.container.contact form textarea{
    height: 100px;
    padding: 10px;
}

.container.contact form input[type=text]:first-child{
    margin-top: 0;
}





/*University*/
.splash-static.uaeu-uni{
    background: #0f1d40 url(../img/splashes/uaeu.png?v2) no-repeat center center;
    background-size: 100%;
}

.splash-static.khalifa-uni{
    background: #0f1d40 url(../img/splashes/khalifa.png?v2) no-repeat center center;
    background-size: 100%;
}

.splash-static.adec-uni{
    background: #0f1d40 url(../img/splashes/adec.png?v2) no-repeat center center;
    background-size: 100%;
}




.container.uni .content p a{
    color: #f1594e;
}

/*photo*/
.splash-static.photo{
    background: #0f1d40 url(../img/splashes/photo.png?v2) no-repeat center center;
    background-size: 100%;
}

.container.static.photo .albums{
    margin-left: -4%;
}

.container.static.photo .albums .album{
    margin-left: 3%;
    width: 47%;
    float: left;
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
}


@media screen and (max-width : 500px){

    .container.static.photo .albums{
        margin-left: 0%;
    }

    .container.static.photo .albums .album{
        margin-left: 0%;
        width: 100%;
    }
    
    .sponcers ul li a img{
		max-width: 140px !important;
	}
}

.container.static.photo .albums .album:before{
    content: ' ';
    position: absolute;
    top: -142%;
    right: -202%;
    width: 200%;
    height: 200%;
    background: rgba(0,0,0,.5);
    -ms-transform: rotate(45deg); 
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    border: 2px solid #fff;

    transition: all .2s;
    -webkit-transition: all .2s;
}

.container.static.photo .albums .album:after{
    content: ' ';
    position: absolute;
    top: 6%;
    left: -236%;
    width: 200%;
    height: 200%;
    background: rgba(0,0,0,.5);
    -ms-transform: rotate(45deg); 
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    box-shadow: 2px 2px 2px #ccc;
    border: 2px solid #fff;

    transition: all .1s;
    -webkit-transition: all .1s;
}


.container.static.photo .albums .album a.click-here{
    display: block;
    padding: 32px 10px;
    height: 100px;
    width: 100px;
    margin-left: -50px;
    margin-top: -50px;
    background: #eb342d;
    color: #fff;
    border-radius: 100px;
    position: absolute;
    z-index: 99;
    left: 50%;
    top: 50%;
    text-align: center;
    text-transform: uppercase;
    line-height: 18px;
    font-size: 11px;
    border: 2px solid #fff;
    opacity: 0;

    transition: all .1s ;
    -webkit-transition: all .1s ;
}


.container.static.photo .albums .album:hover:after{
    left: -137%;
}

.container.static.photo .albums .album:hover:before{
    right: -100%;
}

.container.static.photo .albums .album:hover a.click-here{
    opacity: 1;

    transition: all .2s .3s;
    -webkit-transition: all .2s .3s;
}


.container.static.photo .albums .album:hover span{

    -webkit-animation-name: opacity; 
    animation-name: opacity; 
    -webkit-animation-duration: 1s; 
    animation-duration: 1s; 
    -webkit-animation-fill-mode: both; 
    animation-fill-mode: both; 
}



.container.static.photo .albums .album img{
    display: block;
}

.container.static.photo .albums .album span{
    position: absolute;
    bottom: 0;
    left: 0;
    background: #eb342d;
    color: #fff;
    text-transform: uppercase;
    padding: 0 40px 0 20px;
    line-height: 40px;

    -webkit-animation-name: fadeInLeftBig; 
    animation-name: fadeInLeftBig; 
    -webkit-animation-duration: 1s; 
    animation-duration: 1s; 
    -webkit-animation-fill-mode: both; 
    animation-fill-mode: both; 
}



.container.static.photo .albums .album span:after{
    content: '';
    background: url(../img/icons/logo-ico.png) no-repeat center center;
    height: 40px;
    width: 40px;
    position: absolute;
    right: -18px;
    top: -2px;
    background-size: 100%;
}

/*video*/
.splash-static.video{
    background: #0f1d40 url(../img/splashes/video.png?v2) no-repeat center center;
    background-size: 100%;
}

.container.static.video img{
    margin-bottom: 0;
}


/*call for paper*/

.container.static.call p a,
.container.static.guidelines .content a{
    color: #f1594e;
}

.container.static.call ul li{
    margin-bottom: 20px;
    line-height: 20px;
    padding-left: 21px;
    background: url(../img/icons/right133.png) no-repeat left 2px;
    background-size: 14px;
}

.container.static.call .call-btn {
    display: block;
    float: right;
    color: #fff;
    line-height: 40px;
    padding: 0 10px;
    background: #0f1d40;
    margin-top: -52px;
}

/*University*/
.splash-static.events{
    background: #0f1d40 url(../img/splashes/events.png?v2) no-repeat center center;
    background-size: 100%;
}


@media screen and (min-width : 500px){
    .middle-mobile{
        display: none !important;
    }
}

/*Program*/

.container.static.programe ul.title{
    margin-bottom: 20px;
}

.container.static.programe ul.title li{
    float: left;
    line-height: 40px;
    font-size: 13px;
    text-transform: uppercase;
    padding: 0 10px ;
    background: #E9E9E9;
    color: #969696;
    font-weight: bold;
    cursor: pointer;
    margin-right: 1px;
}

@media screen and (max-width : 500px){
    .container.static.programe ul.title li{
        width : 100%;
        text-align: center;
        margin-bottom: 2px;
    }
} 

.container.static.programe ul.title li.active{
    background: #f1594e;
    color: #fff;
}


.container.static.programe table,.container.static.speakers table{
    display: none;
    width: 100%;
    border: 1px solid #ccc;
    margin-bottom: 50px;
}

.container.static.programe table.active,.container.static.speakers table{
    display: table;
}

.container.static.programe table tr td,.container.static.programe table tr th,.container.static.speakers table tr td,.container.static.speakers table tr th{
    padding: 10px;
    min-height: 40px;
    border-left: 1px solid #fff;
}

.container.static.programe table tr td:first-child,.container.static.programe table tr th:first-child,.container.static.speakers table tr td:first-child,.container.static.speakers table tr th:first-child{
    border-left: none;
}

.container.static.programe table tr th,.container.static.speakers table tr th{
    background: #f1594e;
    color  : #fff;
    text-align: left;
    text-transform: uppercase;   
}

.container.static.programe table tr th:first-child,.container.static.speakers table tr th:first-child{
    border-left: none;
}

.container.static.programe table tr:nth-child(odd),.container.static.speakers table tr:nth-child(odd){
    background: #f6f6f6;
} 

.container.static.programe table tr.break{ 
    background: #0f1d40;
    color: #fff;
}


.container.static.programe .prgr-btn{
    display: inline-block;
    line-height: 40px;
    background: #ede6d6;
    margin-bottom: 10px;
    color: #716e68;
    border-right: 0px solid #f1594e;   
    width: 230px;
    padding: 0 20px;
}

.container.static.programe .prgr-btn:hover{
    background: #D9CDB1;
}

.container.static.programe .prgr-btn span{
    background: #f1594e url(../img/pdf.png) no-repeat center center;
    background-size: 50%;
    height: 40px;
    width: 40px;
    display: inline-block;
    float: left;
    margin-right: 20px;
    transition: all .1s;
    -webkit-transition: all .1s;
}

.container.static.programe .prgr-btn:hover span{
    background: #DF2113 url(../img/pdf.png) no-repeat center center;
    background-size: 60%;
}


@media screen and (max-width: 500px){
    .container.static.programe .prgr-btn{
        margin-bottom: 10px;
    }
}





/*Speakers*/

.container.static.speakers table td{
    padding: 15px !important;
}

.container.static.speakers table h2{
    font-weight: bold;
    color: #6F6F6F;
    font-family: loveloblack;
}

.container.static.speakers .spkr-dtls{    
    margin-top: 90px;
    position: relative;
}

.container.static.speakers .spkr-dtls .spkrs{
    height: 60px;
    background: #f1594e;
    color: #fff;    
    padding-left: 20px;
}

.container.static.speakers .spkr-dtls .spkrs h1{
    line-height: 60px;
    float: left;
    text-transform: uppercase;
}

.container.static.speakers .spkr-dtls .spkrs ul{
    position: absolute;
    right    : 20px;
    top: -2px;
}


.container.static.speakers .spkr-dtls .spkrs ul li{
    float: left;
    width: 50px;
    height: 50px;
    margin: 7px;
    cursor: pointer;
}

.container.static.speakers .spkr-dtls .spkrs ul {
    counter-reset: my-badass-counter;
}
.container.static.speakers .spkr-dtls .spkrs ul li span.num {
    display: none;
    position: absolute;
    content: counter(my-badass-counter);
    counter-increment: my-badass-counter;
    width: 15px;
    height: 15px;
    text-align: center;
    border-radius: 15px;
    font-size: 18px;
    line-height: 16px;
    bottom: -10px;
    left: 18px;
}



.container.static.speakers .spkr-dtls .spkrs ul  li.active{
    width:  100px;
    height: 100px;
    position: relative;
    top: -28px;
    margin-left: 25px;
}

.container.static.speakers .spkr-dtls .spkrs ul li.active span.num{
    display: block;
    top: 50%;
    left: -22px;
}

/*.container.static.speakers .spkr-dtls .spkrs ul  li.after-1,.container.static.speakers .spkr-dtls .spkrs ul  li.after-2{
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    top: 25px;
}*/



.container.static.speakers .spkr-dtls .spkrs .btn{
    position: absolute;
    height: 20px;
    width: 20px;
    display: inline-block;
    top: 20px;
    cursor: pointer;
}

.container.static.speakers .spkr-dtls .spkrs .btn#next{
    display: none;
    background: url(../img/icons/arrow-left.png) no-repeat center center;
    background-size: 100%;
    right: 165px;
}

.container.static.speakers .spkr-dtls .spkrs .btn#prev{
    display: none;
    background: url(../img/icons/arrow-right.png) no-repeat center center;
    background-size: 100%;
    right: 212px;
}

.container.static.speakers .spkr-dtls .dtls{
    display: none;
}

.container.static.speakers .spkr-dtls .dtls.active{
    display: block;
}

.container.static.speakers .spkr-dtls .main{
    background: #f3f3f3;    
    padding-top: 25px;
    margin-bottom: 30px;
} 

.container.static.speakers .spkr-dtls .main .blk{
    float: left;
    width: 50%;
    padding: 10px 20px 20px;

}

.container.static.speakers .spkr-dtls  p{
    padding-right: 0; 
}

.container.static.speakers .spkr-dtls .main .blk p{

    font-size: 13px;
    margin: 0;
}

.container.static.speakers .spkr-dtls .main .title-time{
    background: #0f1d40;
    line-height: 40px;
    color: #fff;
    padding-left: 20px;  
}

.container.static.speakers .spkr-dtls .main .title-time span{
    display: inline-block;
    margin-right: 20px;
}

.container.static.speakers .spkr-dtls .main .title-time span b{
    color: #f1594e;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
}


.container.static.speakers .spkr-dtls .main .blk h2{
    font-size: 20px;
}

.container.static.speakers .spkr-dtls .main div.blk h3{
    font-size: 18px;
    color: #f1594e;
}




.container.static.speakers .spkr-dtls .other h2{
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: #626262;
}

.container.static.speakers .other ul{
    margin-top: -10px;
    margin-bottom: 20px;
}

.container.static.speakers .other ul li{
    line-height: 25px;
    position: relative;
    padding-left: 15px;
}

.container.static.speakers .other ul li:after{
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 7px;
    height: 7px;
    background: #f1594e;
}


@media screen and (max-width : 530px){
    .container.static.speakers .spkr-dtls .spkrs ul  li.before,.container.static.speakers .spkr-dtls .spkrs ul  li.after,.container.static.speakers .spkr-dtls .spkrs .btn#prev{
        display: none;
    }

    .container.static.speakers .spkr-dtls .spkrs ul{
        top: -4px;
        right    : 5px;
        margin-right: 22px
    }

    .container.static.speakers .spkr-dtls .main .title-time {
        color: #6C6C6C;
        background: #D7D7D7;
    }

    .container.static.speakers .spkr-dtls .spkrs .btn#next{
        display: block;
        right: 4px;
    }

    .container.static.speakers .spkr-dtls .spkrs ul li{
        display: none;
        width : 70px;
    }

    .container.static.speakers .spkr-dtls .spkrs ul li.active{
        display: block;
    }


    .container.static.speakers .spkr-dtls .main .blk{
        width: 100%;
    }

    .container.static.speakers .spkr-dtls .main .blk h2{
        font-size: 17px;
    }

    .container.static.speakers .spkr-dtls .main .title-time span{
        display: block;
        line-height: 25px;
        padding: 7px 0;
    }
} 


/*Location*/

.container.static .content.location .text{
    float: left;
    width: 100%;
}

.container.static .content.location .map{
	margin-top: 30px;
	width: 100%;
	display: inline-block;
}

.container.static .content.location .venue{
	display: inline-block;
    float: left;
    width: 50%;
}

.container.static .content.location .link{
	margin-top: 20px;
}

.container.static .content.location .link h1{
	font-size: 15px;
}

.container.static .content.location h1 a {
	font-weight: bold;
}

@media screen and (max-width : 800px){
    .container.static .content.location .text{
        width: 50%;
    }

	.container.static .content.location .venue{
		width: 100%;
		margin-bottom: 20px;
	}
} 


@media screen and (max-width : 500px){
    .container.static .content.location .text,.container.static .content.location .map,.container.static .content.location .venue{
        width: 100%;
    }
} 



/*Register*/

.container.static .content.register{
    padding-top: 8px;
}

.container.static .content.register .form-group{
    margin-bottom: 20px;
}

.container.static .content.register .form-group input{
    width: 300px;
    line-height: 30px;
    padding: 0 10px;
    outline: none;
    border: 1px solid #E3E3E3;
}

.container.static .content.register .form-group input::-webkit-input-placeholder {
    font-size: 11px;
    text-transform: uppercase;
}

.container.static .content.register .form-group input:-ms-input-placeholder {
    font-size: 11px;
    text-transform: uppercase;
}

.container.static .content.register .form-group input:-moz-placeholder {
    font-size: 11px;
    text-transform: uppercase;
}

.container.static .content.register .form-group input::-moz-placeholder {
    font-size: 11px;
    text-transform: uppercase;
}

.container.static .content.register input[type=submit]{
    height: 30px;
    padding: 0 20px;
    color: #fff;
    background: #DF2113;
    outline: none;
    border: none;
    opacity: .9;
    cursor: pointer;
    text-transform: uppercase;
}

.container.static .content.register input[type=submit]:hover{
    opacity: 1;
}




/*Footer*/

footer{
    background: #0f1d40;
    border-top: 3px solid #f1594e;
    margin-top: 30px;
}

footer .top{
    background: #ede6d6;
    padding: 0 20px;
    line-height: 60px;
}

footer .top ul li{
    list-style: none;
    float: left;
}

footer .top ul li a{
    width: 25px;
    height: 25px;
    display: block;
}

footer .top h1{
    border-bottom: none;
    line-height: 60px;
    margin-bottom: 0;    
}

footer .top ul li a{
    margin-top : 15px;
    margin-right: 5px;
    border-radius: 25px;
}

footer .top ul li a:hover{    
    -webkit-box-shadow: inset 1px 1px 1px 1px rgba(0,0,0,0.50);
    -moz-box-shadow: inset 1px 1px 1px 1px rgba(0,0,0,0.50);
    box-shadow: inset 1px 1px 1px 1px rgba(0,0,0,0.50);
}

footer .top ul li a.fb{
    background: url(../img/fb.jpg) no-repeat center center;
}

footer .top ul li a.twt{
    background: url(../img/twt.jpg) no-repeat center center;
}

footer .top ul li a.in{
    background: url(../img/in.jpg) no-repeat center center;
}


footer .top ul.left{
    margin-left: 20px;
}


footer .top label{
    color: #979288;
    text-transform: uppercase;
    font-size: 12px;
}

footer .top input[type=email]{
    line-height: 36px;
    width: 250px;
    padding: 0 10px;
    background: #f2ede1;
    border-radius: 5px;
    border: 1px solid #fff;
    margin-left: 10px;
    outline: none;
}

footer .top input[type=submit]{
    background: #ec2111;
    color: #fff;
    line-height: 37px;
    padding: 0 10px;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 12px;
    font-size: 11px;
    font-weight: bold;
    outline: none;
    cursor: pointer;

    transition: all .2s;
    -webkit-transition: all .2s;
}

footer .top input[type=submit]:hover{
    opacity: .5;
}

footer .bottom .blk{
    float: left;
    margin: 40px 0;
    color: #939393;
    font-size: 13px;
}

footer .bottom ul li{
    list-style: circle;
    text-transform: capitalize;
    list-style-position: inside;
}

footer .bottom ul li a{
    font-size: 14px;
    line-height: 20px;

    /* text-transform: uppercase; */
    transition: color .2s;
    -webkit-transition: color .2s;
}

footer .bottom ul li a:hover{
    color: #fff;
}

footer .bottom .blk h1{
    color: #fff;
    border-bottom: 1px solid rgba(0,0,0,.3);
}

footer .bottom .blk ul{
    float: left;
    margin-right: 30px;
    width: 100%;
}

footer .bottom .blk ul:last-child{
    margin-right: 0;
}

footer .bottom .blk{
    width: 20%;
    margin-left: 20px;
}

footer .bottom .blk h1{
    border-bottom: 0;
    line-height: 30px;
    margin-bottom: 0px; 
    font-size: 14px;
    width: 100%;
    float: left;
}

/*footer .bottom .blk-1{
    width: 500px;
    margin-right: 60px;
}

footer .bottom .blk-2{
    width: 300px;
    margin-right: 60px;
}

footer .bottom .blk-3{
    width: 200px;
}*/

footer .cpyryt{
    background: rgba(0,0,0,.2);
    text-align: center;
    font-size: 12px;
    line-height: 40px;
    color: #676767;
}

footer .cpyryt a{
    color: #FFF;
}


/*Login*/
#login,#register{
    display: none;
    position: fixed; 
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99999999;
}


.login-bg{
    background: rgba(0,0,0,.7);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

#login .container,#register .container{
    position: absolute;
    top: 30%;
    left:50%;
    margin-left:-20%;
    background: #343434 url(../img/login-bg.png) no-repeat right center;
    width: 40%;
    height: 350px;
    padding-top: 80px;     
}

#register .container{
    height: 204px;
    top: 40%;
}


@media screen and (max-width : 1240px){
    #login .container,#register .container{
        width: 484px;     
    }
} 

@media screen and (max-width : 1100px){
    #login .container,#register .container{
        left: 45%;
    }
} 

@media screen and (max-width: 890px){
    #login .container ,#register .container{
        left: 42%;
    }
}

@media screen and (max-width: 810px){
    #login .container,#register .container {
        left: 42%;
    }
}

@media screen and (max-width: 790px){
    #login .container {
        left: 38%;
    }
}

@media screen and (max-width: 710px){
    #login .container,#register .container {
        left: 30%;
    }
}

@media screen and (max-width: 630px){
    #login .container,#register .container {
        left: 10%;
        margin-left:0%;
    }

    #login .container .close,#register .container .close{
        right: 0px !important;
        top: 0% !important;
    }
}

@media screen and (max-width: 590px){
    #login .container,#register .container {
        left: 10%;
        width: 80%;
    }
}

@media screen and (max-width: 500px){
    #login .container,#register .container {
        left: 10%;
        width: 80%;
        height: 280px; 
        padding-top: 38px;
    }      
    #register .container{
        padding-top: 105px;
    }


    #login .container .close,#register .container .close{
        right: 10px !important;
        top: 10px !important;
        height: 20px;
        width: 20px;
    }
} 


@media screen and (max-width: 490px){
    #login .container ,#register .container{
        width: 98%;
        left : 1%;
    }       
}


@media screen and (max-width: 366px){
    #login .container ,#register .container{
        height: 219px;
        padding-top: 12px;
    }       

    #login .container form p,#register .container form p{
        padding-top: 10px;
    }
}


#login .container h1, #register .container h1{
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    text-transform: uppercase;    
    color: #fff;
}

#register .container h1{
    font-size: 26px;
}



#login .container form{
    width: 340px;
    margin: 0 auto;
}

#login .container form label{
    display: inline-block;
    width: 40px;
    height: 40px;
    float: left;   
    margin-right: 5px;
}

#login .container form .email label{
    background: #ec2111 url(../img/login-email.png) no-repeat center center;
}

#login .container form .password label{
    background: #ec2111 url(../img/login-pass.png) no-repeat center center;     
}

#login .container form input[type=email],#login .container form input[type=password]{
    height: 40px;
    width: 295px;
    float: left;
    outline: none;
    margin-bottom: 5px;
    padding: 0 10px;
}

#login .container form input[type=submit]{
    height: 30px;
    padding: 0 24px 0 10px;
    background: #ec2111 url(../img/icons/login.png) no-repeat right center;
    background-size: 20px;
    background-position-x: 51px;
    border: none;
    color: #fff;
    text-transform: uppercase;
    outline: none;
    cursor: pointer;

    transition: all .2s;
    -webkit-transition: all .2s;
}

#login .container form input[type=submit]:hover{
    opacity: .5;
}

#login .container span{
    line-height: 30px;
    color: #d8d8d8;
    text-transform: capitalize;
}

#login .container  a{
    color: #a1a1a1;
}

#login .container form p{
    display: block;
    color: #d8d8d8;
    margin-top: 20px;
    padding-right: 10px;
    line-height: 20px;
    background:  url(../img/icons/creat.png) no-repeat right center;    
    background-size: 13px;
}

#login .container .close,#register
.container .close{
    position: absolute;
    height: 50px;
    width: 50px;
    background: url(../img/icons/close.png) no-repeat center center;
    right: -72px;
    top: 40%;
    cursor: pointer;
}


/*pagination*/

.pagination{
    font-weight: bold;
    color: #ec2111;
    text-transform: uppercase;
    margin: 20px 0;
}

.pagination li{
    float: left;
    margin-left: 5px;
    margin-bottom: 5px;
}

.pagination li a{
    padding: 5px 10px;
    background: #ede6d6;
    display: block;
}

.pagination li a:hover{
    opacity: .5;
}

.pagination strong {
     background: #ec2111;
    color: white;
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 75%;
    margin-right: 1%;
}

.pagination a {
    display: inline-block;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 75%;
    background: #f1eee7;
    margin-right: 1%;
    vertical-align: top;
}

.pagination a:hover {
    opacity: 0.5;
}

.pagination a[rel="next"] {
  background: #f1eee7 url(../img/angle-right-b.png) no-repeat center center;
}

.pagination a[rel="prev"] {
  background: #f1eee7 url(../img/angle-left-b.png) no-repeat center center;
}

.pagination a[rel="start"] {
  background: #f1eee7 url(../img/angle-double-left.png) no-repeat center center;
}

.pagination a[rel="next"] + a {
     background: #f1eee7 url(../img/angle-double-right.png) no-repeat center center;
}

@-webkit-keyframes fadeInLeftBig { 
    0% { 
        opacity: 0; 
        -webkit-transform: translateX(-180px); 
    } 
    100% { 
        opacity: 1; 
        -webkit-transform: translateX(0); 
    } 
} 
@keyframes fadeInLeftBig { 
    0% { 
        opacity: 0; 
        transform: translateX(-180px); 
    } 
    100% { 
        opacity: 1; 
        transform: translateX(0); 
    } 
} 


@-webkit-keyframes opacity { 
    0% { 
        opacity: 1; 
    } 
    100% { 
        opacity: 0; 
    } 
} 
@keyframes opacity { 
    0% { 
        opacity: 1; 
    }  
    100% { 
        opacity: 0;      
    } 
}

.conf-blocks {
        
}

.conf-blocks .blk {
        display: grid;
        background: #f1eee7; /*#ede6d6;*/
        padding: 3%;
        border-top: 2px solid #DF2113;
        color: black;
        margin-bottom: 3%;
}

.conf-blocks .blk h3 {
        font-size: 18px;
        font-weight: bold;
        margin-right: 15%;
        margin-left: 8%;
        color: #242424;
}

.conf-blocks .blk .icon {
    background-size: 50%;
    height: 40px;
    width: 40px;
    display: inline-block;
    float: left;
    margin-right: 20px;
    transition: all .1s;
    -webkit-transition: all .1s;
}

.conf-blocks .blk .title-icon {
    background: #DF2113 url(../img/texter.png) no-repeat center center;
}

.conf-blocks .blk .author-icon {
    background: #DF2113 url(../img/user-circle.png) no-repeat center center;
}

.conf-blocks .blk .title-blk {
    
}

.conf-blocks .blk .author-blk {
    margin-top: 1%;
}

.conf-blocks .blk .author-blk div {
        
}

.conf-blocks .blk h5 {
        font-size: 15px;
        margin-right: 15%;
        margin-left: 8%;
}

.conf-blocks .blk .inst-span {
    line-height: 2;
}

.conf-blocks .blk h4 {
    font-size: 16px;
    font-weight: bolder;
    margin-top: 3%;
    color: #df2113
}

.conf-blocks .main-title {
    font-size: 25px;
    line-height: 3;
    font-weight: bold;
    color: #000;
}

.no-data {
    font-size: 16px;
    font-weight: bolder;
    margin-top: 3%;
    color: #df2113
}

@media screen and (max-width :725px){
    .conf-blocks .blk h3 {
        margin-left: 11%;
    }
    .conf-blocks .blk h5 {
        margin-left: 11%;
    }
}

@media screen and (max-width :625px){
    .conf-blocks .blk h3 {
        margin-left: 14%;
    }
    .conf-blocks .blk h5 {
        margin-left: 14%;
    }
}
    
.download-block a {
    display: block;
    line-height: 40px;
    background: #ede6d6 ;
    margin-bottom: 10px;
    color: #716e68; 
    border-right: 0px solid #f1594e; 
}

.download-block a span {
    background: #f1594e url(../img/link.png) no-repeat center center;
    background-size: 50%;
    height: 40px;
    width: 40px;
    display: inline-block;
    float: left;
    margin-right: 20px;

    transition: all .1s;
    -webkit-transition: all .1s;
}

.download-block a:hover span {
    background: #DF2113 url(../img/link.png) no-repeat center center;
    background-size: 60%;
}