/** General **/

html {
	overflow-x: hidden;
}

body {
	font-family: "Raleway", sans-serif;
	font-optical-sizing: auto;
	color: #013546;
	overflow-x: hidden;
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1440px;
    }
}

.text-dark {
	color: #013546 !important;
}

p:last-child {
    margin-bottom: 0;
}

.fs-xl {
    font-size: 2.5rem;
}

@media (min-width: 1280px) {
	.fs-xl {
    	font-size: 4.5rem;
	}
}

.gap-6 {
    gap: 6rem;
}

.p-6 {
    padding: 4.5rem;
}

.team-item {
	aspect-ratio: 1/1;
}

/** Sections **/

.section--white {
	background: #fff;
}

.section--light-blue {
	background: #2CACE3;
}

.section--mid-blue {
	background: #27556f;
}

.section--dark-blue {
	background: #013546;
}

.section--grey {
	background: #CDD5D7;
}

.section--highlight-blue {
	background: #2c4c5a;
}

/** Contact Block **/

body .gform_wrapper .gform_fields {
	row-gap: 30px;
	column-gap: 30px;
}

body .gform_wrapper textarea {
	padding: 20px;
	background: #2c4c5a;
	border: 0;
	color: #fff;
	text-transform: uppercase;
}

body .gform_wrapper input[type="text"],
body .gform_wrapper input[type="email"],
body .gform_wrapper input[type="tel"],
body .gform_wrapper select {
	height: 60px;
	padding-left: 20px;
	border: 0;
	background: #2c4c5a;
	text-transform: uppercase;
	color: #fff;
}

/** Footer **/

@media (min-width: 992px) {
	.fullbleed-right {
		width: calc(100vw / 2);
	}
}

.footer__map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  min-height: 520px;
}

.footer-menu {
    list-style: none;
	margin-left: 130px;
}

.footer-menu li a {
    text-decoration: none;
    color: #013546;
}

/** Header **/

.header__menu a {
	color: #fff;
	text-transform: uppercase;
	text-decoration: none;
	letter-spacing: .5px;
}

.accent {
    position: absolute;
    height: 100%;
    width: auto;
    top: 0;
}

.accent--left {
    left: 0;
}

.accent--right {
    right: 0;
    transform: scaleX(-1);
}

.accent svg {
    height: 100%;
    width: auto;
}

.accent--orange svg {
    color: #E3533C;
}

.accent--white svg {
    color: #FFF;
}

.accent--header svg {
    width: 70px;
}

