
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Raleway",sans-serif;
    font-size: 18px;
    color: #555;
    background: #020124;
    letter-spacing:0.6px
}

a {
  color: #fff;
  text-decoration: underline;
}

    a:hover {
        color: #f3223c;
       
       
    }

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
    font-family: "Raleway",sans-serif !important;
}
.soeblue {color: #28ace2 !important}
.soered {color: #f3223c !important}
.soeBGblue {background-color:#28ace2 !important
}
p {
    line-height: 28px !important;
    font-size: 16px !important;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #04488e;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #85b6cf;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 120px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  background: #1e4356;
  color:#fff; font-size:14px
}
#header a{
    text-decoration:none
}
#header.header-transparent {background: none;}

#header.header-scrolled {
  background: rgba(255, 255,255, 1);
  height: 90px; color:#000 !important
}
#header.header-scrolled .navbar a{
 color:#04488e;
}
#header .logo img {
  padding: 0;
  margin: 0;
  max-height: 60px;
}



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
    padding: 0;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0 10px 30px;
        font-family: "Raleway",sans-serif;
        font-size: 16px;
        color: #fff;
        white-space: nowrap;
        transition: 0.3s;
    }

        .navbar a i,
        .navbar a:focus i {
            font-size: 12px;
            line-height: 0;
            margin-left: 5px;
        }

        .navbar a:hover,
        .navbar .active,
        .navbar .active:focus,
        .navbar li:hover > a {
            color: #f3223c !important;
        }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 14px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
    }

        .navbar .dropdown ul li {
            min-width: 200px;
        }

        .navbar .dropdown ul a {
            padding: 10px 20px;
            font-size: 14px;
            text-transform: none;
            color: #1c3745;
        }

            .navbar .dropdown ul a i {
                font-size: 12px;
            }

            .navbar .dropdown ul a:hover,
            .navbar .dropdown ul .active:hover,
            .navbar .dropdown ul li:hover > a {
                color: #68A4C4;
            }

    .navbar .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navbar .dropdown .dropdown ul {
        top: 0;
        left: calc(100% - 30px);
        visibility: hidden;
    }

    .navbar .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: 100%;
        visibility: visible;
    }

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(17, 38, 48, 0.9);
    transition: 0.3s;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        background-color: #fff;
        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 10px 20px;
        font-size: 15px;
        color: #1e4356;
    }

        .navbar-mobile a:hover,
        .navbar-mobile .active,
        .navbar-mobile li:hover > a {
            color: #68A4C4;
        }

    .navbar-mobile .getstarted,
    .navbar-mobile .getstarted:focus {
        margin: 15px;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

            .navbar-mobile .dropdown ul a:hover,
            .navbar-mobile .dropdown ul .active:hover,
            .navbar-mobile .dropdown ul li:hover > a {
                color: #68A4C4;
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }



/*--------------------------------------------------------------
# Hero No Slider Section
--------------------------------------------------------------*/
#maincontent {
    height: 100vh;
    overflow: hidden;
    position: relative;
    text-align: left;
    background: linear-gradient(rgba(200,69,219,0.2),rgba(2,0,36,0.7)), url("../../images/cover.jpg");
    color: #fff;
    background-size: cover;
    /*background-attachment: fixed;*/
}

    #maincontent::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;   
    }

#maincontent h1 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 85px;
  font-weight: 700;
  line-height:75px;
  max-width:700px;
}
    #maincontent h2 span {
        background-color: #c845db;
        border-radius: 2px;
        padding: 5px 4px;
        font-size: 24px !important;
        letter-spacing:normal
    }


#maincontent p {color: #fff;}

#maincontent .loc{font-size:18px;}
#maincontent .textdate {
font-size: 90px !important;
margin-top: -10px !important;
padding: 0px;
font-weight: 700
}

.feature-area.fa-negative {
    margin-top: -160px !important;
}
.feature-area {
    position: relative;
}
#feature-logo .partners-logo {
    background: #eee;
    text-align: center;
    border-radius: 50%;
    padding: 12px;
    border: none !important;
    box-shadow: 1px 10px 20px rgba(0,0,0,.5);
}
#feature-logo .partners-logo img {   
    border-radius: 50%;   
}    


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0; overflow-x:hidden
}

.section-bg {
  background-color: #eee;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
    padding-top: 30px;
}

.section-title-header h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  padding-bottom: 14px;
  position: relative; text-transform:uppercase; color:#1e0979
}


