/**********
SITEWIDE STYLES
**********/

:root {
    --primary-text: #16232b;
    --white: #fff;

    --primary: #065056;
    --primary-alt: #16232B;

    --secondary: #ff5b04;
    --secondary-alt: #df5003;

    --accent: #bd4b27;

    --bgblockone:#e4eef1;
    --bgblocktwo: #fff;

    --transparent:rgba(0,0,0,0);
}

body {
    color:#16232b;
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Manrope';
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-weight: 800;
    margin-bottom: 0;
    padding-bottom:10px;
    font-family: 'Montserrat';
}

h1 {
    font-size:42px;
}

h2 {
    font-size:42px;
}
h3 {
    font-size:25px;
}
h4 {
    font-size:21px;
}
h5 {
    font-size: 18px;
}

.txt-primary {
    color: var(--primary);
}

::-moz-selection {
    background: var(--primary);
    color: var(--white);
}

::selection {
    background: var(--primary);
    color: var(--white);
}

.text-white {
    color: #fff;
}

* {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased; 
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto
}

a {
    text-decoration: none;
}

/* BLOG */
.featured-image img {
    object-fit: cover;
    transform: scale(1);
    transition: -webkit-transform 300ms ease;
    transition: transform 300ms ease;
    transition: transform 300ms ease;
    -webkit-transform: 300ms ease;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    position:absolute;
}
.featured-image img:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.featured-image {
    overflow: hidden;
    padding-top:60%;
    margin-bottom: 10px;
    position: relative;
}
.placeholder-image i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: var(--dark);
}
.featured-image .placeholder-image {
    position: absolute;
    width: 100%;
    background-color: #e1e1e1;
    height: 100%;
    text-align: center;
}
.breadcrumbs i {
    font-size: 13px;
    position: relative;
    top: -1.1px;
}

/**********
BUTTON    
**********/
.btn {
    background-color: transparent ;
    box-shadow: none !important;
    padding: 16px 30px;
    transition: all .15s ease-in-out;
    text-transform: uppercase;
    border-width:0px;
    border-radius:0;
    font-size:14px;
    font-weight: 800;
    font-family: 'Montserrat';
    border-style: solid;
}

.btn-small {
    font-size: .9rem;
    padding: 7px 20px;
}

.btn.btn-primary {
    font-weight: bold;
    background-color: var(--primary);
    color: var(--white);
    position: relative;
    border-width:0;
    border-style: solid;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus,
.btn.btn-primary:active
 {
    background-color: var(--primary-alt);
    color: var(--white);
}

.form-container .frm_form_fields .frm_fields_container .frm_submit .frm_button_submit {
    font-weight: bold;
    background-color: var(--accent);
    color: #fff;
    position: relative;
    border-width:0;
    border-style: solid;
}

.form-container .frm_form_fields .frm_fields_container .frm_submit .frm_button_submit:hover,
.form-container .frm_form_fields .frm_fields_container .frm_submit .frm_button_submit:focus,
.frm_button_submit:active {
    background-color: var(--secondary-alt);
    color: #fff;
}

.btn.btn-secondary {
    background-color: var(--secondary);
    color: #fff;
}

.btn.btn-secondary:hover,
.btn.btn-secondary:focus,
.btn.btn-secondary:active {
    background-color: var(--secondary-alt);
    border: 0 solid var(--transparent);
    color: var(--white);
}

.btn.btn-white {
    color:var(--primary);
    background-color:var(--white);
    opacity: 1;
}

.btn.btn-white:hover,
.btn.btn-white:focus,
.btn.btn-white:active {
    background-color:var(--primary);
    color: #fff;
}

/* DEFAULTS */
.list-style-none {
    list-style-type: none;
}
.nav ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.nav ul li {
    display: inline-block;
}
.transition {
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
}
.bgcover {
    background-size:cover;
}
section.block {
    padding:100px 0;
}

/* DEFAULT GRAVITY FORMS */
.gform_wrapper.gravity-theme .gform_validation_errors {
    padding: 20px 20px 10px;
    text-align: center;
    margin-bottom: 20px;
}
.gform_wrapper.gravity-theme .gform_validation_errors>h2 {
    font-size: 16px;
    font-weight: 700;
}
.gform_wrapper.gravity-theme .gfield_validation_message, .gform_wrapper.gravity-theme .validation_message {
    border-radius: 10px;
    font-weight: bold;
    margin-top: 12px;
}
.gform_wrapper .gform_footer input.gform_button {
    border: 2px solid #65dea3 !important;
    padding: 16px 60px !important;
    text-transform: uppercase;
    color: #65dea3;
    font-weight: 700;
    background-color: transparent;
    margin: 0 auto;
}
.gform_wrapper .gform_footer input.gform_button:hover {
    background-color: #65dea3;
    color: #fff;
}
.gform_wrapper textarea {
    height: 120px;
    border-radius: 10px;
    margin-top: 5px;
    border: 1px solid #e1e1e1;
}
.gform_wrapper.gravity-theme .gfield textarea:focus {
    outline:0;
    border:2px solid #65dea3 !important;
}
.gform_wrapper select {
    border-radius: 100px;
    border-color: #e1e1e1;
    padding: 18px 15px;
    outline:0 !important;
}
.gform_wrapper input {
    border-radius: 100px;
    border: 1px solid #e1e1e1;
    line-height: 1;
}
.gform_wrapper input:focus {
    border-color: #31d384;
    border-width: 2px;
}
.gform_wrapper.gravity-theme input[type=color], .gform_wrapper.gravity-theme input[type=date], .gform_wrapper.gravity-theme input[type=datetime-local], .gform_wrapper.gravity-theme input[type=datetime], .gform_wrapper.gravity-theme input[type=email], .gform_wrapper.gravity-theme input[type=month], .gform_wrapper.gravity-theme input[type=number], .gform_wrapper.gravity-theme input[type=password], .gform_wrapper.gravity-theme input[type=search], .gform_wrapper.gravity-theme input[type=tel], .gform_wrapper.gravity-theme input[type=text], .gform_wrapper.gravity-theme input[type=time], .gform_wrapper.gravity-theme input[type=url], .gform_wrapper.gravity-theme input[type=week], .gform_wrapper.gravity-theme select, .gform_wrapper.gravity-theme textarea {
    padding: 15px 15px !important;
}

/* MOBILE NAV */
.navbar-toggler[aria-expanded="false"] .navbar-toggler-icon {
    background: url(./images/icons/nav-closed.svg);
    background-position: center center;
    background-repeat: no-repeat;
}
.navbar-toggler .navbar-toggler-icon {
    width: 30px;
    height: 30px;
}
.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: var(--bs-navbar-toggler-icon-bg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}


/* -------------------------
NEW STYLES HERE 
-------------------------  */

.header .logo-img {
    width: 220px;
}
.logo-footer-img {
    width: 200px;
}

/* HOMEHERO */
#homehero {
    padding: 100px 0;
    aspect-ratio: 1446 / 637;
    background-size: cover;
    position: relative;
}
#homehero h1 {
    font-size:55px;
}
#homehero:before {
    content:'';
    width:100%;
    height: 100%;
    position: absolute;
    top:0; left:0;
    background-color:#000;
    opacity:0.5;
    z-index: 1;
}
#homehero:after {
    content: '';
    background-image: url(/wp-content/uploads/2025/07/hero-shape.png);
    height: 300px;
    display: block;
    position: absolute;
    z-index: 5;
    background-size: cover;
    bottom: 0;
    right: 0;
    aspect-ratio: 1;
}

