/********** Template CSS **********/
:root {
    --primary: #0082fe;
    --secondary: #8D9297;
    --light: #F8F9FA;
    --dark: #0182FF;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-left: 30px;
    padding: 25px 0;
    color: var(--secondary);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: 'Verdana';
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 25px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, .65);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--dark);
    border: 15px solid var(--dark);
    border-radius: 50px;
}

.carousel-caption .breadcrumb-item+.breadcrumb-item::before {
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 3rem;
        height: 3rem;
        border-width: 12px;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Facts ***/
.facts-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 0, 0, .65);
}

.facts-overlay h1 {
    font-size: 120px;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
}

.facts-overlay a:hover {
    color: var(--primary) !important;
}


/*** Service ***/
.service-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: var(--primary);
    opacity: 0;
    transition: .5s;
}

.service-item:hover .service-text::before {
    height: 100%;
    opacity: 1;
}

.service-text * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service-item:hover .service-text * {
    color: #FFFFFF !important;
}


/*** Appointment ***/
.appointment {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/carousel_2.jpg) center center no-repeat;
    background-size: cover;
}


/*** Team ***/
.team-text {
    position: absolute;
    width: 75%;
    bottom: 30px;
    left: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    width: 100%;
}

.team-text * {
    transition: .5s;
}

.team-item:hover .team-text * {
    letter-spacing: 2px;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Footer ***/
.footer {
    color: #999999;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #999999;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #999999;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);

}

.container-boton{
    background-color: #0082fe;
    border: 1px solid #fff;
    position: fixed;
    z-index: 999;
    border-radius: 50%;
    bottom: 20px;
    le: 25px;
    padding: 25px;
    transition: ease 0.3s;
    animation: efecto 1.2s infinite;
}

.container-boton:hover{
    transform: scale(1.1);
    transition: 0.3s;
}

.boton{
    width: 80px;
    transition: ease 1s;
}

@keyframes efecto{
    0%{
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.85);
    }
    100%{
        box-shadow: 0 0 0 25px rgba(0, 0, 0, 0);
    }
}

/*-------------------------------------------------------------------------*/
/* 7. Column Styles
/*-------------------------------------------------------------------------*/

.col {
  position: relative;
  float: left;
}

/* Column boxed style */
.col.boxed:not(.wpb_column) {
  -webkit-box-shadow:0 1px 2px rgba(0,0,0,0.2);
  box-shadow:0 1px 2px rgba(0,0,0,0.2);
  background-color:#fff;
  padding:25px 15px 15px 15px;
  position:relative;
  -webkit-transition:top 0.2s ease,-webkit-box-shadow 0.2s ease;
  transition:top 0.2s ease,box-shadow 0.2s ease
}
.col.boxed .bottom-line, 
.wpb_column.boxed .bottom-line {
  height:1px;
  width:100%;
  display:block;
  position:absolute;
  bottom:2px;
  left:0;
  background-color:#E8E8E8
}

.col.boxed img, 
.wpb_column.boxed img{
  padding:0 15px
}

.col.boxed:not(.wpb_column):hover {
  top:-4px;
  -webkit-box-shadow:0 2px 3px rgba(0,0,0,0.3);
  box-shadow:0 2px 3px rgba(0,0,0,0.3)
}

.col.boxed.no-pointer-events{
  pointer-events:none
}


/* Center align content */
.col.centered-text, 
.wpb_column.centered-text{
  text-align:center
}

.centered-text .divider-small-border{
  margin:25px auto
}
.centered-text .divider-border[data-animate="yes"], 
.centered-text .divider-small-border[data-animate="yes"]{
  -webkit-transform-origin:center;
	transform-origin:center;
}

body .col.centered-text ul, 
body .wpb_column.centered-text ul{
  display:inline-block;
  text-align:center;
  margin-left:0
}
.col.centered-text ul, 
.wpb_column.centered-text ul{
  text-align:left
}

body .col.centered-text img,
body .wpb_column.centered-text img, 
.col.center img{
  margin-left: auto;
  margin-right: auto;
}

