@charset "UTF-8";
.btn {
  border-radius: 50px;
  padding: 0.25rem 1rem;
  font-weight: 500;
  font-size: inherit;
}
.btn:focus {
  box-shadow: none;
}

@media screen and (min-width: 992px) {
  .btn-md {
    padding: 0.5rem 2rem;
    font-size: calc(1.255rem + 0.06vw);
  }
}
@media screen and (min-width: 992px) and (min-width: 1200px) {
  .btn-md {
    font-size: 1.3rem;
  }
}

@media screen and (min-width: 992px) {
  .btn-lg {
    padding: 1rem 5rem;
    font-size: calc(1.275rem + 0.3vw);
  }
}
@media screen and (min-width: 992px) and (min-width: 1200px) {
  .btn-lg {
    font-size: 1.5rem;
  }
}

.btn-outline-primary {
  background-color: transparent;
  border: 1px solid #3c98af;
  color: #3c98af;
}
.btn-outline-primary:hover {
  background-color: #3c98af;
  color: #fff;
}

.btn-outline-blue {
  background-color: transparent;
  border: 1px solid #087cff;
  color: #087cff;
}
.btn-outline-blue:hover {
  background-color: #087cff;
  color: #fff;
}

.btn-outline-blue-dark {
  background-color: transparent;
  border: 1px solid #0069ff;
  color: #0069ff;
}
.btn-outline-blue-dark:hover {
  background-color: #0069ff;
  color: #fff;
}

.btn-outline-dark-blue {
  background-color: transparent;
  border: 1px solid #0049b1;
  color: #0049b1;
}
.btn-outline-dark-blue:hover {
  background-color: #0049b1;
  color: #fff;
}

.btn-outline-navy {
  background-color: transparent;
  border: 1px solid #020711;
  color: #020711;
}
.btn-outline-navy:hover {
  background-color: #020711;
  color: #fff;
}

.btn-outline-navy-light {
  background-color: transparent;
  border: 1px solid #09162d;
  color: #09162d;
}
.btn-outline-navy-light:hover {
  background-color: #09162d;
  color: #fff;
}

.btn-outline-black {
  background-color: transparent;
  border: 1px solid #000;
  color: #000;
}
.btn-outline-black:hover {
  background-color: #000;
  color: #fff;
}

.btn-outline-dark-grey {
  background-color: transparent;
  border: 1px solid #ababab;
  color: #ababab;
}
.btn-outline-dark-grey:hover {
  background-color: #ababab;
  color: #fff;
}

.btn-outline-white {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}
.btn-outline-white:hover {
  background-color: #fff;
  color: #fff;
}

.btn-primary {
  background-color: #3c98af;
  border: 1px solid #3c98af;
  color: #fff;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus, .btn-primary:disabled {
  background-color: #2f7789;
  color: #fff;
  border: 1px solid #2f7789;
}
.btn-primary:focus, .btn-primary:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(60, 152, 175, 0.5);
}

.btn-blue {
  background-color: #087cff;
  border: 1px solid #087cff;
  color: #fff;
}
.btn-blue:hover, .btn-blue:active, .btn-blue:focus, .btn-blue:disabled {
  background-color: #0064d4;
  color: #fff;
  border: 1px solid #0064d4;
}
.btn-blue:focus, .btn-blue:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(8, 124, 255, 0.5);
}

.btn-blue-dark {
  background-color: #0069ff;
  border: 1px solid #0069ff;
  color: #fff;
}
.btn-blue-dark:hover, .btn-blue-dark:active, .btn-blue-dark:focus, .btn-blue-dark:disabled {
  background-color: #0054cc;
  color: #fff;
  border: 1px solid #0054cc;
}
.btn-blue-dark:focus, .btn-blue-dark:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(0, 105, 255, 0.5);
}

.btn-dark-blue {
  background-color: #0049b1;
  border: 1px solid #0049b1;
  color: #fff;
}
.btn-dark-blue:hover, .btn-dark-blue:active, .btn-dark-blue:focus, .btn-dark-blue:disabled {
  background-color: #00347e;
  color: #fff;
  border: 1px solid #00347e;
}
.btn-dark-blue:focus, .btn-dark-blue:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(0, 73, 177, 0.5);
}

.btn-navy {
  background-color: #020711;
  border: 1px solid #020711;
  color: #fff;
}
.btn-navy:hover, .btn-navy:active, .btn-navy:focus, .btn-navy:disabled {
  background-color: black;
  color: #fff;
  border: 1px solid black;
}
.btn-navy:focus, .btn-navy:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(2, 7, 17, 0.5);
}

.btn-navy-light {
  background-color: #09162d;
  border: 1px solid #09162d;
  color: #fff;
}
.btn-navy-light:hover, .btn-navy-light:active, .btn-navy-light:focus, .btn-navy-light:disabled {
  background-color: #010103;
  color: #fff;
  border: 1px solid #010103;
}
.btn-navy-light:focus, .btn-navy-light:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(9, 22, 45, 0.5);
}

.btn-black {
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
}
.btn-black:hover, .btn-black:active, .btn-black:focus, .btn-black:disabled {
  background-color: black;
  color: #fff;
  border: 1px solid black;
}
.btn-black:focus, .btn-black:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.5);
}

.btn-dark-grey {
  background-color: #ababab;
  border: 1px solid #ababab;
  color: #fff;
}
.btn-dark-grey:hover, .btn-dark-grey:active, .btn-dark-grey:focus, .btn-dark-grey:disabled {
  background-color: #929292;
  color: #fff;
  border: 1px solid #929292;
}
.btn-dark-grey:focus, .btn-dark-grey:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(171, 171, 171, 0.5);
}

.btn-white {
  background-color: #fff;
  border: 1px solid #fff;
  color: #fff;
}
.btn-white:hover, .btn-white:active, .btn-white:focus, .btn-white:disabled {
  background-color: #e6e6e6;
  color: #fff;
  border: 1px solid #e6e6e6;
}
.btn-white:focus, .btn-white:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.5);
}

.btn {
  min-width: 250px;
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 400px) {
  .btn {
    min-width: 200px;
  }
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.75);
}
.btn-outline-light i {
  font-size: 20px;
  line-height: 1;
}
.btn-outline-light:hover {
  background: #fff;
  color: #020711;
  border: 1px solid #fff;
}

