/* @override https://ticketspace.nz/wp-content/plugins/inwave-common/assets/css/iw-shortcodes.css?ver=4.8.2 */

/* @override http://ticketspace.nz/wp-content/plugins/inwave-common/assets/css/iw-shortcodes.css?ver=1.3.0 */

/* @override http://ticketspace.nz/wp-content/plugins/inwave-common/assets/css/iw-shortcodes.css?ver=1.3.0 */

/*
@package Inwave Event
@version 1.0.0
@created May 4, 2015
@author Inwavethemes
@email inwavethemes@gmail.com
@website http://inwavethemes.com
@support Ticket https://inwave.ticksy.com/
@copyright Copyright (c) 2015 Inwavethemes. All rights reserved.
@license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
*/

/* Add Font */
@import url(https://fonts.googleapis.com/css?family=Arvo:400,400italic,700);
@import url(https://fonts.googleapis.com/css?family=Lovers+Quarrel);

/**
    GENERAL STYLE
*/
.center-text{
    text-align: center;
}
.right-text{
    text-align: right;
}
.left-text{
    text-align: left;
}
.white-text,.white-text-force *{
    color: #fff!important;
}
.float-right {
    float: right;
}
.float-left {
    float: left;
}
.theme-bg .ajax-overlay,
.iw-footer-widget .ajax-overlay{
	background: none repeat scroll 0 0 rgba(0, 0, 0, 0.2);
}
.ajax-overlay{
    background: none repeat scroll 0 0 rgba(255, 255, 255, 0.8);
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
    display: none;
}
.ajax-overlay .ajax-loading{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.vc_row .ajax-overlay{
	width: 200%;
	margin-left:-50%;
}
.iw-bg-overlay {
    position: relative;
}
.iw-bg-overlay:after {
    background: #000000 !important;
    position: absolute;
    opacity: 0.85;
    content: "";
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}

/**
    TABS STYLE
*/
.iw-tab-item.active {
    position: relative;
}
.iw-tab-item.active:after {
    border-left: 12px solid rgba(0, 0, 0, 0);
    border-right: 12px solid rgba(0, 0, 0, 0);
    content: "";
    left: calc(50% - 15px);
    position: absolute;
    top: 100%;
}
.iw-shortcode-tabs .iw-tabs{
    position: relative;
    border: none;
}

.iw-tabs .iw-tab-icon{
    margin-right: 15px;
}
.iw-tabs .iw-tab-title{
    display: inline-block;
    text-transform: uppercase;
}

.iw-tabs .iw-tab-item{
    cursor: pointer;
    font-size: 15px;
}

.iw-tabs .iw-accordion-header-icon{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.iw-tabs .iw-accordion-header{
    position: relative;
    font-size: 15px;
    cursor: pointer;
}

.iw-tabs .iw-accordion-title{
    display: inline-block;
}

.iw-tabs .iw-accordion-header:hover, .iw-tabs .iw-accordion-header.active{
    color: #2ba53c;
}

.iw-hidden {
    display: none !important;
    visibility: hidden !important;
}
.iw-shortcode-tabs .iw-tabs .iw-tab-items {
    width: 100%;
    border: none;
}
.iw-shortcode-tabs .iw-tabs .iw-tab-items .iw-tab-item {
    border: none;
    background: #1b1b1b;
}
.iw-shortcode-tabs .iw-tabs .iw-tab-items::before {
    border: none;
}
.iw-shortcode-tabs .iw-tabs .iw-tab-items .iw-tab-item:hover, .iw-shortcode-tabs .iw-tabs .iw-tab-items .iw-tab-item.active {
    color: #ffffff;
}
.iw-shortcode-tabs .iw-tab-items .iw-tab-title {
    padding: 0;
    border: none;
}
.iw-shortcode-tabs .iw-tab-item {
    border: none;
    line-height: 24px;
}
.iw-shortcode-tabs .iw-tabs .iw-tab-content{
    overflow: hidden;
    padding: 0;
    float: none;
    width: 100%;
}

.iw-tab-content-inner {
    position: relative;
}

.iw-tabs .iw-tab-content .iw-tab-item-content{
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height:100%;
    width:100%;
    transition: all 0.2s linear 0s;
    -moz-transition: all 0.2s linear 0s;
    -ms-transition: all 0.2s linear 0s;
    -webkit-transition: all 0.2s linear 0s;
}
.iw-tabs.horizontal-slide .iw-tab-content .iw-tab-item-content,
.iw-tabs.vertical-slide .iw-tab-content .iw-tab-item-content{
    transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -webkit-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
}
.iw-tabs .iw-tab-content .iw-tab-item-content.active{
    opacity: 1;
    position: relative;
    z-index:2;
}
.iw-tabs.horizontal-slide .iw-tab-content .iw-tab-item-content.next{
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    z-index:1;
}
.iw-tabs.horizontal-slide .iw-tab-content .iw-tab-item-content.prev{
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    z-index:1;
}
.iw-tabs.vertical-slide .iw-tab-content .iw-tab-item-content.next{
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    z-index:1;
}
.iw-tabs.vertical-slide .iw-tab-content .iw-tab-item-content.prev{
    transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    z-index:1;
}

.iw-tabs.layout1 .iw-tab-items{
    background: #1b1b1b;
    color: #ffffff;
    margin-bottom: 45px;
}
.iw-tabs.layout1 .iw-tab-items .container{
    height: 100%;
}
.iw-tabs.layout1 .iw-tab-item{
    display: inline-block;
    height: 100%;
    position: relative;
}


.iw-tabs.layout1 .iw-tab-item.active:before{
    border-color: transparent;
    content: "";
    position: absolute;
    right: calc(50% - 12px);
    border-style: solid;
    z-index: 10;
}

.iw-tabs.layout1 .iw-tab-item.active:before{
    border-width: 12px 12px 0;
    top: 100%;
}
.iw-tabs.layout1 .iw-tab-item.active{
    color: #fff;
}
.iw-tabs.layout1 .iw-tab-icon{
    display: block;
}
.iw-tabs.layout1 .iw-tab-item-inner{
    width: 100%;
    text-align: center;
    padding: 25px 0;
}
.iw-tabs.layout1 .iw-tab-title{
    font-size: 18px;
}
.iw-tabs.layout1 .iw-tab-subtitle{
    font-size: 12px;
}

/**
    Heading shortcode
*/
.iw-heading{
	padding-left: 0;
	padding-right: 0;
}
.iwh-title{
    margin-top:10px;
    font-weight: 300;
}
.iwh-sub-title{
    font-size:16px;
}

/*=====*/
.iw-heading.style1{
    padding: 0;
    position: relative;
    z-index: 2;
}
.iw-heading.style1 .iwh-title {
    font-size: 36px;
    line-height: 1.1;
    font-weight: 900;
    position: relative;
    margin: 0 0 4px 0;
	text-transform: uppercase;
}
.iw-heading.style1 .iwh-title strong {
    font-weight: 600;
    text-transform: uppercase;
}
.iw-heading.style1 .iwh-sub-title {
    font-size: 16px;
    margin-top: 15px;
	font-weight:300;
}
.iw-heading.style1 .iwh-sub-sub-title {
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.iw-heading.style1 .iwh-content {
    font-size: 16px;
    line-height: 30px;
}
.iw-heading.style1.sub2-background-color .iwh-sub-sub-title {
    padding: 7px 33px 8px;
    border-radius: 50px;
    margin-bottom: 40px;
    display: inline-block;
    font-size: 16px;
}
.iw-heading.style1 .iw-heading-title-hidden {
    font-size:140px;
    top:-20px;
}
/*=====*/
.iw-heading.style2{
    color:#fff;
}

.iw-heading.style2 .iwh-sub-title{
    color:#fff;
    text-transform: none;
    font-size: 18px;
    line-height: 200%;
}
.iw-heading.style2 .iwh-sub-sub-title{
    color:#fff;
    text-transform: uppercase;
    font-size: 14px;
}
.iw-heading.style2 .iwh-title{
    margin: 10px 0 25px;
    font-size:36px;
    font-weight: 300;
    text-transform: uppercase;
}
.iw-heading.style2 .iwh-content {
    font-size: 16px;
    line-height: 30px;
}
.iw-heading.style3 .iwh-title{
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 0;
}
.iw-heading.style3 .iwh-sub-title {
    font-size: 30px;
    text-transform: uppercase;
    line-height: 1em;
    margin-bottom: 20px;
}
.iw-heading.style3 .iwh-sub-sub-title {
    font-size: 18px;
    line-height: 1.9em;
    margin: 15px 0 20px;
}
.iw-heading.style3 .iwh-sub-sub-title span strong {
    font-size: 16px;
}
.iw-heading.style3 .iwh-content {
    line-height: 2.2em;
    margin: 0;
}
/*=====*/
.iw-heading.style4 {
    margin-bottom: 45px;
}
.iw-heading.style4 .iwh-title{
    font-size: 36px;
    text-transform: uppercase;
    margin-bottom: 30px;
    font-weight: 300;
}


/*===*/
.iw-heading.style5 {
    text-align: left;
    position: relative;
    padding:0;
}

.iw-heading.style5 .iwh-title{
    text-transform: none;
    font-size: 80px;
    margin: 0 0 6px 0;
	padding:0;
	text-transform:uppercase;
	font-weight:bold;
	line-height:1;
	color:#f1f1f1;
}
.iw-heading.style5 .iwh-title strong{
	color:#ccc;
}
.iw-heading.style5 .iwh-sub-title{
    color: #232323;
    border-left: 2px solid;
    font-size: 18px;
    font-style: italic;
    font-weight: normal;
    line-height: 30px;
    margin: 0;
    padding-left: 17px;
}
/*.iw-heading.style5 .iwh-content a{
    display:inline-block;
    height:45px;
    line-height:45px;
    color:#fff;
    background:#49a32b;
    padding:0 45px;
    border-radius:50px;
    font-size:18px;
    margin-top:30px;
}*/
/*===*/
.iw-heading.style6 {
    color: #838383;
}
.iw-heading.style6 .iwh-title {
    font-size: 36px;
    margin-bottom: 25px;
    text-transform: uppercase;
}
.iw-heading.style6 .iw-underline-icon {
    color: #d6d5d7;
    font-size: 20px;
    position: relative;
    width: 320px;
    margin: 0 auto 19px;
}
.iw-heading.style6 .iw-underline-icon:before {
    position: absolute;
    border-top: 1px #d6d5d7 solid;
    width: 160px;
    top: 10px;
    left: -15px;
    display: block;
    content: "";
}
.iw-heading.style6 .iw-underline-icon:after {
    position: absolute;
    border-top: 1px #d6d5d7 solid;
    width: 160px;
    top: 10px;
    right: -15px;
    display: block;
    content: "";
}
.iw-heading.style6 .iwh-sub-title {
    font-size: 24px;
    line-height: 40px;
}
.iw-heading.style6 .iwh-sub-title strong {
    font-weight: 600;
}
.iw-heading.style6 .iwh-content {
    font-size: 18px;
    font-weight: 400;
    margin-top: 10px;
    line-height: 29px;
}
/*===*/
.iw-heading.style7 {
    padding: 20px 0 30px;
    position: relative;
	z-index:3;
}
.iw-heading.style7 .iwh-title {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 36px;
    margin-top: 25px;
    margin-bottom: 25px;
}
.iw-heading.style7 .iwh-title:after {
    content:'';
    display: block;
    width: 95px;
    margin: 10px auto 0 auto;
}
.iw-heading.style7 .iwh-sub-title {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 200%;
}
.iw-heading-title-hidden{
    position:absolute;
    font-size:150px;
    width:100%;
    top:0;
    font-weight: 700;
    color:#f7f7f7;
    text-transform:uppercase;
    z-index:-1;
    white-space:nowrap;
    line-height:130px;
}
.iw-heading.style7 .iwh-content {
    margin-bottom: 20px;
}
/*===*/
.iw-heading.style8{
	text-align:center;
	font-size:18px;
	font-weight:normal;
}
.iw-heading.style8 .iwh-sub-title {
	display:inline-block;
	font-weight:300;
	text-transform:uppercase;
	padding:7px 33px 8px 33px;
	border-radius:50px;
	margin-bottom:40px;
}
.iw-heading.style8 .iwh-title {
    margin:0 0 10px 0;
	font-size:48px;
	text-transform:uppercase;
}
.iw-heading.style8 .iwh-sub-sub-title {
    font-size: 14px;
}
.iw-heading.style8 .iwh-content{
	margin:0;
}

/*===*/
.iw-heading.style9 .iwh-title{
    text-transform: uppercase;
	line-height:72px;
	margin-bottom:19px;
}
.iw-heading.style9 .iwh-sub-title {
    font-size: 24px;
    line-height: 24px;
	text-transform:uppercase;
}
.iw-heading.style9 .iwh-content {
    font-size: 15px;
    line-height: 200%;
}

.iw-heading.style11 .iwh-sub-sub-title{
    color: #f4f4f4;
    float: left;
    font-weight: 500;
    line-height: 100px;
    font-size: 130px;
}
.iw-heading.style11 .iwh-main{
    margin-left: 160px;
}
.iw-heading.style11 .iwh-title{
    font-size: 36px;
    font-weight: 600;
    margin: 0 0 8px;
    padding: 0;
    color: #232323;
    line-height: 28px;
}
.iw-heading.style11 .iwh-sub-title{
    font-size: 14px;
    font-weight: 500;
    line-height: 30px;
    padding-left: 13px;
    position: relative;
}
.iw-heading.style11 .iwh-sub-title::before {
    content: "";
    height: 41px;
    left: 0;
    position: absolute;
    top: 10px;
    border-left: 2px solid #db084d;
}
/*===*/
.iw-heading.style12 .iw-content {
    display: inline-block;
    text-align: center;
}
.iw-heading.style12 .iwh-title {
    font-family: 'Arvo', serif;
    font-size: 80px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 80px;
    margin: 0;
}
.iw-heading.style12 .iwh-sub-title {
    font-family: 'Lovers Quarrel', cursive;
    font-size: 100px;
    color: #ffffff;
    line-height: 100px;
    text-align: left;
    margin: 0 0 -27px -74px;
    text-transform: capitalize;
}

/***
* Info item shortcode
*/
.info-item .icon {
    margin-top:20px;
}
.info-item-title {
    text-transform: uppercase;
    font-size:18px;
    padding:5px 0;
}
.info-item.style2 .icon-img {
    width: 40px;
	float:left;
    margin-right: 30px;
}
.info-item.style2 .info-item-content {
    overflow: hidden;
    text-align: left;
}
.info-item.style2 .info-item-title {
    color: #232323;
    margin: 0 0 15px;
    padding: 0;
    text-transform: none;
    font-size: 16px;
    font-weight: 500;
}
.info-item.style2 .info-item-title a {
    color: #232323;
}
.info-item.style2 .info-item-desc {
    margin-bottom: 10px;
}
.info-item.style2 .read-more {
    font-size: 12px;
    text-transform: uppercase;
}
/*
*    Pricing Box
*/
.pricebox{
    text-align: center;
    margin:30px 0;

}
.pricebox-header{
    color:#fff;
    position:relative;
}
.pricebox-header-content{
    margin-right:36px;
    padding:22px;
    position:relative;
}

.pricebox-body{
    position:relative;
}

.pricebox-icon{
    display: inline-block;
    padding: 13px 16px;
    background: #fff;
    border-radius: 50%;
}

.pricebox-title{
    text-transform: uppercase;
    color:#fff;
    margin-bottom:0;
    margin-top:12px;
    font-weight: bold;
    font-size: 22px;
}
.pricebox-price{
    font-size: 36px;
    color: #838383;
    padding:30px 0 15px 0;
}

.pricebox-purchased-link a{
    text-transform: uppercase;
    color:#fff;
    font-weight: bold;
    margin:10px 0 10px 0;
}

.pricebox .pricebox-description ul, .pricebox .pricebox-description li{
    margin:0;
    list-style: none;
}

/* price box style1 */
.style1 .pricebox-header-content:after{
    width: 0;
    height: 0;
    border-left: 10px solid transparent!important;
    border-right: 10px solid transparent!important;
    border-top: 10px solid;
    position:absolute;
    bottom:-10px;
    content:"";
    margin-left:-10px;
    z-index: 1;

}
.style1 .pricebox-edge{
    top:0;
    width:1px;
    right:0;
    position: absolute;
    height: 100%;
    background: #fff;
    opacity: 0.2;
}
.style1 .pricebox-header .pricebox-shadow{
    width:36px;
    height:100%;
    position:absolute;
    top:0;right:0;
    transform: skewY(45deg) translateY(18px);
    -webkit-transform: skewY(45deg) translateY(18px);
    -moz-transform: skewY(45deg) translateY(18px);
    -o-transform: skewY(45deg) translateY(18px);
    -ms-transform: skewY(45deg) translateY(18px);
    z-index:2;
}
.style1 .pricebox-price-desc span{
    font-size: 12px;
    border-radius: 20px;
    color:#fff;
    padding:4px 15px;
    text-transform: uppercase;
    border:4px solid #f0f0f0;
    font-weight: 600;
}
.style1 .pricebox-description{
    padding:15px;
    color:#b9b9b9;
    font-size: 14px;
}
.style1 .pricebox-body .pricebox-shadow{
    width:36px;
    height:100%;
    position:absolute;
    top:0;right:0;
    transform: skewY(-45deg) translateY(-18px);
    -webkit-transform: skewY(-45deg) translateY(-18px);
    -moz-transform: skewY(-45deg) translateY(-18px);
    -o-transform: skewY(-45deg) translateY(-18px);
    -ms-transform: skewY(-45deg) translateY(-18px);
    box-shadow:  9px 9px 20px #ddd;
    z-index:1;
}

.style1 .pricebox-body-content{
    background: #f0f0f0;
    margin-right:36px;
}

.style1 .pricebox-price-desc{
    position:relative;
    padding:10px 10px;
}
.style1 .pricebox-price-desc:after{
    content:'';
    border-bottom:1px solid #d6d6d6;
    display: block;
    margin-top:-12px;
}

/* pricebox style2*/

.pricebox.style2 .pricebox-header{
    background-color: #f8f8f8;
    padding-top:10px;
}
.pricebox.featured-image .pricebox-header-content:before{
    content:"";
    width:100%;
    height:100%;
    position: absolute;
    top:-11px;
    left:-1px;
    z-index: 2;
    background-image: url(../images/featured.png);
    background-position: top left;
    background-repeat: no-repeat;
}
.pricebox.style2 .pricebox-body{
    border:2px solid #f1f1f1;
    padding-bottom:10px;
    background:#fff;
}
.pricebox.style2 .pricebox-title{
    font-size:18px;
    margin-top: 5px;
}
.pricebox.style2 .pricebox-icon{
    background: #919191;
    border-radius: 100%;
    padding:3px 8px 3px 8px;
    border: 4px solid #f8f8f8;
}
.pricebox.style2 .pricebox-price{
    padding:15px;
    background:#919191;
    color:#fff;
    font-size:30px;
    margin-top:15px;
}
.pricebox.style2 .pricebox-price span{
    font-size:18px;
}
.pricebox.style2 .pricebox-header-content{
    padding:0;
    margin:0;
}
.pricebox.style2 .pricebox-description li{
    border-bottom:1px solid #ececec;
    padding: 14px 0;
    font-size:13px;
    color:#9c9c9c;;

}
.pricebox.style2 .pricebox-icon i{
    color: #fff;
}
.pricebox-icon-wrapper{
    position:relative;
    z-index: 0;
}
.pricebox.style2 .pricebox-icon::after {
    border-bottom: 1px solid #e7e7e7;
    content: "";
    position:absolute;
    width:80%;
    top:50%;
    left:10%;
    z-index: -1;
}
.pricebox.style2 .pricebox-purchased-link{
    margin-top:10px;
}
.pricebox.style2 .ibutton{
    background:#919191;
}

/** style 3 */
.pricebox.style3{

}
.pricebox.style3 .pricebox-body{
    border: 1px solid #eaeaea;
    margin-right:-1px;
    background: #fff;
}

.pricebox.style3 .pricebox-header{
    padding-top:0;
}
.pricebox.style3.featured .pricebox-body{
    border: none;
}
.pricebox.style3.featured{
    box-shadow: 0px 0px 2px grey;
    position: relative;
    z-index: 1;
    margin-top:15px;
}
.pricebox.style3 .pricebox-title{
    color: #656665;
    font-size: 20px;
    font-weight: 300;
    padding:15px 0;
    margin:0;

}
.pricebox.style3.featured .pricebox-title{
    padding:25px 0 20px 0;
    background: #d0531b;
    color: #fff;
}
.pricebox.style3 .pricebox-header-content{
    padding:0;
    margin:0;
    background: #fff;
}
.pricebox.style3.featured-image .pricebox-header-content::before{
    background-image: url("../images/featured2.png");
    top:0;
    left:0;
}
.pricebox.style3 .pricebox-price{
    background: #383838;
    color: #fff;
    font-size: 48px;
    font-weight: 300;
    padding: 30px 0 20px 0;
}
.pricebox.style3.featured .pricebox-price{
    background: #e9682e;
}

.pricebox.style3 .pricebox-price span{
    font-size: 18px;
}
.pricebox.style3 .pricebox-description li{
    border-bottom:1px solid #f9f9f9;
    padding: 10px 0;
    font-size:13px;
    color:#9c9c9c;
}
.pricebox.style3.featured .pricebox-description li{
    border-color: #ececec;
}
.pricebox.style3 .ibutton{
    background:#777;
    padding-left: 35px;
    padding-right: 35px;
    margin:15px 0;
    font-size: 17px;
    font-weight: 400;
}
.pricebox.style3.featured .ibutton{
    margin:22px 0;
}
.pricebox.style3 .fa-close{
    color:#bf130f;
}

.pricebox.style3.no-price{
    padding-top:51px;
}
.pricebox.style3.no-price .pricebox-title{
    font-size: 48px;
    font-weight: 300;
    padding: 30px 0 20px;
    line-height:36px;
    text-transform:none;
    background:#f2f2f2;
}
.pricebox.style3.no-price .pricebox-description li:last-child{
    border-bottom: none;
}

.iw-rate i{
    font-size: 15px;
    margin-right:2px;
}

/**
*   IW Post
*/
.post-thumbnail{
    position: relative;
}
.post-thumbnail img{
    width:100%;
}
.iw-posts-icon{
    position:absolute;
    top:15px;
    right:15px;
    color:#fff;
    font-size:38px;
}
.post-item .date-category {
    position: absolute;
    bottom: 0;
    padding: 10px 25px;
    color: #ffffff;
    text-transform: uppercase;
}
.post-meta .date {
    float: left;
    margin-right: 12px;
}
.post-meta .category {
    float: left;
}
.post-meta .category a {
}
.post-meta .author {
    float: left;
    margin-left: 15px;
}
.post-content{
    border: 1px #f5f5f5 solid;
    font-size:13px;
    color:#969595;
}
.post-content .post-meta {
    padding: 15px 20px 20px;
}
.post-content .post-title {
    font-size: 18px;
    color: #838383;
    margin-bottom: 15px;
    line-height: 24px;
}
.post-content .post-title a {
    color: #838383;
}

.post-content .iw-bottom-item {
    text-transform: uppercase;
    color: #969595;
    font-size: 10px;
    padding: 15px 20px 0;
    background: #f5f5f5;
}
.post-content .iw-bottom-item > div {
    padding: 4px 20px;
    margin-right: 5px;
    background: #ffffff;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    margin-bottom: 15px;
}
.iw-posts {
    z-index: 99;
}
.iw-posts.style1 {
    margin-bottom: 0 !important;
}
.style1 .post-content .iw-bottom-item > div {
    background: #e9e9e9;
}
.iw-posts.style1 .post-item .featured-image, .iw-posts.style2 .post-item .featured-image,
.iw-posts.style6 .post-item .post-image {
    overflow: hidden;
}
.iw-posts.style1 img, .iw-posts.style2 img,
.iw-posts.style6 img {
    -webkit-transition: transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s;
}
.iw-posts.style1 .post-item:hover .featured-image img, .iw-posts.style2 .post-item:hover .featured-image img,
.iw-posts.style6 .post-item:hover .post-image img {
    -webkit-transform: scale(1.12);
    transform: scale(1.12);
}
.style1 .post-content .iw-bottom-item > div.float-right {
    float: left;
}
.iw-posts.style1 .post-content {
}
.iw-posts.style1 .post-content .read-more a {
    text-transform: none;
    font-size: 13px;
}
.post-content .iw-bottom-item .share-fb a {
    color: #969595;
}
.post-content .iw-bottom-item .share-fb a i {
    margin-right: 2px;
}
.post-content .read-more a {
    text-transform: uppercase;
    color: #838383;
    font-weight: bold;
}
.post-content .read-more:hover a {
    color: #ffffff !important;
}
.iw-posts.style2 .post-title {
    text-transform: none;
    font-size: 18px;
}
.iw-posts.style2 .post-content .read-more a {
    text-transform: uppercase;
    font-weight: normal;
}
.iw-posts.style2 .iw-posts-icon {
    right: auto;
    left:15px;
    top: 15px;
    font-size: 18px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
}
/* ----- iw posts style 2 ----- */
/*---- By Kiennb ---*/
.iw-posts.style2 .owl-controls .owl-pagination {
	position:absolute;
	top:-75px;
	right:0;
	margin:0 15px;
	z-index:3;
}
.iw-posts.style2 .owl-theme .owl-controls .owl-page span.owl-numbers{
	border: 2px solid #696969;
    border-radius: 50%;
    color: #9b9b9b;
    font-size: 16px;
    height: 45px;
    line-height: 40px;
    text-align: center;
    width: 45px;
	background:none;
	opacity:1;
}

/*---- By Kiennb ---*/
.iw-posts.style1-2 .post-thumbnail{
    max-height: 234px;
    overflow: hidden;
}
.iw-posts.style1-2 .iw-posts-list {
    position: relative;
    margin-left: -15px;
    margin-right: -15px;
}
.iw-posts.style1-2 .slick-list{
    overflow: visible;
}
.iw-posts.style1-2 .post-item {
    padding: 15px;
    background: none;
	margin:0;
}
.iw-posts.style1-2 .post-item .post-item-inner {
    background: #202020;
    position: relative;
}
.iw-posts.style1-2 .post-item .post-type {
    position: absolute;
    top: 25px;
    left: 35px;
    font-size: 32px;
    z-index: 2;
}
.iw-posts.style1-2 .post-item .post-content{
    border: none;
    color: #ffffff;
    padding: 20px;
}
.iw-posts.style1-2 .post-item .post-content .post-meta{
    text-transform: none;
}
.iw-posts.style1-2 .post-item .post-content .post-meta .author span{
    text-transform: capitalize;
}
.iw-posts.style1-2 .post-item .post-item-inner:hover .post-content,
.iw-posts.style1-2 .post-item .post-item-inner:hover .post-content a{
    color: #fff;
}
.iw-posts.style1-2 .post-item .post-item-inner:hover .post-content .theme-color{
	color:#fff!important;
}
.iw-posts.style1-2 .post-item .post-content .post-meta {
    padding: 0;
    margin-bottom: 5px;
}
.iw-posts.style1-2 .post-item .post-content ul {
    margin: 0;
}
.iw-posts.style1-2 .post-item .post-content .post-meta li {
    list-style: none;
    display: inline-block;
    border-right: 2px #ffffff solid;
    font-size: 12px;
    padding: 0 10px;
    line-height: 1;
}
.iw-posts.style1-2 .post-item .post-content .post-meta li:first-child {
    padding: 0 10px 0 0;
}
div.iw-posts.style1-2 .post-item .post-content .post-meta li:last-child {
    border:none;
}
.iw-posts.style1-2 .post-item .post-content .post-meta li .author {
    margin: 0;
    float: none;
}
.iw-posts.style1-2 .post-content .post-title  {
    margin: 0;
}
.iw-posts.style1-2 .post-content .post-title a {
    font-size: 18px;
    line-height: 30px;
    color: #ffffff;
    font-weight: 400;
    text-transform: none;
}
.iw-posts.style2 .iw-posts-list .slick-dots {
    position: absolute;
    top: -75px;
    text-align: right;
    padding: 0 15px;
    bottom: auto;
    z-index: 99;
}
.iw-posts.style2 .iw-posts-list .slick-dots li {
    font-size: 16px;
    color: #9b9b9b;
    width: 45px;
    height: 45px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    line-height: 40px;
    text-align: center;
    border: 2px #696969 solid;
}
.iw-posts.style1-2 .iw-posts-icon {
    right: auto;
    left:15px;
    top: 15px;
    font-size: 18px;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
}
    /* ----- iw posts v3 ----- */
.iw-posts.style3 .square::before {
    content: "";
    display: inline-block;
    padding: 50%;
    vertical-align: middle;
}
.iw-posts.style3 .post-item-0 .square::before {
    content: "";
    display: inline-block;
    padding: 25% 0;
    vertical-align: middle;
}
.square {
    width: 100%;
}
.iw-posts.style3 .iw-post-wrap {
    background: #ffffff;
}
.iw-posts.style3 .post-content {
    border: none;
}
.iw-posts.style3 .post-content .post-meta {
    padding: 25px 25px 32px;
    background: #ffffff;
}
.iw-posts.style3 .post-content .post-title {
    font-size: 16px;
    text-transform: uppercase;
}
.iw-posts.style3 .post-content .style-post0 p {
    font-size: 12px;
    margin-bottom: 25px;
}
.iw-posts.style3 .post-content .read-more {
    height: 29px;
}
.iw-posts.style3 .post-content .read-more a {
    font-size: 12px;
    color: #ffffff;
    padding: 7px 20px;
    text-transform: none;
    -webkit-border-radius: 20px;
    border-radius: 20px;
}
.iw-posts.style3 .post-content {
    padding: 0;
}
.iw-posts.style3 .post-content .iw-bottom-item {
    padding: 0;
}
.iw-posts.style3 .post-item-0 .post-content .post-title {
    float: left;
    text-align: right;
}
.iw-posts.style3 .post-item-0 .post-content .style-post0 {
    float: right;
}
.iw-posts.style3 .post-thumbnail {
    overflow: hidden;
    padding: 0 !important;
}
.iw-posts.style3 .post-item-1 .post-thumbnail {
    float: right;
}
.iw-posts.style3 .post-item-2 .post-thumbnail {
    float: left;
}
.iw-posts.style3 .post-item-1 .post-content, .iw-posts.style3 .post-item-2 .post-content {
    overflow: hidden;
}
.iw-posts.style3 .post-thumbnail img {
    left: 0;
    margin-top: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.iw-posts.style3 .post-item-small .post-thumbnail img {
    height: 100%;
    width: auto;
    max-width: none;
}

/* ----- iw posts v6 ----- */
.iw-posts.style6 .post-item {
    background: none;
}
.iw-posts.style6 .post-image {
    position: relative;
}
.iw-posts.style6 .post-meta {
    position: absolute;
    bottom: 15px;
    padding: 0 15px;
    color: #ffffff;
    font-weight: 500;
    text-transform: capitalize;
}
.iw-posts.style6 .post-meta span {
    margin-right: 15px;
}
.iw-posts.style6 .post-meta span a {
    color: #ffffff;
    font-weight: 600;
}
.iw-posts.style6 .post-meta span i {
    margin-right: 5px;
}
.iw-posts.style6 .post-detail {
    padding: 10px 0 20px;
}
.iw-posts.style6 .post-detail .post-date {
    width: 55px;
    text-align: center;
    float: left;
    font-weight: 600;
    border-right: 1px #d1d1d1 solid;
    line-height: 1;
}
.iw-posts.style6 .post-detail .post-date .month {
    font-size: 14px;
}
.iw-posts.style6 .post-detail .post-date .day {
    font-size: 30px;
}
.iw-posts.style6 .post-detail h3.post-title {
    overflow: hidden;
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    padding: 0 25px;
}
.iw-posts.style6 .post-detail h3.post-title a {
    color: #838383;
}
.iw-posts.style6 .post-detail .post-desc {
    font-weight: 300;
    margin: 20px 0 12px;
}

.iw-posts.style6 .post-detail .read-more {
    font-weight: 500;
    font-size: 14px;
}

/**
*    ADV BANNER
*/
.iw-av-banner {
    position: relative;
    z-index: 0;
    overflow: hidden;
    color:#fff;
    margin:10px 0;
}
.iw-av-banner .iw-av-desc ul, .iw-av-banner .iw-av-desc li{
    margin:0;
    list-style: none;
}
.iw-av-banner .iw-av-bg{
    top:0;
    right:0;
    z-index: -2;
    position:absolute;
    width:100%;
    height:100%;
}
.iw-av-banner .iw-av-bg-overlay{
    top:0;
    right:0;
    z-index: -1;
    position:absolute;
    height:100%;
    width:100%;
    background-color: #000;
    opacity: 0.7;
}
.iw-av-banner .custom-button{
    margin-top:20px;
    display: inline-block;
}
.iw-av-banner.style1 .iw-av-image{
    text-align: right;
    position: relative;
    z-index: 0;
    padding: 50px;
}
.iw-av-banner.style1 .iw-av-content{
    padding: 50px;
    padding-bottom: 0;
}
.iw-av-banner.style1 .iw-av-overlay{
    top:0;
    left:0;
    z-index: -1;
    position:absolute;
    width:120%;
    height:100%;
    transform: skewX(-20deg) translateX(-20%);
    -webkit-transform: skewX(-20deg) translateX(-20%);
    -moz-transform: skewX(-20deg) translateX(-20%);
    -o-transform: skewX(-20deg) translateX(-20%);
    -ms-transform: skewX(-20deg) translateX(-20%);
}
.iw-av-banner.style1 .iw-av-price{
    position:relative;
    float:left;
    padding:8px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
    min-width: 55px;
    text-align: center;
    margin-right:15px;
}
.iw-av-banner.style1 .iw-av-price hr{
    opacity: 0.3;
    padding:0;
    margin:0;
}
.iw-av-tail-left{
    border-left: 0px solid transparent!important;
    border-right: 30px solid transparent!important;
    border-top: 13px solid;
    position: absolute;
    bottom:0;
    left:0;
    margin-bottom:-13px;
}
.iw-av-tail-right{
    border-left: 30px solid transparent!important;
    border-right: 0px solid transparent!important;
    border-top: 13px solid;
    position: absolute;
    bottom:0;
    right:0;
    margin-bottom:-13px;
}

/* Banner */
.iw-av-banner.style1 {
    position: relative;
}
.iw-av-banner.style1 img {
    width: 100%;
}
.iw-av-banner.style1 .banner-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    color: #ffffff;
    text-transform: uppercase;
    text-align: center;
    padding: 60px 15px 45px;
    z-index: 2;
}
.iw-av-banner.style1 .iw-av-title {
    font-size: 24px;
    margin-bottom: 5px;
    line-height: 40px;
}
.iw-av-banner.style1 .iw-av-subtitle {
    font-size: 14px;
    margin-bottom: 35px;
}
.iw-av-banner.style1 .banner-button a {
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
    padding: 5px 20px;
    -webkit-border-radius: 40px;
    border-radius: 40px;
    color: #ffffff;
}
.iw-av-banner.style1 .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #000000;
}

/* adv banner style 2*/
.iw-av-banner.style2{
    padding:22px 2px;
}
.iw-av-banner.style2 .iw-av-title{
    text-align: center;
    font-size: 28px;
    font-weight: 300;
}
.iw-av-banner.style2 .iw-av-body{
    position: relative;
}
.iw-av-banner.style2 .iw-av-desc li{
    background:url(../images/checked.png) 0 9px no-repeat;
    padding-left:25px;
}
.iw-av-banner.style2 .iw-av-image{
    position:absolute;
    z-index: -1;
    bottom:0;
    left:0;
}
.iw-av-banner.style2 .iw-av-overlay,.iw-av-banner.style3 .iw-av-overlay{
    top:0;
    left:0;
    z-index: -2;
    position:absolute;
    width:100%;
    height:100%;
}
.iw-av-banner.style2 .iw-av-price{
    position: absolute;
    z-index: 1;
    top:60px;
    left:30%;
}
.iw-av-banner.style2 .iw-av-price > span{
    border-radius: 40px;
    background: #fff;
    font-size:24px!important;
    width:65px!important;
    height:65px!important;
    line-height: 65px!important;
    display: inline-block;

}
.iw-av-banner.style2 .iw-av-desc{
    font-size:14px;
    line-height: 200%;
    padding: 20px 0;
}

.iw-av-banner.style2 .ibutton4{
    margin-top:20px;
    border-color:#fff;
    border-size:1px;
    color:#fff;
    font-weight: bold;
}
.iw-av-banner.style2 .iw-av-image{
    position:relative;
    text-align: center;
    margin-top:65px;
    margin-bottom:20px;
    width:100%;
    float:left;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
.iw-av-banner.style2 .iw-av-image img{
    -webkit-filter: drop-shadow(0px 0px 50px rgba(255, 255, 255, 0.75));
    filter: drop-shadow(0px 0px 50px rgba(255, 255, 255, 0.75));
}
.iw-av-banner.style2 .iw-av-price{
    position:absolute;
    z-index: 1;
    top:-10px;
    left:50%;
    font-weight: bold;
    transform: translateX(-50%)  translateY(-50%);
    -webkit-transform: translateX(-50%)  translateY(-50%);
    margin:0;
}

.iw-av-banner.style2 .iw-av-content{
    left:50%;
    position:absolute;
}
.iw-av-banner.style2:hover .iw-av-image{
    width:50%;
}
.iw-av-banner.style2 .iw-av-desc li{
    transform: translateX(150%);
    -webkit-transform: translateX(150%);
    opacity: 0;
}
.iw-av-banner.style2 .ibutton{
    transform: translateY(100%);
    -webkit-transform: translateX(100%);
    opacity: 0;
}
.iw-av-banner.style2:hover .iw-av-desc li,.iw-av-banner.style2:hover .ibutton{
    transform: translateX(0) translateY(0);
    -webkit-transform: translateX(0) translateY(0);
    opacity: 1;
}

/** style 3*/
.iw-av-banner.style3 .iw-av-image{
    float:left;
    width:40%;
    position: relative;
    margin-left:30%;
    padding-top:49px;
    text-align: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.iw-av-banner.style3 .iw-av-price > span{
    border-radius: 40px;
    background: #fff;
    font-size:24px;
    width:65px;
    height:65px;
    line-height: 65px;
    display: inline-block;

}
.iw-av-banner.style3 .iw-av-price{
    position:absolute;
    z-index: 1;
    top:32px;
    left:50%;
    font-weight: bold;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    margin:0;
}
.iw-av-banner.style3 .iw-av-content{
    padding:36px 20px;
    position:absolute;
    left:40%;
    width: 60%;
}
.iw-av-banner.style3 .iw-av-title{
    margin-bottom:5px;
}
.iw-av-banner.style3 .iw-av-subtitle{
    font-size: 32px;
    margin-bottom:15px;
}
.iw-av-banner.style3:hover .iw-av-image{
    margin-left:0;
}
.iw-av-banner.style3 .iw-av-image img{
    -webkit-filter: drop-shadow(0px 0px 50px rgba(255, 255, 255, 0.75));
    filter: drop-shadow(0px 0px 50px rgba(255, 255, 255, 0.75));
}

.iw-av-banner.style3 .iw-av-image img{
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
}
.iw-av-banner.style3:hover .iw-av-image img{
    -webkit-transform: translateY(30px) translateX(-20px);
    transform: translateY(30px) translateX(-20px);
}
.iw-av-banner.style3:hover .iw-av-price{
    margin-left:-20px;
}
.iw-av-banner.style3 .ibutton{
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0;
    margin: 15px 0 0 0;
}
.iw-av-banner.style3:hover .ibutton{
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
}
.iw-av-banner.style3 .iw-av-desc,.iw-av-banner.style3 .iw-av-title,.iw-av-banner.style3 .iw-av-subtitle{
    -webkit-transform: translateX(120%);
    transform: translateX(120%);
    opacity: 0;
}
.iw-av-banner.style3:hover .iw-av-desc,.iw-av-banner.style3:hover .iw-av-title,.iw-av-banner.style3:hover .iw-av-subtitle{
    transform: translateX(0px);
    -webkit-transform: translateX(0px);
    opacity: 1;
}
/* style 1 */
.info-item.style1 {
    font-weight: 300;
}
.info-item.style1 {
    margin: 25px 0 20px !important;
}
.info-item.style1 .info-item-title {
    font-size: 22px;
    margin: 10px 0 10px;
    text-transform: uppercase;
}
.info-item.style1:hover .icon {
    border: none !important;
}
/* style 4 */
.info-item.style4 .info-item-content {
    z-index: 2;
    position: relative;
}
.info-item.style4 .info-item-title, .info-item.style4 .info-item-title a {
    font-size: 28px;
    font-weight: 600;
    color: #232323;
    margin: 0;
    padding: 0;
    text-transform: none;
}
.info-item.style4 .info-item-sub-title {
    font-size: 12px;
    margin-bottom: 20px;
    font-style: italic;
}
.info-item.style4 .info-item-desc {
    font-size: 14px;
}
.info-item.style4 .icon {
    border-radius: 50%;
    position: relative;
    background: #ffffff;
    text-align: center;
    line-height: 1;
    color: #eaeaea;
}
.info-item.style4 .icon i {
    display: inline-block;
    -webkit-transition: transform 0.4s ease;
    transition: transform 0.4s ease;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
}
.info-item.style4:hover .icon i {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}
.iw-bottom-icon {
    margin-top: 26px;
}
.iw-bottom-icon i {
    font-size: 8px;
}

/* info item style 6*/
.info-item.style6{
    text-align:center;
}
.info-item.style6 .info-item-title{
    font-family: Arvo, serif;
    font-size: 42px;
    font-weight: 700;
    text-transform:uppercase;
    margin:0 0 22px 0;
    padding:0;
}
.info-item.style6 .info-item-sub-title{
    font-size:20px;
    font-family: Arvo, serif;
    text-transform:uppercase;
    margin:0 0 15px 0;
    padding:0;
}
.info-item.style6 .info-item-desc{
    line-height:30px;
    font-size: 14px;
}

/* info item style 7*/

.info-item.style7 {
    padding: 25px;
}
.info-item.style7:hover {
    color: #ffffff;
    -webkit-transition: background 0.5s ease; /* Safari 3.1 to 6.0 */
    transition: background 0.5s ease;
}
.info-item.style7 .info-item-title {
    font-size: 36px;
    text-transform: none;
    margin: 5px 0 10px;
}
.info-item.style7 .info-item-sub-title {
    font-size: 14px;
    text-transform: uppercase;
}
.info-item.style7 .info-item-desc {
    font-size: 14px;
    margin-bottom: 65px;
}
.info-item.style7 .read-more a {
    font-size: 14px;
    background: #e7e7e7;
    border: 1px #e7e7e7 solid;
    padding: 10px 25px;
    color: #838383;
    -webkit-border-radius: 25px;
    border-radius: 25px;
    display: inline-block;
    line-height: 1;
}
.info-item.style7:hover .read-more a {
    font-family: Lato, sans-serif;
    border: 1px #ffffff solid;
    color: #ffffff;
    background: none;
}

/* style 6*/
.iw-av-banner.style6{
    text-align: center;
    padding:36px 0 10px 0;
}
.iw-av-banner.style6 .iw-av-image{
    text-align: right;
    position: relative;
    z-index: 0;
    margin-top:50px;
}

.iw-av-banner.style6 .iw-av-overlay1{
    bottom:0;
    left:0;
    z-index: -1;
    position:absolute;
    width:100%;
    height:26%;
}
.iw-av-banner.style6 .iw-av-overlay2{
    left:0;
    z-index: -1;
    position:absolute;
    width:100%;
    height:30%;
    bottom:26%;
    transform: skewY(-20deg) translateY(50%);
    -webkit-transform: skewY(-20deg) translateY(50%);
}

.iw-av-banner.style6 .iw-av-desc{
    width:100%;
    padding:5px 0px 12px 0;
    line-height: 180%;
    position:absolute;
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    bottom:0;
    left:0;
    z-index: 2;
    background: transparent;
}
.iw-av-banner.style6 .iw-av-desc i{
    margin-right:15px;
}

.iw-av-banner.style6 .iw-av-subtitle{
    font-size: 36px;
    line-height: 18px;
    font-weight: bold;

}
.iw-av-banner.style6 .iw-av-title{
    font-size: 24px;
    line-height: 44px;
    margin-top:5px;
}
.iw-av-banner.style6 .ibutton{
    color:#fff;
    margin:10px auto;
    font-weight: bold;
    padding:5px 20px;
}
.iw-av-banner.style6 .iw-av-price{
    position: absolute;
    z-index: 1;
    top:-40px;
    left:50%;
    margin-left:-45px;
}
.iw-av-banner.style6 .iw-av-button{
    text-align: left;
}
.iw-av-banner.style6 .iw-av-button .ibutton{
    margin-left:50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}
.iw-av-banner.style6 .iw-av-price > span{
    border-radius: 50%;
    background: #fff;
    font-size:24px;
    font-weight:bold;
    width:90px;
    height: 90px;
    text-align: center;
    padding-top:18px;
    display: inline-block;
    margin-left:-10px;
}
.iw-av-banner.style6 .iw-av-price hr{
    opacity: 0.5;
    padding:0;
    margin:4px 0 0 0;
    display: block;
    width: 40px;
    margin-left: 25px;
}

.iw-av-banner.style6 .iw-av-price span span{
    font-size:14px;
    font-weight:normal;
    color: #8e8e8e;
}
.iw-av-banner.style6:hover .iw-av-image{
    transform: translateY(-100px);
    -webkit-transform: translateY(-100px);
}
.iw-av-banner.style6:hover .iw-av-overlay1{
    height:50%;
}
.iw-av-banner.style6:hover .iw-av-overlay2{
    bottom:50%;
}
.iw-av-banner.style6:hover .iw-av-desc{
    transform: translateY(0);
    -webkit-transform: translateY(0);
}

.iw-av-banner.style6:hover .iw-av-title-wrap{
    transform: translateY(-150px);
    -webkit-transform: translateY(-150px);
}

.iw-av-banner.style6:hover .iw-av-date{
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
}
.iw-av-banner.style6 ul li{
    font-size: 14px;
    margin-bottom:5px;
}
.iw-av-banner.style6 .left{
    width:50%;
    float:left;
    text-align: right;
    padding:10px 5px;
}
.iw-av-banner.style6 .right{
    width:50%;
    float:right;
    text-align: left;
    padding:10px 5px;
}
.iw-av-banner.style6 .left li:after{
    content:"\f14a";
    font-family: fontawesome;
    margin-left:10px;
}
.iw-av-banner.style6 .right li:before{
    content:"\f14a";
    font-family: fontawesome;
    margin-right:10px;
}

@keyframes moveFromTop {
    from {
        transform: translateY(-300%);
    }
    to {
        transform: translateY(0%);
    }
}
@-webkit-keyframes moveFromTop {
    from {
        -webkit-transform: translateY(-300%);
    }
    to {
        -webkit-transform: translateY(0%);
    }
}
@keyframes moveFromBottom {
    from {
        transform: translateY(200%);
    }
    to {
        transform: translateY(0%);
    }
}
@-webkit-keyframes moveFromBottom {
    from {
        -webkit-transform: translateY(200%);
    }
    to {
        -webkit-transform: translateY(0%);
    }
}
/**
    Simple list
*/
.simple-list li{
    padding:6px 0;
    list-style: none!important;
}
.simple-list ul{
    margin:0!important;
}
.simple-list li .list-style{
    margin-right:10px;
    display:inline-block;
    width:21px;
    height:21px;
    line-height:21px;
    text-align: center;
    border-radius: 50%;
    color:#dadada;
    float:left;
}
.simple-list li.active .list-style{
    color:#fff;
    border:none!important;
}
.simple-list.stars li.active .list-style{
    background: none;
}
.check-mark li .list-style{
    background: #dadada;
    color:#fff;
    font-size: 9px!important;
}
.simple-list.numbers li .list-style{
    font-size: 9px;
    font-weight: bold;
}
.simple-list.angle-right li .list-style{
    font-size: 9px;
    border:1px solid #dadada;
    padding-left:1px;
    line-height:19px;
}

.simple-list .list-content{

}
.simple-list .list-content .theme-color{
    display: block;
}

.bold-text{
    display: inline-block;
    color:#fff;
    padding: 2px 10px;
    border-radius: 2px;
}

/**
    Tooltip style
*/
.tooltip.in {
    filter: alpha(opacity=100);
    opacity: 1;
}
.tooltip-inner{
    padding: 5px 10px;
    border-radius: 2px;
}

/**
    Button style
*/

/* button effect */
/**
    Call to action style
*/
.cta-banner{
    padding:16px 20px;
}
.cta-banner.style1{
    background:#fbfbfb;
    border: 1px solid #f1f1f1;
    color:#939393;
}
.cta-banner .cta-title{
    margin-top:0;
    text-transform: uppercase;
}

.cta-banner.style1 .cta-btn,.cta-banner.style2 .cta-btn{
    float:right;
    margin-top:-10px;
}
.cta-banner.style2{
    color: #fff;
}

.cta-banner.style2 .ibutton{
    border: 2px solid #fff;
    font-weight: bold;
}
.cta-banner.style3 .cta-title{
    text-transform: none;
    display: inline-block;
}
.cta-banner.style3 .ibutton{
    margin-bottom: -15px;
    font-size: 20px;
}
.cta-banner.style3{
    border: 1px solid #e8e8e8;
}

/**
    VIDEO
*/
.iw-video{
    position: relative;
}
.iw-video .iw-video-player{
    position:relative;
    z-index: 1;
}
.iw-tabs.horizontal-slide.layout2 .iw-video .iw-video-player{
    position:absolute;
    bottom: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}
.iw-tabs.horizontal-slide.layout2 div.iw-tab-video .iw-video-poster img {
    position: absolute;
    bottom: 0;
}
.iw-video video{
    display: block;
    width:100%;
}
.iw-video .play-button{
    color: #707170;
    font-size: 20px;
    cursor: pointer;
}
.iw-video .play-button{
    position:absolute;
    z-index: 99;
    top:50%;
    left:50%;
    transform: translateX(-50%)  translateY(-65%);
    -webkit-transform: translateX(-50%)  translateY(-65%);
}
.iw-video.have-content .play-button{
    top:30%;
}
.iw-video-overlay,.iw-video-poster,.iw-parallax-video{
    position: absolute;
    top:0;
    left:0;
    height: 100%;
    width:100%;
}

.iw-video .iw-video-overlay,.iw-video-poster{
    transition:opacity ease 1s;
    -webkit-transition:opacity ease 1s;
}
.iw-video .play-button{
    transition:all ease 0.2s;
    -webkit-transition:all ease 0.2s;
}
.iw-video.playing .play-button,.iw-video.playing .iw-video-poster{
    opacity: 0!important;
}
.iw-video .iw-video-poster{
    height:auto!important;
}
.iw-mailchimp-form.style1 .iw-video-poster img{
    width: 100%;
}
.iw-video.playing .play-button{
    transform: translateX(-50%)  translateY(-50%) scale(5);
    -webkit-transform: translateX(-50%)  translateY(-50%) scale(5);
}
.iw-video .iw-video-content{
    position:absolute;
    top:20%;
    width:100%;
    text-align: center;
    left:0;
    color: #fff;
    z-index: 1;
}

.iw-video .iw-video-content h3{
    font-size: 48px;
}
.iw-video .iw-video-content h3:after{
    width:90px;
    border-top: 2px solid #fff;
    content:'';
    display: block;
    margin:10px auto 30px auto;
}
.iw-video .iw-video-content p{
    font-size: 18px;
}
.iw-video .iw-video-content h3,.iw-video .iw-video-content p{
    opacity: 1;
    transition:all ease 1s;
    -webkit-transition:all ease 1s;
}
.iw-video.hide-content.playing .iw-video-content h3{
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    opacity: 0;
}
.iw-video.hide-content.playing .iw-video-content p{
    transform: translateX(-100%);
    -webkit-transform: translateX(-100%);
    opacity: 0;
}
.iw-parallax-video img{
    position:absolute;
    width:100%;
}

/**mailchimp shortcode*/

.iw-mailchimp-form.style1 {
    height: 500px;
    overflow: hidden;
    position: relative;
    text-align: center;
}
.iw-mailchimp-form h3{
    font-size: 20px;
    color:#838383;
    margin:15px 0 5px 0;

}
.iw-mailchimp-form.style1 input{
    height: 50px;
    line-height: 50px;
    border: 2px solid rgba(255,255,255,0.5);
    background: #fff;
    border-radius: 50px;
    width:380px;
    font-size: 14px;
    text-indent: 20px;
}
.iw-mailchimp-form.style1 button{
    color:#fff;
    border: none;
    padding: 2px 15px;
    border-radius: 20px;
    font-weight: bold;
    margin-left:-10px;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}
.iw-mailchimp-form.style1 button:after{
    content: "\f061";
    font-family: fontawesome;
    margin-left:5px;
}
.iw-mailchimp-form.style1 .response{
    color:#fff;
    height:40px;
    line-height: 40px;
    margin-bottom: 10px;
}
.iw-mailchimp-form .iw-video.playing .play-button{
    opacity: 1 !important;
}
.iw-mailchimp-form .iw-video.playing .play-button i:before{
    content: "\f04c";
}

/* TruongDX Style add-on vc */
/* One-page Education */
body .vc_col-has-fill > .vc_column-inner,
body .vc_row-has-fill + .vc_row-full-width + .vc_row > .vc_column_container > .vc_column-inner,
body .vc_row-has-fill + .vc_row > .vc_column_container > .vc_column-inner,
body .vc_row-has-fill + .vc_vc_row > .vc_row > .vc_vc_column > .vc_column_container > .vc_column-inner,
body .vc_row-has-fill + .vc_vc_row_inner > .vc_row > .vc_vc_column_inner > .vc_column_container > .vc_column-inner,
body .vc_row-has-fill > .vc_column_container > .vc_column-inner, .vc_row-has-fill > .vc_row > .vc_vc_column > .vc_column_container > .vc_column-inner,
body .vc_row-has-fill > .vc_vc_column_inner > .vc_column_container > .vc_column-inner {
    padding-top: 0;
}

.header-block-1 {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    min-height: 100vh;
}
.header-content h2 {
    color: #ffffff;
    font-family: "Montserrat";
    font-size: 70px;
    line-height: 72px;
    margin: 0;
    text-transform: uppercase;
}
.header-block-1 .header-content > span {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    line-height: 60px;
}
.header-content {
    position: absolute;
    top: 25%;
    z-index: 1;
}
.header-overlay {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transform: translateX(-50%) skew(-40deg);
    transform: translateX(-50%) skew(-40deg);
    width: 130%;
    z-index: 0;
}

.shape_content {
    color: #ffffff;
    position: relative;
    right: 0;
    top: 63%;
    -webkit-transform: skewX(-40deg);
    transform: skewX(40deg);
}
.shape_content .inwave-countdown::after {
    content: "";
    height: 100%;
    position: absolute;
    right: 0;
    -webkit-transform: skewX(-40deg);
    transform: skewX(-40deg);
    width: 100%;
    z-index: -1;
}
.shape_content .inwave-countdown::before {
    border-bottom: 125px solid rgba(0, 0, 0, 0);
    border-right: 125px solid;
    border-top: 0 solid rgba(0, 0, 0, 0);
    content: "";
    left: -52px;
    position: absolute;
    top: 0;
    z-index: -1;
}
.shape_content .inwave-countdown {
    position: fixed;
    right: 58px;
    top: auto;
    width: 515px;
}
.shape_content .date-countdown {
    float: left;
    text-align: center;
    width: 25%;
    position: relative;
}
.shape_content .date {
    display: block;
    font-family: "Montserrat";
    font-size: 48px;
    font-weight: 700;
    line-height: 52px;
    margin-top: 30px;
}
.shape_content .date-label {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 15px;
    margin-top: -25px;
}

.shape_content .date-countdown.second-count{
    padding-right: 30px;
}
.shape_content .date-countdown.day-count:after {
    background: rgba(0, 0, 0, 0.10) none repeat scroll 0 0;
    content: "";
    display: block;
    height: 70%;
    position: absolute;
    right: -10px;
    top: 15%;
    width: 1px;
}
.shape_content .date-countdown.day-count:before {
    background: rgba(255, 255, 255, 0.10) none repeat scroll 0 0;
    content: "";
    display: block;
    height: 70%;
    position: absolute;
    right: -9px;
    top: 15%;
    width: 1px;
}
.shape_content .date-countdown.hour-count::after{
    background: rgba(0, 0, 0, 0.10) none repeat scroll 0 0;
    content: "";
    display: block;
    height: 70%;
    position: absolute;
    right: 0;
    top: 15%;
    width: 1px;
}
.shape_content .date-countdown.hour-count::before{
    background: rgba(255, 255, 255, 0.10) none repeat scroll 0 0;
    content: "";
    display: block;
    height: 70%;
    position: absolute;
    right: 1px;
    top: 15%;
    width: 1px;
}
.shape_content .date-countdown.minute-count:after{
    background: rgba(0, 0, 0, 0.10) none repeat scroll 0 0;
    content: "";
    display: block;
    height: 70%;
    position: absolute;
    right: 10px;
    top: 15%;
    width: 1px;
}
.shape_content .date-countdown.minute-count:before{
    background: rgba(255, 255, 255, 0.10) none repeat scroll 0 0;
    content: "";
    display: block;
    height: 70%;
    position: absolute;
    right: 11px;
    top: 15%;
    width: 1px;
}
.shape_content .join_us {
    position: absolute;
    right: -245px;
    top: 50px;
}
.shape_content .join_us > a {
    color: #ffffff;
    display: block;

    font-size: 22px;
    font-weight: 700;
    line-height: 52px;
    padding: 45px 55px 43px 35px;
    position: relative;
    text-transform: uppercase;
}
.shape_content .join_us > a::after {
    content: "";
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transform: skewX(-40deg);
    transform: skewX(-40deg);
    width: 100%;
    z-index: -1;
}
.shape_content .join_us > a::before {
    border-bottom: 0 solid rgba(0, 0, 0, 0);
    border-left: 135px solid;
    border-top: 135px solid rgba(0, 0, 0, 0);
    bottom: 0;
    content: "";
    position: absolute;
    right: -55px;
    z-index: -1;
}
.shape_content .join_us > a i {
    font-weight: 400;
    display: inline-block;
    position: relative;
    left: 20px;
}

.share-row{
    position: relative;
}
.share-row:after {
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background: #f1f1f1;
    content: '';
    right: -1px;
}
body .has-image-box-education{
    background-position: center right !important;
}
.share-row .iw-button-style .iw-button-separator{
    text-transform: lowercase;
}
.share-row .iw-button-style .side-link{
    text-transform: none;
}
.iw-heading.style4{
    margin: 0;
    padding: 0;
}
.iw-heading.style4 .iwh-title{
     color: #f1f1f1;
     margin: 0 0 14px 0;
     font-size: 100px;
     font-weight: 700;
     text-transform: uppercase;
	 line-height:1;
 }
.iw-heading.style4 h3.iwh-title strong {
    color: #cccccc;
}
.iw-heading.style4 > .iwh-sub-title{
    font-size: 36px;
    margin: 15px 0 28px 0;
	padding:0 0 29px 0;
	position:relative;
	line-height: 30px;
}
.iw-heading.style4 .iwh-sub-sub-title {
    color: #838383;
    font-size: 18px;
    font-style: italic;
    line-height: 30px;
	position:relative;
}
.iw-heading.style4 > .iwh-sub-title:after {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #d6d6d6;
    width: 150px;
	border-bottom:3px solid #d6d6d6;
    content: '';
}
.share-row .separator {
    color: #838383;
    font-size: 15px;
    font-weight: 700;
    line-height: 40px;
    margin: 0 20px;
    display: inline-block;
    position: relative;
    top: -25px;
}
.share-row .second-button {
    color: #838383;
    display: inline-block;
    font-size: 15px;
    font-style: italic;
    font-weight: 700;
    position: relative;
    top: -25px;
}
.share-row .second-button i {
    display: inline-block;
    margin-left: 10px;
}

.iw-image-box.style1{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
}
.iw-image-box.style1 .image-box{
    position: relative;
}
.iw-image-box.style1 span:nth-child(1){
    position: absolute;
    top: 120px;
    left: 48px;
    z-index: 1;
}
.iw-image-box.style1 span:nth-child(2){
    position: absolute;
    top: 338px;
    left: 160px;
    z-index: 2;
}
.iw-image-box.style1 span:nth-child(3){
    position: absolute;
    top: 78px;
    left: 273px;
    z-index: 3;
}
.iw-image-box.style1 span:after{
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transform: scale(0.96);
    border: 1px solid rgba(255,255,255, 0.6);
    z-index: 2;
}
/* ------------------style sponsor ------------------- */

.iw-heading-sponsor.iw-heading.style4 > .iwh-title {
    color: #f1f1f1;
    font-size: 100px;
    font-weight: 700;
    margin: 0 0 12px 0;
    padding:0;
    text-transform: uppercase;
}
.iw-heading-sponsor.iw-heading.style4:after{
    display: none;
}
.iw-heading-sponsor.iw-heading.style4 .iwh-title strong{
    color: #ccc
}
.iwe-sponsor-block.style2 .sponsor-item .sponsor-image img {
    left: 0;
    position: relative;
    top: 0;
    transform: translate(0%, 0%);
}
.one-page-education-sponsor .sponsor-title .title {
    margin: 0;
    font-size: 100px;
    color: #f1f1f1;
    font-weight: 700;
}
.one-page-education-sponsor .sponsor-title .title strong{
    color: #cccccc;
}
.iw-heading-sponsor.iw-heading.style4 .iwh-sub-title {
    color: #838383;

    font-size: 18px;
    font-style: italic;
    line-height: 30px;
    margin-bottom: 0;
    padding-left: 15px;
    position: relative;
    max-width: 550px;
}
.iw-heading-sponsor.iw-heading.style4 .iwh-sub-title::after {
    content: "";
    height: 100%;
    left:0;
    position: absolute;
    top: 0;
    width: 2px;
}

.iwe-sponsor-block.style2 .one-page-education-sponsor .sponsors {
    background: #ffffff;
    border-top: 1px solid #efefef;
    border-left: 1px solid #efefef;
}
.iwe-sponsor-block.style2 .one-page-education-sponsor .sponsors .sponsor-item{
	border-left:none!important;
	border-top:none!important;
	border-bottom:1px solid #efefef!important;
	border-right:1px solid #efefef!important;
}
.iwe-sponsor-block.style2 .one-page-education-sponsor .sponsors .row{
	margin:0;
}

/* -------------------- style speaker ------------------- */
.iwe-speaker-block.style3 {
}
.iwe-speaker-block.style3 .speakers-with-quote::after {
    clear: both;
    content: "";
    display: block;
}
.iwe-speaker-block.style3 .speakers-with-quote{
    margin: 0;
}
.iwe-speaker-block.style3 .speakers-with-quote .speakers-item {
    float: left;
    height: 335px;
    list-style: outside none none;
    overflow: hidden;
    position: relative;
    width: 25%;
}
.iwe-speaker-block.style3 .speakers-with-quote .speakers-item::after {
    background: rgba(0, 0, 0, 0.6) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    -webkit-transition: opacity 0.3s linear 0s;
    transition: opacity 0.3s linear 0s;
    opacity: 0;
}
.iwe-speaker-block.style3 .speakers-with-quote .speakers-item:hover::after{
   opacity: 1;
}
.iwe-speaker-block.style3 .speakers-with-quote .speakers-item.item-quote {
    padding: 30px 0 0 90px;
    width: 50%;
}
/**/
.iwe-speaker-block.style3 .speakers-with-quote .speakers-item.item-quote .quote-title {
    color: #f1f1f1;
    font-family: "Poppins";
    font-size: 80px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}
.iwe-speaker-block.style3 .speakers-with-quote .speakers-item.item-quote .quote-desc {
    color: #232323;
    font-size: 16px;
    font-weight: 400;
    line-height: 36px;
    padding: 15px 0 0;
    position: relative;
    margin-left: 0;
    max-width: 510px;
    z-index: 10;
}
.iwe-speaker-block.style3 .speakers-with-quote .speakers-item.item-quote .quote-desc:after{
    color: #f1f1f1;
    content: "Ã¯â€žÂ";
    display: inline-block;
    font-family: FontAwesome;
    font-size: 70px;
    font-style: normal;
    font-weight: normal;
    left: -35px;
    position: absolute;
    text-decoration: inherit;
    top: 40px;
    z-index: -1;
}
.iwe-speaker-block.style3 .speakers-with-quote .speakers-item.item-quote  .quote-name {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    margin-top: 25px;
    text-transform: uppercase;
}
.iwe-speaker-block.style3 .speakers-with-quote .speakers-item.item-quote .quote-title strong{
    color: #ccc
}
.iwe-speaker-block.style3 .speakers-with-quote .speakers-item.item-quote::after{
    display: none;
}
.iwe-speaker-block.style3 .speakers-with-quote .speakers-item .speaker-display {
    height: 100%;
    position: relative;
}

.iwe-speaker-block.style3 .speakers-with-quote .speakers-item .speaker-display > img {
    max-width: none;
    -webkit-transform: translate3d(-40px, 0px, 0px);
    transform: translate3d(-40px, 0px, 0px);
    -webkit-transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
    transition: opacity 0.35s ease 0s, transform 0.35s ease 0s;
    width: calc(100% + 50px);
    display: block;
    min-height: 100%;
    position: relative;
}
.iwe-speaker-block.style3 .speakers-with-quote .speakers-item:hover .speaker-display > img{
    -webkit-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
}
.iwe-speaker-block.style3 .speakers-with-quote .speakers-item  .speaker-info {
    bottom: 25px;
    margin: 0 35px;
    left: 0;
    position: absolute;
}
.iwe-speaker-block.style3 .speakers-item .speaker-overlay {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: transform 0.5s linear 0s;
    transition: transform 0.5s linear 0s;
    position: absolute;
    left: 0;
    width: 100%;
    padding: 0 35px 15px;
    top: auto;
}
.iwe-speaker-block.style3 .speakers-item:hover .speaker-overlay {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    bottom: 0 !important;
    left: 0;
    z-index: 3;
}
.iwe-speaker-block.style3 .speakers-item .speaker-overlay .speaker-name-position {
    padding-bottom: 20px;
}
.iwe-speaker-block.style3 .speaker-name {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 5px;
    text-transform: uppercase;
}
.iwe-speaker-block.style3 h5.speaker-position {
    color: #ffffff;
    font-size: 14px;
    line-height: 30px;
    margin: 0;
    font-weight: 700;
}
.iwe-speaker-block.style3 .speaker-desc {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 13px;
    line-height: 28px;
    margin: 0 0 15px;
    padding-bottom: 20px;
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
    -webkit-transition: transform 0.5s linear 0.2s, opacity 0.5s linear 0.2s;
    transition: transform 0.5s linear 0.2s, opacity 0.5s linear 0.2s;
}
.iwe-speaker-block.style3 .speakers-item:hover .speaker-overlay .speaker-desc{
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.iwe-speaker-block.style3 .speaker-overlay .speaker-social{
    margin: 0;
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
    -webkit-transition: transform 0.5s linear 0.4s, opacity 0.5s linear 0.4s;
    transition: transform 0.5s linear 0.4s, opacity 0.5s linear 0.4s;
}
.iwe-speaker-block.style3 .speakers-item:hover .speaker-overlay .speaker-social{
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}
.iwe-speaker-block.style3 .speaker-overlay .speaker-social::after {
    clear: both;
    content: "";
    display: block;
}
.iwe-speaker-block.style3 .speaker-social > li {
    float: left;
    list-style: outside none none;
}
.iwe-speaker-block.style3 .speaker-social li a {
    color: #ffffff;
    display: inline-block;
    font-size: 18px;
    padding: 0 10px;
}
.iwe-speaker-block.style3 .speaker-social li:first-child a{
    padding-left: 0;
}
.iwe-speaker-block.style5{
    margin-left: -15px;
    margin-right: -15px;
    position: relative;
    z-index: 9;
}
.iwe-speaker-block.style5 .speaker-intro{
    height: 265px;
}
.iwe-speaker-block.style5 .speaker-video, .iwe-speaker-block.style5 .iw-video-player{
    width: 100%;
    height: 100%;
}
.iwe-speaker-block.style5 .iw-video-poster{
    width: 100%;
    height: 100% !important;
}
.iwe-speaker-block.style5 .iw-video-poster img{
    width: 100%;
    height: auto;
}
.iwe-speaker-block.style5 .speaker-image{
    border-radius: 0;
    width: 100%;
    height: 100%;
}
.iwe-speaker-block.style5 .speaker-image img {
    width: 100%;
}
.iwe-speaker-block.style5 .speaker-item {
    margin: 0 15px;
}
.iwe-speaker-block.style5 .speaker-info {
    background: #363636 none repeat scroll 0 0;
    color: #ffffff;
    position: relative;
}
.iwe-speaker-block.style5 .speaker-name {
    margin: 0;
}
.iwe-speaker-block.style5 .speaker-name h3 {
    border-radius: 20px;
    display: inline-block;
    font-size: 18px;
    margin: 0;
	font-weight:600;
    padding: 8px 23px;
    position: relative;
    top: -20px;
    z-index: 10;
}
.iwe-speaker-block.style5 .speaker-position {
    font-size: 14px;
    margin: -10px 0 15px;
    text-transform: capitalize;
}
.iwe-speaker-block.style5 .speaker-social{
    list-style: none;
}
.iwe-speaker-block.style5 .speaker-social li{
    display: inline-block;
}
.iwe-speaker-block.style5 .speaker-social a {
    border-radius: 50%;
    color: #dadada;
    display: inline-block;
    font-size: 14px;
    height: 36px;
    line-height: 34px;
    margin: 0 3px 15px;
    width: 36px;
	padding:0;
}
.iwe-speaker-block.style5 .speaker-social a:hover{
    color: #fff;
}
.iwe-speaker-block.style5 .owl-theme .owl-controls {
    position: absolute;
    top: calc(50% - 20px);
    width: 100%;
    z-index: 99;
    margin: 0;
}
.iwe-speaker-block.style5 .owl-theme .owl-controls .owl-buttons div {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 2px solid #7f7f7f;
    border-radius: 50%;
    font-size: 0;
    height: 36px;
    width: 36px;
}
.iwe-speaker-block.style5 .owl-theme .owl-controls .owl-buttons .owl-next {
    position: absolute;
    right: -40px;
}
.iwe-speaker-block.style5 .owl-theme .owl-controls .owl-buttons .owl-prev {
    position: absolute;
    left: -40px;
}
.iwe-speaker-block.style5 .owl-theme .owl-controls .owl-buttons div:after {
    color: #7f7f7f;
}
.iwe-speaker-block.style5 .owl-theme .owl-controls .owl-buttons div.owl-next:after {
    content: "\f105";
    font-family: FontAwesome;
    font-size: 26px;
    position: relative;
    right: -2px;
}
.iwe-speaker-block.style5 .owl-theme .owl-controls .owl-buttons div.owl-prev:after {
    content: "\f104";
    font-family: FontAwesome;
    font-size: 26px;
    left: -2px;
    position: relative;
}


.iwe-speaker-block.style8 .speaker-flex-slider {
    position: relative;
}
.iwe-speaker-block.style8 .custom-navigation {
    position: absolute;
    top: 182px;
    right: 0;
    width: 100%;
    z-index: 9;
    text-align: right;
    text-transform: uppercase;
    color: #ffffff;
}
.iwe-speaker-block.style8 .custom-navigation .title-block {
    max-width: 108px;
    padding: 0;
    display: inline-block;
    text-align: left;
}
.iwe-speaker-block.style8 .custom-navigation .title-block h3 {
    line-height: 30px;
    font-family: Arvo, serif;
    font-weight: 700;
    font-size: 30px;
    margin: 0 0 25px;
    font-weight: 700;
}
.iwe-speaker-block.style8 .custom-navigation .navigation {
    display: inline-block;
    width: 108px;
    text-align: left;
}
.iwe-speaker-block.style8 .custom-navigation .navigation a {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    border: 2px #ffffff solid;
    color: #ffffff;
    font-size: 24px;
}
.iwe-speaker-block.style8 .custom-navigation .navigation a.flex-prev {
    margin-right: 2px;
}
.iwe-speaker-block.style8 .speaker-item {
    position: relative;
}
.iwe-speaker-block.style8 .flexslider {
    border: none;
    margin: 0;
    -webkit-border-radius: 0;
    border-radius: 0;
    background: none;
}
.iwe-speaker-block.style8 ul {
    margin: 0;
}
.iwe-speaker-block.style8 ul li {
    list-style: none;
}
.iwe-speaker-block.style8 .speaker-item .speaker-detail {
    position: absolute;
    top: 180px;
    left: 0;
    width: 100%;
    text-transform: uppercase;
    color: #ffffff;
}
.iwe-speaker-block.style8 .speaker-item .speaker-detail .speaker-name,
.iwe-speaker-block.style8 .speaker-item .speaker-detail .speaker-position {
    font-family: Arvo, serif;
    font-size: 72px;
    font-weight: 700;
    max-width: 525px;
    line-height: 65px;
    margin: 0;
}
.iwe-speaker-block.style8 .speaker-item .speaker-detail .speaker-desc {
    font-size: 24px;
    max-width: 162px;
    margin-top: 30px;
    line-height: 29px;
}
.iwe-speaker-block.style8 .nav-thumbnail {
    position: absolute;
    left: 0;
    bottom: 115px;
    width: 100%;
}
.iwe-speaker-block.style8 .nav-thumbnail li {
    margin-right: 30px !important;
}

/* style Text-block join-with-us*/
.iw-jwu-box{
    text-align: center;
}
.iw-jwu-box p {
    color: #ffffff;
    font-size: 24px;
    font-weight: 300;
    line-height: 48px;
    margin: 0;
    padding: 20px 0 30px;

}
.iw-jwu-box p strong{
    font-weight: 700;
}
.iw-jwu-box .join-button a {
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    color: #ffffff;
    padding: 0 0 0 15px;
    font-family: Merriweather, Georgia, serif;
}
.iw-jwu-box .join-button a i {
    border-left: 1px solid rgba(0,0,0,0.1);
    display: inline-block;
    margin: 0 0 0 15px;
    padding: 20px;
}

/* -------------------- style schedule ------------------- */

.iw-row-time-table{
    background-position: center center !important;
    position: relative;
    margin-left: 0!important;
    margin-right: 0!important;
}
.iw-row-time-table .iw-heading.style5{
    margin-left: 20px;
}
.iwe-schedule.style1 > h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 60px;
    margin-left: 190px;
    position: relative;
    margin: 0 0 0 190px;
    text-transform: uppercase;
}
.iwe-schedule.style1 > h4:after {
    position: absolute;
    top: 28px;
    left: -55px;
    content: '';
    height: 2px;
    width: 20px;
    background: #aeaeae;
}
.iwe-schedule.style1 .scheduce-wrapper{
    margin: 12px 0 0;
}
.iwe-schedule.style1 .scheduce-wrapper li{
    list-style: none;
}
.iwe-schedule.style1 .scheduce-wrapper li:after{
    clear: both;
    content: '';
    display: block;
}
.iwe-schedule.style1 .scheduce-wrapper li span {
    color: #838383;
    float: left;
    font-size: 14px;
    line-height: 60px;
    text-align: right;
    width: 160px;
}
.iwe-schedule.style1 .scheduce-wrapper li small {
    color: #232323;
    float: left;
    font-size: 14px;
    line-height: 60px;
    display: inline-block;
    margin-left: 30px;
}
.iw-row-time-table .vc_single_image-wrapper{
    position: relative;
    z-index:9;
}
.iw-row-time-table .image-right .vc_single_image-wrapper::after {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 4px solid #d0d0d0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transform: translate(30px, -30px);
    transform: translate(30px, -30px);
    width: 100%;
    z-index: -1;
}
.iw-row-time-table .vc_single_image{
    margin-left: 40px;
}
.iw-row-time-table .wpb_single_image.image-right{
    margin-right: 20px;
    position: relative;
}
.iw-row-time-table .wpb_single_image.image-right:before{
    display: none;
}
.iw-row-time-table .wpb_single_image.image-right::after {
    background: #cccccc none repeat scroll 0 0;
    content: "";
    height: 120%;
    left: 25px;
    position: absolute;
    top: -30px;
    width: 1px;
    -webkit-transform: rotate(8deg);
    transform: rotate(8deg);
}
.iw-row-time-table .wpb_single_image{
    position: relative;
}
.iw-row-time-table .wpb_single_image:before{
    background: #cccccc none repeat scroll 0 0;
    content: "";
    height: 120%;
    right: 25px;
    position: absolute;
    top: -40px;
    width: 1px;
    -webkit-transform: rotate(8deg);
    transform: rotate(8deg);
}
.iw-row-time-table .vc_single_image-wrapper::after {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 4px solid #d0d0d0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transform: translate(-30px, 30px);
    transform: translate(-30px, 30px);
    width: 100%;
    z-index: -1;
}
.iw-row-time-table .wpb_wrapper > p {
    font-size: 14px;
    line-height: 24px;
    color: #838383;
    text-transform: uppercase;
    font-weight: 700;

}
/*---------------------------- Style Pricing -------------------------*/



.iwe-pricing-block.iwe-education-pricing-block.style3 .iw-event-pricing{
    margin: 0;
}
.iwe-pricing-block.iwe-education-pricing-block.style3 .tickets {
    padding: 0;
}
.iwe-pricing-block.iwe-education-pricing-block.style3 .iw-event-pricing .plan-icon {
    margin-top: 0;
    padding: 30px 0 0;
}
.iwe-pricing-block.iwe-education-pricing-block.style3 .iw-event-pricing .ticket-item.ticket-feature .plan-icon{
    padding: 35px 0 15px;
}
.iwe-pricing-block.iwe-education-pricing-block.style3 .iw-event-pricing .plan-description {
    padding: 20px 20px 25px;
}
.iwe-pricing-block.iwe-education-pricing-block.style3 .iw-event-pricing .plan-button {
    margin-bottom: 22px;
}
.iwe-pricing-block.iwe-education-pricing-block.style3 .iw-event-pricing .plan-image i{
    visibility: hidden;
}
.iwe-pricing-block.iwe-education-pricing-block.style3 .iw-event-pricing .ticket-item.ticket-feature .plan-image i{
    visibility: visible;
}
.iwe-pricing-block.style3.iwe-education-pricing-block {
    position: relative;
    margin-top: -200px;
}
.modal-plan-image{
    display: none;
}

/*------------------------ Style module video ---------------------*/

.iw-mailchimp-form.style1 .iw-video-content > h3 {
    font-size: 30px;
    line-height: 40px;
    color: white;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}
.iw-mailchimp-form.style1 .iw-video-content h3::after{
    display: none;
}
.iw-mailchimp-form.style1 .iw-video .play-button {
    border: 5px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    display: inline-block;
    font-size: 18px;
    height: 40px;
    left: auto;
    line-height: 30px;
    position: relative;
    text-align: center;
    top: -5px;
    transform: translate(0px);
    width: 40px;
    margin: 0 15px;
}
.iw-mailchimp-form.style1 .iw-video-content > p {
    color: #ffffff;
    font-weight: 300;
    line-height: 30px;
    margin: 0 auto;
    padding: 15px 0 35px;
    text-align: center;
    width: 750px;

    font-size: 14px;
}
.iw-mailchimp-form.style1 input {
    background: #555251;
    border: 2px solid #555251;
    border-radius: 30px;
    color: white;
    font-size: 14px;
    height: 45px;
    line-height: 50px;
    text-indent: 20px;
    width: 380px;
}
.iw-mailchimp-form.style1 input::-moz-placeholder {
    color: #fff;
    opacity: 1;
}
.iw-mailchimp-form.style1 button {
    border: medium none;
    border-radius: 30px;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    height: 45px;
    line-height: 40px;
    margin-left: 35px;
    padding: 2px 15px;
    transform: translateX(0px);
    width: 165px;
}
.iw-mailchimp-form.style1 button:after {
    display: none;
}
/*----------------- Recent post -------------*/
.iw-posts.style3 .post-item{
    background: white;
}
.iw-posts.style3 .post-title > a {
    font-size: 26px;
    line-height: 30px;
    color: #838383;

    font-weight: 700;
}
.iw-posts.style3 .post-meta a {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    line-height: 30px;
    margin-right: 5px;
    text-transform: uppercase;
}
.iw-posts.style3  .post-meta span,
.iw-posts.style3  .post-meta span i{
    display: inline-block;
    margin-right: 5px;
}
.iw-posts.style3  .post-item {
    border-top: 1px solid #f1f1f1;
    padding-top: 50px;
}
.iw-posts.style3 .post-item p {
    color: #838383;

    font-size: 14px;
    font-weight: 300;
    line-height: 30px;
    margin: 15px 0 25px 15px;
    position: relative;
}
.iw-posts.style3 .post-item p::after {
    background: #f0f0f0;
    content: "";
    height: 100%;
    left: -15px;
    position: absolute;
    top: 0;
    width: 2px;
}
.iw-posts.style3  .post-item .read-more {
    background: #ebebeb none repeat scroll 0 0;
    border-radius: 30px;
    color: #838383;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 30px;
}
.iw-posts.style3  .post-item h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    padding: 0 0 15px;
}
.iw-posts p iframe{
    margin: 15px 0;
}
.iw-posts.style3 .gallery-item .gallery-icon:last-child a{
    padding: 0;
}
.iw-posts.style3 .gallery-item .gallery-icon a img{
    padding-bottom: 15px;
}
.iw-posts.style3 .post-item .post-date .day {
    font-family: "Montserrat";
    font-size: 75px;
    font-weight: 700;
    line-height: 80px;
    display: inline-block;
    position: relative;
}
.iw-posts.style3 .post-item .post-date .day:after {
    background: #ffffff none repeat scroll 0 0;
    border-left: 2px solid #cccccc;
    content: "";
    height: 90px;
    position: absolute;
    right: -10px;
    top: 10px;
    transform: rotate(40deg);
    width: 25px;
    z-index: 9
}
.iw-posts.style3 .post-item .post-date .month {
    color: #adadad;
    display: inline-block;
	font-family: lato;
    font-size: 16px;
    font-weight: 700;
    left: -20px;
    line-height: 30px;
    position: relative;
    top: 15px;
    text-transform: uppercase;
    z-index: 9;
	font-family: lato;

}
/*----------------- style module map------------- */

.inwave-map.style2{
    position: relative;
    overflow: hidden;
}
.inwave-map.style2 .map-overlay {
    position: absolute;
    width: 58%;
    top: -86%;
    left: -9%;
    height: 265%;
    z-index: 1;
}

.inwave-map.style2 .map-overlay-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform: rotate(36deg);
    overflow: hidden;
    z-index: 11;
}

.inwave-map.style2 .image-rotate {
    position: relative;
    width: 145%;
    height: 100%;
    transform: rotate(-36deg);
}
.inwave-map.style2 .image-rotate:after{
    position: absolute;
    background: rgba(23,23,23, 0.84);
    width: 100%;
    height: 100%;
    content: "";
    left: 0;
}
.inwave-map.style2 .image-rotate img{
    width: auto;
    height: 100%;
}
.inwave-map.style2 .map-content-wraper {
    left: 0;
    position: absolute;
    top: 70px;
    z-index: 29;
}
.inwave-map.style2 .map-info {
    margin-top: 35px;
}
.inwave-map.style2 .map-content-wraper .title {
    color: #ffffff;
    font-family: "Montserrat";
    font-size: 60px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 10px;
}
.inwave-map.style2 .get-in-touch{
    bottom: 35%;
    height: 100px;
    position: absolute;
    right: -30%;
    width: 320px;

}
.inwave-map.style2 .get-in-touch a{
    width: 100%;
    height: 100%;
    display: inline-block;
    line-height: 100px;
    color: #fff;
    text-transform: uppercase;
    z-index: 10;
    padding-left: 70px;
}
.inwave-map.style2 .get-in-touch > a {
    font-size: 22px;
    color: #fffefe;
    font-weight: 700;
}
.inwave-map.style2 .description {
    color: #ffffff;
    font-size: 20px;
    line-height: 36px;
    margin: 0;
    max-width: 560px;
    padding-left: 20px;
    position: relative;
}
.inwave-map.style2 .description::after {
    background: #dd113d none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 2px;
}
.inwave-map.style2 .map-info li {
    color: #ffffff;
    font-weight: 700;
    list-style: outside none none;
    font-family: "Minion Pro";
    font-size: 18px;
    line-height: 36px;
}
.inwave-map.style2 .map-info li span {
    border: 1px solid #ffffff;
    border-radius: 50%;
    display: inline-block;
    height: 45px;
    line-height: 45px;
    text-align: center;
    width: 45px;
    margin-right: 10px;
    margin-bottom: 20px;
}
.inwave-map.style2 .map-info li span i{
    font-size: 18px;
}
/*--------------- Style buy ticket one-page education -------------*/
/**/
.iwe-checkout.style3 .iwe-title-block .iwe-title {
    color: black;
    font-family: Poppins;
    font-size: 36px;
    font-weight: 700;
    line-height: 48px;
    margin-bottom: 3px;
    text-transform: uppercase;
;
	   font-family: "Poppins";
}

.iwe-checkout.style3  .iwe-title-block{
    margin-bottom: 45px;
    text-align: left;
}
.iwe-checkout.style3 textarea{
    border: 1px solid #eeeeee;
    height: 210px;
    margin-bottom: 35px;
    padding: 10px;
    width: 100%;
}
.iwe-checkout.style3 textarea:focus,
.iwe-checkout.style3 textarea:hover,
.iwe-checkout.style3 textarea:active{
    border-color: #eee;
}
.iwe-checkout.style3 .iwe-checkoutform input.btn-event-checkout {
    margin-bottom: 0;
    width: auto;
    text-transform: uppercase;
    font-size: 18px;
    font-weight: 700;
}
.iwe-checkout.style3 .iwe-checkoutform input{
    margin-bottom: 35px;
}
.iwe-checkout.style3 .iwe-checkoutform .iw-note {
    color: #838383;
    font-size: 12px;
    font-weight: 400;
    line-height: 30px;
    margin-top: 15px;
    text-align: right;
    text-transform: none;
}
.iwe-checkout.style3 .iwe-checkoutform input,
.iwe-checkout.style3 .select2-selection__rendered{
    background: #ffffff none repeat scroll 0 0;

    text-transform: none;
    height: 42px;
    padding: 10px 15px;
}

.iwe-checkout.style3 .iwe-title-block .iwe-subtitle {
    font-size: 14px;
    color: #838383;
    line-height: 30px;
    font-weight: 400;
    padding-left: 30px;
    position: relative;
    max-width: 460px;
}
.iwe-checkout.style3 .iwe-title-block .iwe-subtitle:after{
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 2px;
    height: 100%;
}

.iwe-checkout.style3 {
    box-shadow: 1px 0 6px 2px rgba(0,0,0,0.15);
    padding: 35px 30px 40px 30px;
    position:relative;
    z-index: 10;
    background: white;
}
body .testimonial-block-education {
    background-position: 280px bottom!important;
    background-color: #f8f8f8;
}
.iwe-checkout.style3 .iw-testimonial-item:after{
    display: block;
    clear: both;
    content: '';
}

.iw-testimonals.style3{
    text-align: left;
    padding-bottom: 386px;
}
.iw-testimonals.style3 .testi-client-info {
    margin-left: 85px;
}
.iw-testimonals.style3 .testi-image {
    float: left;
}
.iw-testimonals.style3 .testi-image img{
    border-radius: 50%;
}
.iw-testimonals.style3 .testi-client-name {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
	margin-bottom:4px;
}
.iw-testimonals.style3 .testi-client-position{
    font-size: 12px;
    font-weight: 700;
    color: #838383;
    line-height: 20px;
    text-transform: uppercase;
}
.iw-testimonals.style3 .testi-client-description p:first-child{
    margin: 0;
}
.iw-testimonals.style3 .testi-client-description {
    color: #838383;
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
    padding: 0 0 44px 38px;
    position: relative;
    text-indent: 30px;
}
.iw-testimonals.style3 .testi-client-description::after {
    color: #f1f1f1;
    content: "Ã¯â€žÂ";
    display: inline-block;
    font-family: FontAwesome;
    font-size: 70px;
    font-style: normal;
    font-weight: normal;
    left: -30px;
    position: absolute;
    text-decoration: inherit;
    top: 15px;
    z-index: -1;
}

.iw-testimonals.style3 .owl-theme .owl-controls.clickable {
    margin-top: 9px;
    text-align: left;
    margin-left: 80px;
}
.iw-testimonals.style3 .owl-theme .owl-controls .owl-page span{
	margin:0 3px;
	height:10px;
	width:10px;
}
.iw-testimonals.style3 .iw-testimonial-item {
    font-size: 18px;
    line-height:24px;
    margin-bottom: 0;
}

.iw-image-mockup.wpb_single_image .vc_single_image-wrapper {
    position: relative;
}


/*---------------------- Buy ticket ---------------- */
.iwe-pricing-block.style3.iwe-education-pricing-block .iw-event-pricing .plan-name{
    font-weight: 700;
}
.iwe-pricing-block.style3.iwe-education-pricing-block .iw-event-pricing .ticket-item .plan-description{
    font-size: 12px;
    line-height: 30px;
    color: #838383;
    padding-left: 35px;
    padding-right: 35px;
}
/*---------------------- Style fashion schedule --------------*/
.iwe-schedule.style2.iwe-schedule-fashion .iw-content,
.iwe-schedule.style2.iwe-schedule-fashion .iw-image{
    float: right;
}
.iwe-schedule.iwe-schedule-fashion .iw-image > span {
    display: inline-block;
    width: 100%;
}
.iwe-schedule.iwe-schedule-fashion .iw-image > span img{
    width: 100%;
}
.iwe-schedule.style3.iwe-schedule-fashion .iw-content {
    padding-left: 100px;
}
.iwe-schedule.iwe-schedule-fashion h4 {
    color: #000000;
    font-family: Playfair Display;
    font-size: 100px;
    font-weight: 700;
    margin: 0;
    padding: 95px 0 0;
    text-transform: uppercase;
}
.iwe-schedule.iwe-schedule-fashion .iw-content > p {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    margin: 0;
    padding: 0 0 32px;
}
.iwe-schedule.iwe-schedule-fashion .iw-content .scheduce-wrapper{
    margin: 0;
}
.iwe-schedule.iwe-schedule-fashion .iw-content .scheduce-wrapper li{
    list-style: none;
}
.iwe-schedule.iwe-schedule-fashion .iw-content .scheduce-wrapper li span {
    color: #838383;
    display: inline-block;

    font-size: 18px;
    line-height: 60px;
    position: relative;
    width: 105px;
}
.iwe-schedule.iwe-schedule-fashion .iw-content .scheduce-wrapper li small{
    color: #232323;
    display: inline-block;
    font-size: 18px;
    line-height: 60px;
}
.iwe-schedule.iwe-schedule-fashion .iw-content .scheduce-wrapper li span::after {
    border: 3px solid #d8d8d8;
    border-radius: 50%;
    content: "";
    height: 18px;
    position: absolute;
    right: 20px;
    top: 22px;
    width: 18px;
}
.iwe-schedule.iwe-schedule-fashion .iw-content .scheduce-wrapper li span::before {
    background: #f1f1f1 none repeat scroll 0 0;
    content: "";
    height: 45px;
    position: absolute;
    right: 29px;
    top: 40px;
    width: 1px;
}
.iwe-schedule.iwe-schedule-fashion .iw-content .scheduce-wrapper li:last-child span::before{
    display: none;
}

/* ------------------------- Fashion Introduce -------------------------*/
.iw-fashion-introduce-row{
    position: relative;
    z-index:9;
}
.iw-header-block-3 {
    position: relative;
    text-align: center;
}
.iw-header-block-3 .title {
    color: #ffffff;

    font-size: 200px;
    font-weight: 700;
    left: 0;
    margin: 0;
    position: absolute;
    text-transform: uppercase;
    top: 140px;
    width: 100%;
    z-index: 1;
}
.iw-header-block-3 > span {
    display: inline-block;
    position: relative;
    margin-top: -60px;
    z-index: 2;
}
.iw-header-block-3 > span::after {
    border-left: 15px solid #d3a561;
    border-right: 15px solid #d3a561;
    border-top: 15px solid #d3a561;
    content: "";
    height: 100px;
    left: 50%;
    position: absolute;
    top: 112px;
    width: 528px;
    z-index: -1;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.iw-header-block-3 > span::before {
    border-bottom: 15px solid #d3a561;
    border-left: 15px solid #d3a561;
    border-right: 15px solid #d3a561;
    bottom: 45px;
    content: "";
    height: 145px;
    left: 50%;
    position: absolute;
    width: 528px;
    z-index: 5;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.iw-header-block-3 .sub-title > h3{
    margin: 0;
}
.iw-header-block-3 .sub-title > h3 span {
    color: #d3a561;
    display: inline-block;

    font-size: 24px;
    font-weight: 700;
    line-height: 52px;
    margin: 0;
    position: relative;
    text-transform: uppercase;
}
.iw-header-block-3 .sub-title > h3 span::after {
    background: #d3a561 none repeat scroll 0 0;
    content: "";
    height: 2px;
    left: -250px;
    position: absolute;
    top: 26px;
    width: 235px;
}
.iw-header-block-3 .sub-title > h3 span:before {
    background: #d3a561 none repeat scroll 0 0;
    content: "";
    height: 2px;
    right: -250px;
    position: absolute;
    top: 26px;
    width: 235px;
}
.iw-header-block-3 .content-wrapper .sub-title-2 {
    padding: 0 0 10px;
}
.iw-header-block-3 .sub-title-2 > span {
    display: inline-block;
    font-size: 70px;
    font-weight: 700;
    line-height: 60px;
    position: relative;
    text-transform: uppercase;
}
.iw-header-block-3  .sub-title-3 > small {
    color: #d3a561;
    display: inline-block;
    font-size: 30px;
    font-weight: 700;
    line-height: 40px;
    position: relative;
    text-transform: uppercase;
}
.iw-header-block-3 .sub-title-3 > small:before {
    background: #d3a561 none repeat scroll 0 0;
    content: "";
    height: 2px;
    right: -91px;
    position: absolute;
    top: 20px;
    width: 70px;
}
.iw-header-block-3 .sub-title-3 > small::after {
    background: #d3a561 none repeat scroll 0 0;
    content: "";
    height: 2px;
    left: -93px;
    position: absolute;
    top: 20px;
    width: 70px;
}
.iw-header-block-3 .content-wrapper {
    left: 0;
    position: absolute;
    top: 333px;
    width: 100%;
    z-index: 3;
}

/*------------------ add-on welcome guest in one page person ------------*/
.iw-header-block-4 {
    margin-left: 25px;
    /*height: 100vh;*/
}

.iw-header-block-4  .content-main{
    display: none;
}
.iw-header-block-4 .hi-name strong {
    display: inline-block;
    font-size: 30px;
    font-weight: 400;
    margin-right: 0;
}
.iw-header-block-4 .hi-name{
    color: white;
    display: inline-block;
    font-size: 30px;
    font-weight: 400;
}
.iw-header-block-4 .title > span {
    color: #ffffff;
    display: inline-block;
    font-size: 72px;
    line-height: 72px;
    text-transform: uppercase;
}
.iw-header-block-4 .sub-title {
    color: rgb(255, 255, 255);
    font-size: 32px;
    font-weight: 400;
    left: 0;
    line-height: 48px;
    position: relative;
    top: 17px;
}
.iw-header-block-4 .link-text > a {
    border: 1px solid #a7a7a7;
    border-radius: 30px;
    color: #a7a7a7;
    display: inline-block;
    font-size: 22px;
    line-height: 40px;
    padding: 5px 30px;
}
.iw-header-block-4  .social-icon {
    position: absolute;
    bottom: 25px;
    left: 25px;
}
.admin-bar .iw-header-block-4 .social-icon {
    bottom: 45px;
}
.iw-header-block-4  .social-icon ul{
    margin: 0;
}
.iw-header-block-4  .social-icon ul li{
    display: inline-block;
    list-style: none;
}
.iw-header-block-4 .social-icon ul li a{
    display: inline-block;
    padding: 0 15px;
}
.iw-header-block-4  .social-icon ul li a i{
    font-size: 18px;
    color: #a7a7a7;
}
.iw-header-block-4  .content-main .title-name-author {
    padding-bottom: 17px;
}
.iw-header-block-4  .content-main .link-text {
    left: 0;
    position: relative;
    top: 42px;
}
.iw-header-block-4  .hi {
    color: #ffffff;
    display: inline-block;

    font-size: 48px;
    line-height: 48px;
    padding-bottom: 105px;
    padding-right: 15px;
    padding-top: 95px;
}
.iw-header-block-4 form.form-input-person {
    color: rgb(161, 161, 161);
    display: inline-block;
    height: 45px;
    margin: 0 15px;
    position: relative;
    width: 410px;
}
.iw-header-block-4 form.form-input-person::after {
    background: rgb(161, 161, 161) none repeat scroll 0 0;
    bottom: -20px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    width: 410px;
}
.iw-header-block-4 form.form-input-person input {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 0 none;
    width: 100%;
}
.iw-header-block-4 .hi > a {
    color: #ffffff;
    display: inline-block;
    font-size: 18px;
    line-height: 48px;
    position: relative;
    text-transform: uppercase;
    top: -5px;
}
/*-------------- one-page person schedule  ------------*/
.iwe-schedule.iwe-schedule-person:after{
    clear: both;
    content: '';
    display: block;
}
.iwe-schedule.iwe-schedule-person .iw-content {
    float: left;
    padding-left: 30px;
    width: 50%;
}
.iwe-schedule.iwe-schedule-person.style5 .iw-content{
    float: right;
    padding-left: 30px;
}
.iwe-schedule.iwe-schedule-person .iw-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
}
.iwe-schedule.iwe-schedule-person .iw-image img {
    width: 100%;
}
.iwe-schedule.iwe-schedule-person.style5 .iw-image{
    right: auto;
    left: 0;
}
.iwe-schedule.iwe-schedule-person .iw-image .overlay-images{
    position: absolute;
    top:0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}
.iwe-schedule.iwe-schedule-person .iw-content h4 {
    color: #ffffff;

    font-size: 48px;
    font-weight: 700;
    line-height: 48px;
    margin: 0;
}
.iwe-schedule.iwe-schedule-person .iw-content .date-time > span {
    color: #ffffff;
    display: inline-block;

    font-size: 18px;
    line-height: 48px;
    padding: 12px 0 2px;
}
.iwe-schedule.iwe-schedule-person .iw-content > p {
    color: #ffffff;

    font-size: 14px;
    line-height: 30px;
    margin: 0;
    padding: 0 0 16px;
}
.iwe-schedule.iwe-schedule-person .iw-content .scheduce-wrapper{
    margin: 0;
}
.iwe-schedule.iwe-schedule-person .iw-content .scheduce-wrapper li{
    list-style: none;
}
.iwe-schedule.iwe-schedule-person .iw-content .scheduce-wrapper li span {
    color: #ffffff;
    display: inline-block;

    font-size: 14px;
    line-height: 48px;
    margin-right: 50px;
    position: relative;
    text-align: right;
    width: 135px;
}
.iwe-schedule.iwe-schedule-person .iw-content .scheduce-wrapper li span::after {
    background: #3a3a3a none repeat scroll 0 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    top: 25px;
    width: 35px;
}
.iwe-schedule.iwe-schedule-person .iw-content .scheduce-wrapper li small{
    color: #ffffff;
    display: inline-block;

    font-size: 14px;
    line-height: 48px;
    margin-right: 50px;
}
/*------------- one-page person add-on post -------------*/
.iw-posts.style5{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.iw-posts.style5 .post-item {
    margin: 0;
    padding: 0;
    position: relative;
    height: 45%;
    width: 100%;
}
.iw-posts.style5 .post-item .post-detail {
    left: 0;
    position: absolute;
    text-align: center;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    background: rgba(9,9,9,1);
    border-bottom: 1px solid #4c4c4c;
    -webkit-transition: background 0.2s linear 0s;
    transition: background 0.2s linear 0s;
    display: table;
}
.iw-posts.style5 .post-item .post-detail-inner{
    display: table-cell;
    vertical-align: middle;
}
.iw-posts.style5 .post-item .post-image{
    position: relative;
    text-align: center;
    overflow: hidden;
    height: 100%;
}
.iw-posts.style5 .post-item .post-image img{
    max-width: 100%;
    width: 100%;
    height: auto;
}
.iw-posts.style5 .post-item .post-image::after {
    background: rgba(0, 0, 0, 0.8) none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.iw-posts.style5 .post-item .post-detail .post-meta span,
.iw-posts.style5 .post-item .post-detail .post-meta a{
    color: #ffffff;
    display: inline-block;

    font-size: 18px;
    line-height: 40px;
    margin: 0 5px;
    text-transform: uppercase;
}
.iw-posts.style5 .post-item .post-detail .post-meta strong{
    color: white;
    font-size: 20px;
}
.iw-posts.style5 .post-item .post-detail .post-title > a {
    display: inline-block;

    font-size: 36px;
    line-height: 40px;
    padding: 10px 0 22px;
}
.iw-posts.style5 .post-item .post-detail .post-desc > p {
    color: #ffffff;

    font-size: 14px;
    line-height: 30px;
    margin: 0 auto;
    max-width: 770px;
}
.iw-posts.style5 .post-item .post-detail .read-more {
    display: inline-block;

    font-size: 18px;
    line-height: 48px;
    margin-top: 6px;
}
.iw-posts.style5 .post-item:hover .post-detail{
    background: transparent;
}
.iw-posts.style5 .load-more {
    background: rgb(9, 9, 9) none repeat scroll 0 0;
    text-align: center;
    height: 10%;
    width: 100%;
    position: relative;
}

.iw-posts.style5 .load-more a{
    color: rgb(255, 255, 255);
    font-size: 18px;
    line-height: 40px;
    position: absolute;
    top: 50%;
    margin-top: -20px;
}

/** contact form */
.iw-leave-message {
    font-size:24px;
    color:#313131;
    text-transform: capitalize;
    margin-bottom: 10px !important;
}
.iw-contact{
    position:relative;
}
.iw-contact-us input,.iw-contact-us textarea {
    border:1px solid #f1f1f1;
    padding: 15px;
    text-indent: 15px;
    width: 100%;
    margin: 10px 0;
    color: #969595;
    font-size: 14px;
}

.iw-contact-us .form-message.error, .iw-contact-underline .form-message.error {
    color:red;
}
.iw-contact-us.widget .form-group {
    width:100%;
}
.iw-contact-us.widget input,.iw-contact-us.widget textarea {
    text-indent: 6px;
}
.iw-contact-us.widget textarea {
    height:150px;
}
.iw-contact-us.widget .btn-submit {
    margin-top:0;
    text-align: left;
}
.iw-contact-us.widget .btn-submit:before {
    content:'\f1d8';
    font-family: fontawesome;
    margin: 0 10px;
}
.iw-contact-us .form-submit {
    float: none;
}
.iw-contact-us .btn-submit{
    color:#fff;
    text-align: center;
    border:none;
    padding:10px 30px;
    font-size: 13px;
    margin-top: 5px;
}
.iw-contact-us .btn-cancel{
    background:#4f4f4f;
}
.iw-contact-underline input::-moz-placeholder, .iw-contact-underline textarea::-moz-placeholder {
    color: #ffffff;
    opacity: 1;
}
.iw-contact-underline input::-webkit-input-placeholder, .iw-contact-underline textarea::-webkit-input-placeholder {
    color: #ffffff;
    opacity: 1;
}
.iw-contact-underline {
    text-align: center;
}
.iw-contact-underline .form-group.iw-display {
    position: relative;
    margin-bottom: 55px;
    text-align: center;
    display: inline-block;
}
.iw-contact-underline input, .iw-contact-underline textarea {
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 1px rgba(0,0,0,0.1) solid;
    background: none;
    box-shadow: none;
    -webkit-box-shadow: none;
    padding: 0 15px 9px 110px !important;
    width: 100%;
    color: #ffffff;
    font-size: 13px;
    height: 34px !important;
    text-transform: uppercase;
}
.iw-contact-underline .iw-textarea-form {
    float: none;
}
.iw-contact-underline .iw-textarea-form textarea {
    resize: none;
    padding: 0 15px 9px 130px !important;
    line-height: 25px;
    overflow: hidden;
    text-transform: none;
}
.iw-contact-underline label {
    color: #ffffff;
    border-bottom: 1px #ffffff solid;
    font-size: 13px;
    text-transform: uppercase;
    position: absolute;
    padding-bottom: 9px;
    font-weight: 400;
    margin: 0;
    min-width: 95px;
    display: block;
    text-align: left;
}
.iw-contact-underline .iw-textarea-form label {
    min-width: 125px;
}
.iw-contact-underline .form-submit {
    margin: 95px 0 80px;
    float: none;
}
.iw-contact-underline .btn-submit {
    color: #ffffff;
    border: 2px #ffffff solid;
    background: none;
    font-size: 18px;
    font-weight: 700;
    padding: 7px 35px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    text-transform: uppercase;
}
.iw-contact-underline .btn-submit:hover {
    background: #ffffff;
}
/* contact address */
.iw-contact-address .title_contact_form {
    font-size: 30px;
    text-transform: uppercase;
    position: relative;
    margin-bottom: 15px;
    line-height: 40px;
	z-index:2;
}
.iw-contact-address .title_contact_form span{
	background:#fff;
	padding-right:25px;
}
.iw-contact-address .title_contact_form:after {
    content: "";
    position: absolute;
    border-top: 3px #e7e7e7 solid;
    left: 0;
    top: calc(50% - 1px);
    width: 100%;
	z-index:-1;
}
.iw-contact-address.iw-contact-us input, .iw-contact-us textarea {
    padding: 10px;
    color: #838383;
}
.iw-contact.iw-contact-address input::-webkit-input-placeholder, .iw-contact.iw-contact-address textarea::-webkit-input-placeholder {
    opacity: 1;
}
.iw-contact.iw-contact-address input::-moz-placeholder, .iw-contact.iw-contact-address textarea::-moz-placeholder {
    opacity: 1;
}
.iw-contact-address.iw-contact-us .btn-submit {
    text-transform: uppercase;
    font-size: 16px;
	margin-right:15px;
}
.iw-contact-address-right .iw-address {
    background: #fbfbfb;
    padding: 20px 0;
    border-top: 1px #e7e7e7 solid;
    border-left: 1px #e7e7e7 solid;
    border-right: 1px #e7e7e7 solid;
    border-bottom: none;
}
.iw-contact-address-right .iw-address:last-child {
    border-bottom: 1px #e7e7e7 solid;
}
.iw-contact-address-right .iw-address .icon {
    float: left;
    width: 110px;
    text-align: center;
    font-size: 30px;
}
.iw-contact-address-right .iw-address .text-address {
	margin-left:110px;
	padding: 0 15px;
    border-left: 1px #e7e7e7 solid;
	font-size:12px;
}
.iw-contact-address-right .iw-address .text-address .title {
    font-size: 16px;
	color:#232323;
}
/* contact sign up */
.iw-contact.iw-contact-sign-up input {
    width: 100%;
    border: none;
    background: rgba(0,0,0,0.1);
    padding: 5px 20px;
    color: #ffffff;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    box-shadow: none;
}
.iw-contact.iw-contact-sign-up input::-webkit-input-placeholder {
    opacity: 1;
}
.iw-contact.iw-contact-sign-up input::-moz-placeholder {
    opacity: 1;
}
.iw-contact.iw-contact-sign-up .btn-submit {
    -webkit-border-radius: 20px;
    border-radius: 20px;
    border: 2px #ffffff solid;
    background: none;
    width: 100%;
    text-transform: uppercase;
    color: #ffffff;
    padding: 4px 10px;
}
.iw-contact.iw-contact-sign-up .btn-submit:hover {
    background: #ffffff;
}
.iw-news-letter > div {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 10px;
}
.iw-news-letter > div span {
    font-weight: 300;
}
.iw-news-letter span.enter-email {
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 15px;
    display: block;
}
.skillbar{
    margin-top:30px;
}

.skill-bar-bg{
    height:11px;
    position:relative;
    background:#ececec;
}
.skillbar_level{
    position:absolute;
    left:0;
    top:0;
    height:11px;
    background:#49a32b;
}
.skillbar_callout{
    position:absolute;
    width:38px;
    margin-left:-3px;
    height:21px;
    line-height:21px;
    color:#fff;
    text-align:center;
    font-size:10px;
    top:-31px;
    background:#49a32b;
	border-radius:3px;
}
.skillbar_callout:before{
    border-bottom: 7px solid transparent;
    border-left: 7px solid #49a32b;
    border-top: 7px solid transparent;
    bottom: -7px;
    content: "";
    left: 0;
    position: absolute;
}
.skillbar, .skillbar_level{
}

.style2 .skillbar{
    height:17px;
    border-radius:50px;
    border:1px solid #e0e0e0;
    padding:2px;
    background:#fff;
}
.style2 .skillbar_level {
    background-image: url("../images/bg-skillbar2.png");
    background-repeat:repeat-x;
    background-position:left center;
    border-radius: 50px;
    height: 11px;
    left: 0;
    position: relative;
    top: 0;
}
.style2.skillbar_wap{
    margin-top:0;
}



/*======END PROFILE BOX STYLE 1 =======*/
/*=== PROFILE BOX STYLE 2 ===*/
.iw-member-slider-block.iw-slider-block {
    overflow: visible;
    position: relative;
    z-index: 9;
}
.iw-member-slider-block.iw-slider-block .owl-theme .owl-controls {
    position: absolute;
    top: calc(50% - 20px);
    width: 100%;
    z-index: 99;
    margin: 0;
}
.iw-member-slider-block.iw-slider-block .owl-theme .owl-controls .owl-buttons div {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 2px solid #7f7f7f;
    border-radius: 50%;
    font-size: 0;
    height: 36px;
    width: 36px;
}
.iw-member-slider-block.iw-slider-block .owl-theme .owl-controls .owl-buttons .owl-next {
    position: absolute;
    right: -40px;
}
.iw-member-slider-block.iw-slider-block .owl-theme .owl-controls .owl-buttons .owl-prev {
    position: absolute;
    left: -40px;
}
.iw-member-slider-block.iw-slider-block .owl-theme .owl-controls .owl-buttons div:after {
    color: #7f7f7f;
}
.iw-member-slider-block.iw-slider-block .owl-theme .owl-controls .owl-buttons div.owl-next:after {
    content: "\f105";
    font-family: FontAwesome;
    font-size: 26px;
    position: relative;
    right: -2px;
}
.iw-member-slider-block.iw-slider-block .owl-theme .owl-controls .owl-buttons div.owl-prev:after {
    content: "\f104";
    font-family: FontAwesome;
    font-size: 26px;
    left: -2px;
    position: relative;
}
/*=== PROFILE BOX STYLE 3 ===*/

.member-box.style1 .member-info .name{
    font-size:24px;
    font-weight:bold;
    text-transform:uppercase;
    margin-bottom:2px;
    margin-top:20px;
}
.member-box.style1 .member-info .position{
    font-size:14px;
    text-transform:uppercase;
    margin-bottom: 20px;
}
.member-box.style1 .member-info .desription{
    color: #969595;
    margin-top:18px;
}
.member-box.style1 .member-info .member-socials{
    border-top:1px solid #f1f1f1;
    padding-top:20px;
    margin-top:30px;
}
.member-box.style1 .member-info .member-socials a{
    display:inline-block;
    height:33px;
    width:33px;
    line-height:33px;
    text-align:center;
    color:#dadada;
    background:#f9f9f9;
    margin:0 5px 0 0;
    font-size:14px;
}
.member-box.style1 .member-info a:hover{
    color:#fff;
}

.wpb_content_element.compare-plan{
    color: #fff;
    font-size: 21px;
    font-weight: 200;
    line-height: 150%;
    padding: 40px 0;
}
.wpb_content_element.compare-plan .ibutton {
    border: 2px solid #fff;
    border-radius: 22px;
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    margin-left: 5px;
    margin-top: -4px;
    padding: 0 25px;
}

.bg-dark{
    background-color:#252525;
}

.pricebox.style6{
    margin:0;
    padding:9px 10px;
    text-align:left;
    background:#f3f3f3;
}
.pricebox.style6 + .pricebox.style6{
    border-top:1px solid #e9e9e9;
}
.pricebox.style6 .pricebox-title{
    text-transform:none;
    font-weight:bold;
    font-size:14px;
    color:#838383;
    margin:0;
    float:left;
    line-height:25px;
    padding:6px 0;
}
.pricebox.style6 .pricebox-purchased-link{
    float:right;
}
.pricebox.style6 .pricebox-purchased-link a{
    height:37px;
    line-height:37px;
    color:#fff;
    background:#d0d0d0;
    border-radius:2px;
    padding:0 16px;
    font-weight:bold;
    text-transform:uppercase;
    font-size:16px;
    display:inline-block;
    margin:0;
}
.pricebox.style6 .pricebox-body:before{
    content: "\f096";
    margin-right:10px;
    font-size:18px;
    line-height:37px;
    color:#b1b1b1;
    width:17px;
    float:left;
    font-family: "FontAwesome";
}
.pricebox.style6:hover .pricebox-body:before{
    content: "\f14a";
    color:#49a32b;
}
.pricebox.style6:hover{
    background:#fff;
}
.pricebox.style6:hover .pricebox-purchased-link a{
    background:#49a32b;
}


/* Home page*/

/***
* About Us shortcode
*/
.iw-our-missions:after {
    border-left: 15px solid rgba(0, 0, 0, 0);
    border-right: 15px solid rgba(0, 0, 0, 0);
    content: "";
    left: calc(50% - 15px);
    position: absolute;
    top: 100%;
    z-index: 5;
}
.iw-our-missions {
    color: #ffffff;
    font-size: 24px;
    text-transform: uppercase;
    cursor: pointer;
    margin: 0 auto !important;
    text-align: center;
}
.iw-our-missions .title {
    position: relative;
    top: 5px;
}
.iw-our-missions .fa-angle-down {
    font-size: 30px;
    position: relative;
    bottom: -15px;
    z-index: 9;
    line-height: 1px;
}
.iw-our-missions.v1 .title {
    display: none;
}
.iw-price-list .price-item {
    width: 45px;
    height: 45px;
    line-height: 45px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: rgba(0,0,0,0.35);
    display: inline-block;
    margin-right: 10px;
    cursor: pointer;
    margin-bottom: 20px;
    text-align: center;
}
.iw-price-list .price-item:hover {
    background: #ffffff;
}
.iw-price-list .price-item.selected {
    background: url("../images/price-selected.png") no-repeat;
    background-size: cover;
}
.iw-price-list .price-item.selected span {
    opacity: 0;
}
.iw-price-list .donate-input {
    display: inline-block;
    position: relative;
}
.iw-price-list .donate-input span {
    position: absolute;
    top: 10px;
    left: 20px;
}
.iw-price-list input {
    width: 90px;
    height: 45px;
    border: none;
    box-shadow: none;
    background: rgba(0,0,0,0.35);
    -webkit-border-radius: 2px;
    border-radius: 2px;
    padding: 10px 10px 10px 20px;
    margin-left: 10px;
    margin-bottom: 20px;
}
/* video */
.iw-shortcode-video.iw-video {
    overflow: hidden;
}
.iw-shortcode-video.iw-video.style1 .play-button {
    width: 90px;
    height: 90px;
    line-height: 105px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    border: 2px #ffffff solid;
    text-align: center;
}
.iw-shortcode-video.iw-video.style2 {
    margin-top: 5px;
}
.iw-shortcode-video.iw-video.style1 .play-button i {
    color: #ffffff;
    margin-left: 10px;
}
/* Meet Our Team */
.style4.member-box {
    color: #ffffff;
}
.style4.member-box .member-image {
    width: 205px;
    height: 175px;
    margin: 0 auto;
    background-image: url("../images/bg-author.png");
    background-size: cover;
    padding: 15px 30px;
}
.style4.member-box .member-image img {
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -webkit-transition: box-shadow 0.4s;
    transition: box-shadow 0.4s;
}
.style4.member-box:hover .member-image img {
    -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
}
.style4 .member-info-wrap {
    margin: 0 auto;
}
.style4 .member-info-wrap .name {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase
}
.style4 .member-info-wrap .social-links i {
    color: #ffffff;
    font-size: 14px;
    margin: 20px 10px;
}
.client-images p, .client-images p:last-child {
    background: rgba(255, 255, 255, 0.2) none repeat scroll 0 0;
    display: inline-block;
    margin: 0 15px 30px !important;
    width: 270px;
    height: 90px;
    line-height: 90px;
    text-align: center;
}

.client-images p a {
    background: none;
    margin: 0;
    width: 100%;
}
/* inwave slider*/
.iw-slider{
}

/* ---------- iw sponsors ---------- */
.iw-sponsors-list.style1 {
    margin: 0 !important;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    text-align: center;
}
.iw-sponsors-list.style1 .owl-item {
    border-right: 1px solid #e0e0e0;
    padding: 100px 0;
}
.iw-sponsors-list.style1 .owl-item .iw-sponsors-item img {
    transition: filter 0.3s ease-in-out 0s;
    -webkit-filter: brightness(50%);
    filter: brightness(50%);
}
.iw-sponsors-list.style1 .owl-item:hover .iw-sponsors-item img {
    -webkit-filter: brightness(100%);
    filter: brightness(100%);
}
.iw-sponsors-list.style1 .owl-controls {
    margin: 0 !important;
    position: absolute;
    top: calc(50% - 20px);
    width: 100%;
    z-index: 9;
}
.iw-sponsors-list.style1 .owl-controls .owl-buttons div.owl-prev {
    left: -80px;
    position: absolute;
    opacity: 1;
    background: none;
}
.iw-sponsors-list.style1 .owl-controls .owl-buttons div.owl-next {
    right: -80px;
    position: absolute;
    opacity: 1;
    background: none;
}
.iw-sponsors-list.style1 .owl-controls .owl-buttons div.owl-prev:after {
    color: #9c9b9b;
    content: "?";
    font-family: FontAwesome;
    font-size: 40px;
    position: relative;
    font-weight: 700;
}
.iw-sponsors-list.style1 .owl-controls .owl-buttons div.owl-next:after {
    color: #9c9b9b;
    content: "?";
    font-family: FontAwesome;
    font-size: 40px;
    position: relative;
    font-weight: 700;
}

/* Map */
.iw-map > div {
    padding: 0;
}

/* Filter Bar List Event */
.infunding-listing-page{
    margin-bottom: 50px;
}
.infunding-listing-page .filter-item {
    padding: 15px;
    background: #f0f0f0;
}
.infunding-listing-page .iw-filter-style {
    float: left;
    padding: 4px 0 0;
}
.infunding-listing-page .iw-filter-style div {
    display: none;
    width: 25px;
    height: 25px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background: #969696;
    text-align: center;
    line-height: 25px;
    font-size: 14px;
    color: #ffffff;
    margin-right: 5px;
}
.infunding-listing-page .filter-item .filter-form {
    float: right;
}
.select2-container{
    max-width:100%;
}
.widget .select2-container{
    width:100%;
    margin:15px;
    max-width:calc(100% - 30px);
}
.infunding-listing-page .filter-form .select2-container{
    margin: 0 0 0 10px;
}
.infunding-listing-page .filter-form  .select2-container--default .select2-selection--single{
    height:35px;
    line-height:33px;
}
.infunding-listing-page .filter-form .select2-container--default .select2-selection--single .select2-selection__rendered{
    line-height:33px;
}
.infunding-listing-page .filter-form .select2-container--default .select2-selection--single .select2-selection__arrow{
    height: 25px;
    width: 31px;
    margin: 5px 0;
    border-left: 1px #e1e1e1 solid;
}

.infunding-listing-page .filter-item form{
    position: relative;
}
.infunding-listing-page .filter-item form input{
    background-color: rgb(250, 250, 250);
    border: 1px solid rgb(230, 230, 230);
    display: inline-block;
    height: 35px;
    padding: 0 15px;
    width: 233px;
    margin: 0;
    position: relative;
    top: 1px;
}
.infunding-listing-page  .filter-item form select{
    background-color: rgb(250, 250, 250);
    border: 1px solid rgb(230, 230, 230);
    display: inline-block;
    height: 35px;
    padding-left: 15px;
    margin-left: 15px;
    width: 233px;
}
.infunding-listing-page .filter-item form select option {
    padding: 0 15px;
    text-transform: uppercase;
}
.infunding-listing-page  .filter-form button {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 0 none;
}
.infunding-listing-page  .filter-form button i{
    font-size: 16px;
    color: #c6c6c6;
}

.infunding-listing-page  .filter-form .order-dir {
    cursor: pointer;
    font-size: 20px;
    margin-left: 5px;
	position:relative;
	top: 3px;
}
.infunding-listing-page .image img {
    width: 100%;
}

/* Event Facts */
.iw-event-facts {
    position: relative;
    overflow: hidden;
}
.iw-event-facts .iw-video {
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    overflow: hidden;
}
.iw-event-facts .iw-video .iw-video-player {
    z-index: 0;
    bottom: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.iw-event-facts .iw-video .play-button {
    top: 34%;
}
.iw-event-facts .row, .iw-event-facts .row .container, .iw-event-facts .row .iw-event-fact-item {
    height: 100%;
}
.event-facts-inner {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.iw-event-facts .event-fact-inner {
    position: absolute;
    text-align: center;
    z-index: 99;
    width: 100%;
    left: 0;
    right: 0;
}
.iw-event-facts  .event-fact-info {
    left: 45%;
    position: relative;
    text-align: left;
}
.iw-event-fact-item .event-fact-title {
    font-size: 30px;
    color: #ffffff;
}
.iw-event-fact-item .event-fact-desc {
    font-size: 14px;
    position: relative;
    margin-bottom: 155px;
    color: #ffffff;
}
.iw-event-fact-item .event-fact-desc:before {
    content: "";
    border: 2px solid #878887;
    width: 65px;
	position:absolute;
	left:0;
    top: 22px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
}
.iw-event-fact-item .dotted-line {
    background: rgba(0, 0, 0, 0) url("../images/dotted-line.png") repeat-y;
    content: "";
    height: 126px;
    left: 50%;
    overflow: hidden;
    position: absolute;
    top: 65px;
    width: 100%;

}
.icon-facts i {
    width: 45px;
    height: 45px;
    line-height: 45px;
    background: #ffffff;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}
.iw-event-facts .bg-svg {
    bottom: -10px;
    position: absolute;
    width: 100%;
}
.iw-event-facts svg{
	width:100%;
	height:140px;
}
.iw-event-facts .container{
	width:100%;
}
.iw-event-facts .fill-color1{
	opacity:0.5;
}

.iw-event-facts2 .iw-event-fact-item .event-fact-desc{
	margin:0;
}
.iw-event-facts2 .iw-event-fact-item .event-fact-desc:before{
	border:1px solid #fff;
	border-radius:0;
	width:72px;
}
.iw-event-facts2 .iw-event-fact-item{
	padding-bottom:30px;
}
.iw-event-facts2 .text_intro{
	max-width: 900px;
	margin:0 auto;
	font-size: 26px;
	color:#fff;
}
/* Event Listing */
.featured-events .block-title{
    padding: 25px 0;
    text-align:left;
}
.featured-events .block-title h3{
    color:#fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 24px;
    margin: 0;
}
.featured-events .content-row1, .featured-events .content-row1 a{
    color:#fff;
}
.featured-events .content-row1 h2 a {
    font-size: 48px;
    font-weight: 600;
}
.featured-events-title{
    position:relative;
}
.featured-events-title:before{
    position:absolute;
    content:'';
    border-bottom:1px solid rgba(255,255,255,0.2);
    left:0;
    bottom:0;
    width:100%;
}
.featured-events .schedule-box{
    display:table;
    width:100%;
}
.featured-events .num-box{
    color:#fff;
}
.featured-events .owl-item{
    overflow:hidden;
}
.featured-title {
    padding: 50px 0 65px;
    min-height:360px;
}
.featured-num .number {
    bottom: -110px;
    font-size: 400px;
    font-weight: 900;
    line-height: 62%;
    padding-right: 55px;
    position: relative;
}
.featured-events .featured-content .featured-image {
    position: relative;
}
.featured-events .featured-content .featured-image img {
    position: absolute;
    top: 75px;
    border: 4px solid #fff;
    width: 100%;
}
.featured-content > h1 {
    font-size: 48px;
    margin: 0 0 15px;
}
.featured-content .event-details {
    padding-bottom: 30px;
    text-align: left;
}
.featured-content .event-details ul {
    margin: 0;
}
.featured-content .event-details li {
    border-right: medium none;
    padding: 0 10px 0 0;
    display: inline-block;
}
.featured-content .event-details li a {
    font-size: 14px;
}
.featured-content .event-details li a:hover {
    color:#fff;
}
.featured-content .event-details li a i {
    margin-right: 10px;
}

.featured-desc {
    font-size: 14px;
}
.content-row2 .featured-image {
    margin-top: -135px;
}
.featured-schedule:first-child{
    padding-top:50px;
}
.schedule-box {
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 30px;
    padding-bottom: 25px;
}

.num-box p {
    border-radius: 50%;
    display: inline-block;
    float: left;
    font-size: 18px;
    font-weight: 300;
    height: 48px;
    line-height: 48px;
    text-align: center;
    width: 48px;
}
.desc-box {
    margin-left: 68px;
}
.desc-box a{
    color:#232323;
    font-size:18px;
}
.desc-box p{
    color:#838383;
    padding-top:15px;
}
.iwevent_carousel .featured-content {
    margin-bottom: 55px;
}
.featured-content .join-us a {
    border: 2px solid #e5e5e5;
    color: #232323;
    font-size: 14px;
    padding: 6px 25px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
}
.featured-content .join-us a:hover {
    color: #fff;
}
.iwevent-info .iwevent-times > span{
    display:inline-block;
}

.featured-events-content .custom-controls .owl-controls {
    position: absolute;
    top: -68px;
}
.custom-controls.owl-theme .owl-controls .owl-page span.owl-numbers {
    background: none;
    font-size: 14px;
    font-weight: bold;
    opacity: 1;
    width: 30px;
    height: 30px;
    padding: 0;
    margin:2px;
    border-radius: 50%;
    line-height: 30px;
}
.custom-controls.owl-theme .owl-controls .owl-page.active span.owl-numbers {
    border:2px solid #fff;
}
/* Event Carousel Grid */
.iw-events-content .owl-item .events-content-wrap {
    margin: 0 15px;
}
.iw-events-content .img-wrap img {
    width: 100%;
}
.iw-events-content .events-content-wrap .img-wrap {
    position: relative;
}
.iw-events-content .events-content-wrap .img-wrap .iw-icon-action {
    position: absolute;
    text-align: center;
    top: calc(50% - 20px);
    width: 100%;
    z-index: 9;
}
.iwevent-listing.iwevent_carousel_grid{
    margin-left: -15px;
    margin-right: -15px;
}
.iwevents-carousel-grid .events-content-wrap .info-wrap {
    color: #ffffff;
}
.iw-events-content .events-content-wrap .img-wrap .iw-icon-action a {
    width: 50px;
    height: 50px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    color: #ffffff;
    display: inline-block;
    line-height: 50px;
    font-size: 18px;
}
.iw-events-content .events-content-wrap .img-wrap .iw-icon-action .icon-detail a {
    opacity: 0;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    -webkit-transition: opacity 0.3s ease 0s, transform 0.3s ease 0s;
    transition: opacity 0.3s ease 0s, transform 0.3s ease 0s;
}
.iw-events-content .events-content-wrap:hover .img-wrap .iw-icon-action .icon-detail a {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
}
.event-price-status {
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 55px;
}
.iw-events-grid .img-wrap .event-status {
    position: absolute;
    bottom: 18px;
    left: 25px;
	z-index:9;
}
.event-status .status-ticket {
    width: 30px;
    height: 30px;
    line-height: 30px;
    -webkit-border-radius: 100%;
    border-radius: 100%;
    background-color: #dd113d;
    display: none;
    float: left;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 5px 0 0;
    text-align: center;
}
.event-status .status-ticket i {
    margin: 0;
    font-size: 20px;
    color: #ffffff;
    height: auto;
    line-height: 1;
    width: auto;
}
.event-status .status-ticket.featured {
    background-image: url("../images/status-featured.png");
}
.event-status .status-ticket.hot {
    background-image: url("../images/status-hot.png");
}
.event-status .status-event {
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    color: #ffffff;
    padding: 0 12px;
    display: none;
    text-transform: capitalize;
    -webkit-border-radius: 40px;
    border-radius: 40px;
    float: left;
    margin: 0 5px 0 0;
}
.event-status .status-event.upcoming {
    background: #1fa709;
	display: none;
}
.event-status .status-event.incoming {
    background: #dd113d;
}
.event-status .status-event.expired {
    background: #454545;
	display: none;
}
.iw-events-content .events-content-wrap .img-wrap:after {
    background: #0068ae;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    width: 100%;
    -webkit-transition: opacity 0.2s linear 0s;
    transition: opacity 0.5s linear 0s;
}
.iw-events-content .events-content-wrap:hover .img-wrap:after {
    opacity: 0.5;
}
.iw-events-content .info-wrap {
    padding: 11px;
}
.iw-events-content .info-wrap h3.event-title {
    margin: -6px 0 5px;
	text-transform: uppercase;
	text-align: center;
	font-weight: bold;
}
.iwevents-carousel-grid .iw-events-content .events-content-wrap .info-wrap h3.event-title a {
    font-size: 18px;
    color: #ffffff;
	font-weight: bold;
}
.iw-events-content .info-wrap .event-details .date {
    float: left;
    text-transform: capitalize;
    line-height: 1;
    margin-right: 10px;
    text-align: center;
	font-family: lato;

}
.events-content-wrap .info-wrap .date .day {
    font-size: 18px;
    margin-bottom: 5px;
	font-weight: bold;
}
.events-content-wrap:hover .info-wrap .date .day.theme-color {
    color: #ffffff !important;
}
.events-content-wrap .info-wrap .date .month {
    font-size: 14px;
	margin-bottom:3px;
	font-weight: bold;
	font-family: lato;

}
.iw-events-content .info-wrap .event-details ul {
    margin: 0;
}
.iwevents-carousel-grid .iw-events-content .info-wrap .event-details .address {
    padding-left: 10px;
    border-left: 1px #ffffff solid;
}
.iw-events-content .info-wrap .event-details .address li {
    list-style: none;
    text-transform: capitalize;
    font-size: 12px;
    font-weight: 500;
    width: 100%;
    display: block;
    margin-right: 20px;
}
.iw-events-content .info-wrap .event-details li i {
    margin-right: 10px;
}
.iw-events-content .info-wrap .event-details .address {
    overflow: hidden;
}
.iwevents-carousel-grid.iw-events-grid .iw-events-content .info-wrap .event-details li a {
    color: #ffffff;
}
.iwevents-carousel-grid .iw-events-content .info-wrap .event-details li a {
    font-size: 12px;
}
.iw-events-content .custom-controls .owl-controls {
    position: absolute;
    right: 15px;
    top: -95px;
}
.iw-events-content .owl-theme .owl-controls .owl-buttons div {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 2px solid #7f7f7f;
    border-radius: 50%;
    height: 36px;
    width: 36px;
    font-size: 0;
    line-height: 24px;
}
.iw-events-content .owl-theme .owl-controls .owl-buttons div:after {
    color: #7f7f7f;
    font-family: FontAwesome;
    font-size: 26px;
    position: relative;
}
.iw-events-content .owl-theme .owl-controls .owl-buttons div.owl-next:after {
    content: "\f105";
    right: -2px;
}
.iw-events-content .owl-theme .owl-controls .owl-buttons div.owl-prev:after {
    content: "\f104";
    left: -2px;
}
/* Event List Grid */
.iw-events-grid .img-wrap {
    overflow: hidden;
}
.iw-events-grid .img-wrap img {
    -webkit-transition: transform 0.3s ease 0s;
    transition: transform 0.3s ease 0s;
}
.iw-events-grid .events-content-wrap:hover .img-wrap img {
    -webkit-transform: scale(1.12);
    transform: scale(1.12);
}
.iw-events-grid .iw-events-content .info-wrap .event-details .address {
    margin-left: 11px;
    padding-left: 13px;
    border-left: 1px rgba(255,255,255,0.3) solid;
}
.iw-events-grid .iw-events-content .events-content-wrap .iw-item-info {
    margin-top: 30px;
}
.iw-events-grid .iw-events-content .events-content-wrap {
    -webkit-transition: background 0.2s linear 0s;
    transition: background 0.2s linear 0s;
    background: white;
}
.iw-events-grid .iw-events-content .events-content-wrap:hover {
    box-shadow: 0 0 4px 4px rgba(0, 0, 0, 0.15);
}
.iw-events-grid .iw-events-content .info-wrap h3.event-title a,
.iw-events-grid .iw-events-content .info-wrap .event-details li a {
    color: black;
	font-family: lato;

}
.iw-events-grid .iw-events-content .events-content-wrap:hover .info-wrap h3.event-title a,
.iw-events-grid .iw-events-content .events-content-wrap:hover .info-wrap .event-details li a,
.iw-events-grid .events-content-wrap:hover .info-wrap {
    color: #ffffff;
	font-family: lato;

}
/* Event List View */
.iw-events-list-view .events-content-wrap .info-wrap .date span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 15px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    display: inline-block;
}
.iw-events-list-view .events-content-wrap .address ul {
    margin: 0;
}

.iw-events-list-view .event-price-status {
    position: absolute;
    left: auto;
    right: 0;
    top: 0;
    width: 52px;
    height: 55px;
}
.iw-events-list-view .events-content-wrap {
    padding: 25px 35px 30px 0;
    background: #f2f2f2;
    margin-top: 40px;
    position: relative;
	font-family: lato;

}
.iw-events-list-view .events-content-wrap:hover {
    -webkit-border-radius: 4px;
    border-radius: 4px;
    box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.15);
}
.iw-events-list-view .events-content-wrap .info-wrap .date {
    line-height: 1;
    text-align: left;
    margin-bottom: 20px;
}
.iw-events-list-view .events-content-wrap .info-wrap .date .day {
    font-size: 48px;
    font-weight: 500;
	font-family: lato;

}
.iw-events-list-view .events-content-wrap .info-wrap .date .month {
    font-size: 23px;
	font-family: lato;

}
.iw-events-list-view .events-content-wrap .event-details {
    padding: 0 322px 0 25px;
    position: relative;
}
.iw-events-list-view .events-content-wrap h3 {
    font-size: 30px;
    margin-top: 0;
    margin-bottom: 5px;
}
.iw-events-list-view .events-content-wrap .address li {
    display: inline-block;
    font-size: 12px;
    list-style: none;
    margin-right: 20px;
}
.iw-events-list-view .events-content-wrap .address li i {
    margin-right: 5px;
}
.iw-events-list-view .events-content-wrap .address li a {
    color: #838383;
}
.iw-events-list-view .events-content-wrap .featured-des {
    font-size: 14px;
    margin-top: 20px;
}
.iw-events-list-view .events-content-wrap .event-status {
    margin-top: 20px;
}
.iw-events-list-view .events-content-wrap .img-wrap {
    position: absolute;
    top: 15px;
    right: 0;
}
.iw-events-list-view .events-content-wrap .img-wrap img {
    width: 100%;
}
/* pagination event */
.load-campaigns .post-pagination {
    text-align: center;
    margin: 60px 0 55px;
}
.infunding-listing-page  .load-campaigns .post-pagination {
    text-align: left;
    margin: 55px 0 55px;
}
.iwevent-detail .main-content .iwe-sideshow img {
    width: 100%;
}
/* events timeline */
.iw-events-timeline {
    padding-bottom: 90px;
}
.iw-events-timeline .title_timeline {
    text-align: center;
}
.iw-events-timeline .title_timeline span {
    color: #ffffff;
    font-size: 18px;
    text-transform: uppercase;
    display: inline-block;
    padding: 5px 32px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
}
.iw-events-timeline {
    position: relative;
    z-index: 0;
}
.iw-events-timeline:after {
    content: "";
    background: url("../images/bg-line.jpg") repeat-y;
    position: absolute;
    height: 100%;
    width: 4px;
    top: 10px;
    left: 50%;
    z-index: -1;
}
.iw-events-timeline .events-timeline.style1 .iw-event-info {
    padding: 0 40px 0 0;
    position: relative;
    margin-top: 70px;
}
.iw-events-timeline .events-timeline .iw-event-info .location {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.iw-events-timeline .events-timeline .iw-event-info .title {
    font-size: 36px;
    margin-bottom: 15px;
    display: inline-block;
    line-height: 36px;
}
.iw-events-timeline .events-timeline .iw-event-info .description {
    margin-bottom: 15px;
    font-size: 14px;
}
.iw-events-timeline .events-timeline .iw-event-info .info-detail {
    font-size: 16px;
    text-transform: capitalize;
    margin-bottom: 15px;
}
.iw-events-timeline .events-timeline .iw-event-info .info-detail > div {
    display: inline-block;
}
.iw-events-timeline .events-timeline .iw-event-info .info-detail .icon {
    display: inline-block;
    width: 25px;
    height: 25px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    color: #ffffff;
    font-size: 14px;
    text-align: center;
    line-height: 25px;
}
.iw-events-timeline .events-timeline.style1 .iw-event-info .info-detail .icon {
    margin-left: 10px;
}
.iw-events-timeline .events-timeline .iw-event-info .yeah {
    font-size: 15px;
    padding: 2px 15px;
    color: #ffffff;
    position: absolute;
    top: calc(50% - 14px);
    z-index: 9;
    -webkit-border-radius: 20px;
    border-radius: 20px;
}
.iw-events-timeline .events-timeline.style1 .iw-event-info .yeah {
    right: -48px;
}
.iw-events-timeline .events-timeline.style1 .video-image {
    padding: 70px 0 0 40px;
}
.iw-events-timeline .events-timeline .video-image .play-button {
    font-size: 25px;
    color: #000000;
    background: #ffffff;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}
.iw-events-timeline .events-timeline .video-image .play-button i {
    margin-left: 5px;
}
.iw-events-timeline .events-timeline.style2 .bg-line {
    float: right;
}
.iw-events-timeline .events-timeline.style2 .iw-event-info {
    padding: 0 0 0 40px;
    position: relative;
    margin: 70px 0 0;
}
.iw-events-timeline .events-timeline.style2 .iw-event-info .info-detail .icon {
    margin-right: 10px;
}
.iw-events-timeline .events-timeline.style2 .iw-event-info .yeah {
    left: -45px;
}
.iw-events-timeline .events-timeline.style2 .video-image {
    padding: 70px 40px 0 0;
}
/* schedule tab */
.iwe-schedules-tab {
    position: relative;
}
.iwe-schedules-tab .iw-tabs .iw-tab-items {
    width: 100%;
    position: relative;
    border: none;
}
.iwe-schedules-tab .iw-tabs .iw-tab-items .overlay {
    background: rgba(0, 0, 0, 0.81);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
}
.iwe-schedules-tab .iw-tabs .iw-tab-content {
    width: 100%;
    padding: 0;
    margin-bottom: 90px;
}
.iwe-schedules-tab .iw-tabs .iw-tab-content .iw-tab-item-content {
    position: relative;
    opacity: 1;
    width: 100%;
}
.iwe-schedules-tab .iw-tabs {
    border: none;
}
.iwe-schedules-tab .iw-tabs .iw-tab-items .iw-tab-item {
    color: #ffffff;
    background: none !important;
    padding: 36px 20px;
    border: none;
}
.iwe-schedules-tab .iw-tabs .iw-tab-items .iw-tab-item:hover, .iwe-schedules-tab .iw-tabs .iw-tab-items .iw-tab-item.active {
    color: #ffffff;
    opacity: 1;
    z-index: 5;
}
.iwe-schedules-tab .numerical-order {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 24px;
    font-weight: 700;
    float: left;
    margin-right: 15px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    z-index: 9;
}
.iwe-schedules-tab .iw-tabs .iw-tab-items .iw-tab-item:hover .numerical-order,
.iwe-schedules-tab .iw-tabs .iw-tab-items .iw-tab-item.active .numerical-order {
    background: #ffffff !important;
}
.iwe-schedules-tab .day-info {
    overflow: hidden;
}
.iwe-schedules-tab .day-info .title {
    font-size: 18px;
    text-transform: uppercase;
	font-family: lato;

}
.iwe-schedules-tab .day-info .sub-title {
    font-size: 14px;
    text-transform: none;
	font-family: lato;

}
.iwe-schedules-tab .time-schedule-date {
    text-align: center;
    margin-top: 65px;
}
.iwe-schedules-tab .time-schedule-date span {
    border-radius: 20px;
    color: #ffffff;
    display: inline-block;
    font-size: 14px;
    padding: 2px 15px;
    text-transform: uppercase;
    font-weight: 600;
}
.iwe-schedules-tab ul {
    margin: 0;
}
.iwe-schedules-tab .iw-tab-item-content ul {
    margin: 0;
}
.iwe-schedules-tab ul li {
    list-style: none;
}
.iwe-schedules-tab li .bg-line {
    position: relative;
}
.iwe-schedules-tab li .bg-line:after {
    background: rgba(0, 0, 0, 0) url("../images/bg-line.jpg") repeat-y scroll 0 0;
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    width: 6px;
}
.iwe-schedules-tab li:nth-child(odd) .time-schedule-right {
    padding: 60px 10px 0 0;
}
.iwe-schedules-tab li:nth-child(odd) .time-schedule-left {
    padding: 60px 0 0 10px;
}
.iwe-schedules-tab li:nth-child(even) .time-schedule-right {
    padding: 60px 0 0 10px;
}
.iwe-schedules-tab li:nth-child(even) .time-schedule-left {
    padding: 60px 10px 0 0;
}
.iwe-schedules-tab li:last-child .time-schedule-right {
    padding-bottom: 60px;
}
.iwe-schedules-tab li:last-child .time-schedule-left {
    padding-bottom: 60px;
}
.iwe-schedules-tab li:nth-child(odd) .bg-line:after {
    right: -3px;
}
.iwe-schedules-tab li:nth-child(even) .bg-line:after {
    left: -3px;
}
.iwe-schedules-tab li:nth-child(odd) .time-schedule-info {
    text-align: right;
}
.iwe-schedules-tab li:nth-child(even) .time-schedule-info {
    text-align: left;
}
.iwe-schedules-tab .time-schedule-item .time-schedule-info {
    border: 1px #ebebeb solid;
    position: relative;
}
.iwe-schedules-tab li:nth-child(odd) .time-schedule-info:after {
    border-bottom: 10px solid rgba(0, 0, 0, 0);
    border-left: 10px solid #f5f5f5;
    border-top: 10px solid rgba(0, 0, 0, 0);
    content: "";
    position: absolute;
    right: -10px;
    top: 10px;
    z-index: 5;
}
.iwe-schedules-tab li:nth-child(even) .time-schedule-info:after {
    border-bottom: 10px solid rgba(0, 0, 0, 0);
    border-right: 10px solid #f5f5f5;
    border-top: 10px solid rgba(0, 0, 0, 0);
    content: "";
    position: absolute;
    left: -10px;
    top: 10px;
    z-index: 5;
}
.iwe-schedules-tab .time-schedule-item .time-schedule-info .time-title {
    font-size: 20px;
    padding: 10px 15px;
    background: #f5f5f5;
    margin-bottom: 15px;
    position: relative;
}
.iwe-schedules-tab li:nth-child(even) .time-schedule-info .time-title:after {
    border-radius: 50%;
    content: "";
    height: 10px;
    position: absolute;
    left: -31px;
    top: 15px;
    width: 10px;
    z-index: 9;
}
.iwe-schedules-tab li:nth-child(odd) .time-schedule-info .time-title:after {
    border-radius: 50%;
    content: "";
    height: 10px;
    position: absolute;
    right: -31px;
    top: 15px;
    width: 10px;
    z-index: 9;
}
.iwe-schedules-tab .time-schedule-item .time-schedule-info .time-des {
    padding: 0 15px;
    margin-bottom: 10px;
}
.iwe-schedules-tab .time-schedule-item .time-schedule-info .time-date {
    padding: 0 15px;
    margin-bottom: 30px;
    font-size: 12px;
}
.iwe-schedules-tab .time-schedule-item .author .time-speaker-img {
    width: 50px;
    height: 50px;
    border: 2px #ebebeb solid;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden;
    float: left;
}
.iwe-schedules-tab li:nth-child(odd) .author .time-speaker-img {
    float: left;
    margin-right: 5px;
}
.iwe-schedules-tab li:nth-child(even) .author .time-speaker-img {
    float: right;
    margin-left: 5px;
}
.iwe-schedules-tab .time-schedule-item .author .time-speaker-img img {
    width: 100%;
}
.iwe-schedules-tab .time-schedule-item .author .time-speaker-info {
    overflow: hidden;
    text-transform: uppercase;
}
.iwe-schedules-tab .time-schedule-item .author .time-speaker-info .time-name {
    font-size: 18px;
}
.iwe-schedules-tab .time-schedule-item .author .time-speaker-info .position {
	font-size: 14px;
    text-transform: none;
}
.iwe-schedules-tab li:nth-child(even) .info-wrap {
    float: right;
}
.iwe-schedules-tab li:nth-child(even) .author {
    float: left;
    text-align: right;
}
.iwe-schedules-tab .link-detail {
    text-align: center;
    position: relative;
}
.iwe-schedules-tab .link-detail a {
    width: 32px;
    height: 32px;
    line-height: 32px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
    color: #ffffff;
    font-size: 19px;
}
.iwe-schedules-tab .link-detail img {
    position: absolute;
    width: 16px;
    height: 11px;
    top: 10px;
    left: 50%;
    margin-left: -8px;
}
.iwe-schedules-tab .link-detail a.disabled{
    background: #eee !important;
    cursor: default;
}
.iwe-conference {
    text-align: center;
}
/* Event Statistic */
.iwevent-statistic {
    text-align: center;
    color: #ffffff;
}
.iwevent-statistic .statistic-title h3 {
    font-size: 48px;
    font-weight: 600;
    margin: 10px 0;
    text-transform: uppercase;
}
.iwevent-statistic .statistic-sub-title {
    font-size: 18px;
    padding: 5px 32px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    display: inline-block;
    color: #ffffff;
    text-transform: uppercase;
    margin: 30px 0;
    font-weight: 600;
}
.iwevent-statistic .statistic-description {
    font-size: 18px;
    margin-bottom: 40px;
}
.iwevent-statistic .iw-event-info {
    text-align: center;
}
.iwevent-statistic .iw-event-info li {
    display: inline-block;
    padding: 5px 40px;
    border-right: 1px #3d3a39 solid;
    font-size: 18px;
    text-transform: uppercase;
    color: #ffffff;
}
.iwevent-statistic .iw-event-info li:last-child {
    border: none;
}
.iwevent-statistic .iw-event-info li i {
    margin-right: 10px;
}

/* events checkout block */
.iwe-checkout {
    padding: 40px 0 30px;
}
.iwe-checkout .iwe-title-block {
    text-align: center;
    margin-bottom: 50px;
}
.iwe-checkout .iwe-title-block .iwe-title {
    font-size: 36px;
    text-transform: uppercase;
    line-height: 40px;
    margin-bottom: 10px;
    font-weight: 500;
}
.iwe-checkout .iwe-title-block .iwe-subtitle {
    font-size: 14px;
}
.iwe-checkout .iwe-checkoutform {
    font-size: 12px;
    font-weight: normal;
    text-transform: uppercase;
}
.iwe-checkout .iwe-checkoutform input {
    background: #f5f5f5;
    border: 1px #eeeeee solid;
    -webkit-border-radius: 0;
    border-radius: 0;
    margin-bottom: 35px;
    box-shadow: none;
    font-size: 12px;
    padding: 15px;
    height: auto;
    line-height: 1;
    text-transform: uppercase;
}
.iwe-checkout .iwe-checkoutform input.btn-event-checkout {
    font-size: 18px;
    color: #ffffff;
    width: 100%;
    text-align: left;
    position: relative;
    font-weight: 400;
}
.iwe-checkout .iwe-checkoutform .buy-now {
    position: relative;
}
.iwe-checkout .iwe-checkoutform .buy-now i {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 18px;
    color: #ffffff;
}
.iwe-checkout .iw-squared {
    margin-top: 10px;
}
.iwe-checkout .iw-squared input[type="checkbox"]:not(:checked) + label::before, [type="checkbox"]:checked + label::before {
    background: #e2e2e2;
    border-radius: 4px;
    content: "";
    height: 25px;
    width: 25px;
    left: 0;
    position: absolute;
}
.iwe-checkout .iw-squared input[type="checkbox"]:checked + label::after {
    opacity: 1;
    transform: scale(1);
}
.iwe-checkout .iw-squared input[type="checkbox"]:not(:checked) + label::after {
    opacity: 0;
    transform: scale(0);
}
.iwe-checkout .iw-squared input[type="checkbox"]:not(:checked) + label::after, [type="checkbox"]:checked + label::after {
    color: #ffffff;
    content: "\f00c";
    font-family: FontAwesome;
    font-size: 16px;
    left: 4px;
    top: -1px;
    position: absolute;
    transition: all 0.2s ease 0s;
}
.iwe-checkout .iw-squared input[type="checkbox"]:not(:checked) + label, [type="checkbox"]:checked + label {
    cursor: pointer;
    padding-left: 35px;
    position: relative;
    font-weight: 400;
}
.iwe-checkout .iw-squared input[type="checkbox"]:not(:checked), [type="checkbox"]:checked {
    position: absolute;
	display: none;
}
.iwe-checkout .iwe-checkoutform .select2-container--default {
    width: 100% !important;
    margin-bottom: 30px;
}
.iwe-checkout .iwe-checkoutform .select2-container--default .select2-selection--single {
    background: #f5f5f5;
    border: 1px #eeeeee solid;
    text-transform: uppercase;
}
.iwe-checkout .iwe-checkoutform .select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0 45px 0 15px;
}
.iwe-checkout .iwe-checkoutform .select2-container--default .select2-selection--single .select2-selection__arrow {
    width: 45px;
    background: #eeeeee;
    color: #5e5e5e;
}
.iwe-checkout .iwe-checkoutform .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: medium none;
    height: 100%;
    left: 0;
    margin: 0;
    text-align: center;
    top: 0;
    width: 100%;
}
.iwe-checkout .iwe-checkoutform .select2-container--default .select2-selection--single .select2-selection__arrow b:after {
    content: "\f107";
    font-family: FontAwesome;
    font-size: 24px;
    position: relative;
}

/*event check out popup*/

.iwe-checkoutform.popup{
    background-color: #fff;
    padding: 30px 20px;
}

.iwe-checkoutform.popup .field-group{
    margin-bottom: 10px;
    float: left;
    width: 100%;
    text-align: left;
}
.iwe-checkoutform.popup .field-group:last-child{
    margin-bottom: 0;
}
.iwe-checkoutform.popup .control-label{
    float: left;
    font-weight: normal;
    color: #222;
}
.iwe-checkoutform.popup label.payment-method {
    font-weight: normal;
    margin-right: 10px;
}
.iwe-checkoutform.popup .payment-method.payment-paypal input{
    width:auto;
    height: auto;
    display: inline-block;
}
.iwe-checkoutform.popup .payment-method.payment-offline input{
    width:auto;
    height: auto;
    display: inline-block;
}
.iwe-checkoutform.popup input, .iwe-checkoutform.popup select{
    border-radius: 0;
    border-color: #eee;
    box-shadow: none;
    height: 42px;
}
.iwe-checkoutform.popup textarea{
    width: 100%;
    padding: 5px 10px;
    float: left;
    margin-bottom: 0;
    border-color: #eee;
    color: #555;
}
.iwe-checkoutform.popup input[type="number"]{
    float: left;
    min-width: 100px;
    padding: 0 10px;
    border: 1px solid #eee;
    height: 42px;
}
.iwe-checkoutform.popup .field-submit{
    float: left;
    text-align: left;
}
.iwe-checkoutform.popup .field-submit input{
    margin-bottom: 0;
}

/* Custom Link */
.inwave-custom-link {
    padding: 60px 0 50px;
    background: #2b2b2b;
    border-bottom: 1px #313131 solid;
}
.inwave-custom-link a, .inwave-custom-link a:hover {
    color: #ffffff;
    font-size: 24px;
}
.inwave-custom-link a i {
    margin-left: 15px;
}


@-webkit-keyframes style2_icon {
    from {
        -webkit-transform: translate(60px, 0);
        transform: translate(60px, 0);
        opacity: 0;
        filter: alpha(opacity=0);
    }
    to {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
        filter: alpha(opacity=100);
    }
}
@keyframes style2_icon {
    from {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
        filter: alpha(opacity=0);
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
        filter: alpha(opacity=100);
    }
}

@-webkit-keyframes style2_info_item_title {
    from {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
        filter: alpha(opacity=0);
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
        filter: alpha(opacity=100);
    }
}
@keyframes style2_info_item_title {
    from {
        -webkit-transform: translate(60px, 0);
        transform: translate(60px, 0);
        opacity: 0;
        filter: alpha(opacity=0);
    }
    to {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        opacity: 1;
        filter: alpha(opacity=100);
    }
}

/** Home Version 2 **/
.iw-bg-block {
    background-image: url("../images/bg-welcome.png");
    background-position: 0 0;
}

/*--------------- Typography ----------------*/

.simple-list .iw-typography li i {
    font-size: 8px;
    margin-right: 15px;
}
.simple-list.angle-right .iw-typography li i, .simple-list.check-mark .iw-typography li i {
    width: 20px;
    height: 20px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    border: 1px #CCCCCC solid;
    text-align: center;
    line-height: 20px;
}
.simple-list.angle-right .iw-typography li:hover i {
    color: #ffffff;
}
.simple-list.check-mark .iw-typography li i {
    background: #CCCCCC;
    color: #ffffff;
}
.simple-list.numbers .iw-typography li {
    font-weight: bold;
}
.simple-list .iw-typography li .list-content {
    font-size: 13px;
    font-weight: normal;
}
.simple-list.numbers .iw-typography li .number {
    margin-right: 15px;
    display: inline-block;
}
.simple-list.none .simple-list-table li {
    border-right: 1px #dfdfdf solid;
    border-left: 1px #dfdfdf solid;
}
.simple-list.none .simple-list-table.center li {
    border: none;
}
.simple-list.none .simple-list-table li:last-child {
    border-bottom: 1px #dfdfdf solid;
}
.simple-list.none .simple-list-table li {
    padding: 15px 0;
}
.simple-list.none .simple-list-table li:nth-child(odd) {
    background: #f2f2f2;
}

h5.iw-table-heading {
    padding: 20px 15px;
    text-align: center;
    color: #ffffff;
}
h5.iw-table-heading.dark {
    background: #323232;
}
.text-underline {
    text-decoration: underline;
}
.bg-text {
    padding: 5px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    color: #ffffff;
}
.tooltip .tooltip-inner {
    padding: 5px 20px;
}
/**
    Block quote
*/
blockquote {
    position: relative;
    color:#ababab;
    margin: 15px 0 25px !important;
}
blockquote p {
    font-size: 16px;
    line-height: 2em;
}
blockquote.style2 {
    padding: 20px;
    border-top: 1px solid #e4ebed ;
    border-bottom: 1px solid #e4ebed ;
    border-right: 1px solid #e4ebed ;
    position: relative;
}
blockquote.style2:before, blockquote.style3:before {
    background: rgba(0, 0, 0, 0) url("../images/bg-quote.png") repeat scroll 0 0;
    content: "";
    height: 100%;
    left: -10px;
    position: absolute;
    top: -5px;
    width: 5px;
}
blockquote.style2:after, blockquote.style3:after {
    background: rgba(0, 0, 0, 0) url("../images/bg-quote.png") repeat scroll 0 0;
    content: "";
    height: 5px;
    left: -10px;
    position: absolute;
    top: -5px;
    width: 100%;
}
blockquote.style2 p {
    margin-left: 45px;
    font-size: 12px;
    position: relative;
    line-height: 24px;
}
blockquote.style2 p:before {
    content:'\f10d';
    display: inline-block;
    font-family: fontawesome;
    float:left;
    font-size: 30px;
    margin-left: -45px;
    margin-top: 5px;
}
blockquote.style3 {
    background-image: url("../images/icon-quote.png") !important;
    background-position: 105% -10px !important;
    background-repeat: no-repeat !important;
    position: relative;
    padding: 25px 35px 55px;
    float:right;
    color: #fff;
    max-width: 374px;
    line-height: 200%;
    font-size: 18px;
    margin-left: 25px !important;
}
.iw-shortcode {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0.5);
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100200;
}

.iw-shortcode .shortcode-contain {
    background: none repeat scroll 0 0 #fff;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 80%;
}
#iw-list-shortcode .shortcode-contain {
    width: 90%;
}
#iw-shortcode .shortcode-contain {
    width: 600px;
}
#iw-shortcode .shortcode-preview {
    background: #fff;
}

.shortcode-contain .shortcode-control{
    padding: 10px 15px;
    background: #192631;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
}
.shortcode-control .title{
    float: left;
    margin-top: 6px;
}
.shortcode-control .close-btn{
    float: right;
    cursor: pointer;
    padding: 5px 10px;
}
.shortcode-control .filter-box{
    float: right;
    margin-right: 5px;
}
.shortcode-control .filter-box input{
    border: 1px solid transparent;
}
.shortcode-control .close-btn:hover{
    color: red;
}

.shortcode-contain .shortcode-list-content {
    background: none repeat scroll 0 0 #fff;
    height: 100%;
    margin-top: 5px;
    padding: 0 15px 15px;
}

.shortcode-list-content .shortcode-items {
    height: 100%;
    overflow: auto;
}

.shortcode-items .shortcode-item {
    border: 1px solid #faf9f9;
    float: left;
    height: 70px;
    margin: 2px 2px 0 0;
    width: 174px;
    cursor: pointer;
    background: #F5F5F5;
    overflow: hidden;
    transform: border-color 0.2s ease 0s;
    color: #0074a2;
}
.shortcode-items .shortcode-item:hover {
    border-color: #00aef0;
    color: #2ea2cc;
}

.shortcode-item .icon {
    float: left;
    height: 100%;
    width: 50px;
    position: relative;
}

.shortcode-item .icon i{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.shortcode-item .short-info {
    float: left;
    padding: 2px 4px 2px 0;
    width: 120px;
    display: table-cell;
    vertical-align: middle;
    box-sizing: border-box;
    height: 100%;
}

.shortcode-item .short-info .s_name {
    font-weight: bold;
    line-height: 14px;
    outline: medium none;
}
.shortcode-item .short-info .s_des {
    background-color: transparent;
    color: #999999;
    display: block;
    font-size: 11px;
    font-style: normal;
    font-weight: normal;
    height: auto;
    left: auto;
    margin-top: 3px;
    position: relative;
    top: auto;
    width: auto;
    line-height: 16px;
}

.shortcode-save-setting{
    padding: 10px 15px;
    background: #F0F0F0;
}
.shortcode-save-setting div{
    padding: 5px 10px;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
}

.shortcode-contain .shortcode-content{
    position: relative;
    overflow: auto;
    padding: 10px 15px;
    min-height: 100px;
    height: 400px;
}

.shortcode-contain .shortcode-content .ajax-loading{
    position: absolute;
    width: 71px;
    height: 71px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    visibility: visible;
}

.shortcode-save-setting div.save-settings{
    background: #114C7F;
    float: left;
}
.shortcode-save-setting div.cancel-settings{
    float: left;
    background: #E6423B;
    margin-left: 10px;
}

.shortcode-save-setting div.preview-settings{
    float: left;
    background: #2EA2CC;
    margin-left: 10px;
}

.shortcode-content .field-group{
    margin-bottom: 10px;
}
.shortcode-content .field-label{
    font-weight: bold;
    margin: 3px 0;
}

.shortcode-content .field-input input,
.shortcode-content .field-input textarea,
.shortcode-content .field-input select{
    width: 100%;
    min-height: 30px;
}
.shortcode-content .field-input .wp-picker-clear,.shortcode-content .field-input .wp-picker-input-wrap input{
    width:auto;
    min-height:inherit;
}
.shortcode-content .field-description{
    font-size: 13px;
    font-style: italic;
    color: #999999;
}

.iw-image-field div{
    width: 80px;
    height: 80px;
    border: 1px solid #dfdfdf;
    margin-right: 5px;
    position: relative;
    float: left;
    overflow: hidden;
    color: #1ED200;
}

.iw-image-field div:hover{
    border-color: #c8c8c8;
}
.iw-image-field div.image-add-image{
    cursor: pointer;
    background: #f5f5f5;
}

.iw-image-field div.image-add-image span{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


.iw-image-field div.image-preview span {
    background: none repeat scroll 0 0 #fff;
    color: red;
    cursor: pointer;
    padding: 0 5px;
    position: absolute;
    right: 0;
    top: -2px;
}
.iw-image-field div.image-preview .close-overlay {
    z-index: 1;
    opacity: 0;
    transition: all linear 0.5s;
    position: absolute;
    width: 100%;
    height: 100%;
}
.iw-image-field div.image-preview .close-overlay:hover {
    opacity: 1;
}
.iw-image-field div.image-preview img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.select2-container,
.select2-drop,
.select2-search,
.select2-search input{
}

.iw-capital{
    text-transform: uppercase;
}

/*** IWGALLERY*/
.iw-slider-block{
    overflow:hidden;
}
.dg-container{
	position: relative;
	height: 450px;
	overflow:hidden;
	padding-right:60px;
	padding-left:60px;
}
.dg-wrapper{
	height: 100%;
	width: 50%;
	margin: 0 auto;
	position: relative;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	-ms-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-perspective: 1000px;
	-moz-perspective: 1000px;
	-o-perspective: 1000px;
	-ms-perspective: 1000px;
	perspective: 1000px;
}
.dg-wrapper .item{
	width: 100%;
	display: block;
	position: absolute;
	left: 0;
	bottom: -1px;
	box-shadow: 0px 10px 20px rgba(0,0,0,0.1);
	cursor:pointer;
}
.browser-frame{
	height:32px;
	background: url("../images/browser-frame-bg.png") 15px center no-repeat #f0f0f0;
	border-radius:5px 5px 0 0;
}

.dg-wrapper .item:before, .dg-wrapper .item:after{
	height:74%;
	width:50px;
	bottom:0;
	content:'';
	position:absolute;
	z-index:-1;
	background:rgba(0,0,0,0.15);

}
.dg-wrapper .item:after {
    right: -25px;
    transform: skewX(-4deg);
}
.dg-wrapper .item:before {
    left: -30px;
    transform: skewX(4deg);
}

.dg-wrapper .dg-transition{
	-webkit-transition: all 0.5s ease-in-out;
	-moz-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	-ms-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
.dg-wrapper  img{
	display: block;
	padding: 0px 0px 0px 0px;
	width:100%;
}
.dg-wrapper .description{
	font-style: italic;
	text-align: center;
	line-height: 50px;
	text-shadow: 1px 1px 1px rgba(255,255,255,0.5);
	color: #333;
	font-size: 16px;
	width: 100%;
	bottom: -55px;
	display: none;
	position: absolute;
}
.dg-wrapper .dg-center  .description{
	display: block;
}
.dg-wrapper .dg-center{
	cursor: default;
}
.dg-container nav{
	width: 58px;
	position: absolute;
	z-index: 1000;
	bottom: -60px;
	left: 50%;
	margin-left: -29px;
}
.dg-container nav span{
	text-indent: -9000px;
	float: left;
	cursor:pointer;
	width: 24px;
	height: 25px;
	opacity: 0.8;
	background: transparent url(../images/arrows.png) no-repeat top left;
}
.dg-container nav span:hover{
	opacity: 1;
}
.dg-container nav span.dg-next{
	background-position: top right;
	margin-left: 10px;
}
.item .browser-frame:after{
    content: '';
    position: absolute;
    width: 100%;
    height:100%;
    z-index: 9;
    top:0;
    left:0;
}
.item.dg-center .browser-frame:after{
        display: none;
}

.iw-slider-block .item a img,
.iw-slider-block .item p{
    margin: 0;
    height: 100%;
}

.iw-member-slider-block .dg-wrapper .member-info,
.iw-member-slider-block .dg-wrapper .social-links{
    display: none;
}
#profile_slider .dg-wrapper{
    width: 40%
}
#profile_slider .dg-wrapper .item{
    border-radius: 50%;
    overflow:hidden;
    background: rgba(127, 127, 127, 0.24) none repeat scroll 0 0;
    box-shadow: none;
}
#profile_slider .dg-wrapper .item .member-image{
    border-radius: 50%;
    height: 95%;
    margin: 2.5%;
    overflow: hidden;
    width: 95%;
}
#profile_slider .dg-wrapper .item.dg-left img,
#profile_slider .dg-wrapper .item.dg-right img{
    -webkit-filter: blur(3px);
    -moz-filter: blur(3px);
    -o-filter: blur(3px);
    -ms-filter: blur(3px);
    filter: blur(3px);
}
#profile_slider .dg-wrapper .item.dg-right{
    transform: translateX(63%) scale(0.65)!important;
    -ms-transform: translateX(63%) scale(0.65)!important;
    -moz-transform: translateX(63%) scale(0.65)!important;
    -webkit-transform: translateX(63%) scale(0.65)!important;
}
#profile_slider .dg-wrapper .item.dg-left{
    transform: translateX(-63%) scale(0.65) !important;
    -webkit-transform: translateX(-63%) scale(0.65)!important;
    -ms-transform: translateX(-63%) scale(0.65)!important;
    -moz-transform: translateX(-63%) scale(0.65)!important;
}
#profile_slider .prev{
    color: white;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
#profile_slider .next{
    color: white;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

#profile_slider .controls span:hover{
    cursor: pointer;
}