/* Background */
.wpb_column{
  background-position:center
}
.wpb_column[data-video-bg="true"] .wpb_wrapper, 
.wpb_column[data-overlay-color="true"] .wpb_wrapper, 
.wpb_column[data-has-bg-color="true"] .wpb_wrapper, 
.wpb_column[data-using-bg="true"] .wpb_wrapper,
.wpb_column[data-hover-bg^="#"] .wpb_wrapper{
  position:relative;
  z-index:2
}
.wpb_column .column-bg-overlay,
.wpb_column .column-bg-overlay-wrap {
  pointer-events: none;
  position:absolute;
  z-index:0;
  height:100%;
  width:100%;
  top:0;
  left:0;
  content:' ';
  display:block;
  opacity:0;
  transition:background-color 0.45s cubic-bezier(0.25, 1, 0.33, 1),opacity 0.45s cubic-bezier(0.25, 1, 0.33, 1);
  -webkit-transition:background-color 0.45s cubic-bezier(0.25, 1, 0.33, 1),opacity 0.45s cubic-bezier(0.25, 1, 0.33, 1);
}

.vc_column-inner .column-overlay-layer {
	pointer-events: none;
	position:absolute;
	z-index:0;
	height:100%;
	width:100%;
	top:0;
	left:0;
	content:' ';
	display:block;
}

.wpb_column .column-bg-overlay-wrap {
	opacity: 1;
}

.column-link{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  display:block;
  z-index:10
}


/* Border layer */
/* (Bulk Loaded conditionally) - See css/elements/wpb-column-border.css */





.img-with-aniamtion-wrap[data-border-radius="3px"] .img-with-animation,
.img-with-aniamtion-wrap[data-border-radius="3px"] .hover-wrap,
.nectar_video_player_self_hosted[data-border-radius="3px"] .wpb_video_wrapper {
  border-radius: 3px;
}

.img-with-aniamtion-wrap[data-border-radius="5px"] .img-with-animation,
.img-with-aniamtion-wrap[data-border-radius="5px"] .hover-wrap,
.nectar_video_player_self_hosted[data-border-radius="5px"] .wpb_video_wrapper {
  border-radius: 5px;
}

.img-with-aniamtion-wrap[data-border-radius="10px"] .img-with-animation,
.img-with-aniamtion-wrap[data-border-radius="10px"] .hover-wrap,
.nectar_video_player_self_hosted[data-border-radius="10px"] .wpb_video_wrapper {
  border-radius: 10px;
}

.img-with-aniamtion-wrap[data-border-radius="15px"] .img-with-animation,
.img-with-aniamtion-wrap[data-border-radius="15px"] .hover-wrap,
.nectar_video_player_self_hosted[data-border-radius="15px"] .wpb_video_wrapper {
  border-radius: 15px;
}

.img-with-aniamtion-wrap[data-border-radius="20px"] .img-with-animation,
.img-with-aniamtion-wrap[data-border-radius="20px"] .hover-wrap,
.nectar_video_player_self_hosted[data-border-radius="20px"] .wpb_video_wrapper {
  border-radius: 20px;
}


@media only screen and (min-width:1000px){
  
  .wpb_column[data-border-animation="true"] .vc_column-inner > .border-wrap >.border-top,
  .wpb_column[data-border-animation="true"] .vc_column-inner > .border-wrap >.border-bottom{
    transition:transform 1s cubic-bezier(0.19,1,0.22,1);
    transform:scaleX(0)
  }
  .wpb_column[data-border-animation="true"] .vc_column-inner > .border-wrap >.border-left, 
  .wpb_column[data-border-animation="true"] .vc_column-inner > .border-wrap >.border-right{
    -webkit-transition:transform 1s cubic-bezier(0.19,1,0.22,1);
    -webkit-transform:scaleY(0);
    transition:transform 1s cubic-bezier(0.19,1,0.22,1);
    transform:scaleY(0)
  }
}

