/* @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,700;1,400;1,700&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --primary-color: #000;
  --primary-color-hover: #276098;
  /* --primary-color: #ff7b00;
  --primary-color-hover: #b65800; */
  /* --primary-color-hover: #454f90; */
  /* --primary-color: #535fab;
  --primary-color-hover: #454f90; */
  --primary-blue: #3f86cf;
  --primary-blue-hover: #3169a0;
  --background-color: #ffffff;
  --background-color-alt: #f4f4f4;
  --borderColor: #eaeaea;
  --grey: #ececec;
  --greyDarker: #dadada;
  /* --primary-hover-color: #373f73; */
  --primary-text-color: #222222;
  --secondary-text-color: #565656;
  --primary-text-color-darker: #000;
}

* {
  font-family: "Poppins", Candara, sans-serif, Segoe, "Segoe UI", Optima, Arial, sans-serif;
  font-weight: 300;
  box-sizing: border-box;
}

/*ANIMATABLE*/
/* initially hide animatable objects */
.animatable {
  visibility: hidden;
  -webkit-animation-play-state: paused;
  -moz-animation-play-state: paused;
  -ms-animation-play-state: paused;
  -o-animation-play-state: paused;
  animation-play-state: paused;
}

/* show objects being animated */
.animatedScroll {
  visibility: visible;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -ms-animation-play-state: running;
  -o-animation-play-state: running;
  animation-play-state: running;
}

html,
body {
  position: relative;
  background-color: var(--background-color);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

.rowFlex {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.wrapper {
  /* background-color: red; */
  /* border-radius: 30px; */
  padding: 0em 0em;
  width: 100%;
  max-width: 1400px;
  /* overflow: hidden; */
}

#contact {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0em 2em;
}

h6 {
  color: rgba(255, 0, 0, 0);
  font-size: 4em;
  position: fixed;
  left: 5px;
  top: -139px;
  z-index: 999;
}

.boldText {
  font-family: "Poppins" !important;
}

#headerFadeScroll {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  pointer-events: none;
  z-index: 9999;
}

#headerHome {
  background-color: var(--primary-color);
  /* background: rgb(21, 161, 255); */
  /* background: linear-gradient(90deg, rgba(21, 161, 255, 1) 0%, rgba(63, 134, 207, 1) 36%, rgba(31, 116, 255, 1) 100%); */
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  /* border-radius: 25px; */
}

.head {
  margin: 0 auto;
  text-align: center;
}

#headerHome .headBgOverlay {
  position: relative;
  height: 100svh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

#headerHome h1 {
  color: green;

  font-family: "nexusboldrounded_italic", "Poppins" !important;
  font-size: 28em;
  color: #fff;
  margin: -5px 0;
  position: absolute;
  bottom: -140px;
  padding: 0px 22px;
  left: 0px;
  overflow: visible;

}

#headerHome h1 span {
  font-weight: 400;
}

#headerHome hr {
  width: 50px;
  margin-top: 0;
}

#headerHome h2 {
  font-size: 16px;
  font-weight: 200;
  color: #ffffffcb;
  margin: 0px;
  margin-bottom: 10px;
}

#headerHome h3 {
  font-size: 20px;
  font-weight: 200;
  color: #fff;
  margin-bottom: 25px;
}

.sub-header {
  margin: 8em auto 4em auto;
  text-align: center;
  padding: 0 15px;
}

.sub-header h1 {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 0px;
}

.sub-header p {
  font-size: 0.9rem;
  margin-top: 5px;
  margin-bottom: 10px;
}

.titleHeadCta {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  bottom: 310px;
  right: 30px;
}

.titleHeadCta button {
  width: 160px;
  align-self: flex-end;
  z-index: 100;
  background-color: var(--primary-blue);
  color: #fff;
  /* border: 1px solid #fff; */
}

.titleHeadCta button:hover {
  /* border: 0px solid #fff; */
  background-color: var(--primary-blue-hover);
}

#headerHome img {
  width: 120px;
  margin-top: 2rem;
}


h3 {
  font-size: 22px;
  margin: -5px 0px;
  font-weight: 400;
}

h4 {
  color: var(--secondary-text-color);
  /* color: var(--primary-text-color-darker); */
  text-align: center;
  margin: -20px auto 2.5em auto;
  font-size: 15px;
  font-weight: 400;
}