.btn-blue {
  background: linear-gradient(90deg, #087cff 0%, #0069ff 100%);
  color: #fff;
  border: 1px solid #087cff;
}
.btn-blue i {
  font-size: 20px;
  line-height: 1;
}
.btn-blue:hover {
  background: #0049b1;
  color: #fff;
  border: 1px solid #0049b1;
}

.text-primary {
  color: #3c98af !important;
}
.text-primary a {
  color: #3c98af;
  font-weight: 500;
}
.text-primary a:hover {
  color: #2f7789;
}

.text-blue {
  color: #087cff !important;
}
.text-blue a {
  color: #087cff;
  font-weight: 500;
}
.text-blue a:hover {
  color: #0064d4;
}

.text-blue-dark {
  color: #0069ff !important;
}
.text-blue-dark a {
  color: #0069ff;
  font-weight: 500;
}
.text-blue-dark a:hover {
  color: #0054cc;
}

.text-dark-blue {
  color: #0049b1 !important;
}
.text-dark-blue a {
  color: #0049b1;
  font-weight: 500;
}
.text-dark-blue a:hover {
  color: #00347e;
}

.text-navy {
  color: #020711 !important;
}
.text-navy a {
  color: #020711;
  font-weight: 500;
}
.text-navy a:hover {
  color: black;
}

.text-navy-light {
  color: #09162d !important;
}
.text-navy-light a {
  color: #09162d;
  font-weight: 500;
}
.text-navy-light a:hover {
  color: #010103;
}

.text-black {
  color: #000 !important;
}
.text-black a {
  color: #000;
  font-weight: 500;
}
.text-black a:hover {
  color: black;
}

.text-dark-grey {
  color: #ababab !important;
}
.text-dark-grey a {
  color: #ababab;
  font-weight: 500;
}
.text-dark-grey a:hover {
  color: #929292;
}

.text-white {
  color: #fff !important;
}
.text-white a {
  color: #fff;
  font-weight: 500;
}
.text-white a:hover {
  color: #e6e6e6;
}

.bg-primary {
  background-color: #3c98af;
}

.bg-blue {
  background-color: #087cff;
}

.bg-blue-dark {
  background-color: #0069ff;
}

.bg-dark-blue {
  background-color: #0049b1;
}

.bg-navy {
  background-color: #020711;
}

.bg-navy-light {
  background-color: #09162d;
}

.bg-black {
  background-color: #000;
}

.bg-dark-grey {
  background-color: #ababab;
}

.bg-white {
  background-color: #fff;
}

.map {
  min-height: 500px;
  width: 100%;
}

label {
  font-size: 1rem;
  font-weight: 500;
}
label.form-check-label {
  font-weight: 400;
}

.form-control,
.form-check-input[type=checkbox] {
  border-radius: 0;
  border: 1px solid #ababab;
}

.form-check .wpcf7-list-item {
  margin: 0;
  display: inline;
}

span.wpcf7-not-valid-tip {
  font-size: 0.9rem;
}

.wpcf7-list-item {
  width: 100%;
  position: relative;
  display: inline;
  margin: 0 !important;
}
.wpcf7-list-item input[type=checkbox] {
  width: auto;
  opacity: 0.00000001;
  position: absolute;
  left: 0;
  margin-left: 8px;
  margin-top: 14px;
}
.wpcf7-list-item input[type=checkbox]:checked ~ .wpcf7-list-item-label::before {
  color: #fff;
}
.wpcf7-list-item input[type=checkbox]:checked ~ .wpcf7-list-item-label::after {
  transform: rotate(-45deg) scale(1);
}
.wpcf7-list-item input[type=checkbox]:focus + label::before {
  outline: 0;
}
.wpcf7-list-item label {
  position: relative;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding-left: 35px;
  margin-bottom: 1rem;
  font-weight: 400;
  cursor: pointer;
  vertical-align: sub;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 300;
}
.wpcf7-list-item label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  margin: 4px 4px 4px 0;
  width: 22px;
  height: 22px;
  transition: transform 0.28s ease;
  border-radius: 0px;
  border: 1px solid #fff;
  background-color: #fff;
}
.wpcf7-list-item .wpcf7-list-item-label:after {
  content: "";
  display: block;
  width: 10px;
  height: 5px;
  border-bottom: 2px solid #000;
  border-left: 2px solid #000;
  transform: rotate(-45deg) scale(0);
  transition: transform ease 0.25s;
  will-change: transform;
  position: absolute;
  top: 12px;
  left: 6px;
}
.wpcf7-list-item .wpcf7-list-item-label span {
  font-weight: 500;
  font-size: 12px;
  color: #000;
}
.wpcf7-list-item .wpcf7-list-item-label span a {
  color: #000;
  text-decoration: underline;
}
.wpcf7-list-item .wpcf7-list-item-label span a:hover {
  text-decoration: underline;
}

.wpcf7 form.sent .wpcf7-response-output {
  padding: 1rem;
  border: 0;
  text-align: center;
  font-size: 1.4em;
}

header {
  background: #020711;
  padding: 23px 42px;
}
header .container-fluid {
  padding: 0;
}
header .headerInner {
  width: 100%;
}
header .logo img {
  width: 200px;
  max-width: 100%;
  height: auto;
  display: block;
}
header .rightContent {
  gap: 70px;
}
header .mainNav .main-menu {
  display: flex;
  align-items: center;
  gap: 50px;
  list-style: none;
  margin: 0;
  padding: 0;
}
header .mainNav .main-menu li {
  position: relative;
}
header .mainNav .main-menu li a {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
header .mainNav .main-menu li a:hover {
  color: #087cff;
}
header .mainNav .main-menu li a:hover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -27px;
  transform: translateX(-50%);
  width: 36px;
  height: 3px;
  background: #087cff;
}
header .btn {
  min-width: inherit;
  padding: 0 25px;
}
header .burgerMenu {
  display: none;
}
header .burgerMenu button {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1;
  padding: 0;
}

.tm-offcanvas {
  background: #020711;
  color: #fff;
  width: 60%;
}
@media screen and (max-width: 700px) {
  .tm-offcanvas {
    width: 100%;
  }
}
.tm-offcanvas .offcanvas-header {
  padding: 28px 40px 40px 40px;
}
.tm-offcanvas .offcanvas-body {
  padding: 0px 40px 28px 40px;
}
.tm-offcanvas .logo img {
  width: 200px;
  max-width: 100%;
  height: auto;
  display: block;
}
.tm-offcanvas .burgerMenu button {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  padding: 0;
}
.tm-offcanvas .nav {
  display: block !important;
}
.tm-offcanvas .headerCta {
  text-align: center;
  margin-top: 2rem;
}
.tm-offcanvas .offcanvas-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tm-offcanvas .offcanvas-menu li {
  margin-bottom: 30px;
  text-align: center;
}
.tm-offcanvas .offcanvas-menu li a {
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}
.tm-offcanvas .offcanvas-menu li a:hover {
  color: #087cff;
}

@media (max-width: 1399px) {
  header .rightContent {
    gap: 70px;
  }
  header .mainNav .main-menu {
    gap: 45px;
  }
}
@media (max-width: 1199px) {
  header {
    padding: 28px 24px;
  }
  header .mainNav,
header .headerCta {
    display: none;
  }
  header .burgerMenu {
    display: block;
  }
  header .logo img {
    width: 220px;
  }
}
@media (max-width: 575px) {
  header {
    padding: 22px 18px;
  }
  header .logo img {
    width: 170px;
  }
}
footer {
  background: #020711;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 65px 0;
  color: #fff;
}
footer .footerGrid {
  display: grid;
  grid-template-columns: 1.3fr 1.4fr 0.9fr 1fr 1.4fr;
  gap: 10px;
  align-items: stretch;
}
footer .footerLogo,
footer .footerIntro,
footer .footerLinks,
footer .footerCoverage {
  position: relative;
  padding: 10px 30px 0 30px;
  height: 100%;
}
footer .footerLogo:not(:last-child)::after,
footer .footerIntro:not(:last-child)::after,
footer .footerLinks:not(:last-child)::after,
footer .footerCoverage:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -3px;
  height: 100%;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}
