/* Component style */
/*** News Component ***/
/** News Type A **/
.news-typeA .datepicker {
  margin-bottom: 5px;
  display: block;
}

.news-typeA .datepicker .fa {
  margin-right: 7px;
}

.news-typeA .link-wrapper .news-link:first-child {
  margin-bottom: 15px;
}
/** News Type A **/

/** News Style 1 **/
.news-style-1 .image-wrapper,
.news-style-1 .news-content {
  display: inline-block;
  vertical-align: top;
}

.news-style-1 .image-wrapper {
  width: 72px;
}

.news-style-1 .news-content {
  width: calc(100% - 5px - 72px - 24px);
  margin-left: 24px;
}
/** News Style 1 **/
/*** News Component ***/

/*** Currency Component ***/
/** Currency Type A **/
.currency-type-A .currency-country-logo {
  text-align: right;
  width: 40px;
  line-height: 1.1;
}

.currency-type-A .currency-buying-rate {
  margin-bottom: 3px;
}

.currency-type-A .currency-selling-rate {
  margin-bottom: 0;
}
/** Currency Type A **/

/** Currency Style 1 **/
.currency-style-1 .currency-country-logo,
.currency-style-1 .currency-rates-wrapper {
  display: inline-block;
}

.currency-style-1 .currency-country-logo {
  padding-right: 12px;
  border-right-width: 1px;
  border-right-style: solid;
  margin-right: 6px;
  padding-bottom: 4px;
}
/** Currency Style 1 **/
/*** Currency Component ***/

/** START Header -  blank **/
body.menu-open{
    overflow:hidden;
}
header{
    position:relative;
    z-index:101;
}
header[data-fixed=true]{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:62px;
}
#branding {
    display: block;
    max-width:50%;
    padding:10px;
}
    .logo{
        display:block;
        width:100%;
        height:100%;
    }
        .logo img{
            display:block;
        }
        
#main-menu{
    position:absolute;
    display:none;
}
#more-menu-wrapper{
    position:fixed;
    width:100%;
    left:0;
    height:calc(100vh - 62px);
    z-index:2;
    top:62px;
    padding:20px 0;
    box-sizing:border-box;
    overflow: auto;
    opacity:0;
    pointer-events:none;
    -webkit-transition: opacity 0.5s ease;
    -ms-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
}
.menu-open #more-menu-wrapper {
    opacity: 1;
    pointer-events: auto;
}

    header .menu li {
        margin-bottom: 0;
        text-align: center;
        border-top-width: 1px;
        border-top-style: solid;
    }
        header .menu li a {
            padding:10px 10px 10px;
            display: inline-block;
            vertical-align: middle;
        }
        .sub-menu-arrow {
            border-width: 0 0 2px 2px;
            border-style: solid;
            margin-left:5px;
            width: 12px;
            height: 12px;
            display: inline-block;
            vertical-align: middle;
            position: relative;
            top: -5px;
            -webkit-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
            -webkit-transition: -webkit-transform 0.5s ease, top 0.5s ease;
            -ms-transition: -ms-transform 0.5s ease, top 0.5s ease;
            transition: transform 0.5s ease, top 0.5s ease;
            
        }
        .sub-menu-open .sub-menu-arrow{
            top: 3px;
            -webkit-transform: rotate(135deg);
            -ms-transform: rotate(135deg);
            transform: rotate(135deg);
        }
        header .menu ul ul{
            margin:0;
            width: 80%;
            margin: 0 auto;
            height:0;
            overflow:hidden;
            
            -webkit-transition: height 0.5s ease;
            -ms-transition: height 0.5s ease;
            transition: height 0.5s ease;
        }

#reservation-btn {
    position: fixed;
    width: 100%;
    height: auto;
    left: 0;
    bottom: 0;
    z-index:1;
}
    header .primary-button {
        display: block;
        padding: 17px 15px;
    }

#menu-btn {
    position: absolute;
    right: 20px;
    width: 25px;
    height: 20px;
    top: 50%;
    cursor: pointer;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
#menu-btn .menu-line {
    display: block;
    width: 100%;
    height: 1px;
    margin-bottom: 5px;
    position: absolute;
    left: 0;
}
    #menu-btn .menu-line.line-one {
        top: 1px;
    }
    #menu-btn .menu-line.line-two {
        top: 9px;
        opacity:1;
        -webkit-transition: opacity 0.1s ease 0.3s;
        -ms-transition: opacity 0.1s ease 0.3s;
        transition: opacity 0.1s ease 0.3s;
    }
    #menu-btn .menu-line.line-three {
        top: 17px;
    }
    
    #menu-btn.menu-close-btn .menu-line.line-one{
        top:9px;
        -webkit-transform:rotate(45deg);
        -ms-transform:rotate(45deg);
        transform:rotate(45deg);
    }
    #menu-btn.menu-close-btn .menu-line.line-three{
        top:9px;
        -webkit-transform:rotate(-45deg);
        -ms-transform:rotate(-45deg);
        transform:rotate(-45deg);
    }
    
    #menu-btn .menu-line.line-one,
    #menu-btn .menu-line.line-three {
        transition: top 0.3s ease, transform 0.3s ease 0.4s;
        -ms-transition: top 0.3s ease, -ms-transform 0.3s ease 0.4s;
        transition: top 0.3s ease, transform 0.3s ease 0.4s;
    }
    #menu-btn.menu-open-btn .menu-line.line-one,
    #menu-btn.menu-open-btn .menu-line.line-three{
        -webkit-transition: -webkit-transform 0.3s ease, top 0.3s ease 0.4s;
        -ms-transition: -ms-transform 0.3s ease, top 0.3s ease 0.4s;
        transition: transform 0.3s ease, top 0.3s ease 0.4s;
    }
    #menu-btn.menu-close-btn .menu-line.line-two{
        opacity:0;
    }
#main-menu .active:not(.sub-menu-active) > a,
#more-menu .active:not(.sub-menu-active) > a{
    cursor: default;
    pointer-events: none;
}
    
@media (min-width:750px){
    #branding {
        width: 152px;
    }
    #reservation-btn {
        position: absolute;
        width: auto;
        height: 62px;
        right: 65px;
        top: 50%;
        bottom:auto;
        left:auto;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
        header .primary-button {
            padding: 0 20px;
            height: 100%;
            box-sizing: border-box;
            line-height: 62px;
        }
} 
@media (min-width:1200px){
    header{
        -webkit-transition:all 0.5s ease;
        -ms-transition:all 0.5s ease;
        transition:all 0.5s ease;
    }
    header > .container{
        text-align:right;
    }
    #branding {
        position:absolute;
        left:0;
    }
    #main-menu {
        position: relative;
        display: inline-block;
        vertical-align: middle;
    }
        .main-menu {
            margin-bottom: 0;
        }
            header .menu li {
                border-top-width: 0;
                display: inline-block;
                vertical-align: middle;
                position:relative;
            }
                header .menu ul ul {
                    margin: 0;
                    width: auto;
                    min-width:350px;
                    margin: 0 auto;
                    height: auto;
                    overflow: hidden;
                    -webkit-transition: opacity 0.5s ease, top 0.5s ease;
                    -ms-transition: opacity 0.5s ease, top 0.5s ease;
                    transition: opacity 0.5s ease, top 0.5s ease;
                    position: absolute;
                    left:50%;
                    top:120%;
                    -webkit-transform:translateX(-50%);
                    -ms-transform:translateX(-50%);
                    transform:translateX(-50%);
                    
                    opacity:0;
                    pointer-events:none;
                }
                header .menu ul li.sub-menu-open ul {
                    opacity:1;
                    top:100%;
                    pointer-events:auto;
                }
                    header .menu ul ul li{
                        display:block;
                    }
    #reservation-btn {
        position: relative;
        width: auto;
        height: auto;
        right: 0;
        top: 0;
        bottom: auto;
        left: auto;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        display: inline-block;
        vertical-align: middle;
        margin-right: 65px;
        margin-left: 20px;
    }
    body.menu-open {
        overflow: visible;
    }
    #more-menu-wrapper {
        position: absolute;
        width: auto;
        right: 0;
        left:auto;
        height: auto;
        top: 120%;
        padding: 0 20px;
        -webkit-transition: opacity 0.5s ease, top 0.5s ease;
        -ms-transition: opacity 0.5s ease, top 0.5s ease;
        transition: opacity 0.5s ease, top 0.5s ease;
    }
    .menu-open #more-menu-wrapper {
        top: 100%;
    }
        .more-menu li{
            display:block;
        }
}
/** END Header -  blank **/
/** START Social Media - Original Bg Colors No Label **/
.no-content{
    display: none !important;
}
.social-media.noLabel{
    text-align: center;
    margin-bottom: 30px;
}
.social-media a{
    text-decoration: none;
}
.social-media h3{
    display: block;
}
/*.social-media a{
    color: #a4a4a4;
}
.social-media .sm-item .fa {
    color:#353637;
}

.social-media .sm-item .fa {
	background-color: #a4a4a4;
}*/
    .social-media .social-media-wrapper{
        display: block;
        text-align:center;
        vertical-align: middle;
        max-width: 100%;
        margin: 0 auto;
    }
    .social-media .social-media-wrapper li{
        display: inline-block;
        margin: 3px 5px;
    }
            .social-media .sm-item a,
            .social-media .sm-item a .fa{
                -webkit-transition:all 0.5s ease;
                -ms-transition:all 0.5s ease;
                transition:all 0.5s ease;
            }
	.social-media .sm-item .fa {
		width: 35px;
		height: 35px;
		/*background-color: #a4a4a4;*/
		border-radius: 100%;
		position: relative;
		/*color:#353637;*/
		text-align:center;
	}
	.social-media.originalBg .sm-item .fa-facebook,
	.social-media.originalBg .sm-item .facebook:hover .fa-facebook{
	    background-color: #3b5998;
	}
	.originalIcon.social-media.noBg .sm-item .fa-facebook:before{
	    color: #3b5998;
	}
	.social-media.originalBg .sm-item .fa-twitter,
	.social-media.originalBg .sm-item .twitter:hover .fa-twitter{
	    background-color: #00aced;
	}
	.originalIcon.social-media.noBg .sm-item .fa-twitter:before{
	    color: #00aced;
	}
	.social-media.originalBg .sm-item .fa-google-plus,
	.social-media.originalBg .sm-item .google-plus:hover .fa-google-plus{
	    background-color: #dd4b39;
	}
	.originalIcon.social-media.noBg .sm-item .fa-google-plus:before{
	    color: #dd4b39;
	}
	.social-media.originalBg .sm-item .fa-youtube-play,
	.social-media.originalBg .sm-item .fa-youtube,
	.social-media.originalBg .sm-item .youtube-play:hover .fa-youtube-play,
	.social-media.originalBg .sm-item .youtube:hover .fa-youtube{
	    background-color: #bb0000;
	}
	.originalIcon.social-media.noBg .sm-item .fa-youtube-play:before,
	.originalIcon.social-media.noBg .sm-item .fa-youtube:before{
	    color: #bb0000;
	}
	.social-media.originalBg .sm-item .fa-tripadvisor,
	.social-media.originalBg .sm-item .tripadvisor:hover .fa-tripadvisor{
	    background-color: #00a680;
	}
	.originalIcon.social-media.noBg .sm-item .fa-tripadvisor:before{
	    color: #00a680;
	}
	.social-media.originalBg .sm-item .fa-instagram,
	.social-media.originalBg .sm-item .instagram:hover .fa-instagram{
	    background-color: #517fa4;
	}
	.originalIcon.social-media.noBg .sm-item .fa-instagram:before{
	    color: #517fa4;
	}
	.social-media.originalBg .sm-item .fa-linkedin,
	.social-media.originalBg .sm-item .linkedin:hover .fa-linkedin{
	    background-color: #0077b5;
	}
	.originalIcon.social-media.noBg .sm-item .fa-linkedin:before{
	    color: #0077b5;
	}
	.social-media.originalBg .sm-item .fa-pinterest-p,
	.social-media.originalBg .sm-item .fa-pinterest,
	.social-media.originalBg .sm-item .pinterest-p:hover .fa-pinterest-p,
	.social-media.originalBg .sm-item .pinterest:hover .fa-pinterest{
	    background-color: #cb2027;
	}
	.originalIcon.social-media.noBg .sm-item .fa-pinterest-p:before,
	.originalIcon.social-media.noBg .sm-item .fa-pinterest:before{
	    color: #cb2027;
	}
                
.social-media .sm-item .fa:before {
	line-height: 36px;
	color: #fff;
}
.social-media.noLabel .sm-label,
.social-media.showLabel .sm-label{
	display: none;
}
.flatIcon.noBg .sm-item .fa,
.originalIcon.noBg .sm-item .fa{
    background-color: transparent;
}
.social-media.noBg .sm-item .fa:before{
    color: #a4a4a4;
    font-size: 23px;
}
.social-media.showLabel .social-media-wrapper li {
    margin: 3px 2.5%;
}
            
 
@media (min-width: 750px) {
    .social-media h3{
        display: inline-block;
        vertical-align: middle;
        margin-right: 8px;
    }        
}
@media (min-width: 1024px) {
    .social-media.showLabel .sm-label{
        display: inline-block;
        margin-left: 10px;
        font-size: 13px;
    }
    footer .social-media .sm-label{
        font-size: 10px;
        margin-left: 5px;
    }
    .social-media.showLabel .social-media-wrapper li {
        margin: 3px 20px 3px 0;
    }
    .columns.six .social-media.showLabel .social-media-wrapper li {
        margin: 3px 15px 3px 0;
        width: 28%;
    }
    .columns.six .social-media.showLabel .social-media-wrapper {
        text-align: left;
    }
    .columns.four .social-media.showLabel .social-media-wrapper li {
        margin: 3px 10px 3px 0;
        width: 44%;
    }
    .columns.four .social-media.showLabel .social-media-wrapper {
        text-align: left;
    }
    .columns.three .social-media.showLabel .sm-label{
        display: none;
    }
}
@media (min-width: 1200px) {
    .social-media.showLabel .sm-label {
    	display: inline-block;
    	font-size: 0.8em;
    	letter-spacing: 0.2px;
    	margin-left: 12px;
    }
    /*.social-media .sm-item a:hover{
        opacity: 0.7;
    }*/
    .social-media.noLabel .sm-label{
		display: none;
	}
	.social-media.showLabel .social-media-wrapper li {
        margin: 3px 20px 3px 0;
    }
    .columns.three .social-media.showLabel .social-media-wrapper li,
    .columns.four .social-media.showLabel .social-media-wrapper li{
        margin: 3px 8px 3px 0;
        width: 46%;
    }
    .columns.five .social-media.showLabel .social-media-wrapper li,
    .columns.six .social-media.showLabel .social-media-wrapper li {
        margin: 3px 15px 3px 0;
        width: 20%;
    }
    .columns.two .social-media.showLabel .social-media-wrapper,
    .columns.three .social-media.showLabel .social-media-wrapper,
    .columns.four .social-media.showLabel .social-media-wrapper,
    .columns.five .social-media.showLabel .social-media-wrapper,
    .columns.six .social-media.showLabel .social-media-wrapper {
        text-align: left;
    }
    .columns.four .social-media.showLabel .social-media-wrapper {
        text-align: left;
    }
    .columns.three .social-media.showLabel .sm-label{
        display: inline-block;
    }
}
/** END Social Media - Original Bg Colors No Label **/
/** START Main Block - blank **/