p {
  font-size: 15px;
  color: var(--secondary-text-color);
  line-height: 1.7;
  font-weight: 300;
}

#blueLink {
  color: var(--primary-color);
}


.navImgLogo {
  width: 34px;
  height: auto;
  margin: 0;
  display: block;
}

#navDZN {
  visibility: hidden;
  color: #000;
  margin-left: 8px;
}

.navScroll {
  z-index: 99;
  -webkit-backdrop-filter: blur(3px);
}

a {
  text-decoration: none;
  color: inherit;
  z-index: 99;
}

.menu {
  background-color: rgba(33, 33, 33, 0.97);
}

nav {
  width: 100%;
  /* background-color: var(--primary-color); */
  background-color: #fff;
  position: fixed;
  top: 55px;
  z-index: 9999999999999999 !important;
  padding: 0 5px;
}

nav ul {
  overflow: hidden;
  color: #000;
  padding: 0;
  text-align: center;
  margin: 0;
  -webkit-transition: max-height 0.4s;
  -ms-transition: max-height 0.4s;
  -moz-transition: max-height 0.4s;
  -o-transition: max-height 0.4s;
  transition: max-height 0.4s;
}

nav ul li {
  display: inline-block;
  padding: 20px 0;
  transition: .5s;
  font-size: 16px;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 9999990;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

nav ul li:hover {
  cursor: pointer;
  color: #ffffffda;
  margin-left: 2px;
  transition: .2s;
}

nav ul li a {
  font-family: "Poppins";
  display: inline-block;
  font-weight: 500;
}

nav ul li a.active {
  text-decoration: none;
  transition: .25s;
  /* color: #fff; */
  color: var(--primary-blue);
}

nav .logo {
  display: none;
  color: var(--primary-text-color);
  align-items: center;
  height: 55px;
  margin: 0 0 0 20px;
  font-size: 1.8em;
  font-weight: 300;
}

nav .logo a {
  display: inline-flex;
  align-items: center;
}

/* nav .logo-handle {
  position: absolute;
  top: 10px;
  left: 10px;
} */

.handle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  background-color: #fff;
  /* background-color: var(--primary-color); */
  box-sizing: border-box;
  padding: 10px 10px;
  height: 55px;
  cursor: pointer;
  color: #000;
  width: 100%;
  z-index: 9999999999999999 !important;
}

.handle .mobile-logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.handle .mobile-logo .navImgLogo {
  margin: 0;
  width: 28px;
}

.handle i {
  font-size: 1.8em;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99999;
}

.contact-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.contact-btn {
  background-color: #000;
  color: #fff;
  padding: 6px 12px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
  white-space: nowrap;
}

.contact-btn:hover {
  background-color: #333;
  color: #fff;
}

.contact-btn i,
.contact-btn .contact-icon {
  font-size: 17px !important;
}

.contact-btn.call-btn i {
  font-size: 17=6px !important;
}


h2 {
  text-align: center;
  color: var(--primary-text-color);
  font-size: 20px;
  font-family: "Poppins", sans-serif, serif;
  font-weight: 700;
  margin: .5em auto 1.6em auto;
}

h2 span {
  font-family: "Poppins", Candara, sans-serif, Segoe, "Segoe UI", Optima, Arial, sans-serif;
}

.padding {
  margin: 40px 2em;
  padding: 0;
}

.darker {
  padding: 5em 0 !important;
  background-color: #3f87cf20;
  /* background-color: var(--background-color-alt); */
  /* border-top: 1px solid var(--borderColor); */
  /* border-bottom: 1px solid var(--borderColor); */
  border-radius: 2em;
}

.darker:first-child {
  border-top-left-radius: 0em;
  border-top-right-radius: 0em;
}

.wrapContain {
  max-width: 72.5em;
  margin: 0 auto;
  padding: 2em;
}

#workBtns {
  text-align: center;
  width: 300px;
  margin: 0 auto;
}

#moreBtn {
  margin-top: 40px;
}

button {
  display: block;
  padding: .6em 1.2;
  height: 45px;
  background-color: #000;
  color: var(--primary-color);
  border-radius: 100px;
  border: 0px solid rgba(255, 255, 255, 0.4);
  font-size: 18px;
  font-weight: 600;
  transition: .3s;
}

button:hover {
  background-color: var(--primary-color-hover);
  color: #fff
}

.showcase {
  margin-top: 50px;
  padding: 1rem;
}