.iw-member-slider-block .member-info-view{
    color: #fff;
    text-align: center;
}
.iw-member-slider-block .member-info-view .name{
    font-size: 24px;
    text-transform: uppercase;
	margin:0;
	padding-top:17px;
	padding-bottom:2px;
}
.iw-member-slider-block .member-info-view .position{
    text-transform: uppercase;
    font-size: 14px;
}
.iw-member-slider-block .member-info-view .description{
    font-size: 12px;
	padding-top:5px;
}
.iw-member-slider-block .member-info-view .social-links{
    margin-top: 40px;
}
.iw-member-slider-block .member-info-view .social-links a{
    background: #fff;
    font-size: 14px;
    color: #7F7F7F;
	height:34px;
	width:34px;
	line-height:34px;
	text-align:center;
	display:inline-block;
    margin: 0 5px;
    border-radius: 50%;
}

.vc_element-icon.iw-default, .iw-default{
    background-image: url('../images/vc_inwave_addons.png');
    background-size: 100%;
}
.iw-default{
    width: 30px;
    height: 30px;
    display: block;
    margin-top: 20px;
    margin-left: 10px;
}
div.select2-drop{
    z-index: 100000;
}

.inwave-text-block > div{
    display: inline-block;
}

/*Map Full*/
.full-screen-map{
    position: fixed;
    width: 100%;
    height: 100%;
}
.full-screen-map .header, .full-screen-map .infunding-listing-page{
    display: none;
}
.full-screen-map .iwevent-map.all-events .map-preview{
    height: 100vh !important;
    width: 100% !important;
}
.iwevent-map{
    position: relative;
}
.iwevent-map.all-events .map-preview{
    height: 700px !important;
}
.iwevent-map .map-controls{
    position: absolute;
    top: 20px;
    left: auto;
    right: 30px;
    width: 300px;
    z-index: 10;
    text-align: right;
}