footer .footerLogo {
  padding-left: 0;
}
footer .footerLogo img {
  width: 200px;
  max-width: 100%;
  height: auto;
  display: block;
}
footer .copy p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 18px;
}
footer .copy p a {
  color: rgba(255, 255, 255, 0.9);
}
footer .copy p a:hover {
  color: #087cff;
}
footer .footerIntro p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 32px;
}
footer .socialLinks {
  display: flex;
  align-items: center;
  gap: 15px;
}
footer .socialLinks a {
  color: #fff;
  font-size: 28px;
  text-decoration: none;
}
footer .socialLinks a:hover {
  color: #087cff;
}
footer h3 {
  color: #087cff;
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}
footer .footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
footer .footer-menu li {
  margin-bottom: 3px;
}
footer .footer-menu li a {
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  line-height: 20px;
}
footer .footer-menu li a:hover {
  color: #087cff;
}
footer .footerCoverage {
  padding-right: 0;
}
footer .footerCoverage p {
  color: #fff;
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 18px;
}
footer .footerCoverage img {
  width: 100px;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  footer .footerGrid {
    grid-template-columns: repeat(3, 1fr);
  }
  footer .footerLogo,
footer .footerIntro,
footer .footerLinks,
footer .footerCoverage {
    border-right: 0 !important;
    padding: 20px;
  }
}
@media screen and (max-width: 991px) {
  footer {
    text-align: center;
  }
  footer .footerLogo,
footer .footerIntro,
footer .footerLinks,
footer .footerCoverage {
    border-right: none !important;
    padding: 20px;
  }
  footer .footerGrid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  footer .footerLogo img {
    margin: 0 auto;
  }
  footer .socialLinks {
    justify-content: center;
  }
  footer .footerCoverage img {
    margin: 0 auto;
  }
}

@media screen and (max-width: 991px) {
  footer .footerLogo:not(:last-child)::after, footer .footerIntro:not(:last-child)::after, footer .footerLinks:not(:last-child)::after, footer .footerCoverage:not(:last-child)::after {
    display: none;
  }
}
#backToTop {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3192ff, #087cff);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 22px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(8, 124, 255, 0.4);
}
#backToTop:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(8, 124, 255, 0.6);
}
#backToTop.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
@media screen and (max-width: 767px) {
  #backToTop {
    width: 50px;
    height: 50px;
    right: 20px;
    bottom: 20px;
    font-size: 18px;
  }
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: calc(1.305rem + 0.66vw);
  color: #000;
}
@media (min-width: 1200px) {
  body {
    line-height: 1.8rem;
  }
}

p,
a {
  font-family: inherit;
  line-height: inherit;
}

a {
  color: #000;
  text-decoration: none;
  transition: color ease 0.3s;
}
a:hover {
  color: #2f7789;
}

b,
strong {
  font-weight: 500;
}

h1,
.h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: calc(1.425rem + 2.1vw);
  line-height: calc(1.425rem + 2.1vw);
}
@media (min-width: 1200px) {
  h1,
.h1 {
    font-size: 3rem;
  }
}
@media (min-width: 1200px) {
  h1,
.h1 {
    line-height: 3rem;
  }
}

h2,
.h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: calc(1.375rem + 1.5vw);
  line-height: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h2,
.h2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1200px) {
  h2,
.h2 {
    line-height: 2.5rem;
  }
}

h3,
.h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: calc(1.35rem + 1.2vw);
  line-height: calc(1.35rem + 1.2vw);
}
@media (min-width: 1200px) {
  h3,
.h3 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1200px) {
  h3,
.h3 {
    line-height: 2.25rem;
  }
}

h4,
.h4 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: calc(1.325rem + 0.9vw);
  line-height: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h4,
.h4 {
    font-size: 2rem;
  }
}
@media (min-width: 1200px) {
  h4,
.h4 {
    line-height: 2rem;
  }
}

h5,
.h5 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: calc(1.3rem + 0.6vw);
  line-height: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h5,
.h5 {
    font-size: 1.75rem;
  }
}
@media (min-width: 1200px) {
  h5,
.h5 {
    line-height: 1.75rem;
  }
}

h6,
.h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: calc(1.275rem + 0.3vw);
  line-height: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h6,
.h6 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1200px) {
  h6,
.h6 {
    line-height: 1.5rem;
  }
}

#generic-content,
.normalise {
  overflow-x: hidden;
}
#generic-content h1,
#generic-content h2,
#generic-content h3,
#generic-content h4,
#generic-content h5,
#generic-content h6,
.normalise h1,
.normalise h2,
.normalise h3,
.normalise h4,
.normalise h5,
.normalise h6 {
  font-size: calc(1.275rem + 0.3vw);
  line-height: calc(1.275rem + 0.3vw);
  color: #3c98af;
  margin-bottom: 1rem;
  margin-top: 2rem;
  font-weight: 500;
}
@media (min-width: 1200px) {
  #generic-content h1,
#generic-content h2,
#generic-content h3,
#generic-content h4,
#generic-content h5,
#generic-content h6,
.normalise h1,
.normalise h2,
.normalise h3,
.normalise h4,
.normalise h5,
.normalise h6 {
    font-size: 1.5rem;
  }
}
@media (min-width: 1200px) {
  #generic-content h1,
#generic-content h2,
#generic-content h3,
#generic-content h4,
#generic-content h5,
#generic-content h6,
.normalise h1,
.normalise h2,
.normalise h3,
.normalise h4,
.normalise h5,
.normalise h6 {
    line-height: 1.5rem;
  }
}
#generic-content p,
.normalise p {
  text-overflow: ellipsis;
  overflow: hidden;
}
#generic-content table,
.normalise table {
  width: 100%;
}
#generic-content table tbody,
#generic-content table td,
#generic-content table tfoot,
#generic-content table th,
#generic-content table thead,
#generic-content table tr,
.normalise table tbody,
.normalise table td,
.normalise table tfoot,
.normalise table th,
.normalise table thead,
.normalise table tr {
  border: 1px solid #ababab;
  padding: 0.5rem 0.5rem;
}
#generic-content ul li,
.normalise ul li {
  margin-bottom: 0.5rem;
}
#generic-content blockquote,
.normalise blockquote {
  background: #ababab;
  padding: 1rem 2rem;
  font-style: italic;
  border-left: 3px solid #3c98af;
  font-size: 1rem;
  line-height: 1rem;
}
#generic-content *:last-child,
.normalise *:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  #generic-content iframe,
.normalise iframe {
    width: calc(100vw - 60px);
  }
}

.font-weight-thin {
  font-weight: 100 !important;
}