.wpb_column[data-border-animation="true"] .vc_column-inner > .border-wrap.animation > .border-top, 
.wpb_column[data-border-animation="true"] .vc_column-inner > .border-wrap.animation > .border-bottom {
  transform: scaleX(1);
}
.wpb_column[data-border-animation="true"] .vc_column-inner > .border-wrap.animation > .border-top {
  transform-origin: left;
}
.wpb_column[data-border-animation="true"] .vc_column-inner > .border-wrap.animation > .border-bottom {
  transform-origin: right;
}
.wpb_column[data-border-animation="true"] .vc_column-inner > .border-wrap.animation > .border-left, 
.wpb_column[data-border-animation="true"] .vc_column-inner > .border-wrap.animation > .border-right {
  transform: scaleY(1);
}
.wpb_column[data-border-animation="true"] .vc_column-inner > .border-wrap.animation > .border-left {
  transform-origin: bottom;
}
.wpb_column[data-border-animation="true"] .vc_column-inner > .border-wrap.animation > .border-right {
  transform-origin: top;
}



/* General */
.col.span_3 .col.span_12 i, 
.col.span_4 .col.span_12 i{
  margin-bottom:0
}
body .wpb_text_column{
  margin-bottom:0
}
.wpb_animate_when_almost_visible {
  opacity: 0;
}
.wpb_start_animation {
  opacity: 1;
}
body .wpb_text_column h2:last-child, 
body .wpb_text_column h3:last-child{
  margin-bottom:10px
}




