.color--red {
    color: #ff4b4b;
}

.color--green {
    color: #40c952;
}

.color--blue {
    color: #0081f9;
}

.color--orange {
    color: #F37821;
}

.color--pink {
    color: #ec008c;
}

.color--cyan {
    color: #47B9F3;
}

.color--purple {
    color: #886cff;
}

.color--white {
    color: #ffffff;
}

.color--dark {
    color: #333333;
}


.bg--red {
    background-color: #ff4b4b;
}

.bg--green {
    background-color: #40c952;
}

.bg--blue {
    background-color: #0081f9;
}

.bg--orange {
    background-color: #F37821;
}

.bg--pink {
    background-color: #ec008c;
}


.bg--cyan {
    background-color: #47B9F3;
}

.bg--purple {
    background-color: #886cff;
}


.bg--white {
    background-color: #ffffff;
    color: #454545;
}

.bg--dark {
    background-color: #333333;
    color: #fff;
}


.bg--transparent {
    background: transparent;
}


[class*='bg--gradient-'] {
    background-size: 100%;
}

section[class*='bg--'] {
    position: relative;
    z-index: 0;
}


.bg--gradient-red {
    background-image: -webkit-linear-gradient(left, #e91d62, #ff4b4b);
    background-image: linear-gradient(90deg, #e91d62 0, #ff4b4b);
    color: #fff;
}

.bg--gradient-green {
    background-image: -webkit-linear-gradient(left, #39b54a, #8dc63f);
    background-image: linear-gradient(90deg, #39b54a 0, #8dc63f);
    color: #fff;
}

.bg--gradient-blue {
    background-image: -webkit-linear-gradient(left, #5771e6, #605ca8);
    background-image: linear-gradient(90deg, #5771e6 0, #605ca8);
    color: #fff;
}

.bg--gradient-orange {
    background-image: -webkit-linear-gradient(left, #ff9700, #ed1c24);
    background-image: linear-gradient(90deg, #ff9700 0, #ed1c24);
    color: #fff;
}

.bg--gradient-pink {
    background-image: -webkit-linear-gradient(left, #ec008c, #6739b6);
    background-image: linear-gradient(90deg, #ec008c 0, #6739b6);
    color: #fff;
}

.bg--gradient-cyan {
    background-image: -webkit-linear-gradient(left, #1cbbb4, #00bff3);
    background-image: linear-gradient(90deg, #1cbbb4 0, #00bff3);
}

.bg--gradient-purple {
    background-image: -webkit-linear-gradient(left, #5e00ff, #9000ff);
    background-image: linear-gradient(90deg, #5e00ff 0, #9000ff);
    color: #fff;
}

/*-----------------------------------------------------------------------------------*/
/* 00. CSS Reset + normalize
/*-----------------------------------------------------------------------------------*/

html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}

pre {
    background: #fcfcfc;
    padding: 5px 5px 5px 15px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus
input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 30px white inset;
}
/*-----------------------------------------------------------------------------------*/
/* 01. Document Setup
/*-----------------------------------------------------------------------------------*/

img {
    height: auto;
    max-width: 100%;

    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Paragraph */
p{
    margin: 0.85em 0;
    /*line-height: 1.3;*/
}

/* hr */
hr{
    display: block;
    height:1px;
    background-color: #bdbdbd;
    border: 0;
    margin: 30px 0;
}

table{
    border-collapse:collapse;
    border-spacing:0;
}

strong {
    font-weight:700;
}

a:focus {
    outline: 0;
}

/* Headings */
h1, h2, h3, h4, h5, h6{
    margin:0 0 10px;
}

.no-select {
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}


/* webkit, opera, IE9 */
::selection {
    background:#d7c3a8;
    color: #fff;
}

/* mozilla firefox */
::-moz-selection  {
    background:#073B87;
    color: #fff;
}

/* Forms */
input[type="email"]:focus,
input[type="text"]:focus,
textarea:focus { -moz-outline: 0; outline:0; }

/*visual composer*/
.wpb_content_element {
    line-height:1.8em;
    font-weight:400;
}

.wpb_row, /*.wpb_content_element,*/ ul.wpb_thumbnails-fluid>li, .last_toggle_el_margin, .wpb_buttonn{
    margin-bottom:0!important;
}

.wpb_row .wpb_column {
    margin-bottom:0!important;
}

.wpb_row .wpb_column:after {
    content: " ";
    display: block;
    height: 0;
    clear: both;
}

/* Equal height background image  */
.vc_row.vc_row-o-equal-height > .vc_column_container .vc_column-inner {
    background-position: center;
    -moz-background-size: cover;
    -o-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
}

.background_cover .background-images {
    -moz-background-size: cover;
    -o-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
}

/* Float */
.float-right{
    float:right !important;
}

/* Visibility */
.visible-phone,.hidden-desktop  {
    display:none!important;
}

.visible-tablet,.visible-h-tablet {
    display: inherit !important;
}

.hidden {
    display:none
}

/* columns content - vertical Position */
.vc_column-inner.vertical_position {
    display: table !important;
    width: 100%;
    height: 100%;
    table-layout: fixed;
}

.vc_column-inner.vertical_position.vertical_position_middle > .wpb_wrapper {
    vertical-align: middle;
    display: table-cell;
    width: 100%;
}

.vc_column-inner.vertical_position.vertical_position_bottom > .wpb_wrapper {
    vertical-align: bottom;
    display: table-cell;
    width: 100%;
}


dl {
    margin-bottom: 24px;
}

dt {
    font-weight: bold;
}

dd {
    margin-bottom: 24px;
}

blockquote {
    color: #767676;
    font-size: 15px;
    font-style: italic;
    line-height: 1.2631578947;
    margin-bottom: 24px !important;
    quotes: "\201C""\201D""\2018""\2019";
    font-weight: 400;
    position:relative;
}

blockquote:before {
    color: #ccc;
    content: open-quote;
    font-size: 3.5em;
    line-height: 0.1em;
    margin-right: 0.25em;
    vertical-align: -0.4em;
}

blockquote:after {
    color: #ccc;
    content: close-quote;
    font-size: 3.5em;
    line-height: 0.1em;
    margin-right: 0.25em;
    vertical-align: -0.6em;
}

blockquote p {
    display: inline;
    margin:0;
}


/*-----------------------------------------------------------------------------------*/
/*  63.text block
/*-----------------------------------------------------------------------------------*/
.wpb_wrapper .wpb_text_column.wpb_content_element ul {
    /*list-style:none;*/
}

.wpb_wrapper .wpb_text_column.wpb_content_element ol {
    padding-left: 25px;
    list-style-type: decimal;
}

.wpb_wrapper p em {
    font-style: italic;
}


.rntp-shortcode a{text-decoration: none}

/****************************Carousel Nav********************/
.carousel .arrows-button-prev,
.carousel .arrows-button-next {
    border: 0 !important;
    width: 45px;
    height: 45px;
    display: block;
    position: absolute;
    z-index: 4;
    cursor: pointer;
    top: calc(50% - 25px);
    color: #333;
    font-size: 16px!important;
    background: rgba(255,255,255,.5);
    speak: none;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background .3s ease, opacity .3s ease;
    text-align: center;
    line-height: 45px;
}



.carousel .arrows-button-prev:hover,
.carousel .arrows-button-next:hover {
    background: rgba(255,255,255,1);
}

.carousel .arrows-button-next {
    right:0;
}

.carousel .arrows-button-prev {
    left:0;
}


/* Dark style*/
.carousel.dark .arrows-button-prev,
.carousel.dark .arrows-button-next {
    background: rgba(0,0,0,.5);
    color : #fff;
    border:1px solid #7D7D7D;
}

.carousel.dark .arrows-button-prev:hover,
.carousel.dark .arrows-button-next:hover {
    background: rgba(0,0,0,1);
}

.carousel .arrows-button-prev:focus,
.carousel .arrows-button-next:focus {
    outline: transparent;
}

.carousel .swiper-pagination {
    position: relative;
    margin: 0 auto;
}
.carousel .swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    margin: 0 5px;
}
.carousel .swiper-pagination-bullet-active{
    background: rgba(0,0,0,1);
}
/*********************************WC**************************************/

.rntp-wc .eventorian-loadmore-wrap .eventorian-loadmore-btn {
    color: #333333;
    cursor: pointer;
}

.shadow--tiny, .shadow--small, .shadow--medium, .shadow--large {
    transition: box-shadow 0.3s ease-in-out;
}



.shadow--small, .hover-shadow.shadow--tiny:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.shadow--medium, .hover-shadow.shadow-small:hover {
    box-shadow: 0 15px 25px rgba(218,225,232,.7);
}
.shadow--tiny {
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.08);
}

.shadow--large, .hover-shadow.shadow-medium:hover {
    box-shadow: 0 20px 30px rgba(218,225,232,.7);
}

.border--radius-xs {
    border-radius: 5px !important;
}

.border--radius-sm {
    border-radius: 10px !important;
}

.border--radius-md {
    border-radius: 15px !important;
}

.border--radius-lg, .countdown-semiround .time-block {
    border-radius: 20px !important;
}

.border--radius-xlg {
    border-radius: 25px !important;
}

.border--radius-xxlg {
    border-radius: 30px !important;
}

.hover--transform-small:hover {
    z-index: 2;
}
.hover--transform-small:hover {
    transform: translate(0,-10px);
}
.transition--all {
    transition: all .4s ease;
}