.iwevent-map .map-controls a{
    width: 30px;
    height: 30px;
    background: #333;
    color: #fff;
    text-align: center;
    line-height: 30px;
    display: inline-block;
}
.iwevent-map .map-controls input{
    border: none;
    border-radius: 3px;
    padding: 5px 10px;
    line-height: 0.5;
    opacity: 0.7;
    height: 30px;
    width: 187px;
}
.iwevent-map .infoBox{
    width: 275px;
}
.iwevent-map .place-des-contain{
    background: #fff;
    padding: 8px;
    color: #000;
}
.iwevent-map .place-des-contain:after {
    border: solid transparent;
    content: ' ';
    height: 0;
    position: absolute;
    top: inherit;
    right: inherit;
    bottom: -40px;
    left: 50%;
    z-index: 2;
    width: 0;
    border-width: 20px;
    border-top-color: #fff;
    -moz-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}
.iwevent-map .place-des-contain img{
    width: 100%;
}

.iwevent-map .place-des-contain .des-content{
   padding: 15px 12px 7px;
}
.iwevent-map .place-des-contain .title{
    margin: 0 0 4px;
}
.iwevent-map .place-des-contain .title a{
    font-size: 16px;
    color: #000;
    font-weight: bold;
}
.iwevent-map .place-des-contain .location{
    font-size: 13px;
    color: #9b9b9b;
    line-height: 22px;
}
.iwevent-map-wrap .infoBox .place-des-contain .place-image {
    width: 100%;
    position: relative;
}
.iwevent-map-wrap .infoBox .place-des-contain .place-image:before {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 65%, rgba(0, 0, 0, 0.8) 100%);
    background-size: 100% auto;
    content: "";
    height: 100%;
    left: 0;
    opacity: 1;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 1;
    -webkit-transition: background 0.3s linear 0s;
    -moz-transition: background 0.3s linear 0s;
    -ms-transition: background 0.3s linear 0s;
    -o-transition: background 0.3s linear 0s;
    transition: background 0.3s linear 0s;
    }

