/* 
 Theme Name:     Kriar 5
 Author:         Kristian Erdmann | Divi Brasil
 Author URI:     http://en.divi-brasil.com.br
 Template:       Divi
 Version:        1.0
 Description:    Divi Child-theme for Medical 
*/ 

/*-------------------------------------------------*/
/*---------DROP SHADOW BLACK EFFECT----------------*/
/*-------------------------------------------------*/
    .drop-shadow {
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0);
        -webkit-transition: all 0.6s;
        transition: all 0.6s;}
    .drop-shadow:hover {
        -webkit-transform: scale(1.1, 1.1);
        transform: scale(1.1, 1.1);
        box-shadow: 1px 5px 14px rgba(0, 0, 0, 3);
        z-index: 1;}

/*-------------------------------------------------*/
/*----------------------DROP EFFECT----------------*/
/*-------------------------------------------------*/
    .drop {
        -webkit-transition: all 0.6s;
        transition: all 0.6s;}
    .drop:hover {
        -webkit-transform: scale(1.1, 1.1);
        transform: scale(1.1, 1.1);
        z-index: 1;}

/*-------------------------------------------------*/
/*----------------IMAGE TILT EFFECT----------------*/
/*-------------------------------------------------*/
.tilt {
  -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;
}
.tilt:hover {
  -webkit-transform: rotate(-5deg);
     -moz-transform: rotate(-5deg);
       -o-transform: rotate(-5deg);
      -ms-transform: rotate(-5deg);
          transform: rotate(-5deg);
}

/*-------------------------------------------------*/
/*-----------ROTATE 360 DEGREES EFFECT-------------*/
/*-------------------------------------------------*/
.rotate {
  -webkit-transition: all 0.2s ease;
     -moz-transition: all 0.2s ease;
       -o-transition: all 0.2s ease;
      -ms-transition: all 0.2s ease;
          transition: all 0.2s ease;
}
.rotate:hover {
  -webkit-transform: rotate(360deg);
     -moz-transform: rotate(360deg);
       -o-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
          transform: rotate(360deg);
}

/*-------------------------------------------------*/
/*---------------IMAGE BLUR EFFECT-----------------*/
/*-------------------------------------------------*/
.blur img {
  -webkit-transition: all 1s ease;
     -moz-transition: all 1s ease;
       -o-transition: all 1s ease;
      -ms-transition: all 1s ease;
          transition: all 1s ease;
}
 .blur img:hover {
  -webkit-filter: blur(3px);
}

/*-------------------------------------------------*/
/*---------------IMAGE BLUR REVERSE EFFECT----------*/
/*-------------------------------------------------*/
.blur-reverse img {	
  -webkit-filter: blur(3px);
  -webkit-transition: all 1s ease;
     -moz-transition: all 1s ease;
       -o-transition: all 1s ease;
      -ms-transition: all 1s ease;
          transition: all 1s ease;
}
 .blur-reverse img:hover {
  -webkit-filter: blur(0px);
}

/*---------------------------------------------------------*/
/*----------------IMAGE BLACK AND WHITE EFFECT-------------*/
/*--------------------------------------------------------*/
.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;
}
.bw:hover {
  -webkit-filter: grayscale(100%);
}

/*---------------------------------------------------------*/
/*-------IMAGE BLACK AND WHITE REVERSE EFFECT-------------*/
/*--------------------------------------------------------*/
.bw-reverse {	
  -webkit-filter: grayscale(100%);
  -webkit-transition: all 1s ease;
     -moz-transition: all 1s ease;
       -o-transition: all 1s ease;
      -ms-transition: all 1s ease;
          transition: all 1s ease;
}
.bw-reverse:hover {
  -webkit-filter: grayscale(0%);
}

/*---------------------------------------------------------*/
/*------------------IMAGE SEPIA EFFECT--------------------*/
/*--------------------------------------------------------*/
.sepia-reverse img {
  -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: sepia(1);
}
 .sepia-reverse img:hover {
  -webkit-filter: sepia(0);
}

/*---------------------------------------------------------*/
/*------------------IMAGE SEPIA EFFECT--------------------*/
/*--------------------------------------------------------*/
.sepia img {
  -webkit-transition: all 1s ease;
     -moz-transition: all 1s ease;
       -o-transition: all 1s ease;
      -ms-transition: all 1s ease;
          transition: all 1s ease;
}
 .sepia img:hover {
  -webkit-filter: sepia(1);
}