.center {
  margin: 0 auto;
  text-align: center;
}

/* #big-tiles {
  display: none !important;
  margin-top: -10px;
  margin-bottom: 2.5em;
}

#big-tiles #big-tile-items li {
  width: 33.33%;
  float: left;
  margin: 1rem 0;
  font-size: 16px !important;
  height: 50%;
}

#big-tiles #big-tile-items {
  padding: 0;
  margin: 0;
}

#big-tiles ul {
  list-style: none;
}

#big-tiles .block {
  cursor: pointer;
  position: relative;
  height: auto;
  width: 100%;
}

#big-tiles figcaption {
  -webkit-backdrop-filter: blur(6px);
  position: absolute;
  bottom: 0px;
  height: 47px;
  background-color: rgba(33, 33, 33, 0.6);
  width: 100%;
  color: var(--primary-text-color);
  padding-top: 10px;
  padding-left: 10px;
  font-family: "Poppins" !important;
  font-size: 1em;
} */

#work {
  margin: 0 auto;
  max-width: 100em;
  padding: 0 2em;
}

#work ul.showcaseToggle {
  color: var(--primary-text-color);
  font-size: 16px;
  text-align: center;
  margin-left: 0px;
  margin-top: 25px;
  padding: 0;
  clear: both;
}

#work ul.showcaseToggle li {
  cursor: pointer;
  display: block;
  background-color: var(--grey);
  /* background-color: #1f1f1f; */
  font-weight: 500;
  padding: 1em;
  margin-right: 5px;
  margin-bottom: 5px;
  width: calc(50% - 5px);
  float: left;
}

#work ul.showcaseToggle li:hover {
  background-color: var(--greyDarker);
  /* color: #fff; */
}

#work ul.showcaseToggle li a {
  color: var(--primary-text-color);
  text-decoration: none;
}

#work ul.showcaseToggle li a:active {
  color: var(--primary-color);
}

#work ul.showcaseToggle li a:hover {
  color: var(--primary-color);
}

#work .button:active,
#work .button.is-checked {
  color: #fff;
  background-color: var(--primary-color);
}

#work .button:active,
#work .button.is-checked:hover {
  color: #fff;
  background-color: var(--primary-color);
}

#work #workItems {
  padding: 0;
  margin: 0;
}

#work #workItems li {
  width: 50%;
  float: left;
  font-size: 16px !important;
  margin: 0;
  padding: 0;
}

#work #workItems li .innerbox {
  border-radius: 4px;
  margin: .5rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--borderColor);
}

#work ul {
  list-style: none;
}

#work .block {
  cursor: pointer;
  position: relative;
  height: auto;
  width: 100%;
}

#work figcaption {
  -webkit-backdrop-filter: blur(6px);
  position: absolute;
  bottom: 0px;
  height: 47px;
  background-color: rgba(33, 33, 33, 0.6);
  width: 100%;
  color: #fff;
  padding-top: 15px;
  padding-left: 10px;
  font-family: "Poppins" !important;
  font-size: 14px;
}

#work .overlay h3 {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: -10px;
  color: #fff;
}

#work .overlay p {
  font-size: 12px;
  color: #fff;
  padding: 0em 5px
}

#work .overlay button {
  font-size: 13px;
  margin: 5px auto;
  height: 30px
}

.containerWork {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.containerWork:hover .overlay {
  opacity: 1;
}

.containerWork:hover img {
  transform: scale(1.05);
  transition: .4s;
}

.containerWork img {
  display: block;
  width: 100%;
  height: auto;
  overflow: hidden;
  transition: 2s;
}

.containerWork .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: rgba(0, 0, 0, 0.84);
  -webkit-backdrop-filter: blur(3px);
}

.containerWork .overlay button {
  padding: .5em 1.5em;
  background-color: rgba(255, 255, 255, 0.19);
  border-radius: 50px;
  border: 0px solid rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-weight: 600;
  transition: .3s;
  color: #fff
}

.containerWork .overlay button:hover {
  background-color: var(--primary-blue);
  color: #fff;
}

.containerWork .overlay .text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%;
  text-align: center;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.containerWork .overlay .text h3 {
  font-family: "Poppins";
  font-size: 25px;
  text-align: center;
  margin-bottom: 5px;
}

.containerWork .overlay .text p {
  text-align: center;
  font-size: 14px;
  margin-bottom: 20px;
}