/* 9.15. Icon */
i[class*="fa-"], 
span[class*="fa-"] {
  display:inline-block;
  word-spacing:1px;
  position:relative;
  text-align:center;
  top: -2px;
  vertical-align:middle;
  max-width:100% 
}
[class^="icon-"], 
i[class*=" icon-"]{
  display:inline-block;
  max-width:100%;
  position:relative;
  text-align:center;
  vertical-align:middle;
  top: -2px;
  word-spacing:1px 
}
i.icon-normal {
  background-color:#000;
  border-radius:999px;
  -webkit-border-radius:999px;
  color:#fff;
  font-size:16px;
  width:32px;
  height:32px;
  line-height:32px;
}
[class^="icon-"].icon-3x, 
i[class*=" icon-"].icon-3x{
  background-color:#eeedec 
}
body [class^="icon-"].icon-3x.alt-style, 
body [class*=" icon-"].icon-3x.alt-style{
  background-color:#000;
  color:#fff 
}
.col:not(.post-area):not(.span_12):not(#sidebar):hover i[class^="icon-"].icon-3x.alt-style.hovered, 
.col:not(.post-area):not(.span_12):not(#sidebar):hover [class*=" icon-"].icon-3x.alt-style.hovered{
  background-color:rgba(0,0,0,0.035) 
}
.light .col:not(.post-area):not(.span_12):not(#sidebar):hover i[class^="icon-"].icon-3x.alt-style.hovered, 
.light .col:not(.post-area):not(.span_12):not(#sidebar):hover [class*=" icon-"].icon-3x.alt-style.hovered{
  background-color:rgba(0,0,0,0.1) 
}
#sidebar .widget:hover i[class^="icon-"].icon-3x.alt-style{
  background-color:rgba(0,0,0,0.035) 
}
.full-width-section i[class^="icon-"].icon-3x, 
.full-width-section i[class*=" icon-"].icon-3x{
  background-color:rgba(0,0,0,0.021) 
}
[class^="icon-"].icon-3x, 
[class*=" icon-"].icon-3x, 
.circle-border{
  background-color:#eeedec;
  border-radius:999px;
  -webkit-border-radius:999px;
  color:#000;
  display:inline-block;
  font-size:30px;
  height:90px;
  line-height:90px;
  max-width:100%;
  position:relative;
  text-align:center;
  vertical-align:middle;
  width:90px;
  word-spacing:1px;
  transition:all 0.1s linear;
  -webkit-transition:all 0.1s linear;
}
[class^="icon-"].icon-3x, 
[class*=" icon-"].icon-3x{
  margin-bottom:27px
}
body [class^="icon-"].icon-tiny{
  line-height:15px;
  height:13px;
  width:15px;
  margin-right:5px;
  font-size:13px;
  background-color:transparent
}
[class^="icon-"].icon-tiny {
	color:#888;
}

body [class^="icon-"].icon-default-style{
  line-height:34px;
  height:34px;
  width:34px;
  margin-right:0;
  font-size:34px;
  color:#000;
  background-color:transparent 
}

h3 [class^="icon-"], 
h2 [class^="icon-"], 
h4 [class^="icon-"], 
h5 [class^="icon-"]{
  margin-right:5px
}
.col:not(.post-area):not(.span_12):not(#sidebar):hover .hovered .circle-border, 
#sidebar .widget:hover .circle-border{
  border:1px solid #000;
  transform:scale(1.18);
  transition-timing-function:cubic-bezier(0.4,0.25,0.14,1.73);
  -webkit-transition-timing-function:cubic-bezier(0.4,0.25,0.14,1.73);
}
.col:not(.post-area):not(.span_12):not(#sidebar):hover [class^="icon-"].icon-3x.hovered, 
.col:not(.post-area):not(.span_12):not(#sidebar):hover [class*=" icon-"].icon-3x.hovered, 
#sidebar .widget:hover [class^="icon-"].icon-3x{
  color:#fff;
  background-color:#000
}
.circle-border{
  background:none repeat scroll 0 0 transparent;
  border:1px solid #eeedec;
  height:88px;
  left:1px;
  position:absolute;
  z-index:1;
  top:1px;
  transition-duration:225ms;
  -webkit-duration:225ms;
  transition-property:all;
  -webkit-transition-property:all;
  transition-timing-function:cubic-bezier(0.5,-0.7,0.67,0.7);
  -webkit-transition-timing-function:cubic-bezier(0.5,-0.7,0.67,0.7);
  width:88px
}
.col:not(.post-area):not(.span_12):not(#sidebar):hover .hovered.extra-color-gradient-1 .circle-border, 
#sidebar .widget:hover .extra-color-gradient-1 .circle-border, 
.col:not(.post-area):not(.span_12):not(#sidebar):hover .hovered.extra-color-gradient-2 .circle-border, 
#sidebar .widget:hover .extra-color-gradient-2 .circle-border, .extra-color-gradient-1 .circle-border, 
.extra-color-gradient-2 .circle-border {
  transform:none;
  -webkit-transform:none;
}
.extra-color-gradient-1 .circle-border, 
.extra-color-gradient-2 .circle-border{
  border:2px solid rgba(0,0,0,0.065)!important
}
.light .extra-color-gradient-1 .circle-border, 
.light .extra-color-gradient-2 .circle-border{
  border:2px solid rgba(255,255,255,0.085)!important
}
[class^="icon-"].icon-3x.extra-color-gradient-2:not(.alt-style), 
[class*=" icon-"].icon-3x.extra-color-gradient-2:not(.alt-style), 
[class^="icon-"].icon-3x.extra-color-gradient-1:not(.alt-style), 
[class*=" icon-"].icon-3x.extra-color-gradient-1:not(.alt-style),
body:not(.material) .nectar-button i, 
body.material:not([data-button-style^="rounded"]) .nectar-button i {
  background-color:transparent!important
}
[class^="icon-"].extra-color-gradient-1.alt-style:not(.icon-normal):before, 
[class*=" icon-"].extra-color-gradient-1.alt-style:not(.icon-normal):before, 
[class^="icon-"].extra-color-gradient-2.alt-style:not(.icon-normal):before, 
[class*=" icon-"].extra-color-gradient-2.alt-style:not(.icon-normal):before{
  background:#fff;
  -webkit-background-clip:text;
  background-clip:text
}
[class^="icon-"].extra-color-gradient-1.alt-style:not(.icon-normal).no-grad:before, 
[class*=" icon-"].extra-color-gradient-1.alt-style:not(.icon-normal).no-grad:before, 
[class^="icon-"].extra-color-gradient-2.alt-style:not(.icon-normal).no-grad:before, 
[class*=" icon-"].extra-color-gradient-2.alt-style:not(.icon-normal).no-grad:before, 
[class^="icon-"][data-color="extra-color-gradient-1"].no-grad:before, 
[class*=" icon-"][data-color="extra-color-gradient-1"].no-grad:before, 
[class^="icon-"].extra-color-gradient-1:not(.icon-normal).no-grad:before, 
[class*=" icon-"].extra-color-gradient-1:not(.icon-normal).no-grad:before, 
[class^="icon-"][data-color="extra-color-gradient-2"].no-grad:before, 
[class*=" icon-"][data-color="extra-color-gradient-2"].no-grad:before, 
.extra-color-gradient-2[class^="icon-"]:not(.icon-normal).no-grad:before, 
.extra-color-gradient-2[class*=" icon-"]:not(.icon-normal).no-grad:before, 
.nectar-gradient-text.no-grad *, 
.nectar_icon_wrap[data-color="extra-color-gradient-1"] .nectar_icon.no-grad i, 
.nectar_icon_wrap[data-color="extra-color-gradient-2"] .nectar_icon.no-grad i{
  background-color:transparent!important;
  background:none!important
}
body .nectar-gradient-text[data-color="extra-color-gradient-1"].no-grad *, 
body .nectar-gradient-text[data-color="extra-color-gradient-2"].no-grad *, 
.nectar-button.see-through-extra-color-gradient-2.no-text-grad .start, 
.nectar-button.see-through-extra-color-gradient-1.no-text-grad .start, 
.nectar-button.extra-color-gradient-1.no-text-grad .hover, 
.nectar-button.extra-color-gradient-2.no-text-grad .hover, 
.nectar-flip-box .flip-box-front i[data-color="extra-color-gradient-1"].icon-default-style.no-grad:before, 
.nectar-flip-box .flip-box-front i[data-color="extra-color-gradient-2"].icon-default-style.no-grad:before, 
.nectar_icon_wrap[data-color="extra-color-gradient-1"] .nectar_icon.no-grad i, 
.nectar_icon_wrap[data-color="extra-color-gradient-2"] .nectar_icon.no-grad i{
  -webkit-text-fill-color:initial
}

.nectar_icon_wrap[data-style="border-animation"] .nectar_icon:not(.no-grad):hover i,
[class^="icon-"].extra-color-gradient-1.icon-3x.alt-style:before, 
[class*=" icon-"].extra-color-gradient-1.icon-3x.alt-style:before, 
[class^="icon-"].extra-color-gradient-2.icon-3x.alt-style:before, 
[class*=" icon-"].extra-color-gradient-2.icon-3x.alt-style:before, 
body .nectar_icon_wrap[data-color="white"] i, 
body .svg-icon-holder[data-color="white"]{
  color:#fff!important
}
body .nectar_icon_wrap[data-color="black"] i, 
body .svg-icon-holder[data-color="black"]{
  color:#000!important
}
body .nectar_icon_wrap[data-color="grey"] i, 
body .svg-icon-holder[data-color="grey"]{
  color:#c8c8c8!important
}
body .svg-icon-holder[data-color="white"] svg path {
  stroke:#fff
}
body .svg-icon-holder[data-color="black"] svg path {
  stroke:#000
}
body .svg-icon-holder[data-color="grey"] svg path {
  stroke:#c8c8c8
}

.nectar_icon_wrap[data-style="soft-bg"][data-color="black"] .nectar_icon:before,
.nectar_icon_wrap[data-style="soft-bg"][data-color="grey"] .nectar_icon:before {
  background-color: #888;
}
.nectar_icon_wrap[data-color="extra-color-gradient-1"] .nectar_icon i, 
.nectar_icon_wrap[data-color="extra-color-gradient-2"] .nectar_icon i,
.nectar_icon .im-icon-wrap > span {
  display: inline-block;
}

.nectar_icon .im-icon-wrap {
  display:flex;
  height:100%;
  justify-content:center;
  align-items:center;
}
.nectar_icon_wrap .im-icon-wrap[data-color="white"] path, 
.nectar-fancy-box[data-style="parallax_hover"] .im-icon-wrap path{
  fill: #fff;
}
.nectar_icon_wrap .im-icon-wrap[data-color="black"] path {
  fill: #000;
}
.nectar_icon_wrap .im-icon-wrap[data-color="grey"] path {
  fill: #888;
}
.full-width-section .circle-border{
  background-color:rgba(0,0,0,0.021);
  border-color:rgba(0,0,0,0.05)
}
.full-width-section .light .circle-border{
  background-color:rgba(0,0,0,0.021);
  border-color:rgba(0,0,0,0.2)
}

.main-content .svg-icon-holder{
  height:64px;
  overflow:hidden;
  min-width:1px;
  margin-bottom:20px;
  display:inline-block;
  opacity:0
}
.nectar_icon_wrap{
  display:inline-block;
  position:relative
}
.nectar_icon_wrap .nectar_icon .svg-icon-holder{
  margin-bottom:0
}
.nectar_icon_wrap[data-padding="10px"] .nectar_icon{
  padding:10px
}
.nectar_icon_wrap[data-padding="15px"] .nectar_icon{
  padding:15px
}
.nectar_icon_wrap[data-padding="20px"] .nectar_icon{
  padding:20px
}
.nectar_icon_wrap[data-padding="25px"] .nectar_icon{
  padding:25px
}
.nectar_icon_wrap[data-padding="30px"] .nectar_icon{
  padding:30px
}
.nectar_icon_wrap[data-padding="35px"] .nectar_icon{
  padding:35px
}
.nectar_icon_wrap[data-padding="40px"] .nectar_icon{
  padding:40px
}
.nectar_icon_wrap[data-padding="45px"] .nectar_icon{
  padding:45px
}
.nectar_icon_wrap[data-padding="50px"] .nectar_icon{
  padding:50px
}
.span_12.light .nectar_icon_wrap[data-style="border-basic"] .nectar_icon, 
.span_12.light .nectar_icon_wrap[data-style="border-animation"] .nectar_icon{
  border-color:rgba(255,255,255,0.15)
}
.nectar_icon_wrap[data-style="border-basic"] .nectar_icon, 
.nectar_icon_wrap[data-style="border-animation"] .nectar_icon, 
.nectar_icon_wrap[data-style="soft-bg"] .nectar_icon,
.nectar_icon_wrap[data-style="shadow-bg"] .nectar_icon {
  line-height:0;
  border:2px solid rgba(0,0,0,0.065);
  text-align: center;
  border-radius:100px;
  position:relative;
  -webkit-transition:background-color .45s cubic-bezier(0.25,1,0.33,1),border-color .45s cubic-bezier(0.25,1,0.33,1);
  transition:background-color .45s cubic-bezier(0.25,1,0.33,1),border-color .45s cubic-bezier(0.25,1,0.33,1)
}
.nectar_icon_wrap[data-style="soft-bg"] .nectar_icon,
.nectar_icon_wrap[data-style="shadow-bg"] .nectar_icon {
  border: 0;
}
.nectar_icon_wrap[data-style="soft-bg"] .nectar_icon:before,
.nectar_icon_wrap[data-style="shadow-bg"] .nectar_icon:before,
.nectar_icon_wrap[data-style="shadow-bg"] .nectar_icon:after {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  content: '';
  position: absolute;
  display: block;
  border-radius:100px;
  z-index: -1;
  opacity: 0.11;
}
.nectar_icon_wrap[data-style="shadow-bg"] .nectar_icon:before,
.nectar_icon_wrap[data-style="shadow-bg"] .nectar_icon:after {
	opacity: 1;
}
.nectar_icon_wrap[data-style*="border"] .nectar_icon i, 
.nectar_icon_wrap[data-style="soft-bg"] .nectar_icon i,
.nectar_icon_wrap[data-style="shadow-bg"] .nectar_icon i {
  display: inline-block;
  vertical-align: middle;
  max-width: none;
  top: 0;
}

.nectar_icon_wrap[data-style="shadow-bg"][data-color="white"] .nectar_icon i {
	color: #000!important;
}

.nectar_icon_wrap[data-style="shadow-bg"] .nectar_icon:before {
	box-shadow: 0 15px 28px #000;
  opacity: 0.1;
}

.nectar_icon_wrap[data-style="shadow-bg"] .nectar_icon:after {
	background-color: #fff;
}

.nectar_icon_wrap[data-style*="default"][data-color*="extra-color-gradient"] .nectar_icon i {
  border-radius: 0!important;
  text-align: center;
}
.nectar_icon_wrap[data-style*="default"][data-color*="extra-color-gradient"] .nectar_icon i:before {
  vertical-align: top;
}
.nectar_icon_wrap i:before {
  line-height: inherit;
}
.nectar_icon_wrap[data-style="border-animation"] .nectar_icon i{
  -webkit-transition:color .45s cubic-bezier(0.25,1,0.33,1);
  transition:color .45s cubic-bezier(0.25,1,0.33,1)
}
.nectar_icon_wrap[data-style="border-animation"][data-color="extra-color-gradient-1"]:hover .nectar_icon, 
.nectar_icon_wrap[data-style="border-animation"][data-color="extra-color-gradient-2"]:hover .nectar_icon{
  border-color:transparent
}
.nectar_icon_wrap[data-style="border-animation"][data-color="extra-color-gradient-1"]:hover:before, 
.nectar_icon_wrap[data-style="border-animation"][data-color="extra-color-gradient-2"]:hover:before, 
.nectar_icon_wrap[data-style="border-animation"][data-color="extra-color-gradient-1"]:hover .nectar_icon:before, 
.nectar_icon_wrap[data-style="border-animation"][data-color="extra-color-gradient-2"]:hover .nectar_icon:before{
  opacity:1
}
.nectar_icon_wrap[data-style="border-animation"][data-color="extra-color-gradient-1"]:before, 
.nectar_icon_wrap[data-style="border-animation"][data-color="extra-color-gradient-2"]:before, 
.nectar_icon_wrap[data-style="border-animation"][data-color="extra-color-gradient-1"] .nectar_icon:before, 
.nectar_icon_wrap[data-style="border-animation"][data-color="extra-color-gradient-2"] .nectar_icon:before{
  position:absolute;
  z-index:-1;
  content:' ';
  display:block;
  top:0;
  left:0;
  width:100%;
  height:100%;
  opacity:0;
  border-radius:100px;
  -webkit-transition:opacity .45s cubic-bezier(0.25,1,0.33,1);
  transition:opacity .45s cubic-bezier(0.25,1,0.33,1) 
}
.nectar_icon_wrap[data-style="border-animation"][data-color="extra-color-gradient-1"] .nectar_icon:before, 
.nectar_icon_wrap[data-style="border-animation"][data-color="extra-color-gradient-2"] .nectar_icon:before{
  opacity:1
}
.nectar_icon_wrap[data-style="border-animation"][data-color="extra-color-gradient-1"] .nectar_icon:before, 
.nectar_icon_wrap[data-style="border-animation"][data-color="extra-color-gradient-2"] .nectar_icon:before{
  background-color:#f6f6f6
}
.nectar_icon_wrap[data-border-thickness="1px"] .nectar_icon{
  border-width:1px
}
.nectar_icon_wrap[data-border-thickness="2px"] .nectar_icon{
  border-width:2px
}
.nectar_icon_wrap[data-border-thickness="3px"] .nectar_icon{
  border-width:3px
}
.nectar_icon_wrap[data-border-thickness="4px"] .nectar_icon{
  border-width:4px
}
.nectar_icon_wrap[data-border-thickness="5px"] .nectar_icon{
  border-width:5px
}
.nectar_icon_wrap[data-style="border-basic"] .nectar_icon i{
  text-align:
}
.nectar_icon_wrap a{
  display:block;
  width:100%;
  height:100%;
  position:absolute;
  left:0;
  top:0;
  z-index:1
}


/* 9.17. Icon with text */
.iwithtext{
  position:relative
}
.iwithtext .iwt-icon{
  position:absolute;
  left:0;
  top:0
}
.iwithtext .iwt-icon img{
  width:35px;
  height:auto;
  padding:0
}
.row .col .iwithtext .iwt-icon img:not([srcset]) {
  width:35px;
}
.span_10.iwt h2{
  line-height:20px
}

.span_10.iwt h3{
  line-height:18px
}
.iwithtext .iwt-text{
  padding-left:55px
}
.main-content .vc_span2 .iwithtext .iwt-icon, 
.main-content .vc_col-sm-2 .iwithtext .iwt-icon{
  top:-2px
}
.main-content .vc_span2 .iwithtext .iwt-icon i, 
.main-content .vc_col-sm-2 .iwithtext .iwt-icon i{
  font-size:26px;
  line-height:26px;
  width:26px;
  height:26px 
}
.main-content .vc_span2 .iwithtext .iwt-icon img, 
.main-content .vc_col-sm-2 .iwithtext .iwt-icon img{
  width:26px
}
.main-content .vc_span2 .iwithtext .iwt-icon img:not([srcset]), 
.main-content .vc_col-sm-2 .iwithtext .iwt-icon img:not([srcset]) {
  width:26px
}
.main-content .vc_span2 .iwithtext .iwt-text, 
.main-content .vc_col-sm-2 .iwithtext .iwt-text{
  padding-left:45px
}




