:root {
color: #222;
font-size: 16px;
--yellow: #eedf21;
--green: #1e6f87;
--blue: #20afdb;
--red: #b54a49;
}
* {
box-sizing:border-box;
margin: 0;
padding: 0;
line-height: 1;
outline: 0;
}
body {
font-family: 'Kanit', sans-serif;
overflow-x: hidden;
} .bg-black {
background: #111;
}
.bg-blue {
background: var(--blue);
}
.hover-bg-blue:hover {
background: var(--blue);
}
.bg-green {
background: var(--green);
}
.bg-light-gray {
background: #efefef;
}
.bg-red {
background: var(--red);
}
.hover-bg-red:hover {
background: var(--red);
}
.bg-yellow {
background: var(--yellow);
}
.bg-yellow-light {
background: rgba(238,223,33,0.3);
}
.bg-green-stripes {
background: repeating-linear-gradient(
-45deg,
var(--green),
var(--green) 5px,
#196075 5px,
#196075 10px
);
}
.bg-white {
background: #fff;
}
.bg-tv-stripes {
background: repeating-linear-gradient(
-45deg,
rgba(0,0,0,0.6),
rgba(0,0,0,0.6) 5px,
rgba(0,0,0,0.3) 5px,
rgba(0,0,0,0.3) 10px
);
}
.bg-fancy-gradient {
background: radial-gradient(
circle at 50% 0,
rgb(255 0 0 / 50%),
rgb(255 0 0 / 0%) 70.71%
),
radial-gradient(
circle at 6.7% 75%,
rgb(0 0 255 / 50%),
rgb(0 0 255 / 0%) 70.71%
),
radial-gradient(
circle at 93.3% 75%,
rgb(0 255 0 / 50%),
rgb(0 255 0 / 0%) 70.71%
) beige;
}
.black {
color: #111;
}
.blue {
color: var(--blue);
}
.green {
color: var(--green);
}
.red {
color: var(--red);
}
.white {
color: #fff;
}
.yellow {
color: var(--yellow);
}
.hover-yellow:hover {
color: var(--yellow);
}
.border-yellow {
border: 3px solid var(--yellow);
}
.shadow {
box-shadow: 5px 5px 15px rgba(0,0,0,0.3);
} section {
position: relative;
}
.container {	
margin: 0 auto;
max-width: 1200px;
padding: 0 20px;
position: relative;
}
.container-fluid {	
margin: 0 auto;
max-width: 100%;
padding: 0 20px;
}
#page {
background: #fff;
min-height: 100vh;
padding: 0 0 40px 0;
}
.grid {
display: grid;
}
.section-pad {
padding: 100px 0;
}
.section-pad-bottom {
padding-bottom: 100px;
}
.no-pad,
#page.no-pad {
padding: 0;
}
.pad-0-15 {
padding: 15%;
}
.big-pad {
padding: 40px;
}
.no-gap {
grid-gap: 0;
} .h1,
.h2,
.h3,
.h4,
.h5,
p,
ul,
dt,
dd {
margin-bottom: 20px;
}
.font-xl {
font-size: 150%;
}
.font-l {
font-size: 125%;
}
.font-s {
font-size: 75%;
}
.font-xs {
font-size: 50%;
}
strong {
font-weight: 700;
}
.fw-200 {
font-weight: 200;
}
.fw-300 {
font-weight: 300;
}
.fw-400 {
font-weight: 400;
}
.fw-500 {
font-weight: 500;
}
.fw-600 {
font-weight: 600;
}
.fw-700 {
font-weight: 700;
}
.fw-800 {
font-weight: 800;
}
.fw-900 {
font-weight: 900;
}
.tt-up {
text-transform: uppercase;
}
hr {
margin-bottom: 20px;
}
.vr {
border-right: 5px solid;
display: none;
height: 40px;
margin: 0 20px;
width: 0;
} .h1,
.h2,
.h3,
.h4,
.h5 {
line-height: 1;
}
.h1 {
font-size: clamp(28px, 10vw, 90px);
}
.h2 {
font-size: clamp(26px, 10vw, 50px);
}
.h3 {
font-size: clamp(20px, 10vw, 26px);
}
.h4 {
font-size: clamp(18px, 10vw, 20px);
}
.h5 {
font-size: clamp(16px, 10vw, 18px);
} p {
font-weight: 300;
line-height: 1.4;
}
.max-600 {
margin: 0 auto 20px auto;
max-width: 600px;
}
.max-800 {
margin: 0 auto 20px auto;
max-width: 800px;
}
.cable {
height: auto;
margin: 40px 0;
width: 100%;
} img {
height: auto;
max-width: 100%;	
}
.rad-40 {
border-radius: 40px;
}
.round-right {
border-radius: 0 10% 10% 0;
} ul {
list-style-type: none;
padding-left: 0;
}
ul:after {
clear: both;
content: "";
display: block;	
float: none;
}
.list-bullet {
list-style-position: inside;
list-style-type: disc;
}
li,
dt,
dd {
font-weight: 300;
line-height: 1;
margin-bottom: 10px;
}
figure {
margin: 0;
} a, 
a:hover, 
a:active, 
a:focus {
text-decoration: none;
transition: all 0.25s ease-in-out;
}
a {
color: inherit;
}
a.btn,
.btn { align-items: center;
border-radius: 10px;
color: #fff;	
display: inline-flex;
font-size: 20px;
font-weight: 900;	
margin: 0 auto 20px auto;
max-width: max-content;
padding: 20px;
text-align: center;
text-transform: uppercase;
}
.btn:hover {
box-shadow: 0px 5px 5px rgba(0,0,0,0.3);
transform: translateY(-5px) scale(110%);
transition: all ease-in-out 0.25s;
}
.btn .fa {
margin-right: 5px;
}
.block-link {
display: inline-block;
margin-bottom: 10px;
max-width: max-content;
}
.circle-link {
align-items: center;
background: var(--yellow);
border-radius: 50%;
color: var(--green);
display: inline-flex;
height: 50px;
justify-content: center;
margin-right: 10px;
width: 50px;
}
.circle-link.scale-2 {
margin-bottom: 20px;
margin-right: 60px;
}
.circle-link.scale-2:nth-of-type(2) {
margin-right: 0;
}
.underline {
text-decoration: underline;
}
.line-link:hover {
text-decoration: underline;
} .clearfix,
.clear {
clear: both;
float: none;
}
.kc_row:not(.kc_row_inner),
.kc-elm {
clear: both;
float: none !important;
}
.kc_row:after {
clear: both !important;
content: "";
display: block !important;
float: none !important;
} .align-bottom {
align-content: end;
display: grid;
}
.align-center {
align-items: center;
display: flex;
}
.align-middle {
display: grid;
align-content: center;
}
.justify-end {
display: flex;
justify-content: end;
}
.justify-self-center {
justify-self: center;
}
.center {
text-align: center;
}
.object-cover {
object-fit: cover;
}
.rel {
position: relative;
}
.right {
text-align: right;
} .z-2 {
z-index: 2;
}
.text-justify {
text-align: justify;
}
.scale-2 {
transform: scale(2);
} input[type="color"], 
input[type="date"], 
input[type="datetime"], 
input[type="datetime-local"], 
input[type="email"], 
input[type="month"], 
input[type="number"],
input[type="password"], 
input[type="tel"], 
input[type="text"], 
input[type="time"], 
input[type="url"], 
input[type="week"], 
textarea {
background: rgba(255,255,255,0.7);
border: 1px solid rgba(200,200,200,1);
display: block;
font-family: 'Kanit';
font-size: 16px;
height: auto;
margin-bottom: 5px;
padding: 20px;	
width: 100%;
}
input[type="submit"] {
background: var(--red);
border: 0;
color: #fff;
cursor: pointer;
display: block;
font-size: 19px;
font-weight: 600;
letter-spacing: 1px;		
margin-bottom: 0;
padding: 20px;
text-transform: uppercase;	
width: auto;
}
textarea {
min-height: 100px;
}
::placeholder {
color: inherit;
opacity: 0.7;
} .video-container {
padding-bottom: 56.25%;
padding-top: 30px; height: 0; overflow: hidden;
position: relative;
}
.video-container iframe,
.video-container object,
.video-container embed {
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
} #up {	
bottom: 10%;
border: 2px solid rgba(255,255,255,0.5);
background: var(--green);	
position: fixed;	
right: 10px;	
text-align: center;	
z-index: 999;
}
#up a {
color: var(--yellow);
display: flex;
font-size: 35px;
height: 50px;
justify-content: center;
width: 50px;
}
#up a .fa {
align-self: center;
} #top-bar {
align-items: center;
color: var(--yellow);
display: flex;
justify-content: end;
left: 0;
padding-left: 20px;
position: fixed;
top: 0;
transition: all 0.25s ease-in-out;
width: 100%;
z-index: 999;
}
#contact-bar {
background: var(--green);
color: var(--yellow);
width: 100%;
}
#contact-bar .container {
align-items: center;
display: flex;
justify-content: space-between;
transition: all 0.25s ease-in-out;
}
.menu-is-open #top-bar {
transition: all 0.25s ease-in-out;
}
.show {
display: block;
}
#main-menu {
height: 100%;
margin-bottom: 0;
padding: 50px 20px 20px 20px;
position: fixed;
right: -100%;
top: 0;
text-align: center;
transition: all 0.25s ease-in-out;
width: 100%;
}
.menu-is-open #main-menu {
background: var(--green);
right: 0;
top: 0;
}
#main-menu,
#main-menu li {
margin-bottom: 0;
}
#main-menu li a {
color: var(--yellow);
display: block;
font-size: 28px;
padding: 10px;
text-transform: uppercase;
}
#hamburger {
align-content: space-between;
background: var(--yellow);
cursor: pointer;
display: grid;
height: 50px;
padding: 10px;	
transition: all 0.5s 0.5s ease-in-out;
width: 50px;
z-index: 999;
}
.bar {	
border-bottom: 6px solid var(--green);
transition: all 0.25s ease-in-out;
width: 100%;
}
#bar-wrapper {
position: relative;
}
#bar-2 {
position: relative;
}
#bar-3 {
left: 0;
position: absolute;
top: 0;
}
.bar.blackout {
border-bottom: 3px solid transparent;
transition: all 0.5s ease-in-out;
}
.menu-is-open #bar-1,
.menu-is-open #bar-4 {
border-color: transparent;
box-shadow: none;
transition: none;
}
.menu-is-open #bar-2 {
transform: rotate(45deg);
}
.menu-is-open #bar-3 {
transform: rotate(-45deg);
}
.menu-is-open #fly-out-overlay {
background: rgba(0,0,0,0.5);
cursor: pointer;
display: block;
height: 100%;
left: 0;
position: fixed;
top: 0;
transition: all 0.25s ease-in-out;
width: 100%;
}
#logo {
max-width: 230px;
padding: 5px 0;
} #hero {
padding: 200px 0;
} .parallax-bg {
background-position: center 0;
background-repeat: no-repeat;
background-size: cover;	
} .flexslider {
border: 0;
border-radius: 0;	
box-shadow: none;	
margin: 0 auto;
overflow: hidden;
padding: 0;
z-index: 1;
} .cta-panel {
color: #fff;
display: flex;
flex-direction: column;
justify-content: center;
padding: 100px 20px;
position: relative;
}
.cta-panel::before {
background: rgba(30,111,135,0.8);
background: rgba(0,0,0,0.6);
content: "";
display: block;
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
}
.cta-panel.cta-green::before {
background: rgba(30,111,135,0.9);
}
.cta-panel.cta-clean::before {
display: none;
}
.cta-panel.cta-grad-lr::before {
background: rgba(0,0,0,0.6);
}
.cta-panel > * {
position: relative;
}
.cta-panel .h3 {
max-width: 40ch;
}
#footer-cta {
background: var(--green) url(//jurassicspark.com.au/wp-content/uploads/2024/01/jurassic-spark-electrical-tags.webp) no-repeat center / cover;
}
#volunteer-cta {
background: var(--green) url(https://www.rmhc.org.au/sites/default/files/2019-05/house_header_perthCH.jpg) no-repeat center / cover;
}
#home-hero-cta {
background: var(--green) url(//jurassicspark.com.au/wp-content/uploads/2024/02/jurassic-spark-electrical-industrial-01.webp) no-repeat center top / cover;
min-height: 100vh;
}
#home-hero-cta-02 {
background: var(--green) url(//jurassicspark.com.au/wp-content/uploads/2024/02/jurassic-spark-electrical-hero-03.webp) no-repeat center top / cover;
min-height: 100vh;
}
#about-hero-cta {
background: var(--green) url(//jurassicspark.com.au/wp-content/uploads/2024/01/JSpark_Promo_054-cropped.webp) no-repeat 70% top / cover;
}
#contact-hero-cta {
background: var(--green) url(//jurassicspark.com.au/wp-content/uploads/2024/02/jurassic-spark-electrical-van.webp) no-repeat center center / cover;
min-height: 100vh;
}
#commercial-hero-cta {
background: var(--green) url(//jurassicspark.com.au/wp-content/uploads/2024/02/jurassic-spark-electrical-commercial-air-conditioning.webp) no-repeat 70% center / cover;
min-height: 100vh;
}
#industrial-hero-cta {
background: var(--green) url(//jurassicspark.com.au/wp-content/uploads/2024/02/jurassic-spark-electrical-industrial-01.webp) no-repeat 70% center / cover;
min-height: 100vh;
}
#residential-hero-cta {
background: var(--green) url(//jurassicspark.com.au/wp-content/uploads/2024/02/jurassic-spark-electrical-residential-air-conditioning.webp) no-repeat center center / cover;
min-height: 100vh;
}
#commercial-hero-cta-02 {
background: var(--green) url(//jurassicspark.com.au/wp-content/uploads/2024/02/jurassic-spark-electrical-hero-01.webp) no-repeat 30% center / cover;
min-height: 100vh;
}
#residential-hero-cta-02 {
background: var(--green) url(//jurassicspark.com.au/wp-content/uploads/2024/02/jurassic-spark-electrical-hero-02.webp) no-repeat center center / cover;
min-height: 100vh;
}
#about-cta {
background: var(--green) url(//jurassicspark.com.au/wp-content/uploads/2024/01/jurassic-spark-electrical-tool-box.webp) no-repeat right top / cover;
}
#home-hero-cta #home-info {
order: 2;
}
#home-hero-cta #home-logo {
order: 1;
} .row.info-panel {
grid-gap: 0;
}
.info-panel {
flex-direction: column;
margin-bottom: 0;
}
.info-panel h3,
.info-panel img {
transition: all 0.5s ease-in-out;
}
.info-panel img {
min-width: 100%;
object-fit: cover;
}
.scale-bump {
transform: scale(110%);
transition: all 0.2s ease-in-out;
}
.color-bump {
color: var(--green);
transition: all 0.2s ease-in-out;
}
.content-pad {
padding: 0 20px;
} .card {
border-radius: 0 0 20px 20px;
overflow: hidden; }
.card-content {    padding: 20px;
transition: all 0.25s ease-in-out; z-index: 2;
}
.card img {
clip-path: polygon(0 0, 100% 0%, 100% 100%, 50% 95%, 0 100%);
z-index: 1;
}
.card.bg-yellow {
border-top: 20px solid var(--yellow);
}
.card.bg-blue {
border-top: 20px solid var(--blue);
}
.card.bg-red {
border-top: 20px solid var(--red);
}
.card img {
transition: all 0.25s ease-in-out;
}
.card:hover img {
scale: 110%;
transition: all 0.25s ease-in-out;
}  #footer-main {
color: white;
padding: 40px 0;
}
#footer-main li:last-child {
border-bottom: 0;
}
.footer-fixed {
bottom: 0;
left: 0;
position: fixed;	
width: 100%;
z-index: -1;
}
#footer-legal {
color: var(--blue);
padding: 20px;
}
.footer-logo {
max-width: 150px !important;
}
#footer-contact {
background: url(//jurassicspark.com.au/wp-content/uploads/2024/01/jurassic-spark-electrical-fade-01.webp) no-repeat center bottom / cover;
min-height: 100vh;
}
.footer-form {
padding: 40px;
}
#footer-form {
display: grid;
grid-gap: 20px;
grid-template-areas: 
"name name"
"email phone"
"msg msg"
"submit submit"
;
padding: 40px;
}
input[name="enquiry-name"] {
grid-area: name;
}
input[name="enquiry-email"] {
grid-area: email;
}
input[name="enquiry-phone"] {
grid-area: phone;
}
input[type="submit"] {
grid-area: submit;
}
textarea[name="enquiry-message"] {
grid-area: msg;
}
#siteby {
background-color: var(--yellow);
color: #111;
bottom: 40px;
font-size: 14px;
font-weight: 600;
left: -110%;
padding: 10px;
position: absolute;
transition: all 0.25s ease-in-out;
}
.siteby-open {
bottom: 40px;
left: 0 !important;
transition: all 0.25s ease-in-out;
}
#siteby:hover {
background: var(--red);
color: #fff;
transform: scale(105%);
} .contact .circle-link.fa-phone {
font-size: 36px;
}
.contact .circle-link.fa-envelope {
font-size: 26px;
}
.socials .circle-link:hover {
transform: scale(110%);
transition: all ease-in-out 0.1s;
}
.cta-button {
align-items: center;
border-radius: 40px;
display: flex;
max-width: max-content;
padding: 10px 20px 10px 7.5px;
position: relative;
}
.cta-button:hover {
box-shadow: 0px 5px 5px rgba(0,0,0,0.3);
transform: translateY(-5px) scale(110%);
transition: all ease-in-out 0.25s;
}
#footer-main li.email-link {
font-size: 12px;
}
#home-hero-cta .btn {
margin: 0 10px 0 0;
}
#home-hero-cta .btn:last-of-type {
margin: 0;
}
.grab-panel {
justify-content: end;
display: flex;
}
.grab-bar {
align-items: center;
border-radius: 0;
color: #fff;
display: flex;
flex-direction: column;
margin: 0;
max-width: max-content;
padding: 10px 20px;
text-align: center;
}
.grab-bar * {
margin-bottom: 0;
}
.grab-bar img {
margin: 0 10px;
max-width: 80px;
transform: scale(1.5);
}
.grab-bar:hover img {
animation: shake-2 0.5s;
}
.shake {
animation: shake 0.5s;
}
@keyframes shake {
0% { transform: translate(1px, 1px) rotate(0deg) scale(1.5); }
10% { transform: translate(-1px, -2px) rotate(-1deg) scale(1.4); }
20% { transform: translate(-3px, 0px) rotate(1deg) scale(1.5); }
30% { transform: translate(3px, 2px) rotate(0deg) scale(1.4); }
40% { transform: translate(1px, -1px) rotate(1deg) scale(1.5); }
50% { transform: translate(-1px, 2px) rotate(-1deg) scale(1.4); }
60% { transform: translate(-3px, 1px) rotate(0deg) scale(1.5); }
70% { transform: translate(3px, 1px) rotate(-1deg) scale(1.4); }
80% { transform: translate(-1px, -1px) rotate(1deg) scale(1.5); }
90% { transform: translate(1px, 2px) rotate(0deg) scale(1.4); }
100% { transform: translate(1px, -2px) rotate(-1deg) scale(1.5); }
}
@keyframes shake-2 {
0% { transform: translate(1px, 1px) rotate(0deg) scale(1.5); }
10% { transform: translate(-1px, -2px) rotate(-1deg) scale(1.4); }
20% { transform: translate(-3px, 0px) rotate(1deg) scale(1.5); }
30% { transform: translate(3px, 2px) rotate(0deg) scale(1.4); }
40% { transform: translate(1px, -1px) rotate(1deg) scale(1.5); }
50% { transform: translate(-1px, 2px) rotate(-1deg) scale(1.4); }
60% { transform: translate(-3px, 1px) rotate(0deg) scale(1.5); }
70% { transform: translate(3px, 1px) rotate(-1deg) scale(1.4); }
80% { transform: translate(-1px, -1px) rotate(1deg) scale(1.5); }
90% { transform: translate(1px, 2px) rotate(0deg) scale(1.4); }
100% { transform: translate(1px, -2px) rotate(-1deg) scale(1.5); }
}
.services-header {
align-items: end;
display: flex;
flex-direction: column;
justify-content: space-between;
padding: 0 0 20px 0;
text-align: center;
}
.services-toggle {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.services-header h2 {
margin-bottom: 0;
}
.toggle-button {
align-items: center;
cursor: pointer;
display: flex;
margin-left: 10px;
padding: 10px;
}
.toggle-button:hover {
transform: scale(110%);
}
.toggle-button:first-child {
margin-left: 0;
}
.animation-pointing {
animation: pointing 0.5s infinite ease-in-out;
}
@keyframes pointing {
from {
transform: translateX(0);
}
to {
transform: translateX(10px);
}
}
.animation-wave {
animation: wave 0.7s infinite ease-in-out;
}
@keyframes wave {
from {
transform: scale(100%);
}
to {
transform: scale(110%);
}
}
.animation-wave:first-child {
animation-delay: 0;
}
.animation-wave:nth-child(2) {
animation-delay: 0.25s;
}
.animation-wave:nth-child(3) {
animation-delay: 0.5s;
}
.preview-panel,
.service-bars {
display: grid;
grid-gap: 20px;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.service-square {
align-items: end;
background: var(--green);
aspect-ratio: 1/1;
display: grid;
justify-content: space-between;
margin: 0;
outline: 1px solid var(--yellow);
outline-offset: 5px;
position: relative;
}
.service-square .content {
bottom: 25px;
left: 25px;
position: absolute;
z-index: 4;
}
.service-square .hover-content {
align-items: center;
bottom: 0;
display: none;
height: 100%;
justify-content: center;
left: 0;
padding: 20px;
position: absolute;
text-align: center;
transition: all 1s ease-in-out;
width: 100%;
z-index: 3;
}
.service-square::after {
background: linear-gradient(13deg, rgba(30,111,135,1) 0%, rgba(30,111,135,0.75) 25%, rgba(30,111,135,0) 50%);
background: linear-gradient(13deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.75) 25%, rgba(0,0,0,0) 50%);
content: "";
display: block;
height: 100%;
left: 0;
position: absolute;
top: 0;
width: 100%;
z-index: 2;
}
.service-square:hover::before {
filter: grayscale(100) brightness(0.5);
opacity: 0.5;
}
.service-square:hover .hover-content {
display: flex;
flex-direction: column;
transition: all 0.5s ease-in-out;
}
.content-buttons {
display: flex;
flex-direction: row;
padding-top: 20px;	
}
.content-buttons .btn:hover {
background: var(--blue);
}
.service-square *,
.service-bar * {
margin: 0;
position: relative;
z-index: 2;
}
.service-square a,
.service-bar a {
transition: all ease-in-out 0.2s;
}
.service-square:hover .fa-arrow-right,
.service-bar:hover .fa-arrow-right {
transform: translateX(10px);
transition: all ease-in-out 0.2s;
}
.service-bar {
align-items: center;
border-radius: 20px;
display: flex;
justify-content: space-between;
padding: 20px;
transition: all 0.25s ease-in-out;
}
.service-bar:hover {
scale: 105%;
transition: all 0.25s ease-in-out;
}
.pre-heading::before {
display: block;
color: var(--yellow);
font-size: 25px;
font-weight: 300;
text-transform: uppercase;
}
.pre-heading-name::before {
content: "Jurassic Spark";
}
.pre-heading-volunteer::before {
content: "Volunteer Work";
}
.heart {
mask:
radial-gradient(at 70% 31%,#000 29%,#0000 30%),
radial-gradient(at 30% 31%,#000 29%,#0000 30%),
linear-gradient(#000 0 0) bottom/100% 50% no-repeat;
clip-path: polygon(-41% 0,50% 91%, 141% 0);
}
.justify-space-between {
align-content: space-between;
}
#t-rex {
display: none;
max-width: 150px;
left: 20px;
position: absolute;
top: 0;
height: auto;
z-index: 999;
}
#t-rex-right {
display: none;
}
.trex-animation {
animation: 3s 1 alternate trex;
display: grid !important;
}
@keyframes trex {
0% {
margin-left: 100%;
transform: translateY(0);
}
100% {
margin-left: 0%;
transform: translateY(0);
}
5%, 10%, 15%, 20%, 25%, 30%, 35%, 40%, 45%, 50%, 55%, 60%, 65%, 70%, 75%, 80%, 85%, 90%, 95% {
transform: translateY(0);
}
2.5%, 12.5%, 17.55%, 22.5%, 27.5%, 32.5%, 37.5%, 42.5%, 47.5%, 52.5%, 57.5%, 62.5%, 67.5%, 72.5%, 77.5%, 82.5%, 87.5%, 92.5%, 97.5% {
transform: translateY(10px);
}
}
#text-logo {
margin: auto;
max-width: 150px;
z-index: 999;
}
#t-rex-02 {
display: grid;
}
#t-rex-walk-02 {
display: none;
}
.row {
display: grid;
grid-template-columns: repeat(12, 1fr);
grid-gap: 20px;
}
.span-1 {
grid-column: span 12;
}
.span-2 {
grid-column: span 12;
}
.span-3 {
grid-column: span 12;
}
.span-4 {
grid-column: span 12;
}
.span-5 {
grid-column: span 12;
}
.span-6 {
grid-column: span 12;
}
.span-7 {
grid-column: span 12;
}
.span-8 {
grid-column: span 12;
}
.span-9 {
grid-column: span 12;
}
.span-10 {
grid-column: span 12;
}
.span-11 {
grid-column: span 12;
}
.span-12 {
grid-column: span 12;
} @media only screen and (min-width: 641px) {
.row {
display: grid;
grid-template-columns: repeat(12, 1fr);
grid-gap: 20px;
}
.big-gap {
grid-gap: 60px;
}
.span-1 {
grid-column: span 1;
}
.span-2 {
grid-column: span 2;
}
.span-3 {
grid-column: span 3;
}
.span-4 {
grid-column: span 4;
}
.span-5 {
grid-column: span 5;
}
.span-6 {
grid-column: span 6;
}
.span-7 {
grid-column: span 7;
}
.span-8 {
grid-column: span 8;
}
.span-9 {
grid-column: span 9;
}
.span-10 {
grid-column: span 10;
}
.span-11 {
grid-column: span 11;
}
.span-12 {
grid-column: span 12;
}
.grab-bar {
align-items: center;
border-radius: 40px 0 0 40px;
color: #fff;
display: flex;
flex-direction: row;
margin: 0;
max-width: max-content;
padding: 10px 20px;
}
.vr {
display: inline-block;
}
.y-50-up {
transform: translateY(-50%);
}
.y-50-down {
transform: translateY(50%);
}
.info-panel {
flex-direction: row;
}
.info-panel img {
clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0% 100%, 0 0 );
min-width: 100%;
object-fit: cover;
}
.info-panel:nth-child(odd) img {
clip-path: polygon(0% 50%, 10% 0%, 100% 0%, 100% 100%, 10% 100%, 0% 50%);
order:2;
}
#home-hero-cta #home-info {
order: 1;
}
#home-hero-cta #home-logo {
order: 2;
}
.services-header {
flex-direction: row;
text-align: left;
}
.arrow-right {
clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0% 100%, 0 0 );
}
.pad-0-15 {
padding: 0 15%;
}
#about-hero-cta {
background: var(--green) url(//jurassicspark.com.au/wp-content/uploads/2024/01/JSpark_Promo_054-cropped.webp) no-repeat right top / cover;
}
.cta-panel.cta-grad-lr::before {
background: rgba(30,111,135,0.6);
background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.75) 35%, rgba(0,0,0,0) 60%);
}
#industrial-hero-cta {
background: var(--green) url(//jurassicspark.com.au/wp-content/uploads/2024/02/jurassic-spark-electrical-industrial-01.webp) no-repeat center center / cover;
min-height: 100vh;
}
#commercial-hero-cta-02 {
background: var(--green) url(//jurassicspark.com.au/wp-content/uploads/2024/02/jurassic-spark-electrical-hero-01-alt.webp) no-repeat center center / cover;
min-height: 100vh;
}
#commercial-hero-cta {
background: var(--green) url(//jurassicspark.com.au/wp-content/uploads/2024/02/jurassic-spark-electrical-commercial-air-conditioning.webp) no-repeat center center / cover;
min-height: 100vh;
}
}
@media only screen and (min-width: 900px) {
#top-bar {
display: block;
padding: 0 20px;
width: 100%;
}
#main-menu {
width: 100%;
}
#main-menu {
background: transparent;
display: flex;
height: auto;
right: auto;
justify-content: end;
padding: 10px;
position: static;
text-align: center;
transition: all 0.25s ease-in-out;
width: auto;
z-index: 4;
}
#hamburger {
display: none;
}
#main-menu li a {
align-items: center;
border-left: 1px solid var(--yellow);
display: flex;
font-size: 16px;
padding: 18px;
}
#main-menu .fa {
font-size: 36px;
margin-right: 10px;
}
#main-menu li a:hover,
#main-menu li.current-menu-item a {
background: var(--yellow);
color: var(--green);
}
#main-menu li:last-child a {
border-right: 1px solid var(--yellow);
}
#top-bar .fa-phone-square {
font-size: 100px;
}
#main-menu .sub-menu {
background: #f6efe7;
display: none;
padding: 10px;
position: absolute;
text-align: left;
z-index: 4;
}
#main-menu .sub-menu li {
float: none;
}
#main-menu .sub-menu li:last-child a {
padding-right: 20px;
}
#main-menu .sub-menu li a {
color: #4d93b7;
text-shadow: 0;
}
#main-menu li:hover .sub-menu li a:after {
display: none !important;
}
#main-menu .menu-item-has-children:hover .sub-menu {
display: block;
}
#text-logo {
left: 110px;
max-width: 150px;
position: absolute;
top: 10px;
}
@media screen and (min-width: 1200px) {
#main-menu li a {
font-size: 22px;
padding: 20px;
}
}
}