.section {
  margin: 8em 0;
  padding: 3em 0;
  clear: both;
}

#services {
  margin-top: 0px;
}

.service-box-full {
  background-color: var(--background-color);
  border-radius: 15px;
  padding: 20px;
  margin: 20px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  /* box-shadow: 0 8px 12px rgba(0, 0, 0, 0.020), 0 2px 6px rgba(0, 0, 0, 0.020); */
}

#rocketImg {
  max-height: 150px;
  display: flex;
  justify-content: flex-end;
}

.service-box-full .cloudLogo {
  display: none;
}

.service-box-full h4 {
  color: #000;
  font-size: 14px !important;
  margin: 0px;
  margin-bottom: 6px !important;
  text-align: left;
  font-family: "Poppins" !important;
}

.service-box-full p {
  font-size: 14px !important;
  margin: 0px 20px 0 0;
  line-height: 1.5;
}

.service-box-full button {
  margin-top: 20px;
  background-color: #d5d5ff;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  border-radius: 50px;
  border: none;
  padding: 6px 16px;
  height: 40px;
  transition: 0.15s;
}

.service-box-full button:hover {
  background-color: #ffafe2;

}

.twoColTiles {
  width: 100% !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
}

.split {
  width: 100% !important;
  margin: 0px;
}

.split img {
  max-height: 100px !important;
}


.service-icons {
  width: 100%;
  display: flex;
  justify-content: space-around;
}

.service-box {
  float: left;
  width: 33.33%;
  /* margin: 1em auto 1em auto; */
  text-align: center;
  padding-top: 25px;
  /* background-color: #f7f6ff */
}

.service-icons i {
  font-size: 26px;
  padding: 1.2em 1.8em;
  border-radius: 20px;
  transition: .2s;
  margin-bottom: 0.3em;
  /* background-color: var(--primary-color); */
  /* background-color: var(--background-color); */

  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.065), 0 1px 3px rgba(0, 0, 0, 0.06); */

  /* color: #f7f6ff; */
  color: var(--primary-color);
  /* background-color: rgba(255, 255, 255, 0.089); */
}

.service-icons i:hover {
  cursor: pointer;
  background-color: #e7e5ee;
  transition: .2s;
  transform: scale(1.02);
}

.service-icons img:hover~h4 {
  color: var(--primary-color);
}

.service-icons i:hover~li {
  color: #000;
}

.service-icons h4 {
  color: var(--primary-text-color);
  font-size: 14px;
  font-weight: 500;
  margin: 0px 0px;
  margin-top: 0px;
  text-align: center;
}

.webHostingBox h4 {
  font-weight: 500;
  margin-bottom: 4px;
}

.webHostingBox i {
  margin-bottom: 10px;
  font-size: 1.6em;
}

.webHostingBox p {
  font-weight: 300;
}

#testimonials h2 {
  padding-top: 20px;
  padding-bottom: 10px;
}

#testimonials p {
  color: var(--primary-text-color)
}

/* .process-box {
  position: relative;
  float: left;
  width: 100%;
  margin: 1em 0;
  margin-right: 6%;
  padding: 2em 2em;
    background-color: var(--greyDarker);

  border-bottom: 1px solid #f2f2f230;
}

.process-box:last-child {
  margin-right: 0px;
}

.process-box i {
  position: absolute;
  font-size: 3em;
  top: 32px;
  right: 30px;
  color: #272727;
}

.process-box h4 {
  font-size: 2em;
  margin-top: 0;
  color: var(--primary-text-color);
  margin-left: 30px;
  text-align: left;
  margin-bottom: 20px;
  font-family: "Poppins" !important;
}

.process-box ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
}

.process-box li {
  text-align: left;
  padding-left: 1em;
  text-indent: -.7em;
  color: var(--primary-text-color);
  font-size: 18px;
}

.process-box li::before {
  content: "• ";
  color: var(--primary-color);
  padding-right: 10px;
} */

form {
  font-size: 0;
  border: none;
  color: var(--primary-text-color);
  padding: 0;
  margin: 0 auto;
}

#topForm input {
  /* Mobile only */
  margin-bottom: 20px !important;
}

#topForm input[type=text] {
  -webkit-appearance: none;
  margin: 0 0 0 0;
  padding: 0;
  border: none;
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  background-color: var(--grey);
  border: 1px solid #f2f2f230;
}