.section-title-header h1::after {
  content: "";
  position: absolute;
  display: block;
  width: 70px;
  height: 5px;
  background: #c845db;
  bottom: 0;
  left: calc(50% - 35px);
}

.section-title p {
  margin-bottom: 0;
}

.mobprofile{display:none}

.speakers {
    padding-bottom: 20px;
}

.speakers .modal-content{color:#444;}
.speakers .modal-content h3{font-weight:600}
.speakers .modal-content h3:after {
    content: '';
    display: block;
    width: 30px;
    height: 4px;
    background: #f3223c;
    margin-top: 0px;margin-bottom:10px

}
.speakers .modal-content h3,.speakers .modal-content p{font-size:16px; text-align:justify; line-height:30px;padding-left:20px;padding-right:20px;letter-spacing:0.5px }
.speakers .row{margin-bottom:60px}


/*--------------------------------------------------------------
# Schedules
--------------------------------------------------------------*/
.schdules {
    background: url("../../images/AUD_BG_DJI_0045.jpg")
}
.schedules .container {
    box-shadow: 0 5px 25px 0 rgba(200, 69, 219, 0.5);
    border-radius: 4px;
    background: #fff;
    color: #333;
    font-size: 17px;
    line-height: 32px;
    font-weight: 600;
    letter-spacing:normal
}

.schedules #pills-tabContent {
    background: #1e0979;
    border-radius: 4px
}

.schedules #pills-tab .nav-item .nav-link {
    color: #1e0979;
    line-height: normal;
    text-align: left;
    font-size: 14px;
    box-shadow: rgba(0,0,0,0.2) 0 2px 10px 0;
    margin-right: 20px
}
.schedules #pills-tab .nav-item .nav-link  i{
    font-size:26px
}
.schedules #pills-tab .nav-item .nav-link span{
    font-size:20px; font-weight:700
}
.schedules #pills-tab .nav-item .active {
    color: #fff !important;
}

.schedules #pills-tab .nav-item .nav-link:hover {
    color: #ffffff;
    background:#04488e;
}

    .schedules #pills-tab .nav-item .nav-link.active {
        background-color: #04488e !important;
    }
.schedules #pills-tabContent .tab-pane h2 {
    font-size: 24px !important; font-weight:700
}

.schedules #pills-tabContent .tab-pane .agendalist i{
    font-size: 14px !important
}
.schedules #pills-tabContent .tab-pane .agendalist h3 {
    font-size: 20px !important; font-weight:600; color:#1e0979
}

.schedules h2:after {
    content: '';
    display: block;
    width: 50px;
    height: 5px;
    background: #ffffff;
    margin-top: 8px;
    margin-bottom: 20px
}

.schedules a {
    color: #000;
    transition: 0.3s;
    text-decoration: underline
}

.schedules a:hover {
        color: #68A4C4;
}

#schedule .circleborder {
    border-radius: 50%;
    border: 2px solid #333; 
}

#schedule .borderright {
    border-right: 1px solid #b7c0c9;
}

#schedule .time {
    color: #1e0979;
    font-size: 18px !important;
}

#schedule .agendalist {
    background-color: #fff;
    border-bottom: 1px solid #b7c0c9;
    color: #1e0979
}

    #schedule .agendalist hr {        
        border: 1px solid #555; padding:0 !important
    }

    #schedule .agendalist .speakerimgpos {
        margin-top: -15px !important
    }

    #schedule .agendalist p {
        margin: unset;
        line-height: 22px !important
    }

    #schedule .agendalist .stitle {
        font-size: 14px !important;
        color: #333
    }

    #schedule .agendalist .subtcolor {
        color: #333;
        margin-top: -5px;
        margin-bottom: 15px;
        margin-top: 10px
    }
.tablepad{padding:15px 0 15px 10px}
/* Footers */
.footer-sketch {
    width: 100%
}

#footer {
    color: #fff;
    font-size: 14px;
    padding-top: 10px;
    background: linear-gradient(180deg, rgba(2,0,36,1) 0%, rgba(30,9,121,0.25) 25%, rgba(2,0,36,1) 100%);
}

#footer .logo{max-width:200px}

    #footer h3 {
        font-size: 25px;
        font-weight: 600;
        color: #fff;
        position: relative;
        padding: 0;
        margin: 20px 0 15px 0
    }

   