.iwevent-map-wrap .infoBox .place-des-contain .place-image:hover:before{
    background:transparent;
}

.iwevent-map-wrap .infoBox .place-des-contain .place-image:after{
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
    width: 100%;
    height: 100%;
    content: '';
    -webkit-transition: background 0.3s linear 0s;
    -moz-transition: background 0.3s linear 0s;
    -ms-transition: background 0.3s linear 0s;
    -o-transition: background 0.3s linear 0s;
    transition: background 0.3s linear 0s;
}
.iwevent-map-wrap .infoBox .place-des-contain .place-image:hover{
    cursor: pointer;
}
.iwevent-map-wrap .infoBox .place-des-contain .place-image:hover:after{
    background: rgba(255, 255, 255, 0.3);
}
.infoBox > img {
    max-width: 100%;
    right: -16px;
    top: 0;
}

/* ----- Layers Effect ----- */
.scene{
    margin:0;
    padding:0;
    position:absolute;
    top:0;
    width:100%;
}
.scene.layers-effect .layer{
    width:100%;
    height:100%;
    display:block;
}
.scene.layers-effect{
    width:100%;
    height:100%;
    position:fixed;
    z-index:-1;
    overflow: hidden;
    display: block;
    margin: 0;
}
.scene.layers-effect .layer-img{
    width:100%;
    height:100%;
    background-repeat: no-repeat;
    z-index: -1;
    position: relative;
}
.layer img{
    width:100%;
    opacity:0.3;
}