.font-weight-extra-light {
  font-weight: 200 !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-regular {
  font-weight: 400 !important;
}

.font-weight-medium {
  font-weight: 500 !important;
}

.font-weight-semi-bold {
  font-weight: 600 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-extra-bold {
  font-weight: 800 !important;
}

.font-weight-black {
  font-weight: 900 !important;
}

section {
  position: relative;
  overflow: hidden;
}
section#hero {
  position: relative;
  background: #020711;
  overflow: hidden;
}
section#hero .heroInner {
  position: relative;
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  padding: 30px 8vw 120px;
}
section#hero .heroContent {
  position: relative;
  z-index: 3;
  width: 48%;
  max-width: 760px;
}
section#hero .heroImage {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
}
section#hero .heroImage img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
  display: block;
}
section#hero .heroImage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, #020711 0%, rgba(2, 7, 17, 0.75) 8%, rgba(2, 7, 17, 0.2) 24%, rgba(2, 7, 17, 0) 45%);
  pointer-events: none;
}
section#hero .heroImage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(90deg, #020711 0%, rgba(2, 7, 17, 0.85) 12%, rgba(2, 7, 17, 0.3) 34%, rgba(2, 7, 17, 0.05) 100%);
  pointer-events: none;
}
section#hero .heroImage .heroCorners {
  position: absolute;
  inset: 32px 50px 150px 50px;
  z-index: 10;
  pointer-events: none;
}
section#hero .heroImage .corner {
  position: absolute;
  width: 40px;
  height: 40px;
}
section#hero .heroImage .corner::before, section#hero .heroImage .corner::after {
  content: "";
  position: absolute;
  background: #087cff;
  box-shadow: 0 0 10px rgba(8, 124, 255, 0.8);
}
section#hero .heroImage .corner::before {
  width: 35px;
  height: 3px;
}
section#hero .heroImage .corner::after {
  width: 3px;
  height: 35px;
}
section#hero .heroImage .cornerTopLeft {
  top: 0;
  left: 0;
}
section#hero .heroImage .cornerTopLeft::before, section#hero .heroImage .cornerTopLeft::after {
  top: 0;
  left: 0;
}
section#hero .heroImage .cornerTopRight {
  top: 0;
  right: 0;
}
section#hero .heroImage .cornerTopRight::before {
  top: 0;
  right: 0;
}
section#hero .heroImage .cornerTopRight::after {
  top: 0;
  right: 0;
}
section#hero .heroImage .cornerBottomLeft {
  bottom: 0;
  left: 0;
}
section#hero .heroImage .cornerBottomLeft::before {
  bottom: 0;
  left: 0;
}
section#hero .heroImage .cornerBottomLeft::after {
  bottom: 0;
  left: 0;
}
section#hero .heroImage .cornerBottomRight {
  bottom: 0;
  right: 0;
}
section#hero .heroImage .cornerBottomRight::before {
  bottom: 0;
  right: 0;
}
section#hero .heroImage .cornerBottomRight::after {
  bottom: 0;
  right: 0;
}
section#hero h1 {
  color: #fff;
  font-size: clamp(54px, 6vw, 122px);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
section#hero h1 span {
  display: block;
  color: #087cff;
}
section#hero .heroText {
  position: relative;
  max-width: 620px;
  padding-left: 34px;
  margin-bottom: 45px;
}
section#hero .heroText::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: calc(100% - 12px);
  background: #087cff;
}
section#hero .heroText p {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(20px, 1.7vw, 30px);
  font-weight: 400;
  line-height: 1.45;
  margin-bottom: 0;
}
section#hero .heroButtons {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
section#hero .scrollDown {
  position: absolute;
  left: 50%;
  bottom: 65px;
  transform: translateX(-50%);
  z-index: 4;
}
section#hero .scrollDown a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #087cff;
  font-size: 28px;
  line-height: 0.7;
  text-decoration: none;
}
section#hero .scrollDown a i {
  line-height: 16px;
}
@media screen and (max-width: 1199px) {
  section#hero .heroInner {
    min-height: 760px;
    padding: 80px 6vw 110px;
  }
  section#hero .heroContent {
    width: 58%;
  }
  section#hero .heroImage {
    width: 58%;
  }
  section#hero .heroButtons .btn {
    min-width: 230px;
  }
}
@media screen and (max-width: 991px) {
  section#hero .heroInner {
    min-height: auto;
    display: block;
    padding: 70px 24px 0;
  }
  section#hero .heroContent {
    width: 100%;
    max-width: 100%;
    padding-bottom: 50px;
  }
  section#hero .heroImage {
    position: relative;
    width: calc(100% + 48px);
    height: 520px;
    margin-left: -24px;
    margin-right: -24px;
  }
  section#hero .heroImage::before {
    background: linear-gradient(180deg, #020711 0%, rgba(2, 7, 17, 0.35) 32%, rgba(2, 7, 17, 0.05) 100%);
  }
}
@media screen and (max-width: 767px) {
  section#hero .heroInner {
    padding: 30px 20px 0;
  }
  section#hero .heroContent {
    padding-bottom: 70px;
  }
  section#hero h1 {
    font-size: 48px;
    margin-bottom: 32px;
  }
  section#hero .heroText {
    padding-left: 24px;
    margin-bottom: 34px;
  }
  section#hero .heroText p {
    font-size: 18px;
  }
  section#hero .heroButtons {
    gap: 16px;
  }
  section#hero .heroButtons .btn {
    width: 100%;
    min-width: 100%;
    min-height: 58px;
    font-size: 16px;
  }
  section#hero .scrollDown {
    bottom: 0;
  }
  section#hero .heroImage {
    position: absolute;
    top: 0;
    right: 0;
    width: 62%;
    height: 100%;
    z-index: 1;
  }
  section#hero .heroImage .heroCorners {
    display: none;
  }
  section#hero .heroImage::after {
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg, #020711 0%, rgba(2, 7, 17, 0.85) 16%, rgba(2, 7, 17, 0.35) 42%, rgba(2, 7, 17, 0.05) 100%);
    filter: none;
  }
  section#hero .heroImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    display: block;
  }
}
@media screen and (max-width: 400px) {
  section#hero h1 {
    font-size: 30px;
    line-height: 35px;
    margin-bottom: 30px;
  }
}
section#services {
  background: #020711;
  padding: 90px 0;
}
section#services .sectionTitle {
  max-width: 780px;
  margin: 0 auto 70px;
}
section#services .sectionTitle .eyebrow {
  color: #087cff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