/* Partners */
#partners {
    background: #f3f4f3;
}

     .partners-logo {
        text-align: center;
        border-radius: 4px;
        padding: 20px;
        margin-bottom: 30px;
        display: inline-block;
        border: 1px solid #ddd;
        background: #fff;
        -webkit-transition: all 300ms ease-in-out;
        transition: all 300ms ease-in-out;
    }




/* countdown */
.time-entry {
    display: inline-block;
    min-width: 90px;
    margin: 12px;
    height: 80px;
    padding: 12px;
    box-shadow: 0 4px 8px 0 rgba(30, 9, 121, 0.6), 0 6px 20px 0 rgba(30, 9, 121, 0.5);
    border-radius: 8px;
    background: #c845db;
    text-align: center;
    font-weight: 400;
    color: #fff;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 20px;

}

    .time-entry span {
        font-size: 32px;
        line-height: 30px;
        font-weight: 700;
        display: block;
        color: #fff;
        margin-bottom: 6px
    }

   

.time-countdown {
    margin: 15px 0 50px 0;
  
}


/* About */


#about h1{font-size:40px}
#about h2{font-size:20px}
#about p {font-size:24px !important; font-weight:normal !important; line-height:38px !important; color:#999; padding-bottom:30px}

    #about .detail-box {
        background: #eee;
       
        border-radius: 4px;
        padding: 30px 40px;
        border: none !important;
        box-shadow: 1px 10px 20px rgba(0,0,0,.5); 
        min-height:230px
  
    }
    #about .detail-list {          
        font-size: 16px !important;
        line-height:25px !important;
        text-align:left; margin-bottom:-10px !important;
        color:#888 !important
         
    }
    #about .detail-list i {
        font-size: 14px !important;
        
    }

        #about .detail-list span {
            font-size: 20px !important;
        }     

.about-left {
    position: relative;
    display: block;
    margin-right: 50px;
}



.about-img img {
    border-radius: 50% !important;
    border: 4px solid #f3223c !important;
    box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 40px 5px;
}

.about-img .img3 {
  position: absolute;
  left: -5px;
  top: -30px;
  width: 200px;
  box-shadow: none;
}

.about-img .img2 {
    position: absolute;
    right: -50px;
    bottom: -50px;
    width: 220px;
    box-shadow: none;
}

.about-img .img4 {
    position: absolute;
    left: -5px;
    bottom: -30px;
    width: 200px;
    box-shadow: none;
}

/* Speakers */

#speakers {
    background: linear-gradient(180deg, rgba(2,0,36,1) 0%, rgba(30,9,121,1) 35%, rgba(3,2,70,1) 100%);
  
}


.speaker-item {
    background-color: #fff;
    border-radius: 4px;
    margin-bottom: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    min-height: 470px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}


    .speaker-item .speaker-image {
        width: 100%;
        position: relative;
        overflow: hidden;
    }

        .speaker-item .speaker-image img {
            -webkit-transform: scale(1);
            -moz-transform: scale(1);
            -ms-transform: scale(1);
            -o-transform: scale(1);
            transform: scale(1);
            -webkit-transition: all 300ms ease-in-out;
            -moz-transition: all 300ms ease-in-out;
            transition: all 300ms ease-in-out;
        }

    .speaker-item .tag {
        position: absolute;
        text-transform: uppercase;
        top: -20px;
        left: 12px;
        padding: 8px 16px;
        background-color: #ddd;
        color: #F3223C !important;
        border-radius: 4px;
        display: block;
        font-size: 12px;
        font-weight: 600;
        box-shadow: 0px 3px 16px rgba(35, 31, 32, 0.15);
        line-height: 18px
    }
    .speaker-item .tag a {
        color: #F3223C !important;
    }
    .speaker-item .tag a:hover {
        font-weight:700 !important
    }

    .speaker-item .flag {
        position: absolute;       
        top: -170px;
        left: 12px;  
        display: block;       
      
    }
    .speaker-item .flag img {max-width:30px}

    .speaker-item .descr {
        padding: 30px 15px;
        color: #212121;
        position: relative;
    }

        .speaker-item .descr h3 {
            line-height: 26px;
            margin-bottom: 15px;
        }

        .speaker-item .descr h3 {
            font-weight: 500;
            text-align: left;
            font-size: 18px;
            color: #212121;
            -webkit-transition: all 300ms ease-in-out;
            -moz-transition: all 300ms ease-in-out;
            transition: all 300ms ease-in-out;
        }

            .speaker-item .descr h3 a:hover {
                color: #E91E63;
            }

        .speaker-item .descr .meta-tags {
            margin-bottom: 10px;
        }

            .speaker-item .descr .meta-tags span {
                color: #555;
                margin-right: 8px;
                font-size: 14px
            }



    .speaker-item:hover {
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    }

        .speaker-item:hover .speaker-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);
        }