/* FOOTER */
.footer {
    font-size:14px;
}


/* ABOUT TEXT */
.about-box-text {
    position: relative;
    padding: 50px;
}
.about-box-text  h2 {
    color: var(--primary);
}
.l-shape.l-shape-bottom {
    right:0;
    bottom:0;
}
.l-shape.l-shape-top {
    top:0;
    left:0;
}
.l-shape {
    position: absolute;
    width: 36px;
    height: 36px;
}

.l-shape::after,
.l-shape::before {
    content: '';
    position: absolute;
    background-color: var(--secondary);
}
.l-shape::after {
    top: 0;
    left: 0;
    width: 36px;
    height: 18px;
}
.l-shape::before {
    top: 0;
    width: 18px;
    height: 36px;
    left: 0;
}
.l-shape.l-shape-bottom:before {
    right: 0;
    left: auto;
}
.l-shape.l-shape-bottom:after {
    bottom: 0;
    top: auto;
}
.about-box-text  ul {
    list-style: none;
    margin-top:15px;
    font-weight:600;
    color:var(--primary)
}
.about-box-text {
    font-size:18px;
}
.about-box-text ul li:before {
    content: '';
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    display: block;
    position: absolute;
    left: -20px;
    top: 9px;
}
.about-box-text ul li {
    position: relative;
}
.wif-icon {
    width: 140px;
    height: 140px;
}
.wif-icon .l-shape {
    transform: scale(0.7)
}
.wif-text {
    width: 320px;
    max-width: 100%;
    margin: 0 auto;
}


/* PRODUCTS */
#products {
    background-color: var(--bgblockone);
}
.prod-mainbox {
    text-align: center;
}
.prod-mainbox .btn-primary:hover {
    background-color:var(--secondary);
}
.prodbtn .btn {
    background-color: var(--primary-alt);
}
.prodbtn .btn:hover {
    background-color: var(--secondary);
}

/* GUIDE */
#guide .btn-white:hover, 
#guide .btn-white:focus, 
#guide .btn-white:active {
    background-color: var(--secondary);
}
.gb-img {
    aspect-ratio: 1;
}
.gb-img img {
    object-fit:cover;
    width:100%;
    height:100%;
}