/*-------------------------------------------------*/
/*-------------------IMAGE EFFECT 1----------------*/
/*-------------------------------------------------*/
.effect img {
   opacity:1;
   transition: all 0.2s ease-in;
}

.effect:hover img {
   opacity:0.5;
}

/*---------------------------------------------------------*/
/*-------------------- IMAGE EFFECT 2 --------------------*/
/*--------------------------------------------------------*/

.effect2 img {
	opacity:0.5;	     
    transition: all 0.2s ease-in;
}

.effect2:hover img {
   opacity:1;
}

/*---------------------------------------------------------*/
/*-----------IMAGE CIRCLE (RADIUS 50%) --------------------*/
/*--------------------------------------------------------*/

.circle img {  
	border-radius: 50%;
}

/*---------------------------------------------------------*/
/*------------------------PULSE EFFECT --------------------*/
/*--------------------------------------------------------*/

@-webkit-keyframes kt-pulse {
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  75% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@keyframes kt-pulse {
  25% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  75% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
.kt-pulse {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
}
.kt-pulse:hover, .kt-pulse:focus, .kt-pulse:active {
  -webkit-animation-name: kt-pulse;
  animation-name: kt-pulse;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/*---------------------------------------------------------*/
/*------------------------PUSH EFFECT --------------------*/
/*--------------------------------------------------------*/
@-webkit-keyframes kt-push {
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes kt-push {
  50% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.kt-push {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px transparent;
}
.kt-push:hover, .kt-push:focus, .kt-push:active {
  -webkit-animation-name: kt-push;
  animation-name: kt-push;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}


/*---------------------------------------------------------*/
/*------CENTER ALLIGN IN SOCIAL ICONS IN TEAM -------------*/
/*--------------------------------------------------------*/

ul.centered-social { 
width:100%; 
text-align:center; 
margin: 0 0 0 0 ; 
}

.centered-social li { 
float:none; 
display:inline-block; 
}


/*---------------------------------------------------------*/
/*------Menu - Active Item Background Color -------------*/
/*--------------------------------------------------------*/

@media only screen and (min-width : 981px) {
 
 
/* remove carrot from menu with drop down */
    #top-menu .menu-item-has-children > a:first-child, #et-secondary-nav .menu-item-has-children > a:first-child {padding-right: 0px;}
    #top-menu .menu-item-has-children > a:first-child:after, #et-secondary-nav .menu-item-has-children > a:first-child:after {display:none;}
 
 
/* menu padding */
    #et-top-navigation {
        padding-top: 0px!important;
        font-weight:100;}
    #top-menu li {
            margin-left: -3px;
        padding-right: 0px;}
    #top-menu li > a { 
        padding: 33px 30px 33px 30px!important;}
 
 
/* remove color fade in on menu text */
    #top-menu a {
        color: #000;}
 
/* current menu item colors */
    #top-menu li.current-menu-item {
        background-color: #36a8eb;} /*change background color here*/
    #top-menu li.current-menu-item > a {
        color:#fff!important;}
 
/* menu item hover colors */
    #top-menu li:hover {
        background-color: #36a8eb;} /*change background color here*/
    #top-menu li > a:hover {
        color: #fff;
        opacity: 1!important;}  
 
 
/* current menu ancestor background color */
    .current-menu-ancestor {
            background-color: #36a8eb;} /*change background color here*/
    .current-menu-ancestor a {
            color: #fff!important;}
 
 
/* sub menu adjustments */ 
    .sub-menu {
            padding: 0px!important;}
    #top-menu li li a {
            padding: 19px 5px 19px 8px!important;}
    .current-menu-ancestor .sub-menu a {
            color: #000!important;}
    .current-menu-ancestor .sub-menu a:hover {
            color: #fff!important;}
 
}


/*---------------------------------------------------------*/
/*-------------------------- CUSTOM MAP STYLE -------------*/
/*--------------------------------------------------------*/

.et_pb_map_container { 
    filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale"); 
    filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(100%);
}

/*---------------------------------------------------------*/
/*------CENTER ALLIGN IN SOCIAL ICONS IN TEAM -------------*/
/*--------------------------------------------------------*/

ul.centered-social { 
width:100%; 
text-align:center; 
margin: 0 0 0 0 ; 
}

.centered-social li { 
float:none; 
display:inline-block; 
}

/*---------------------------------------------------------*/
/*---------------------TEAM SECTION-----------------------*/
/*--------------------------------------------------------*/

.kt-team {
  position: relative;
  float: left;
  overflow: hidden;
  max-width: 100%;
  color: #333;
  text-align: left;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);  
  background-color: #36A8EB;
}
.kt-team * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  transition: all 0.35s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
.kt-team img {
  width: 100%;
 height: auto;
}
.kt-team .et_pb_team_member_description {
  position: relative;
  background-color: #ffffff;
  padding: 10px;
}
.kt-team h4 {
  text-transform: uppercase;
  margin: 0 0 15px;
  font-weight: 400;
}
.kt-team h4 span {
  font-weight: 800;
}
.kt-team p {
  font-weight: 500;
  text-align: left;
  margin: 0;
  line-height: 1.6em;
}
.kt-team .et_pb_member_social_links {
  top: -50%;
  width: 100%;
  position: absolute;
  text-align: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-left: -25px;
}
.kt-team .et_pb_font_icon {
  margin-right: 5px;
  display: inline-block;  
  color: #36A8EB;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: white;
  opacity: 0;
  -webkit-transform: rotateX(90deg);
  transform: rotateX(90deg);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  margin-right: -10px;
}
.kt-team  a {
  opacity: 0.8;
}
.kt-team a:hover {
  opacity: 1;
}
.kt-team .et_pb_column.blue .et_pb_font_icon {
  color: #36A8EB;
}
.kt-team:hover img,
.kt-team .hover img {
  opacity: 0.3;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.kt-team:hover .et_pb_font_icon,
.kt-team .hover .et_pb_font_icon {
  opacity: 1;
  -webkit-transform: rotateX(0);
  transform: rotateX(0);

}

/*---------------------------------------------------------*/
/*-----------------NO GAP BETWEEN MODULES-------------------*/
/*--------------------------------------------------------*/

.no-gap .et_pb_column_1_2 {
   margin-left: 1%;
    margin-right: 1%;
    width: 48%;
    }
.no-gap .et_pb_column_1_3 {
   margin-left: 1%;
    margin-right: 1%;
    width: 31.3333%;
    }
.no-gap .et_pb_column_1_4 {
   margin-left: 1%;
    margin-right: 1%;
    width: 23%;
    }

/*---------------------------------------------------------*/
/*----------------------TEAM SECTION-----------------------*/
/*--------------------------------------------------------*/

.kt-blurb .et_pb_column {
  background-color: #fff;
  color: #ffffff;
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  text-align: right;
}

.kt-blurb .et_pb_column *,
.kt-blurb .et_pb_column *:before,
.kt-blurb .et_pb_column *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.45s ease;
  transition: all 0.45s ease;
}

.kt-blurb .et_pb_column img {
  backface-visibility: hidden;
  max-width: 100%;
  vertical-align: top;
}

.kt-blurb .et_pb_column:before,
.kt-blurb .et_pb_column:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: '';
  background-color: #1e73be;
  opacity: 0.5;
  -webkit-transition: all 0.45s ease;
  transition: all 0.45s ease;
}

.kt-blurb .et_pb_column:before {
  -webkit-transform: skew(30deg) translateX(80%);
  transform: skew(30deg) translateX(80%);
}

.kt-blurb .et_pb_column:after {
  -webkit-transform: skew(-30deg) translateX(70%);
  transform: skew(-30deg) translateX(70%);
}

.kt-blurb .et_pb_column .et_pb_promo_description {

  padding: 20px 20px 20px 30%;
  z-index: 1;
  position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.kt-blurb .et_pb_column .et_pb_promo_description:before,
.kt-blurb .et_pb_column .et_pb_promo_description:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1e73be;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
  content: '';
  opacity: 0.5;
  z-index: -1;
}

.kt-blurb .et_pb_column .et_pb_promo_description:before {
  -webkit-transform: skew(30deg) translateX(100%);
  transform: skew(30deg) translateX(100%);
}

.kt-blurb .et_pb_column .et_pb_promo_description:after {
  -webkit-transform: skew(-30deg) translateX(90%);
  transform: skew(-30deg) translateX(90%);
}

.kt-blurb .et_pb_column h2,
.kt-blurb .et_pb_column p {
  margin: 0;
  opacity: 0;
  letter-spacing: 1px;
}

.kt-blurb .et_pb_column h2 {
  font-weight: 700;
  line-height: 1em;
  text-transform: uppercase;
}

.kt-blurb .et_pb_column p {
  font-size: 1em;
}

.kt-blurb .et_pb_column a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.kt-blurb .et_pb_column:hover h2,
.kt-blurb .et_pb_column.hover h2,
.kt-blurb .et_pb_column:hover p,
.kt-blurb .et_pb_column.hover p {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 0.9;
}

.kt-blurb .et_pb_column:hover:before,
.kt-blurb .et_pb_column.hover:before {
  -webkit-transform: skew(30deg) translateX(30%);
  transform: skew(30deg) translateX(30%);
  -webkit-transition-delay: 0.05s;
  transition-delay: 0.05s;
}

.kt-blurb .et_pb_column:hover:after,
.kt-blurb .et_pb_column.hover:after {
  -webkit-transform: skew(-30deg) translateX(20%);
  transform: skew(-30deg) translateX(20%);
}

.kt-blurb .et_pb_column:hover .et_pb_promo_description:before,
.kt-blurb .et_pb_column.hover .et_pb_promo_description:before {
  -webkit-transform: skew(30deg) translateX(50%);
  transform: skew(30deg) translateX(50%);
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

.kt-blurb .et_pb_column:hover .et_pb_promo_description:after,
.kt-blurb .et_pb_column.hover .et_pb_promo_description:after {
  -webkit-transform: skew(-30deg) translateX(40%);
  transform: skew(-30deg) translateX(40%);
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.kt-blurb .et_pb_promo {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.kt-blurb .et_pb_promo_button {
	opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


/*--------------------------------------------------------------------------------*/
/*--------------- Social for custom footer ----------------------------------------*/
/*----------------------------------------------------------------------------------*/ 

.footer_custom.et_pb_section {
    padding: 0 !important;
}

/**** Row Widget Custom ****/
.footer-widget .fwidget {
    min-width: 100% !important;
}

#footer-widgets {
    padding: 3% 0 0 !important;
}

#footer-widgets .footer-widget li:before {
    content: none !important;
}

#footer-widgets .footer-widget li {
    padding-left: 0px !important;
}

/*--------------------------------------------------------------------------------*/
/*--------------- Footer Layout ----------------------------------------------*/
/*----------------------------------------------------------------------------------*/ 

#main-footer .container {
    width: 100% !important;
    max-width: 100% !important;
}

#main-footer {
    background-color: transparent !important;
}

.et_pb_gutters3.et_pb_footer_columns1 .footer-widget .fwidget, .et_pb_gutters3 .footer-widget {
    margin-bottom: 0px ;
}

@media only screen and (max-width: 767px) {
  #footer-widgets .footer-widget .fwidget {    
    margin-bottom: 0% !important;
  }
}