/* ----- RESPONSIVE ----- */
@media(max-width: 1500px){
    body .testimonial-block-education {
        background-color: #f8f8f8;
        background-position: 0 bottom !important;
    }
    .speaker-overlay{
        top: 75%;
    }
}
@media (min-width: 1500px) {
    .iw-video .iw-video-content{
        top:15%;
    }

    /*iw-heading*/
    .iw-heading.style4 .iwh-title{
        font-size: 80px;
        margin: 0;
    }
    .iw-heading.style4 > .iwh-sub-title {
        font-size: 30px
    }
    .inwave-map.style2 .get-in-touch a{
        padding-left: 100px;
    }
}
@media (min-width: 1400px){
    .inwave-map.style2 .get-in-touch {
        right: -23%;
    }
}
@media (min-width: 1300px) and (max-width: 1600px){
    .iw-heading.style4 .iwh-title{
        font-size: 80px;
        margin: 0 0 14px;
    }
    .iwe-speaker-block.style3 .speakers-with-quote .speakers-item.item-quote .quote-title {
        font-size: 80px;
    }
}
@media (max-width: 1190px) {
    .iw-posts.style3 .post-item-small .post-thumbnail {
        height: auto !important;
        float: none;
    }
    .iw-posts.style3 .post-item-small .post-thumbnail img {
        width: 100%;
        height: auto;
    }

}
@media (max-width: 1299px) {
    .iw-heading.style4 .iwh-title{
        font-size: 60px;
        margin: 0 0 14px 0px;
    }
    .iwe-speaker-block.style3 .speakers-with-quote .speakers-item.item-quote .quote-title {
        font-size: 65px;
    }
    .inwave-map.style2 .map-overlay{
        left: -10%;
    }
    .inwave-map.style2 .image-rotate{
        width: 150%;
    }
    .speaker-overlay{
        top: 70%;
    }
}
@media (max-width: 1199px) {
    .iw-event-facts .iw-video video {
        height: 100%;
        width: auto;
    }
    .iw-slider-shortcode .dg-wrapper .slider-box .item-image {
        border: 2px solid #838383;
        border-radius: 50%;
        height: 250px;
        line-height: 221px;
        width: 250px;
    }
}
@media (max-width: 1024px){
    .right-column{
        margin-top:25px;
    }
    .right-column .info-item.style2 .icon{
        float:left;
        margin-right:15px;
        margin-left:0;
    }
    .right-column .info-item.style2 .info-item-content{
        margin-right: 0;
        margin-left: 49px;
        text-align: left;
    }

    .iw-bg-block {
        background: none !important;
    }
}
@media (max-width: 998px) {
    .iw-posts.style3 .post-item-0 .post-content .post-title {
        float: none;
        text-align: left;
    }
    .rtl .iw-posts.style3 .post-item-0 .post-content .post-title {
        float: none;
        text-align: right;
    }
    .post-content .iw-bottom-item .float-right {
        float: left;
    }
    .iw-posts.style3 .square::before {
        padding: 25% 0;
    }
    .iw-posts.style3 .post-item {
        padding-bottom: 30px;
    }
}
@media (max-width: 1509px) {
    .iwe-speaker-block.style8 .speaker-item .speaker-detail {
        top: 100px;
    }
    .iwe-speaker-block.style8 .custom-navigation {
        top: 102px;
    }
    .iwe-speaker-block.style8 .nav-thumbnail {
        bottom: 60px;
    }
}