section#services .sectionTitle h2 {
  color: #fff;
  font-size: clamp(42px, 4vw, 70px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 28px;
}
section#services .sectionTitle h2 span {
  color: #087cff;
}
section#services .sectionTitle p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 22px;
  line-height: 1.45;
  margin-bottom: 0;
}
section#services .serviceCard {
  position: relative;
  height: 100%;
  min-height: 590px;
  overflow: hidden;
  border: 1px solid rgba(8, 124, 255, 0.45);
  border-radius: 10px;
  padding: 35px 0 35px 35px;
}
section#services .serviceContent {
  position: relative;
  z-index: 3;
  max-width: 319px;
}
section#services .serviceIcon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 35px;
}
section#services h3 {
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 22px;
}
section#services .line {
  width: 58px;
  height: 3px;
  background: #087cff;
  margin-bottom: 30px;
}
section#services p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
  line-height: 1.45;
  margin-bottom: 35px;
}
section#services ul {
  list-style: none;
  margin: 0 0 50px;
  padding: 0;
}
section#services ul li {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  font-size: 17px;
  margin-bottom: 15px;
}
section#services ul li i {
  color: #087cff;
  font-size: 22px;
}
section#services .serviceImage {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58%;
  height: 100%;
  z-index: 1;
}
section#services .serviceImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}
section#services .serviceImage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 7, 17, 0.95) 0%, rgba(2, 7, 17, 0.45) 35%, rgba(2, 7, 17, 0) 100%);
}
section#services .clientsWorkedWith {
  padding-top: 80px;
}
section#services .clientsWorkedWith .sectionTitle {
  margin-bottom: 50px;
}
section#services .clientsWorkedWith .sectionTitle .eyebrow {
  margin-bottom: 20px;
}
section#services .clientsWorkedWith .sectionTitle h2 {
  font-size: clamp(36px, 3.5vw, 56px);
  margin-bottom: 0;
}
section#services .clientLogos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
section#services .clientLogo {
  min-height: 145px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
}
section#services .clientLogo img {
  max-width: 100%;
  max-height: 90px;
  object-fit: contain;
  opacity: 0.75;
  transition: 0.3s ease;
}
section#services .clientLogo:hover {
  border-color: rgba(8, 124, 255, 0.7);
}
section#services .clientLogo:hover img {
  filter: none;
  opacity: 1;
}
@media screen and (max-width: 991px) {
  section#services .clientsWorkedWith {
    padding-top: 60px;
  }
  section#services .clientLogos {
    grid-template-columns: repeat(3, 1fr);
  }
  section#services .clientsWorkedWith .sectionTitle h2 {
    font-size: clamp(30px, 3.5vw, 56px);
    margin-bottom: 0;
  }
}
@media screen and (max-width: 575px) {
  section#services .clientLogos {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  section#services .clientLogo {
    min-height: 115px;
    padding: 24px;
  }
  section#services .clientLogo img {
    max-height: 50px;
  }
}
@media screen and (max-width: 991px) {
  section#services {
    padding: 80px 0;
  }
  section#services .serviceCard {
    min-height: auto;
    padding: 40px;
  }
  section#services .serviceContent {
    max-width: 100%;
  }
  section#services .serviceImage {
    position: relative;
    width: calc(100% + 80px);
    height: 360px;
    margin: 40px -40px -40px;
  }
}
@media screen and (max-width: 575px) {
  section#services .sectionTitle {
    margin-bottom: 45px;
  }
  section#services .sectionTitle p {
    font-size: 18px;
  }
  section#services .serviceCard {
    padding: 30px;
  }
  section#services h3 {
    font-size: 30px;
  }
  section#services .serviceImage {
    width: calc(100% + 60px);
    margin: 35px -30px -30px;
  }
}
@media screen and (max-width: 400px) {
  section#services .sectionTitle h2 {
    font-size: clamp(30px, 4vw, 70px);
  }
  section#services .serviceCard {
    padding: 15px;
  }
  section#services .serviceCard h3 {
    font-size: 25px;
  }
}
section#packages {
  background: #020711;
  padding: 0 0 90px 0;
  overflow: hidden;
}
section#packages .sectionTitle {
  max-width: 900px;
  margin: 0 auto 70px;
}
section#packages .sectionTitle .eyebrow {
  color: #087cff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
section#packages .sectionTitle h2 {
  color: #fff;
  font-size: clamp(42px, 4vw, 70px);
  font-weight: 600;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 24px;
}
section#packages .sectionTitle h2 span {
  color: #087cff;
}
section#packages .sectionTitle p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 22px;
  line-height: 1.45;
  margin-bottom: 0;
}
section#packages .packagesGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  align-items: stretch;
}
section#packages .packageCard {
  position: relative;
  height: 100%;
  padding: 50px 29px 40px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(8, 124, 255, 0.08), rgba(2, 7, 17, 0.95));
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.25);
}
section#packages .packageCard.popular {
  border-color: #087cff;
  box-shadow: 0 0 28px rgba(8, 124, 255, 0.65);
  transform: translateY(-18px);
}
section#packages .popularBadge {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #087cff 0%, #0069ff 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 30px;
  padding: 11px 30px;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}
section#packages .packageIcon {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
}
section#packages .packageIcon img {
  max-width: 62px;
  max-height: 62px;
  object-fit: contain;
}
section#packages h3 {
  color: #fff;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 22px;
}
section#packages .titleLine {
  width: 54px;
  height: 4px;
  background: #087cff;
  margin: 0 auto 26px;
}
section#packages .price {
  color: #087cff;
  font-size: 47px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 24px;
}
section#packages .packageIntro {
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.45;
  margin-bottom: 24px;
}
section#packages ul {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
}
section#packages ul li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.45;
  margin-bottom: 10px;
}
section#packages ul li::before {
  content: "•";
  color: #fff;
  margin-right: 8px;
}
section#packages .bestFor {
  margin-bottom: 30px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
}
section#packages .bestFor p {
  color: #fff;
  font-size: 17px;
  line-height: 1.35;
  margin-bottom: 0;
}
section#packages .bestFor p strong {
  color: #087cff;
  font-weight: 800;
}
section#packages .packagesSmallPrint {
  max-width: 850px;
  margin: 40px auto 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
section#packages .addonsBox {
  padding-top: 70px;
}
section#packages .addonsBox .sectionTitle {
  margin-bottom: 45px;
}
section#packages .addonsBox .sectionTitle h2 {
  font-size: clamp(36px, 3.5vw, 56px);
}
section#packages .addonsGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
section#packages .addonItem {
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
}
section#packages .addonItem p {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 0;
}
section#packages .addonItem span {
  color: #087cff;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
}
@media screen and (max-width: 1199px) {
  section#packages .packagesGrid {
    gap: 24px;
  }
  section#packages .packageCard {
    padding: 45px 28px 34px;
  }
  section#packages h3 {
    font-size: 34px;
  }
  section#packages .price {
    font-size: 48px;
  }
  section#packages .addonsGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 991px) {
  section#packages {
    padding: 0 0 80px 0;
  }
  section#packages .packagesGrid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  section#packages .sectionTitle h2 {
    font-size: clamp(30px, 4vw, 70px);
  }
  section#packages .packageCard {
    max-width: 520px;
    margin: 0 auto;
  }
  section#packages .packageCard.popular {
    transform: none;
  }
  section#packages .addonsGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 575px) {
  section#packages .sectionTitle {
    margin-bottom: 50px;
  }
  section#packages .sectionTitle p {
    font-size: 18px;
  }
  section#packages .packageCard {
    padding: 42px 10px 30px;
  }
  section#packages h3 {
    font-size: 32px;
  }
  section#packages .price {
    font-size: 44px;
  }
  section#packages .addonsGrid {
    grid-template-columns: 1fr;
  }
  section#packages .addonItem {
    flex-direction: column;
    text-align: center;
  }
}
@media screen and (max-width: 400px) {
  section#packages .price {
    font-size: 29px;
  }
  section#packages .packagesGrid {
    max-width: 95%;
    margin: 0 auto;
    display: block;
  }
  section#packages .packagesGrid .packageCard {
    margin-bottom: 4rem;
  }
}
section#process {
  background: #020711;
  padding: 0 0 90px 0;
}
section#process .sectionTitle {
  margin: 0 auto 80px;
}
section#process .sectionTitle .eyebrow {
  color: #087cff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