#topForm input[type=text]:focus {
  background-color: var(--greyDarker);
  outline: none;
}

#topForm textarea {
  -webkit-appearance: none;
  border-top: 1px solid #f2f2f230;
  width: 100%;
  height: 300px;
  margin: -2px 0 0 0;
  padding: 20px 15px;
  font-size: 16px;
  background-color: var(--grey);
  border-radius: 4px;
  border: 1px solid #f2f2f230;
}

#topForm textarea:focus {
  background-color: var(--greyDarker);
  outline: none;
}

.select-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

#topForm select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: var(--grey);
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 22px;
  font-size: 16px;
  border: 1px solid #f2f2f230;
  border-radius: 4px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path d="M7 10l5 5 5-5z" fill="%2300000085"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px top 50%;
  background-size: 30px;
}

/* Style adjustments for when the select box is focused */
#topForm select:focus {
  background-color: var(--greyDarker);
  outline: none;
}


.btn-submit {
  -webkit-appearance: none;
  margin: 1.5em 0;
  border: none;
  /* width: 100%; */
  padding: 10px 25px;
  font-size: 16px;
  font-weight: 600;
  background-color: var(--primary-blue);
  border-radius: 60px;
  transition: 0.15s;
  color: #fff;
}

.btn-submit i {
  margin-left: 8px;
}

.btn-submit:hover {
  background-color: var(--primary-blue-hover);
}


.testimonial-slider {
  position: relative;
  width: 90%;
  max-width: 71.25em;
  margin: 0 auto 0 auto;
  overflow: hidden;
  border-radius: 14px;
  padding: 0px 0 20px 0
}

.testimonial-slider p {}

.testimonial-item {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: none;
  position: absolute;
  width: 100%;
  text-align: center;
}

.testimonial-item.active {
  display: block;
  opacity: 1;
}


.testimonial-author {
  margin-top: 10px;
  font-style: italic;
}

.prev-btn,
.next-btn {
  font-size: 14px;
  cursor: pointer;
  position: absolute;
  transform: translateY(-50%);
  background-color: var(--background-color);
  color: #6e6e6e;
  border: none;
  border-radius: 50px;
  height: 34px;
  width: 34px;
  top: 25px
}

.prev-btn:hover,
.next-btn:hover {
  background-color: var(--primary-blue);
  color: #fff;
}

.prev-btn:active,
.next-btn:active {
  /* color: var(--primary-color); */
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

.slider-contain {
  width: 100%;
  display: flex;
  align-self: center;
  justify-content: center;
  align-items: center;
}

.slider-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 250px;
  text-align: center;
  position: absolute;
  bottom: 0;
}

.slider-pagination .dot {
  display: inline-block;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: #00000039;
  margin: 0 5px;
  cursor: pointer;
}

.slider-pagination .dot.active {
  /* background-color: var(--primary-color); */
  background-color: var(--primary-blue);
}


footer {
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 4em 0 6em 0;
}

#footerImgOttawa {
  display: none;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  max-width: 350px;
  z-index: 9
}