.main-block{
    margin-top:40px;
}

@media (min-width: 1000px) {
	.main-block{
		 margin-top:100px;
	}
}
/** END Main Block - blank **/
/** START Copyright Bar - blank **/
.bottom-bar {
	margin-top: 25px;
	border-top: 1px solid #575859;
	padding-top: 20px;
	padding-bottom: 15px;
}
    footer .container.copyright-bar {
    	font-size: 0.7em;
    	padding-top: 0;
    }
    .copyright-bar p {
    	text-align:center;
    }
       
@media (min-width: 750px) {
     footer .container.copyright-bar {
    	font-size: 0.7em;
    	padding: 0 20px 20px;
    }
    .copyright-bar p {
    	margin: 0;
    	width: 50%;
    	float: left;
    	text-align:left;
    }
        .copyright-bar p.designed-by{
            text-align :right;
        }
}
 /* Larger than desktop */
@media (min-width: 1000px) {
     footer .container.copyright-bar {
        font-size:0.72em;
    	width: 90%;
    	padding: 0;
    }
        .copyright-bar p {
        	letter-spacing: 0.1px;
        }    
}
/** END Copyright Bar - blank **/
/** START Contact Details with icons - blank **/
.contact-detail {
	font-style: normal;
	margin-bottom: 5px;
	margin-left: 0;
	padding-left: 25px;
	position: relative;
}
/** END Contact Details with icons - blank **/
/** START xMenu vertical with Heading **/

nav.menu ul{
     margin:0;
     padding:0;
     list-style-type:none;
}

nav.menu ul li{
    margin:10px 0;
}

nav.menu ul li a{
   display:block;
   text-decoration:none;
}
/** END xMenu vertical with Heading **/
/** START Footer - Galley52 **/
/*Footer - blank*/
/** copyright -blank **/
/** START Social Media - Flat Bg Colors With Text **/
.social-media.typeA .social-media-wrapper a{
    text-decoration: none;
}
.social-media.typeA .social-media-wrapper li{
    color: #a4a4a4;
}
.social-media.typeA .social-media-wrapper {
	list-style-type: none;
	display:-ms-flex;
	display:-webkit-flex;
	display:flex;
	align-items:center;
	margin-bottom :0;
}
.social-media.typeA .social-media-wrapper li{
    text-align:center;
	flex-grow: 1;
	margin-bottom :0;
}
.social-media.typeA .sm-item a,
.social-media.typeA .sm-item a .fa{
    -webkit-transition:all 0.5s ease;
    -ms-transition:all 0.5s ease;
    transition:all 0.5s ease;
}
   .social-media.typeA .sm-item .fa {
    	width: 28px;
    	height: 28px;
    	background-color: #a4a4a4;
    	border-radius: 100%;
    	position: relative;
    	color:#353637;
    	text-align:center;
    }
    .social-media.typeA .sm-label{
        display:none;
    }
        .social-media.typeA .sm-item .fa::before {
        	line-height:28px;
        }
        .social-media.typeA .sm-item a:hover{
            color:#fff;
        }
        .social-media.typeA .sm-item a:hover .fa{
            background-color:#fff;
        }

 /* Larger than desktop */
@media (min-width: 1000px) {
.social-media.typeA .social-media-wrapper {
	display: block;
	margin-bottom: 0;
}
    .social-media.typeA .social-media-wrapper li {
    	text-align: left; 
    	margin-bottom: 9px;
    	width: 33%;
    	float:left;
    }
}

 /* Larger than desktop */
@media (min-width: 1200px) {
.social-media.typeA .social-media-wrapper li{
    width:50%;
}
.social-media.typeA .sm-label {
	display: inline-block;
	font-size: 0.87em;
	letter-spacing: 0.2px;
	margin-left: 12px;
}
	
}
/** END Social Media - Flat Bg Colors With Text **/
/** START Footer - Galley52 **/
footer.five-columns{
	padding: 43px 0 0px;
}
    footer .columns {
    	text-align: center;
    	display: block;
    	margin-bottom: 20px;
    	margin-left: 0px;
    	padding-bottom: 20px;
    	border-bottom-width: 1px;
    	border-bottom-style: solid;
    }
    footer .columns.last-column {
    	padding-bottom: 0;
    	border-bottom: none;
    }
        footer h3 {
            font-size: 1.15em;
            letter-spacing: 2px;
            margin-bottom: 18px;
        }
            footer nav.menu ul li {
                margin: 0 0 8px;
                text-align: center;
            }
            footer .contact-detail {
            	padding-left: 0;
            }
            footer p {
            	line-height: 2;
            }
            footer .social-media .sm-item a{
                display:block;
            }
                footer .social-media .sm-item .fa {
                	width: 23px;
                	height: 23px;
                }
                    footer .social-media .sm-item .fa:before {
                    	line-height: 25px;
                    }
        .apps-image-wrapper {
        	width: 153px;
        	height: 48px;
        	margin: 0 auto 15px;
        	position:relative;
        }
        .app-link{
            position:absolute;
            top:0;
            left:0;
            width:100%;
            height:100%;
        }
        .payment-method-column p {
        	margin-bottom: 10px;
        }   
            .payment-method-column p:before {
            	content: "";
            	width: 22px;
            	height: 22px;
            	display: inline-block;
            	background-image: url(/images/component_images/tick.png);
            	vertical-align: top;
            	margin-right: 5px;
            }
        .pay-image {
        	width: 35px;
        }
    .bottom-bar {
    	margin-top: 0;
    	border-top-width:1px;
    	border-top-style:solid;
    	padding-top: 15px;
    	padding-bottom: 15px;
    }
        footer .container.copyright-bar{
            padding-bottom:0;
            font-size: 0.9em;
        }
        .copyright-bar p {
        	margin: 0;
        }
        
        .contact-details .contact-detail.fa-map-marker:before {
        	font-size: 18px;
        	line-height: 1.5;
        }
        
@media (min-width:1000px){
    footer > .container {
    	min-height: 263px;
    }
    footer .columns {
    	text-align: left;
    	margin-left: 3%;
    	border-bottom:none;
    }
    .columns.footer-menu {
    	width: 12%;
    }
    .columns.social-column {
    	width: 16%;
    }
    .columns.app-column {
    	width: 26%;
    }
    .columns.location-column {
    	width: 15%;
    }
    .columns.contact-column {
    	width: 19%;
    }
        footer nav.menu ul li {
        	text-align: left;
        }
        
        footer .social-media .social-media-wrapper {
        	text-align: left;
        }
            footer .social-media.showLabel .social-media-wrapper li {
            	margin: 0px 0 16px;
            	width: 100%;
            }
            footer .social-media.showLabel .sm-label {
            	margin-left: 0px;
            }
                footer .social-media .sm-item .fa {
                	margin-right: 15px;
                }
                    footer .social-media.showLabel .sm-label {
                    	display: inline-block; 
                    }
        .apps-image-wrapper {
        	margin: 0 0 15px;
        }
        footer.five-columns .contact-detail {
        	padding-left: 25px;
        }
        .columns.payment-method-column {
        	position: absolute;
        	right: 0;
        	bottom: 6px;
        	width: auto;
        	margin: 0;
        }
            .payment-method-column p {
            	margin-bottom: 10px;
            	font-size: 0.95em;
            	width: 116px;
            	line-height: 1.2;
            	padding-left: 0;
            	float: left;
            }
                .payment-method-column p:before {
                	position: absolute;
                	top: 5px;
                	left: -29px;
                }
                .pay-image {
                	position: relative;
                	top: 5px;
                }
}

@media (min-width:1200px){
    footer > .container {
    	min-height: 256px;
    }
    footer .columns {
    	margin-left: 4%;
    }
    .columns.footer-menu {
    	width: 14.6%;
    }
    .columns.social-column {
    	width: 15.7%;
    }
    .columns.app-column {
    	width: 22%;
    }
    .columns.location-column {
    	width: 13%;
    }
    .columns.contact-column {
    	width: 15%;
    	margin-left: 6.8%;
    }
}
/** END Footer - Galley52 **/
/** START Main Row - blank **/

.main-row{
    margin-bottom:40px;
}

@media (min-width: 1000px) {
	.main-row{
		 margin-bottom:100px;
	}
}
/** END Main Row - blank **/
/** START Image Only - blank **/

.image-only{
    text-align:center;
}
.hidden{
    display:none;
}
.image-only img{
    width:auto;
    max-width:100%;
    height:auto;
}
.image-only.image-wrapper.background {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 0;
	width: 100%;
	padding-top: 56.25%;
}
/** END Image Only - blank **/
/** START Sub Row - blank **/

.sub-row{
    margin-bottom: 25px;
}

@media (min-width: 1000px) {
	.sub-row{
		 margin-bottom: 75px;
	}
}
/** END Sub Row - blank **/
/** START Main Visual - blank **/
.main-visual, 
.main-visual .slick-list, 
.main-visual .slider-item {
    height: 56.25vw;
}
.main-visual, 
.main-visual .slick-list{
    width: 100%;
    height: 100%;
    position: relative;
}
.main-visual img {
    display: none;
}
.main-visual .slider-item{
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}
.main-visual-arrow-wrapper{
    position: absolute;
    top: 50%;
    height: 0;
    width: calc(100% - 40px);
    margin-top: -10px;
    padding: 0 20px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    
    -ms-transition: all .4s ease 0s; 
	-webkit-transition: all .4s ease 0s; 
	transition: all .4s ease 0s;
}
.main-visual:hover .main-visual-arrow-wrapper{
    opacity: 1;
}
    .main-visual .slider-navigation {
        width: 30px;
        height: 30px;
        border-width: 1px;
        border-style: solid;
        margin: 0;
        position: relative;
        box-sizing: border-box;
        cursor:pointer;
        border-radius: 0;
        padding: 0;
    }
    .main-visual-arrow-wrapper .prev{
        float: left;
    }
    .main-visual-arrow-wrapper .next{
        float: right;
    }
        .main-visual .slider-navigation span {
        	display: block;
            width: 1px;
            height: 50%;
            position: relative;
            left: 50%;
            cursor: pointer;
        }
            .main-visual-arrow-wrapper .nav-left .line-one,
            .main-visual-arrow-wrapper .nav-right .line-two{
                -ms-transform: rotate(45deg);
                -webkit-transform: rotate(45deg);
                transform: rotate(45deg);
            }
            .main-visual-arrow-wrapper .nav-left .line-two,
            .main-visual-arrow-wrapper .nav-right .line-one{
                -ms-transform: rotate(-45deg);
                -webkit-transform: rotate(-45deg);
                transform: rotate(-45deg);
            }
            .main-visual-arrow-wrapper .nav-left .line-one,
            .main-visual-arrow-wrapper .nav-right .line-one{
                top: 2px;
            }
            .main-visual-arrow-wrapper .nav-left .line-two,
            .main-visual-arrow-wrapper .nav-right .line-two{
                bottom: 2px;
            }
            
.main-visual-pager-wrapper{
    position: absolute;
    bottom: 10px;
    width: 100%;
    left: 0;
}
.main-visual-pager-wrapper .slick-dots{
    text-align: center;
}
.main-visual-pager-wrapper .slick-dots li{
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin: 0 3px;
    cursor: pointer;
    border: 2px solid;
}
.main-visual-pager-wrapper .slick-dots li.slick-active{
    cursor: default;
    width: 0;
    height: 0;
    border: 5px solid;
}
.main-visual-slogan-wrapper{
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 38px;
    font-size: 0.75em;
    z-index: 1;
}

.main-visual .slider-item, 
.main-visual .slogan-read-more, 
.main-visual p.slogan, 
.main-visual-pager-wrapper .slick-dots, 
.main-visual ul.slider-wrapper{
    margin-bottom: 0;
}
.main-visual-slogan-wrapper .container{
    padding: 0 20px;
}
.main-visual .slogan-read-more .read-more{
    text-decoration: none;
    -ms-transition: all .4s ease 0s; 
	-webkit-transition: all .4s ease 0s; 
	-moz-transition: all .4s ease 0s;
	-o-transition: all .4s ease 0s;
	transition: all .4s ease 0s;
}
.main-visual p.slogan{
    font-size: 1.5em;
    line-height: 1;
    margin-bottom: 5px;
}
.slogan-read-more .read-more:hover{
    opacity: 0.5;
}
.main-visual:before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    border: 2px solid #f3f3f3;
    border-radius: 50%;
    border-top: 2px solid #9b9999;
    width: 24px;
    height: 24px;
    -webkit-animation: spin 2s linear infinite; 
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.main-visual .slick-list{
    height: 100%;
}

/* Larger than Mobile */
@media (min-width: 750px) {
    .main-visual .slider-navigation {
        width: 40px;
        height: 40px
    }
        .main-visual-arrow-wrapper .nav-left .line-one,
        .main-visual-arrow-wrapper .nav-right .line-one{
            top: 3px;
        }
        .main-visual-arrow-wrapper .nav-left .line-two,
        .main-visual-arrow-wrapper .nav-right .line-two{
            bottom: 3px;
        }
    .main-visual-slogan-wrapper .container{
        padding: 0;
    }
        .main-visual p.slogan{
            font-size: 3em;
            margin-bottom: 15px;
        }
    .main-visual-pager-wrapper .slick-dots li{
        width: 8px;
        height: 8px;
        margin: 0 7px;
        border: 3px solid;
    }
    .main-visual-pager-wrapper .slick-dots li.slick-active {
    	border: 7px solid;
    }
    .main-visual-pager-wrapper,  
    .main-visual-arrow-wrapper{   
        opacity: 1;
    }
    .main-visual-arrow-wrapper{
        margin: -21px auto 0;
        padding: 0;
        width: 90%;
        left: 0;
        right: 0;
    }
    .main-visual-pager-wrapper{
        bottom: 20px;
    }
    .main-visual-slogan-wrapper{
        position: absolute;
        bottom: 60px;
        right: 0;
        text-align: right;
        font-size: 0.85em;
    }
}