@media (max-width: 1350px) and (min-width: 1200px) {
    .header-overlay{
        -webkit-transform: translateX(-58%) skew(-40deg);
        transform: translateX(-58%) skew(-40deg);
    }
    .header.header-version-4 .iw-one-page-menu::after{
        -webkit-transform: translateX(44%) skewX(-40deg);
        transform: translateX(44%) skewX(-40deg);
    }
}
@media (max-width: 1199px) and (min-width: 992px) {
    /*----------------- Responsive one-page person 992px-------------- */

    .iw-header-block-4 {
        display: table-cell;
        height: 100vh;
        left: 25px;
        position: relative;
        top: 0;
        vertical-align: middle;
        width: 100%;
    }

    .iwe-schedule.iwe-schedule-person .iw-content .scheduce-wrapper li span::after{
        display: none;
    }
    .iwe-schedule.iwe-schedule-person .iw-content .scheduce-wrapper li span{
        width: 85px;
        margin: 0;
        text-align: left;
    }
    .iwe-schedule.iwe-schedule-person  .iw-image > span {
        display: inline-block;
    }
    .iwe-schedule.iwe-schedule-person .iw-image img {
        height: auto;
    }
    .iwe-schedule.iwe-schedule-person .iw-content {
        float: left;
        padding-left: 30px;
    }
    .iwe-schedule.iwe-schedule-person .iw-content h4{
        padding-top: 100px;
    }
    .iwe-schedule.iwe-schedule-person .iw-image {
        float: right;
        position: relative;
        width: 50%;
    }
    .iw-sponsors-list.style2.owl-theme .owl-controls .owl-buttons div.owl-prev,
    .iwe-sponsor-block.style3 .iwe-sponsors-list.owl-theme .owl-controls .owl-buttons div.owl-prev {
        left: 0;
    }
    .iw-sponsors-list.style2.owl-theme .owl-controls .owl-buttons div.owl-next,
    .iwe-sponsor-block.style3 .iwe-sponsors-list.owl-theme .owl-controls .owl-buttons div.owl-next {
        right: 0;
    }

    /*------------------ One-page person ---------------*/
    .page-title {
        margin-top: 150px;
    }
    .iw-contact-address .title_contact_form::after{
        width: 40%;
    }
    .iw-footer-default .iw-mailchimp-form.style2 .mc-email{
        width: 140px;
    }
    /*----------------- Responsive one-page education 992px-------------- */
    .header-overlay{
        -webkit-transform: translateX(-58%) skew(-40deg);
        transform: translateX(-58%) skew(-40deg);
    }
    .header-content h2 {
        font-size: 45px;
        line-height: 56px;
    }
    .header.header-version-4 .iw-one-page-menu::after{
        -webkit-transform: translateX(44%) skewX(-40deg);
        transform: translateX(44%) skewX(-40deg);
    }
    .header-block-1 .header-content > span{
        font-size: 20px;
    }
    .shape_content .inwave-countdown {
        width: 316px;
        right: 52px;
    }
    .shape_content .date {
        font-size: 30px;
        line-height: 40px;
    }
    .shape_content .date-countdown.day-count::before{
        right: 0;
    }
    .shape_content .date-countdown.day-count::after{
        right: 1px;
    }
    .shape_content .join_us {
        right: -190px;
    }
    .shape_content .join_us > a{
        padding: 30px 55px 30px 35px;
    }
    .shape_content .join_us > a::before {
        border-left: 100px solid;
        border-top: 105px solid rgba(0, 0, 0, 0);
    }
    .shape_content .join_us > a {
        font-size: 16px;
        line-height: 45px;
    }
    .iw-heading.style4 .iwh-title {
        font-size: 60px;
        margin: 0;
    }
    .iwe-speaker-block.style3 .speakers-with-quote .speakers-item .speaker-info{
        margin: 0 5px;
    }
    .speaker-overlay{
        margin: 0 5px;
    }
    .iwe-speaker-block.style3 .speaker-desc{
        margin: 0 0 10px;
        padding-bottom: 10px;
    }
    .iwe-speaker-block.style3 .speakers-with-quote .speakers-item.item-quote .quote-title{
        font-size: 65px;
    }
    .iwe-speaker-block.style3 .speakers-with-quote .speakers-item.item-quote {
        padding: 10px 30px 0 20px;
    }
    .iwe-speaker-block.style3 .speakers-with-quote .speakers-item.item-quote .quote-desc {
        font-size: 16px;
        font-weight: 100;
        line-height: 30px;
        margin-left: 70px;
        padding: 0;
    }
    .iwe-speaker-block.style3 .speakers-with-quote .speakers-item.item-quote .quote-desc::after {
        font-size: 50px;
        left: -48px;
        top: 10px;
    }
    .iwe-sponsor-block.style2 .one-page-education-sponsor  .sponsor-item .sponsor-image{
        height: 120px;
    }
    .iwe-sponsor-block.style2 .one-page-education-sponsor .sponsors .sponsor-item{
        border: 0;
    }
    .iwe-sponsor-block.style2 .one-page-education-sponsor .sponsors .sponsor-item,
    .iwe-sponsor-block.style2 .one-page-education-sponsor .iwe-sponsor-block.style2 .sponsors,
    .iwe-sponsor-block.style2 .one-page-education-sponsor .iwe-sponsor-block.style2 .sponsor-item.first-item{
        border: 0;
    }
    .iwe-schedule.style1 > h4{
        margin: 0 0 0 60px;
    }
    .iwe-schedule.style1 .scheduce-wrapper li span {
        text-align: left;
    }
    .iwe-schedule.style1 .scheduce-wrapper li small{
        margin-left: 0;
    }
    .iw-heading.style5 .iwh-title {
        font-size: 80px;
    }
    .iw-heading.style4 > .iwh-sub-title {
        padding: 0;
        margin: 10px 0;
    }
    .iw-mailchimp-form.style1 {
        height: 420px;
    }
    .iw-posts.style3 .post-item .post-date .day{
        font-size: 50px;
	font-family: lato;

    }
    .inwave-map.style2 .map-overlay {
        left: -13%;
        width: 60%;
    }
    .inwave-map.style2 .image-rotate {
        width: 150%;
    }
    .inwave-map.style2 .get-in-touch a{
        padding-left: 100px;
    }
    .iwe-speaker-block.style8 .speaker-item .speaker-detail {
        top: 100px;
    }
    .iwe-speaker-block.style8 .custom-navigation {
        top: 102px;
    }
    .iwevent-map.all-events .map-preview{
        height: 500px !important;
    }
}
@media (max-width: 991px) {
    .style4.member-box .member-image {
        width: 159px;
        height: 132px;
    }
    .inwave-map.style2 .image-rotate{
        width:150px;
    }
    .iw-tabs.horizontal-slide.layout2 .iw-video .iw-video-player {
        position: relative;
    }

    /*-------------- Responsive one-page education -----------*/

    .header-content h2 {
        font-size: 45px;
        line-height: 56px;
    }

    .header-block-1 .header-content > span{
        font-size: 20px;
    }
    .shape_content .inwave-countdown {
        width: 316px;
        right: 52px;
    }
    .shape_content .date {
        font-size: 30px;
        line-height: 40px;
    }
    .shape_content .date-countdown.day-count::before{
        right: 0;
    }
    .shape_content .date-countdown.day-count::after{
        right: 1px;
    }
    .shape_content .join_us {
        right: -190px;
    }
    .shape_content .join_us > a{
        padding: 30px 55px 30px 35px;
    }
    .shape_content .join_us > a::before {
        border-left: 100px solid;
        border-top: 105px solid rgba(0, 0, 0, 0);
    }
    .shape_content .join_us > a {
        font-size: 16px;
        line-height: 45px;
    }
    .iwe-speaker-block.style3 .speakers-with-quote .speakers-item{
        width: 50%;
    }
    .iwe-speaker-block.style3 .speakers-with-quote .speakers-item.item-quote{
        width: 100%;
    }
    .iwe-sponsor-block.style2 .one-page-education-sponsor .sponsors{
        border-width:0;
    }
    .iwe-sponsor-block.style2 .one-page-education-sponsor .sponsors .sponsor-item{
        text-align: center;
        border: none;
    }
    .iw-heading.style5 .iwh-title{
        font-size: 75px;
    }
    .iwe-schedule.style1 > h4{
        margin: 0;
    }
    .iwe-schedule.style1 .scheduce-wrapper li span {
        line-height: 30px;
        text-align: left;
    }
    .iwe-schedule.style1 .scheduce-wrapper li small {
        line-height: 30px;
        margin-left: 0;
    }
    .iw-row-time-table .image-right .vc_single_image-wrapper::after,
    .iw-row-time-table .wpb_single_image::before,
    .iw-row-time-table .vc_single_image-wrapper::after,
    .iw-row-time-table .wpb_single_image.image-right::after{
        display: none;
    }
    .iwe-checkout.style3 textarea{
        height: 150px;
    }
    .iwe-checkout.style3 .iwe-checkoutform .iw-note{
        text-align: left;
    }
    .iwe-checkout.style3 .iwe-title-block .iwe-title{
        font-size: 32px;
    }
    .iw-mailchimp-form.style1 .iw-video .iw-video-content {
        position: absolute;
        top: 25%;
    }
    .iw-posts.style3 .post-item h3{
        padding: 20px 0;
    }
    .inwave-map.style2 .map-overlay {
        left: -20%;
        width: 80%;
    }
    .inwave-map.style2 .image-rotate {
        width: 150%;
    }
    .inwave-map.style2 .get-in-touch a{
        padding-left: 100px;
    }
    .iw-heading.style5 .iwh-title {
        font-size: 65px;
    }
    .iw-posts.style5 {
        height: auto;
        left: 0;
        position: relative;
        top: 0;
        width: auto;
    }
    .iw-posts.style5 .post-item{
        height: auto;
    }
    .iw-posts.style5 .post-item .post-image{
        position: relative;
        height: auto;
    }
    .iw-posts.style5 .post-item .post-detail{
        position: relative;
    }
    .iw-posts.style5 .post-item:hover .post-detail{
        background-color: black;
    }
    .iw-posts.style5 .load-more {
        height: auto;
        position: relative;
        text-align: center;
        width: 100%;
    }
    .iw-posts.style5 .load-more a {
        color: #ffffff;
        font-size: 18px;
        line-height: 40px;
        margin-top: 0;
        position: relative;
        top: 0;
    }
    /*----------- One-page person -----------*/
    .iw-header-block-4 {
        margin-left: 0;
        padding: 65px 15px 25px;
    }
    .iw-header-block-4 .title > span {
        font-size: 22px;
        line-height: 30px;
    }
    .iw-header-block-4 .sub-title {
        font-size: 18px;
        line-height: 32px;
    }
    .iw-header-block-4 .sub-title {
        font-size: 18px;
        line-height: 32px;
        padding: 0 0 30px;
    }
    .iw-header-block-4 .content-main .link-text{
        top: 0;
    }
    .iw-header-block-4 .link-text > a{
        padding: 5px 10px;
    }
    .iw-header-block-4 form.form-input-person::after{
        width: 100%;
        bottom: 0;
    }
    .iw-header-block-4 form.form-input-person {
        font-size: 30px;
        margin:0;
        position: relative;
        width: 100%;
    }
    .iw-header-block-4 .link-text > a {
        font-size: 16px;
        line-height: 25px;
        padding: 5px 10px;
    }
    .iw-header-block-4 .social-icon {
        bottom: 0;
        left: 0;
        padding-top: 20px;
        position: relative;
    }
    .iwe-schedule.iwe-schedule-person .iw-content .scheduce-wrapper li span::after{
        display: none;
    }
    .iwe-schedule.iwe-schedule-person .iw-content .scheduce-wrapper li span {
        margin-right: 15px;
        text-align: left;
        width: 50px;
        line-height: 30px;
    }
    .iwe-schedule.iwe-schedule-person .iw-content .scheduce-wrapper li small{
        display: inline;
        margin: 0;
        line-height: 20px;
    }
    .iwe-schedule.iwe-schedule-person .iw-content h4 {
        font-size: 38px;
        line-height: 38px;
    }
    .iwe-schedule.iwe-schedule-person {
        padding: 0 15px;
    }
    .iwe-schedule.iwe-schedule-person .iw-content {
        padding: 20px 15px;
    }
    .iw-share-box.style2 .share-email a{
        font-size: 24px;
    }
    .iw-posts.style2 .iw-posts-list .slick-dots {
        position: relative;
        text-align: center;
        top: 0;
    }
    .iw-header-block-4 .content-main .link-text{
        top: 0;
        left: 0;
    }
    .iw-header-block-4 .content-main .link-text {
        font-size: 16px;
        line-height: 25px;
        padding: 5px 10px;

    }
    .iwe-speaker-block.style8 .speaker-item .speaker-detail {
        top: 50px;
    }
    .iwe-speaker-block.style8 .custom-navigation {
        top: 52px;
    }
    .iwe-speaker-block.style8 .nav-thumbnail {
        bottom: 50px;
    }
    .iwe-speaker-block.style8 .speaker-item .speaker-detail .speaker-name, .iwe-speaker-block.style8 .speaker-item .speaker-detail .speaker-position {
        font-size: 32px;
        line-height: 32px;
    }


}
@media (max-width: 980px) {

    .iwe-speaker-block.style5 .owl-theme .owl-controls .owl-buttons .owl-next {
        right: 0;
    }
    .iwe-speaker-block.style5 .owl-theme .owl-controls .owl-buttons .owl-prev {
        left: 0;
    }
    .infunding-listing-page .iw-filter-style {
        margin-bottom: 15px;
        float: none;
    }
    .infunding-listing-page .filter-item .filter-form {
        float: none;
    }
    .featured-events .featured-content .featured-image img {
        position: relative;
        top: 0;
    }
    .iw-slider-shortcode .dg-wrapper .slider-box .item-image {
        border: 2px solid #838383;
        border-radius: 50%;
        height: 180px;
        line-height: 180px;
        width: 180px;
    }
    .iw-slider-shortcode .slider-top .item-title {
        top: auto;
        bottom: -60px;
        display: none;
    }
    .iw-slider-shortcode .dg-center .slider-top .item-title {
        display: block;
        color: #838383;
        margin-bottom: 10px;
    }
    .dg-container {
        overflow: visible !important;
    }
    .iw-event-fact-item .event-fact-desc:before {
        left: 0;
        right: 0;
        margin: 0 auto;
    }
    .featured-num.text-right {
        text-align: center;
        padding-top: 25px;
    }
    .featured-num .number {
        bottom: 0;
        padding: 0;
        line-height: 1;
    }
    .iw-events-list-view .events-content-wrap .info-wrap .date {
        margin-bottom: 25px;
    }
    .iw-contact-address .title_contact_form:after {
        width: 55%;
    }
    .iwe-schedules-tab .iw-tabs .iw-tab-items .overlay {
        display: none;
    }
    .iwe-schedules-tab .iw-tabs .iw-tab-items .iw-tab-item {
        background: #000000 !important;
    }
    .iwe-sponsor-block.style2 .sponsors .row {
        margin: 0;
    }
    .iwe-sponsor-block.style2 .sponsors:after, .iwe-sponsor-block.style2 .sponsors:before {
        box-shadow: none !important;
    }
    .featured-events .content-row1 {
        padding-top: 82px;
    }
    .iwe-speaker-block.style8 .nav-thumbnail {
        position: relative;
        bottom: auto;
        padding: 25px 0;
    }
    .iwe-speaker-block.style8 .speaker-flex-slider {
        background: #101010;
    }
}
@media (max-width: 768px) {


    .iw-events-list-view .events-content-wrap {
        padding: 40px 0 30px;
    }
    .iw-events-list-view .events-content-wrap .img-wrap {
        padding: 0;
        position: relative;
        right: auto;
        top: auto;
    }
    .iw-events-list-view .events-content-wrap .event-details {
        padding: 0 25px;
    }
    .iw-events-list-view .events-content-wrap .event-status {
        margin-bottom: 25px;
    }
    .info-item.style7 {
        padding: 25px;
}
    .iw-tabs.layout1 .iw-tab-items .iw-tab-item{
        width: 100%!important;
    }

    .iw-tabs.layout1 .iw-tab-items .container{
        padding: 0;
    }

    .iw-tabs .iw-tab-icon{
        margin-right: 0;
    }

    /*pricebox*/
    .style1 .pricebox-body-content,.pricebox-header-content {
        margin-right: 0px;
    }

    /*pricebox-shadow*/
    .pricebox-shadow{
        display: none;
    }

    /*av-banner*/
    .iw-av-banner.style1 .iw-av-overlay,.iw-av-banner.style1 .iw-av-overlay1,.iw-av-banner.style1 .iw-av-overlay2{
        transform: none!important;
        -webkit-transform: none!important;
        -moz-transform: none!important;
        -o-transform: none!important;
        -ms-transform: none!important;
    }

    /*video-player*/
    .iw-video-player{
        height:auto!important;
    }
    .iw-parallax-video{
        position:static!important;
    }
    .iw-parallax{
        background-size: cover!important;
        background-position: center center!important;
        background-attachment: scroll!important;
    }
    .iw-video .iw-video-content{
        position:static;
        color:inherit;
        padding:20px;
    }
    .iw-video.have-content .play-button{
        top: 50%;
    }
    .iw-video.playing .iw-video-content h3{
        transform: translateX(0);
        -webkit-transform: translateX(0);
        opacity: 1;
    }
    .iw-video.playing .iw-video-content p{
        transform: translateX(0);
        -webkit-transform: translateX(0);
        opacity: 1;
    }
    /*end video-player*/
    .iwe-speaker-block.style8 .custom-navigation .title-block {
        max-width: 120px;
    }
    .iwe-speaker-block.style8 .custom-navigation .title-block h3 {
         font-size: 20px;
         line-height: 22px;
     }
    .iwe-speaker-block.style8 .custom-navigation .navigation {
        width: 120px;
    }
    .iwe-speaker-block.style8 .custom-navigation .navigation a {
        font-size: 14px;
        height: 30px;
        line-height: 26px;
        width: 30px;
    }
    .iwe-speaker-block.style8 .speaker-item .speaker-detail .speaker-desc {
        max-width: 100%;
    }
}

