/* 

Breakpoints

// Very Small device

@media (max-width: 340px) { 

}

// Small devices (landscape phones, 576px and up)
@media (min-width: 576px) { 
    
}

// Medium devices (tablets, 768px and up)
@media (min-width: 768px) { 
    
}

// Large devices (desktops, 992px and up)
@media (min-width: 992px) { 
    
}

// X-Large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { 
    
}

// XX-Large devices (larger desktops, 1400px and up)
@media (min-width: 1400px) { 
    
}

=== */

:root {
    
    /* COLOURS */
    --DD-Dark-Grey: #545454;
    --DD-Light-Grey: #dcdcdc;
    --DD-Light-Green: #24D3C2;
    --DD-Lighter-Green: #19F7E2;
    --DD-Dark-Green: #0B9386;
    --DD-Darker-Grey: #37332F;
    --DD-V-Light-Green: #F5FCFB;
    --DD-V-Dark-Green:#073e39;
    --DD-Pink: #F7717D;
    --DD-Light-Pink: #ffa9b1;
    --DD-Dark-Pink: #E9616D;
    --DD-Darker-Pink: #75232a;

    /* TEXT SIZES */
    --DD-h1-SM: 26px;
    --DD-h1-MD: 28px;
    --DD-h1-LG: 28px;
    --DD-h1-VLG: 38px;
    --DD-h2-SM: 20px;
    --DD-h2-MD: 22px;
    --DD-h2-LG: 26px;
    --DD-h2-VLG: 30px;
    --DD-h3-SM: 18px;
    --DD-h3-MD: 20px;
    --DD-h3-LG: 24px;
    --DD-h3-VLG: 28px;
    --DD-h4-SM: 16px;
    --DD-h4-MD: 18px;
    --DD-h4-LG: 22px;
    --DD-h4-VLG: 26px;
    --DD-h5-SM: 14px;
    --DD-h5-MD: 16px;
    --DD-h5-LG: 20px;
    --DD-h5-VLG: 24px;
    --DD-h6-SM: 12px;
    --DD-h6-MD: 14px;
    --DD-h6-LG: 18px;
    --DD-h6-VLG: 22px;
    --DD-p-SM: 16px;
    --DD-p-MD: 17px;
    --DD-p-LG: 18px;
    --DD-p-VLG: 20px;
    
    --DD-footer-p-SM: 12px;
    --DD-footer-p-MD: 14px;
    --DD-footer-p-LG: 16px;
    --DD-footer-p-VLG: 18px;

    /* BUTTON PADDING */
    --DD-Button-Pad-SM: 6px 8px;
    --DD-Button-Pad-MD: 8px 10px;
    --DD-Button-Pad-LG: 10px 12px;

    /* ROUNDED CORNERS */
    --DD-Rounded-Corner-SM : 5px;
    --DD-Rounded-Corner-MD : 8px;
    --DD-Rounded-Corner-LG : 10px;

    /* SECTION INTERIOR PADDING */
    --DD-Internal-Padding-SM : 20px;
    --DD-Internal-Padding-MD : 36px;
    --DD-Internal-Padding-LG : 46px;

    /* FOOTER INTERIOR PADDING */
    --DD-Footer-Padding-SM : 20px;
    --DD-Footer-Padding-MD: 26px;
    --DD-Footer-Padding-LG : 80px;

    /* SECTION MARGINS */
    --DD-Internal-Margin-SM : 0 0 20px 0;
    --DD-Internal-Margin-MD : 0 0 24px 0;
    --DD-Internal-Margin-LG : 0 0 28px 0;
}

html {
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
}

body {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

body:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    -webkit-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
    -ms-backdrop-filter: blur(5px);
    -o-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    -webkit-transition: all 0.2s cubic-bezier(0.46, 0.15, 0.28, 0.87);
    -moz-transition: all 0.2s cubic-bezier(0.46, 0.15, 0.28, 0.87);
    -ms-transition: all 0.2s cubic-bezier(0.46, 0.15, 0.28, 0.87);
    -o-transition: all 0.2s cubic-bezier(0.46, 0.15, 0.28, 0.87);
    transition: all 0.2s cubic-bezier(0.46, 0.15, 0.28, 0.87);
}

body.offcanvas-menu:before {
    opacity: 1;
    z-index: 1002;
    visibility: visible;
}


/* TYPOGRAPHY */


h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: "Outfit", sans-serif;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke-width: 0.2px;
    -moz-osx-font-smoothing: grayscale;
    color: var(--DD-Light-Green);
    font-weight:400;
}

a {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    font-size: var(--DD-p-SM);
    color: var(--DD-Dark-Pink);
}

.site-navigation a,
.site-navigation a:hover,
.footerContainer a
 {
    text-decoration: none !important;
}

p,
.nestedList {
    color: #4e4e4e;
    font-weight: 300;
}

p,
.nestedList,
.articleContent ul li,
.articleContent ol li  {
    font-size: var(--DD-p-SM);
}

label {
    font-size: var(--DD-p-SM);
    color: #919191;
}

input,
textarea,
button,
select{

    margin-bottom:15px;
    
}

@media (min-width: 768px) {

    p,
    a,
    .nestedList,
    .articleContent ul li,
    .articleContent ol li  { font-size:var(--DD-p-MD); }
    label { font-size:var(--DD-p-MD); }
    
}

@media (min-width: 1200px) {

    p,
    a,
    .nestedList,
    .articleContent ul li,
    .articleContent ol li  { font-size:var(--DD-p-LG); }
    label { font-size:var(--DD-p-LG); }

}

h1 {
    color: var(--DD-Light-Green); text-align:centerl
}

h1 { font-size: var(--DD-h1-SM); }
.pageService h1 { font-size: var(--DD-h1-MD); }
h2 { font-size: var(--DD-h2-SM); }
h3 { font-size: var(--DD-h3-SM); }
h4 { font-size: var(--DD-h4-SM); }
h5 { font-size: var(--DD-h5-SM); }
h6 {font-size: var(--DD-h6-SM);}

@media (min-width: 768px) {

    h1 { font-size:var(--DD-h1-MD); }
    .pageService h1 { font-size: var(--DD-h1-VLG); }
    h2 { font-size:var(--DD-h2-MD); }
    h3 { font-size:var(--DD-h3-MD); }
    h4 { font-size:var(--DD-h4-MD); }
    h5 { font-size:var(--DD-h5-MD); }
    h6 { font-size:var(--DD-h6-MD); }

}

@media (min-width: 1200px) {

    h1 { font-size:var(--DD-h1-LG); }
    .pageService h1 { font-size: var(--DD-h1-VLG); }
    h2 { font-size:var(--DD-h2-LG); }
    h3 { font-size:var(--DD-h3-LG); }
    h4 { font-size:var(--DD-h4-LG); }
    h5 { font-size:var(--DD-h5-LG); }
    h6 { font-size:var(--DD-h6-LG); }

}

@media (min-width: 1400px) {

    h1 { font-size:var(--DD-h1-VLG); }
    .pageService h1 { font-size: var(--DD-h1-VLG); }
    h2 { font-size:var(--DD-h2-VLG); }
    h3 { font-size:var(--DD-h3-VLG); }
    h4 { font-size:var(--DD-h4-VLG); }
    h5 { font-size:var(--DD-h5-VLG); }
    h6 { font-size:var(--DD-h6-VLG); }

}

.nestedList li {

    padding:0 0 10px 0;
    
}

.nestedList ul {

    padding-top:10px;
    
}

.nestedList {

    padding-bottom:0;
    margin-bottom:0;
    
}

.accordion-body p:last-child {

    padding:0;
    margin:0;
    
}

.col-VDG {

    color: var(--DD-V-Dark-Green);

}

