/*
 Theme Name:   spinup
 Description:  A Custom WordPress Theme from SpinUp Creative
 Author:       Natalie Osborne / SpinUp Creative
 Author URI:   https://spinupcreative.com
 Template:     Divi
*/


@import url("../Divi/style.css");
@import url("https://use.typekit.net/dtt0pfq.css");


/* =Theme customization starts here
-------------------------------------------------------------- */

/*FONT STYLES*/

h1, h2{
	font-family: new-order,sans-serif;
	font-weight: 600;
	font-style: normal;
}

h3, h4{
	font-family: new-order,sans-serif;
	font-weight: 500;
	font-style: normal;
}

h5, h6{
	font-family: new-order,sans-serif;
	font-weight: 400;
	font-style: normal;
}


/* VERTICALLY ALIGN CONTENT MODULES IN A ROW */
.vertical-align { 
    display: flex; 
    flex-direction: column; 
    justify-content: center;
} 


/* MAIN MENU SUB NAV STYLES */
#top-menu li li a {
    font-weight: 600;
    text-transform: none;
    font-size: 16px;
    line-height: 1.3em;
}



/* BLOCKQUOTE STYLES */
blockquote {
    border-color: #fcad17;
}

blockquote a {
    color: #666666;
    font-weight: 400;
}

blockquote a:hover {
    color: #666666;
    text-decoration: underline;
    text-underline-offset: 0.3em;
}




/* REMOVE BOTTOM BORDER FROM HEADER */
header#main-header.et-fixed-header, #main-header{
	-webkit-box-shadow:none !important;
	-moz-box-shadow:none !important;
	box-shadow:none !important;
	border-bottom: 1px solid #dee2cd;
}



/* HOMEPAGE LOGO CAROUSEL */
.homepage-logo-carousel img {width: 120px !important; opacity: .8;}


/* GRAVITY FORMS STYLES */
.gform_wrapper input[type="submit"] {
	background-color: #459FAF;
	padding: .5% 2%;
	border:none;
	color: #ffffff;
        font-size: 18px;
}

.gform_wrapper input[type="submit"]:hover {
	background-color: #FBAE18;
	padding: .5% 2%;
	color: #fff;
}

.gform_wrapper h3 {
  color: #526a72;
  font-weight: 800;
  margin-top: 40px;
}




/* FILTERABLE PROJECT PORTFOLIO STYLES */
.et_pb_filterable_portfolio .et_pb_portfolio_filters li a.active {
    color: #ffffff !important;
    background-color: #ffaa00 !important;
}
.et_pb_filterable_portfolio .et_pb_portfolio_filters li a:hover {
    color: #666;
    background-color: #f7f8f2;
}
.et_pb_filterable_portfolio .et_pb_portfolio_filters li a {
  border: 1px solid #dee2cd;
}


/*PRICING TABLES EQUAL HEIGHT*/

.et_pb_pricing_table_wrap {
    align-items: normal;
}


/* TESTIMONIALS STYLES */
.strong-view.wpmtst-default .wpmtst-testimonial {
    border: none !important;
}
.strong-view.wpmtst-default .wpmtst-testimonial-inner {
    border: none !important;
}


/* 404 Error Page ASTRO COCO ANIMATION */
.astro-coco {
		animation-name: slide-out-tl;
		animation-duration: 40s;
		animation-timing-function: ease;
		animation-delay: 0s;
		animation-iteration-count: 1;
		animation-direction: normal;
		animation-fill-mode: none;
			
}
	@keyframes slide-out-tl {
			
		0% {
			transform:translateY(0) translateX(0);
			opacity:1;
		}
		100% {
			transform:translateY(-200px) translateX(800px);
			opacity:0;
		}
	}



/* LOGO FOOTER SPINNER ANIMATION */
.spinner-footer	
{
  width: 100px;
  height: 100px;		
  animation-name: rotate-center;
  animation-duration: 15s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: reverse;
  animation-fill-mode: none;

	}
	@keyframes rotate-center {
			
		0% {
			transform:rotate(0);
		}
		100% {
			transform:rotate(360deg);
		}
	}