/* TESTIMONIALS */
.testimonials-slider {
    padding:0 35px;
}
.testibox {
    font-size: 18px;
    margin:0 11px;
}
.green-l-shape 
.l-shape::after,
.green-l-shape .l-shape::before {
    background-color: var(--primary);
}
.testi-inner {
    background-color:#E4EEF1;
    padding:90px 30px;
}
.testimonials-slider .slick-arrow.fa-arrow-right {
    right: 0;
}
.testimonials-slider .slick-arrow.fa-arrow-left {
    left: 0;
}
.testimonials-slider .slick-arrow {
    color: #333;
    cursor: pointer;
    font-size: 25px;
    font-weight: bold;
    height: 30px;
    line-height: 30px;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 30px;
    z-index: 10;
}
.testibox {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testi-inner {
    background-color: #E4EEF1;
    padding: 90px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    width: 100%;
}

/* SLICK */
.slick-arrow {
    color: #333;
    cursor: pointer;
    font-size: 40px;
    font-weight: bold;
    height: 20px;
    line-height: 20px;
    position: absolute;
    text-align: center;
    bottom: 30px;
    width: 20px;
    z-index: 10;
}
.cs-slider-arrows i {
    font-size:22px;
    bottom: 70px;
}
.cs-slider-arrows .slick-next-custom {
    left: calc(10% + 35px);
}
.cs-slider-arrows .slick-prev-custom {
    left:10%;
}

.slick-slide {
    outline:0;
}
.aboutimg img {
    object-fit:cover;
    height:100%;
    width: 100%;
}
/* CASE STUDIES */
.cs-block-inner-right {
    padding: 30% 10%;
}
.cs-logo-overlay {
    position: absolute;
    z-index: 2;
    mix-blend-mode: multiply;
    width: 70%;
    bottom: 0;
    right: 0;
}
#case-studies .slick-slider img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.bgprimary {
    background-color: var(--primary);
}
.wygbox {
    padding: 80px 100px 80px 60px;
}
.wygboxleft {
    width: 70%;
}
.btnwyg2:hover {
    background-color: var(--primary-alt);
    color: #fff;
}
.btnwyg2 {
    background-color: #fff;
    color: var(--secondary);
}
.wyg-list {
    display: flex;
    flex-direction: column;
    row-gap: 25px;
    padding-left: 45px;
}
.wyg-list li {
    position: relative;
}
.wyg-list li:before, .wyg-list li:after {
    content: '';
    background-color: var(--secondary);
    position: absolute;
}
.wyg-list li:after {
    width: 8px;
    height: 18px;
    left: -28px;
    top: 7px;
}
.wyg-list li:before {
    width: 18px;
    height: 8px;
    display: block;
    left: -38px;
    top: 17px;
}
.wygbox-right {
    width: 310px;
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0px 24px 34px -3px rgba(0,0,0,0.55);
}
.wyg-bg {
    position: absolute;
    aspect-ratio: 917 / 651;
    width: 960px;
    right: 0;
    top: -50px;
}
body {
    overflow-x: clip;
}
.cs-slider-left .slick-list {
    height: 100% !important;
}
.objectfit > img {
    object-fit: cover;
    width:100%;
    height:100%;
}
.guides-content p {
    margin-bottom:30px;
}
.guides-content ul {
    list-style: none;
    margin-bottom: 20px;
}
.guides-content ul li {
    position: relative;
    padding-left: 10px;
}
.guides-content ul li:before {
    content: '';
    height: 9px;
    width: 9px;
    background-color: var(--primary);
    display: block;
    position: absolute;
    left: -20px;
    top: 8px;
}
.go-back-link {
    color: var(--primary-text);
    font-weight: 700;
}
.guides-title {
    color: var(--primary);
}
.guide-box .gb-text a {
    color: #fff;
}
.guide-box .gb-text a:hover {
    color: var(--secondary);
}
.guide-box h5 {
    line-height:1.5;
}
.guide-box .gb-img img {
    transform: scale(1);
    transition: 0.3s all ease;
}
.guide-box .gb-img:hover img {
    transform:scale(1.05)
}
.guides-content p + ul {
    margin-top: -25px;   /* reduce gap above */
}

.slick-dots li {
    display: inline-block;
    margin: 0 5px;
}
.slick-dots {
    text-align: center;
    position: absolute;
    padding-left:0;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
}
.slick-dots li.slick-active button {
    background-color:var(--secondary);
}
.slick-dots button {
    background-color: #fff;
    border: 1px solid #333;
    border-radius: 100%;
    box-shadow: none;
    cursor: pointer;
    font-size: 0;
    height: 15px;
    outline: 0 none !important;
    width: 15px;
}
.slick-slide {
    outline:0;
}

.slick-arrow.fa-chevron-right {
    right: 0;
}
.slick-arrow.fa-chevron-left {
    left: 0;
}
.slick-arrow {
    color: #fff;
    cursor: pointer;
    font-size: 34px;
    font-weight: bold;
    height: 30px;
    line-height: 30px;
    position: absolute;
    text-align: center;
    top: 50%;
    width: 30px;
    z-index: 10;
}


