section#process .sectionTitle h2 {
  color: #fff;
  font-size: clamp(42px, 4vw, 70px);
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 24px;
}
section#process .sectionTitle h2 span {
  color: #087cff;
}
section#process .sectionTitle .titleLine {
  width: 80px;
  height: 3px;
  background: #087cff;
  margin: 0 auto 28px;
}
section#process .sectionTitle p {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-size: 22px;
  line-height: 1.45;
}
section#process .processSteps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 80px;
}
section#process .processSteps::before {
  content: "";
  position: absolute;
  top: 75px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #087cff;
  z-index: 1;
}
section#process .processStep {
  position: relative;
  text-align: center;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
}
section#process .processStep:not(:last-child) .processContent {
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}
section#process .processStep:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 66px;
  right: -9px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #087cff;
  box-shadow: 0 0 12px rgba(8, 124, 255, 0.7);
  z-index: 4;
}
section#process .processIcon {
  position: relative;
  z-index: 2;
  width: 150px;
  height: 150px;
  margin: 0 auto 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: #020711;
  box-shadow: 0 0 25px rgba(8, 124, 255, 0.18);
}
section#process .processIcon img {
  max-width: 100px;
  max-height: 100px;
}
section#process .processContent {
  flex: 1;
  padding: 0 35px;
}
section#process .processContent .number {
  color: #087cff;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 18px;
}
section#process .processContent h3 {
  color: #fff;
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 18px;
}
section#process .processContent .stepLine {
  width: 44px;
  height: 3px;
  background: #087cff;
  margin: 0 auto 22px;
}
section#process .processContent p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 0;
}
section#process .processCta {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  padding: 45px 35px;
  background: #020711;
}
section#process .processCta::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 36%;
  height: 100%;
  background-image: url("/wp-content/uploads/2026/06/tm-media-uk-home-img-4.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
section#process .processCta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #020711 0%, rgba(2, 7, 17, 0.98) 58%, rgba(2, 7, 17, 0.6) 78%, rgba(2, 7, 17, 0.15) 100%);
  z-index: 2;
  pointer-events: none;
}
section#process .processCta .row {
  position: relative;
  z-index: 3;
}
section#process .processCta .ctaIcon {
  width: 95px;
  height: 95px;
  object-fit: contain;
}
section#process .processCta h3 {
  color: #fff;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.35;
  text-transform: uppercase;
  margin-bottom: 0;
}
section#process .processCta h3 span {
  display: block;
  color: #087cff;
}
section#process .processCta p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.45;
  margin-bottom: 0;
}
@media screen and (max-width: 1199px) {
  section#process .processContent {
    padding: 0 20px;
  }
  section#process .processContent p {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  section#process {
    padding: 0 0 80px 0;
  }
  section#process .processCta::before {
    width: 100%;
  }
  section#process .processCta::after {
    background: linear-gradient(90deg, #020711 0%, rgba(2, 7, 17, 0.98) 0%, rgba(2, 7, 17, 0.6) 78%, rgba(2, 7, 17, 0.15) 100%);
  }
  section#process .processSteps {
    display: block;
  }
  section#process .processSteps::before, section#process .processSteps::after {
    display: none;
  }
  section#process .processStep {
    margin-bottom: 55px;
  }
  section#process .processStep:not(:last-child) .processContent {
    border-right: 0;
  }
  section#process .processStep:not(:last-child)::after {
    display: none;
  }
  section#process .processCta {
    padding: 35px;
    text-align: center;
  }
  section#process .processCta .ctaIcon,
section#process .processCta h3,
section#process .processCta p {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 575px) {
  section#process .sectionTitle {
    margin-bottom: 55px;
  }
  section#process .sectionTitle p {
    font-size: 18px;
  }
  section#process .processIcon {
    width: 120px;
    height: 120px;
  }
  section#process .processIcon img {
    max-width: 56px;
    max-height: 56px;
  }
  section#process .processCta {
    padding: 30px 24px;
  }
}
section#brand {
  position: relative;
  overflow: hidden;
  background: #020711;
}
section#brand .brandCtaInner {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #020711 0%, rgba(2, 7, 17, 0.98) 34%, rgba(2, 7, 17, 0.55) 56%, rgba(2, 7, 17, 0.15) 100%);
}
section#brand .brandContent {
  position: relative;
  z-index: 3;
  width: 45%;
  max-width: 720px;
  margin-left: 4vw;
  padding: 50px 50px;
}
section#brand h2 {
  color: #fff;
  font-size: clamp(42px, 4.5vw, 70px);
  font-weight: 600;
  line-height: 1.08;
  text-transform: uppercase;
  margin-bottom: 32px;
}
section#brand h2 span {
  display: block;
  color: #087cff;
}
section#brand p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 28px;
  line-height: 1.45;
  margin-bottom: 48px;
}
section#brand .brandButtons {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
section#brand .brandImage {
  position: absolute;
  inset: 0 0 0 auto;
  width: 62%;
  height: 100%;
  z-index: 1;
}
section#brand .brandImage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, #020711 0%, rgba(2, 7, 17, 0.78) 18%, rgba(2, 7, 17, 0.22) 42%, rgba(2, 7, 17, 0) 100%);
}
section#brand .brandImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}
section#brand .corner {
  position: absolute;
  width: 42px;
  height: 42px;
}
section#brand .corner::before, section#brand .corner::after {
  content: "";
  position: absolute;
  background: #087cff;
  box-shadow: 0 0 10px rgba(8, 124, 255, 0.75);
}
section#brand .corner::before {
  width: 42px;
  height: 4px;
}
section#brand .corner::after {
  width: 4px;
  height: 42px;
}
section#brand .corner.topLeft {
  top: 0;
  left: 0;
}
section#brand .corner.topLeft::before, section#brand .corner.topLeft::after {
  top: 0;
  left: 0;
}
section#brand .corner.topRight {
  top: 0;
  right: 0;
}
section#brand .corner.topRight::before {
  top: 0;
  right: 0;
}
section#brand .corner.topRight::after {
  top: 0;
  right: 0;
}
section#brand .corner.bottomLeft {
  bottom: 0;
  left: 0;
}
section#brand .corner.bottomLeft::before {
  bottom: 0;
  left: 0;
}
section#brand .corner.bottomLeft::after {
  bottom: 0;
  left: 0;
}
section#brand .corner.bottomRight {
  bottom: 0;
  right: 0;
}
section#brand .corner.bottomRight::before {
  bottom: 0;
  right: 0;
}
section#brand .corner.bottomRight::after {
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 991px) {
  section#brand .brandCtaInner {
    min-height: auto;
    display: block;
  }
  section#brand .brandContent {
    width: auto;
    margin: 0 24px;
    padding: 70px 36px;
    max-width: 90%;
    margin: 0 auto;
    margin-bottom: 3rem;
  }
  section#brand .brandContent p {
    max-width: 100%;
  }
  section#brand .brandImage {
    position: relative;
    width: 100%;
    height: 420px;
  }
}
@media screen and (max-width: 575px) {
  section#brand .brandContent {
    margin: 0 18px;
    padding: 55px 24px;
  }
  section#brand p {
    font-size: 20px;
  }
  section#brand .brandButtons .btn {
    width: 100%;
    min-width: 100%;
  }
  section#brand .brandImage {
    height: 320px;
  }
}
section#work {
  background: #020711;
  padding: 90px 0;
}
section#work .sectionTitle {
  max-width: 850px;
  margin: 0 auto 70px;
}
section#work .sectionTitle .eyebrow {
  color: #087cff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
