/*---------------------------------------------------------------------------------

 Theme Name:   XANIV 1.0
 Theme URI:    http://www.xaniv.com
 Description:  X Divi Child Theme
 Author:       Jason Abney
 Author URI:   http://www.xaniv.com
 Template:     Divi
 Version:      5.24.1
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Date Last Change: 2024-06-01

/*---------------------------------------------------------------------------------
------------------------------ ADDITIONAL CSS HERE ------------------------------*/

html * {
}

body {}


/*** SPECIFIES THE HIGHLIGHT COLOR WHEN TEXT IS SELECTED ON THE PAGE */
::selection {
  background: #ffb7b7; /* WebKit/Blink Browsers */
}
::-moz-selection {
  background: #ffb7b7; /* Gecko Browsers */
}


/*** Remove Right Border on Sidebar ***/
.et_pb_widget_area_left {
    border-right: 0px solid rgba(0,0,0,.1);
} 

/** Glass Background Effect **/
.glass01{
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border:1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.glass02{
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, .5));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border:1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/*** Carousel Pro: Let's the image break out of the container ***/
.swiper .swiper-dmpro-container .swiper-initialized .swiper-horizontal {
	overflow: visible !important;	
}

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

/*------------------------------ -------------------- ------------------------------*/
/*---------------------  ANIMATED BACKGROUND COLOR SPECTRUM  -----------------------*/
/*------------------------------ -------------------- ------------------------------*/

.background-color-animation {
	/** background: linear-gradient(45deg, #d2001a, #7462ff, #f48e21, #23d5ab); **/
    background: linear-gradient(45deg, #5a0614, #03202f, #063751, #064a6d, #35030c, #03202f);
    background-size: 500%;
	
	/** animation: color 12s ease-in-out infinite; **/
	/** animation: bgcolor 20s infinite alternative **/
	
	-webkit-animation: changebackgroundcolor 20s ease-in-out infinite;
    -moz-animation: changebackgroundcolor 20s ease-in-out infinite;
    -o-animation: changebackgroundcolor 20s ease-in-out infinite;
    animation: changebackgroundcolor 20s ease-in-out infinite;
}

@keyframes changebackgroundcolor {
	0%   { background-position: 0 50% }
	50%  { background-position: 100% 50% }
	100% { background-position: 0 50% }
}

@-moz-keyframes changebackgroundcolor {
	0%   { background-position: 0 50% }
	50%  { background-position: 100% 50% }
	100% { background-position: 0 50% }
}
 
@-webkit-keyframes changebackgroundcolor {
	0%   { background-position: 0 50% }
	50%  { background-position: 100% 50% }
	100% { background-position: 0 50% }
}


/*------------------------------ -------------------- ------------------------------*/
/*------------------------  ALL THINGS LEFT NAVIGATION   ---------------------------*/
/*------------------------------ -------------------- ------------------------------*/

ul#menu-leftnav {}

ul#menu-leftnav li {
	width: 100%; 
}

ul#menu-leftnav li:hover {}

ul#menu-leftnav li a {
	display: block;
    width: 100%;
    margin: 0px 0px 10px 0px;
	padding: 18px 21px 15px 24px;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    border-bottom-right-radius: 5px; 
    border-bottom-left-radius: 5px;
	
	background: rgba(127,178,179,0.07);
    border-bottom: 1px solid rgba(127,178,179,0.14);
	
	-webkit-box-shadow: 0 1px 4px 0 rgba(0,0,0,.3);
	box-shadow: 0 1px 4px 0 rgba(0,0,0,.3);
    
}

ul#menu-leftnav li a:hover {
	background: rgba(127,178,179,0.14);
    border-bottom: 1px solid rgba(127,178,179,0.18);
	
	-webkit-transition: .2s ease;
    transition: .2s ease;
}



ul#menu-leftnav02 {}

ul#menu-leftnav02 li {
	width: 100%; 
}

ul#menu-leftnav02 li:hover {}

ul#menu-leftnav li a {
	display: block;
    width: 100%;
    margin: 0px 0px 10px 0px;
	padding: 13px 21px 10px 24px;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    border-bottom-right-radius: 5px; 
    border-bottom-left-radius: 5px;
	
	/* background: rgba(127,178,179,0.07); 
    border-bottom: 1px solid rgba(127,178,179,0.14);
	
	-webkit-box-shadow: 0 1px 4px 0 rgba(0,0,0,.3);
	box-shadow: 0 1px 4px 0 rgba(0,0,0,.3); */
    
}

ul#menu-leftnav02 li a:hover {
	background: rgba(127,178,179,0.14);
    border-bottom: 1px solid rgba(127,178,179,0.18);
	
	-webkit-transition: .2s ease;
    transition: .2s ease;
}

/*------------------------------ -------------------- ------------------------------*/
/*------------------------------  ALL THINGS IMAGES   ------------------------------*/
/*------------------------------ -------------------- ------------------------------*/



/*** This targets the scroll icon with css to animate the icon and also on hover only. */
/** CSS Class: bounce-scroll-icon or bounce-scroll-icon-hover **/

.bounce-scroll-icon-hover .et-pb-icon {
  position: absolute;
  top:-10px;
  left:0;
  right:0;
}

.bounce-scroll-icon-hover .et-pb-icon:hover {
  animation-duration: 2s;
  animation-name: bounce;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transition: all .2s;
}
 