@media (max-width: 767px) {

    .iw-posts.style2 .owl-controls .owl-pagination {
        position: relative;
        top: auto;
    }
    .iwe-schedules-tab li:nth-child(2n) .time-schedule-info .time-title::after,
    .iwe-schedules-tab li:nth-child(2n+1) .time-schedule-info .time-title::after {
        display: none;
    }
    .iw-events-timeline::after {
        display: none;
    }
    .iw-heading.style4 .iwh-sub-title {
        width: 100%;
    }
    .iw-sponsors-list.style1 .owl-controls .owl-buttons div.owl-prev {
        left: 0;
    }
    .iw-sponsors-list.style1 .owl-controls .owl-buttons div.owl-next {
        right: 0;
    }
    .iw-news-letter {
        padding: 0 15px;
    }

    /*event-facts*/
    .iw-event-facts .iw-video {
        position: relative;
    }
    .iw-event-facts .iw-video .iw-video-player {
        padding-top: 56.25%;
        position: relative;
        width: 100%;
    }
    .iw-event-facts .iw-video video {
        border: medium none;
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        width: 100%;
    }
    .iw-event-facts {
        height: auto !important;
        margin-bottom: 50px;
    }
    .iw-event-facts .event-facts-inner {
        position: relative;
        bottom: 0;
        margin-top: 15px;
        height: auto;
    }
    .iw-event-facts .iw-event-fact-item {
        float: none;
    }
    .event-fact-inner {
        bottom: 0;
        position: absolute;
        z-index: 99;
    }
    .iw-event-facts .event-fact-inner {
        position: relative;
        top: 0 !important;
    }
    .iw-event-facts .event-fact-info {
        position: relative;
        text-align: left;
        left: 0;
    }
    .icon-facts {
        display: none;
    }
    .iw-event-fact-item .event-fact-title {
        font-size: 18px;
    }
    .iw-event-facts .iw-video .play-button {
        top: 50%;
    }
    .iw-event-fact-item .event-fact-desc:after {
        margin: 0;
    }
    .iw-event-fact-item .dotted-line {
        display: none;
    }
    .iw-event-fact-item .event-fact-desc {
        margin-bottom: 10px;
    }
    .bg-svg {
        display: none;
    }
    .iw-event-fact-item .event-fact-desc:after {
        background-color: #fff;
    }
    .iw-slider-shortcode .dg-wrapper .slider-box .item-image {
        height: 160px;
        line-height: 160px;
        width: 160px;
    }
    .iw-event-fact-item .event-fact-desc:before {
        right: auto;
    }
    .rtl .iw-event-fact-item .event-fact-desc:before {
        left: auto;
        right: 0;
    }
    /*event-facts*/

    .content-row2 .featured-image {
        margin-top: 0;
    }
    .featured-num .number {
        font-size: 200px;
    }
    .iw-contact-address .title_contact_form:after {
        width: 29%;
        right: auto;

    }
    .events-timeline {
        text-align: center;
    }
    .iw-events-timeline .events-timeline .bg-line:after {
        display: none;
    }
    .iw-events-timeline .events-timeline.style2 .bg-line {
        float: none;
    }
    .iw-events-timeline .events-timeline .iw-event-info {
        padding: 0 !important;
    }
    .iw-events-timeline .events-timeline .video-image {
        padding: 0 !important;
    }
    .iw-events-timeline .events-timeline .iw-event-info .yeah {
        position: relative;
        top: 0;
        right: auto !important;
        left: auto !important;
        display: inline-block;
        margin-bottom: 20px;
    }
    .iwe-schedules-tab li .time-schedule-right {
        padding: 60px 15px 0 !important;
    }

    .iwe-schedules-tab li:nth-child(2n+1) .time-schedule-left,
    .iwe-schedules-tab li:nth-child(2n) .time-schedule-left {
        padding: 40px 15px 0;
    }
    .iwe-schedules-tab li:last-child .time-schedule-left {
        padding-bottom: 60px !important;
    }
    .iwe-schedules-tab li:nth-child(2n) .author .time-speaker-img {
        margin: 0 5px 0 0;
    }
    .iwe-schedules-tab li:nth-child(2n+1) .time-schedule-info::after,
    .iwe-schedules-tab li:nth-child(2n) .time-schedule-info::after {
        border-left: 15px solid rgba(0, 0, 0, 0);
        border-top: 20px solid #f5f5f5;
        border-right: 5px solid rgba(0, 0, 0, 0);
        content: "";
        position: absolute;
        left: 0;
        top: 100%;
        z-index: 5;
        right: auto;
    }
    .iwe-schedules-tab li .time-schedule-info {
        text-align: left !important;
    }
    .iwe-schedules-tab li:nth-child(2n) .author {
        text-align: left;
        float: left;
    }
    .iwe-schedules-tab li:nth-child(2n) .author .time-speaker-img {
        float: left;
    }
    .iw-member-slider-block.iw-slider-block .owl-theme .owl-controls .owl-buttons .owl-prev {
        left: 20px;
    }
    .iw-member-slider-block.iw-slider-block .owl-theme .owl-controls .owl-buttons .owl-next {
        right: 20px;
    }
    .iw-posts.style2 .iw-posts-list .slick-dots {
        padding: 0;
        top: -70px;
        text-align: center;
    }
    .iw-posts.style2 .iw-posts-list .slick-list {
        margin-top: 60px;
    }

    .simple-list.none .simple-list-table.center li {
        border-right: 1px #dfdfdf solid;
        border-left: 1px #dfdfdf solid;
    }
    /*----------------- TruongDX 767 ---------------*/

    /*----------- One-page person -----------*/
    .header.header-version-5 {
        padding-right: 0;
    }
    .iw-header-block-4 {
        margin-left: 0;
        padding: 65px 15px 25px;
    }
    .iw-header-block-4 .title > span {
        font-size: 22px;
        line-height: 30px;
    }
    .iw-header-block-4 .sub-title {
        font-size: 18px;
        line-height: 32px;
    }
    .iw-header-block-4 .sub-title {
        font-size: 18px;
        line-height: 32px;
        padding: 0 0 30px;
    }
    .iw-header-block-4 .content-main .link-text{
        top: 0;
        left: 0;
    }
    .iw-header-block-4 .link-text > a{
        padding: 5px 10px;
    }
    .iw-header-block-4 form.form-input-person::after{
        width: 100%;
        bottom: 0;
    }
    .iw-header-block-4 form.form-input-person {
        font-size: 30px;
        margin:0;
        position: relative;
        width: 100%;
    }
    .iw-header-block-4 .link-text > a {
        font-size: 16px;
        line-height: 25px;
        padding: 5px 10px;
    }
    .iw-header-block-4 .social-icon {
        bottom: 0;
        left: 0;
        padding-top: 20px;
        position: relative;
    }
    .iw-header-block-4 .social-icon {
        bottom: 0;
        left: 0;
        padding-top: 20px;
        position: relative;
    }
    .iw-testimonals.style3 {
        padding-bottom: 50px;
    }
    .iwe-pricing-block.style5 .ticket-item {
        min-height: 400px;
    }
    .iwe-pricing-block.style5 .ticket-item .plan-description{
        padding: 0 15px;
    }
    .iwe-sponsor-block.style3 .iwe-sponsors-list.owl-theme .owl-controls .owl-buttons div.owl-next {
        right: 10px;
    }
    .iwe-sponsor-block.style3 .iwe-sponsors-list.owl-theme .owl-controls .owl-buttons div.owl-prev {
        left: 10px;
    }
    .iwe-schedule.iwe-schedule-person .iw-content {
        float: none;
        padding-left: 15px;
        padding-top: 15px;
        position: relative;
        width: 100%;
        z-index: 2;
    }
    .iwe-schedule.iwe-schedule-person .iw-image {
        float: none;
        position: absolute;
        right: 0;
        top: 0;
        width: 100%;
        z-index: 1;
    }
    .iw-heading.style14 {
        margin-top: 19px;
}
    .iwe-schedule.iwe-schedule-person .iw-image img{
        max-height: 550px;
    }
    .event-pricing-wrap {
        padding-top: 65px;
    }
    .iwe-pricing-block.style5 .plan-button a{
        margin-top: 35px;
    }
    .iwe-schedule.iwe-schedule-person.style5 .iw-content {
        padding-left: 15px;
    }
    .iwe-schedule.iwe-schedule-person .iw-content .date-time > span{
        padding: 0;
    }
    .iwe-schedule.iwe-schedule-person .iw-content .scheduce-wrapper li span{
        margin-right: 25px;
        width: auto;
    }
    .iwe-schedule.iwe-schedule-person .iw-content .scheduce-wrapper li small {
        display: inline;
        margin-right: 0;
        line-height: 26px;
    }
    .iwe-schedule.iwe-schedule-person .iw-content h4{
        font-size: 32px;
        line-height: 32px;
        padding-top: 15px;
    }
    .iwe-schedule.iwe-schedule-person .iw-content > p{
        padding-bottom: 0;
    }
    .iw-posts.style5 .post-item .post-detail .post-title > a {
        font-size: 20px;
        line-height: 26px;
    }
    .iw-posts.style5 .post-item .post-detail .post-desc > p {
        color: rgb(255, 255, 255);
        font-size: 14px;
        line-height: 30px;
        margin: 20px auto;
        padding: 0 30px;
    }
    .iwe-checkout .iwe-checkoutform {
        margin: 0 15px;
    }
    .iw-share-box.style2 {
        padding: 120px 0;
    }
    .iw-footer-v2.iw-footer-v4 .copy-right {
        padding: 80px 0;
    }

    .iw-footer-default .slickr-flickr-gallery ul li {
        padding: 15px 0;
        margin-bottom: 0;
    }
    .iw-footer-default .iw-mailchimp-form.style2 .mc-email{
        width: 50%;
    }


    /*-------------- Reponsive contact page ------------ */

    .page-title {
        margin-top: 127px;
    }
    .iw-contact-us textarea{
        height: 100px;
    }

    /*------------- Responsive business page -----------*/
    .iw-posts.style2 .iw-posts-list .slick-dots {
        margin: 0;
        padding: 0 15px;
        position: relative;
        text-align: center;
        top: 0;
    }
    .info-item.style4::before,
    .info-item.style4::after{
        display: none;
    }
    body .iw-testimonial-item.iw-testimonial-item{
        padding: 0 15px;
    }
    body .iwe-sponsor-block.style2 .sponsor-item .sponsor-image{
        height: auto;
    }
    /*-------------- Responsive one page education -------------*/
    .header-content h2 {
        font-size: 30px;
        line-height: 32px;
    }
    .header-block-1 .header-content > span {
        font-size: 14px;
        line-height: 30px;
    }
    .header-overlay {
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        transform: translateX(0%) skew(0deg);
        width: 100%;
        z-index: 0;
    }
    .shape_content {
        color: rgb(255, 255, 255);
        position: relative;
        right: 0;
        top: 57%;
        transform: skewX(0deg);
    }
    .shape_content .inwave-countdown::before {
        display: none;
    }
    .shape_content .inwave-countdown::after {
        content: "";
        height: 100%;
        position: absolute;
        right: 0;
        transform: skewX(0deg);
        width: auto;
        z-index: -1;
    }
    .shape_content .inwave-countdown {
        left: 0;
        position: fixed;
        right: 0;
        top: auto;
        width: 300px;
    }
    .shape_content .date-countdown.day-count::after,
    .shape_content .date-countdown.day-count::before,
    .shape_content .date-countdown.hour-count::before,
    .shape_content .date-countdown.hour-count::after,
    .shape_content .date-countdown.minute-count::before,
    .shape_content .date-countdown.minute-count::after{
        display: none;
    }
    .shape_content .date {
        font-size: 24px;
        line-height: 32px;
        margin-top: 0;
    }
    .shape_content .date-label {
        font-size: 16px;
        line-height: 30px;
        margin-bottom: 0;
        margin-top: 0;
    }
    .shape_content .join_us > a::before,
    .shape_content .join_us > a::after{
        display: none;
    }
    .shape_content .join_us {
        right: auto;
        left: 50px;
        top: 70px;
    }
    .shape_content .join_us > a {
        border: 1px solid rgb(255, 255, 255);
        border-radius: 30px;
        display: block;
        padding: 10px 25px;
        font-size: 14px;
        line-height: 32px;
    }
    .shape_content .join_us > a i{
        display: none;
    }

    .iw-heading.style4 .iwh-title {
        font-size: 40px;
        margin: 0 0 15px 0;
    }
    .share-row::before,
    .share-row::after{
        display: none;
    }
    body .iw-image-box.style1{
        position: relative;
    }
    .iw-image-box.style1 span::after{
        display: none;
    }
    .iw-image-box.style1 span:nth-child(1),
    .iw-image-box.style1 span:nth-child(2),
    .iw-image-box.style1 span:nth-child(3){
        position: relative;
        top: 0;
        left: 0;
    }
    .iwe-speaker-block.style3 .speakers-with-quote .speakers-item,
    .iwe-speaker-block.style3 .speakers-with-quote .speakers-item.item-quote {
        float: none;
        height: auto;
        width: 100%;
    }
    .iwe-speaker-block.style3 .speakers-with-quote .speakers-item.item-quote .quote-title {
        font-size: 40px;
        margin: 20px 0 0 15px;
    }
    .iwe-speaker-block.style3 .speakers-with-quote .speakers-item.item-quote .quote-desc{
        margin-left: 0;
    }
    .iwe-speaker-block.style3 .speakers-with-quote .speakers-item.item-quote .quote-desc::after{
        display: none;
    }
    .iwe-speaker-block.style3 .speakers-with-quote .speakers-item.item-quote {
        padding: 30px 30px 0 15px;
    }
    .iwe-speaker-block.style3 .speakers-with-quote .speakers-item.item-quote .quote-name{
        margin: 15px 0;
    }
    .iw-heading.style5 .iwh-title{
        font-size: 30px;
        padding-bottom: 15px;
    }
    .iw-heading.style5 .iwh-sub-title {
        font-size: 14px;
        width: auto;
        padding: 0;
    }

    .iw-heading.style4 .iwh-title::after{
        display: none;
    }
    .iw-jwu-box p {
        font-size: 16px;
        padding: 0;
    }
    body .iw-row-time-table {
        margin-left: -15px !important;
        margin-right: -15px !important;
        padding-left: 0!important;
    }
    .iwe-schedule.style1 > h4{
        margin-left: 0;
    }
    .iwe-schedule.style1 .scheduce-wrapper li span {
        line-height: 26px;
        text-align: left;
        width: 100%;
    }
    .iwe-schedule.style1 .scheduce-wrapper li small{
        margin-left: 0;
    }
    .iwe-checkout.style3{
        left: 0;
        padding: 15px;
        position: relative;
    }
    .iwe-checkout.style3 textarea{
        height: 130px;
    }
    .iwe-checkout.style3 .iwe-title-block .iwe-title {
        font-size: 18px;
        line-height: 24px;
    }
    .iwe-sponsor-block.style2 .one-page-education-sponsor .sponsors .sponsor-item {
        border: 0 none;
        padding: 0;
        text-align: center;
    }
    .iw-row-time-table .vc_single_image-wrapper::after,
    .iw-row-time-table .vc_single_image-wrapper::before,
    .iw-row-time-table .wpb_single_image::before,
    .iw-row-time-table .wpb_single_image::after{
        display: none;
    }
    .iw-row-time-table .wpb_single_image.vc_align_right,
    .iw-row-time-table .wpb_single_image.vc_align_left{
        text-align: center;
    }

    .iwe-sponsor-block.style2 .sponsor-item .sponsor-image img{
        width: auto;
    }
    .iw-mailchimp-form.style1 {
        height: auto;
    }
    .iw-mailchimp-form.style1 .iw-video .iw-video-content {
        color: inherit;
        padding: 0;
        position: absolute;
    }
    .iw-mailchimp-form.style1 .iw-video-content > p{
        display: none;
    }
    .iw-mailchimp-form.style1 .iw-video-content > h3 {
        font-size: 16px;
        line-height: 16px;
    }
    .iw-mailchimp-form.style1 input {
        font-size: 12px;
        height: 30px;
        line-height: 50px;
        width: 250px;
        margin: 10px 0;
    }
    .iw-mailchimp-form.style1 button {
        font-size: 14px;
        height: 30px;
        line-height: 20px;
        margin-left: 0;
        padding: 5px 15px;
        width: 130px;
    }
    .iw-posts.style3 .post-item h3{
        padding: 30px 0;
    }
    .inwave-map.style2 .image-rotate img {
        width: 100%;
    }
    .iw-posts.style3 .post-item .read-more{
        margin-bottom: 25px;
    }
    .inwave-map.style2 .map-overlay {
        height: 50%;
        left: 0;
        position: absolute;
        top: 0;
        width: auto;
        z-index: 1;
    }
    .inwave-map.style2 .map-overlay-inner {
        height: 100%;
        overflow: hidden;
        position: relative;
        transform: rotate(0deg);
        width: 100%;
        z-index: 11;
    }
    .inwave-map.style2 .image-rotate {
        height: 100%;
        position: relative;
        transform: rotate(0deg);
        width: auto;
    }
    .inwave-map.style2 .map-content-wraper {
        left: 0;
        padding-left: 0;
        position: absolute;
        top: 15%;
        transform: rotate(0deg);
        z-index: 99;
    }
    .inwave-map.style2 .map-content-wraper .title {
        margin: 0 0 10px 15px;
    }
    .inwave-map.style2 .description::after{
        display: none;
    }
    .inwave-map.style2 .map-info{
        display: none;
    }
    .inwave-map.style2 .description {
        font-size: 18px;
        max-width: 300px;
    }
    .iwe-speaker-block.style8 .speaker-item .speaker-detail {
        position: relative;
        top: auto;
        padding: 20px 0;
    }
    .iwe-speaker-block.style8 .speaker-item .speaker-detail .speaker-name, .iwe-speaker-block.style8 .speaker-item .speaker-detail .speaker-position {
        font-size: 16px;
        line-height: 24px;
    }
    .iwe-speaker-block.style8 .speaker-item .speaker-detail .speaker-desc {
        font-size: 14px;
        line-height: 24px;
        margin-top: 5px;
    }

    /*End TruongDX*/

    .iwevent-map.all-events .map-preview{
        height: 300px !important;
    }
}