/* Landscape phone to portrait tablet */
@media screen and (max-width: 39em) {
  nav ul {
    max-height: 0px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 8px;
    transition: max-height 0.4s ease;
  }


  .showing {
    max-height: 30em;
  }

  nav ul li {
    width: 100%;
    box-sizing: border-box;
    padding: 16px 18px;
    text-align: left;
    border-radius: 10px;
    transition: background-color 0.2s ease, color 0.2s ease;
  }

  nav ul li a {
    display: block;
    width: 100%;
  }

  nav ul li:hover,
  nav ul li:focus-within {
    background-color: #f2f6fb;
    color: var(--primary-blue);
    margin-left: 0;
  }

  nav ul li.contact-actions {
    display: flex;
    align-items: stretch;
    gap: 10px;
    padding: 12px 10px;
    background: none;
  }

  nav ul li.contact-actions .contact-btn {
    flex: 1;
    justify-content: center;
    text-align: center;
  }

  nav ul li.contact-actions:hover,
  nav ul li.contact-actions:focus-within {
    background: none;
    color: inherit;
    margin-left: 0;
  }

  .handle {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .handle .navImgLogo {
    width: 26px;
  }
}

@media only screen and (min-width: 39em) {
  #headerHome .headBgOverlay {
    /* margin-top: 5.5em; */
    /* margin-bottom: 6em; */
  }

  #headerHome {
    /* border-radius: 25px; */
    /* margin-top: 5.6em; */
    /* margin-bottom: 3em; */
  }

  #headerHome img {
    width: 130px;
    margin: 0;
  }

  #headerHome h2 {
    font-size: 20px;
  }

  #headerHome h3 {
    font-size: 24px;
    font-weight: 200;
    margin-bottom: 30px;
  }

  #headerFadeScroll {
    /* visibility: visible; */
  }

  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
    position: fixed;
    top: 0px;
    transition: top 0.2s ease-in-out;
    width: 100%;
    /* background-color: var(--primary-color); */
    background-color: #fff;

  }

  nav .logo {
    display: flex;
    align-items: center;
    height: 75px;
    margin: 0 0 0 20px;
  }

  nav ul {
    float: none;
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 0;
    padding: 0;
    right: 0px;
  }

  /* Desktop: hide email button, keep single call button */
  nav ul li.contact-actions {
    gap: 0;
  }

  nav ul li.contact-actions .email-btn {
    display: none;
  }

  nav ul li {
    display: inline;
    margin-right: 5px;
  }

  nav ul li:hover {
    margin-left: 0px;
  }

  nav ul li a {
    color: #000000;
    font-size: 18px;
    font-weight: 400;
  }

  nav ul li a:hover {
    /* color: rgba(255, 255, 255, 0.7); */
    color: rgba(0, 0, 0, 0.65);
    cursor: pointer;
    text-decoration: none;
  }

  nav ul li a:active {
    color: var(--primary-text-color);
  }

  nav ul li a.active:hover {
    /* color: #fff; */
    color: var(--primary-blue);
  }

  .handle {
    display: none;
    position: absolute;
  }

  h2 {
    font-size: 22px;
    margin-bottom: 0px;
  }

  h4 {
    font-size: 18px;
    margin-bottom: 0px;
    margin: 0.5em auto 3em auto;
  }

  p {
    font-size: 16px;
    line-height: 1.7;
    font-weight: 300;
  }
}

/* Portrait tablet to landscape narrow desktop */
@media only screen and (min-width: 48em) {
  .padding {
    margin: 40px 0em;
  }

  #work #workItems li {
    width: 50%;
    float: left;
    margin: 0;
    padding: 0;
  }

  #work #workItems li .innerbox {
    margin: .5rem;
    position: relative;
    overflow: hidden;
  }

  #headerHome .head {
    padding-top: 70px;
  }

  #headerHome .head h1 {
    margin-top: 0px;
  }

  #headerHome .headBgOverlay {
    height: 46svh;
    margin-top: 5.5em;
    margin-bottom: 6em;
    max-height: 520px;
  }

  #headerHome {
    /* border-radius: 25px; */
    margin-top: 5.6em;
    /* margin-bottom: 3em; */
    /* background-color: red; */
  }

  #headerHome img {
    margin-right: 0px;
    width: 140px;
  }

  #headerHome h1 {
    /* color: blue; */
    font-size: 38em;
    bottom: -300px;
    left: 0px;
    /* //safari fix padding h1 */
    padding: 0px 36px;
  }

  .titleHeadCta {
    position: absolute;
    bottom: 260px;
    right: 30px;
  }

  #work ul.showcaseToggle {
    color: #b8b8b8;
    font-size: 20px;
    text-align: center;
    margin-top: 30px;
  }

  #work ul.showcaseToggle li {
    font-size: 15px !important;
    cursor: pointer;
    display: inline;
    margin: 5px -2px;
    width: none;
    float: none;
    padding: 6px 25px;
    border-radius: 0px;
    color: var(--primary-text-color);
  }

  /* Styles for the first tab item */
  #work ul.showcaseToggle li:first-child {
    border-top-left-radius: 10px;
  }

  /* Styles for the last tab item */
  #work ul.showcaseToggle li:last-child {
    border-top-right-radius: 10px;
  }

  #work ul.showcaseToggle li:hover {
    /* color: #fff; */
  }

  #work ul.showcaseToggle li:active {
    background-color: var(--primary-color);
    opacity: 0.50;
    color: #fff;
  }

  #work .button:active,
  #work .button.is-checked {
    background-color: var(--primary-color);
    color: #fff;
    /* font-weight: 600; */
  }

  #work ul.showcaseToggle li a {
    color: #333333;
    text-decoration: none;
  }

  .twoColTiles {
    flex-direction: row;
  }

  .service-icons {
    width: 100%;
    margin: -1em auto 2em auto;
  }

  .service-box {
    width: 20%;
  }

  .service-icons i {
    font-size: 24px;
    padding: 1.2em 2.4em;
  }

  .service-icons h4 {
    font-size: 14px;
  }

  .service-box-full {
    padding: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  #rocketImg {
    max-height: 180px;
  }

  .service-box-full .cloudLogo {
    width: 100px;
    display: flex;
    margin-right: 30px;
    border-right: 1px solid var(--greyDarker);
  }

  .service-box-full h4 {
    font-size: 16px !important;
  }

  .service-box-full p {
    font-size: 15px !important;
  }

  #topForm input {
    /* Mobile only */
    margin-bottom: 20px !important;
  }

  form #topForm input[type=text] {
    width: 49%;
    font-size: 18px;
    padding: 20px 15px;
  }


  form #topForm input[type=text]:nth-child(2n) {
    border-left: 0px;
    margin-left: 1.9%;
  }

  #topForm select {
    -webkit-appearance: none;
    width: 100%;
    padding: 20px 15px;
    margin-bottom: 20px !important;
    font-size: 18px;
  }

  #topForm select:focus {
    background-color: var(--greyDarker);

    outline: none;
  }

  form #topForm textarea {
    font-size: 18px;
  }

  form .btn-submit {
    width: 150px;
    padding: 10px 6px;
  }
}

