*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
   box-sizing: border-box !important; 
}


.center {
    text-align:center;
}

.left {
    text-align:left;
}

.right {
    text-align:right;
}

/* ---------- Magic Block ---------- */
.wce_magicblock {
  color: #000;
  display:table; 
}
 
 

.wce_magicblock .linkspecial {
	position: relative; 
}

.wce_magicblock .inner_content {
  display: table-cell;
  vertical-align: middle;
}


.bl {
    color:#000;
}


/* ----------  Hover animations ---------- */

/* simple scale  */

.anim_scale {
  position: relative; 
  background-color: #fff;
  -webkit-transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.anim_scale:hover {
    -webkit-transform: scale(1.25, 1.25);
    transform: scale(1.25, 1.25);
    z-index:9999999;
}

.anim_scale:after  {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* scale with shadow  */

.anim_scalewshadow  {
  position: relative; 
  background-color: #fff; 
  -webkit-transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.anim_scalewshadow:hover  {
    z-index:999999;
    -webkit-transform: scale(1.25, 1.25);
    transform: scale(1.25, 1.25);
    box-shadow: 0px 2px 50px rgba(0,0,0,0.4);
}


.anim_scalewshadow:after {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}


/* add shadow  */

.anim_shadow {
  position: relative;
  /* display: inline-block; */
  background-color: #fff;
  -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.63s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.anim_shadow:hover {
    box-shadow: 0px 2px 50px rgba(0,0,0,0.4);
}

.anim_shadow:after {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.shadow_sm {
    box-shadow: 0 2px 1px rgba(0, 0, 0, 0.2);
}
.shadow_md {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.shadow_lg {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
 

.link {
    display:block;
    margin-top:1.5em !important;
}
 


/*BLUR*/
.anim_blur  {
  -webkit-transition: all 0.5s ease;
     -moz-transition: all 0.5s ease;
       -o-transition: all 0.5s ease;
      -ms-transition: all 0.5s ease;
          transition: all 0.5s ease;
  -webkit-filter: blur(2px);
}

.anim_blur:hover {
  -webkit-filter: blur(0px);
}
 

/*B&W*/
.anim_bw {
  -webkit-transition: all 1s ease;
     -moz-transition: all 1s ease;
       -o-transition: all 1s ease;
      -ms-transition: all 1s ease;
          transition: all 1s ease; 
  -webkit-filter: grayscale(100%);
}

.anim_bw:hover {
  -webkit-filter: grayscale(0%);
}



/*BRIGHTEN*/
.anim_brighten {
  -webkit-filter: brightness(65%);
  -webkit-transition: all 1s ease;
     -moz-transition: all 1s ease;
       -o-transition: all 1s ease;
      -ms-transition: all 1s ease;
          transition: all 1s ease;
}

.anim_brighten:hover {
  -webkit-filter: brightness(100%);
}






 /* ---------- Border Radius ---------- */

.border2 {
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}

.border10 {
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}

.border20 {
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
}

.border30 {
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
border-radius: 30px;
}

.border40 {
-webkit-border-radius: 40px;
-moz-border-radius: 40px;
border-radius: 40px;
}

 .border50 {
-webkit-border-radius: 50px;
-moz-border-radius: 50px;
border-radius: 50px;
}

.border30top {
-webkit-border-top-left-radius: 30px;
-webkit-border-top-right-radius: 30px;
-moz-border-radius-topleft: 30px;
-moz-border-radius-topright: 30px;
border-top-left-radius: 30px;
border-top-right-radius: 30px;
}

.border30topright {
-webkit-border-radius: 30px;
-webkit-border-top-right-radius: 0;
-moz-border-radius: 30px;
-moz-border-radius-topright: 0;
border-radius: 30px;
border-top-right-radius: 0;
}

.border30topleft {
-webkit-border-radius: 30px;
-webkit-border-top-left-radius: 0;
-moz-border-radius: 30px;
-moz-border-radius-topleft: 0;
border-radius: 30px;
border-top-left-radius: 0;
}


 /* ---------- Feature Block ---------- */
.wce_featureblock {
  color: #000;
  display:table;
  font-size:14px;
}

.wce_featureblock p {
  font-size: 14px;
  color: #000;
  display: block;
  margin:0px;
}

.wce_featureblock .centered   {
	text-align: center;
	margin: 0 auto;
}

.wce_featureblock i {
    display:inline-block; 
}

.wce_featureblock .line_circle {
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}

.wce_featureblock .line_rounded {
	border-radius: 20%;
	-moz-border-radius: 20%;
	-webkit-border-radius: 20%;
}

.wce_featureblock .line_rectangle {
	border-radius: 1%;
	-moz-border-radius: 1%;
	-webkit-border-radius: 1%;
}

.wce_featureblock .circle_fill {
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}

.wce_featureblock .rounded_fill {
	border-radius: 20%;
	-moz-border-radius: 20%;
	-webkit-border-radius: 20%;

}

.wce_featureblock .rectangle_fill {
border-radius: 1%;
-moz-border-radius: 1%;
-webkit-border-radius: 1%;
}



/* Testimonial */ 

.tst1 {
    padding-bottom:1em;
	width: 100%;
	margin: 20px auto;
}

.tst1 .name ,.tst2 .name, .tst2 .name, .tst3 .name, .tst4 .name, .tst5 .name     {
  font-size: 12px;
  color: #000;
  letter-spacing: 5px;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 0.5em;
  padding-top: 1em;
}

.tst1 .text, .tst2 .text, .tst3 .text, .tst4 .text, .tst5 .text {
  color: #000;
  font-weight: 500; 
  text-align: center;
  padding: 0.5em;
  padding-bottom: 0.5em;
  line-height: 1.5em;
  display:block;
}

.tst1 .italic {
	font-style: italic;
}

.tst1 .normal {
  font-style: normal;
}

.tst1 .title, .tst2 .title, .tst3 .title, .tst4 .title, .tst5 .title { 
  padding: 0;
  font-style: normal;
  color: #9fa3a7;
  font-family: inherit;
}

.tst1 p {
  margin-bottom:0;
}

.tst1 h3, .tst2 h3, .tst3 h3, .tst4 h3, .tst5 h3 {
  margin:0;
}

.testimonial-container  {
  padding:1.2em; 
  padding-top: 1em;
  padding-bottom:0;
}


.tst1 .swiper-slide, .tst2 .swiper-slide, .tst3 .swiper-slide, .tst4 .swiper-slide, .tst5 .swiper-slide {
	text-align: center;
	font-size: 18px;
	width: 60%;
	/* Center slide text vertically */
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

.tst4 .text {
    text-align:left !important
}

 

.swiper-slide .icircle {
}


.swiper-slide .ifull img {
 
	width:30%;
	padding-top:30px;
}


.swiper-slide .icircle img {
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	width:80px;
}

.tst1 .swiper-slide .irectangle {
}

.swiper-slide .irectangle img {
	border-radius: 1%;
	-moz-border-radius: 1%;
	-webkit-border-radius: 1%;
	width:80px;
}

.tst1 .swiper-slide .irrectangle {
}

.swiper-slide .irrectangle img {
	border-radius: 10%;
	-moz-border-radius: 10%;
	-webkit-border-radius: 10%;
	width:80px;
}

.tst1 .divider {
  height:3px;
  width:20%;
  background:#eaeaea;
  display: block;
  margin:0 auto;
  margin-top: 1em;
  margin-bottom: 0em;
  display: block;
}


 .dark h3 {
    color:#aaa !important;
}

  .dark h4 {
    color:#fff;
}


.testimonial_wrapper {
    padding-top:1em;
    padding-bottom:1em;
}
 
.tst5 img {
  border-radius: 50%;
  width: 80px;
}
 
.tst5 .testimonial-container { 
  min-height: 120px;
} 

.tst5 .tstblack::after {
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 25px solid #101117;
    bottom: 10px;
    content: "";
    display: inline-block;
    position: relative;
    width: 3px;
    margin: 0 auto;
    height: 0px;
} 

.tst5 .tstblack1 {
    background:#101117;
    color:#fff;
}

.tst5 .tstwhite::after {
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 25px solid #fff;
    bottom: 10px;
    content: "";
    display: inline-block;
    position: relative;
    width: 3px;
    margin: 0 auto;
    height: 0px;
}
 
.tst5 .tstwhite1 {
    background:#fff;
}

.tst5 .tstgrey::after {
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 25px solid #eeeeee;
    bottom: 10px;
    content: "";
    display: inline-block;
    position: relative;
    width: 3px;
    margin: 0 auto;
    height: 0px;
}
 
.tst5 .tstgrey1 {
    background:#eeeeee;
    color:#404040;
}
 
.tst5 .tstblue::after {
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 25px solid #002bcc;
    bottom: 10px;
    content: "";
    display: inline-block;
    position: relative;
    width: 3px;
    margin: 0 auto;
    height: 0px;
}
 
.tst5 .tstblue1 {
    background:#002bcc;
    color:#fff;
}

 
/*	Call to Action Video */

/* ---------- Call to action small 1 ---------- */
.cta1 {
  padding-top: 2em;
  padding-bottom: 2em;
}

.cta1 h2 {
  font-size: 45px;
  font-weight: 200;
}

.cta1 h3 {
  font-style: italic;
  color: #404040;
  font-weight: 300;
  font-family: 'Merriweather', serif;
  font-size: 18px;
  padding-top: 0.6em;
}

.cta1 p {
  font-size: 16px;
  color: #5c5c5c;
}



/* ---------- Icon sizes ---------- */

.xs {
	font-size: 10px !important;
	 
}

.sm {
	font-size: 20px !important;
	 
}

.nm {
	font-size: 30px !important; 
}

.lg { 
	font-size: 40px !important;
	 
}

 .xl {
	font-size: 50px !important;
	 
}

 .xxl {
	font-size: 80px !important;
	 
}


/* ---------- Call to action small 1 ---------- */

.wce_simpletitles .centered   {
	text-align: center;
	margin: 0 auto;
}

.wce_simpletitles.left   {
	text-align: left;
	margin: 0 auto;
}
.wce_simpletitles.center   {
	text-align: center;
	margin: 0 auto;
}
.wce_simpletitles.right   {
	text-align: right;
	margin: 0 auto;
}

.wce_simpletitles i {
	 margin-top: 0.3em;
}

.line_circle {
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}

.line_rounded {
	border-radius: 20%;
	-moz-border-radius: 20%;
	-webkit-border-radius: 20%;
}

.line_rectangle {
	border-radius: 1%;
	-moz-border-radius: 1%;
	-webkit-border-radius: 1%;
}

.circle_fill {
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}

.rounded_fill {
	border-radius: 20%;
	-moz-border-radius: 20%;
	-webkit-border-radius: 20%;

}

.rectangle_fill {
border-radius: 1%;
-moz-border-radius: 1%;
-webkit-border-radius: 1%;
}



.cta5 { 
  background-color: #fff;
  color: #000;
  min-height:400px;
}

.cta_container {
    display: table;
    table-layout: fixed;
}

.cta_content {
    display: table-cell;
    vertical-align: middle;
    float: none;
}
 
.content-1-5 {
  padding: 0px;
  position: relative;
}

.content-1-5 .image-container {
  position: absolute;
  height: 100%;
  padding: 0px;
  top: 0px;
}


.content-1-5 .content {
  padding-top: 80px;
  padding-bottom: 80px;
}

.content-1-5 .image-container .background-image-holder {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 100%;
background-repeat:no-repeat !important;
}

 
.cta6 {
  min-height:400px;
}

.content-1-6 {
    position:relative;
}

.content-1-6 .image-container {
  position: absolute;
  height: 100%;
  padding: 0px;
  top: 0px;
  right:0;
}
.content-1-6 .content {
  padding-top: 80px;
  padding-bottom: 80px;
}

.content-1-6 .image-container .background-image-holder {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100%;
    background-repeat:no-repeat !important;
}



/* ---------- slider main ---------- */
.swiper-wrapper {
    padding-bottom:20px;
}


/* ---------- slider 2 ---------- */
.slider2 {
}


.slider2 p {
  font-size:15px;
  color: #717171;
}

.swiper-slider {
  width: 100%; 
}



.slider2 .swiper-slide { 
  font-size: 18px;
  background: #111;
  color: #FFF;
  background-size: cover;
  background-position: center;
 
}

.slider2 .text_container {
padding:1em;
}


 /* This parent can be any width and height */
.block {
  text-align: center;

  /* May want to do this if there is risk the container may be narrower than the element inside */
  white-space: nowrap;
}
 
/* The ghost, nudged to maintain perfect centering */
.block:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em; /* Adjusts for spacing */
}

/* The element to be centered, can also be of any width and height */ 
.centered {
  display: inline-block;
  vertical-align: middle;
  width: 300px;
}

 

 



 
 


/*	Pricing Tables */

/* ---------- pricing 1 ---------- */
.prcb_container{ 
 float:left; 
}

.prcb_container .top > * {
 margin: 0px;
}
.prcb_container .top {
 padding-top: 1em;
}

.prcb_container ul {
 list-style: none;
 list-style-type: none;
 margin: 0px 0px 40px;
 padding: 0px;
 font-size: 15px;
}

.prcb_container ul li {
 list-style: none;
 list-style-type: none;
}

.prcb_container .divider {
 height:3px;
 width:30%;
 background:#000;
 display: block;
 margin:0 auto;
 margin-top:1em;
}

.makecontainerlarger {
    position:relative;
    z-index:99999;
    transform: scale(1.25, 1.25);
}



.pTable {   
    
}


.pTable img {
    padding-bottom:1em;
}
 
.pTable sup {
  font-size: 50%;
}

.pTable .top {   
} 

.pTable .top > * { 
}

.pTable .top .price { 
}

.pTable .subtitle {   
	padding-top: 0.5em;
	padding-bottom:2em;
}

 

.pTable .divider {
	height:3px;
	width:30%;
	background:#fff;
	display: block;
	margin:0 auto;
}

.pTable ul {
	list-style: none;
	list-style-type: none;
	margin: 0px 0px 30px;
	padding: 0px; 
}

.pTable ul li {
	padding-bottom: 0.6em; 
	padding-top: 0.6em;
}
 


.prcth1 {
    
}
 
.pTable .top {  
	padding-top: 5px;
} 

.prcth1 .descr {
    font-size:25px;
    font-weight:700;
    color:#b2b2b2;
    padding-bottom:0;
}

.prcth1 .price {
    font-size:50px;
    color:#525252;
    font-weight:700;
    padding:0;
    padding-bottom:0.2em;
}

.prcth1 .period {
    font-size:12px;
    color:#525252;
}

.prcth1  ul li {
    font-size:14px; 
    color:#727272;
}

.prcth1 ul li {
	padding-bottom: 0.5em; 
	border-bottom:solid 1px #f2f2f2;
}


.prcth2 .descr {
    font-size:15px;
    font-weight:700;
    color:#434343;
    padding-bottom:0;
}

.prcth2 .price {
    font-size:50px;
    color:#329cff;
    font-weight:700;
    padding:0;
    padding-bottom:0.2em;
}

.prcth2 .period {
    font-size:12px;
    color:#329cff;
}

.prcth2 ul li {
    font-size:13px; 
    color:#434343;
}

.prcth2 ul li {
	padding-bottom: 0.5em;  
}


.prcth2b .descr {
    font-size:18px;
    font-weight:700;
    color:#434343;
    padding-bottom:0;
}

.prcth2b .price {
    font-size:50px;
    color:#329cff;
    font-weight:700;
    padding:0;
    padding-bottom:0.2em;
}

.prcth2b .period {
    font-size:12px;
    color:#4c4c4c;
    letter-spacing:3px;
    display:block;
    text-transform:uppercase;
}

.prcth2b ul li {
    font-size:14px; 
    color:#0c2867;
    font-weight:700;
    text-transform:uppercase;
}

.prcth2b ul li {
	padding-bottom: 0.5em;  
}




.prcth3 .descr {
    font-size:16px;
    font-weight:400;
    color:#252934;
    padding-bottom:0;
}

.prcth3 .price {
    font-size:50px;
    color:#f5422a;
    font-weight:700;
    padding:0;
    padding-bottom:0.2em;
}

.prcth3 .period {
    font-size:12px;
    color:#f5422a;
    clear:both;
}

.prcth3 ul li {
    font-size:13px; 
    color:#252934;
}

.prcth3 ul li {
	padding-bottom: 0.5em;  
}

 /* ---------- pricing 1 ---------- */ 
 
.prc1 .price { 
	font-size: 60px;   
}
 
.prc1 {
	text-align: center;
	border: 1px solid #e0e0e0;
	border-radius: 5px;
	background-color: #fff;
		border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	transition: box-shadow 1s;
	-webkit-transition: box-shadow 1s;
	-moz-transition: box-shadow 1s;

}

.prc1:hover {
		box-shadow: 0px 2px 50px rgba(0,0,0,0.2);
}

.prc1 .top { 
	padding: 5px;
	padding-top: 40px;
}

.prc1 h2 {
	font-size: 15px;
	color: #000; 
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;

}

.prc1 h3 {
	font-size: 36px;
	color: #3f3f3f; 
	padding-top: 0.1em; 

}
.prc1 .top h4 {
	font-size: 12px;
	color: #3f3f3f;
  letter-spacing: 5px;
	font-weight: 700;

}

.prc1 .top > * {
	margin: 0px;
}

.prc1 .top .price {
	font-size: 60px;
	color: #000; 
}

.prc1 .subtitle {
	font-size: 20px;
	color: #3f3f3f;
	font-weight: 300;
	padding-top: 0.5em;
	padding-bottom:2em;
}

.prc1 .top .price span {
	font-size: 18px;
	color: #aaa;
}

.prc1 .bottom {
	padding: 2em;
}

.prc1 .bottom ul {
	list-style: none;
	list-style-type: none;
	margin: 0px 0px 40px;
	padding: 0px;
	font-size: 15px;
}

.prc1 .divider {
	height:3px;
	width:30%;
	background:#fff;
	display: block;
	margin:0 auto;
}


.prc1 .bottom ul li {
	padding-bottom: 1em;

}

.prc1 .bottom ul li a {
	background-color: #3453e7 !important;
}
 

.special_prc1 {
  background: #f9593a;
  color: #fff; 
}

.special_prc1 h4, .special_pricing1 .price, .special_pricing1 span{
  color: #fff !important;
}






.pricing1 {
	text-align: center;
	border: 1px solid #e0e0e0;
	border-radius: 5px;
	background-color: #fff;
		border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	transition: box-shadow 1s;
	-webkit-transition: box-shadow 1s;
	-moz-transition: box-shadow 1s;

}

.pricing1:hover {
		box-shadow: 0px 2px 50px rgba(0,0,0,0.2);
}

.pricing1 .top { 
	padding: 5px;
	padding-top: 40px;
}

.pricing1 h2 {
	font-size: 15px;
	color: #000; 
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;

}

.pricing1 h3 {
	font-size: 36px;
	color: #3f3f3f; 
	padding-top: 0.1em; 

}
.pricing1 .top h4 {
	font-size: 12px;
	color: #3f3f3f;
  letter-spacing: 5px;
	font-weight: 700;

}

.pricing1 .top > * {
	margin: 0px;
}

.pricing1 .top .price {
	font-size: 60px;
	color: #000; 
}

.pricing1 .subtitle {
	font-size: 20px;
	color: #3f3f3f;
	font-weight: 300;
	padding-top: 0.5em;
	padding-bottom:2em;
}

.pricing1 .top .price span {
	font-size: 18px;
	color: #aaa;
}

.pricing1 .bottom {
	padding: 2em;
}

.pricing1 .bottom ul {
	list-style: none;
	list-style-type: none;
	margin: 0px 0px 40px;
	padding: 0px;
	font-size: 15px;
}

.pricing1 .divider {
	height:3px;
	width:30%;
	background:#fff;
	display: block;
	margin:0 auto;
}


.pricing1 .bottom ul li {
	padding-bottom: 1em;

}

.pricing1 .bottom ul li a {
	background-color: #3453e7 !important;
}

  .specialrow {
-webkit-box-shadow: 0px 0px 48px -12px rgba(0,0,0,0.47);
-moz-box-shadow: 0px 10px 48px -12px rgba(0,0,0,0.47);
box-shadow: 0px 0px 48px -12px rgba(0,0,0,0.47);
}

  .specialrow2 {
	box-shadow: 0px 5px 50px 1px rgba(0,0,0,0.2);

}

.special_pricing1 {
  background: #f9593a;
  color: #fff; 
}

.special_pricing1 h4, .special_pricing1 .price, .special_pricing1 span{
  color: #fff !important;
}




  /* ---------- pricing 2 ---------- */ 
 
.pricing2 {
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	background-color: #fff;
	padding:2em;
	text-align: left;
	border:solid 1px #eee;
}

.pricing2 .top {
	color: #000;
	-webkit-border-top-left-radius: 20px;
	-webkit-border-top-right-radius: 20px;
	-moz-border-radius-topleft: 20px;
	-moz-border-radius-topright: 20px;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	text-align: center;
}

.pricing2 .top h4 {
	font-size: 14px;
	margin-bottom: 30px;
	margin-top:10px;
	text-transform: uppercase;
	font-weight: 700;
  letter-spacing: 5px;
}

.pricing2 .top > * {
	margin: 0px;
}

.pricing2 .top .price .currency {
	font-size: 24px;
	line-height: 54px;
	vertical-align: top;
	display: inline-block;
}

.pricing2 .top .price b {
	font-size: 70px;
	line-height: 70px;
	color: #000;
}

.pricing2 .top .price .month {
	color: #000;
}


.pricing2 h2 {
	font-size: 15px;
	color: #000; 
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;

}

.pricing2 h3 {
	font-size: 36px;
	color: #3f3f3f; 
	padding-top: 0.1em; 

}
 
.pricing2 .subtitle {
	font-size: 20px;
	color: #3f3f3f;
	font-weight: 300;
	padding-top: 0.5em;
	padding-bottom:2em;
}



.pricing2 .bottom {
	padding-top: 2em;
	border-top: 0px;
	-webkit-border-bottom-right-radius: 6px;
	-webkit-border-bottom-left-radius: 6px;
	-moz-border-radius-bottomright: 6px;
	-moz-border-radius-bottomleft: 6px;
	border-bottom-right-radius: 6px;
	border-bottom-left-radius: 6px;
}

.pricing2 .bottom ul {
	list-style: none;
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}

.pricing2 .bottom ul li {
	line-height: 54px;
	border-bottom: 1px solid #ececec;
	padding: 0px 40px;
	font-size: 16px;
}

.pricing2 .bottom ul li > span {
	color: #000;
	font-size: 14px;
	margin-right:10px;
}

.pricing2 .bottom > a {
	margin-left: 20%;
	margin-top: 10%;
}

 

 /* ---------- pricing 4 ---------- */ 
 
 
 
.pricing4 {
	text-align: center;
	border: 1px solid #1b20fe; 
	padding-top: 2em;
	padding-bottom: 1em; 
	background-color: #080d23;
}
 
.pricing4 .top { 
	padding: 5px;
	padding-top: 40px;
}

.prc4 h2 {
	font-size: 15px;
	color: #fff; 
	font-weight: 700;
	text-align: center;
	text-transform: uppercase; 
}

.prc4 h3 {
	font-size: 36px;
	color: #fff; 
	padding-top: 0.1em;  
}
 
.pricing4 .top h4 {
	font-size: 12px;
	color: #fff;
  letter-spacing: 5px;
	font-weight: 700; 
}

.pricing4 .top > * {
	margin: 0px;
}

.pricing4 .top .price {
	font-size: 60px;
	color: #fff; 
}

.prc4 .subtitle {
	font-size: 20px;
	color: #fff;
	font-weight: 300;
	padding-top: 0.5em;
	padding-bottom:2em;
}

.pricing4 .top .price span {
	font-size: 18px;
	color: #aaa;
}

.pricing4 .bottom {
	padding: 2em;
}

.pricing4 .bottom ul {
	list-style: none;
	list-style-type: none;
	margin: 0px 0px 40px;
	padding: 0px;
	font-size: 15px;
}

.pricing4 .divider {
	height:3px;
	width:30%;
	background:#1b20fe;
	display: block;
	margin:0 auto;
} 

.pricing4 .bottom ul li {
	padding-bottom: 1em;
	color: #ededed;
}

.pricing4 .bottom ul li a {
	background-color: #3453e7 !important;
} 
 
 

.special_pricing4 {
	margin-top: -5px;
 padding-left: 1em;
 min-width: 40%; 
  outline: 8px solid #1b20fe;
}

.special_pricing4 h4, .special_pricing4 .price, .special_pricing4 span{
  color: #fff !important;
}

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {

.special_pricing4 {
	margin-top: 0px;
}
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
 

}
   

 /* ---------- pricing 8 ---------- */ 
.prc8{
	background-color: #fff;
	padding-top: 3em;
	padding-bottom: 5em;
	text-align: center;
}
 
 
.pricing8 {

}
 
.pricing8 .top { 
	padding: 5px;
	padding-top: 40px;
}

.prc8 h2 {
	font-size: 15px;
	color: #000; 
	font-weight: 700;
	text-align: center;
	text-transform: uppercase; 
}

.prc8 h3 {
	font-size: 36px;
	color: #000; 
	padding-top: 0.1em;  
}

.prc8 .subtitle {
	font-size: 20px;
	color: #000;
	font-weight: 300;
	padding-top: 0.5em;
	padding-bottom:2em;
}

.table-responsive {
  max-width: 1000px;
  margin: 0 auto;
  border: 0;
}


.prc8 a {
	margin-top: 30px;
}


.prc8  thead {
  display: none;
  background-color: #fff;
}
@media (min-width: 769px) {
.prc8    thead {
    display: table-header-group;
  }
}



.prc8  tr {
  display: block;
  padding: 0.5em 0;

}
.prc8  tr:after {
  display: table;
  content: '';
  clear: both;
}
@media (min-width: 769px) {
 .prc8   tr {
    display: table-row;
    padding: 0;
  }
 .prc8   tr:after {
    display: none;
  }
}

.prc8  thead th,
.prc8  tbody th {
  letter-spacing: 1px;
}

.prc8  thead th {
  text-align: center;
}

.prc8  tbody th {
  text-align: center;
  text-transform: capitalize;
  display: block;
  padding-left:1em;
}
@media (min-width: 769px) {
 .prc8   tbody th {
    text-align: left;
    display: table-cell;
    padding-left: 1em;
  }
}

.table > thead > tr > th {
  border: 0;
  padding: 1em;
  vertical-align: middle;


}

.table > tbody > tr > th,
.table > tbody > tr > td {
  border: 0;
  padding: 1.2em;
  vertical-align: middle;	
  background-color: #f3f9ff;
}

.table > thead > tr > th {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.table > tfoot > tr > td {
  padding: 0;
  border: 0;
}

.table tbody td {
  text-align: center;
  text-transform: capitalize;
}
.table tbody td:before {
  content: attr(data-th);
  display: block;
  text-transform: capitalize;
  margin-bottom: 0.25em;
}

.table thead th, tbody td {
  /*min-width: 50px;*/
}

.table thead th:nth-child(1),
.table tbody td:nth-child(1) {
  display: block;
  width: 100%;
}
@media (min-width: 769px) {
.table  thead th:nth-child(1),
.table  tbody td:nth-child(1) {
    display: table-cell;
    width: 20%;
  }
}

.prc8 thead th:nth-child(2),
.prc8 tbody td:nth-child(2),
.prc8 thead th:nth-child(3),
.prc8 tbody td:nth-child(3),
.prc8 thead th:nth-child(4),
.prc8 tbody td:nth-child(4) {
  display: block;
  float: left;
  width: 50%;
}
@media (min-width: 769px) {
.prc8   thead th:nth-child(2),
 .prc8  tbody td:nth-child(2),
.prc8   thead th:nth-child(3),
.prc8 tbody td:nth-child(3),
.prc8 thead th:nth-child(4),
.prc8 tbody td:nth-child(4)
 {
    display: table-cell;
    float: none;
    width: 20%;
  }
}

.prc8 tbody td:nth-child(2) {
  text-transform: lowercase;
}

 
 
@media (min-width: 769px) {
 .prc8 tbody td:nth-child(3) {
 
  }
}
 

 

table.table.table-striped {
  border: 0;
}

 

.table > thead > tr > th:nth-child(3) {
  padding-top: 1em;
  padding-bottom: 1em; 
}


























.sticker {
  position: absolute;
  top: -11px;
  right: 0px; 
  z-index:99999;
}

 .sticker .sale {
  text-align: center;
  color: #fff;
  text-transform: uppercase;
  width: 90px;
  height: 90px;
  font-size:21px;
  border-radius: 50%;
  line-height: 1em;
  font-weight: 700;
  text-align: center;
  display: table-cell !important;
  vertical-align: middle !important;
  text-shadow: 2px 1px 0px rgba(0, 0, 0, 0.2);
  border:double 5px rgba(255, 255, 255, 0.4);
  transition: width 400ms ease-in-out, height 400ms ease-in-out;
  -webkit-box-shadow: -2px 2px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: -2px 2px 3px rgba(0, 0, 0, 0.2);
  box-shadow: -2px 2px 3px rgba(0, 0, 0, 0.2);
}


.box .has-sticker .sticker {
  color: #fff;
  font-size:13px;
  text-align: center;
  text-shadow: 2px 1px 0px rgba(0, 0, 0, 0.2); 
  font-weight:700;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  position: absolute;
  padding: 2px 0;
  right: -12px;
  top:12px; 
  width:100px;
  background-color: #459a00;
 -webkit-border-top-left-radius: 4px;
-webkit-border-top-right-radius: 4px;
-moz-border-radius-topleft: 4px;
-moz-border-radius-topright: 4px;
border-top-left-radius: 4px;
border-top-right-radius: 4px; 
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}
.box .has-sticker .sticker:before, .box .has-sticker .sticker:after {
  content: "";
  border-top: 4px solid #444;
  border-left: 4px solid transparent;
  border-right: 3px solid transparent;
  position: absolute;
  bottom: -3px;
}
.box .has-sticker .sticker:before {
  left: 0;
}
.box .has-sticker .sticker:after {
  right: 0;
}


.box .customimagesticker {
  position: absolute;
  padding: 2px 0;
  right: -30px;
  top:7px;
}



/*	Go Top */

.gotop {
  position: fixed;
  bottom: 20px;
  right: 0;
  width: 40px;
  height: 40px;

  cursor: pointer;
  z-index: 51;
  width: 0;
  border-radius: 50% 0 0 50%;
  transition: all .3s ease;
}



 [data-tooltip],
.tooltip {
  position: relative;
  cursor: pointer;
}

/* Base styles for the entire tooltip */
[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after {
  position: absolute;
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: 
      opacity 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        -webkit-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    -moz-transition:    
        opacity 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        -moz-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    transition:         
        opacity 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform:    translate3d(0, 0, 0);
  transform:         translate3d(0, 0, 0);
  pointer-events: none;
}

/* Show the entire tooltip on hover and focus */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

/* Base styles for the tooltip's directional arrow */
.tooltip:before,
[data-tooltip]:before {
  z-index: 1001;
  border: 6px solid transparent;
  background: transparent;
  content: "";
}

/* Base styles for the tooltip's content area */
.tooltip:after,
[data-tooltip]:after {
  z-index: 1000;
  padding: 8px;
  width: 160px;
  background-color: #000;
  background-color: hsla(0, 0%, 20%, 0.9);
  color: #fff;
  content: attr(data-tooltip);
  font-size: 14px;
  line-height: 1.2;
}

/* Directions */

/* Top (default) */
[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after,
.tooltip-top:before,
.tooltip-top:after {
  bottom: 100%;
  left: 50%;
}

[data-tooltip]:before,
.tooltip:before,
.tooltip-top:before {
  margin-left: -6px;
  margin-bottom: -12px;
  border-top-color: #000;
  border-top-color: hsla(0, 0%, 20%, 0.9);
}

/* Horizontally align top/bottom tooltips */
[data-tooltip]:after,
.tooltip:after,
.tooltip-top:after {
  margin-left: -80px;
}

[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after,
.tooltip-top:hover:before,
.tooltip-top:hover:after,
.tooltip-top:focus:before,
.tooltip-top:focus:after {
  -webkit-transform: translateY(-12px);
  -moz-transform:    translateY(-12px);
  transform:         translateY(-12px); 
}


/* Bottom */
.tooltip-bottom:before,
.tooltip-bottom:after {
  top: 100%;
  bottom: auto;
  left: 50%;
}

.tooltip-bottom:before {
  margin-top: -12px;
  margin-bottom: 0;
  border-top-color: transparent;
  border-bottom-color: #000;
  border-bottom-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-bottom:hover:before,
.tooltip-bottom:hover:after,
.tooltip-bottom:focus:before,
.tooltip-bottom:focus:after {
  -webkit-transform: translateY(12px);
  -moz-transform:    translateY(12px);
  transform:         translateY(12px); 
}


.sldr_fade .swiper_slide {
            background-position: center;
        background-size: cover;
}

.sldr_vertical .swiper_slide {
        text-align: center;
        font-size: 18px;
        background: #fff;
        /* Center slide text vertically */
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;    
    
}

/* ---------- slider 3 ---------- */
.slider3 {
}


.slider3 p {
  font-size:15px;
  color: #717171;
}

.sldr3 {  
}

.slider3 .swiper-slide {  
    padding-bottom:60px;
}


/* ---------- slider 4 ---------- */
.slider4 {
   
}



.slider4 p {
  font-size:15px;
  color: #717171;
}

.slider4 .swiper-container {  
overflow:visible !important;
}

.slider4 .swiper-slide {  
}


/* spacerdivider */

.wce_spacerdivider {
    
}

.wce_spacerdivider i { 
}

/* dividers */

hr.solid{
	border-top: solid;
	background:none;
}


hr.double {
	border-top: double;
	background:none;
}

hr.dashed {
	border-top: dashed;
	background:none;
}

hr.dotted{
	border-top: dotted;
	background:none;
}