@media (max-width: 479px) {

    .iwe-speaker-block.style8 .custom-navigation .title-block h3 {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 15px;
    }
    .iwe-speaker-block.style8 .custom-navigation {
        top: 25px;
    }
    .iwe-speaker-block.style8 .custom-navigation .title-block h3 {
        margin-bottom: 15px;
    }
    .iwe-speaker-block.style8 .nav-thumbnail {
        display: none;
    }
    .infunding-listing-page .filter-item form select {
        margin-left: 0;
    }
    .infunding-listing-page .filter-form .select2-container {
        margin: 15px 0 0 0;
    }
    .infunding-listing-page .filter-form .order-dir {
        top: 4px;
    }
    .iw-event-facts .event-facts-inner {
        position: relative;
        margin-top: 20px;
    }
    .iw-event-fact-item .event-fact-desc::after {
        background-color: #ffffff;
    }
    .iw-slider-shortcode .dg-container {
        height: auto !important;
        padding: 0 !important;
    }
    .iw-slider-shortcode .dg-wrapper .slider-box {
        -webkit-transform: none !important;
        transform: none !important;
        position: relative !important;
    }
    .iw-slider-shortcode .dg-wrapper .slider-box .item-image {
        height: 220px;
        line-height: 220px;
        width: 220px;
        margin: 0 auto 15px;
    }
    .iw-slider-shortcode .slider-top .item-title {
        bottom: 30px !important;
    }
    .iw-slider-shortcode .dg-wrapper {
        width: 100% !important;
    }
    .iw-slider-shortcode .dg-center.style1 .slider-top .item-title,
    .iw-slider-shortcode .dg-center.style3 .slider-top .item-title {
        color: #ffffff !important;
        font-size: 14px !important;
    }
    .iw-slider-shortcode .dg-center .slider-top .item-title {
        font-size: 12px !important;
    }
    .iw-campaign-listing-slider .owl-controls {
        top: calc(50% - 180px);
    }
    .iw-slider-shortcode .item-info-view .item-info {
        padding: 0;
    }
    .iw-slider-shortcode .iw-slider-action-button div {
        float: none !important;
    }
    .featured-events-content .custom-controls .owl-controls {
        top: 15px;
        right: 40px !important;
    }

    .iw-contact-address .title_contact_form:after {
        display: none;
    }
    /*-------------- Responsive one page education -------------*/
    .header-content h2 {
        font-size: 30px;
        line-height: 32px;
    }
    .header-block-1 .header-content > span {
        font-size: 14px;
        line-height: 30px;
    }
    .header-overlay {
        background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        transform: translateX(0%) skew(0deg);
        width: 100%;
        z-index: 0;
    }
    .shape_content {
        color: rgb(255, 255, 255);
        position: relative;
        right: 0;
        top: 63%;
        transform: skewX(0deg);
    }
    .shape_content .inwave-countdown::before {
        display: none;
    }
    .shape_content .inwave-countdown::after {
        content: "";
        height: 100%;
        position: absolute;
        right: 0;
        transform: skewX(0deg);
        width: auto;
        z-index: -1;
    }
    .shape_content .inwave-countdown {
        left: 0;
        position: fixed;
        right: 0;
        top: auto;
        width: 300px;
    }
    .shape_content .date-countdown.day-count::after,
    .shape_content .date-countdown.day-count::before,
    .shape_content .date-countdown.hour-count::before,
    .shape_content .date-countdown.hour-count::after,
    .shape_content .date-countdown.minute-count::before,
    .shape_content .date-countdown.minute-count::after{
        display: none;
    }
    .shape_content .date {
        font-size: 24px;
        line-height: 32px;
        margin-top: 0;
    }
    .shape_content .date-label {
        font-size: 16px;
        line-height: 30px;
        margin-bottom: 0;
        margin-top: 0;
    }
    .shape_content .join_us > a::before,
    .shape_content .join_us > a::after{
        display: none;
    }
    .shape_content .join_us {
        right: auto;
        left: 50px;
        top: 70px;
    }
    .shape_content .join_us > a {
        border: 1px solid rgb(255, 255, 255);
        border-radius: 30px;
        display: block;
        padding: 10px 25px;
        font-size: 14px;
        line-height: 32px;
    }
    .shape_content .join_us > a i{
        display: none;
    }

    body .iw-image-box.style1{
        position: relative;
    }
    .iw-image-box.style1 span::after{
        display: none;
    }
    .iw-image-box.style1 span:nth-child(1),
    .iw-image-box.style1 span:nth-child(2),
    .iw-image-box.style1 span:nth-child(3){
        position: relative;
        top: 0;
        left: 0;
    }
    .iwe-speaker-block.style3 .speakers-with-quote .speakers-item,
    .iwe-speaker-block.style3 .speakers-with-quote .speakers-item.item-quote {
        float: none;
        height: auto;
        width: 100%;
    }
    .iwe-speaker-block.style3 .speakers-with-quote .speakers-item.item-quote .quote-title {
        font-size: 40px;
        margin: 20px 0 0 15px;
    }
    .iwe-speaker-block.style3 .speakers-with-quote .speakers-item.item-quote .quote-desc{
        margin-left: 0;
    }
    .iwe-speaker-block.style3 .speakers-with-quote .speakers-item.item-quote .quote-desc::after{
        display: none;
    }
    .iwe-speaker-block.style3 .speakers-with-quote .speakers-item.item-quote {
        padding: 30px 30px 0 15px;
    }
    .iwe-speaker-block.style3 .speakers-with-quote .speakers-item.item-quote .quote-name{
        margin: 15px 0;
    }
   	.iw-heading.style5 .iwh-title{
        font-size: 30px;
        padding-bottom: 15px;
    }
    .iw-heading.style5 .iwh-sub-title {
        font-size: 14px;
        width: auto;
        padding: 0;
    }
    .iw-heading.style4 .iwh-title::after{
        display: none;
    }
    .iw-jwu-box p {
        font-size: 16px;
        padding: 0;
    }
    body .iw-row-time-table {
        margin-left: -15px !important;
        margin-right: -15px !important;
        padding-left: 0!important;
    }
    .iwe-schedule.style1 > h4{
        margin-left: 0;
    }
    .iwe-schedule.style1 .scheduce-wrapper li span {
        line-height: 26px;
        text-align: left;
        width: 100%;
    }
    .iwe-schedule.style1 .scheduce-wrapper li small{
        margin-left: 0;
    }
    .iwe-checkout.style3{
        left: 0;
        padding: 15px;
        position: relative;
    }
    .iwe-checkout.style3 textarea{
        height: 130px;
    }
    .iwe-checkout.style3 .iwe-title-block .iwe-title {
        font-size: 18px;
        line-height: 24px;
    }
    .iwe-sponsor-block.style2 .sponsor-item .sponsor-image img{
        width: auto;
    }
    .iw-mailchimp-form.style1 {
        height: auto;
    }
    .iw-mailchimp-form.style1 .iw-video .iw-video-content {
        color: inherit;
        padding: 0;
        position: absolute;
    }
    .iw-mailchimp-form.style1 .iw-video-content > p{
        display: none;
    }
    .iw-mailchimp-form.style1 .iw-video-content > h3 {
        font-size: 16px;
        line-height: 16px;
    }
    .iw-mailchimp-form.style1 input {
        font-size: 12px;
        height: 30px;
        line-height: 50px;
        width: 250px;
        margin: 10px 0;
    }
    .iw-mailchimp-form.style1 button {
        font-size: 14px;
        height: 30px;
        line-height: 20px;
        margin-left: 0;
        padding: 5px 15px;
        width: 130px;
    }
    .iw-posts.style3 .post-item h3{
        padding: 15px 0;
    }
    .iw-posts.style3 .post-item .read-more{
        margin-bottom: 25px;
    }






    .inwave-map.style2 .map-overlay {
        height: 50%;
        left: 0;
        position: absolute;
        top: 0;
        width: auto;
        z-index: 1;
    }
    .inwave-map.style2 .map-overlay-inner {
        height: 100%;
        overflow: hidden;
        position: relative;
        transform: rotate(0deg);
        width: 100%;
        z-index: 11;
    }
    .inwave-map.style2 .image-rotate {
        height: 100%;
        position: relative;
        transform: rotate(0deg);
        width: auto;
    }
    .inwave-map.style2 .map-content-wraper {
        left: 0;
        padding-left: 0;
        position: absolute;
        top: 15%;
        transform: rotate(0deg);
        z-index: 69;
    }
    .inwave-map.style2 .map-content-wraper .title {
        margin: 0 0 10px 15px;
    }
    .inwave-map.style2 .description::after{
        display: none;
    }
    .inwave-map.style2 .map-info{
        display: none;
    }
    .inwave-map.style2 .description {
        font-size: 18px;
        max-width: 300px;
    }
    .inwave-map.style2 .map-content-wraper .title{
        font-size: 30px;
    }
    .iwe-speaker-block.style8 .speaker-flex-slider {
        background: #101010;
    }
    .iwe-speaker-block.style8 .custom-navigation .title-block h3 {
        font-size: 14px;
        line-height: 20px;
    }
    .iwe-speaker-block.style8 .custom-navigation .navigation a {
        font-size: 14px;
        height: 30px;
        line-height: 26px;
        width: 30px;
    }
    .iwe-speaker-block.style8 .speaker-item .speaker-detail {
        position: relative;
        top: auto;
        padding: 20px 0;
    }
    .iwe-speaker-block.style8 .speaker-item .speaker-detail .speaker-name, .iwe-speaker-block.style8 .speaker-item .speaker-detail .speaker-position {
        font-size: 16px;
        line-height: 24px;
    }
    .iwe-speaker-block.style8 .speaker-item .speaker-detail .speaker-desc {
        font-size: 14px;
        line-height: 24px;
        margin-top: 5px;
    }
    .iwe-speaker-block.style8 .nav-thumbnail li {
        width: 100px !important;
    }
    .iw-heading.style12 .iwh-sub-title {
        margin: 0 0 -27px;
        font-size: 50px;
        line-height: 72px;
        text-align: center;
    }
    .iwe-speaker-block.style8 .nav-thumbnail li {
        margin-right: 10px;
    }
}
@media (max-width: 360px) {
    .infunding-listing-page .filter-item form select {
        margin-top: 15px;
    }
    .iw-slider-shortcode .iw-slider-action-button .iw-register-button {
        float: none;
    }
    .iw-campaign-listing-slider .owl-controls {
        top: calc(50% - 255px);
    }
    .iw-contact-address.iw-contact-us .form-submit span {
        display: block;
        margin: 10px 15px 0;
    }
    .inwave-map.style2 .map-content-wraper .title {
        font-size: 40px;
    }

}
@media (max-width: 320px){
    .iw-heading.style1 .iwh-title strong {
        font-size: 45px;
    }

}