section#work .sectionTitle h2 {
  color: #fff;
  font-size: clamp(42px, 4vw, 70px);
  font-weight: 600;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 24px;
}
section#work .sectionTitle h2 span {
  color: #087cff;
}
section#work .sectionTitle p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 22px;
  line-height: 1.45;
  margin-bottom: 0;
}
section#work .workGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
section#work .workCard {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(8, 124, 255, 0.35);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}
section#work .workCard img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}
section#work .workCard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 7, 17, 0.05) 0%, rgba(2, 7, 17, 0.45) 45%, rgba(2, 7, 17, 0.95) 100%);
  z-index: 1;
}
section#work .workCard:hover img {
  transform: scale(1.06);
}
section#work .workOverlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 35px;
}
section#work .workOverlay .category {
  color: #087cff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
section#work .workOverlay h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.15;
  text-transform: uppercase;
  margin-bottom: 8px;
}
section#work .workOverlay p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 0px;
}
section#work .workOverlay a {
  color: #087cff;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
}
section#work .workOverlay a:hover {
  color: #fff;
}
@media screen and (max-width: 991px) {
  section#work {
    padding: 80px 0;
  }
  section#work .workGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 575px) {
  section#work .sectionTitle {
    margin-bottom: 50px;
  }
  section#work .sectionTitle p {
    font-size: 18px;
  }
  section#work .workGrid {
    grid-template-columns: 1fr;
  }
  section#work .workCard,
section#work .workCard img {
    min-height: 360px;
  }
  section#work .workOverlay {
    padding: 28px;
  }
}
section#features {
  background: #020711;
  padding: 65px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
section#features .featuresGrid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
section#features .featureItem {
  text-align: center;
  padding: 0 20px;
}
section#features .featureItem:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}
section#features .featureItem img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 28px;
}
section#features .featureItem h3 {
  color: #fff;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 20px;
}
section#features .featureItem p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 0;
}
@media screen and (max-width: 1199px) {
  section#features .featureItem {
    padding: 0 24px;
  }
  section#features .featureItem h3 {
    font-size: 21px;
  }
  section#features .featureItem p {
    font-size: 17px;
  }
}
@media screen and (max-width: 991px) {
  section#features .featuresGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 0;
  }
  section#features .featureItem:not(:last-child) {
    border-right: 0;
  }
  section#features .featureItem:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.22);
  }
}
@media screen and (max-width: 575px) {
  section#features {
    padding: 55px 0;
  }
  section#features .featuresGrid {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  section#features .featureItem {
    padding: 0 24px;
    border-right: 0 !important;
  }
  section#features .featureItem img {
    width: 72px;
    height: 72px;
  }
}
section#contact {
  background: #020711;
  padding: 50px 0 30px 0;
}
section#contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 95px;
  width: 46%;
  height: 100%;
  background-image: url("/wp-content/uploads/2026/06/tm-media-uk-img-contact.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}
section#contact::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, #020711 0%, rgba(2, 7, 17, 0.85) 10%, rgba(2, 7, 17, 0.25) 25%, rgba(2, 7, 17, 0) 45%), linear-gradient(90deg, rgba(2, 7, 17, 0.05) 0%, rgba(2, 7, 17, 0.35) 30%, rgba(2, 7, 17, 0.85) 50%, #020711 65%);
}
section#contact .container {
  position: relative;
  z-index: 3;
}
section#contact .contactContent {
  position: relative;
  padding: 35px 0 10px 40px;
}
section#contact .contactContent .topLeft {
  top: 0px !important;
  left: 0px !important;
}
section#contact .contactContent .topLeft::before, section#contact .contactContent .topLeft::after {
  top: 0;
  left: 0;
}
section#contact .eyebrow {
  color: #087cff;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 18px;
}
section#contact h2 {
  color: #fff;
  font-size: clamp(42px, 3.1vw, 66px);
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 28px;
}
section#contact h2 span {
  color: #087cff;
}
section#contact .titleLine {
  width: 82px;
  height: 3px;
  background: #087cff;
  margin-bottom: 28px;
}
section#contact .intro {
  max-width: 516px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 15px;
}
section#contact .contactDetails {
  max-width: 520px;
}
section#contact .contactDetail {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
section#contact .contactDetail:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
section#contact .contactDetail .icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
}
section#contact .contactDetail .icon img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}
section#contact .contactDetail h3 {
  color: #087cff;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 2px;
  line-height: 23px;
}
section#contact .contactDetail p {
  color: #fff;
  font-size: 17px;
  line-height: 1.35;
  margin-bottom: 0;
}
section#contact .contactDetail small {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.3;
}
section#contact .contactFormWrap {
  position: relative;
  padding: 58px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  background: rgba(2, 7, 17, 0.68);
  backdrop-filter: blur(4px);
}
section#contact .formTitle {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 40px;
}
section#contact .formTitle i {
  width: 62px;
  height: 62px;
  min-width: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #087cff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 25px;
  padding-top: 3px;
}
section#contact .formTitle h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 6px;
}
section#contact .formTitle p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
  margin-bottom: 0;
}
section#contact form p {
  margin: 0;
}
section#contact input,
section#contact textarea,
section#contact select {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 5px;
  color: #fff;
  font-size: 15px;
  padding: 16px 20px;
  margin-bottom: 15px;
}
section#contact input::placeholder,
section#contact textarea::placeholder,
section#contact select::placeholder {
  color: rgba(255, 255, 255, 0.82);
}
section#contact input:focus,
section#contact textarea:focus,
section#contact select:focus {
  outline: none;
}
section#contact select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
section#contact textarea {
  min-height: 100px;
  resize: vertical;
  height: 140px;
}
section#contact input[type=submit],
section#contact button[type=submit] {
  width: 100%;
  min-height: 64px;
  background: linear-gradient(90deg, #087cff 0%, #0069ff 100%);
  color: #fff;
  border: 0;
  border-radius: 6px;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
}
section#contact .wpcf7-spinner {
  position: absolute;
  display: block;
}
section#contact .corner {
  position: absolute;
  width: 32px;
  height: 32px;
}
section#contact .corner::before, section#contact .corner::after {
  content: "";
  position: absolute;
  background: #087cff;
  box-shadow: 0 0 10px rgba(8, 124, 255, 0.75);
}
section#contact .corner::before {
  width: 32px;
  height: 3px;
}
section#contact .corner::after {
  width: 3px;
  height: 32px;
}
section#contact .corner.topLeft {
  top: 30px;
  left: 30px;
}
section#contact .corner.topLeft::before, section#contact .corner.topLeft::after {
  top: 0;
  left: 0;
}
section#contact .corner.topRight {
  top: 30px;
  right: 30px;
}
section#contact .corner.topRight::before {
  top: 0;
  right: 0;
}
section#contact .corner.topRight::after {
  top: 0;
  right: 0;
}
section#contact .corner.bottomLeft {
  bottom: 30px;
  left: 30px;
}
section#contact .corner.bottomLeft::before {
  bottom: 0;
  left: 0;
}
section#contact .corner.bottomLeft::after {
  bottom: 0;
  left: 0;
}
section#contact .corner.bottomRight {
  bottom: 30px;
  right: 30px;
}
section#contact .corner.bottomRight::before {
  bottom: 0;
  right: 0;
}
section#contact .corner.bottomRight::after {
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 991px) {
  section#contact {
    padding: 0 0 75px 0;
  }
  section#contact .contactContent {
    padding: 0;
  }
  section#contact .contactFormWrap {
    padding: 40px 28px;
  }
  section#contact .contactDetails, section#contact .intro {
    max-width: none;
  }
  section#contact::before {
    background-image: none;
    display: none;
  }
  section#contact .contactContent .topLeft {
    display: none;
  }
  section#contact .corner {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  section#contact .contactDetail {
    align-items: flex-start;
  }
  section#contact .contactDetail p {
    font-size: 18px;
  }
  section#contact .formTitle {
    display: block;
  }
  section#contact .formTitle h3 {
    font-size: 23px;
    margin-top: 2rem;
  }
  section#contact h2 {
    font-size: clamp(33px, 3.1vw, 66px);
  }
}
@media screen and (max-width: 360px) {
  section#contact .contactDetail {
    gap: 12px;
  }
  section#contact .contactDetail p {
    font-size: 15px;
  }
}
section#terms {
  background: #020711;
  padding: 50px 0;
}
section#terms .container {
  width: 60%;
}
@media screen and (max-width: 991px) {
  section#terms .container {
    width: 100%;
  }
}
section#terms h3, section#terms h1 {
  color: #fff;
}
section#terms p, section#terms a, section#terms ul li {
  color: rgba(255, 255, 255, 0.86);
}
section#terms h3 {
  margin-bottom: 0.5rem;
  margin-top: 3rem;
}
section#terms strong {
  font-weight: 700;
}
section#terms ul {
  margin: 0;
  padding: 0;
  padding-left: 15px;
  margin-bottom: 1rem;
}
section#terms ul li {
  list-style-position: outside;
  margin-bottom: 0.3rem;
}