#Register {
    background: #04488e;
    background: linear-gradient(180deg, rgba(2,0,36,1) 0%, rgba(30,9,121,0.25) 25%, rgba(2,0,36,1) 100%);
    overflow: hidden;

  
    
  
}

#Register ul {font-size:18px; font-weight:700; padding-left:15px}
    #Register ul li p{font-size:16px !important;
        color:#ddd; line-height:21px !important; font-weight:300 !important
    }

    #Register .buttonheading{line-height:28px}


    #Register .register-form {
        width: 100%;
        border-top: 3px solid #6600ff;
        border-bottom: 3px solid #6600ff;
        padding: 32px;
        background: #0d111a;
        box-shadow: 0 0 24px 0 rgb(255 255 255 / .12);
        color: #fff
    }

        #Register .register-form .form-group {
            padding-bottom: 8px
        }

        #Register .register-form .validate {
            color: #f3223c;
            margin: 0 0 15px 0;
            font-weight: 400;
            font-size: 13px
        }
        #Register .register-form .form-group label {
            font-size: 14px;
            padding-bottom: 10px
        }

        #Register .register-form .error-message {
            display: none;
            color: #fff;
            background: #f3223c;
            text-align: left;
            padding: 15px;
            font-weight: 600
        }

            #Register .register-form .error-message br + br {
                margin-top: 25px
            }




.hide{display:none}
#google-map-area {
    position: relative;
    
}

    #google-map-area .container-fluid {
        padding-left: 0;
        padding-right: 0;
        
    }