@media only screen and (max-width: 980px) {
  .footer-widget:nth-child(n) {    
    width: 100% !important;    
    margin: 0 !important;
  }
}

@media only screen and (max-width: 479px) {
  #footer-widgets .footer-widget:nth-child(n), .footer-widget .fwidget {    
    margin-bottom: 0 !important;
  }
}

/*--------------------------------------------------------------------------------*/
/*--------------- Social Center for custom footer------------------------------------*/
/*----------------------------------------------------------------------------------*/ 

.et_pb_social_media_follow li {
    float: none !important;
    display: inline-block !important;
    margin-bottom: 0 !important;
}

ul.et_pb_social_media_follow {
    text-align: center !important;
}

.et_pb_social_media_follow li a.icon {
    width: 45px;
    height: 45px;
    padding: 0;
}

.et_pb_social_media_follow li a.icon::before {
    width: 45px;
    height: 45px;
    color: #FFF;
    font-size: 20px;
    line-height: 45px;
}

@media only screen and (max-width: 980px) {
  .footer_custom_3 .et_pb_text {    
    text-align: center !important;
  }
}

/*--------------------------------------------------------------------------------*/
/*--------------- Footer Bottom Bar Not Visible------------------------------------*/
/*----------------------------------------------------------------------------------*/

#footer-bottom {
    display: none !important;
}