/* Larger than Ipad */
@media (min-width: 1200px) {
    .main-visual, .main-visual .slick-list, .main-visual .slider-item {
        height: 100vh;
    }
    .main-visual-pager-wrapper .slick-dots li{
        margin: 0 8px;
    }
    .main-visual-arrow-wrapper{   
        opacity: 0;
    }
	.main-visual-slogan-wrapper{
        font-size: 1em;
    }
}
/** END Main Visual - blank **/
/** START Main Visual - blank (image height) **/
---component.css---
/** START Main Visual - blank **/
/** START xList - Simple Rotator With Pager **/
.xList.simple-rotator-with-pager .no-content{
    display: none;
}
.simple-rotator-with-pager .rotatorElement{
    position: relative;
}
.simple-rotator-with-pager{
    margin-bottom: 50px;
    position: relative;
}
.simple-rotator-with-pager ul{
    list-style-type: none;
    margin: 0;
}
.main-container .simple-rotator-with-pager .xbox{
    margin-bottom: 45px;
}
.simple-rotator-with-pager ul .xbox.style-1{
    margin: 0 1px;
}
.simple-rotator-with-pager .pager-navigation{
    text-align: center;
}
.simple-rotator-with-pager .slick-slide{
    width: 100%;
}
.simple-rotator-with-pager .pager-nav{
    cursor: pointer;
    opacity: 1;
    height: 25px;
    position: relative;
    width: 16px;
    padding: 0;
}
.simple-rotator-with-pager .pager-nav.nav-next{
    float: none;
}
.simple-rotator-with-pager .pager-navigation li{
    display: inline-block;
    margin: 0 5px;
    vertical-align: middle;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border-width: 3px;
    border-style: solid;
    cursor: pointer;
}
.simple-rotator-with-pager .pager-navigation li.slick-active{
    border-width: 7px;
    border-style: solid;
    cursor: default;
    width: 0;
    height: 0;
}
.simple-rotator-with-pager .pager-navigation > div{
    display: inline-block;
    vertical-align: middle;
}
.simple-rotator-with-pager .pager-navigation .pager-list {
    margin: -4px 8px 0 8px;
}
.hideArrows .pager-nav,
.hidePager .pager-list,
.pager-count{
    display: none;
}
.simple-rotator-with-pager .slick-disabled {
	opacity: 0.7;
	cursor: default;
}
.simple-rotator-with-pager.use-arrow-background .pager-navigation .slick-arrow,
.simple-rotator-with-pager.use-arrow-border .pager-navigation .slick-arrow{
    width: 42px;
    height: 42px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.simple-rotator-with-pager .pager-navigation .slick-arrow {
	width: 15px;
	height: 25px;
}
.simple-rotator-with-pager.use-arrow-border .pager-navigation .slick-arrow{
    border: 1px solid;
}
.simple-rotator-with-pager .pager-navigation .slick-arrow:before {
    content:'';
    position: absolute;
    display: inline-block;
    width: 15px;
    height: 15px;
    border-top: 1px solid;
    border-right: 1px solid;
    -webkit-transform: translate(-25%, 50%) rotate(45deg);
    transform: translate(-25%, 50%) rotate(45deg);
    top: 50%;
    left: 0;
    margin-top: -16px;
}
.simple-rotator-with-pager .pager-navigation .slick-arrow.nav-prev::before {
	-webkit-transform: translate(25%, 50%) rotate(-135deg);
	transform: translate(25%, 50%) rotate(-135deg);
}
.simple-rotator-with-pager.use-arrow-background .pager-navigation .slick-arrow.nav-prev:before,
.simple-rotator-with-pager.use-arrow-border .pager-navigation .slick-arrow.nav-prev:before {
    -webkit-transform: translate(100%, 50%) rotate(-135deg);
    transform: translate(100%, 50%) rotate(-135deg);
}
.simple-rotator-with-pager.use-arrow-background .pager-navigation .slick-arrow:before,
.simple-rotator-with-pager.use-arrow-border .pager-navigation .slick-arrow:before {
    -webkit-transform: translate(50%, 50%) rotate(45deg);
    transform: translate(50%, 50%) rotate(45deg);
}

@media (min-width: 750px) {
    .simple-rotator-with-pager .slick-slider{
        width: 100%;
    }
    .simple-rotator-with-pager .slick-slide{
        width: 100%;
    }
    .columns.four .simple-rotator-with-pager .slick-slider{
        width: 100%;
        left: 0;
    }
    .columns.four .simple-rotator-with-pager .slick-slide{
        width: 100%;
        margin: 0;
    }
    .simple-rotator-with-pager.use-item-gap .slick-list{
        margin: 0 -25px;
    }
    .simple-rotator-with-pager.use-item-gap .slick-slide{
        margin: 0 25px;
    }
}

.xList-intro .rotatorElement .link{
    text-align: left;
}
/** END xList - Simple Rotator With Pager **/
/** START xList - blank **/
ul.xList-items{
    list-style: none;
}
/** END xList - blank **/
/** START Tabs Horizontal **/
.tabs-default .first-phrase, .tabs-default .second-phrase {
	display: block;
}
.tabs-default h2 .first-phrase {
    font-size: 0.85em;
}
.tabs-default .title-wrapper li{
    position: relative;
    cursor: pointer;
}
.tabs-default > .xList-intro{
    text-align: center;
    margin-bottom: 25px;
}
.tabs-default .title-wrapper ul:after {
	content: '';
	display: block;
	clear: both;
}
.tabs-default .title-wrapper ul{
    list-style-type: none;
    text-align: center;
    margin: 15px auto;
    position: relative;
    padding: 0 30px;
    z-index:1;
    
    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;
}
.tabs-default.tabs-first-level > .xList-intro .title-wrapper ul,
.tabs-default.tabs-second-level .title-wrapper .select-box-wrapper,
.tabs-default.tabs-second-level .intro-wrapper h2,
.tabs-default span.hide,
.tabs-default.tabs-first-level > .xList-intro .arrows-wrapper{
    display: none;
}
.tabs-default .select-box-wrapper select{
    padding-right: 26px;
    text-overflow: ellipsis;
    width: 100%;
    
    -webkit-appearance: none;
    -moz-appearance:    none;
    appearance:         none;
}
.tabs-default .select-box-wrapper{
    position: relative;
}
.tabs-default .select-box-wrapper:after{
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    margin-top: -0.75rem;
    pointer-events: none;
    font: normal normal normal 16px/1 FontAwesome;
}
.tabs-default .select-box-wrapper:after{
    content: "\f0d7";
}
    .tabs-default .title-wrapper li {
    	margin: 0;
        text-align: center;
    }
    .tabs-default .title-wrapper li:first-child{
        margin-left: 0;
    }
    .tabs-default > ul.xList-items{
        list-style-type: none;
        margin: 20px 0 0;
    }
    .tabs-default > .xList-items > li{
        height: 0;
        visibility: hidden;
        overflow: hidden;
        opacity: 0;
        margin: 0;
        webkit-transition: opacity 0.5s ease-in-out;
        -moz-transition: opacity 0.5s ease-in-out;
        -o-transition: opacity 0.5s ease-in-out;
        -ms-transition: opacity 0.5s ease-in-out;
        transition: opacity 0.5s ease-in-out;
    }
    .tabs-default > .xList-items > li.active{
        height: auto;
        visibility: visible;
        overflow: visible;
        opacity: 1;
    }
    .tabs-default .title-wrapper{
        width: 100%;
        padding: 0 5%;
        margin: 0 auto;
        box-sizing: border-box;
    }
    .tabs-default .title-wrapper .slick-slide {
    	width: auto;
    	display: inline-block;
    	float: none;
    	text-align: center;
    	vertical-align: middle;
    	margin-left:0px;
    }
    .tabs-default .arrows-wrapper {
    	position: absolute;
    	top: 50%;
    	left: 0;
    	width: 100%;
    	pointer-events: none;
    	-webkit-transform: translateY(-50%);
    	-ms-transform: translateY(-50%);
    	transform: translateY(-50%);
    }
    .tabs-default .arrows-wrapper .slick-arrow {
    	pointer-events: auto;
    	cursor: pointer;
    	margin: 0;
    }
    .tabs-default .arrows-wrapper .slick-arrow.slick-disabled {
        opacity: 0.6;
        pointer-events: none;
    }
    .tabs-default .pager-nav {
        position: absolute;
        top: 50%;
        z-index: 2;
        width: 30px;
        height: 30px;
        cursor: pointer;
        -ms-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    .tabs-default .pager-nav.slick-disabled{
        opacity: 0.6;
        cursor: default;
    }
    .tabs-default .pager-nav.nav-prev{
        left:0;
    }
    .tabs-default .pager-nav.nav-next{
        right:0;
    }
    .tabs-default .pager-nav:before {
            content: "";
            width: 12px;
            height: 12px;
            position: relative;
            border-style:solid;
            border-width:1px;
            border-left:none;
            border-top:none;
            top: 50%;
            display: block;
        }
            .tabs-default .pager-nav.nav-prev:before{
                left: calc(50% + 2px);
                -webkit-transform: translate(-50%, -50%) rotate(135deg);
                -ms-transform: translate(-50%, -50%) rotate(135deg);
                transform: translate(-50%, -50%) rotate(135deg);
            }
            .tabs-default .pager-nav.nav-next:before{
                left: calc(50% - 2px);
                -webkit-transform: translate(-50%, -50%) rotate(-45deg);
                -ms-transform: translate(-50%, -50%) rotate(-45deg);
                transform: translate(-50%, -50%) rotate(-45deg);
            }
            
.tabs-default .title-wrapper li, 
.tabs-default .title-wrapper li.active{
    padding: 10px;
    box-sizing: border-box;
}

.tabs-default .title-wrapper li.active,
.tabs-default.tabs-second-level .title-wrapper ul{
    opacity: 1;
}

.tabs-default > .xList-intro,
.tabs-default > ul.xList-items{
    margin: 0;
}
.tabs-default .title-wrapper ul{
    margin: 5px auto 0;
}

.tabs-default > ul.xList-items {
	margin-top: 30px;
}
.xList.tabs-default.tabs-second-level {
	margin-top: -30px;
}
.tabs-second-level > .xList-intro .title-wrapper li{
    border:none;
}
.tabs-second-level > .xList-intro .title-wrapper li span{
    position:relative;
    display:inline-block;
    padding: 0 8px 4px;
}
.tabs-second-level > .xList-intro .title-wrapper li.active span{
    border-bottom-style: none;
    border-bottom-width: 1px;
}
.tabs-second-level > .xList-intro .title-wrapper li.active span:after {
	content: "";
	width: 100%;
	display: block;
	height: 1px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	position: absolute;
	left: 0;
	bottom: 0px;
}
/* Larger than tablet */
@media (min-width: 750px) {
    .tabs-default.tabs-first-level > .xList-intro .select-box-wrapper {
        display: none;
    }
    .tabs-default.tabs-first-level > .xList-intro .title-wrapper ul,
    .tabs-default.tabs-first-level > .xList-intro .arrows-wrapper{
        display: block;
    }
    .tabs-default .title-wrapper ul{
        border: 0;
        padding: 0 60px;
        margin-bottom: 0;
        cursor: default;
    }
        .tabs-default .title-wrapper .slick-slide {
        	margin-left:3px;
        	margin-right:3px;
        }
    .tabs-default .title-wrapper ul:before{
        display: none;
    }
    
    .tabs-horizontal .title-wrapper .slick-list {
        margin-left: -8px;
    }
    
        .tabs-horizontal .title-wrapper li{
            margin: 0;
            border-width: 1px;
            border-style: solid;
        }
        .tabs-horizontal .tabs-second-level .title-wrapper li{
           border:none;
        }
        .tabs-default .title-wrapper li,
        .tabs-default .title-wrapper li.active{
            display: inline-block;
            position: relative;
            top: auto;
            left: auto;
            overflow: visible;
            width: auto;
        }
        .tabs-default .title-wrapper li.active{
            pointer-events: none;
        }
        
    .tabs-first-level > .xList-intro .title-wrapper:after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        display: block;
        z-index: 0;
        border-bottom-style: solid;
        border-bottom-width: 1px;
    }
}
/** END Tabs Horizontal **/
/** START Tabs Horizontal with Menu **/
/* tabs with menu */
.tabs-with-menu nav,
.tabs-with-menu .title-wrapper li ul,
.tabs-with-menu .title-wrapper li.active ul{
    display: none;
}
.tabs-default .sub-tabs-wrapper{
    width: 90%;
    padding: 0 5%;
    margin: 0 auto;
    box-sizing: border-box;
    position: relative;
}
.tabs-with-menu .sub-tabs-wrapper ul{
    list-style-type: none;
    text-align: center;
    margin: 15px auto;
    position: relative;
    padding: 0 30px;
}
.tabs-with-menu .sub-tabs-wrapper ul li{
    text-align: center;
    margin: 0;
    padding: 10px;
}


.tabs-with-menu .title-wrapper{
    position: relative;
}
.tabs-with-menu:not(.has-submenu)  .title-wrapper,
.tabs-with-menu .sub-tabs-wrapper{
    margin-bottom: 40px;
}
.tabs-with-menu > .title-wrapper li.active {
    border-style: solid;
    border-width: 1px;
}
.tabs-with-menu > .sub-tabs-wrapper li a,
.tabs-with-menu nav a{
    outline: none;
}
.tabs-with-menu > .sub-tabs-wrapper li.active a{
    padding: 0 8px 4px;
    border-bottom-style: solid;
    border-bottom-width: 1px;
}
@media (min-width: 750px) {
    .tabs-first-level > .title-wrapper:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: -1;
        border-bottom-style: solid;
        border-bottom-width: 1px;
    }

    .tabs-with-menu .title-wrapper > nav{
        display: block;
        position: relative;
    }
    
    .tabs-with-menu .select-box-wrapper{
        display: none;
    }
    .tabs-with-menu .sub-tabs-wrapper ul{
        padding: 0 30px;
        margin-bottom: 0;
        cursor: default;
    }
}
/** END Tabs Horizontal with Menu **/
/** START Row with bg image - blank **/
.row.background-image.style-1 .row-bg-image {
	display: none;
}
.row.background-image.style-1 {
	background-size: cover;
	background-position: center;
	padding: 40px 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
}
@media(min-width:1000px){
	.row.background-image.style-1{
		padding: 60px 0;
	}
}
/** END Row with bg image - blank **/
/** START Main Content Block H2 - H3 - L **/

.main-content-block.main-content-block-l,
.main-content-block-l h2, .main-content-block-l h3{
	text-align:left;
}

ul li, ol li{
text-align:left;
}

@media (min-width: 1000px) {
    .main-content-block-l{
        max-width:80%;
        margin:20px auto;
    }
}
/** END Main Content Block H2 - H3 - L **/
/** START Main Content Block H2 - H3 - C **/
.main-content-block.main-content-block-c,
.main-content-block-c h2, .main-content-block-c h3{
text-align:center;
}