.hero {
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.site-navbar-wrap {
    width: 100%;
    left: 0;
    height: 60px;
    display:flex;
    align-items: center;
}

@media (min-width: 768px) {
    .site-navbar-wrap {
        height: 60px;
    }
}

@media (min-width: 992px) {
    .site-navbar-wrap {
        height: 100px;
    }
}

.site-menu-toggle {
    text-align: unset !important;
    display: flex;
    width: 30px !important;
    height: 30px !important;
    background: url(./src/burgerMenu.svg) center center no-repeat !important;
    background-size: contain !important;
    border-radius: 0px;
    overflow: hidden;
    text-indent: -2000px !important;
}

.is-sticky .site-menu-toggle {
    /* background: url(./src/burgerMenuWhite.svg) center center no-repeat !important; */
}

.site-navbar-wrap a {
    color: #350303;
}

.is-sticky .icon-menu:before {
    color: #fff;
}

.site-navbar-wrap .site-navbar-top {
    font-size: 0.8rem;
}

.site-navbar-top {
    border-bottom: 1px solid #e5e5e5;
    background: #fff;
    filter: drop-shadow(0px 10px 10px #fff8f8);
}

.site-navbar {
    margin-bottom: 0px;
    width: 100%;
}

.smaller .site-navbar {
    margin-bottom: 0px;
    width: 100%;
}

.site-navbar .site-logo {
    font-weight: 200;
    line-height: 0;
    position: relative;
    padding:0;
    margin:0;
}

.site-navigation {
    text-align: right;
}

.site-navbar .site-logo a {
    width: 150px !important;
    height: 40px !important;
    margin: 0;
    display: flex;
    float: left;
    align-items: center;
    text-indent: -2000px;
    overflow: hidden;
    background: url(./src/Curedd-Logo.svg) left center no-repeat;
    background-size: contain;
}

@media (min-width: 340px) {
    .site-navbar .site-logo a {
        height: 45px !important;
        width: 150px !important;
    }
}
@media (min-width: 768px) {
    .site-navbar .site-logo a {
        height: 60px !important;
        width: 180px !important;
    }
}

.is-sticky .site-navbar .site-logo a {
    /* color: #fff; */
}

@media (min-width: 992px) {
    .site-navbar .site-navigation .site-menu {
        margin-bottom: 0;
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
    }
}

.site-navbar .site-navigation .site-menu a {
    text-decoration: none !important;
    display: inline-block;
    font-weight: 400;
}

.site-navbar .site-navigation .site-menu>li {
    display: inline-block;
    padding: 10px 0px;
}

.site-navbar .site-navigation .site-menu>li>a {
    padding: 10px 8px;
    color: var(--DD-Dark-Grey);
    font-size: 14px;
    text-decoration: none !important;
}

@media (min-width: 1200px) {
    
    .site-navbar .site-navigation .site-menu>li>a {
        padding: 20px 14px;
        font-size: 14px;
    }
    
}

@media (min-width: 1400px) {
    
    .site-menu > li:nth-child(-n+6) {
        padding-right: 0px !important;
    }
    
     .site-navbar .site-navigation .site-menu>li>a {
        padding: 20px 14px;
        font-size: 16px;
    }
    
}

.site-navbar .site-navigation .site-menu>li>a.active {
    color: var(--DD-Dark-Pink);
}

.site-navbar .site-navigation .site-menu>li>a:hover {
    color: var(--DD-Dark-Pink);
}

.site-navbar .site-navigation .site-menu:nth-child(5) {
    padding-right: 0 !important;
}
/*
.site-navbar .site-navigation .site-menu>li:nth-child(5)>a {
    padding-right: 0 !important;
}
*/
.site-navbar .site-navigation .site-menu .has-children {
    position: relative;
}

.site-navbar .site-navigation .site-menu .has-children>a {
    position: relative;
    padding-right: 20px;
}

.site-navbar .site-navigation .site-menu .has-children>a:before {
    position: absolute;
    display: block !important;
    content: "";
    width: 10px;
    height: 10px;
    background: url(./src/ddNavDownNarrow.svg) center center no-repeat;
    font-size: 16px;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: 'icomoon';
}

.site-navbar .site-navigation .site-menu .has-children .dropdown {
    visibility: hidden;
    opacity: 0;
    top: 100%;
    position: absolute;
    text-align: left;
    -webkit-box-shadow: 0 0px 4px 0px rgba(0, 0, 0, 0.25);
    box-shadow: 0 0px 4px 0px rgba(0, 0, 0, 0.25);
    padding: 0px 0;
    margin-top: 20px;
    margin-left: 0px;
    background: #fff;
    -webkit-transition: 0.2s 0s;
    -o-transition: 0.2s 0s;
    transition: 0.2s 0s;
    border-radius: 4px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top {
    position: absolute;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
    bottom: 100%;
    left: 20%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown.arrow-top:before {
    border-color: rgb(23 165 255 / 0%);
    border-bottom-color: #e9e9e9;
    border-width: 10px;
    margin-left: -10px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown a {
    font-size: 14px;
    text-transform: none;
    letter-spacing: normal;
    -webkit-transition: 0s all;
    -o-transition: 0s all;
    transition: 0s all;
    color: var(--DD-Dark-Grey);
}

@media (min-width: 1200px) { 
  
    .site-navbar .site-navigation .site-menu .has-children .dropdown a {
        
        font-size: 16px;
        
    }

}

.site-navbar .site-navigation .site-menu .has-children .dropdown a.active {
    color: #007bff;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown .active>a {
    color: #fff !important;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li {
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 150px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown> li > ul > li {
    min-width: 162px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown> li > ul > li > ul > li {
    min-width: 150px;
}

.navWider li {
    min-width: 240px !important;
}

@media (min-width: 1200px) { 
  
    .navWider li {
        min-width: 270px !important;
    }


}
.site-navbar .site-navigation .site-menu .has-children .dropdown>li:first-child>a {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li:last-child>a {
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li>a {
    padding: 8px 9px;
    display: block;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li>a:hover {
    background: #ebeef0;
    color: #212529;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children>a:before {
    content: "";
    width: 10px;
    height: 10px;
    background: url(./src/ddNavDownNarrow.svg) center center no-repeat;
    right: 20px;
    top: 15px;
    -webkit-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children>.dropdown, .site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children>ul {
    left: 100%;
    top: 0;
}

.site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children:hover>a, .site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children:active>a, .site-navbar .site-navigation .site-menu .has-children .dropdown>li.has-children:focus>a {
    background: #ebeef0;
    color: var(--DD-Dark-Green);
}

.site-navbar .site-navigation .site-menu .has-children:hover>a, .site-navbar .site-navigation .site-menu .has-children:focus>a, .site-navbar .site-navigation .site-menu .has-children:active>a {
    color: var(--DD-Dark-Green);
}

.site-navbar .site-navigation .site-menu .has-children:hover, .site-navbar .site-navigation .site-menu .has-children:focus, .site-navbar .site-navigation .site-menu .has-children:active {
    cursor: pointer;
}

.site-navbar .site-navigation .site-menu .has-children:hover>.dropdown, .site-navbar .site-navigation .site-menu .has-children:focus>.dropdown, .site-navbar .site-navigation .site-menu .has-children:active>.dropdown {
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
    margin-top: 0px;
    visibility: visible;
    opacity: 1;
    z-index: 1;
}

.site-mobile-menu {
    width: 310px;
    position: fixed;
    right: 0;
    z-index: 2000;
    padding-top: 20px;
    background: #fff;
    height: calc(100vh);
    -webkit-transform: translateX(110%);
    -ms-transform: translateX(110%);
    transform: translateX(110%);
    -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
    box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
    -webkit-transition: .3s all ease-in-out;
    -o-transition: .3s all ease-in-out;
    transition: .3s all ease-in-out;
}

.offcanvas-menu .site-mobile-menu {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
}

.site-mobile-menu .site-mobile-menu-header {
    width: 100%;
    float: left;
    padding-left: 20px;
    padding-right: 20px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
    float: right;
    margin-top: 8px;
}

.icon-close2.js-menu-toggle {
    background: url(./src/iconClose.svg) center center no-repeat;
    width: 30px;
    height: 30px;
    right: 20px;
    display: block;
    right: 40px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
    font-size: 30px;
    display: inline-block;
    padding-left: 10px;
    padding-right: 0px;
    line-height: 1;
    cursor: pointer;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span:hover {
    color: #dee2e6;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo {
    float: left;
    margin-top: 10px;
    margin-left: 0px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a {
    display: inline-block;
    text-transform: uppercase;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a img {
    max-width: 70px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-logo a:hover {
    text-decoration: none;
}

.site-mobile-menu .site-mobile-menu-body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    position: relative;
    padding: 20px;
    height: calc(100vh - 90px);
    padding-bottom: 150px;
}

.site-mobile-menu .site-nav-wrap {
    padding: 0;
    margin: 0;
    list-style: none;
    position: relative;
}

.site-mobile-menu .site-nav-wrap a {
    padding: 9px 20px;
    display: block;
    position: relative;
    color: var(--DD-Dark-Grey);
}

.site-mobile-menu .site-nav-wrap ul > li > ul > li> ul > li a {
    color: #ff1100;
}

.site-mobile-menu .site-nav-wrap a.active, .site-mobile-menu .site-nav-wrap a:hover {
    color: var(--DD-Dark-Pink);
}

.site-mobile-menu .site-nav-wrap li {
    position: relative;
    display: block;
}

.site-mobile-menu .site-nav-wrap li.active>a {
    color: #ff1100;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse {
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 20;
    width: 100%;
    height: 48px;
    text-align: center;
    cursor: pointer;
    border-radius: 0;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse:hover {
    /*
  background: #f8f9fa;
  */
}

.site-mobile-menu .site-nav-wrap .arrow-collapse:before {
    font-size: 12px;
    z-index: 20;
    content: "";
    position: absolute;
    width: 20px;
    background: #ffffff url(./src/ddChevronDownPink.svg) center center no-repeat;
    background-size:50%;
    border-radius: 50px;
    height: 20px;
    top: 25px;
    right: 0px;
    -webkit-transform: translate(-50%, -50%) rotate(-180deg);
    -ms-transform: translate(-50%, -50%) rotate(-180deg);
    transform: translate(-50%, -50%) rotate(-180deg);
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}

.site-mobile-menu .site-nav-wrap ul li.has-children .arrow-collapse:before {
    top: 22px;
}

.site-mobile-menu .site-nav-wrap .arrow-collapse.collapsed:before {
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.site-mobile-menu .site-nav-wrap>li {
    display: block;
    position: relative;
    float: left;
    width: 100%;
}

.site-mobile-menu .site-nav-wrap>li.has-children {
    background: #f5f5f5;
    border-radius: 10px;
    margin: 0 0 10px 0;
}

.site-mobile-menu .site-nav-wrap>li:last-child {
    display: none;
}

.site-mobile-menu .site-nav-wrap>li>a {
    padding-left: 20px;
    font-size: 20px;
}

.site-mobile-menu .site-nav-wrap>li>ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-mobile-menu .site-nav-wrap>li>ul>li {
    display: block;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>a {
    padding-left: 20px;
    font-size: 15px;
    background:#ededed;
    text-decoration: none;
}

.site-mobile-menu .site-nav-wrap>li>ul>li.has-children>a {
    color: var(--DD-Dark-Green);
    text-decoration:none;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul {
    padding: 0;
    margin: 0;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul>li {
    display: block;
}

.site-mobile-menu .site-nav-wrap>li>ul>li>ul>li>a {
    font-size: 15px;
    padding-left: 30px;
    text-decoration:none;
}

.sticky-wrapper {
    position: absolute;
    z-index: 100;
    width: 100%;
    display:flex;
    /* background: #2e0f0f; */
    /* padding: 20px 0 !important; */
    -webkit-transition: all 0.2s cubic-bezier(0.46, 0.15, 0.28, 0.87);
    -moz-transition: all 0.2s cubic-bezier(0.46, 0.15, 0.28, 0.87);
    -ms-transition: all 0.2s cubic-bezier(0.46, 0.15, 0.28, 0.87);
    -o-transition: all 0.2s cubic-bezier(0.46, 0.15, 0.28, 0.87);
    transition: all 0.2s cubic-bezier(0.46, 0.15, 0.28, 0.87);
    align-items: center;
}

.sticky-wrapper+.site-blocks-cover {
    margin-top: 96px;
}

.sticky-wrapper .site-navbar {
    /*-webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;*/
    position: relative;
    z-index: 3;
}

.sticky-wrapper .site-navbar ul li.active a {
    color: #ff0000;
}

.text-right {
    text-align: right;
}

.sticky-wrapper.is-sticky .site-navbar {
    height:60px;
    background-color: #ffffffeb;
    display:flex;
    -webkit-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
    -ms-backdrop-filter: blur(5px);
    -o-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    -webkit-transition: all 0.2s cubic-bezier(0.46, 0.15, 0.28, 0.87);
    -moz-transition: all 0.2s cubic-bezier(0.46, 0.15, 0.28, 0.87);
    -ms-transition: all 0.2s cubic-bezier(0.46, 0.15, 0.28, 0.87);
    -o-transition: all 0.2s cubic-bezier(0.46, 0.15, 0.28, 0.87);
    transition: all 0.2s cubic-bezier(0.46, 0.15, 0.28, 0.87);
    filter: drop-shadow(0px 10px 10px #24d3c20d);
    align-items: center;
}


.sticky-wrapper.is-sticky .site-navbar .row:first-child{

    /* height:55px !important; */

}

@media (min-width: 992px) { 
  
    .sticky-wrapper.is-sticky .site-navbar .row:first-child{
    
        height:83px !important;
    
    }

}

@media (min-width: 1200px) { 
  
    .sticky-wrapper.is-sticky .site-navbar .row:first-child{
    
        height:86px !important;
    
    }

}

@media (min-width: 1400px) { 
  
    .sticky-wrapper.is-sticky .site-navbar .row:first-child{
    
        height:85px !important;
    
    }

}

.smaller .site-navbar {
    transition: opacity 0.2s cubic-bezier(0.46, 0.15, 0.28, 0.87);
}

.smaller .site-navbar:after {
    content: "";
    width: 100%;
    height: 10px;
    display: block;
    background: linear-gradient(to bottom, rgb(145 145 145 / 12%) 0%,rgba(160,160,160,0) 100%);
    opacity: 0.7;
    transition: opacity 0.2s cubic-bezier(0.46, 0.15, 0.28, 0.87);
    position: absolute;
    bottom: -10px;
}

.sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li {
    display: inline-block;
    padding: 10px 0px;
}

.sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li:last-child {
    padding-right: 0;
}

.sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li:last-child>a {
    padding-right: 0;
}

.sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li.has-children>a {
    padding-right: 20px;
}

.sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li>a {
    padding: 10px 6px;
    font-size: 13px;
}

@media (min-width: 1200px) {
    .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li>a {
        padding: 10px 10px;
        font-size: 14px;
    }
}
@media (min-width: 1400px) {
    .sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li>a {
        padding: 10px 14px;
        font-size: 16px;
    }
}
.sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li>a:hover {
    /* color: #fff !important; */
}

.sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu>li>a.active {
    color: #fff !important;
}

.sticky-wrapper.is-sticky .site-navbar .site-navigation .site-menu > li.active > a {
    color: #ff0000;

    color: var(--DD-Light-Pink);
}

.site-menu li:hover > a {
    color: var(--DD-Light-Pink) !important;
}

.site-menu li:hover > a.desktopCvDrop {
    color: #fff !important;
}

.deskNavButtons  {
    display: none !important;
}

.mobileSurvey {
    background: var(--DD-Light-Pink);
    font-family: "Outfit", sans-serif;
    color: #fff !important;
    padding: 4px 12px;
    border-radius: 60px;
    position: relative;
    float: left;
    display: flex;
    margin: 0 20px 0 0;
    align-items: center;
    font-weight: 500;
    align-content: center;
    flex-direction: row;
}

.desktopCvDrop {
    display: none;
}

.deskNavButtons  {
    display: none;
}

@media (min-width: 992px) {

    .deskNavButtons {

        display:flex !important;
        filter: drop-shadow(0px 0px 6px #e8e8e86b);
        
    }

    .mobileSurvey {
        
        display:none;
        
    }
    
    .desktopSurvey,
    .desktopCall 
    {
        
        padding: 10px 10px !important;
        display: flex !important;
        margin: 0 0 0 0;
        align-items: center;
        align-content: center;
        flex-direction: row;
        gap: 3px;
        font-weight: 600;
        font-size:12px !important;
        
    }
    
    .desktopSurvey {
        background: #f98691;
        color: #fff !important;
        border-radius:66px;
        border-color: #db5a6559;
        border-style: solid;
        border-width:  1px;
    }

    .desktopCall {
        background: #fff ;
        border-radius:66px;
        border:1px solid #E2F2F1;
        color: var(--DD-Light-Green) !important;
        border-color: #E2F2F1;
        border-style: solid;
        border-width:  1px  0px 1px 1px;
    }
    
    .desktopCall:before {
        content: "";
        height: 24px;
        width: 14px;
        display: block;
        background: url(./src/ddIconPhoneGreen.svg) center center no-repeat;
        background-size: contain;
        float: left;
        margin: 0 4px 0 4px;
    }

    .site-menu li a.desktopSurvey:hover {
        background: #e56773;
        color: #ffffff !important;
    }

    .site-menu li:hover a.desktopSurvey {
        color: #ffffff !important;
    }
        
    .desktopCall:hover 
    {
        border-color: #8fe8df;
        color: var(--DD-Dark-Green) !important;
        filter: drop-shadow(0px 0px 6px #e8e8e86b);

    }

}

@media (min-width: 1200px) {
    
    .desktopSurvey,
    .desktopCall 
    {
        font-size:14px !important;
    }

}

.deskNavSocials  {
    
    display:inline-flex !important;
    border-top:1px solid #efefef;
    padding:20px 0 0 0;
    margin:10px 0 0 0;
    justify-content: space-evenly;

}

.button-call-dd {

    display: flex !important;
    background: var(--DD-Light-Green);
    color:#fff !important;
    text-decoration:none;
    margin:0 0 0 10px !important;
    padding:0 10px !important;
    border-radius:100px;
    font-size:14px !important;
    align-items: center;
    justify-content: center;
    font-weight:600;
    gap:5px;

    
}

.button-call-dd:before {

    content: "";
    height: 16px;
    width: 14px;
    display: block;
    background:  url(./src/ddIconPhoneWhite.svg) left center no-repeat;
    background-size: contain;
    float: left;
    margin: 0 0px 0 0px;
    
}

@media (min-width: 992px) { 

    .button-call-dd {
        
        display:none !important;
    
    }

}

.icon-social-insta, 
.icon-social-fb, 
.icon-social-linkedin, 
.icon-social-x {
    width: 30px;
    height: 30px;
    display: flex;
    float: right;
    position: relative;
    text-indent: 2000px !important;
    margin: 0 0 0 10px;
    overflow: hidden;
    padding:0 !important;
}

.icon-social-insta {
    background: url(./src/social-instagram.svg) left center no-repeat;
    background-size: contain;
}

.icon-social-fb {
    background: url(./src/social-facebook.svg) left center no-repeat;
    background-size: contain;
}

.icon-social-linkedin {
    background: url(./src/social-linkedin.svg) left center no-repeat;
    background-size: contain;
}

.icon-social-x {
    background: url(./src/social-x.svg) left center no-repeat;
    background-size: contain;
}

@media (min-width: 992px) { 

    .deskNavSocials  {
    
        display:none !important;
        
    }
    
}

@media (min-width: 1400px) {

    .deskNavSocials  {
        display: flex !important;
        flex-direction:row;
        align-items: center;
        align-content: center;
        border:none;
        margin:0;
        padding:0;
    }

    .icon-social-insta, 
    .icon-social-fb, 
    .icon-social-linkedin, 
    .icon-social-x {
        width: 20px;
        height: 20px;
        display: flex;
        float: right;
        position: relative;
        text-indent: 2000px !important;
        margin: 0 0 0 10px;
        overflow: hidden;
    }

    .icon-social-insta {
        background: url(./src/social-instagram.svg) left center no-repeat;
        background-size: contain;
    }

    .icon-social-fb {
        background: url(./src/social-facebook.svg) left center no-repeat;
        background-size: contain;
    }

    .icon-social-linkedin {
        background: url(./src/social-linkedin.svg) left center no-repeat;
        background-size: contain;
    }

    .icon-social-x {
        background: url(./src/social-x.svg) left center no-repeat;
        background-size: contain;
    }

}

.cookieContent {
    
    display:flex;
    width:100%;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: center;
    gap:20px;
    
}

.cookieContent p,
.cookieContent a
{

    margin:0;
    padding:0;
    
}

.cookieContent button {

    margin:0 !important;
    background:var(--DD-Dark-Grey);
    border-color:var(--DD-Dark-Grey);
    
}

#cb-cookie-banner { 
    
    position: fixed; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    z-index: 999; 
    border-radius: 0; 
    display: none; 
    background:#eeeeeecc;
    border:none;
    -webkit-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
    -ms-backdrop-filter: blur(5px);
    -o-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    -webkit-transition: all 0.2s cubic-bezier(0.46, 0.15, 0.28, 0.87);
    -moz-transition: all 0.2s cubic-bezier(0.46, 0.15, 0.28, 0.87);
    -ms-transition: all 0.2s cubic-bezier(0.46, 0.15, 0.28, 0.87);
    -o-transition: all 0.2s cubic-bezier(0.46, 0.15, 0.28, 0.87);
    transition: all 0.2s cubic-bezier(0.46, 0.15, 0.28, 0.87);

}

/* FOOTER */

.footerGroup {

    text-align:center;
    display:flex;
    flex-direction:column;
    margin:0 0 30px 0;

}

.footerFca {

    text-align:center;
    display:flex;
    flex-direction:column;

}

.footerFca h7 {

    font-weight:400;
    padding:0 0 20px 0 !important;
    font-size:14px;
    
}

.footerGroup p {

    padding:0;
    margin:0;
    font-size:12px;

}

.footerFca {

    padding:0 0 20px 0;
    margin:0 0 20px 0;
    border-bottom:1px solid #f4f4f4;

}

.footerContainer {

    background: var(--DD-Darker-Grey);
    border-radius: var(--DD-Rounded-Corner-SM);
    padding: var(--DD-Footer-Padding-SM);
    margin: var(--DD-Internal-Margin-SM);

}

@media (min-width: 768px) { 

    .footerContainer {

        border-radius: var(--DD-Rounded-Corner-MD);
        padding: var(--DD-Footer-Padding-MD);
        margin: var(--DD-Internal-Margin-MD);

    }
    
}

@media (min-width: 1200px) { 

    .footerContainer {

        border-radius: var(--DD-Rounded-Corner-LG);
        padding: var(--DD-Footer-Padding-LG);
        margin: var(--DD-Internal-Margin-LG);

    }
    
}

.dd-logo-footer {

    width:100%;
    height:100px;
    background: url(./src/dd-footer-logo.svg) center center no-repeat;
    background-size: contain;
    display:flex;
    text-indent:-2000px;
    overflow:hidden;
    margin:0 0 20px ;

}

@media (min-width: 768px) { 

    .dd-logo-footer {
        margin:0 0 30px ;
    }

}

@media (min-width: 1200px) { 

    .dd-logo-footer {
        margin:0 0 40px ;
    }

}

.topFoot {

    text-align:center;
    display:flex;
    flex-direction:column;

}

.footLinks {
    
      display:flex;
      flex-direction: row;
      gap:0px;
      flex-wrap: wrap;
    
}

.linkBlock {
    display:flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: flex-start;
    padding: 0px 0 10px 0;
    width: 100%;
}

@media (min-width: 768px) {

    .linkBlock {
  
        padding:0 0 30px 0;
        
    }
    
    .linkBlock:last-child {
  
        padding:0 0 0px 0;
        
    }

}

.linkBlock h6 {
    color:#fff;
    width:100%;
    text-align: center;
    font-weight:500;
    font-size:16px;
}

@media (min-width: 768px) {

    .linkBlock h6 {
  
        font-size:auto;
        padding:0 0 20px 0;
        
    }

}

.linkBlock a {
    color:#c2c2c2;
    width:100% !important;
    text-align:left;
    font-size: var(--DD-footer-p-SM);
    flex-wrap: wrap;
    flex-direction: column;

}

.foot-panel a {
    color:#c2c2c2;
    /* width:100% !important; */
    text-align: center;
    display:flex;
    font-size: var(--DD-footer-p-SM);
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
}

.linkBlock a:hover {

    color:#ffffff;

}

.footerGroup a { 
    
    color: var(--DD-Dark-Grey);
    text-decoration:underline !important;
    text-underline-offset: 2px;
    font-size: 12px;
               
}

.linkBlock.width50 {
    
    width:100%; 
    
}

@media (min-width: 768px) {

    .linkBlock.width50 {
        
        width:auto; 
        
    }

}

@media (min-width: 1200px) {

    .linkBlock a,
    .foot-panel a {
        
        font-size: var(--DD-footer-p-MD);
        
    }

}

.linkBlock.width25 {
    
    width:100%;
        
}

.linkBlock.width25 a {
    
    width:50%;
        
}

.linkBlock.width25.linkFull a {
    
    width:100%;
        
}

.linkBlock.width50.linkFull a {
    width: 100% !important;
}

.foot-panel { width:100% !important; }
.foot-panel a {width: 100% !important;}

.endGap {/* padding-right:30px; */}

@media (min-width: 768px) { 

    .foot-panel.footDouble a { width:100% !important; }
    
    .linkBlock.width25 {
        
        width:25%;
            
    }
        
    .linkBlock.width50 {
        
        width:50%;
        padding-right:5px;
            
    }

    .linkBlock.width50 a {
    /* width:100%; */
    }

    .linkBlock.width25 a {
    
        width:100%;
            
    }

    .linkBlock.width50.linkFull a {
        width: 100% !important;
    }

}

/*

CURREDD SITE 

*/

.cureddHeader {
    
    display:flex !important;
    flex-direction:column !important;
    align-items: center;
    align-content: center;
    background: url(./src/cureddHeaderBg.jpg) center center no-repeat;
    background-size:cover;
    padding:60px !important;
    text-align:center;
    gap:20px;
    color:#fff;

}

@media (min-width: 768px) { 
    
    .cureddHeader {

        padding:60px 10svw !important;

    }
    
}

@media (min-width: 1200px) { 
    
    .cureddHeader {

        padding:100px 20svw !important;

    }
    
}

.cureddHeader h1, 
.cureddHeader h2 { 
    
    color:#fff;

}

.cureddHeader h1 span {
    color:var(--DD-Dark-Pink)
}

.cureddSection {
    display:flex;
    flex-direction: column-reverse;
    border-radius: var(--DD-Rounded-Corner-SM);
    overflow:hidden;
    border:1px solid #d2d2d2;
    margin-bottom:20px;
    background:var(--DD-Darker-Grey);
    color:#fff;
}

.cureddSection p { color:#fff; }
.cureddSection h3 { color:var(--DD-Dark-Pink); padding: 0 0 5px 0;}

@media (min-width: 768px) { 

    .cureddSection {
        
        border-radius: var(--DD-Rounded-Corner-MD);
        
    }
    
    .cureddSection h3 { padding: 0 0 20px 0;}
    
}

@media (min-width: 992px) { 

    .cureddSection {
        
        display:flex;
        flex-direction: row;
        
    }

}

@media (min-width: 1400px) { 

    .cureddSection {
        
        border-radius: var(--DD-Rounded-Corner-MD);
        
    }

}

.sectionContent {
    
    padding:var(--DD-Internal-Padding-SM);
    
}

@media (min-width: 768px) { 

    .sectionContent {
        
        padding:var(--DD-Internal-Padding-MD);
        
    }

}

@media (min-width: 992px) { 

    .sectionContent {
        width:70svw;
        padding:var(--DD-Internal-Padding-LG);
    }
    
    .centerContent {
        width:100svw;
        text-align:center;
    }

}

.sectionContent p:last-child {
    padding:0;
    margin:0;
}

.sectionImage {
    display:flex;
    width:100%;
    height:200px;
}

@media (min-width: 768px) { 

    .sectionImage {
        display:flex;
        width:100%;
        height:400px;
    }

}

@media (min-width: 992px) { 

    
    .sectionImage {
        display:flex;
        width:30svw;
        height:auto;
    }

    
}

.cureddImg1 {
    
    display:inline-flex;
    background: url(./src/curedd-img-1.jpg) top center no-repeat;
    background-size:cover;
    
}

@media (min-width: 992px) { 
    
    .cureddImg1 {
        
        display:inline-flex;
        background: url(./src/curedd-img-1.jpg) center center no-repeat;
        background-size:cover;
        
    }

}

.backgroundTick {
    display:flex;
    justify-content: center;
    height: 160px;
    background: url(./src/coredd-img-bg-cond.jpg) center center no-repeat;
    background-size:cover;
    align-items: center;
}

@media (min-width: 992px) { 

    .backgroundTick {
        display:flex;
        justify-content: center;
        height: auto;
        align-items: center;
    }
    
}

.pinkTick {
    padding:0;
    margin:0;
    list-style:none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0 20px;
}


@media (min-width: 992px) { 

    .pinkTick {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
    }

}

.pinkTick li {
    width: auto;
    display:flex;
    gap:10px;
    align-items: center;
}
    
.pinkTick li:before {

    content:"";
    width:12px;
    height:12px;
    background:url(./src/icon-pink-tick-2.svg) center center no-repeat;
    background-size:contain;
    display:flex;
    
}

@media (min-width: 992px) { 
 
    .pinkTick li {

        font-size:var(--DD-h2-MD)
    
    
    }

}

.cureddGrid {

    display:flex;
    flex-direction:column;
    text-align:center;
    gap:20px;
    padding:0 0 20px 0;
    
}

.cureddBox {
    
    display:flex;
    flex-direction:column;
    text-align:center;
    gap:10px;
    background: #6a6969;
    padding:16px 10px;
    border-radius:4px;
    
}

.cureddBox h6 {

    padding:0;
    margin:0;
    color:#ffd2da;
    font-size:16px;
    font-weight:500;
    
}

.disrupt-icon-1,
.disrupt-icon-5,
.disrupt-icon-6 {

    height:20px !important;
    
}

@media (min-width: 768px) { 

    .cureddGrid {
        display:flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        padding:10px 0 30px 0;
    }
    
    .cureddBox {
        
        width:calc(50% - 10px);
        
    }
    
    .cureddBox h6 {
    
        font-size:18px;
    
    }

}

@media (min-width: 1200px) { 

    .cureddBox {
        
        width:calc(33.3% - 20px);
        padding:20px 20px;
        gap:20px;
        
    }
    .cureddBox h6 {
    
        font-size:20px;
    
    }

}

.cureddImg2 {
    
    display:inline-flex;
    background: url(./src/curedd-img-2b.jpg) center center no-repeat;
    background-size:cover;
    
}

@media (min-width: 992px) { 
    
    .cureddImg2 {
        
        display:inline-flex;
        background: url(./src/curedd-img-2.jpg) center center no-repeat;
        background-size:cover;
        
    }

}

.padBot0 { padding-bottom:0; }

.cureddImg3 {
    
    display:inline-flex;
    background: url(./src/curedd-img-3.jpg) top center no-repeat;
    background-size:cover;
    
}

@media (min-width: 992px) { 
    
    .cureddImg3 {
        
        display:inline-flex;
        background: url(./src/curedd-img-3.jpg) center center no-repeat;
        background-size:cover;
        
    }

}

.cureddImg4 {
    
    display:inline-flex;
    background: url(./src/curedd-img-4.jpg) top center no-repeat;
    background-size:cover;
    
}

@media (min-width: 992px) { 
    
    .cureddImg4 {
        
        display:inline-flex;
        background: url(./src/curedd-img-4.jpg) center center no-repeat;
        background-size:cover;
        
    }

}

.cureddImg5 {
    
    display:inline-flex;
    background: url(./src/curedd-img-5.jpg) top center no-repeat;
    background-size:cover;
    
}

@media (min-width: 992px) { 
    
    .cureddImg5 {
        
        display:inline-flex;
        background: url(./src/curedd-img-5.jpg) center center no-repeat;
        background-size:cover;
        
    }

}

.DDLogo {

    background:url(./src/dd-logo.svg) center center no-repeat;
    background-size:contain;
    width:100%;
    height:80px;
    overflow:hidden;
    text-indent:-2000px;
    
}

@media (min-width: 992px) { 

    .DDLogo {
    
        background:url(./src/dd-logo.svg) center center no-repeat;
        background-size:contain;
        width:160px;
        height:100%;
    
    }
}

.curedd-logo-footer {

    width:100%;
    height:100px;
    background: url(./src/curedd-logo-footer.svg) center center no-repeat;
    background-size: contain;
    display:flex;
    text-indent:-2000px;
    overflow:hidden;
    margin:0 0 20px ;

}

@media (min-width: 768px) { 

    .curedd-logo-footer {
        margin:0 0 30px ;
    }

}

@media (min-width: 1200px) { 

    .curedd-logo-footer {
        margin:0 0 40px ;
    }

}

#pagelink1,
#pagelink2,
#pagelink3,
#pagelink4,
#pagelink5,
#pagelink6,
#pagelink7,
#pagelink8 {

  scroll-margin-top: 80px;

}

/* HOMEPAGE SECTION 1 */

.hpSection {
    border-radius: var(--DD-Rounded-Corner-SM);
    padding: var(--DD-Internal-Padding-SM);
    margin: var(--DD-Internal-Margin-SM);
    display:flex;
    flex-direction:column;
    position: relative;

}

.col-dd-left {
    
    width:100%;
    padding-bottom:10px;
    display:flex;
    flex-direction:column;
    align-items: center;
    padding:0 0 20px 0;

}

@media (min-width: 768px) { 

    .col-dd-left {
        width:100%;
        padding-bottom:10px;
        display:flex;
        flex-direction:column;
        align-items: flex-start;
        padding:0;
    }

}

.col-dd-left h3 {

    padding:20px 0 10px 0;
    width:100%;
    text-align:center;

}

@media (min-width: 768px) { 

    .col-dd-left h3 {

        padding:0px 0 10px 0;

    }

}

.col-dd-right {
    
    width:100%;
    z-index: 0;
     
}

.col-dd-central {

    display:flex;
    flex-direction:column;
    gap:10px;

}

.col-dd-central h3 {

    width:100%;
    text-align: center;
    padding:20px 0 10px 0;

}

.hpSec4 h3 u {

    text-underline-offset: 5px !important;

}

@media (min-width: 768px) { 

    .hpSection {
        
        border-radius: var(--DD-Rounded-Corner-MD);
        padding: var(--DD-Internal-Padding-MD);
        margin: var(--DD-Internal-Margin-MD);
        display:flex;
        flex-direction:row;
        gap:30px;
    
    }

    .col-dd-left {

        width:40%;
        padding-right: var(--DD-Footer-Padding-MD);
        padding-bottom:0px;
    
    }
    
    .col-dd-left h3 {
    
        padding-bottom:30px; 
        width:100%;
        text-align:left;
    
    }

    .noPadH3 h3 {

          padding-bottom:0px;

    }
    
    .col-dd-right {
        
        width:60%;
    
    }

    .col-dd-central {

        display:flex;
        flex-direction:column;
        gap:30px;
        width:100%;

    }

    .col-dd-triple {

        display:flex;
        flex-direction: row;
        gap:30px;

    }

    .col-third {

        display:flex;
        flex-direction: row;
        gap:20px;
        width:33.3%;

    }
        
    .col-dd-central h3 {
    
        padding:0;
    
    }


}

@media (min-width: 1400px) { 
    
    .col-dd-triple {

        padding:0 100px;

    }

    .hpSection {

        border-radius: var(--DD-Rounded-Corner-LG);
        padding: var(--DD-Internal-Padding-LG);
        margin: var(--DD-Internal-Margin-LG);
    
    }
    
    .col-dd-left {

        padding-right: var(--DD-Footer-Padding-LG);
    
    }

}

.hpSec1 {

    border:1px solid var(--DD-Light-Grey);

}

.hpSec2 {

    border:1px solid var(--DD-Light-Grey);

}

.hpSec3 {

    border:1px solid var(--DD-Light-Grey);
    background-color: #fff;
    /*
    filter: drop-shadow(0px 0px 6px #0000000d);
    */
    box-shadow:
      0 1px 1px hsl(0deg 0% 0% / 0.015),
      0 2px 2px hsl(0deg 0% 0% / 0.015),
      0 4px 4px hsl(0deg 0% 0% / 0.015),
      0 8px 8px hsl(0deg 0% 0% / 0.015),
      0 16px 16px hsl(0deg 0% 0% / 0.015)
    ;

}

.hpSec4 {

    background:var(--DD-V-Light-Green);
    border:1px solid #e0f3f1;

}

.hpSec5 {

    border:1px solid var(--DD-Light-Grey);
    background-color: #fff;
    box-shadow:
      0 1px 1px #24d3c20d,
      0 2px 2px #24d3c20d,
      0 4px 4px #24d3c20d,
      0 8px 8px #24d3c20d,
      0 1px 26px #24d3c20d
    ;

}

.hpSec6 {

    border:1px solid #e0f3f1;

}

.hpSec6 p {

   color:#fff;

}

.hpSec4 p {

    color:var(--DD-V-Dark-Green);
    
}

.hpSec4 p:last-child {

    padding:0;
    margin:0;
    
}

.subLeftText {

    color:var(--DD-Dark-Green);
    font-weight:400;

}

.hpSec7 {

    border:1px solid #e0f3f1;
    overflow:hidden;
    position:relative;
    background: url(./src/bg-drops-1.jpg) top center no-repeat;
    background-size: cover ;

}

.hpSec7 .col-dd-left,
.hpSec7 .col-dd-right {

    z-index:1;
    
}

hr {

    width:100%;
    height:1px;
    color:var(--DD-Light-Green);
    padding:40px 0 0 0;
    margin:40px 0 0 0 ;
    
}

.hiddenGradient {

    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    z-index:0;
    background: linear-gradient(180deg, #F5FCFB 20%, #f5fcfb00 90%);

}

.hpSec7 p {

    color:var(--DD-V-Dark-Green);
    
}

.wavesBg,
.wavesBg2 {

    overflow:hidden;
    
}

.wavesBg:before {

    content:"";
    width:600px;
    height:400px;
    position:absolute;
    top:0;
    right:0;
    display:block;
    background:url(./src/waves.svg) 200px -150px no-repeat;
    background-size:contain;
    z-index:0;
    opacity:0.1;
    filter: blur(8px);
    -webkit-filter: blur(8px);
    
}

@media (min-width: 768px) { 

    .wavesBg:before {

        content:"";
        width:800px;
        height:600px;
        background:url(./src/waves.svg) 200px -50px no-repeat;
        background-size:contain;
        
    }

}

.wavesBg2:before {

    content:"";
    width:600px;
    height:400px;
    position:absolute;
    bottom:0;
    left:0;
    display:block;
    background: url(./src/waves.svg) left bottom no-repeat;
    background-size:contain;
    z-index:0;
    opacity:0.1;
    filter: blur(8px);
    -webkit-filter: blur(8px);
    
}

@media (min-width: 768px) { 

    .wavesBg2:before {

        content:"";
        width:800px;
        height:600px;
        background: url(./src/waves.svg)left bottom no-repeat;
        background-size:contain;
        
    }

}

/* HOMEPAGE GREEN HEADER */

.greenHeaderLarge {
    color:#fff;
    padding: 40px 40px 340px 40px;
    overflow:hidden;
    position:relative;
    border:none;
    display:inline-flex;
    flex-direction: column;
    gap:0px;
    align-items: center;
    background: #052e2a;
    z-index: 0;
    width: 100%;
}

@media (min-width: 768px) { 

    .greenHeaderLarge {
    
        padding:80px 80px;
        align-items: flex-start;

    }
    
    .subLeftText {

        padding-right:clamp(10px, 10svw, 60px);
    
    }

}

.greenHeaderLarge::after {
    
    content: "";
    position: absolute;
    width: 230%;
    height: 300%;
    top: -145%;
    left: -180%;
    z-index: -2;
    background: #525252 url(./src/ddRepeatingBg4.svg) center center repeat;
    background-size: 14% auto;
    transform: rotate(-58deg) !important;
    
}

@media (min-width: 450px) { 

    .greenHeaderLarge::after {
    
        left: -100%;
        
    }

}

.greenHeaderLarge::before {
    
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    z-index: -1;
    background: linear-gradient(180deg, rgb(36 36 36 / 57%) 10%, rgb(30 30 30 / 1%) 100%), #43434300;

}

.headerProjectNumbers {
    
    display:flex;
    flex-direction:column;
    color: var(--DD-Light-Green);
    font-size:60px;
    padding:0px 0 0 0;
    margin:0;
    align-items: center;

}
@media (min-width: 576px) { 
           
    .headerProjectNumbers {
    
        align-items: flex-start;
        
    }

}

@media (min-width: 768px) { 
    
    .greenHeaderLarge::after {
        background-size: 8% auto;
        transform: rotate(-59.8deg) !important;
    }
 
    
}

@media (min-width: 1200px) { 
    
    .greenHeaderLarge::after {
 
        top: -5%;
        left: -80%; 
        
    }
    
}

@media (min-width: 1400px) { 
    
    .headerProjectNumbers {
    
        padding:20px 0 0 0;
        
    }

}

.flexRow {
    display:flex;
    flex-direction:column;
    align-items: center;
    gap:20px;
}

.sectionContent .flexRow {
    display:flex;
    flex-direction:column;
    align-items: flex-start;
    gap:20px;
    padding:10px 0 0 0;
}

@media (min-width: 1400px) { 

    .flexRow {
        display:flex;
        flex-direction: row;
        align-items: flex-start;
        gap:20px;
    }

}


.headerProjectFaces {
    
    display:inline-flex;
    align-items: center;
    align-content: center;
    gap: 0px;
    flex-direction: column;
    
}

@media (min-width: 576px) {

    .headerProjectFaces {
        
        display:inline-flex;
        gap:20px;
        flex-direction: row;
            
    }

}

.headerProjectFaces::before {
    
    display:inline-flex;
    content:"";
    width:145px;
    height:44px;
    background: url(./src/dd-heads.svg) center center repeat;
    background-size: cover;
    align-items: center;
    align-content: center;
    margin:0 0 14px 0;
    
}

.bannerBeat {
    
    display:flex;
    flex-direction: row;
    border-radius: 5px;
    gap:5px;
    -webkit-backdrop-filter: blur(2px);
    -moz-backdrop-filter: blur(2px);
    -ms-backdrop-filter: blur(2px);
    -o-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    width:100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width:100%;
    overflow: hidden;
    
}

.bannerBeat u {
    
    text-underline-offset: 2px !important;
    
}

@media (min-width: 576px) {

    .bannerBeat {
        
        display:flex;
        align-items: center;
        justify-content: flex-start;
        
    }
    

}

.bannerBeat:before {
    
    content: "";
    height: 24px;
    width: 24px;
    display: block;
    background: url(./src/icon-badge-tick-pink.svg) center center no-repeat;
    background-size: contain;
    float: left;
    margin: 0 4px 0 4px;
    
}

.headerProjectNumbers span {
    
    color:#fff;
    font-size:16px;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight: 500;

}

.headerImageRight {
    
    position:absolute;
    bottom: 0;
    width: 100%;
    height: 300px;
    overflow:hidden;
    mask-size: auto;
    /* mask: url(./src/imageMask.svg) left center no-repeat; */
    /* mask-repeat: no-repeat; */
    /* transform: rotate(90deg); */
    
}

.headerImageContainer {/* transform: rotate(-90deg); */}

@media (min-width: 768px) {

    .headerImageRight {
    
        position:absolute;
        top:0;
        right:0;
        width:50%;
        height:100%;
        overflow:hidden;
        mask: url(./src/imageMask.svg) left center no-repeat;
        mask-repeat: no-repeat;  
        mask-size: auto;
        transform: rotate(0deg);
    
    }   
    
    .headerImageContainer {
    
        transform: rotate(0deg); 
    
    }

}

.headerImageRight img {
    
    height:100%;
    aspect-ratio: 1 / 1 !important;
    
}

.headerImageContainer {
    
    width: 100%;
    height: 100%;
    
}

.headerContentLeft {
    
    display:inline-flex;
    flex-direction:column;
    gap:20px;
    width: 100%;

}

.headerImageContainer.hI1 {

    background: url(./src/headerImage1.jpg) center calc(100% + 40px) no-repeat;
    background-size: cover;

}

.headerImageContainer.hI2 {

    background: url(./src/headerImageCondensation.jpg) center center no-repeat;
    background-size: cover;

}

.headerImageContainer.hI3 {

    background: url(./src/headerImageMould.jpg) center center no-repeat;
    background-size: cover;

}

.headerImageContainer.hI4 {

    background: url(./src/headerImageVentilation.jpg) center center no-repeat;
    background-size: cover;

}

.headerImageContainer.hI5 {

    background: url(./src/headerImageSocial.jpg) center center no-repeat;
    background-size: cover;

}

.headerImageContainer.hI6 {

    background: url(./src/headerImageLetting.jpg) center center no-repeat;
    background-size: cover;

}

.headerImageContainer.hI7 {

    background: url(./src/headerImageHomeowner.jpg) center center no-repeat;
    background-size: cover;

}

.headerImageContainer.hI8 {

    background: url(./src/headerImagePas.jpg) center center no-repeat;
    background-size: cover;

}

@media (min-width: 768px) {

    .headerContentLeft {
    
        display:inline-flex;
        flex-direction:column;
        gap:30px;
        width: 55%;
    
    }

    .headerImageContainer.hI1 {

        background: url(./src/headerImage1.jpg) center center no-repeat;
        background-size: cover;

    }

    .headerImageContainer.hI2 {

        background: url(./src/headerImageCondensation.jpg) center center no-repeat;
        background-size: cover;

    }
    
}

.headerContentLeft h2 {

    color:#fff;
    
}

.headerContentLeft h1,
.headerContentLeft h2,
.headerContentLeft p
{

    padding:0;
    margin:0;
    text-align:center;
    
}


@media (min-width: 576px) {

    .headerContentLeft h1,
    .headerContentLeft h2,
    .headerContentLeft p
    {
    
    text-align:left;
    
    }

}

.ddDarkGreenBg {

    overflow:hidden;
    position:relative;
    border:none;
    display:inline-flex;
    width:100%;

}

.ddDarkGreenBg::before {
    
    content: "";
    position: absolute;
    width: 100%;
    height: 60%;
    top:0;
    left:0;
    z-index: -1;

}

.ddDarkGreenBg::after {
    content: "";
    position: absolute;
    width: 400%;
    height: 400%;
    top: -315%;
    left: -120%;
    z-index: -2;
    background: url(./src/ddRepeatingBg1.svg) center center repeat;
    background-size: 6% auto;
    transform: rotate(-60deg) !important;
}


.ddDarkGreenBg2 {

    overflow:hidden;
    position:relative;
    border:none;
    display:inline-flex;
    width:100%;

}

.ddDarkGreenBg2:before {
    
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    z-index: -1;
    background: linear-gradient(180deg, rgb(0 0 0 / 42%) 10%, rgb(0 37 33 / 1%) 100%), #034f4800;

}

.ddDarkGreenBg2::before {
    
    content: "";
    position: absolute;
    width: 100%;
    height: 60%;
    top:0;
    left:0;
    z-index: -1;

}

.ddDarkGreenBg2::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    background: url(./src/ddRepeatingBg2.svg) center center repeat;
    background-size: 80% auto;
}

strong {

    font-weight:600;
    
}

/* BUTTONS */

.linkBox {
    
    margin:0;
    padding:0;
    display:flex;
    gap:15px;
    flex-direction: column;

}

.linkBoxDown {
    
    margin:0;
    padding:0;
    display:flex;
    gap:15px;
    flex-direction: column;
    align-items: flex-start;

}

.ddMainbutton {
    padding:10px 16px;
    background-color: var(--DD-Light-Green);
    color:#fff;
    border-radius:60px;
    display:inline-flex;
    align-items: center;
    gap:10px;
    margin:0;
    font-weight:400;
    text-decoration:none;
    width:100%;
    justify-content: space-between;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featureLosenge {
    padding:10px 16px;
    background-color: var(--DD-V-Dark-Green);
    color:#fff;
    border-radius:60px;
    display:inline-flex;
    align-items: center;
    gap:10px;
    margin:0;
    font-weight:400;
    text-decoration:none;
    width:auto;
    justify-content: space-between;
    align-content: center;
}

.featureLosenge.fli1:before {

    content:"";
    width:20px;
    height:20px;
    background:url(./src/icon-pink-warning.svg) center center no-repeat;
    background-size:contain;
    
}

.featureLosenge.fli2:before {

    content:"";
    width:20px;
    height:20px;
    background:url(./src/icon-badge-tick-pink.svg) center center no-repeat;
    background-size:contain;
    
}

.pinkButton {

    background-color: var(--DD-Dark-Pink);

}

.greyButton {

    background-color: var(--DD-Dark-Grey);

}

@media (min-width: 576px) {

    .ddMainbutton {
        
        width:auto;
        justify-content: space-between;
        
    }

    .linkBox {
    display:flex;
    flex-direction: row;
    }


}

.ddMainbutton:after {
    
    content: "";
    width: 20px;
    height: 20px; 
    background: url(./src/ddChevronRightDarkGreen.svg) center center no-repeat;
    background-size: auto;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    
}

.pinkButton:after {
    
    background: url(./src/ddChevronRightPink.svg) center center no-repeat;
    background-size: auto;
    
}

.greyButton:after {
    
    background: url(./src/ddChevronRightPink.svg) center center no-repeat;
    background-size: auto;
    
}

.ddMainbutton:hover {
    
    filter: drop-shadow(0px 5px 4px var(--DD-V-Dark-Green));
    box-shadow: inset 1px 1px var(--DD-Light-Green);
    background: var(--DD-Dark-Green) ;

}

.pinkButton:hover {
    
    filter:none !important;
    box-shadow: inset 1px 1px var(--DD-Light-Pink);
    background: var(--DD-Dark-Pink) ;
}

.greyButton:hover {
    
    filter:none !important;
    box-shadow: inset 1px 1px #9a9a9ab5 !important;
    background: #6a6a6a !important;

}

.ddMainbutton:hover:after {
    
    margin-left:5px;
    background: url(./src/ddChevronRightDarkGreen.svg) center center no-repeat;
    background-size: auto;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;

}

.pinkButton:hover:after,
.greyButton:hover:after
{
    
    background: url(./src/ddChevronRightPink.svg) center center no-repeat;
    background-size: auto;
    margin-left:5px !important;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}


.ddMainbutton.ddMbLightBG:hover {
    
    filter: drop-shadow(0px 0px 9px #7eede27d);

}

.ddMbPink {

    background-color: var(--DD-Pink);

}

.ddMainbutton.ddMbPink:hover {

    box-shadow: inset 1px 1px #f8a6ad;
    background-color: var(--DD-Dark-Pink);
    filter: drop-shadow(0px 0px 6px #e9616d42);

}

.ddMainbutton.ddMbPink:hover:after {
    
    margin-left:5px;
    background: url(./src/ddChevronRightPink.svg) center center no-repeat;
    background-size: auto;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;

}

.ddMbPink:after {
    
    content: "";
    width: 20px;
    height: 20px; 
    background: url(./src/ddChevronRightPink.svg) center center no-repeat;
    background-size: auto;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    
}

#submitBtn {

    width:100%;
    background:var(--DD-Light-Pink);
    color:#fff;
    border:none;
    font-size: var(--DD-p-SM);
    padding: 10px 0;
    margin:10px 0 0 0;

}

.buttonShrink {
    /* width:200px !important; */
    text-align:center !important;
    display:block !important;
    justify-content: center;
}


.buttonShrink:after {

    display:none;
    
}

@media (min-width: 768px) {

    #submitBtn  { font-size:var(--DD-p-MD); }

}

@media (min-width: 1200px) {

    #submitBtn  { font-size:var(--DD-p-LG); }

}

.icon-badge-center {

    width:100%;
    background: url(./src/icon-badge-tick-pink.svg) center center no-repeat;
    background-size: contain;
    height:30px;
    margin-bottom:20px;

}

.icon-people {

    background: url(./src/icon-people-pink.svg) center center no-repeat;
    background-size: contain;

}

.icon-lightning {

    background: url(./src/icon-lightning-pink.svg) center center no-repeat;
    background-size: contain;

}

.icon-cup {

    background: url(./src/icon-cup-pink.svg) center center no-repeat;
    background-size: contain;

}


@media (min-width: 768px) {
    
    .icon-badge-center {
    
        margin-bottom:0px;
    
    }
    
}

.title-caps {

    text-transform: uppercase;
    letter-spacing: 2px;


}

.flexDown {display:flex;flex-direction: column;align-items: center;}

#formContainer {

    border:1px solid #def5f3;
    padding:20px 20px 10px 20px;
    border-radius:5px;
    background:#fbffff;
    
}

#formContainer2 {

    border-top:none;
    padding-top:0px;
    margin-top:0px;
    padding-bottom:20px;
    
}

@media (min-width: 340px) { 

    #formContainer2 {
    
        border-top:1px solid #e9616d6e;
        padding-top:5px;
        margin-top:20px;
        
    }
    
}

@media (min-width: 576px) { 

    #formContainer2 {
    
        border-top:1px solid #e9616d6e;
        padding-top:20px;
        margin-top:40px;
        padding-bottom:40px;
        
    }
    
}

#formContainer label,
#formContainer p,
#formContainer2 label,
#formContainer2 p {

    color:#ffccd5;
    
}

/* HOMEPAGE QUOTE BUTTONS */

.ddHpQuoteButtons {

    display:flex;
    flex-direction: column;
    gap:20px;
    padding:20px 0 30px 0;
    
}

.ddHpQuoteButtons a {
    background:#fff;
    box-shadow: 0 4px 14.7px 0 rgba(36, 211, 194, 0.13);
    text-decoration:none;
    padding:10px 20px 10px 10px;
    border-radius:100px;
    color:var(--DD-V-Dark-Green);
    font-weight:500;
    display:flex;
    align-items: center;
    justify-content: space-between;
    width:100%;
    text-align:left;
    overflow: hidden;
    white-space: nowrap;
    gap:20px;
}

.ddHpQuoteButtons a:hover {

    background:#d4ebe7;

}
    
.ddHpQuoteButtons a:after {

    content: "";
    width: 100%;
    height: 20px;
    background: url(./src/ddChevronRightPink.svg) right center no-repeat;
    background-size:contain;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    
}

.ddHpQuoteButtons a:hover:after {
    
    margin-right:5px;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;

}

.ddHpQuote1:before,
.ddHpQuote2:before,
.ddHpQuote3:before,
.ddHpQuote4:before {

    content: "";
    min-width: 40px !important;
    width: 40px !important;
    min-height: 40px !important;
    height: 40px !important;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    border-radius:100px;

}

.ddHpQuote1:hover:before,
.ddHpQuote2:hover:before,
.ddHpQuote3:hover:before,
.ddHpQuote4:hover:before {

    -webkit-box-shadow: 0 0 1px 3px #000 inset;
    -moz-box-shadow: 0 0 1px 3px #000 inset;
    box-shadow: 0 0 11px 1px #0000007a inset;

}

@media (min-width: 1400px) {

    .ddHpQuote1:before,
    .ddHpQuote2:before,
    .ddHpQuote3:before,
    .ddHpQuote4:before {
    
        content: "";
        width: 60px  !important;
        height: 60px  !important;
        min-width: 60px  !important;
        min-height: 60px  !important;
    
    }

    .ddHpQuoteButtons a {

        font-size:20px;
    
    }

}

.ddHpQuote1:before {

    background: url(./src/icon-hp-quote-1.svg) left center no-repeat;
    background-size:contain;
    
}

.ddHpQuote2:before {

    background: url(./src/icon-hp-quote-2.svg) left center no-repeat;
    background-size:contain;
    
}

.ddHpQuote3:before {
   
    background: url(./src/icon-hp-quote-3.svg) left center no-repeat;
    background-size:contain;
    
}

.ddHpQuote4:before {

    background: url(./src/icon-hp-quote-4.svg) left center no-repeat;
    background-size:contain;

}

#quoteStart {
    
  scroll-margin-top: 120px;
    
}


/* HOMEPAGE SERVICE BUTTONS */

.ddHpServiceButtons {

    display:flex;
    flex-direction: column;
    gap:20px;
    padding:20px 0 0px 0;
    
}

.ddHpServiceButtons a {
    background:#22514c8a;
    text-decoration:none;
    padding:10px 20px 10px 10px;
    border-radius:10px;
    color:#fff;
    font-weight:500;
    display:flex;
    align-items: center;
    width:100%;
    text-align:left;
    gap:20px;
    font-size:13px;
    overflow: hidden;
    white-space: nowrap;
    -webkit-backdrop-filter: blur(8px);
    -moz-backdrop-filter: blur(8px);
    -ms-backdrop-filter: blur(8px);
    -o-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    justify-content: space-between;
}

@media (min-width: 389px) {

    
    .ddHpServiceButtons a {
      
        font-size:16px;
        
    }

}

@media (min-width: 576px) {

    
    .ddHpServiceButtons a {
      
        font-size:18px;
        
    }

}

.ddHpServiceButtons a:hover {

    background:#2d69628a;

}

.ddHpServiceButtons a:after {
    
    content: "";
    width: 100%;
    height: 20px;
    background: url(./src/ddChevronRightPink.svg) right center no-repeat;
    background-size:contain;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;

}

.ddHpServiceButtons a:hover:after {
    
   margin-right:5px;

}

.ddHpService1:before {

    background: url(./src/ddHpService1.png) left center no-repeat;
    background-size:cover;
    
}

.ddHpService2:before {

    background: url(./src/ddHpService2.png) left center no-repeat;
    background-size:cover;
    
}

.ddHpService3:before {
   
    background: url(./src/ddHpService3.png) left center no-repeat;
    background-size:cover;
    
}

.ddHpService1:before,
.ddHpService2:before,
.ddHpService3:before
{

    content: "";
    min-width: 65px !important;
    width: 65px !important;
    height: 70px;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    border-radius:5px;

}

@media (min-width: 576px) {

    .ddHpService1:before,
    .ddHpService2:before,
    .ddHpService3:before
    {
    
        content: "";
        min-width: 145px !important;
        width: 145px !important;
    
    }

}

.pinkText {

    color:var(--DD-Pink);

}

.ddBigBoldSideTitle {
    
}

@media (min-width: 768px) {

    .ddBigBoldSideTitle {
        margin-right: 15%;
    }

}

@media (min-width: 1200px) {

    .ddBigBoldSideTitle {
        
        margin-right: 10%;
    
    }

}

/* HP Grid */

.ddHpGrid {

    display: grid;
    row-gap: 10px;
    align-self: stretch;

}

@media (min-width: 768px) {

    .ddHpGrid {

        display: grid;
        row-gap: 30px;
        column-gap: 30px;
        align-self: stretch;
        grid-template-rows: repeat(2, minmax(0, 1fr));
        grid-template-columns: repeat(2, minmax(0, 1fr));
    
    }

}

.ddHpGridBox {
    
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align:center;

}

.ddHpGridBox:before {

    width:100%;
    height:30px;
    margin:0 0 10px 0;
    content:"";
    background: url(./src/icon-badge-tick-pink.svg) center center no-repeat;
    background-size:contain;
    
}

/* Subpage Grey Header */

.logoHouse {

    width:100%;
    background: url(./src/logoWhiteHouse.svg) center center no-repeat;
    background-size:contain;
    height:50px;
    
}

.logoCuredd {

    width:100%;
    background: url(./src/logo-dbg-curedd-house.svg) center center no-repeat;
    background-size:contain;
    height:50px;
    
}

/* HOMEPAGE GREEN HEADER */

.subGreyHeaderLarge {
    
    color:#fff;
    padding: 50px 30px;
    overflow:hidden;
    position:relative;
    border:none;
    display:inline-flex;
    flex-direction: column;
    gap:30px;
    align-items: center;
    background: #525252;
    z-index: 0;
    width:100%;

}

@media (min-width: 768px) { 

    .subGreyHeaderLarge {
    
        padding:80px 80px;
        align-items: flex-start;

    }
    
    .subLeftText {

        padding-right:clamp(10px, 10svw, 60px);
    
    }

}

@media (min-width: 1200px) { 

    .subGreyHeaderLarge {
    
        padding:120px;
        gap:40px;
 
    }   

}

.subGreyHeaderLarge h1 {

    color: var(--DD-Lighter-Green);
    
}

.subGreyHeaderLarge h2 {

    color:#fff;
    
}

.subGreyHeaderLarge h1,
.subGreyHeaderLarge h2
{

    padding:0;
    margin:0;
    text-align:center !important;
    width:100%;
    
}

.subGreyHeaderLarge h2,
.titleGroup h3 { 
    
    font-size: var(--DD-h4-SM);
    font-weight:200;
    color:#fff; 

}

.titleGroup h2 { 
    
    padding-bottom:20px !important;

}

.titleGroup h3 { 
    
    text-align:center !important;

}

@media (min-width: 768px) {

    .subGreyHeaderLarge h2,
    .titleGroup h3 { font-size:var(--DD-h4-MD); }

}

@media (min-width: 992px) { 

    .subGreyHeaderLarge h2,
    .titleGroup h3{ padding: 0px 80px; }
    .titleGroup h2 { padding-bottom:30px !important; }

}

@media (min-width: 1200px) {

    .subGreyHeaderLarge h2,
    .titleGroup h3 { font-size:var(--DD-h4-LG); }
    .subGreyHeaderLarge h2 { padding: 0px 170px; }

}

@media (min-width: 1400px) {

    .subGreyHeaderLarge h2,
    .titleGroup h3{ font-size:var(--DD-h4-VLG); }
    .titleGroup h2 { padding-bottom:40px !important; }

}

.subGreyHeaderLarge::after {
    
    content: "";
    position: absolute;
    width: 3000px;
    height: 3000px;
    top: -100%;
    left: -180%;
    z-index: -2;
    background: url(./src/ddRepeatingBg4.svg) center center repeat;
    background-size: 5% auto;
    transform: rotate(-58deg) !important;
    
}

@media (min-width: 576px) { 

    .subGreyHeaderLarge::after {
        

        top: -100%;
        left: -150%;
        
    }

}

@media (min-width: 992px) { 

    .subGreyHeaderLarge::after {
        
        content: "";
        position: absolute;
        width: 3000px;
        height: 3000px;
        top: -100%;
        left: -50%;
        z-index: -2;
        background: url(./src/ddRepeatingBg4.svg) center center repeat;
        background-size: 7% auto;
        
    }
    
}

.subHeaderFlexRow {
    display:flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    justify-content: center;
    width: 100%;
    flex-wrap: nowrap;
}

@media (min-width: 768px) {

    .subHeaderFlexRow {
        display:flex;
        flex-direction: row;
        gap: 20px;
        flex-wrap: wrap;
    }

}

@media (min-width: 1400px) { 

    .subHeaderFlexRow {
        
        display:flex;
        flex-direction:row;
        align-items: center;
        gap:20px;
        
    }

}

.subHeaderLozTick {
    display:flex;
    flex-direction:row;
    background: #00000033;
    border:1px solid #aaaaaa2e;
    padding:10px 16px 10px 8px;
    border-radius: 100px;
    gap:5px;
    -webkit-backdrop-filter: blur(2px);
    -moz-backdrop-filter: blur(2px);
    -ms-backdrop-filter: blur(2px);
    -o-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    align-items: center;
    /* width:100%; */
    justify-content: center;
    font-weight:500;
    white-space: nowrap;
    font-size: 14px;
}

@media (min-width: 576px) {
    
    .subHeaderLozTick {
    
        width:auto;
        
    }  

}

.subHeaderLozTick:before {
    
    content: "";
    height: 24px;
    width: 24px;
    display: block;
    background: url(./src/icon-badge-tick-pink.svg) center center no-repeat;
    background-size: contain;
    float: left;
    margin: 0 4px 0 4px;
    
}

/* LISTS */

.listGreenTicks {
    
    display:flex;
    flex-direction: column;
    list-style:none;
    padding:0;
    margin:0 0 30px 0;
    gap:10px;

}

.listGreenTicks li {
    font-weight:500;
    font-size:16px;
    color:var(--DD-V-Dark-Green);
    display: flex;
    flex-direction: row;
    gap: 10px !important;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.listGreenTicks li:before {
    content:"";
    width: 20px !important;
    height:20px;
    background: url(./src/icon-badge-tick-green.svg) center center no-repeat;
    background-size: contain;
    flex-shrink: 0;
}

@media (min-width: 768px) {

    .listGreenTicks li {
        
        font-size:20px;
        
    }

}

.serviceTick {
    
    display:flex;
    flex-direction: column;
    list-style:none;
    padding:0;
    margin:0 0 20px 0;
    gap:10px;

}

.serviceTick li {
    
    font-weight:500;
    font-size:16px;
    color:var(--DD-V-Dark-Green);
    display:flex;
    flex-direction: row;
    gap:10px;
    align-items: center;
    
}

@media (min-width: 768px) {

    .serviceTick li {
        
        font-size:18px;
        
    }

}

.serviceTick li:before {
    
    content:"";
    width:20px;
    height:20px;
    background: url(./src/icon-pink-tick-2.svg) center center no-repeat;
    background-size: contain;
    
}

/* SWIPER */

.swiper {

    padding: 15px 0 40px 0 !important;

}

@media (min-width: 992px) { 
        
    .swiper {
    
        padding: 0 0 40px 0 !important;
    
    }

}

.swiper-slide {
    
    text-align: left;
    font-size: 18px;
    background: #CBF1EA;
    display: flex !important;
    flex-direction:column;
    justify-content: center;
    align-items: flex-start;
    border-radius: 10px;
    gap:10px;
    padding:20px;

}

.swiper-slide img {

    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;

}

.quoteDetails {
    
    display: flex !important;
    flex-direction:row;
    align-items: center;
    gap:10px;
    font-weight:500;
    color:var(--DD-Dark-Green);
    
}

.sliderPadding {

    padding-bottom: calc(var(--DD-Internal-Padding-SM) - 30px);
    
}

@media (min-width: 768px) { 

    .sliderPadding {
    
        padding-bottom: calc(var(--DD-Internal-Padding-MD) - 30px);
        
    }

}

@media (min-width: 1400px) { 

    .sliderPadding {
    
        padding-bottom: calc(var(--DD-Internal-Padding-LG) - 30px);
        
    }

}

.swiperIcon {

    width:40px;
    height:40px;

}

.icon-g-1 {

    background: url(./src/icon-g-s-s.png) center center no-repeat;
    background-size: contain;

}

.icon-g-2 {

    background: url(./src/icon-g-i-o.png) center center no-repeat;
    background-size: contain;

}

.icon-g-3 {

    background: url(./src/icon-g-r-m.png) center center no-repeat;
    background-size: contain;

}

.icon-g-4 {

    background: url(./src/icon-g-c-n.png) center center no-repeat;
    background-size: contain;

}

/* STAFF GRID */

.staffGrid {
    
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 15px;
    grid-row-gap: 30px;

}

@media (min-width: 768px) {

    .staffGrid {
        
        grid-column-gap: 30px;
    
    }

}

.gridBox {

    margin-top:20px;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    border-radius: 10px;
    border: 1px solid rgba(204, 204, 204, 0.29);
    box-shadow: 0 0 14px 0 rgb(36 211 194 / 10%);
    background:#fff;

}

.gridBox:nth-child:(0) {

    grid-area: 1 / 1 / 2 / 2;

}

.gridBox:nth-child:(1) {

    grid-area: 1 / 2 / 2 / 3;

}

.gridPhoto1 {
    
    width:100%;aspect-ratio: 1 / 1;
    background: url(./src/staff-pic-1.jpg) center center no-repeat;
    background-size: cover;
    border-radius:5px;
    margin-bottom:20px;
    box-shadow: inset 0 0 10px #7c7c7c78;

}

.gridPhoto2 {
    
    width:100%;aspect-ratio: 1 / 1;
    background: url(./src/staff-pic-2.jpg) center center no-repeat;
    background-size: cover;
    border-radius:5px;
    margin-bottom:20px;
    box-shadow: inset 0 0 10px #7c7c7c78;

}

.staffName {

    font-weight:500;
    font-size:22px;
    color:var(--DD-Light-Green);
    
}

.imageStack {

    width:100%;
    display: flex;
    gap:30px;
    padding:10px 0 0 0;
    margin-bottom:40px;
    position:relative;

}

.imageStack img {

    border-radius: 10px;
    width:40%;
    display:flex;
    border:#052e2a57 2px solid;
    box-shadow: 0 0 14px 0 rgb(14 84 77 / 30%);
    
}

.imageStack img:nth-child(2) {

    margin-top:20px;
    margin-bottom:-20px;
    position:absolute;
    left:30%;
    
}

.imageStack img:nth-child(3) {

    margin-top:40px;
    margin-bottom:-40px;
    position:absolute;
    left:60%;

}

.disruptGrid {

    display:flex;
    flex-direction:column;
    gap:20px;
    padding-top:20px;

}

.disruptBox {
    
    background:#F7F7F7;
    border-radius:10px;
    padding:20px;
    text-align:center;
    display:flex;
    flex-direction:column;
    gap: 20px;
    justify-content: center;

}

.disruptBox h6 {

    color:var(--DD-V-Dark-Green);
    padding:0 !important;
    margin:0 !important;
    font-size: var(--DD-h3-SM);
    
}

.disruptBox p {

    padding:0 !important;
    margin:0 !important;
    
}

@media (min-width: 1200px) {
    
    .disruptGrid {
        
        padding-top:30px;
        display: grid;
        grid-column-gap: 20px;
        grid-row-gap: 20px;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
    
    }
    
    .disruptBox {
    
        background:#F7F7F7;
        border-radius:10px;
        padding:24px;
        
    }
    
    .disruptBox:nth-child(1) {
    
        order:1;
    
    }
    
    .disruptBox:nth-child(2) {
    
        order:2;
    
    }
    
    .disruptBox:nth-child(3) {
    
        order:3;
    
    }
    .disruptBox:nth-child(4) {
    
        order:4;
    
    }

}

.disrupt-icon-1,
.disrupt-icon-2,
.disrupt-icon-3,
.disrupt-icon-4,
.disrupt-icon-5,
.disrupt-icon-6,
.disrupt-icon-7 {

    width:100%;
    height: 30px;

}

.disrupt-icon-1 {

    background: url(./src/disrupt-icon-1.svg) center center no-repeat;
    background-size: contain;

}

.disrupt-icon-2 {

    background: url(./src/disrupt-icon-2.svg) center center no-repeat;
    background-size: contain;

}

.disrupt-icon-3 {

    background: url(./src/disrupt-icon-3.svg) center center no-repeat;
    background-size: contain;

}

.disrupt-icon-4 {

    background: url(./src/disrupt-icon-4.svg) center center no-repeat;
    background-size: contain;

}

.disrupt-icon-5 {

    background: url(./src/icon-pink-clock.svg) center center no-repeat;
    background-size: contain;

}

.disrupt-icon-6 {

    background: url(./src/icon-pink-trust.svg) center center no-repeat;
    background-size: contain;

}

.disrupt-icon-7 {

    background: url(./src/icon-pink-people.svg) center center no-repeat;
    background-size: contain;

}

.subHeading { 
    
    padding:10px 0 0px 0; 
    color:var(--DD-Dark-Green);

}

.subHeading2 { 
    
    padding:10px 0 0px 0; 
    color:var(--DD-Dark-Green);
    text-transform: uppercase;
    font-size:14px;
    letter-spacing:1px;

}

@media (min-width: 768px) { 
        
    .subHeading2 { 
        
        padding:20px 0 ; 
    
    }

}

.featuredGrid {
    display:flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap:30px;
    width:100%;
    justify-content: center;
}

@media (min-width: 768px) { 
 
    .featuredGrid {
       display:flex;
       justify-content: flex-start;
    }

}

@media (min-width: 1200px) { 
 
    .featuredGrid {
       display:flex;
       justify-content: space-between;
    }

}

.featuredGrid div {

    width:80px;
    height:50px;
    overflow:hidden;
    text-indent:-1000px;
    
}

@media (min-width: 1200px) { 

    .featuredGrid div {

        width:120px;
        height:50px;
        overflow:hidden;
        text-indent:-1000px;
        
    }

}

.featuredGrid div:nth-child(1) {

    background: url(./src/featured-logo-1.svg) center center no-repeat;
    background-size: contain;

}

.featuredGrid div:nth-child(2) {

    background: url(./src/featured-logo-2.svg) center center no-repeat;
    background-size: contain;

}

.featuredGrid div:nth-child(3) {

    background: url(./src/featured-logo-3.svg) center center no-repeat;
    background-size: contain;

}

.featuredGrid div:nth-child(4) {

    background: url(./src/featured-logo-4.svg) center center no-repeat;
    background-size: contain;

}

.clientGrid {
    padding:20px 0 0 0;
    display:flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap:20px;
    width:100%;
    justify-content: center;
}

@media (min-width: 768px) { 
 
    .clientGrid {
       display:flex;
       justify-content: flex-start;
    }

}

@media (min-width: 1200px) { 
 
    .clientGrid {
        
       gap:30px;
        
    }

}

@media (min-width: 1200px) { 
 
    .clientGrid {
        
        padding:30px 0 0 0;
        gap:50px;
        
    }

}

@media (min-width: 1400px) { 
 
    .clientGrid {
        
        padding:30px 0 0 0;
        gap:20px;
        
    }

}

.clientGrid div {

    width:60px;
    height:40px;
    overflow:hidden;
    text-indent:-1000px;
    
}

@media (min-width: 1200px) { 

    .clientGrid div {

        width:90px;
        height:50px;
        overflow:hidden;
        text-indent:-1000px;
        
    }

}

@media (min-width: 1400px) { 

    .clientGrid div {

        width:150px;
        height:90px;
        overflow:hidden;
        text-indent:-1000px;
        border:1px solid #c0c0c059;
        padding:20px !important;
        border-radius:5px;
        box-shadow: 0 0 14px 0 rgb(14 84 77 / 7%);
        
    }

}

.clientGrid div:nth-child(1) {

    background: url(./src/client-mears.svg) center center no-repeat;
    background-size: contain;

}

.clientGrid div:nth-child(2) {

    background: url(./src/client-rhp.svg) center center no-repeat;
    background-size: contain;

}

.clientGrid div:nth-child(3) {

    background: url(./src/client-nhg.svg) center center no-repeat;
    background-size: contain;

}

.clientGrid div:nth-child(4) {

    background: url(./src/client-luton.svg) center center no-repeat;
    background-size: contain;

}

.clientGrid div:nth-child(5) {

    background: url(./src/client-lq.svg) center center no-repeat;
    background-size: contain;

}

.clientGrid div:nth-child(6) {

    background: url(./src/client-scdc.svg) center center no-repeat;
    background-size: contain;

}

.clientGrid div:nth-child(7) {

    background: url(./src/client-wandle.svg) center center no-repeat;
    background-size: contain;

}

.clientGrid div:nth-child(8) {

    background: url(./src/client-purdy.svg) center center no-repeat;
    background-size: contain;

}

.clientGrid div:nth-child(9) {

    background: url(./src/client-seq.svg) center center no-repeat;
    background-size: contain;

}

.clientGrid div:nth-child(10) {

    background: url(./src/client-mcp.svg) center center no-repeat;
    background-size: contain;

}

.clientGrid div:nth-child(11) {

    background: url(./src/client-fsg.svg) center center no-repeat;
    background-size: contain;

}

.clientGrid div:nth-child(12) {

    background: url(./src/client-ul.svg) center center no-repeat;
    background-size: contain;

}

.clientGrid div:nth-child(13) {

    background: url(./src/client-connells.svg) center center no-repeat;
    background-size: contain;

}

@media (min-width: 1400px) {

    .clientGrid div:nth-child(1) { background-size: auto 36px; }
    .clientGrid div:nth-child(2) { background-size: auto 50px; }
    .clientGrid div:nth-child(3) { background-size: auto 50px; }
    .clientGrid div:nth-child(4) { background-size: auto 50px; }
    .clientGrid div:nth-child(5) { background-size: auto 50px; }
    .clientGrid div:nth-child(6) { background-size: auto 46px; }
    .clientGrid div:nth-child(7) { background-size: auto 26px; }
    .clientGrid div:nth-child(8) { background-size: auto 26px; }
    .clientGrid div:nth-child(9) { background-size: auto 40px; }
    .clientGrid div:nth-child(10) { background-size: auto 36px; }
    .clientGrid div:nth-child(11) { background-size: auto 30px; }
    .clientGrid div:nth-child(12) { background-size: auto 26px; }
    .clientGrid div:nth-child(13) { background-size: auto 50px; }
    
}


/* ANIMATIONS */


@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

.disruptBox:nth-child(1).enable { 

    background: linear-gradient(130deg,rgba(247, 247, 247, 1) 25%, rgb(255, 255, 255) 50%, rgba(247, 247, 247, 1) 75%);
    background-size: 400% 100%;
    animation: gradientMove 1s ease-in-out 1;
    animation-delay: 1s;
    
}

.disruptBox:nth-child(2).enable {

    background: linear-gradient(130deg,rgba(247, 247, 247, 1) 25%, rgb(255, 255, 255) 50%, rgba(247, 247, 247, 1) 75%);
    background-size: 400% 400%;
    animation: gradientMove 2s ease-in-out 1;
    animation-delay: 1.5s;
    
}

.disruptBox:nth-child(3).enable {

    background: linear-gradient(130deg,rgba(247, 247, 247, 1) 25%, rgb(255, 255, 255) 50%, rgba(247, 247, 247, 1) 75%);
    background-size: 400% 400%;
    animation: gradientMove 2s ease-in-out 1;
    animation-delay: 2s;
    
}

.disruptBox:nth-child(4).enable {

    background: linear-gradient(130deg,rgba(247, 247, 247, 1) 25%, rgb(255, 255, 255) 50%, rgba(247, 247, 247, 1) 75%);
    background-size: 400% 400%;
    animation: gradientMove 2s ease-in-out 1;
    animation-delay: 2.5s;
    
}

.accredGrid {

    padding:0 0 0 0;
    display:flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap:20px;
    width:100%;
    justify-content: center;

}

@media (min-width: 768px) { 
 
    .accredGrid {

       display:flex;
       justify-content: flex-start;

    }

}

@media (min-width: 1200px) { 
 
    .accredGrid {
        
        display:flex;
        justify-content: flex-start;
        gap:30px;
        
    }

}

@media (min-width: 1400px) { 
 
    .accredGrid {
        
    
    }

}

.accredGrid div {

    width:60px;
    height:40px;
    overflow:hidden;
    text-indent:-1000px;
    
}

@media (min-width: 768px) { 
        
    .accredGrid div {
    
        width:82px;
        height:60px;
        
    }
    

}

@media (min-width: 1200px) { 

    .accredGrid div {

        width:128px;
        height:70px;
        border:1px solid #c0c0c059;
        padding:20px !important;
        border-radius:5px;
        box-shadow: 0 0 14px 0 rgb(14 84 77 / 10%);
        
    }

}

@media (min-width: 1400px) { 

    .accredGrid div {

        width:150px;
        height:90px;
        overflow:hidden;
        text-indent:-1000px;
        
    }

}

.accredGrid div:nth-child(1) {

    background: url(./src/accred-sc.svg) center center no-repeat;
    background-size: contain;

}

.accredGrid div:nth-child(2) {

    background: url(./src/accred-cpd.svg) center center no-repeat;
    background-size: contain;

}

.accredGrid div:nth-child(3) {

    background: url(./src/accred-chas.svg) center center no-repeat;
    background-size: contain;

}

.accredGrid div:nth-child(4) {

    background: url(./src/accred-nic.svg) center center no-repeat;
    background-size: contain;

}

.accredGrid div:nth-child(5) {

    background: url(./src/accred-cl.svg) center center no-repeat;
    background-size: contain;

}

.accredGrid div:nth-child(6) {

    background: url(./src/accred-lw.svg) center center no-repeat;
    background-size: contain;

}

.accredGrid div:nth-child(7) {

    background: url(./src/accred-cg.svg) center center no-repeat;
    background-size: contain;

}

.accredGrid div:nth-child(8) {

    background: url(./src/accred-dew.svg) center center no-repeat;
    background-size: contain;

}

@media (min-width: 1200px) {

    .accredGrid div:nth-child(1) { background-size: auto 66px; background-color:#fff; }
    .accredGrid div:nth-child(2) { background-size: auto 62px; background-color:#fff; }
    .accredGrid div:nth-child(3) { background-size: auto 50px; background-color:#fff; }
    .accredGrid div:nth-child(4) { background-size: auto 50px; background-color:#fff; }
    .accredGrid div:nth-child(5) { background-size: auto 50px; background-color:#fff; }
    .accredGrid div:nth-child(6) { background-size: auto 60px; background-color:#fff; }
    .accredGrid div:nth-child(7) { background-size: auto 52px; background-color:#fff; }
    .accredGrid div:nth-child(8) { background-size: auto 28px; background-color:#fff; }
    
}

.surveyGrid {
    
    display:flex;
    flex-wrap: wrap;
    flex-direction: column;
    border-radius: 5px;
    border: 1px solid #DFDFDF;
    box-shadow: 0 0 31.8px 0 rgba(182, 227, 222, 0.30);
    margin-bottom:20px;
    overflow:hidden;
    background:#fff
    
}

.surveyGrid div {
    
    display:flex;
    flex-direction: column;
    padding:30px;
    width:100%;
    border-bottom: 1px solid #DFDFDF;
    counter-increment: css-counter 1;

}

.surveyGrid div:before {
    
    content: counter(css-counter) "";
    background:var(--DD-V-Dark-Green);
    font-weight:600;
    font-size:10px;
    color:#fff;
    width:20px;
    height:20px;
    margin:0 0 16px 0;
    display:flex;
    justify-content: center;
    align-items: center;
    border-radius:3px;

}

.surveyGrid div:last-child {

    border-bottom:none;
    
}

.surveyGrid div h4,
.surveyGrid div p
{

    padding:0;
    margin:0;
    
}

.surveyGrid div h4
{

    padding:0 0 10px 0;
    
}

@media (min-width: 576px) {

    .surveyGrid {
        
        flex-direction: row;
        
    }
    
    .surveyGrid div {
        
        width:50%;
    
    }

    .surveyGrid div:nth-child(1) {
           
        border-right: 1px solid #DFDFDF;
        border-bottom: 1px solid #DFDFDF;
    
    }
    
    .surveyGrid div:nth-child(2) {
           
        border-right: none;
        border-bottom: 1px solid #DFDFDF;
    
    }
    
    .surveyGrid div:nth-child(3) {
           
        border-bottom: none;
        border-right: 1px solid #DFDFDF;
    
    }
    
    .surveyGrid div:nth-child(4) {
           
        border-bottom: none;
        border-right: none;
    
    }

}

@media (min-width: 768px) { 

    .surveyGrid {
        
        display:flex;
        flex-wrap: wrap;
        flex-direction: row;
        border-radius: 10px;
        border: 1px solid #DFDFDF;
        box-shadow: 0 0 31.8px 0 rgba(182, 227, 222, 0.30);
    
    }

}

.innerShadow1 {

    background: radial-gradient(170% 153% at 69% -20%, rgba(36, 211, 194, 0.00) 30%, rgba(36, 211, 194, 0.2) 100%), #FFF;
    box-shadow: 0 0 30px 0 rgba(176, 223, 218, 0.2) inset;
    position:relative;

}

.ddStaff1 {

    display:none;

}

@media (min-width: 768px) {

    .ddStaff1 {

        display:inline;
        width:300px;
        height:500px;
        background: url(./src/dd-staff-1.png) left bottom no-repeat;
        background-size:contain;
        position:absolute;
        bottom:0;
        left:0;

    }

}

@media (min-width: 1200px) {

    .ddStaff1 {

        width:400px;
        height:550px;

    }

}

.img-healthy-homes {

    width:100%;
    border-radius: 10px;
    margin:10px 0 30px 0;
    border:1px solid #1a857b6e;  
    filter: drop-shadow(0 0 10px rgb(0 150 136 / 21%));

}

.hpSec8 {

    overflow:hidden;
    position:relative;
    border:none;
    display:flex;
    width:100%;
    padding:40px;

}

.hpSec8::before {
    
    content: "";
    position: absolute;
    width: 100%;
    height: 60%;
    top:0;
    left:0;
    z-index: -1;
    background: linear-gradient(180deg, rgb(0 0 0 / 42%) 10%, rgb(0 37 33 / 1%) 100%), #034f4800;

}

.hpSec8::after {
    
    content: "";
    position: absolute;
    width: 400%;
    height: 400%;
    top: -15%;
    left: -120%;
    z-index: -2;
    background: url(./src/ddRepeatingBg4.svg) center center repeat;
    background-size: 6% auto;
    transform: rotate(-60deg) !important;

}

.hpSec8 p {

    color:#fff;
    padding:0;
    margin:0;

}

.hpSec8 img {

    filter: drop-shadow(0 10px 10px rgb(0 0 0 / 30%));
    
}

.quoteBox {

    display:flex;
    padding:0;
    gap:20px;
    
}

.quoteBox h3 {
    
    color:#fff;
    
}

.quoteBox::before {
    
    content: "";
    position: relative;
    width: 30px;
    height: 30px;
    background:url(./src/quoteLeft.svg) top center no-repeat;
    background-size:contain;

}

.quoteBox::after {
    
    content: "";
    position: relative;
    width: 30px;
    height: 30px;
    background:url(./src/quoteRight.svg) top center no-repeat;
    background-size:contain;

}

.allCenter {

    align-items: center;
    gap:20px;

}

.spacerLine {
    
    width:100%;
    height:1px;
    background: #ffffff33;

}

@media (min-width: 576px) { 
    
    .quoteBox {
    
        display:flex;
        padding:0 50px;
        gap:20px;
        
    }
    
}

@media (min-width: 768px) {

    .quoteBox {
    
        padding:0 90px;
    }

    .hpSec8 {

        padding:70px;
    
    }
    
    .quoteBox::after, 
    .quoteBox::before {
        
        width: 60px;
        height: 60px;
    
    }
    
    .hpSec8::after {
        
        content: "";
        position: absolute;
        width: 400%;
        height: 400%;
        top: -85%;
        left: -140%;
        z-index: -2;
        background: url(./src/ddRepeatingBg4.svg) center center repeat;
        background-size: 6% auto;
        transform: rotate(-60deg) !important;
    
    }
        
    .allCenter {
    
        align-items: center;
        gap:30px;
    
    }

}

/* FOOTER COLLAPSE */

/* Reset summary label appearance */

.foot-summary {
    
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    padding: 10px 0 0 0;
    align-content: center;
    flex-direction: row;
    width: 100%;
    border-top:1px solid #ffffff30;
    
}

.linkBlock:last-child {
    /* border-top:1px solid #ffffff30; */
    /* padding: 10px 0 0 0; */
}

@media (min-width: 768px) {

    .linkBlock:last-child {
        
        border-top:none;
        padding: 0px 0 0 0;
    
    }

    .foot-summary {
        
        border-top:none;
        display: flex;
        flex-direction: column;
        
    }

}

.foot-summary h6 {
  margin: 0 0 0 20px; /* keep your current h6 styling otherwise */
  width: 100% !important;
}

@media (min-width: 768px) {
    
    .foot-summary h6 {
          margin: 0 0 0 0px; /* keep your current h6 styling otherwise */
          width: 100% !important;
    }

}
/* Disclosure caret */

.foot-summary::after {
  content: "\25B6";
  transition: transform 0.2s ease;
  margin-left: 0.5rem;
  display: flex;
  font-size: 16px;
  align-items: center;
  align-content: center;
}

/* Hide the checkbox but keep it accessible to the label */
.foot-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Panels are collapsed by default (mobile-first) */

.foot-panel {
  display: none;
  padding: 10px 0 10px 0;
}

/* When a section is checked, show it */

.foot-toggle:checked ~ .foot-summary::after {
  transform: rotate(90deg);
}

.foot-toggle:checked ~ .foot-summary {
  border-bottom:none;
}

.foot-toggle:checked ~ .foot-panel {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
}

.foot-toggle:checked ~ .foot-panel.mobWide {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

/* Keyboard focus ring for accessibility */

.foot-summary:focus,
.foot-summary:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.foot-panel.mobWide a { width:100% !important; }

@media (min-width: 768px) {
    
  .foot-panel {display: flex;width: 100%;flex-direction: column;flex-wrap: wrap;padding:0;align-content: center;}
  .foot-panel.footDouble {display: flex;width: 100%;flex-direction: column;flex-wrap: wrap;padding:0;}
  .foot-summary { cursor: default; }
  .foot-summary::after { display: none; }
  .foot-toggle { display: none; }    

}

/* Grey Footer Accreditations */

.accredGreyGrid {
    
    display:flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 26px;
    width: 100% !important;
    padding: 10px 0 0 0;
    justify-content: center;
    
}

@media (min-width: 768px) {
    
    .accredGreyGrid {
    
        justify-content: space-between;
        padding: 0px 0 0 0;
        
    }

}

.accredGreyGrid div {

    width:40px;
    height:30px;
    overflow:hidden;
    text-indent:-1000px;
    
}

@media (min-width: 768px) {

    .accredGreyGrid div {

        width:60px;
        height:40px;
        
    }

}

@media (min-width: 1200px) { 
    
    .accredGreyGrid {
        
        padding:0px 0 0 0;
        
    }

    .accredGreyGrid div {

        width:90px;
        height:50px;
        
    }

}

@media (min-width: 1400px) { 
  
    .accredGreyGrid div {

        width:110px;
        height:50px;
        
    }

}

.accredGreyGrid div:nth-child(1) {background: url(./src/accred-grey-cg.svg) left center no-repeat;background-size: contain;}

.accredGreyGrid div:nth-child(2) {

    background: url(./src/accred-grey-cl.svg) center center no-repeat;
    background-size: contain;

}

.accredGreyGrid div:nth-child(3) {

    background: url(./src/accred-grey-sc.svg) center center no-repeat;
    background-size: contain;

}

.accredGreyGrid div:nth-child(4) {

    background: url(./src/accred-grey-nic.svg) center center no-repeat;
    background-size: contain;

}

.accredGreyGrid div:nth-child(5) {

    background: url(./src/accred-grey-vc.svg) center center no-repeat;
    background-size: contain;

}

.accredGreyGrid div:nth-child(6) {

    background: url(./src/accred-grey-cpd.svg) center center no-repeat;
    background-size: contain;

}

.accredGreyGrid div:nth-child(7) {

    background: url(./src/accred-grey-lw.svg) center center no-repeat;
    background-size: contain;

}

.accredGreyGrid div:nth-child(8) {
    
    background: url(./src/accred-grey-dew.svg) right center no-repeat;
    background-size: contain;

}


.featuredHpGrid {
    display:flex;
    flex-wrap: wrap;
    flex-direction: row;
        justify-content: center;
    gap:30px;
    width:100%;
}

@media (min-width: 768px) { 
 
    .featuredHpGrid {
        
        gap:40px;
        
    }

}

@media (min-width: 1200px) { 
 
    .featuredHpGrid {
        
        gap:50px;
        
    }

}

.featuredHpGrid div {

    width:80px;
    height:50px;
    overflow:hidden;
    text-indent:-1000px;
    
}

@media (min-width: 1200px) { 

    .featuredHpGrid div {

        width:120px;
        height:50px;
        overflow:hidden;
        text-indent:-1000px;
        
    }

}

.featuredHpGrid div:nth-child(1) {

    background: url(./src/featured-logo-1.svg) center center no-repeat;
    background-size: contain;

}

.featuredHpGrid div:nth-child(2) {

    background: url(./src/featured-logo-2.svg) center center no-repeat;
    background-size: contain;

}

.featuredHpGrid div:nth-child(3) {

    background: url(./src/featured-logo-3.svg) center center no-repeat;
    background-size: contain;

}

.featuredHpGrid div:nth-child(4) {

    background: url(./src/featured-logo-4.svg) center center no-repeat;
    background-size: contain;

}

.accordion-item .accordion-button,
.accordion-item:first-of-type .accordion-button {
    
    box-shadow:none;
    margin:0;
    color:#565656;
     
}

.accordion-button:not(.collapsed) {

    background:#f9f9f9;

}

.latestBlogPosts {

    display:flex;
    flex-direction:column;
    gap:30px;
    
}

.articleLatest {
    
    width:100%;
    overflow:hidden;
    
}

.articleLatest h5 {

    width: 100%; 
    overflow: hidden; 
    white-space: nowrap;
    text-overflow: ellipsis; 

}

.articleLatest p {

    width: 100%; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    padding:0;
    margin:0;

}

.articleLatest .articleImageWrapper {

    width:100%;
    
}

.articleLatest .articleImageWrapper img {

    width:100%;
    border-radius: 20px;
    
}

.articleImageWrapper {

    position:relative;
    border-radius: 20px;
    padding:0 0 20px 0;
  
}

.articleDate {

    position:absolute;
    top:0;
    left:0;
    z-index:1;
    background:var(--DD-Dark-Pink);
    padding:10px 15px;
    border-radius: 0px 0 10px 0;
    color:#fff;
    font-weight:600;
    letter-spacing:0.5px;
    font-size:12px;

    
}

.articleSmaller {
    
    display:flex;
    flex-direction:row;
    gap:20px;
    align-items: center;

}

.articleSmaller .articleImageWrapper { 

    padding:0 0 0px 0;

}

.articleSmaller .articleText {

    display:flex;
    flex-direction:column;
    gap:10px;
    width:100%;
    overflow:hidden;
    
}

.articleSmaller .articleImageWrapper img {

    width:200px;
    border-radius: 20px;
    aspect-ratio: 40 / 21 !important; 
    
}

.articleSmaller h5 {

    font-size: calc(100% - 0.1px);
    padding:0;
    margin:0;
    width: 100%; 
    overflow: hidden; 
    white-space: nowrap;
    text-overflow: ellipsis; 

}

.articleSmaller p {

    padding:0;
    margin:0;
    width: 100%; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    box-orient: vertical;

}

.pointsGrid {

    display:flex;
    flex-direction:column;
    gap:20px;
    
}

.pointsBox {
    display:flex;
    flex-direction: row;
    width: 100%;
    gap: 10px;
}

.pointsBox h6,
.pointsBox p {

    padding:0;
    margin:0;

}

.pointsBox h6 {

    color:var(--DD-V-Dark-Green);
    
}

.pointsBox:before {
    
    content:"";
    width:20px;
    height:20px;
    background:url(./src/icon-badge-tick-pink.svg) center center no-repeat;
    background-size:contain;
    display:flex;
    margin:3px 0 0 0;
    
}

.pointsText {

    width:calc(100% - 30px);
    display:flex;
    flex-direction: column;
    gap: 10px;
    
}

.youTubeHolder {

    display:flex;
    flex-direction: column-reverse;
    background: url(./src/staff-pic-video.jpg) bottom center no-repeat;
    background-size:cover;
    width:100%;
    height:340px;
    align-items: center;
    border-radius:10px;

}

.youTubeHolder a {

    background:red;
    color:#fff;
    text-decoration:none;
    border-radius:60px;
    padding:10px 15px;
    font-size:16px;
    font-weight:500;
    margin:0 0 30px 0;
    display:flex;
    align-items: center;
    gap:10px;

}

.youTubeHolder a:after {

    content:"";
    display:flex;
    background: url(./src/icon-white-youtube.svg) center center no-repeat;
    background-size:contain;
    width:30px;
    height:20px;

}


.youTubeHolder2 {

    display:flex;
    flex-direction: column-reverse;
    background: url(./src/staff-pic-video2.jpg) bottom center no-repeat;
    background-size:cover;
    width:100%;
    height:340px;
    align-items: center;
    border-radius:10px;

}

.youTubeHolder3 {

    display:flex;
    flex-direction: column-reverse;
    background: url(./src/staff-pic-video3.jpg) bottom center no-repeat;
    background-size:cover;
    width:100%;
    height:340px;
    align-items: center;
    border-radius:10px;

}

.youTubeHolder2 a,
.youTubeHolder3 a {

    background:red;
    color:#fff;
    text-decoration:none;
    border-radius:60px;
    padding:10px 15px;
    font-size:16px;
    font-weight:500;
    margin:0 0 30px 0;
    display:flex;
    align-items: center;
    gap:10px;

}

.youTubeHolder2 a:after,
.youTubeHolder3 a:after {

    content:"";
    display:flex;
    background: url(./src/icon-white-youtube.svg) center center no-repeat;
    background-size:contain;
    width:30px;
    height:20px;

}

.awaabsBlock {

    width:100%;
    height:200px;
    background: var(--DD-Dark-Grey) url(./src/logo-dbg-awaabscouncil.svg) center center no-repeat;
    background-size: 100px auto;
    border-radius:10px;
    margin:0 0 30px 0;

}

.cureddBlock {

    width:100%;
    height:200px;
    background: var(--DD-Dark-Grey) url(./src/logo-dbg-curedd.svg) center center no-repeat;
    background-size: 100px auto;
    border-radius:10px;
    margin:0 0 30px 0;

}

.darkTitle {

    color:var(--DD-V-Dark-Green);
    padding: 10px 0 20px 0;

}

.contactMap {

    width:100%;
    height:400px;
    background: url(./src/map-image.jpg) center center no-repeat;
    background-size: cover;
    margin:0 0 30px 0;
    border-radius:10px;

}


.contactList {
    
    display:flex;
    flex-direction: column;
    list-style:none;
    padding:0;
    margin:0 0 20px 0;
    gap:10px;

}

.contactList li {
    
    font-weight:500;
    font-size:16px;
    color:var(--DD-V-Dark-Green);
    display:flex;
    flex-direction: row;
    gap:10px;
    align-items: center;
    
}

@media (min-width: 768px) {

    .contactList li {
        
        font-size:18px;
        
    }

}

.contactList li:nth-child(1):before {
    
    content:"";
    width:20px;
    height:20px;
    background: url(./src/icon-green-pin.svg) center center no-repeat;
    background-size: contain;
    
}

.contactList li:nth-child(2):before {
    
    content:"";
    width:20px;
    height:20px;
    background: url(./src/icon-green-phone.svg) center center no-repeat;
    background-size: contain;
    
}

.contactList li:nth-child(3):before {
    
    content:"";
    width:20px;
    height:20px;
    background: url(./src/icon-green-mail.svg) center center no-repeat;
    background-size: contain;
    
} 

#map-canvas {
    
    background-size: cover;
    margin: 0 0 25px 0;
    padding: 0;
    height: 300px;
    width: 100%;
    border-radius: 10px;
    filter: drop-shadow(0px 0px 8px #b9faee82);

}

@media (min-width: 768px) {

    #map-canvas {
        height: 500px;
        margin: 0 0 45px 0;
    }

}

@media (min-width: 1200px) {

    #map-canvas {
        height: 500px;
        margin: 0 0 65px 0;
    }

}

/* BLOG */ 

.blogListing {
    
    display:flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap:20px;
    width:100%;
    overflow:hidden;
    padding:0;
    margin:0 0 30px 0;
             
}

.blogArticle {

    width:100%;
    display:flex;
    flex-direction: column;
    gap:10px;
    position:relative;
    border:1px solid #e2e2e2;
    padding:0 0 0px 0;
    border-radius: 0 5px 5px 5px

}

.blogImage {

    border-radius:5px;
    overflow:hidden;
    
}

.blogImage img {

    width:100%;
    
}

.blogDate {

    padding:5px;
    position:absolute;
    top:0;
    left:0;
    z-index:1;
    background:var(--DD-Pink);
    color:#fff;
    font-weight:600;
    font-size:12px;
    border-radius:0 0px 5px 0px;
    
}

.blogArticle p {

    overflow: hidden; 
    text-overflow: ellipsis; 
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    margin:0 10px 10px 10px;
    
}

.blogArticle a {
    
    margin: 0 10px;
    padding:0;
    font-weight:400;
    text-decoration:none;

}

.postDetails {
    
    width:100%;
    display:flex;
    flex-direction: column;
    gap:20px;
    align-items: center;
    filter: drop-shadow(0px 0px 6px #00000045);
    
}

.postDetails div {
    
    display:flex;
    gap:10px;
    align-items: center;

}

.postDate:before {

    content:"";
    width:20px;
    height:20px;
    background: url(./src/icon-white-cal.svg) center center no-repeat;
    background-size: contain;

}

.postBy:before {

    content:"";
    width:20px;
    height:20px;
    background: url(./src/icon-white-author.svg) center center no-repeat;
    background-size: contain;


}

@media (min-width: 768px) {

    .blogListing {
        display:flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap:20px;
    }
    
    .postDetails {
        width:100%;
        display:flex;
        flex-direction: row;
        gap:20px;
        justify-content: center;
    }

    .blogArticle {
    
        width:calc(33.3% - calc(40px / 3));
        display:flex;
        flex-direction: column;
        gap:10px;
        position:relative;
        border-bottom:1px solid #e2e2e2;
    
    }
        
    .blogDate {
    
        font-size:14px;
        
    }

}

@media (min-width: 1200px) {
    
    .blogListing {
      
        gap:30px;
    }

    .blogArticle {
    
        width:calc(33.3% - 20px);
        display:flex;
        flex-direction: column;
        gap:20px;
        position:relative;
        border-bottom:1px solid #e2e2e2;
    
    }
    
    .blogArticle p {
    
        margin:0 20px 20px 20px;
        
    }
    
    .blogArticle a {
        
        margin: 0 20px;
        padding:0;
    
    }

}

.blogCat {

    padding:0 0 20px 0;
    margin:0;
    list-style:none;

}

.blogCat a {

    text-decoration: none;

}

.blogTaggedCat {
    
    padding:10px 0 20px 0;
    margin:0;
    list-style:none;
    display:inline-flex;
    gap:10px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    
}

.blogTaggedCat li {
    
    padding:0;
    margin:0;
    display: inline-flex;
    
}

.blogTaggedCat a {
    
    text-decoration: none;
    background:#606060;
    color:#fff;
    border-radius: 30px;
    padding: 6px 12px;
    margin:0;

}

.blogTaggedCat a:hover {
    
    text-decoration: none;
    background:#878787;

}

.blogHeaderCat {
    padding:0 0 20px 0;
    margin:0;
    list-style:none;
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap:10px;
    width:100%;

}

.blogHeaderCat li {
    
    padding:0;
    margin:0;
    display: inline-flex;
    font-size:14px;
    
}

.blogHeaderCat li a {
    
    text-decoration: none;
    background:#606060;
    color:#fff;
    border-radius: 30px;
    padding: 6px 12px;
    margin:0;
    font-size:14px;

}

.blogHeaderCat li a:hover {
    
    text-decoration: none;
    background:#3f3f3f;

}

.articleContent { 
    
    padding: 0 0 20px 0; 

}

.articleContent figure img {

    width:100%;
    border-radius: 5px;
    
}

.charityText {

    width:100%;
    text-align:center;
    font-size:14px;
    
}

.charityText span {

    color:var(--DD-Pink);
    
}

.tableAccred {

    display:flex;
    flex-direction:column;
    gap:20px;
    
}

.cellAccred {

    display:flex;
    flex-direction:column;
    gap:20px;
    
}

.cellImage {

    width:100%;
    border:1px solid #e1e1e1;
    border-radius:3px;
    height:80px;
    
}

.cellText,
.cellText p,
.cellText h5
{

    padding:0;
    margin:0;
    
}

@media (min-width: 992px) { 

    .cellAccred {
        
        display:flex;
        flex-direction:row;
        gap:20px;
        align-items: center;
    
    }
    
    .cellImage {
    
        width:120px;
        border:1px solid #e1e1e1;
        border-radius:3px;
        height:120px;
        flex-shrink:0;
        
    }     
    
}

.cellAccCG {

    background: url(./src/acc-cg.svg) center center no-repeat;
    background-size:contain;
    
}

.cellAccCL {

    background: url(./src/acc-cl.svg) center center no-repeat;
    background-size:contain;
    
}

.cellAccSC {

    background: url(./src/acc-sc.svg) center center no-repeat;
    background-size:contain;
    
}

.cellAccNIC {

    background: url(./src/acc-nic.svg) center center no-repeat;
    background-size:contain;
    
}

.cellAccVC {

    background: url(./src/acc-vc.svg) center center no-repeat;
    background-size:contain;
    
}

.cellAccCE {

    background: url(./src/acc-ce.svg) center center no-repeat;
    background-size:contain;
    
}

.cellAccDA {

    background: url(./src/acc-dp.svg) center center no-repeat;
    background-size:contain;
    
}

.cellAccLW {

    background: url(./src/acc-lw.svg) center center no-repeat;
    background-size:contain;
    
}

.cellAccCPD {

    background: url(./src/acc-cpd.svg) center center no-repeat;
    background-size:contain;
    
}

.cellText h4 { font-size: var(--DD-h4-SM); }

@media (min-width: 768px) {

    .cellText h4 { font-size:var(--DD-h5-MD); }

}

@media (min-width: 1200px) {

    .cellText h4 { font-size:var(--DD-h6-LG); }

}

@media (min-width: 1400px) {

    .cellText h4 { font-size:var(--DD-h6-VLG); }

}

.imageButtonBox {
    width:100%;
    display:flex;
    height:300px;
    align-items: center;
    flex-direction: column-reverse;
    border-radius:5px;
    border:1px solid #0000001c;
    margin:0 0 20px 0;
}

.imageButtonBox.photoStand {

    background: url(./src/pic-staff-stand.jpg) center center no-repeat;
    background-size:cover;
    
}

.imageButtonLink {
    
    color:#fff;
    text-decoration:none;
    padding:5px 12px;
    border-radius:100px;
    margin:0 0 20px 0;
    background: #C10230;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.25), 0 4px 4px 0 rgba(0, 0, 0, 0.1);
    display:flex;
    gap:10px;
    align-items: center;
    font-weight:500;
                 
}

.imageButtonLink:after {

    content:"";
    width:24px;
    height:14px;
    background: url(./src/icon-white-youtube.svg) center center no-repeat;
    background-size:contain;
    
}

.imageButtonLink:hover {
    
    background: #ea0606;

}

/* QUOTE FORM */


.form-section {
  display: none;
}

.form-section.active {
  display: block;
  margin-top: 1rem;
}

.question {
  font-weight: 600;
  margin-bottom: 30px;
}

.option-grid {
  display: flex;
  gap:10px;
  margin-bottom: 1.5rem;
  flex-direction: column;
}


@media (min-width: 340px) { 
    
    .option-grid {
        
      gap:20px;
        
    }

}

.option-card {

  width:100%;      
  background:#fff;
  box-shadow: 0 4px 14.7px 0 rgba(36, 211, 194, 0.13);
  text-decoration:none;
  /* padding:10px 20px 10px 10px; */
  padding:20px 20px 20px 20px;
  border-radius:100px;
  color:var(--DD-V-Dark-Green);
  font-weight:500;
  display:flex;
  align-items: center;
  justify-content: space-between;
  width:100%;
  text-align:left;
  overflow: hidden;
  white-space: nowrap;
  gap:10px;
    font-size:14px;

  
  transition: border-color 0.2s ease,
              box-shadow 0.2s ease,
              background 0.2s ease,
              transform 0.2s ease;

}

@media (min-width: 340px) { 
        
    .option-card {
        
        gap:16px;
        font-size:15px;
    
    }
    
}

@media (min-width: 576px) { 
        
    .option-card {
        
        gap:20px;
        font-size:16px;
    
    }
    
}
#section-1 .option-card {

  padding:10px 20px 10px 10px;
  
}

/* section-landlord-issue */
/* section-social-tenant-provider */

.formContBottomPad {
  
    border-bottom:1px solid #d1f0ed;
    padding-bottom:30px;
    margin-bottom:30px;

}

#section-1 .option-card:before {

    content: "";
    min-width: 30px !important;
    width: 30px !important;
    min-height: 30px !important;
    height: 30px !important;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    border-radius:100px;

}

@media (min-width: 340px) { 

    #section-1 .option-card:before {
    
        content: "";
        min-width: 40px !important;
        width: 40px !important;
        min-height: 40px !important;
        height: 40px !important;
        
    }

}

.option-card:after {

    content: "";
    width: 100%;
    height: 20px;
    background: url(../src/ddChevronRightPink.svg) right center no-repeat;
    background-size:contain;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    
}

.option-card:hover:after {
    
    margin-right:5px;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;

}

#section-1 .option-card:nth-child(1):before {

    background: url(../src/icon-hp-quote-1.svg) left center no-repeat;
    background-size:contain;
    
}

#section-1 .option-card:nth-child(2):before {

    background: url(../src/icon-hp-quote-2.svg) left center no-repeat;
    background-size:contain;
    
}

#section-1 .option-card:nth-child(3):before {
   
    background: url(../src/icon-hp-quote-3.svg) left center no-repeat;
    background-size:contain;
    
}

#section-1 .option-card:nth-child(4):before {

    background: url(../src/icon-hp-quote-4.svg) left center no-repeat;
    background-size:contain;

}

.option-card:hover {
  
  background:#d4ebe7;
  cursor:pointer;
}

.option-card.selected {
  background:#d4ebe7;
  box-shadow: 0 6px 30px rgb(20 171 135 / 22%);
}

.option-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-card__icon {
  display:none;
}



.nav-buttons {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

button {
  font-family: inherit;
}

.btn-back,
.btn-continue,
.btn-submit {
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.btn-back {
  background: #e2f0ee;
  color: #111827;
}

.btn-back:disabled {
  opacity: 0.5;
  cursor: default;
}

.btn-continue {
  margin-left: auto;
  background: #2563eb;
  color: #ffffff;
}

.paddingBottom20 {

  padding-bottom: 20px;

}

.btn-continue:disabled {
  opacity: 0.5;
  cursor: default;
}

.btn-submit {
  background:#25d3c2;
  color: #ffffff;
}

.btn-submit:hover {
  background:#0a9b8d;
  color: #ffffff;
}

.field-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .field-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .field-grid .full-width {
    grid-column: 1 / -1;
  }
}


.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 0.95rem;
}

.field textarea {
  min-height: 100px;
  resize: vertical;
}

.note {
  font-size: 0.85rem;
  color: #6b7280;
}

.loader {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1rem;
}

.loader span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #2563eb;
  animation: bounce 0.6s infinite alternate;
}

.loader span:nth-child(2) { animation-delay: 0.15s; }
.loader span:nth-child(3) { animation-delay: 0.3s; }

@keyframes bounce {
  from { transform: translateY(0); opacity: 0.6; }
  to { transform: translateY(-7px); opacity: 1; }
}

#section-result.success {
  border-left: 4px solid #16a34a;
  padding-left: 1rem;
}

#section-result.error {
  border-left: 4px solid #dc2626;
  padding-left: 1rem;
}

#thankYouMessage, 
#errorMessage,
#thankYouMessage2, 
#errorMessage2 {
    display: none;
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
    font-size: 16px;
    margin-bottom: 30px;
}

#thankYouMessage,
#thankYouMessage2{
    background-color: #d4edda;
    color: #155724;
}

#errorMessage,
#errorMessage2
{
    background-color: #f8d7da;
    color: #721c24;
}

.dz-disabled {
    opacity: 0.5;
}


.grecaptcha-badge {
    visibility: hidden;
}

.blogGrid {
    
    
    width:100%;
    overflow:hidden;
    padding:0;
    margin:0;
    display:flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap:20px;

}

.blogGrid .entry {

    width:100%;
    
}

.blogGrid .entry img {

    width:100%;
    border-radius:5px;
    margin:0 0 10px 0;
    

}

.blogGrid .entry .listContent p {

    padding:0 0 5px;
    margin:0
    
}

.blogGrid .listContent > p:last-child {

    color:#5cc7bd;
    padding:5px 0 0 0;
    
}

@media (min-width: 768px) { 
    
    .blogGrid {
    
        display:flex;
        flex-wrap: wrap;
        flex-direction: row;
        gap:30px;
    
    }
    
    .blogGrid .entry {
    
        width:calc(50% - 15px);
        
    }

}

@media (min-width: 1200px) { 
    
    .blogGrid {
    
        display:flex;
        flex-wrap: wrap;
        flex-direction: row;
        gap:30px;
    
    }
    
    .blogGrid .entry {
    
        width:calc(33.3% - 20px);
        
    }

}

.listContent h2 a {

    text-decoration:none;
    
}

.listContent h2 a,
.listContent h2 {

    padding:0;
    margin:0 0 15px;
    
}

.paginateBlog {

    width:100%;
    
}

.blogNav {
    
    display:flex;
    width:100%;
    justify-content: center;
    padding:30px 0;
    gap:5px;

    
}

.blogNav li {

    list-style:none;

}

.blogNav a,
.blogNav strong {

    padding:20px;
    text-decoration:none;

}

.blogNav a {

    background:#c1f6f0;
    font-weight:500;
    border-radius:10px;

    
}

.blogNav a.act {

    background:#e2faf7;
    font-weight:500;
    border-radius:10px;
    border:1px solid #91d1c957;

    
}



.blogNav a:hover {

    background:#a1e3dc;

}

.author-box {
    
    width:100%;
    display:flex;
    gap:30px;
    padding:20px 0;
    align-items: center;

}

.author-box div img{

    width:100px;
    border-radius:400px;
  
}

.author-box div h3,
.author-box div p
{

    padding:5px 0;
    margin:0;
    
}

.hpNewsBox {
    width:100%;
    height:auto;
    display:flex;
    flex-direction: row;
    flex-wrap: wrap; gap:30px;
}

.hpNewsentry {
    width:100%;
    height:auto;
    display:flex;
    flex-direction: row;
    flex-wrap: wrap;
}
@media (min-width: 992px) { 
.hpNewsentry:nth-child(2),
.hpNewsentry:nth-child(3) {
    
    width:calc(50% - 15px);
    height:auto;
    display:flex;
    flex-direction: column;

}
}

.newsImgContainer {
    
    position:relative;
    width:100%;
    border-radius:5px;
    overflow:hidden;
    margin:0 0 10px 0;
    
}

.newsImgContainer img {

    width:100%;
    z-index:1;
    position:relative;
    height:auto;
    top:0;
    left:0;
    
}

.newsDateContainer {
    
    position:absolute;
    top:0;
    left:0;
    background:var(--DD-Pink);
    width: auto;
    padding: 5px 10px;
    color:#fff;
    font-weight:500;
    letter-spacing:2px;
    z-index:2;
    justify-content: center;
    border-radius:  0 0 5px 0;

}

.quoteSection {

    padding:0 0 0 20px;
    border-left:1px solid #ccece8;
}


.quoteSection p:first-child {

    font-style:italic;
    font-weight:500;

}

.imageStack2 {
    
    width:100%;
    height:170px;
    display:flex;
    padding:20px 0;
    gap:20px;
    justify-content: center;
    align-items: center;

}

.imageStack2 img {

    height:110px;
    border-radius: 10px;
    border:#052e2a57 2px solid;
    box-shadow: 0 0 14px 0 rgb(14 84 77 / 30%);

}

@media (min-width: 576px) { 

    .imageStack2 {
        
        height:230px;
    
    }
        
    .imageStack2 img {
    
        height:170px;
    
    }
        
}

@media (min-width: 992px) { 

    .imageStack2 {
        
        height:260px;
    
    }
        
    .imageStack2 img {
    
        height:205px;
    
    }
        
}

.teamQuote {

    display:flex;
    flex-direction:column;
    gap:20px;


    
}

.teamBox {

    
    border:2px solid #ffffff;
    border-radius:5px;
    padding: 20px;
    display:flex;
    flex-direction:column;
    gap:20px;
    background:#ffffff70;
    
    
}

.teamDetails {
    
    display:flex;
    flex-direction:row;
    gap:20px;
    align-items: center;

}

.teamDetails img {

    width:46px;
    height:46px;
    border-radius:100px;
    border:1px solid #41414147;
}

.textTitles {

    display:flex;
    flex-direction:column;
    gap:10px;

}
    
.textTitles h4,
.textTitles h5
{

    font-size:16px;
    padding:0;
    margin:0;


}

.textTitles h4 {

    text-transform:uppercase;
    color:var(--DD-Dark-Grey);
    letter-spacing:1.5px;
    
}

.marginBottom20 {

    margin-bottom:20px;

}

.marginBottom30 {

    margin-bottom:30px;

}

.cssUcwords {

    text-transform: capitalize;

}

.awaabs-council-logo {

    width:100%;
    height:160px;
    background: #545454 url(./src/awaabs-council-accredited.svg) center center no-repeat;
    background-size:auto 80%;
    display:flex;
    padding:20px 20px 20px 20px !important;
    margin:0 0 20px 0;
    border-radius:10px;
    
}