/* Standard Desktop */
@media only screen and (min-width: 60em) {
  .delay-1 {
    animation-delay: .10s;
  }

  .delay-2 {
    animation-delay: .20s;
  }

  .delay-3 {
    animation-delay: .30s;
  }

  .delay-4 {
    animation-delay: .40s;
  }

  .delay-5 {
    animation-delay: .50s;
  }

  .delay-6 {
    animation-delay: .60s;
  }

  .delay-7 {
    animation-delay: .70s;
  }

  #big-tiles {
    display: block !important;
  }

  .sub-header {
    margin: 10em auto 4em auto;
  }

  .sub-header h1 {
    font-size: 1.8rem
  }

  .sub-header p {
    font-size: 1rem
  }

  #work #workItems li {
    width: 33.33%;
    float: left;
    margin: 0;
    padding: 0;
  }

  #work #workItems li .innerbox {
    margin: .5rem;
    position: relative;
  }

  #work .overlay p {
    font-size: 13px;
    margin: 0 0 12px 0;
  }

  .service-icons h4 {
    font-size: 16px;
  }
}

/* Google Reviews */
#reviews {
  background: #f7f8fb;
}

.google-reviews {
  display: grid;
  gap: 22px;
}

.reviews-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.reviews-header h2 {
  text-align: left;
}

.btn-google {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 14px;
  padding: 12px 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn-google:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.review-card {
  background: #fff;
  border: 1px solid #e5e8f0;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.review-rating {
  color: #f4b400;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.reviewer {
  font-weight: 600;
  color: #2f2f2f;
  margin-top: 10px;
}

/* Widescreen Desktop */
@media only screen and (min-width: 72.5em) {

  #headerHome {
    border-radius: 25px;
    margin-top: 5.6em;
    margin-bottom: 3em;
  }

  .darker:first-child {
    border-top-left-radius: 2em;
    border-top-right-radius: 2em;
  }

  #headerHome .headBgOverlay {
    max-width: 100em;
  }

  #headerHome h1 {
    /* color: red; */
    font-size: 40em;
    bottom: -300px;
    left: 0px
  }

  .titleHeadCta {
    position: absolute;
    bottom: -50px;
    right: 40px
  }

  #headerHome img {
    width: 160px;
  }

  #work #workItems {
    margin-top: 40px;
  }

  #work #workItems li {
    width: 18%;
    float: left;
    margin: 1%;
    padding: 0;
  }

  #work #workItems li .innerbox {
    margin: .5rem;
    position: relative;
  }

  #work figcaption {
    font-size: 14px;
  }

  #work .overlay h3 {
    font-size: 14px;
    margin-bottom: 5px;
  }

  #work .overlay p {
    font-size: 13px;
    margin: 0 0 12px 0;
  }

  #work .overlay button {
    font-size: 13px;
  }
}