@media (min-width: 1000px) {
    .main-content-block{
        max-width:745px;
        margin:20px auto;
    }
}
/** END Main Content Block H2 - H3 - C **/
/** START 2 Columns(8-4) Vertical Align Columns **/
.align-vertical-columns {
    align-items: center;
    flex-wrap: wrap;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
}
.align-vertical-columns .content-block{
    width: 80%;
    margin-left: 0;
    color: #fff;
}
.align-vertical-columns .simple-rotator-with-pager{
    width: 90%;
    margin: 0 auto;
}
.align-vertical-columns .columns .nav-arrow-group{
    position: absolute;
    left: -20%;
    top: 50%;
    width: 140%;
    margin: -25px auto 0;
}
.align-vertical-columns .columns .nav-arrow-group .pager-nav{
    height: 50px;
    width: 32px;
}
.align-vertical-columns .columns .nav-arrow-group .nav-prev{
    float: left;
}
.align-vertical-columns .columns .nav-arrow-group .nav-next{
    float: right;
}
.align-vertical-columns .columns .nav-arrow-group .pager-nav:before{
    color: #fff;
    font-size: 5.5em;
}
@media (max-width: 1200px) {
    .align-vertical-columns .columns .nav-arrow-group .pager-nav {
    	height: 34px;
    	width: 20px;
    }
    .align-vertical-columns .columns .nav-arrow-group .pager-nav:before{
        font-size: 3.5em;
    }
    .align-vertical-columns .simple-rotator-with-pager {
        width: 90%;
        margin-top: 0px;
    }
    .align-vertical-columns .columns .nav-arrow-group{
        margin-top: -17px;
    }
}
@media (max-width: 767px) {
    .align-vertical-columns .content-block {
        width: 100%;
        margin: 45px auto 40px;
    }
    .align-vertical-columns {
        flex-flow: wrap-reverse;
    }
    .align-vertical-columns .simple-rotator-with-pager {
        width: 75%;
        margin-top: 40px;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .align-vertical-columns .content-block {
    	width: 90%;
    	margin: 45px 0;
    }
}
@media (min-width: 1024px) and (max-width: 1200px) {
    .align-vertical-columns .last-column{
        margin-left: -1%;
    }
}
/** END 2 Columns(8-4) Vertical Align Columns **/
/** START xList - Accordion Group **/
.ui-accordion .ui-accordion-header.accordion-header {
	padding: 10px 50px 9px 20px;
	position:relative;
	margin-top:15px;
	font-size:1.2em;
}
.accordion-header::after {
	content: "\f107";
	display: block;
	position: absolute;
	top: 50%;
	right: 25px;
	font-family: FontAwesome;
	font-size: 1.5em;
	line-height: 1;
	transform: translateY(-50%);
	pointer-events:none;
}
.accordion-header.ui-accordion-header-active::after {
	content: "\f106";
}
.ui-accordion .ui-accordion-content.accordion-content {
	padding: 20px 20px 15px;
}
.accordion-content *:first-child{
    margin-top:0;
}
/** END xList - Accordion Group **/
/** START Image / Logo - with Link **/

.image-only{
    text-align:center;
position:relative;
}

.image-only img{
    width:auto;
    max-width:100%;
}
.image-only.wrap-with-link a{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/** END Image / Logo - with Link **/
/** START Primary Button **/
.primary-button{
    padding: 10px;
}
.button-wrapper{
    width: 175px;
    margin: 0 auto;
    text-align: center;
}
/** END Primary Button **/
/** START Main Content Block H2 - L **/

.main-content-block.main-content-block-l{
	text-align:left;
}
.main-content-block-l h2{
text-align:left;
}
h2 .first-phrase{
display:block;
font-size:0.85em;
}
ul li, ol li{
text-align:left;
}

@media (min-width: 1000px) {
    .main-content-block-l{
        max-width:80%;
        margin:20px auto;
    }
}
/** END Main Content Block H2 - L **/
/** START Row with primary background - blank **/

.main-row.primary-background{
    padding: 40px 0;
}
@media(min-width:1000px){
	.main-row.primary-background{
		padding: 60px 0;
	}
}
/** END Row with primary background - blank **/
/** START Contact Details with icons - blank **/
.contact-detail {
	font-style: normal;
	margin-bottom: 5px;
	margin-left: 0;
	padding-left: 25px;
	position: relative;
}
    .contact-details .contact-detail:before,
    .contact-detail > a:before{
    	position: absolute;
    	top: 5px;
    	left: 0;
    }
/** END Contact Details with icons - blank **/
/** START xList Grid Two Col (list only) **/
.xList.grid-list > .xList-items {
	text-align: center;
    margin: 0 auto;
    width: 100%;
}
    .xList.grid-list > .xList-items > .xList-item {
    	display: inline-block;
    	margin-bottom:4%;
        width:100%;
        vertical-align: top;
    }
@media(min-width:750px){
    .xList.grid-list.two-col > .xList-items > .xList-item {
    	width: calc((96% - 5px) / 2);
    }
    .xList.grid-list.two-col > .xList-items > .xList-item:nth-child(2n) {
    	margin-left: 4%;
    }
    
    .xList.grid-list.three-col > .xList-items > .xList-item,
    .xList.grid-list.four-col > .xList-items > .xList-item{
    	width: calc((92% - 9px) / 3);
    }
    .xList.grid-list.three-col > .xList-items > .xList-item:nth-child(3n-1),
    .xList.grid-list.three-col > .xList-items > .xList-item:nth-child(3n),
    .xList.grid-list.four-col > .xList-items > .xList-item:nth-child(3n-1),
    .xList.grid-list.four-col > .xList-items > .xList-item:nth-child(3n){
    	margin-left: 4%;
    }
}
@media(min-width:1000px){
    .xList.grid-list.four-col > .xList-items > .xList-item {
    	width: calc((88% - 14px) / 4);
    }
    .xList.grid-list.four-col > .xList-items > .xList-item:nth-child(3n-1),
    .xList.grid-list.four-col > .xList-items > .xList-item:nth-child(3n){
    	margin-left: 0;
    }
    .xList.grid-list.four-col > .xList-items > .xList-item:nth-child(4n),
    .xList.grid-list.four-col > .xList-items > .xList-item:nth-child(4n-1),
    .xList.grid-list.four-col > .xList-items > .xList-item:nth-child(4n-2){
    	margin-left: 4%;
    }
}
/** END xList Grid Two Col (list only) **/
/** START xBox A **/

.xbox .image-wrapper {
      margin-bottom:20px;
}
.xbox h3 span {
	display:block;
}
.xbox .first-phrase {
	font-size: 0.85em;
}
/** END xBox tA Styles **/
/** START Social Share - Flat Bg Colors No Label **/
.no-content{
    display: none !important;
}
.social-share.noLabel{
    text-align: center;
    margin-bottom: 30px;
}
.social-share a{
    text-decoration: none;
}
.social-share h3{
    display: block;
}
.share-label{
    line-height: 2;
}
/*.social-share a{
    color: #a4a4a4;
}
.social-share .sm-item .fa {
    color:#353637;
}

.social-share .sm-item .fa {
    background-color: #a4a4a4;
}*/
    .social-share .social-share-wrapper{
        display: block;
        text-align:center;
        vertical-align: middle;
        max-width: 100%;
        margin: 0 auto;
    }
    .social-share .social-share-wrapper li{
        display: inline-block;
        margin: 3px 5px;
    }
            .social-share .sm-item a,
            .social-share .sm-item a .fa{
                -webkit-transition:all 0.5s ease;
                -ms-transition:all 0.5s ease;
                transition:all 0.5s ease;
            }
    .social-share .sm-item .fa {
        width: 25px;
        height: 25px;
        /*background-color: #a4a4a4;*/
        border-radius: 100%;
        position: relative;
        /*color:#353637;*/
        text-align:center;
    }
    .social-share.originalBg .sm-item .fa-facebook,
    .social-share.originalBg .sm-item .facebook:hover .fa-facebook{
        background-color: #3b5998;
    }
    .originalIcon.share-share.noBg .sm-item .fa-facebook:before{
        color: #3b5998;
    }
    .social-share.originalBg .sm-item .fa-twitter,
    .social-share.originalBg .sm-item .twitter:hover .fa-twitter{
        background-color: #00aced;
    }
    .originalIcon.social-share.noBg .sm-item .fa-twitter:before{
        color: #00aced;
    }
    .social-share.originalBg .sm-item .fa-google-plus,
    .social-share.originalBg .sm-item .google-plus:hover .fa-google-plus{
        background-color: #dd4b39;
    }
    .originalIcon.social-share.noBg .sm-item .fa-google-plus:before{
        color: #dd4b39;
    }
    .social-share.originalBg .sm-item .fa-youtube-play,
    .social-share.originalBg .sm-item .fa-youtube,
    .social-share.originalBg .sm-item .youtube-play:hover .fa-youtube-play,
    .social-share.originalBg .sm-item .youtube:hover .fa-youtube{
        background-color: #bb0000;
    }
    .originalIcon.social-share.noBg .sm-item .fa-youtube-play:before,
    .originalIcon.social-share.noBg .sm-item .fa-youtube:before{
        color: #bb0000;
    }
    .social-share.originalBg .sm-item .fa-tripadvisor,
    .social-share.originalBg .sm-item .tripadvisor:hover .fa-tripadvisor{
        background-color: #00a680;
    }
    .originalIcon.social-share.noBg .sm-item .fa-tripadvisor:before{
        color: #00a680;
    }
    .social-share.originalBg .sm-item .fa-instagram,
    .social-share.originalBg .sm-item .instagram:hover .fa-instagram{
        background-color: #517fa4;
    }
    .originalIcon.social-share.noBg .sm-item .fa-instagram:before{
        color: #517fa4;
    }
    .social-share.originalBg .sm-item .fa-linkedin,
    .social-share.originalBg .sm-item .linkedin:hover .fa-linkedin{
        background-color: #0077b5;
    }
    .originalIcon.social-share.noBg .sm-item .fa-linkedin:before{
        color: #0077b5;
    }
    .social-share.originalBg .sm-item .fa-pinterest-p,
    .social-share.originalBg .sm-item .fa-pinterest,
    .social-share.originalBg .sm-item .pinterest-p:hover .fa-pinterest-p,
    .social-share.originalBg .sm-item .pinterest:hover .fa-pinterest{
        background-color: #cb2027;
    }
    .originalIcon.social-share.noBg .sm-item .fa-pinterest-p:before,
    .originalIcon.social-share.noBg .sm-item .fa-pinterest:before{
        color: #cb2027;
    }
                
.social-share .sm-item .fa:before {
    line-height: 26px;
    /*color: #fff;*/
    font-size: 12px;
}
.social-share.noLabel .sm-label,
.social-share.showLabel .sm-label{
    display: none;
}
.flatIcon.noBg .sm-item .fa,
.originalIcon.noBg .sm-item .fa{
    background-color: transparent;
}
.social-share.noBg .sm-item .fa:before{
    /*color: #a4a4a4;*/
    font-size: 23px;
}
.social-share.showLabel .social-share-wrapper li {
    margin: 3px 2.5%;
}
            
 
@media (min-width: 750px) {
    .social-share h3{
        display: inline-block;
        vertical-align: middle;
        margin-right: 8px;
    }        
}
@media (min-width: 1024px) {
    .social-share.showLabel .sm-label{
        display: inline-block;
        margin-left: 10px;
        font-size: 13px;
    }
    footer .social-share .sm-label{
        font-size: 10px;
        margin-left: 5px;
    }
    .social-share.showLabel .social-share-wrapper li {
        margin: 3px 20px 3px 0;
    }
    .columns.six .social-share.showLabel .social-share-wrapper li {
        margin: 3px 15px 3px 0;
        width: 28%;
    }
    .columns.six .social-share.showLabel .social-share-wrapper {
        text-align: left;
    }
    .columns.four .social-share.showLabel .social-share-wrapper li {
        margin: 3px 10px 3px 0;
        width: 44%;
    }
    .columns.four .social-share.showLabel .social-share-wrapper {
        text-align: left;
    }
    .columns.three .social-share.showLabel .sm-label{
        display: none;
    }
}
@media (min-width: 1200px) {
    .social-share.showLabel .sm-label {
        display: inline-block;
        font-size: 0.8em;
        letter-spacing: 0.2px;
        margin-left: 12px;
    }
    .social-share.noLabel .sm-label{
        display: none;
    }
    .social-share.showLabel .social-share-wrapper li {
        margin: 3px 20px 3px 0;
    }
    .columns.three .social-share.showLabel .social-share-wrapper li,
    .columns.four .social-share.showLabel .social-share-wrapper li{
        margin: 3px 8px 3px 0;
        width: 46%;
    }
    .columns.five .social-share.showLabel .social-share-wrapper li,
    .columns.six .social-share.showLabel .social-share-wrapper li {
        margin: 3px 15px 3px 0;
        width: 20%;
    }
    .columns.two .social-share.showLabel .social-share-wrapper,
    .columns.three .social-share.showLabel .social-share-wrapper,
    .columns.four .social-share.showLabel .social-share-wrapper,
    .columns.five .social-share.showLabel .social-share-wrapper,
    .columns.six .social-share.showLabel .social-share-wrapper {
        text-align: left;
    }
    .columns.four .social-share.showLabel .social-share-wrapper {
        text-align: left;
    }
    .columns.three .social-share.showLabel .sm-label{
        display: inline-block;
    }
}
/** END Social Share - Flat Bg Colors No Label **/
/** START xBox with popup type-A - Blank **/
.xbox-with-popup.xbox-with-popup-style-1 {
    text-align: center;
}
.xbox-with-popup.xbox-with-popup-style-1 .popup-content-box {
    position: absolute;
    z-index: 300;
    width: 100%;
    height: auto;
    background: #d6d6d6;
    bottom: auto;
    left: 0;
    display: none;
}
.xbox-with-popup-type-A.add-space .item-wrapper-box,
.xbox-with-popup-type-A.no-click .item-wrapper-box{
    pointer-events: none;
}
.xbox-with-popup.xbox-with-popup-style-1 .image-wrapper {
    margin: 0 auto;
}
.item-wrapper-box{
    position: relative;
}
.add-space .item-wrapper-box:after {
    position: absolute;
    z-index: -1;
    left: 50%;
    bottom: -20px;
    content: '';
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-bottom: 20px solid #d6d6d6;
}
.popup-content-box .close-icon {
    display: block;
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: absolute;
    top: 0.5%;
    right: 4%;
    z-index: 300;
}
.popup-content-box .close-icon:before, 
.popup-content-box .close-icon:after {
    position: absolute;
    left: 20px;
    content: ' ';
    height: 29px;
    width: 1px;
    top: 5px;
}
.popup-content-box .close-icon:before {
    transform: rotate(45deg);
}
.popup-content-box .close-icon:after {
    transform: rotate(-45deg);
}

.xbox-with-popup.xbox-with-popup-style-1 .popup-content-box .primary-background, 
.xbox-with-popup.xbox-with-popup-style-1 .popup-content-box .secondary-background  {
    padding: 8%;
    position: relative;
    z-index: -1;
}
/** END xBox with popup type-A - Blank **/
/** START Image with Title/Description **/
.image-with-title-desc {
	width: 200px;
	text-align: center;
}
    .image-with-title-desc .item-title span {
    	font-size: 1.1em;
    }
        .image-with-title-desc .content-wrapper {
        	height: 50px;
        	overflow: hidden;
        }
/** END Image with Title/Description **/
/** START Main Content Block H1- L **/

.first-phrase{
   display:block;
   font-size:0.85em;
}
.main-content-block.main-content-block-l{
    text-align:left;
}
ul li, ol li {
	text-align: left;
}
.no-content{
display:none;
}
@media (min-width: 1000px) {
    .main-content-block{
        max-width:80%;
        margin:20px auto;
    }
}
/** END Main Content Block H1- L **/
/** START Main Content Block H1-C **/
.main-content-block.main-content-block-c{
    text-align:center;
}
@media (min-width: 1000px) {
    .main-content-block-c{
        max-width:745px;
        margin:20px auto;
    }
}
/** END Main Content Block H1-C **/
/** START XList Masonry - A-1 **/
ul.xList-items {
    list-style: none;
}
.xList-masonry .xList-item {
    width: 100%;
}
.xList-masonry .testimonials-typeA .content-wrapper {
	max-height: 5000px;
}
.xList-masonry .xList-item:nth-child(n+7){ /** Changing the XList Masonry for the Financing Support - Sashini - 2024-02-09  -- .xList-masonry .xList-item:nth-child(n+8) **/
    display: none; 
    opacity: 0;
    -ms-transition: opacity 0.8s ease-in-out 0s !important;
    -webkit-transition: opacity 0.8s ease-in-out 0s !important;
    -moz-transition: opacity 0.8s ease-in-out 0s !important;
    -o-transition: opacity 0.8s ease-in-out 0s !important;
    transition: opacity 0.8s ease-in-out 0s !important;
}
.load-more-wrapper .hide-default,
.load-more-wrapper.hide{
    display: none;
}
.show-all .hide-default{
    display: inline-block !important;
}
.xList-masonry .xList-item.visible{
    display: block;
}
.xList-masonry .xList-item.transitions{
    opacity: 1;
}
.load-more-wrapper{
    text-align: center;
    margin: 35px auto;
}
.load-more-wrapper .secondary-button{
    cursor: pointer;
}

@media(min-width:767px){
	.xList-masonry .xList-item {
	    width: calc(50% - 25px);
	    margin: 30px 0 0 0;
	}
	.xList-masonry .xList-items{
	    margin-left: 20px;
	}
}

@media(min-width:1200px){
	.xList-masonry .xList-item {
	    width: calc(33% - 25px);
	}
	.xList-masonry .xList-items{
	    margin-left: 30px;
	}
}
/** END XList Masonry - A-1 **/
/** START Image Only - blank **/

.image-only{
    text-align:center;
}
.hidden{
    display:none;
}
.image-only img{
    width:auto;
    max-width:100%;
    margin: auto;
}
.image-only.image-wrapper.background {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 0;
	width: 100%;
	padding-top: 56.25%;
}
/** END Image Only - blank **/
/** START Cookie Message Box **/
.cookie-section {
    width: 100%;
    z-index: 9999;
    text-align: center;
    display: none;
    position: fixed;
    bottom: 0;
}
    .cookie-section .cookie-wrapper {
        padding: 25px 30px 25px 30px;
        max-width: 1000px;
        margin: 0 auto 0;
        display: inline-block;
    }
        .cookie-section .cookie-wrapper .message p,
        .cookie-section .cookie-wrapper .message span {
            margin: 0;
        }
        .cookie-section .cookie-wrapper a.cookie-accept{
            text-decoration: none;
            margin-top: 3px;
            display: inline-block;
            text-transform: uppercase;
        }
@media (min-width: 1200px) {
    .cookie-section .cookie-wrapper {
        display: flex;
        display: -ms-flexbox;
        -ms-flex-align: center;
        align-items: center;
    }
    .cookie-section .cookie-wrapper .cookie-content-wrap {
        width: 80%;
    }
    .cookie-section .cookie-wrapper .cookie-btn-wrap {
        width: 20%;
    }
}
@media (max-width: 800px) {
    .cookie-section .cookie-wrapper p.accept-button{
        margin-top:20px;
    }
}

tr.subheding.nostro-center {
    background: #a8a8a8;
    color: white;
    
}

tr.subheding.nostro-center td {
    text-align: center;
}
tr.row-lt.cus {
    background: white;
}
/** END Cookie Message Box **/


.content-wrapper p {
    font-size: 16px !important;
}

span.third-phrase {
    font-size: 1em;
   
}

.promotion-listing .xList-item .xbox-typeA .image-wrapper.other-disclosure {
    background: none;
    outline: none;
}

.promotion-listing .xbox.xbox-typeA.A-default .flex-container.other-disclosure-text {
    margin-top: -50px;
}




/*NEWLY ADDED FOR GRID COMPANENT START*/

/**
 * Grid option
 */
.flex-xlist > .xList-items {
	box-sizing: border-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 0;
	-ms-flex: 0 1 auto;
	flex: 0 1 auto;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: stretch;
	justify-content: space-around;
}
.flex-xlist > .xList-items > .xList-item {
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}
.flex-xlist > .xList-items > .xList-item{
	-ms-flex-preferred-size: 100%;
	flex-basis: 100%;
	max-width: 100%;
}

@media (min-width: 480px) {
    .with-gaps .flex-xlist > .xList-items {
    	margin-right: -10px;
    	margin-left: -10px;
    }
    .with-gaps .flex-xlist > .xList-items > .xList-item {
        padding-right: 10px;
        padding-left: 10px;
    }
    /* Grid becomes active */
    .two-col-xlist-480 .flex-xlist > .xList-items > .xList-item {
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
		max-width: 50%;
    }
    .three-col-xlist-480 .flex-xlist > .xList-items > .xList-item {
        -ms-flex-preferred-size: 33.33333333%;
        flex-basis: 33.33333333%;
        max-width: 33.33333333%;
    }
	.four-col-xlist-480 .flex-xlist > .xList-items > .xList-item {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
	}
}

@media (min-width: 768px) {
     .with-gaps .flex-xlist > .xList-items {
    	margin-right: -20px;
    	margin-left: -20px;
    }
    .with-gaps .flex-xlist > .xList-items > .xList-item {
        padding-right: 20px;
        padding-left: 20px;
    }
    /* Grid becomes active */
    .two-col-xlist-768 .flex-xlist > .xList-items > .xList-item {
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
		max-width: 50%;
    }
    .three-col-xlist-768 .flex-xlist > .xList-items > .xList-item {
        -ms-flex-preferred-size: 33.33333333%;
        flex-basis: 33.33333333%;
        max-width: 33.33333333%;
    }
	.four-col-xlist-768 .flex-xlist > .xList-items > .xList-item {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
	}
}

@media (min-width: 1024px) {
    .two-col-xlist-1024 .flex-xlist > .xList-items > .xList-item {
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
		max-width: 50%;
    }
    .three-col-xlist-1024 .flex-xlist > .xList-items > .xList-item {
        -ms-flex-preferred-size: 33.33333333%;
        flex-basis: 33.33333333%;
        max-width: 33.33333333%;
    }
	.four-col-xlist-1024 .flex-xlist > .xList-items > .xList-item {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
	}
}


@media (min-width: 1366px) {
    .two-col-xlist-1366 .flex-xlist > .xList-items > .xList-item {
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
		max-width: 50%;
    }
    .three-col-xlist-1366 .flex-xlist > .xList-items > .xList-item {
        -ms-flex-preferred-size: 33.33333333%;
        flex-basis: 33.33333333%;
        max-width: 33.33333333%;
    }
	.four-col-xlist-1366 .flex-xlist > .xList-items > .xList-item {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
	}
}

/*NEWLY ADDED FOR GRID COMPANENT END*/
/** START R2G xList Accordion **/
.accordion-xlist .accordion-title{
    position: relative;
    margin: 0;
    padding: 5px 40px 5px 0px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}
.accordion-xlist .accordion-title,
.collapsible .accordion-xlist .active .accordion-title{
    cursor: pointer;    
}
.accordion-xlist .active .accordion-title{
    cursor: default;
}
.accordion-xlist .accordion-title:after {
	content: '\eb63';
	font-family: 'icomoon';
	position: absolute;
	top: 50%;
	right: 0;
	
	-ms-transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
	
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.accordion-xlist .active .accordion-title:after{
    -webkit-transform: translateY(-50%) rotate(-180deg);
    -ms-transform: translateY(-50%) rotate(-180deg);
    transform: translateY(-50%) rotate(-180deg);
}
.accordion-xlist > .xList-items > .xList-item .inner-wrapper {
    display: none;
    padding: 25px;
}
.no-js .accordion-xlist > .xList-items > .xList-item .inner-wrapper{
    display: block;
}
/** END R2G xList Accordion **/
/** START R2G Content Block - Sub Component **/
.r2g-content-block.r2g-content-block-sub-component{
  padding: 0 20px;
}
.text-align-left.r2g-content-block *{
	text-align: left;
}
.text-align-center.r2g-content-block *{
	text-align: center;
}
.text-align-right.r2g-content-block *{
	text-align: right;
}

/** END R2G Content Block - Sub Component **/


/*========================*/
/** START R2G xList Accordion **/
.text-align-left > .container > .intro-content,
    .text-align-left > .intro-content{
        text-align: left;
    }
    .text-align-center > .container > .intro-content{
        text-align: center;
    }
    .text-align-right > .container > .intro-content{
        text-align: right;
    }
.accordion-xlist .accordion-title{
    position: relative;
    margin: 0;
    padding: 5px 40px 5px 0px;
    border-bottom-width: 1px;
    border-bottom-style: solid;
}
.accordion-xlist .accordion-title,
.collapsible .accordion-xlist .active .accordion-title{
    cursor: pointer;    
}
.accordion-xlist .active .accordion-title{
    cursor: default;
}
.accordion-xlist .accordion-title:after {
	content: '\eb63';
	font-family: 'icomoon';
	position: absolute;
	top: 50%;
	right: 0;
	
	-ms-transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
	
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.accordion-xlist .active .accordion-title:after{
    -webkit-transform: translateY(-50%) rotate(-180deg);
    -ms-transform: translateY(-50%) rotate(-180deg);
    transform: translateY(-50%) rotate(-180deg);
}
.accordion-xlist > .xList-items > .xList-item .inner-wrapper {
    display: none;
    padding: 25px;
}
.no-js .accordion-xlist > .xList-items > .xList-item .inner-wrapper{
    display: block;
}

.sms-alerts-and-e-statements .fancybox-container .fancybox-button svg {
    color: #000;
}
.sms-alerts-and-e-statements .fancybox-content button:hover{
    background-color:transparent;
}
#bank-statement-request .field-call-time.fb-call-time{
	display:none;
}
.sms-alerts-and-e-statements .fancybox-content h3 {
    font-weight: normal;
}
.sms-alerts-and-e-statements .fancybox-content h3 span {
    font-weight: bold;
}
/** END R2G xList Accordion **/
/** START Sub Content Block H3 - L **/

.sub-content-block.sub-content-block-l,
.sub-content-block-l h3{
	text-align:left;
}
h3 .first-phrase{
font-size:0.85em;
display:block;
}
ul li, ol li{
text-align:left;
}
/** END Sub Content Block H3 - L **/
/** START Sub Content Block H3 - C **/
.sub-content-block.sub-content-block-c,
.sub-content-block-c h3{
text-align:center;
}
/** END Sub Content Block H3 - C **/
/** START Rotator A - 1 **/
.rotator-A {
    position: relative;
}
.rotator-A .xList-items {
    margin-bottom: 0;
}
.rotator-A span.hide{
    display:none !important;
}
.no-js .rotator-A .main-slider > li {
	display: none;
}
.no-js .rotator-A .main-slider > li:first-child {
	display: block;
}
    .rotator-A .main-slider,
    .rotator-A .main-slider .slick-list,
    .rotator-A .main-slider .slick-track {
        height: 100%;
    }
    .rotator-A .main-slider .slick-slide {
        height: auto;
    }

/* pager slider */
.pager-slider {
    position: absolute;
    top: 160px;
    left: 0;
    width:100%;
    height: 40px;
}
    .pager-slider .slick-slide{
        height:40px;
        display:flex;
        align-items:center;
        float: left;
    }
    .pager-slider .slick-slide > div{
        width:100%;
    }
    .pager-slider .pager-nav {
        position: absolute;
        top: 9px;
        z-index: 2;
        width: 20px;
        height: 20px;
    }
    .pager-slider .pager-nav.nav-prev{
        left:15px;
    }
    .pager-slider .pager-nav.nav-next{
        right:15px;
    }
        .pager-slider .pager-nav:before {
            content: "";
            width: 20px;
            height: 20px;
            position: relative;
            border-style:solid;
            border-width:1px;
            border-left:none;
            border-top:none;
            top: 0;
            left: 0;
            display: block;
        }
            .pager-slider .pager-nav.nav-prev:before{
                -webkit-transform: rotate(135deg);
                -ms-transform: rotate(135deg);
                transform: rotate(135deg);
            }
            .pager-slider .pager-nav.nav-next:before{
                -webkit-transform: rotate(-45deg);
                -ms-transform: rotate(-45deg);
                transform: rotate(-45deg);
            }
        .pager-slider .slick-list.draggable {
            width: calc(100% - 90px);
            margin: 0 auto;
            padding:0 !important;
            transform: translateY(40%);
        }
    .pager-title {
        text-align: center;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        /*font-size: 11px;*/
        line-height: 1.2;
    }
    .slick-active:not(.slick-current) .pager-title{
        cursor:pointer;
    }

@media (min-width:750px){
    .rotator-A .slick-slide .xList-item{
        margin-bottom:0;
        display:block !important;
    }
    .pager-slider .slick-list.draggable {
        transform: translateY(0);
    }
    .pager-slider {
        top: auto;
        bottom:20px;
        height: 40px;
    }
        .rotator-A-1 .pager-slider .slick-slide > div {
            width: 100%;
            padding: 0 40px;
        }
        .rotator-A-1 .pager-title {
            text-align: left;
            font-size: 14px;
            padding: 12px 18px;
            position:relative;
            box-sizing:border-box;
            -webkit-transition:all 0.5s ease;
            -ms-transition:all 0.5s ease;
            transition:all 0.5s ease;
        }
            .rotator-A-1 .pager-title:after {
                content: "";
                display: inline-block;
                width: 7px;
                height: 7px;
                position: absolute;
                top: 16px;
                right: 20px;
                border: 1px solid;
                border-top: none;
                border-left: none;
                -webkit-transform: rotate(-45deg);
                -ms-transform: rotate(-45deg);
                transform: rotate(-45deg);
            }
            .rotator-A-1 .pager-title:before{
                content: "";
                display: inline-block;
                width: 0%;
                height: 100%;
                position: absolute;
                left:0;
                top:0;
                
                -webkit-transition:width 0.5s ease;
                -ms-transition:width 0.5s ease;
                transition:width 0.5s ease;
            }
}

@media (min-width:1000px){
    .rotator-A-1 .pager-slider:before {
        width: 100%;
    }
    .rotator-A-1 .pager-slider .slick-slide > div {
        padding: 0 25px;
    }
}
@media (min-width:1200px){
    .rotator-A-1 .pager-slider .slick-slide > div {
        padding: 0 20px;
    }
}

/* Pager Issues Fix */
.rotator-A-1 {
    padding-bottom: 40px;
}

.rotator-A-1 .section-title {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    padding: 0 20px;
}

.rotator-A-1 .pager-slider .slick-list.draggable {
    transform: translateY(0);
}

.rotator-A-1 .pager-slider .pager-nav {
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
}

.rotator-A-1 .pager-slider .pager-nav.nav-next {
    right: 0;
}

.rotator-A-1 .pager-slider .pager-nav:before {
    position: absolute;
    z-index: 1;
    left: 15px;
    top: 9px;
    width: 18px;
    height: 18px;
}

.rotator-A-1 .pager-slider .pager-nav.nav-next:before {
    left: auto;
    right: 15px;
}

.rotator-A-1 .pager-slider .pager-nav.nav-prev {
    left: 0;
}

.rotator-A-1 .pager-slider {
    bottom: 0;
    top: auto;
}

.rotator-A-1 > .xList-items .xList-item {
    margin-bottom: 0;
}
@media (min-width: 750px) {
    .rotator-A-1 .section-title {
        width: 90%;
        padding: 0px;
        margin-left: auto;
        margin-right: auto;
    }
}
@media (min-width: 1000px) {
    .rotator-A-1 {
        padding-bottom: 0;
    }
    
    .rotator-A-1 .pager-title {
        text-align: center;
        padding: 18px 0;
        box-sizing: border-box;
        border-top-width: 1px;
        border-top-style: solid;
    }
    
    .rotator-A-1 .pager-title:after {
        display: none;
    }
    
    .rotator-A-1 .pager-slider {
        bottom: 0;
        height: auto;
    }

    .rotator-A-1 .pager-slider .slick-slide {
        height: 55px;
    }
}
/* Pager Issues Fix */
/** END Rotator A - 1 **/
/** START xBox Rooms B-2 **/
.xbox.slider-with-intro {
    display: block;
}
.slider-with-intro .image-wrapper-with-slider {
	width: 100%;
	float: left;
	position: relative;
	min-height: 50px;
	height: 50vh;
	background-repeat: no-repeat;
	background-size: cover;
}
.slider-with-intro .image-wrapper-with-slider li{
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-size: cover;
}
.slider-with-intro .item-image img {
	display: none;
}
.slider-with-intro .images-xList{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.slider-with-intro .arrows-wrapper{
    display: none;
}
.slider-with-intro .pager-wrapper{
    position: absolute;
    bottom: -1px;
    right: 4%;
    border-radius: 5px 5px 0 0;
    z-index: 1;
}
.slider-with-intro .pager-wrapper ul{
    margin: 0;
    border-radius: 8px 8px 0 0;
    padding: 0 20px;
    line-height: 34px;
    height: 25px;
}
.slider-with-intro .pager-wrapper ul li{
    display: inline-block;
    border-radius: 50%;
    margin: 0 5px;
    border-width: 2px;
    border-style: solid;
    cursor: pointer;
    width: 4px;
    height: 4px;
}
.slider-with-intro .pager-wrapper .slick-active{
	border-width: 4px;
	border-style: solid;
	width: 0;
	height: 0;
	cursor: default;
}
.slider-with-intro .images-xList .xList-items,
.slider-with-intro .images-xList .xList-item{
    width: 100%;
    min-height: 50vh;
    height: 50vh;
    margin: 0;
}
.slider-with-intro .xList-items{
    position: relative;
}
.slider-with-intro .image-wrapper-with-slider.image-wrapper{
	margin-bottom:0
}
.slider-with-intro .room-features-wrapper{
	text-align: center;
	margin-top: 30px;
}
.slider-with-intro .hours-wrapper{
	margin: 30px auto;
}
.slider-with-intro .room-feature{
	text-align: center;
	display: inline-table;
    width: 23.5%;
    box-sizing: border-box;
    margin-bottom: 20px;
}
.slider-with-intro .room-feature img{
    width: auto;
    margin: 0 auto;
}
.slider-with-intro .flex-container{
	width: 100%;
	float: left;
	border: 1px solid;
	border-top: none;
	padding: 25px;
	box-sizing: border-box;
	min-height: 250px;
	height: auto;
}
.slider-with-intro .flex-container{
	text-align: left;
	width: 100%;
	margin: 0 auto;
}
.slider-with-intro .content-wrapper{
	width: 100%;
}
.slider-with-intro .flex-container h3 {
	margin: 0px 0 30px 0;
	letter-spacing: 0.1px;
}
.slider-with-intro .flex-container p {
	margin-bottom: 5px;
}
.slider-with-intro .item-intro {
	height: auto;
	overflow: hidden;
}
.slider-with-intro .content-wrapper p.link a{
    text-decoration: none;
    text-transform: uppercase;
}
.slider-with-intro .btns-wrapper{
    text-align: center;
    margin-top: 5px;
}
.slider-with-intro .btns-wrapper > *,
.slider-with-intro .best-rate-wrapper > *{
    display: inline-block;
    vertical-align: middle;
}
.slider-with-intro .best-rate-label > span,
.slider-with-intro .rates-wrapper > span,
.slider-with-intro .reservations-heading{
    display: block;
    text-align: left;
    line-height: 1;
}
.slider-with-intro .rates-wrapper > span.rates-price,
.slider-with-intro .rates-wrapper > span.rates-night{
    display: inline-block;
}
.slider-with-intro .no-price .rates-wrapper{
    display: none;
}
.best-rate-icon{
    width: 30px;
    height: 30px;
    background: url('../images/component_images/best_rate_icon.svg') no-repeat center center;
}
.slider-with-intro .btns-wrapper > *{
    margin-right: 15px;
}
.slider-with-intro .btns-wrapper > *:last-child{
    margin-right: 0;
}
.slider-with-intro .content-wrapper p.read-more{
    text-align: right;
}
.slider-with-intro .hours-wrapper .open-time {
	margin-right: 35px;
}
.slider-with-intro .hours-wrapper .open-time:last-child {
	margin-right: 0;
}
.slider-with-intro .reservations-outer > p {
	width: 49.5%;
	display: inline-block;
	vertical-align: middle;
	text-align: left;
}
.slider-with-intro .reservations-outer p.book-now {
	text-align: right;
}
.slider-with-intro .reservations-outer .reservations-wrapper{
    margin: 0;
}
.slider-with-intro .reservations-heading{
    margin-bottom: 8px;
}

@media (min-width: 750px) {
    .slider-with-intro .content-wrapper h3 {
    	margin: 0px 0 10px 0;
    }
    .slider-with-intro .amenities-wrapper{
    	margin: 35px auto 0;
    }
    .slider-with-intro .hours-wrapper {
        margin: 30px auto;
    }
    .slider-with-intro .btns-wrapper > * {
    	margin-right: 30px;
    }
    .slider-with-intro .btns-wrapper p{
        margin-bottom: 0;
    }
    .slider-with-intro .reservations-outer .reservations-wrapper {
    	margin: 0;
    }
    .slider-with-intro .room-feature{
        width: 15%;
    }
}
@media (min-width: 1000px) {
    .xbox.slider-with-intro,  .slider-with-intro .content-container {
        display: -webkit-flex;
        display: -ms-flex;
        display: flex;
        align-items: center;
        -webkit-box-flex: 1;
        -moz-box-flex: 1;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
    .slider-with-intro .image-wrapper-with-slider{
    	width: 50%;
    	min-height: 435px;
    	height: 68vh;
    }
    .slider-with-intro .images-xList .xList-items,
    .slider-with-intro .images-xList .xList-item{
        width: 100%;
        min-height: 435px;
        height: 68vh;
    }
    .slider-with-intro .pager-wrapper{
        bottom: 0;
        right: 14px;
    }
    .slider-with-intro .flex-items {
        width: calc(100% - 100px);
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        right: 0;
        margin: auto;
    }
    .slider-with-intro .flex-container{
    	width: 50%;
    	border-width: 1px;
    	border-style: solid;
    	border-left: none;
        position: relative;
        height: 62vh;
        min-height: 405px;
    }
    .slider-with-intro .item-intro {
    	max-height: 75px;
    }
    .slider-with-intro .btns-wrapper {
    	text-align: right;
    }
    .slider-with-intro .content-wrapper h3 {
    	margin: 0px 0 30px 0;
    }
    .slider-with-intro .amenities-wrapper{
    	margin: 50px auto 0;
    }
    .slider-with-intro .hours-wrapper {
        margin: 50px auto;
    }
    .slider-with-intro .room-feature {
    	width: 24%;
    }
    .slider-with-intro .btns-wrapper > * {
    	margin-right: 20px;
    }
}
@media (min-width: 1200px) {
    .slider-with-intro .image-wrapper-with-slider{
    	width: 60%;
    }
    .slider-with-intro .rate-wrapper {
    	bottom: 54px;
        right: 25px;
    }
    .slider-with-intro .content-wrapper,
    .slider-with-intro .amenities-wrapper,
    .slider-with-intro .hours-wrapper,
    .slider-with-intro .btns-wrapper{
    	width: 85%;
    	margin: 0 auto;
    }
    .slider-with-intro .amenities-wrapper{
        margin: 55px auto 15px;
    }
    .slider-with-intro .hours-wrapper {
        margin: 50px auto;
    }
    .slider-with-intro .content-wrapper h3 {
    	margin: 0px 0 11px 0;
        max-height: 65px;
        overflow: hidden;
    }
    .slider-with-intro .item-intro {
        height: 75px;
    }
    .slider-with-intro .amenities-item {
        width: 24%;
    }
    .slider-with-intro .links-wrapper {
    	text-align: right;
    }
    .slider-with-intro .item-intro {
    	max-height: 75px;
    }
    .slider-with-intro .btns-wrapper > * {
    	margin-right: 30px;
    }
}
@media (max-width:749px){
    .slider-with-intro .btns-wrapper p{
        margin-top:10px;
        margin-bottom:10px;
    }
}
/** END xBox Rooms B-2 **/
/** START xList - Simple Rotator With Pager **/
.xList.simple-rotator-with-pager .no-content{
    display: none;
}
.simple-rotator-with-pager .rotatorElement{
    position: relative;
}
.simple-rotator-with-pager{
    margin-bottom: 50px;
    position: relative;
}
.simple-rotator-with-pager ul{
    list-style-type: none;
    margin: 0;
}
.main-container .simple-rotator-with-pager .xbox{
    margin-bottom: 45px;
}
.simple-rotator-with-pager ul .xbox.style-1{
    margin: 0 1px;
}
.simple-rotator-with-pager .pager-navigation{
    text-align: center;
}
.simple-rotator-with-pager .slick-slide{
    width: 100%;
}
.simple-rotator-with-pager .pager-nav{
    cursor: pointer;
    opacity: 1;
    height: 25px;
    position: relative;
    width: 16px;
    padding: 0;
}
.simple-rotator-with-pager .pager-nav.nav-next{
    float: none;
}
.simple-rotator-with-pager .pager-navigation li{
    display: inline-block;
    margin: 0 5px;
    vertical-align: middle;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 3px solid;
    cursor: pointer;
}
.simple-rotator-with-pager .pager-navigation li.slick-active{
    border: 7px solid;
    cursor: default;
    width: 0;
    height: 0;
}
.simple-rotator-with-pager .pager-navigation > div{
    display: inline-block;
    vertical-align: middle;
}
.simple-rotator-with-pager .pager-navigation .pager-list {
    margin: -4px 8px 0 8px;
}
.hideArrows .pager-nav,
.hidePager .pager-list,
.pager-count{
    display: none;
}
.simple-rotator-with-pager .slick-disabled {
	opacity: 0.7;
	cursor: default;
}
.simple-rotator-with-pager.use-arrow-background .pager-navigation .slick-arrow,
.simple-rotator-with-pager.use-arrow-border .pager-navigation .slick-arrow{
    width: 42px;
    height: 42px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.simple-rotator-with-pager .pager-navigation .slick-arrow {
	width: 15px;
	height: 25px;
}
.simple-rotator-with-pager.use-arrow-border .pager-navigation .slick-arrow{
    border: 1px solid;
}
.simple-rotator-with-pager .pager-navigation .slick-arrow:before {
    content:'';
    position: absolute;
    display: inline-block;
    width: 15px;
    height: 15px;
    border-top: 1px solid;
    border-right: 1px solid;
    -webkit-transform: translate(-25%, 50%) rotate(45deg);
    transform: translate(-25%, 50%) rotate(45deg);
    top: 50%;
    left: 0;
    margin-top: -16px;
}
.simple-rotator-with-pager .pager-navigation .slick-arrow.nav-prev::before {
	-webkit-transform: translate(25%, 50%) rotate(-135deg);
	transform: translate(25%, 50%) rotate(-135deg);
}
.simple-rotator-with-pager.use-arrow-background .pager-navigation .slick-arrow.nav-prev:before,
.simple-rotator-with-pager.use-arrow-border .pager-navigation .slick-arrow.nav-prev:before {
    -webkit-transform: translate(100%, 50%) rotate(-135deg);
    transform: translate(100%, 50%) rotate(-135deg);
}
.simple-rotator-with-pager.use-arrow-background .pager-navigation .slick-arrow:before,
.simple-rotator-with-pager.use-arrow-border .pager-navigation .slick-arrow:before {
    -webkit-transform: translate(50%, 50%) rotate(45deg);
    transform: translate(50%, 50%) rotate(45deg);
}

@media (min-width: 750px) {
    .simple-rotator-with-pager .slick-slider{
        width: 100%;
    }
    .simple-rotator-with-pager .slick-slide{
        width: 100%;
    }
    .columns.four .simple-rotator-with-pager .slick-slider{
        width: 100%;
        left: 0;
    }
    .columns.four .simple-rotator-with-pager .slick-slide{
        width: 100%;
        margin: 0;
    }
    .simple-rotator-with-pager.use-item-gap .slick-list{
        margin: 0 -25px;
    }
    .simple-rotator-with-pager.use-item-gap .slick-slide{
        margin: 0 25px;
    }
}

.xList-intro .rotatorElement .link{
    text-align: left;
}
/** END xList - Simple Rotator With Pager **/
/** START R2G xList (List Component) **/
.r2g-xlist-list-component .intro-content{
padding: 0 20px;
}
.r2g-xlist-list-component.xlist-list-with-rotator .rotatorElement{
    position: relative;
    z-index: 1;
}
    .r2g-xlist-list-component.xlist-list-with-rotator .rotatorElement .xList-items{
        margin-left: -20px;
        margin-right: -20px;
    }
    .r2g-xlist-list-component.xlist-list-with-rotator .rotatorElement .slick-slide{
        margin-left: 20px;
        margin-right: 20px;
    }
    .r2g-xlist-main-strip.xlist-with-rotator .rotatorElement .arrows-wrapper{
        position: absolute;
        z-index: 3;
        width: 100%;
        top: 50%;
    }
    .r2g-xlist-list-component.xlist-list-with-rotator .rotatorElement .slick-arrow{
        position: absolute;
        z-index: 5;
        top: 50%;
        cursor: pointer;
    }
    .r2g-xlist-list-component.xlist-list-with-rotator .rotatorElement .nav-left.slick-arrow{
        left: 0;
    }
    .r2g-xlist-list-component.xlist-list-with-rotator .rotatorElement .nav-right.slick-arrow{
        right: 0;
    }
        .r2g-xlist-list-component.xlist-list-with-rotator .rotatorElement .nav-left .line-one:after{
            content: '\eb52';
            font-family: icomoon;
            font-size: 30px;
        
        }
        .r2g-xlist-list-component.xlist-list-with-rotator .rotatorElement .nav-right .line-one:after{
            content: '\eb4f';
            font-family: icomoon;
            font-size: 30px;
        
        }
.r2g-xlist-list-component.xlist-list-with-rotator .rotatorElement .pager-wrapper{
    text-align: center;
}
    .r2g-xlist-list-component.xlist-list-with-rotator .rotatorElement .pager-wrapper ul{
        list-style-type: none;
    }
    .r2g-xlist-list-component.xlist-list-with-rotator .rotatorElement .pager-wrapper li{
        width: 8px;
        height: 8px;
        margin: 0 5px;
        border-radius: 100%;
        border-width: 2px;
        border-style: solid;
        display: inline-block;
        cursor: pointer;
    }
        .r2g-xlist-list-component.xlist-list-with-rotator .rotatorElement .pager-wrapper li.slick-active {
            border-width: 2px;
            border-style: solid;
            cursor: default;
            background: #000000;
        }
        .r2g-xlist-list-component.xlist-list-with-rotator .rotatorElement .pager-wrapper .slickNumber,
        .r2g-xlist-list-component.xlist-list-with-rotator .rotatorElement .pager-wrapper .pager-count{
            display: none;
        }
/** END R2G xList (List Component) **/
/** START Iframe Video Block **/
.iframe-wrapper {
    position: relative;
    height: auto;
}
    .iframe-wrapper .iframe-inner-wrapper {
        position: relative;
        padding-top: 56.25%;
        width: 100%;
        height: 0;
    }
        .iframe-wrapper .image-wrapper {
        	position: absolute;
        	top: 0;
        	left: 0;
        	width: 100%;
        	height: 100%;
        	z-index: 1;
        }
        .iframe-wrapper .noCover .image-wrapper {
            pointer-events: none;
        }
        .iframe-wrapper.hero-video .noCover .image-wrapper {
            pointer-events: auto;
        }
        
            .iframe-wrapper .cover-image{
                display: block;
                width: 100%;
        	    height: 100%;
                background-size: cover;
            	background-position: center;
            	background-repeat: no-repeat;
                opacity: 1;
                cursor: pointer;
                -webkit-transition: opacity 0.3s ease;
                -ms-transition: opacity 0.3s ease;
                transition: opacity 0.3s ease;
            }
            .iframe-wrapper .noCover .cover-image{
                opacity: 0;
            }
            .iframe-wrapper.hero-video .noCover .cover-image {
                pointer-events: none;
                cursor: default;
            }
            .iframe-wrapper .image-wrapper img,
            .iframe-wrapper .video-source {
                display: none;
            }
            .iframe-wrapper .buttons {
            	width: 80px;
            	height: 80px;
            	border-radius: 80px;
            	background-color: rgba(0,0,0,0.6);
                color: #fff;
                text-align: center;
            }
            .iframe-wrapper .buttons,
            .iframe-wrapper .buttons span{
                position: absolute;
                top: 50%;
            	left: 50%;
            	-ms-transform: translate(-50%, -50%);
            	-webkit-transform: translate(-50%, -50%);
            	transform: translate(-50%, -50%);
            	
            	-webkit-transition: all 0.3s ease;
                -ms-transition: all 0.3s ease;
                transition: all 0.3s ease;
            }
            .iframe-wrapper.hero-video .buttons,
            .iframe-wrapper .isPlaying .buttons,
            .iframe-wrapper span.hero-video{
                display: none;
            }
                .iframe-wrapper .buttons span {
                    font-size: 40px;
                	cursor: pointer;
                	pointer-events: auto;
                	padding: 4px 0 0 8px;
                }
                    .iframe-wrapper .buttons .play {
                        display: block;	
                    }
                    .iframe-wrapper .buttons .pause {
                    	display: none;
                    }
                    
                    /*.iframe-wrapper .isPlaying .play {
                        display: none;
                    }
                    .iframe-wrapper .isPlaying .pause {
                        display: block;
                    }
                    .iframe-wrapper .isPlaying .buttons span{
                        opacity: 0;
                    }
                    .iframe-wrapper.mouse-over .isPlaying .buttons span{
                        opacity: 1;
                    }*/
            
            
        .iframe-wrapper .video-iframe,
        .iframe-wrapper .video-tag{
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: none;
            border: 0;
            outline: 0;
        }
/** END Iframe Video Block **/
/** START R2G Header Contact Options **/
.r2g-contact-options a{
   display: block;
}
    .r2g-contact-options .sm-label{
        display: none;
    }
    .r2g-contact-options .icon{
        vertical-align: middle;
    }

/** END R2G Header Contact Options **/
/** START R2G Header Social Media **/
.r2g-header-social-media ul {
    list-style: none;
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0;
}
    .r2g-header-social-media ul li {
        position: relative;
        display: inline-block;
        z-index: 1;
    }
    .r2g-header-social-media.horizontal ul li {
        margin-left: 10px;
    }
    .r2g-header-social-media.horizontal ul li.item-1 {
        margin-left: 0;
    }
        .r2g-header-social-media ul a {
            position: relative;
            z-index: 1;
            display: inline-block;
            text-decoration: none;
            vertical-align: middle;
        }
            .r2g-header-social-media ul a .icon {
                padding-right: 6px;
            }
            .r2g-header-social-media.icon-only ul a .icon {
                padding-right: 0;
            }
            .r2g-header-social-media.icon-only ul a span:not(.icon){
                display: none;
            }
            .more-menu-wrapper .r2g-header-social-media .icon {
                font-size: 32px;
            }
/** END R2G Header Social Media **/
/** START R2G Header - CSE - V1 **/

.r2g-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--number__df__header-height);
    z-index: 10;
    -webkit-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.r2g-header.header-fixed{
    height: var(--number__df__header-fixed-height);
}
    .r2g-header .container{
        padding: 0 20px;
        height: 100%;
        position: relative;
        box-sizing: border-box;
    }
    .r2g-header .main-menu,
    .r2g-header .top-bar-wrapper > .r2g-header-social-media,
    .r2g-header .r2g-header-social-media h3{
        display: none;
    }
    .r2g-header .more-menu-wrapper .r2g-header-social-media h3{
        display: block;
        margin: 0 auto 15px;
    }
    .r2g-header .branding {
        width: var(--number__df__header-branding-width);
        height: var(--number__df__header-branding-height);
        margin: var(--number__df__header-branding-margin);
        position: relative;
        float: left;
        -webkit-transition: all 0.4s ease;
        -ms-transition: all 0.4s ease;
        transition: all 0.4s ease;
    }
    .r2g-header.header-fixed .branding {
        width: var(--number__df__header-fixed-branding-width);
        height: var(--number__df__header-fixed-branding-height);
    }
        .r2g-header .branding .logo {
            display: block;
            vertical-align: top;
            height: 100%;
            width: 100%;
            line-height: 0;
        }
            .r2g-header .branding img{
                -webkit-transition: opacity 1s ease-in-out;
                -ms-transition: opacity 1s ease-in-out;
                transition: opacity 1s ease-in-out;
            }
            .r2g-header .branding .on-scroll-logo {
                position: absolute;
                top: 0;
                left: 0;
                opacity: 1;
            }
            .r2g-header .branding .default-logo {
                opacity: 0;
            }
    
    /* header top-bar */
    .r2g-header .top-bar {
        position: absolute;
        top: 50%;
        right: 60px;
        left: auto;
        margin-top: 2px;
        margin-right: 12px;
        line-height: 1;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
        .r2g-header .top-bar .r2g-header-sub-component{
            display: inline-block;
            vertical-align: middle;
            margin: 0 0 0 12px;
        }
        .r2g-header .top-bar .r2g-header-sub-component:last-child{
            margin-left: 0;
        }
        .r2g-header .top-bar .r2g-top-bar-menu,
        .r2g-header .top-bar .r2g-header-social-media li{
            display: none;
        }
        
    /* header bottom-bar */
    .r2g-header .header-bottom-bar {
        float: right;
        clear: right;
    }
        .r2g-header .header-bottom-bar .primary-button {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 6px;
            height: auto;
            text-align: center;
            box-sizing: border-box;
            z-index: 1;
        }
        
        /* Menu Button */
        .r2g-header .menu-btn {
            width: 40px;
            height: 40px;
            position: absolute;
            cursor:pointer;
            float:none;
            display:inline-block;
            vertical-align:middle;
            top: 50%;
            right: 20px;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
        }
            .r2g-header .menu-btn-inner-wrapper {
                width: 60%;
                height: 20px;
                position: absolute;
                top: 50%;
                left: 50%;
                -webkit-transform: translate(-50%, -50%);
                -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
            }
        .r2g-header.no-more-menu .menu-btn {
            display: none;
        }
            .r2g-header .menu-line {
                display: block;
                width: 100%;
                border-top-width: 2px;
                border-top-style: solid;
                position: absolute;
                left: 0;
            }
            .r2g-header .line-one.menu-line {
                top: 0;
            }
            .r2g-header .line-two.menu-line {
                top: 9px;
                -webkit-transition: opacity 0.1s ease 0.5s;
                -ms-transition: opacity 0.1s ease 0.5s;
                transition: opacity 0.1s ease 0.5s;
            }
            .r2g-header .line-three.menu-line {
                top: 18px;
            }
            .r2g-header .menu-btn.menu-close-btn .menu-line.line-one{
                top: 9px;
                -webkit-transform:rotate(45deg);
                -ms-transform:rotate(45deg);
                transform:rotate(45deg);
            }
            .r2g-header .menu-btn.menu-close-btn .menu-line.line-three{
                top: 9px;
                -webkit-transform:rotate(-45deg);
                -ms-transform:rotate(-45deg);
                transform:rotate(-45deg);
            }
            .r2g-header .menu-btn .menu-line.line-one,
            .r2g-header .menu-btn .menu-line.line-three {
                transition: top 0.5s ease, transform 0.5s ease 0.6s;
                -ms-transition: top 0.5s ease, -ms-transform 0.5s ease 0.6s;
                transition: top 0.5s ease, transform 0.5s ease 0.6s;
            }
            .r2g-header .menu-btn.menu-open-btn .menu-line.line-one,
            .r2g-header .menu-btn.menu-open-btn .menu-line.line-three{
                -webkit-transition: -webkit-transform 0.5s ease, top 0.5s ease 0.6s;
                -ms-transition: -ms-transform 0.5s ease, top 0.5s ease 0.6s;
                transition: transform 0.5s ease, top 0.5s ease 0.6s;
            }
            .r2g-header .menu-btn.menu-close-btn .menu-line.line-two{
                opacity:0;
            }
            .r2g-header .main-menu{
                -webkit-transition: all 0.4s ease;
                -ms-transition: all 0.4s ease;
                transition: all 0.4s ease;
            }
        
        /* More Menu */
        .r2g-header ul{
            list-style-type: none;
            margin: 0;
            padding: 0;
        }
        .r2g-header .more-menu-wrapper {
            display: block;
            position: fixed;
            text-align: left;
            top: var(--number__df__header-more-menu-top);
            z-index: 1;
            width: 100%;
            height: calc(100% - var(--number__df__header-more-menu-top));
            right: 0;
            padding: 20px 20px 20px 20px;
            pointer-events: none;
            opacity: 0;
            box-sizing: border-box;
            -webkit-transition: all 0.4s ease;
            -ms-transition: all 0.4s ease;
            transition: all 0.4s ease;
        }
        .menu-open .r2g-header .more-menu-wrapper {
            opacity: 1;
            pointer-events: auto;
        }
            .r2g-header .more-menu-wrapper .logo-wrapper{
                margin-bottom: 20px;
                display: none;
            }
            .r2g-header .more-menu nav li {
                padding-left: 0;
                margin: 0;
                width: auto;
                height: auto;
            }
        .r2g-header .more-menu nav li.last {
            border-bottom: none;
        }
            .r2g-header .more-menu nav li a {
                width: auto;
                box-sizing: border-box;
                padding: 10px 0;
                display:inline-block;
            }
        .r2g-header .more-menu-wrapper .r2g-header-social-media,
        .menu-option-two .full-width-menu .r2g-header-social-media{
            margin: 30px auto 0;
        }
            .r2g-header .more-menu-wrapper .logo-wrapper .default-logo {
                display: none;
            }
        
        /* sub menu */
        .r2g-header li ul{
            width: 100%;
            margin: 0 auto;
            display: none;
            overflow: hidden;
        }
        .main-menu .sub-menu-arrow,
        .more-menu .sub-menu-arrow {
            margin-left: 8px;
            cursor: pointer;
            display: inline-block;
            -webkit-transition: all 0.4s ease;
            -ms-transition: all 0.4s ease;
            transition: all 0.4s ease;
        }
        .main-menu .sub-menu-arrow:before,
        .more-menu .sub-menu-arrow:before{
            content: '\eb63';
            font-family: 'icomoon' !important;
        }
        .main-menu .sub-menu-open .sub-menu-arrow,
        .more-menu .sub-menu-open .sub-menu-arrow {
            -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
            transform: rotate(180deg);
        }
        .r2g-header .header-wrapper a{
            -webkit-transition: all 0.4s ease;
            -ms-transition: all 0.4s ease;
            transition: all 0.4s ease;
        }
        .r2g-header .more-menu-wrapper li ul{
            padding-left: 20px;
        }

/** END R2G Header - CSE - V1 **/
/** START R2G xBox Sub Component - CSE **/
.r2g-xbox-sub-component.text-align-left .xbox-wrapper,
.r2g-xbox-sub-component.text-align-left .intro-content{
    text-align: left;
}
.r2g-xbox-sub-component.text-align-center .xbox-wrapper,
.r2g-xbox-sub-component.text-align-center .intro-content{
    text-align: center;
}
.r2g-xbox-sub-component.text-align-right .xbox-wrapper
.r2g-xbox-sub-component.text-align-right .intro-content{
    text-align: right;
}
.r2g-xbox-sub-component .two-col-content * {
	text-align: inherit;
}
.r2g-xbox-sub-component,
.r2g-xbox-sub-component .intro-content,
.r2g-xbox-sub-component .xbox-wrapper,
.r2g-xbox-sub-component .image-wrapper,
.r2g-xbox-sub-component .flex-container,
.r2g-xbox-sub-component .content-wrapper{
    border-style: solid;
    box-sizing: border-box;
}
.r2g-xbox-sub-component,
.r2g-xbox-sub-component .xbox-wrapper {
    height: 100%;
}
.r2g-xbox-sub-component{
    display: flex;
    flex-flow: column;
    border-width: var(--number__df__xbox-sub-border-width);
}
    .r2g-xbox-sub-component .intro-content {
        border-width: var(--number__df__xbox-sub-intro-wrapper-border-width);
    }
    .r2g-xbox-sub-component .intro-content :last-child{
        margin-bottom: 0;
    }
    .r2g-xbox-sub-component .xbox-wrapper {
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: stretch;
        flex-flow: column;
        position: relative;
        border-width: var(--number__df__xbox-sub-xbox-wrapper-border-width);
    }
        .r2g-xbox-sub-component .image-wrapper{
            border-width: var(--number__df__xbox-sub-image-wrapper-border-width);
        }
            .r2g-xbox-sub-component .image-wrapper img{
                max-width: none;
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        .r2g-xbox-sub-component .flex-container{
            display: flex;
            flex-flow: row wrap;
            align-items: center;
            justify-content: start;
            border-width: var(--number__df__xbox-sub-flex-wrapper-border-width);
            padding: 20px 0;
        }
            .r2g-xbox-sub-component .content-wrapper{
               width: 100%;
                border-width: var(--number__df__xbox-sub-content-wrapper-border-width);
            }
                .r2g-xbox-sub-component .content-wrapper *:last-child{
                    margin-bottom: 0;
                }
/** END R2G xBox Sub Component - CSE **/
/** START R2G Flex xList Main Strip - CSE **/

.r2g-flex-xlist-main-strip.text-align-left > .container >  .intro-content{
    text-align: left;
}
.r2g-flex-xlist-main-strip.text-align-center > .container > .intro-content{
    text-align: center;
}
.r2g-flex-xlist-main-strip.text-align-right > .container > .intro-content{
    text-align: right;
}

.r2g-flex-xlist-main-strip,
.r2g-flex-xlist-main-strip .container,
.r2g-flex-xlist-main-strip > .container > .intro-content,
.r2g-flex-xlist-main-strip .xlist-strip,
.r2g-flex-xlist-main-strip .bottom-content{
    border-style: solid;
}

.r2g-flex-xlist-main-strip{
    border-width: var(--number__df__r2g-flex-xlist-main-strip-border-width);
}
    .r2g-flex-xlist-main-strip .container{
        border-width: var(--number__df__r2g-flex-xlist-main-strip-container-border-width);
    }
        .r2g-flex-xlist-main-strip > .container > .intro-content{
            border-width: var(--number__df__r2g-flex-xlist-main-strip-intro-content-border-width);
        }
        .r2g-flex-xlist-main-strip .xlist-strip{
            border-width: var(--number__df__r2g-flex-xlist-main-strip-xlist-wrapper-border-width);
        }
            .r2g-flex-xlist-main-strip .flex-xlist > .xList-items {
            	box-sizing: border-box;
            	display: flex;
            	flex-flow: row wrap;
            	vertical-align: top;
            }
            .r2g-flex-xlist-main-strip.flex-align-top .flex-xlist > .xList-items {
            	align-items: start;
            }
            .r2g-flex-xlist-main-strip.flex-align-stretch .flex-xlist > .xList-items {
            	align-items: stretch;
            }
            .r2g-flex-xlist-main-strip.flex-justify-left .flex-xlist > .xList-items {
            	justify-content: start;
            }
            .r2g-flex-xlist-main-strip.flex-justify-center .flex-xlist > .xList-items {
            	justify-content: center;
            }
            .r2g-flex-xlist-main-strip .xlist-strip > .strip-xlist .xList-item {
                box-sizing: border-box;
            	width: 100%;
            	margin: 0;
            }
            .r2g-flex-xlist-main-strip.with-gap .xlist-strip > .strip-xlist .xList-item {
                margin: 0 0 var(--number__df__r2g-flex-xlist-main-strip-xlist-item-gap);
            }
            .r2g-flex-xlist-main-strip.masonry-grid.has-filter .filters {
                margin-bottom: 30px;
            }
                .r2g-flex-xlist-main-strip.masonry-grid.has-filter .filters .cat-item {
                    display: inline-block;
                    vertical-align: top;
                    position: relative;
                    width: calc(50% - 15px);
                    margin: 0 15px 10px 0;
                    padding: 0 0 8px 18px;
                    z-index: 1;
                    box-sizing: border-box;
                }
                .r2g-flex-xlist-main-strip.masonry-grid.has-filter .filters .cat-item, 
                .r2g-flex-xlist-main-strip.masonry-grid.has-filter .filters label {
                    cursor: pointer;
                }
                .r2g-flex-xlist-main-strip.masonry-grid.has-filter .filters .cat-item.all.active {
                    pointer-events: none;
                    opacity: 0.8;
                }
                .r2g-flex-xlist-main-strip.masonry-grid.has-filter .filters input {
                    position: absolute;
                    top: 0;
                    left: 0;
                    display: block;
                    width: 100%;
                    height: 100%;
                    cursor: pointer;
                    opacity: 0;
                    z-index: 2;
                }
                .r2g-flex-xlist-main-strip.masonry-grid.has-filter .filters .fb-checkbox-helper{
                    width: 18px;
                    height: 18px;
                    top: 0;
                }
                    .r2g-flex-xlist-main-strip.masonry-grid.has-filter .filters .fb-checkbox-helper:before {
                        display: none;
                    }
                    .r2g-flex-xlist-main-strip.masonry-grid.has-filter .filters .fb-checkbox-helper:after {
                        content: '\e942';
                        font-family: icomoon;
                        position: absolute;
                        top: 0;
                        left: 0;
                        pointer-events: none;
                        font-size: 16px;
                        color: inherit;
                    }
                    .r2g-flex-xlist-main-strip.masonry-grid.has-filter .filters .active .fb-checkbox-helper:after {
                        content: '\e940';
                        color: inherit;
                    }
                .r2g-flex-xlist-main-strip.masonry-grid.has-filter .filters label {
                    position: relative;
                    display: block;
                    pointer-events: none;
                    z-index: 2;
                    line-height: 1;
                }
            
            .r2g-flex-xlist-main-strip.masonry-grid.has-filter.single-item .filters .cat-item.active input {
                pointer-events: none;
                cursor: default;
            }
        .r2g-flex-xlist-main-strip .bottom-content{
            border-width: var(--number__df__r2g-flex-xlist-main-strip-bottom-content-border-width);
        }

/** END R2G Flex xList Main Strip - CSE **/
/** START R2G Image Only Sub - CSE **/
.r2g-xbox-image-only-sub {
	max-width: none;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/** END R2G Image Only Sub - CSE **/
/** START R2G Grid xList Main Strip - CSE **/
.r2g-grid-xlist-main-strip.text-align-left > .container >  .intro-content{
    text-align: left;
}
.r2g-grid-xlist-main-strip.text-align-center > .container > .intro-content{
    text-align: center;
}
.r2g-grid-xlist-main-strip.text-align-right > .container > .intro-content{
    text-align: right;
}

.r2g-grid-xlist-main-strip,
.r2g-grid-xlist-main-strip .container,
.r2g-grid-xlist-main-strip > .container > .intro-content,
.r2g-grid-xlist-main-strip .xlist-strip,
.r2g-grid-xlist-main-strip .bottom-content{
    border-style: solid;
}

.r2g-grid-xlist-main-strip{
    border-width: var(--number__df__r2g-grid-xlist-main-strip-border-width);
}
    .r2g-grid-xlist-main-strip .container{
        border-width: var(--number__df__r2g-grid-xlist-main-strip-container-border-width);
    }
        .r2g-grid-xlist-main-strip > .container > .intro-content{
            border-width: var(--number__df__r2g-grid-xlist-main-strip-intro-content-border-width);
        }
        .r2g-grid-xlist-main-strip .xlist-strip{
            border-width: var(--number__df__r2g-grid-xlist-main-strip-xlist-wrapper-border-width);
        }
            .r2g-grid-xlist-main-strip .flex-xlist > .xList-items {
                box-sizing: border-box;
            }
            .r2g-grid-xlist-main-strip .xlist-strip > .strip-xlist .xList-item {
                box-sizing: border-box;
            }

        .r2g-grid-xlist-main-strip .bottom-content{
            border-width: var(--number__df__r2g-grid-xlist-main-strip-bottom-content-border-width);
        }


/** END R2G Grid xList Main Strip - CSE **/
/** START R2G Flex xList (List Component) **/
.slick-slide {
    outline: none;
}
.r2g-flex-xlist-list-component.text-align-left > .intro-content{
    text-align: left;
}
.r2g-flex-xlist-list-component.text-align-center > .intro-content{
    text-align: center;
}
.r2g-flex-xlist-list-component.text-align-right > .intro-content{
    text-align: right;
}
.r2g-flex-xlist-list-component.flex-with-rotator .rotatorElement{
    position: relative;
    z-index: 1;
}
        .r2g-flex-xlist-list-component.flex-with-rotator .rotatorElement .xList-items{
        margin-left: -20px;
        margin-right: -20px;
        }
        .r2g-flex-xlist-list-component.flex-with-rotator .rotatorElement .slick-slide{
            margin-left: 20px;
            margin-right: 20px;
        }
    .r2g-flex-xlist-list-component.flex-with-rotator .rotatorElement .arrows-wrapper{
        position: absolute;
        z-index: 3;
        width: 100%;
        top: 50%;
    }
    .r2g-flex-xlist-list-component.flex-with-rotator .rotatorElement .slick-arrow{
        position: absolute;
        z-index: 5;
        top: 50%;
        cursor: pointer;
    }
    .r2g-flex-xlist-list-component.flex-with-rotator .sub-wrapper.rotatorElement .nav-left.slick-arrow{
        left: 0;
    }
    .r2g-flex-xlist-list-component.flex-with-rotator .sub-wrapper.rotatorElement .nav-right.slick-arrow{
        right: 0;
    }
        .r2g-flex-xlist-list-component.flex-with-rotator .rotatorElement .nav-left .line-one:after{
            content: '\eb52';
            font-family: icomoon;
            font-size: 30px;
        
        }
        .r2g-flex-xlist-list-component.flex-with-rotator .rotatorElement .nav-right .line-one:after{
            content: '\eb4f';
            font-family: icomoon;
            font-size: 30px;
        
        }
.r2g-flex-xlist-list-component.flex-with-rotator .rotatorElement .pager-wrapper{
    text-align: center;
}
    .r2g-flex-xlist-list-component.flex-with-rotator .rotatorElement .pager-wrapper ul{
        list-style-type: none;
    }
    .r2g-flex-xlist-list-component.flex-with-rotator .rotatorElement .pager-wrapper li{
        width: 8px;
        height: 8px;
        margin: 0 5px;
        border-radius: 100%;
        border-width: 2px;
        border-style: solid;
        display: inline-block;
        cursor: pointer;
    }
        .r2g-flex-xlist-list-component.flex-with-rotator .rotatorElement .pager-wrapper li.slick-active {
            border-width: 2px;
            border-style: solid;
            cursor: default;
            background: #000000;
        }
        .r2g-flex-xlist-list-component.flex-with-rotator .rotatorElement .pager-wrapper .slickNumber,
        .r2g-flex-xlist-list-component.flex-with-rotator .rotatorElement .pager-wrapper .pager-count{
            display: none;
        }
/** END R2G Flex xList (List Component) **/
/** START R2G xBox ( Sub Component ) **/
.r2g-xbox {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: stretch;
    flex-flow: column;
    position: relative;
}
    .r2g-xbox .image-wrapper img,
    .r2g-xbox .flex-items{
        width: 100%;
    }
    .r2g-xbox .flex-container{
        padding: 4% 0 0;
        width: 100%;
        display: -webkit-box;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center;
        box-sizing: border-box;
    }
    .text-align-left > .r2g-xbox .flex-container,
    .text-align-left > .intro-content{
        text-align: left;
    }
    .text-align-center > .r2g-xbox .flex-container,
    .text-align-center > .intro-content{
        text-align: center;
    }
    .text-align-right > .r2g-xbox .flex-container,
    .text-align-right > .intro-content{
        text-align: right;
    }

.image-on-bottom .r2g-xbox .image-wrapper{
    order: 1;
}
.image-on-bottom .r2g-xbox .image-wrapper,
.image-on-bottom .r2g-xbox .flex-container {
    width: 100%;
}

/* style 1 */
.xbox-style-1 .r2g-xbox{
    flex-flow: row wrap;
}
.xbox-style-1 .r2g-xbox .flex-container{
    padding: 7% 0 0;
}

/* style 2 */
.r2g-xbox-sub-component.xbox-style-2 .r2g-xbox,
.r2g-xbox-sub-component.xbox-style-2 .r2g-xbox .image-wrapper,
.r2g-xbox-sub-component.xbox-style-2 .r2g-xbox .flex-container,
.r2g-xbox-sub-component.xbox-style-2 .r2g-xbox .flex-items{
    width: 100%;
}
.r2g-xbox-sub-component.xbox-style-2 .r2g-xbox .flex-container{
	position: absolute;
	left: 0;
	padding: 20px;
	z-index: 1;
}
.xbox-style-2.content-on-top.r2g-xbox-sub-component .r2g-xbox .flex-container{
    top: 0;
}
.xbox-style-2.content-on-center.r2g-xbox-sub-component .r2g-xbox .flex-container{
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.xbox-style-2.content-on-bottom.r2g-xbox-sub-component .r2g-xbox .flex-container{
    bottom: 0;
}

/** END R2G xBox ( Sub Component ) **/
/** START R2G xBox ( List Component ) **/
.r2g-xbox-list-component.text-align-left .intro-content,
.r2g-xbox-list-component.text-align-left .flex-container {
  text-align: left;
}
.r2g-xbox-list-component.text-align-center .intro-content,
.r2g-xbox-list-component.text-align-center .flex-container {
  text-align: center;
}
.r2g-xbox-list-component.text-align-right .intro-content,
.r2g-xbox-list-component.text-align-right .flex-container {
  text-align: right;
}

/** END R2G xBox ( List Component ) **/
/** START R2G xBox ( Main Strip ) **/
.r2g-xbox-strip-component.text-align-left .intro-content,
.r2g-xbox-strip-component.text-align-left .flex-container {
  text-align: left;
}
.r2g-xbox-strip-component.text-align-center .intro-content,
.r2g-xbox-strip-component.text-align-center .flex-container {
  text-align: center;
}
.r2g-xbox-strip-component.text-align-right .intro-content,
.r2g-xbox-strip-component.text-align-right .flex-container {
  text-align: right;
}

/** END R2G xBox ( Main Strip ) **/
/** START R2G Content Main Strip **/
.r2g-content-main-strip-v2.text-align-left *{
    text-align: left;
}
.r2g-content-main-strip-v2.text-align-center *{
    text-align: center;
}
.r2g-content-main-strip-v2.text-align-right *{
    text-align: right;
}
.r2g-content-main-strip-v2.text-align-right *{
    text-align: justify;
}
.r2g-content-main-strip-v2 .two-col-content * {
	text-align: inherit;
}
.r2g-content-main-strip-v2 .content-wrapper *:last-child{
    margin-bottom: 0;
}
.r2g-content-main-strip-v2,
.r2g-content-main-strip-v2 .container,
.r2g-content-main-strip-v2 .content-wrapper{
    box-sizing: border-box;
}
.r2g-content-main-strip-v2.text-align-center .content-wrapper{
    margin: 0 auto;
}
.r2g-content-main-strip-v2.w-100 .content-wrapper{
    width: 100%;
}
.r2g-content-main-strip-v2.w-75 .content-wrapper{
    width: 75%;
}
.r2g-content-main-strip-v2.w-50 .content-wrapper{
    width: 50%;
}
.r2g-content-main-strip-v2.w-25 .content-wrapper{
    width: 25%;
}
.r2g-content-main-strip-v2.txt-col-1 .content-wrapper > p{
    columns: 1;
}
.r2g-content-main-strip-v2.txt-col-2 .content-wrapper > p{
    columns: auto 2;
}
.r2g-content-main-strip-v2.txt-col-3 .content-wrapper > p{
    columns: auto 3;
}
.r2g-content-main-strip-v2.txt-col-4 .content-wrapper > p{
    columns: auto 4;
}


/** END R2G Content Main Strip **/
/** START R2G Main Content Strip H1 + P **/
.text-align-center .main-content-strip-block{
	max-width: 745px;
	margin: 0 auto;
}
.text-align-left .main-content-strip-block *{
	text-align: left;
}
.text-align-center .main-content-strip-block *{
	text-align: center;
}
.text-align-right .main-content-strip-block *{
	text-align: right;
}
/** END R2G Main Content Strip H1 + P **/
/** START R2G Main Content H1 + P **/
.main-content-block{
    padding: 0 20px;
}
.container .main-content-block{
    padding: 0
}
.text-align-left.main-content-block *{
	text-align: left;
}
.text-align-center.main-content-block *{
	text-align: center;
}
.text-align-right.main-content-block *{
	text-align: right;
}
/** END R2G Main Content H1 + P **/