.st0 {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: draw 8s linear infinite alternate;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.st0:nth-of-type(odd) {
  animation-delay: 5s;
}

.st0:nth-of-type(3n) {
  animation-delay: 0s;
}
.header__background svg {
    position: absolute;
    top: 10%;
    transform: rotate(-16deg) scale(2);
    opacity: .5;
    transform-origin: center;
    height: 100%;
}

/** Services **/

.service-item__icon svg {
    max-height: 80px;
    max-width: 65px;
    width: 100%;
}

.service-item__icon--orange svg {
    color: #E3533C;
}

.service-item__icon--white svg {
    color: #fff;
}

/** Post Miniature **/

.post-item__image img {
    width: 100%;
    object-fit: cover;
    height: auto;
    aspect-ratio: 1/1;
}

/** Buttons CTAs **/

.gform_button {
    background: #2d4c5a !important;
    height: 44px !important;
    padding: 0 35px !important;
    text-transform: uppercase !important;
    letter-spacing: .5px !important;
}

.cta {
	height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: .5px;
	padding: 0 35px;
	position: relative;
}

.cta:before,
.cta:after {
    content: "";
    position: absolute;
    height: 44px;
    width: 22px;
    border: 11px solid;
	transition: ease-in-out all .5s;
}

.cta:before {
    border-right: 0;
    left: 0;
}

.cta:after {
    right: 0;
    border-left: 0;
}

.cta--dark {
    color: #013547;
}

.cta--dark:before,
.cta--dark:after {
    border-color: #013547;
}

.cta--white {
    color: #fff;
}

.cta--white:before,
.cta--white:after {
    border-color: #fff;
}

.cta:hover:before {
    left: -5px;
    transition: ease-in-out all .5s;
    opacity: .85;
}

.cta:hover:after {
    right: -5px;
    transition: ease-in-out all .5s;
    opacity: .85;
}

/** Homepage */

/** Homepage - Meet the Team **/

.meet-the-team__image {
    position: absolute;
    top: 0;
    left: 40%;
    height: 100%;
    width: 60%;
    object-fit: cover;
}

/** About Us **/

/** About Us - Grid **/

/* =================================
   ABOUT GRID
================================= */

.about-grid {

    /* column control */
    --cols: 6;

    display: grid;
    grid-template-columns: repeat(var(--cols), 1fr);

    /* keep cells square */
    grid-auto-rows: calc(100vw / var(--cols));

    /* fill gaps around B */
    grid-auto-flow: dense;
}

/* =================================
   PANELS
================================= */

.about-grid__panel {
    width: 100%;
    height: 100%;
    position: relative;
}

/* image panels */

.about-grid__panel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =================================
   CONTENT TILE (B)
================================= */

.about-grid__content {

    grid-column: 2 / span 2;
    grid-row: 2 / span 2;
    display: flex;
    justify-content: center;
    padding: 5rem;
}

/* =================================
   5 COLUMN LAYOUT
================================= */

@media (max-width: 1580px) {

    .about-grid {
        --cols: 5;
    }

    .about-grid__content {
        grid-column: 2 / span 3;
    }

}

/* =================================
   4 COLUMN LAYOUT
================================= */

@media (max-width: 1380px) {

    .about-grid {
        --cols: 4;
    }

    .about-grid__content {
        grid-column: 2 / span 2;
    }

}

/* =================================
   MOBILE LAYOUT
================================= */

@media (max-width: 990px) {

    .about-grid {
        --cols: 2;
        grid-auto-rows: calc(100vw / 2);
    }

    .about-grid__content {
        grid-column: 1 / -1;
        grid-row: auto;
    }

}

.about-grid__panel--Sky { background:#2CACE3; }
.about-grid__panel--Navy  { background:#013546; }
.about-grid__panel--Orange  { background:#E3533C; }
.about-grid__panel--Yellow  { background:#F2B41C; }

.gform-theme--framework .gfield:where(.gfield--type-multiselect,.gfield--input-type-multiselect) .chosen-container-multi:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework .gfield:where(.gfield--type-select,.gfield--input-type-select) .chosen-search input[type=text]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework .gfield:where(.gfield--type-select,.gfield--input-type-select) .chosen-single:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework .gform-theme-field-control:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework input[type]:where(:not(.gform-text-input-reset):not([type=hidden])):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework select:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework select[multiple]:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework textarea:where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework.gform-theme.gform_wrapper .button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework.gform-theme.gform_wrapper .gform-theme-button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework.gform-theme.gform_wrapper :where(:not(.mce-splitbtn))>button:not([id*=mceu_]):not(.mce-open):where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework.gform-theme.gform_wrapper button.button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework.gform-theme.gform_wrapper input:is([type=submit],[type=button],[type=reset]).button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework.gform-theme.gform_wrapper input:is([type=submit],[type=button],[type=reset]):where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus, .gform-theme--framework.gform-theme.gform_wrapper input[type=submit].button.gform_button:where(:not(.gform-theme-no-framework)):where(:not(.gform-theme__disable):not(.gform-theme__disable *):not(.gform-theme__disable-framework):not(.gform-theme__disable-framework *)):focus {
    --gf-local-border-color: #E3533C;
    --gf-local-outline-color: #E3533C;
}

/** Service Sections Miniature **/

.service-section__image {
    position: absolute;
    top: 0;
    left: 50%;
    height: 100%;
    width: 50%;
    object-fit: cover;
}

.service-section--flex-row-reverse .service-section__image {
    left: 0;
}

.service-section:nth-child(4n + 1) {
    background-color: #013546;
}

.service-section:nth-child(4n + 2) {
    background-color: #CDD5D7;
}

.service-section:nth-child(4n + 3) {
    background-color: #FFF;
}

.service-section:nth-child(4n + 4) {
    background-color: #2CACE3;
}

/** Core Values **/

.accreditation-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.accreditation-item img {
    max-width: 100%;
}

.accreditations-swpier .swiper-wrapper,
.core-values-swiper .swiper-wrapper {
    align-items: stretch;
}

.accreditations-swiper .swiper-slide,
.core-values-swiper .swiper-slide {
    height: auto;
    display: flex;
}


.accreditations-swiper .swiper-slide > *,
.core-values-swiper .swiper-slide > * {
    width: 100%;
}

/** Case Studies **/

.featured-case-studies {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/** Testimonials **/

.testimonial-item__accent {
	margin-right: 30px;
}

.testimonial-item__accent .accent {
    position: relative !important;
}

.testimonial-item__accent .accent svg {
    width: 60px;
}

.team-swiper .swiper-wrapper,
.team-reverse-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

/** Mobile Menu **/

.mobile-menu-canvas {
    max-width: 90vw;
}

.list-style-none {
    list-style: none;
}

.mobile-menu-canvas__menu li a {
    text-decoration: none;
	color: #1c3557;
    text-transform: uppercase;
}

.mobile-menu-canvas__menu > li {
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: relative;
}

.mobile-menu-canvas__menu > li:last-child {
    border-bottom: 0;
}

.mobile-menu-canvas__menu > li > a {
    font-weight: 600;
}

.mobile-menu-canvas__menu li .sub-menu {
    list-style: none;
    padding: 15px 0 5px;
}

.mobile-menu-canvas__menu li .sub-menu li {
    padding: 5px 0;
}

.mobile-menu-canvas__menu > li:after {
    content: url(https://designhivedev.co.uk/wcmh/wp-content/uploads/2025/11/arrow-right.svg);
    top: 15px;
    position: absolute;
    right: 0;
}

.mobile-menu-canvas__menu > li.menu-item-has-children:after {
    content: url(https://designhivedev.co.uk/wcmh/wp-content/uploads/2025/11/corner-right-down.svg);
    top: 25px;
}

.swiper .swiper-pagination-progressbar {
	position: relative;
	margin-top: 30px;
	border-radius: 10px;
    overflow: hidden;
}

.swiper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #e3533c;
}

.blog-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.blog-swiper .swiper-slide > * {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/** Single Service **/

/** Single Service - Related Services **/

.related-services__item {
    text-decoration: none;
    color: #fff;
    border-top: 1px solid #ffffff50;
}

.related-services__item:last-child {
    padding-bottom: 0 !important;
}

.related-services__item:first-child {
    border-top: 0;
}

.gform_confirmation_message {
    color: #333;
}

/** Cookies **/

#cn-accept-cookie {
    border-radius: 0 !important;
    padding: 8.5px 30px !important;
    margin-left: 20px !important;
}