#container-map {
    width: 100%;
    height: 550px; 
    
}
    #container-map iframe {
        -webkit-filter: grayscale(80%);
        filter: grayscale(80%);
    }

    @media (max-width: 1367px) {
        #maincontent h1 {
            font-size: 52px;
            line-height: 47px;
        }

        .time-entry {
            min-width: 80px;
            height: 70px;
            font-size: 10px;
            line-height: 16px;
        }

            .time-entry span {
                font-size: 28px;
                line-height: 22px;
            }

        .detail-box {
            min-height: 255px !important;
        }
    }

    @media (max-width: 1024px) {
        section {
            padding: 30px
        }

        #maincontent {
            height: 75vh;
        }

            #maincontent h1 {
                font-size: 35px;
                line-height: 30px;
            }

            #maincontent .subtitle span {
                font-size: 18px !important
            }

            #maincontent .subtitle1 {
                font-size: 20px !important
            }

        .feature-area.fa-negative {
            margin-top: -120px !important;
        }

        .detail-box {
            min-height: 300px !important;
            padding: 20px 30px !important;
        }

        .speaker-item .flag {
            top: -135px;
        }

            .speaker-item .flag img {
                max-width: 24px
            }

        .time-entry {
            min-width: 60px;
            height: 60px;
            font-size: 8px;
            line-height: 16px;
        }

            .time-entry span {
                font-size: 24px;
                line-height: 22px;
            }
    }




    @media (max-width: 834px) {
        #header {
            height: 100px;
        }

        #header {
            border-bottom: 2px solid #fff;
            padding-top: 2px !important
        }

            #header.header-transparent {
                background: none !important;
            }

            #header.header-scrolled {
                background: #fff !important;
                height: 90px;
                color: #000 !important
            }

        .detail-box {
            min-height: 230px !important;
            padding: 30px 40px !important;
        }

        #maincontent {
            height: 70vh;
            background: linear-gradient(rgba(200,69,219,0.2),rgba(2,0,36,0.7)), url("../../images/cover.jpg");
            color: #fff;
        }

            #maincontent::before {
                background: linear-gradient(rgba(200,69,219,0.2),rgba(2,0,36,0.7)), url("../../images/cover.jpg");
            }

            #maincontent h1 {
                font-size: 40px;
                line-height: 40px;
            }

            #maincontent h2 span, #maincontent p {
                font-size: 20px !important;
                padding: 0 !important;
            }

            #maincontent .eventcounter {
               
                border-radius: 8px;
                width: 70%;
                text-align:left !important;
                margin-top:30px
            }

            #maincontent .subtitle {
                font-size: 20px !important
            }

            #maincontent .eventcounter .subtitle {
                color: #04488e;
                padding-top: 20px !important
            }

        .time-entry {
            display: inline-block;
            min-width: 80px;
            margin: 5px;
            height: 60px;
            padding: 5px;
            font-size: 10px;
            letter-spacing: 1px;
            line-height: 18px;
        }

            .time-entry span {
                font-size: 22px;
                line-height: 22px;
                margin-bottom: 3px;
            }

            .time-entry:first-child {
                border-left: none
            }

        .time-countdown {
            margin: 5px 0 10px 0;
        }

        .feature-area.fa-negative {
            margin-top: -110px !important;
        }

        .speaker-item .flag {
            top: -145px;
        }

            .speaker-item .flag img {
                max-width: 24px
            }

        #about .container {
            border-radius: 0
        }

            #about .container .row {
                padding: 25px 5px
            }

        #schedule .circleborder {
            max-width: 70px
        }

        .schedules #pills-tabContent {
            padding: 25px
        }
    }

    @media (max-width: 575px) {
        #maincontent {
            height: 100vh;
        }

            #maincontent h1 {
                font-size: 35px;
                line-height: 35px;
            }

            #maincontent .eventcounter {
                width: 100% !important
            }

        #about, #schedule, #Register, #footer {
            padding: 25px !important
        }

        .about-left {
            margin-top: -20px;
            margin-right: 0px;
        }

        .about-right {
            margin-top: 30px !important;
        }

            .about-right p {
                font-size: 17px !important;
                line-height: 30px;
                text-align: justify
            }

        #about p {
            font-size: 21px !important;
            font-weight: normal !important;
            line-height: 32px !important;
            text-align: left; 
        }
        #schedule .tab-content {
            padding: 20px
        }

        #schedule .agendalist .align-content-center {
            display: none !important
        }

        .feature-area.fa-negative {
            display: none
        }

        .speaker-item .flag {
            top: -200px;
        }

        .empty {
            display: none
        }

        .speakerpad {
            padding-top: 10px;
            padding-bottom: 5px
        }
    }

    @media (max-width: 430px) {
        #maincontent {
            height: 100vh;
        }

            #maincontent h1 {
                font-size: 35px;
                line-height: 35px;
            }

            #maincontent .eventcounter {
                width: 100% !important
            }

        #about, #schedule, #Register, #footer {
            padding: 25px !important
        }

        .about-left {
            margin-top: -20px;
            margin-right: 0px;
        }

        .about-right {
            margin-top: 30px !important;
        }

            .about-right p {
                font-size: 17px !important;
                line-height: 30px;
                text-align: justify
            }


        #schedule .tab-content {
            padding: 20px
        }

        #schedule .agendalist .align-content-center {
            display: none !important
        }

        .feature-area.fa-negative {
            display: none
        }

        .speaker-item .flag {
            top: -200px;
        }

        .empty {
            display: none
        }

        .speakerpad {
            padding-top: 10px;
            padding-bottom: 5px
        }
    }

    @media (max-width: 414px) {
        #maincontent {
            padding-top: 60px
        }

            #maincontent h1 {
                font-size: 33px;
                line-height: 30px;
            }

        .time-entry {
            display: inline-block;
            min-width: 60px;
            margin: 5px;
            height: 50px;
            padding: 5px;
            font-size: 8px;
            letter-spacing: 1px;
            line-height: 18px;
        }

            .time-entry span {
                font-size: 18px;
                line-height: 18px;
                margin-bottom: 3px;
            }

            .time-entry:first-child {
                border-left: none
            }

        .time-countdown {
            margin: 5px 0 10px 0;
        }
    }

    @media (max-width: 390px) {
        section {
            padding: 20px
        }

        #maincontent h1 {
            font-size: 30px;
            line-height: 30px;
        }

        #maincontent .subtitle {
            font-size: 16px !important
        }

        #maincontent .subtitle1 {
            padding-top: 20px
        }



        #about .about-right p {
            text-align: left;
            font-size: 12px;
            font-weight: normal
        }
    }

    @media (max-width: 375px) {
        #maincontent h1 {
            font-size: 28px;
            line-height: 28px;
        }

        .speaker-item .flag {
            top: -190px;
        }
    }

.iti--separate-dial-code .iti__selected-dial-code, .iti__country {
    color: #555;
    font-size: 15px
}