.grecaptcha-badge {
  visibility: hidden !important;
  opacity: 0 !important;
}

body.page-id-2 .grecaptcha-badge.show-recaptcha {
  visibility: visible !important;
  opacity: 1 !important;
  bottom: 150px !important;
  z-index: 9;
}

body.error404 {
  min-height: 800px;
  height: 100vh;
  background: url("/wp-content/html5blank-stable/img/404-bg.jpeg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
}
@media screen and (min-width: 992px) {
  body.error404 {
    background-position-x: right;
  }
}
body.error404 .error-404 {
  padding: 6rem 0;
}
body.error404 .error-404 h1 {
  font-size: calc(1.825rem + 6.9vw);
  line-height: calc(1.825rem + 6.9vw);
  font-weight: 900;
}
@media (min-width: 1200px) {
  body.error404 .error-404 h1 {
    font-size: 7rem;
  }
}
@media (min-width: 1200px) {
  body.error404 .error-404 h1 {
    line-height: 7rem;
  }
}

body {
  position: relative;
}
body.modal-open {
  overflow: hidden;
  padding-right: 0px;
}

@media (min-width: 1500px) {
  .container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
    max-width: 1450px;
  }
}
@media (min-width: 1800px) {
  .container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
    max-width: 1700px;
  }
}

ul {
  list-style-position: inside;
  padding-left: 0rem;
}

.noselect {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.img-fluid {
  image-rendering: -moz-crisp-edges;
  /* Firefox */
  image-rendering: -o-crisp-edges;
  /* Opera */
  image-rendering: -webkit-optimize-contrast;
  /* Webkit (non-standard naming) */
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  /* IE (non-standard property) */
}

.spill-container-left {
  margin-left: calc(-1 * (100vw - 100%) / 2);
}

.spill-container-right {
  margin-right: calc(-1 * (100vw - 100%) / 2);
}

@media screen and (min-width: 576px) {
  .spill-container-sm-left {
    margin-left: calc(-1 * (100vw - 100%) / 2);
  }

  .spill-container-sm-right {
    margin-right: calc(-1 * (100vw - 100%) / 2);
  }
}
@media screen and (min-width: 768px) {
  .spill-container-md-left {
    margin-left: calc(-1 * (100vw - 100%) / 2);
  }

  .spill-container-md-right {
    margin-right: calc(-1 * (100vw - 100%) / 2);
  }
}
@media screen and (min-width: 992px) {
  .spill-container-lg-left {
    margin-left: calc(-1 * (100vw - 100%) / 2);
  }

  .spill-container-lg-right {
    margin-right: calc(-1 * (100vw - 100%) / 2);
  }
}
@media screen and (min-width: 1200px) {
  .spill-container-xl-left {
    margin-left: calc(-1 * (100vw - 100%) / 2);
  }

  .spill-container-xl-right {
    margin-right: calc(-1 * (100vw - 100%) / 2);
  }
}
@media screen and (min-width: 1400px) {
  .spill-container-xxl-left {
    margin-left: calc(-1 * (100vw - 100%) / 2);
  }

  .spill-container-xxl-right {
    margin-right: calc(-1 * (100vw - 100%) / 2);
  }
}
@media screen and (min-width: 1800px) {
  .spill-container-xxxl-left {
    margin-left: calc(-1 * (100vw - 100%) / 2);
  }

  .spill-container-xxxl-right {
    margin-right: calc(-1 * (100vw - 100%) / 2);
  }
}
.img-fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #3c98af !important;
}

.owl-theme .owl-dots .owl-dot span {
  background: transparent !important;
  border: 1px solid #fff !important;
}

.owl-carousel .owl-dots {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 992px) {
  .owl-carousel .owl-dots span {
    width: 15px;
    height: 15px;
    margin-left: 10px;
    margin-right: 10px;
    border: 2px solid #fff !important;
  }
}

/*# sourceMappingURL=style.css.map */