.bounce-scroll-icon .et-pb-icon {
  position: absolute;
  top:-10px;
  left:0;
  right:0;
  animation-duration: 2s;
  animation-name: bounce;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  transition: all .2s;
}

.bounce-scroll-icon .et-pb-icon:hover {
  animation-name: none;
}
 
@keyframes bounce {
      0% {top: -10px; opacity: 1;}
     50% {top: 15px; opacity:0;}
    100% {top: -10px;opacity:1;}
}



/*** PULSING RED */
.icon-love{
    color: #e74c3c !important; 
    font-size: inherit !important;
}

/*** PULSING ORANGE */
.icon-fire {
	color: #cc9900 !important; 
    font-size: inherit !important;
}

/*** PULSING BLUE */
.icon-water {
	color: #00ccff !important; 
    font-size: inherit !important;
}

/*** PULSING ICONs */
.pulse {
    -webkit-animation: pulse 4s infinite;
    -moz-animation: pulse 4s infinite;
    -o-animation: pulse 4s infinite;
    animation: pulse 4s infinite;
}

@-moz-keyframes pulse {
      0% {-moz-transform: scale(0.9, 0.9); opacity: 0.0;}
     50% {opacity: 1.0;}
    100% {-moz-transform: scale(1, 1); opacity: 0.0;}
}
 
@-webkit-keyframes pulse {
      0% {-webkit-transform: scale(0.9, 0.9); opacity: 0.0;}
     50% {opacity: 1.0;}
    100% {-webkit-transform: scale(1, 1); opacity: 0.0;}
}


/*------------------------------ -------------------- ------------------------------*/
/*------------------------------  GRAVITY FORMS       ------------------------------*/
/*------------------------------ -------------------- ------------------------------*/


.gform_wrapper.gravity-theme input[type="color"], .gform_wrapper.gravity-theme input[type="date"], .gform_wrapper.gravity-theme input[type="datetime-local"], .gform_wrapper.gravity-theme input[type="datetime"], .gform_wrapper.gravity-theme input[type="email"], .gform_wrapper.gravity-theme input[type="month"], .gform_wrapper.gravity-theme input[type="number"], .gform_wrapper.gravity-theme input[type="password"], .gform_wrapper.gravity-theme input[type="search"], .gform_wrapper.gravity-theme input[type="tel"], .gform_wrapper.gravity-theme input[type="text"], .gform_wrapper.gravity-theme input[type="time"], .gform_wrapper.gravity-theme input[type="url"], .gform_wrapper.gravity-theme input[type="week"], .gform_wrapper.gravity-theme select, .gform_wrapper.gravity-theme textarea {
    font-size: 15px;
    padding: 18px;
    margin-bottom: 0;
    margin-top: 0;
	background-color: #e1e1e1;
}

#gform_submit_button_1 {
	
    width: 100% !important;
    font-size: 14px;
    font-family: inherit;
    font-weight: 500;
    background-color: #006666;
    color: #FFFFFF;
    min-width: 100px;
    max-width: unset;
    height: auto;
    min-height: unset;
    max-height: unset;
    cursor: pointer;
    display: inline-block;
    position: relative;
    margin: 0 10px 0 0;
    margin-right: 10px;
    padding: 20px 10px;
    border: 0;
    border-radius: 0;
    background-image: unset;
    line-height: 1.45em;
    text-align: center;
    -webkit-transition: .2s ease;
    transition: .2s ease;
}

#gform_submit_button_1:hover {
	background-color: #009999;
	color: #FFFFFF;
	-webkit-box-shadow: 0 1px 4px 0 rgba(0,0,0,.6);
	box-shadow: 0 1px 4px 0 rgba(0,0,0,.6);
}



/*------------------------------ -------------------- ------------------------------*/
/*------------------------------  ALL THINGS FOOTER   ------------------------------*/
/*------------------------------ -------------------- ------------------------------*/


/*** ADJUSMENTS TO THE BACK TO TOP LINK */
.et_pb_scroll_top.et-pb-icon {
    right: 20px;
    padding: 10px;
    border-top-right-radius: 20px;
    border-top-left-radius: 5px;
    border-bottom-right-radius: 5px; 
    border-bottom-left-radius: 20px;
}

.et_pb_scroll_top.et-pb-icon:hover {
	color: #fff;
	background: rgba(0,0,0,0.7);
}


/*------------------------------ -------------------- ------------------------------*/
/*--------------------------------- MEDIA  QUERIES ---------------------------------*/
/*------------------------------ -------------------- ------------------------------*/

/*** Responsive Styles Large Desktop And Above ***/
@media all and (min-width: 1405px) {
  
}
 
/*** Responsive Styles Standard Desktop Only ***/
@media all and (min-width: 1100px) and (max-width: 1405px) {
 
}

/*** Responsive Styles Tablet Landscape ***/
@media all and (max-width: 1024px) {
 
}
 
/*** Responsive Styles Tablet And Below ***/
@media all and (max-width: 980px) {
 
}
 
/*** Responsive Styles Tablet Only ***/
@media all and (min-width: 768px) and (max-width: 980px) {

}
 
/*** Responsive Styles Smartphone Only ***/
@media all and (max-width: 767px) {
	
}
 
/*** Responsive Styles Smartphone Portrait ***/
@media all and (max-width: 479px) {
	.src_reverse-row {
		display: flex;
		flex-wrap: wrap-reverse;	
	}

}
